Merge pull request #10581 from matthiasbeyer/add-pipes
pipes.sh: Init at 1.1.0
This commit is contained in:
commit
c529bd85bb
26
pkgs/misc/screensavers/pipes/default.nix
Normal file
26
pkgs/misc/screensavers/pipes/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -10167,6 +10167,8 @@ let
|
|||||||
|
|
||||||
perf-tools = callPackage ../os-specific/linux/perf-tools { };
|
perf-tools = callPackage ../os-specific/linux/perf-tools { };
|
||||||
|
|
||||||
|
pipes = callPackage ../misc/screensavers/pipes { };
|
||||||
|
|
||||||
pipework = callPackage ../os-specific/linux/pipework { };
|
pipework = callPackage ../os-specific/linux/pipework { };
|
||||||
|
|
||||||
plymouth = callPackage ../os-specific/linux/plymouth { };
|
plymouth = callPackage ../os-specific/linux/plymouth { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user