34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{ stdenv, fetchurl, python3, texinfo, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ponysay-3.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/erkin/ponysay/archive/3.0.2.tar.gz";
|
|
sha256 = "03avcbl96rv718lgg6yyrq5mvg3xxzccrnnb6brf4g9mcrwqmsb9";
|
|
};
|
|
|
|
buildInputs = [ python3 texinfo makeWrapper ];
|
|
|
|
inherit python3;
|
|
|
|
phases = "unpackPhase installPhase fixupPhase";
|
|
|
|
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
|
|
'';
|
|
|
|
meta = {
|
|
description = "Cowsay reimplemention for ponies";
|
|
homepage = http://terse.tk/ponysay/;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = with stdenv.lib.maintainers; [ bodil ];
|
|
};
|
|
}
|