4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
36 lines
1006 B
Nix
36 lines
1006 B
Nix
{ lib, stdenv, fetchurl, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.03+dfsg2";
|
|
pname = "cowsay";
|
|
|
|
src = fetchurl {
|
|
url = "http://http.debian.net/debian/pool/main/c/cowsay/cowsay_${version}.orig.tar.gz";
|
|
sha256 = "0ghqnkp8njc3wyqx4mlg0qv0v0pc996x2nbyhqhz66bbgmf9d29v";
|
|
};
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
postBuild = ''
|
|
substituteInPlace cowsay --replace "%BANGPERL%" "!${perl}/bin/perl" \
|
|
--replace "%PREFIX%" "$out"
|
|
'';
|
|
|
|
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/
|
|
'';
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|