nixpkgs/pkgs/development/tools/misc/cproto/default.nix

35 lines
927 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, flex, bison }:
stdenv.mkDerivation rec {
pname = "cproto";
2021-01-19 09:36:21 +00:00
version = "4.7r";
src = fetchurl {
urls = [
"mirror://debian/pool/main/c/cproto/cproto_${version}.orig.tar.gz"
# No version listings and apparently no versioned tarball over http(s).
"ftp://ftp.invisible-island.net/cproto/cproto-${version}.tgz"
];
2021-01-19 09:36:21 +00:00
sha256 = "sha256-bgRg2yVZXHobUz8AUaV4ZKBkp2KjP+2oXbDXmPTUX8U=";
};
# patch made by Joe Khoobyar copied from gentoo bugs
2020-08-05 09:53:41 +00:00
patches = [ ./cproto.patch ];
nativeBuildInputs = [ flex bison ];
doCheck = true;
doInstallCheck = true;
installCheckPhase = ''
[ "$("$out/bin/cproto" -V 2>&1)" = '${version}' ]
'';
meta = with lib; {
description = "Tool to generate C function prototypes from C source code";
homepage = "https://invisible-island.net/cproto/";
license = licenses.publicDomain;
2020-07-20 23:43:19 +00:00
platforms = platforms.all;
};
}