2015-10-24 19:17:46 +01:00
|
|
|
{ stdenv, fetchurl, pkgs }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pipes-${version}";
|
2017-01-03 11:33:03 +00:00
|
|
|
version = "1.2.0";
|
2015-10-24 19:17:46 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/pipeseroni/pipes.sh/archive/v${version}.tar.gz";
|
2017-01-03 11:33:03 +00:00
|
|
|
sha256 = "1v0xhgq30zkfjk9l5g8swpivh7rxfjbzhbjpr2c5c836wgn026fb";
|
2015-10-24 19:17:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = with pkgs; [ bash ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out -p
|
|
|
|
make PREFIX=$out/ install
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/pipeseroni/pipes.sh;
|
2015-10-24 19:17:46 +01:00
|
|
|
description = "Animated pipes terminal screensaver";
|
|
|
|
license = licenses.mit;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = [ maintainers.matthiasbeyer ];
|
2015-10-24 19:17:46 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|