summaryrefslogtreecommitdiffstats
path: root/pkgs/os-specific/windows
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2019-11-11 00:23:32 -0500
committerJohn Ericson <git@JohnEricson.me>2019-11-11 11:02:38 -0500
commit04cb05d20c780f0cbe76eca6dfc2f08e741a1660 (patch)
treebe0f84356254f6b24f970f793e41faf9c8440ad6 /pkgs/os-specific/windows
parent999ef20129cf0c4809a3d654f2378192f6b32ef1 (diff)
gcc: Build MinGW stage two with threading library
Currently this is set up to be mcfgthreads, but it could be something else instead.
Diffstat (limited to 'pkgs/os-specific/windows')
-rw-r--r--pkgs/os-specific/windows/mcfgthreads/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/os-specific/windows/mcfgthreads/default.nix b/pkgs/os-specific/windows/mcfgthreads/default.nix
index 468e92a1e9d8..6c4cd1710256 100644
--- a/pkgs/os-specific/windows/mcfgthreads/default.nix
+++ b/pkgs/os-specific/windows/mcfgthreads/default.nix
@@ -3,16 +3,21 @@
stdenv.mkDerivation {
pname = "mcfgthreads";
version = "git";
+
src = fetchFromGitHub {
owner = "lhmouse";
repo = "mcfgthread";
rev = "9570e5ca7b98002d707c502c919d951bf256b9c6";
sha256 = "10y2x3x601a7c1hkd6zlr3xpfsnlr05xl28v23clf619756a5755";
};
+
+ outputs = [ "out" "dev" ];
+
# Don't want prebuilt binaries sneaking in.
postUnpack = ''
rm -r "$sourceRoot/debug" "$sourceRoot/release"
'';
+
nativeBuildInputs = [
autoreconfHook
];