nixpkgs/pkgs/tools/misc/cowsay/default.nix
Aneesh Agrawal 9a4e067a86 cowsay: 3.0.3+dfsg1-16 -> 3.0.3+dfsg2
The old source no longer exists.
2018-08-17 00:45:48 -07:00

26 lines
651 B
Nix

{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec{
version = "3.03+dfsg2";
name = "cowsay-${version}";
src = fetchurl {
url = "http://http.debian.net/debian/pool/main/c/cowsay/cowsay_${version}.orig.tar.gz";
sha256 = "0ghqnkp8njc3wyqx4mlg0qv0v0pc996x2nbyhqhz66bbgmf9d29v";
};
buildInputs = [ perl ];
installPhase = ''
bash ./install.sh $out
'';
meta = with stdenv.lib; {
description = "A program which generates ASCII pictures of a cow with a message";
homepage = https://en.wikipedia.org/wiki/Cowsay;
license = licenses.gpl1;
platforms = platforms.all;
maintainers = [ maintainers.rob ];
};
}