summary refs log tree commit diff
path: root/pkgs/tools/misc/ponysay/default.nix
blob: 1f281a713011c2032ca6bc1b114278fa70e8245d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, python3, texinfo, makeWrapper }:

stdenv.mkDerivation rec {
  name = "ponysay-3.0.1";

  src = fetchurl {
    url = "https://github.com/erkin/ponysay/archive/3.0.1.tar.gz";
    sha256 = "ab281f43510263b2f42a1b0a9097ee7831b3e33a9034778ecb12ccb51f6915ee";
  };

  buildInputs = [ python3 texinfo makeWrapper ];

  phases = "unpackPhase patchPhase installPhase";

  patches = [ ./pathfix.patch ];

  installPhase = ''
    python3 setup.py --prefix=$out --freedom=partial install --with-shared-cache=$out/share/ponysay
    for i in $(cd $out/bin && ls); do
        wrapProgram $out/bin/$i \
            --prefix PYTHONPATH : "$(toPythonPath $out):$PYTHONPATH"
    done
  '';

  meta = {
    description = "cowsay reimplemention for ponies.";
    homepage = http://terse.tk/ponysay/;
    license = "GPLv3";
  };
}