lol

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"

authored by

Ryan Mulligan and committed by
Franz Pletz
cfdca9d4 e5bde17f

+3 -3
+3 -3
pkgs/tools/misc/ponysay/default.nix
··· 1 1 { stdenv, fetchurl, python3, texinfo, makeWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "ponysay-3.0.2"; 4 + name = "ponysay-3.0.3"; 5 5 6 6 src = fetchurl { 7 - url = "https://github.com/erkin/ponysay/archive/3.0.2.tar.gz"; 8 - sha256 = "03avcbl96rv718lgg6yyrq5mvg3xxzccrnnb6brf4g9mcrwqmsb9"; 7 + url = "https://github.com/erkin/ponysay/archive/3.0.3.tar.gz"; 8 + sha256 = "12mjabf5cpp5dgg63s19rlyq3dhhpzzy2sa439yncqzsk7rdg0n3"; 9 9 }; 10 10 11 11 buildInputs = [ python3 texinfo makeWrapper ];