core/pkgs/by-name/wi/windows/mcfgthreads/default.nix

27 lines
710 B
Nix
Raw Normal View History

2024-05-13 21:24:10 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2024-05-02 00:46:19 +00:00
stdenv.mkDerivation rec {
pname = "mcfgthread";
version = "1.6.1";
src = fetchFromGitHub {
owner = "lhmouse";
repo = "mcfgthread";
2024-05-13 21:24:10 +00:00
rev =
"v${lib.versions.majorMinor version}-ga.${lib.versions.patch version}";
2024-05-02 00:46:19 +00:00
hash = "sha256-FrmeaQhwLrNewS0HDlbWgCvVQ5U1l0jrw0YVuQdt9Ck=";
};
outputs = [ "out" "dev" ];
2024-05-13 21:24:10 +00:00
nativeBuildInputs = [ autoreconfHook ];
2024-05-02 00:46:19 +00:00
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;
};
}