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