2018-07-23 06:24:15 +01:00
|
|
|
{ stdenv, fetchurl, perl }:
|
2016-11-05 03:04:05 +00:00
|
|
|
|
2018-07-23 06:24:15 +01:00
|
|
|
stdenv.mkDerivation rec{
|
|
|
|
version = "3.03+dfsg2";
|
|
|
|
name = "cowsay-${version}";
|
2016-11-05 03:04:05 +00:00
|
|
|
|
2018-07-23 06:24:15 +01: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 19:21:16 +01: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 19:21:16 +01: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
|
|
|
};
|
|
|
|
}
|