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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.1 KiB
Nix
Raw Normal View History

2021-07-20 18:25:24 +02:00
{ lib, stdenv, fetchFromGitHub, python3, texinfo, makeWrapper }:
2013-08-10 01:21:25 +02:00
2021-07-20 18:25:24 +02:00
stdenv.mkDerivation rec {
pname = "ponysay";
2021-10-27 18:44:50 +02:00
version = "unstable-2021-03-27";
2013-08-10 01:21:25 +02:00
2021-07-20 18:25:24 +02:00
src = fetchFromGitHub {
owner = "erkin";
repo = "ponysay";
2021-10-27 18:44:50 +02:00
rev = "8a2c71416e70e4e7b0931917ebfd6479f51ddf9a";
sha256 = "sha256-LNc83E+7NFYYILORElNlYC7arQKGUJHv6phu+vM5xpQ=";
2013-08-10 01:21:25 +02:00
};
nativeBuildInputs = [ makeWrapper ];
2021-07-20 18:25:24 +02:00
buildInputs = [ python3 texinfo ];
2013-08-10 01:21:25 +02:00
inherit python3;
2013-08-10 01:21:25 +02: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-10 01:21:25 +02:00
'';
2021-07-20 18:25:24 +02:00
meta = with lib; {
description = "Cowsay reimplemention for ponies";
homepage = "https://github.com/erkin/ponysay";
2021-07-20 18:25:24 +02:00
license = licenses.gpl3;
maintainers = with maintainers; [ bodil ];
platforms = platforms.unix;
2013-08-10 01:21:25 +02:00
};
}