Add cowsay to the channel
This commit is contained in:
parent
75fcdfbb9e
commit
80056ddc01
@ -2,17 +2,22 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "cowsay-3.03";
|
name = "cowsay-3.03";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://www.nog.net/~tony/warez/cowsay-3.03.tar.gz;
|
url = http://www.nog.net/~tony/warez/cowsay-3.03.tar.gz;
|
||||||
sha256 = "1bxj802na2si2bk5zh7n0b7c33mg8a5n2wnvh0vihl9bmjkp51hb";
|
sha256 = "1s3c0g5vmsadicc4lrlkmkm8znm4y6wnxd8kyv9xgm676hban1il";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ perl ];
|
buildInputs = [ perl ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
bash ./install.sh $out
|
bash ./install.sh $out
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "cowsay is a program which generates ASCII pictures of a cow with a message.";
|
description = "A program which generates ASCII pictures of a cow with a message";
|
||||||
homepage = http://www.nog.net/~tony/warez/cowsay.shtml;
|
homepage = http://www.nog.net/~tony/warez/cowsay.shtml;
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.rob ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user