ce1c1e3093
With this patch I remove myself as a maintainer for all packages I currently maintain. This is due the fact that I will be basically off the grid from May 2018 until early 2019, as I will be on a trip through north america. I will revert this patch as soon as I'm back, as I plan to continue contributing to nixpkgs then. But as I cannot maintain anything during that time, I'd like to get this patch merged. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
27 lines
622 B
Nix
27 lines
622 B
Nix
{ stdenv, fetchurl, pkgs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pipes-${version}";
|
|
version = "1.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/pipeseroni/pipes.sh/archive/v${version}.tar.gz";
|
|
sha256 = "1v0xhgq30zkfjk9l5g8swpivh7rxfjbzhbjpr2c5c836wgn026fb";
|
|
};
|
|
|
|
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 = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|