nixpkgs/pkgs/os-specific/windows/mcfgthreads/default.nix

25 lines
519 B
Nix
Raw Normal View History

2019-11-11 03:35:59 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation {
pname = "mcfgthreads";
version = "git";
2019-11-11 03:35:59 +00:00
src = fetchFromGitHub {
owner = "lhmouse";
repo = "mcfgthread";
rev = "c446cf4fcdc262fc899a188a4bb7136284c34222";
sha256 = "1ib90lrd4dz8irq4yvzwhxqa86i5vxl2q2z3z04sf1i8hw427p2f";
2019-11-11 03:35:59 +00:00
};
outputs = [ "out" "dev" ];
2019-11-11 03:35:59 +00:00
# Don't want prebuilt binaries sneaking in.
postUnpack = ''
rm -r "$sourceRoot/debug" "$sourceRoot/release"
'';
2019-11-11 03:35:59 +00:00
nativeBuildInputs = [
autoreconfHook
];
}