cowsay: init at 3.03+dfsg1-16

This commit is contained in:
Tim Steinbach 2016-11-04 23:04:05 -04:00
parent 3bb889c34b
commit 7a372f0be7
No known key found for this signature in database
GPG Key ID: 83FF2ACAEB6C2D24
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchgit, perl }:
stdenv.mkDerivation {
name = "cowsay-3.03+dfsg1-16";
src = fetchgit {
url = https://anonscm.debian.org/git/collab-maint/cowsay.git;
rev = "acb946c166fa3b9526b9c471ef1330f9f89f9c8b";
sha256 = "1ji66nrdcc8sh79hwils3nbaj897s352r5wp7kzjwiym8bm2azk6";
};
buildInputs = [ perl ];
installPhase = ''
bash ./install.sh $out
'';
meta = {
description = "A program which generates ASCII pictures of a cow with a message";
homepage = http://www.nog.net/~tony/warez/cowsay.shtml;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.rob ];
};
}

View File

@ -741,6 +741,8 @@ in
corosync = callPackage ../servers/corosync { };
cowsay = callPackage ../tools/misc/cowsay { };
cherrytree = callPackage ../applications/misc/cherrytree { };
chntpw = callPackage ../tools/security/chntpw { };