Merge pull request #93554 from r-ryantm/auto-update/cproto

cproto: 4.7o -> 4.7p
This commit is contained in:
Mario Rodas 2020-07-20 19:42:18 -05:00 committed by GitHub
commit 127634e4af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "cproto";
version = "4.7o";
version = "4.7p";
src = fetchurl {
urls = [
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
# No version listings and apparently no versioned tarball over http(s).
"ftp://ftp.invisible-island.net/cproto/cproto-${version}.tgz"
];
sha256 = "0kxlrhhgm84v2q6n3wp7bb77g7wjxkb7azdvb6a70naf0rr0nsy7";
sha256 = "0vm1784yw8gax1r7bzgq0chjgfzwxvmkala2awghmd3zyi7k60nj";
};
# patch made by Joe Khoobyar copied from gentoo bugs
@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
description = "Tool to generate C function prototypes from C source code";
homepage = "https://invisible-island.net/cproto/";
license = licenses.publicDomain;
platforms = platforms.linux;
platforms = platforms.all;
};
}