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.

32 lines
713 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
}:
2019-11-11 03:35:59 +00:00
stdenv.mkDerivation rec {
pname = "mcfgthread";
version = "1.6.1";
2019-11-11 03:35:59 +00:00
src = fetchFromGitHub {
owner = "lhmouse";
repo = "mcfgthread";
rev = "v${lib.versions.majorMinor version}-ga.${lib.versions.patch version}";
hash = "sha256-FrmeaQhwLrNewS0HDlbWgCvVQ5U1l0jrw0YVuQdt9Ck=";
2019-11-11 03:35:59 +00:00
};
outputs = [ "out" "dev" ];
2019-11-11 03:35:59 +00:00
nativeBuildInputs = [
autoreconfHook
];
meta = {
description = "A threading support library for Windows 7 and above";
homepage = "https://github.com/lhmouse/mcfgthread/wiki";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ wegank ];
platforms = lib.platforms.windows;
};
2019-11-11 03:35:59 +00:00
}