ponysay: 3.0.2 -> 3.0.3

Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/gjj3sdwcxbdcgz730lh2sj9svfadifdf-ponysay-3.0.3/bin/ponysay -h` got 0 exit code
- ran `/nix/store/gjj3sdwcxbdcgz730lh2sj9svfadifdf-ponysay-3.0.3/bin/ponysay --help` got 0 exit code
- ran `/nix/store/gjj3sdwcxbdcgz730lh2sj9svfadifdf-ponysay-3.0.3/bin/ponysay help` got 0 exit code
- ran `/nix/store/gjj3sdwcxbdcgz730lh2sj9svfadifdf-ponysay-3.0.3/bin/ponysay -v` and found version 3.0.3
- ran `/nix/store/gjj3sdwcxbdcgz730lh2sj9svfadifdf-ponysay-3.0.3/bin/ponysay --version` and found version 3.0.3
- found 3.0.3 with grep in /nix/store/gjj3sdwcxbdcgz730lh2sj9svfadifdf-ponysay-3.0.3

cc "@bodil"
This commit is contained in:
Ryan Mulligan 2018-02-27 10:07:57 -08:00 committed by Franz Pletz
parent e5bde17f3a
commit cfdca9d407

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl, python3, texinfo, makeWrapper }:
stdenv.mkDerivation rec {
name = "ponysay-3.0.2";
name = "ponysay-3.0.3";
src = fetchurl {
url = "https://github.com/erkin/ponysay/archive/3.0.2.tar.gz";
sha256 = "03avcbl96rv718lgg6yyrq5mvg3xxzccrnnb6brf4g9mcrwqmsb9";
url = "https://github.com/erkin/ponysay/archive/3.0.3.tar.gz";
sha256 = "12mjabf5cpp5dgg63s19rlyq3dhhpzzy2sa439yncqzsk7rdg0n3";
};
buildInputs = [ python3 texinfo makeWrapper ];