pipes.sh: Init at 1.1.0

This commit is contained in:
Matthias Beyer 2015-10-24 20:17:46 +02:00
parent 5c34563cda
commit 23982a4f16
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, fetchurl, pkgs }:
stdenv.mkDerivation rec {
name = "pipes-${version}";
version = "1.1.0";
src = fetchurl {
url = "https://github.com/pipeseroni/pipes.sh/archive/v${version}.tar.gz";
sha256 = "1225llbm0zfnkqykfi7qz7z5p102pwldmj22761m653jy0ahi7w2";
};
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;
};
}

View File

@ -10165,6 +10165,8 @@ let
perf-tools = callPackage ../os-specific/linux/perf-tools { };
pipes = callPackage ../misc/screensavers/pipes { };
pipework = callPackage ../os-specific/linux/pipework { };
plymouth = callPackage ../os-specific/linux/plymouth { };