anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / os-specific / windows / mcfgthreads / default.nix
blob2d5771068dc93a80ba28e195d5d10bb7f85dfa55
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "mcfgthread";
10   version = "1.6.1";
12   src = fetchFromGitHub {
13     owner = "lhmouse";
14     repo = "mcfgthread";
15     rev = "v${lib.versions.majorMinor version}-ga.${lib.versions.patch version}";
16     hash = "sha256-FrmeaQhwLrNewS0HDlbWgCvVQ5U1l0jrw0YVuQdt9Ck=";
17   };
19   outputs = [
20     "out"
21     "dev"
22   ];
24   nativeBuildInputs = [ autoreconfHook ];
26   meta = {
27     description = "Threading support library for Windows 7 and above";
28     homepage = "https://github.com/lhmouse/mcfgthread/wiki";
29     license = lib.licenses.gpl3Plus;
30     maintainers = with lib.maintainers; [ wegank ];
31     platforms = lib.platforms.windows;
32   };