Merge pull request #10581 from matthiasbeyer/add-pipes

pipes.sh: Init at 1.1.0
This commit is contained in:
Arseniy Seroka 2015-10-25 04:23:56 +03:00
commit c529bd85bb
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

@ -10167,6 +10167,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 { };