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

36 lines
1,015 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 ];
postBuild = ''
substituteInPlace cowsay --replace "%BANGPERL%" "!${perl}/bin/perl" \
--replace "%PREFIX%" "$out"
'';
2016-11-05 03:04:05 +00:00
installPhase = ''
mkdir -p $out/{bin,man/man1,share/cows}
install -m755 cowsay $out/bin/cowsay
ln -s cowsay $out/bin/cowthink
install -m644 cowsay.1 $out/man/man1/cowsay.1
ln -s cowsay.1 $out/man/man1/cowthink.1
install -m644 cows/* -t $out/share/cows/
2016-11-05 03:04:05 +00:00
'';
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
};
}