6cff3215f4
svn path=/nixpkgs/trunk/; revision=31938
19 lines
482 B
Nix
19 lines
482 B
Nix
{ stdenv, fetchurl, perl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "cowsay-3.03";
|
|
src = fetchurl {
|
|
url = http://www.nog.net/~tony/warez/cowsay-3.03.tar.gz;
|
|
sha256 = "1bxj802na2si2bk5zh7n0b7c33mg8a5n2wnvh0vihl9bmjkp51hb";
|
|
};
|
|
buildInputs = [perl];
|
|
installPhase = ''
|
|
bash ./install.sh $out
|
|
'';
|
|
|
|
meta = {
|
|
description = "cowsay is a program which generates ASCII pictures of a cow with a message.";
|
|
homepage = http://www.nog.net/~tony/warez/cowsay.shtml;
|
|
};
|
|
}
|