nixpkgs/pkgs/tools/misc/cowsay/default.nix

26 lines
651 B
Nix
Raw Normal View History

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