pipes.sh: Init at 1.1.0
This commit is contained in:
parent
5c34563cda
commit
23982a4f16
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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user