nixpkgs/pkgs/misc/screensavers/pipes/default.nix
Matthias Beyer f1f4f38909 Revert "Remove maintainership"
I'm baaaaack!

This patch reverts my patch where I removed myself as maintainer because
of my traveling. I'm back now and I want to maintain these packages
again.

This reverts commit ce1c1e3093.
2019-02-20 19:57:34 +01:00

27 lines
648 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 = [ maintainers.matthiasbeyer ];
platforms = platforms.unix;
};
}