nixpkgs/pkgs/misc/screensavers/pipes/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

27 lines
648 B
Nix

{ stdenv, fetchurl, pkgs }:
stdenv.mkDerivation rec {
name = "pipes-${version}";
version = "1.2.0";
src = fetchurl {
url = "https://github.com/pipeseroni/pipes.sh/archive/v${version}.tar.gz";
sha256 = "1v0xhgq30zkfjk9l5g8swpivh7rxfjbzhbjpr2c5c836wgn026fb";
};
buildInputs = with pkgs; [ bash ];
installPhase = ''
mkdir $out -p
make PREFIX=$out/ install
'';
meta = with stdenv.lib; {
homepage = https://github.com/pipeseroni/pipes.sh;
description = "Animated pipes terminal screensaver";
license = licenses.mit;
maintainers = [ maintainers.matthiasbeyer ];
platforms = platforms.unix;
};
}