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

36 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, python3, texinfo, makeWrapper }:
2013-08-09 23:21:25 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
name = "ponysay-3.0.3";
2013-08-09 23:21:25 +00:00
src = fetchurl {
url = "https://github.com/erkin/ponysay/archive/3.0.3.tar.gz";
sha256 = "12mjabf5cpp5dgg63s19rlyq3dhhpzzy2sa439yncqzsk7rdg0n3";
2013-08-09 23:21:25 +00:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python3 texinfo ];
2013-08-09 23:21:25 +00:00
inherit python3;
2013-08-09 23:21:25 +00:00
phases = "unpackPhase installPhase fixupPhase";
2013-08-09 23:21:25 +00:00
installPhase = ''
find -type f -name "*.py" | xargs sed -i "s@/usr/bin/env python3@$python3/bin/python3@g"
substituteInPlace setup.py --replace \
"fileout.write(('#!/usr/bin/env %s\n' % env).encode('utf-8'))" \
"fileout.write(('#!%s/bin/%s\n' % (os.environ['python3'], env)).encode('utf-8'))"
python3 setup.py --prefix=$out --freedom=partial install \
--with-shared-cache=$out/share/ponysay \
--with-bash
2013-08-09 23:21:25 +00:00
'';
meta = {
description = "Cowsay reimplemention for ponies";
homepage = "https://github.com/erkin/ponysay";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ bodil ];
platforms = with lib.platforms; unix;
2013-08-09 23:21:25 +00:00
};
}