nixpkgs/pkgs/misc/screensavers/pipes/default.nix

27 lines
638 B
Nix
Raw Normal View History

2015-10-24 18:17:46 +00:00
{ stdenv, fetchurl, pkgs }:
stdenv.mkDerivation rec {
pname = "pipes";
2019-04-07 17:03:46 +00:00
version = "1.3.0";
2015-10-24 18:17:46 +00:00
src = fetchurl {
url = "https://github.com/pipeseroni/pipes.sh/archive/v${version}.tar.gz";
2019-04-07 17:03:46 +00:00
sha256 = "09m4alb3clp3rhnqga5v6070p7n1gmnwp2ssqhq87nf2ipfpcaak";
2015-10-24 18:17:46 +00:00
};
buildInputs = with pkgs; [ bash ];
installPhase = ''
mkdir $out -p
make PREFIX=$out/ install
'';
meta = with stdenv.lib; {
homepage = https://github.com/pipeseroni/pipes.sh;
2015-10-24 18:17:46 +00:00
description = "Animated pipes terminal screensaver";
license = licenses.mit;
maintainers = [ maintainers.matthiasbeyer ];
2015-10-24 18:17:46 +00:00
platforms = platforms.unix;
};
}