nixpkgs/pkgs/development/tools/build-managers/bmake/default.nix
Austin Seipp ccee4117be bmake: fix version/url, fix tests, remove unneeded deps
As noted by @jameysharp in #63181.

Signed-off-by: Austin Seipp <as@fastly.com>
2019-06-16 14:26:49 -05:00

29 lines
664 B
Nix

{ stdenv, fetchurl
, getopt
}:
stdenv.mkDerivation rec {
name = "bmake-${version}";
version = "20181221";
src = fetchurl {
url = "http://www.crufty.net/ftp/pub/sjg/${name}.tar.gz";
sha256 = "0zp6yy27z52qb12bgm3hy1dwal2i570615pqqk71zwhcxfs4h2gw";
};
nativeBuildInputs = [ getopt ];
patches = [
./bootstrap-fix.patch
./fix-unexport-env-test.patch
];
meta = with stdenv.lib; {
description = "Portable version of NetBSD 'make'";
homepage = "http://www.crufty.net/help/sjg/bmake.html";
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice ];
};
}