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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
409 B
Nix
Raw Normal View History

2019-11-11 03:35:59 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation {
pname = "mcfgthreads";
version = "unstable-2023-06-06";
2019-11-11 03:35:59 +00:00
src = fetchFromGitHub {
owner = "lhmouse";
repo = "mcfgthread";
rev = "f0a335ce926906d634c787249a89220045bf0f7e";
hash = "sha256-PLGIyoLdWgWvkHgRe0vHLIvnCxFpmHtbjS8xRhNM9Xw=";
2019-11-11 03:35:59 +00:00
};
outputs = [ "out" "dev" ];
2019-11-11 03:35:59 +00:00
nativeBuildInputs = [
autoreconfHook
];
}