Merge pull request #279192 from wegank/mcfgthread-bump
windows.mcfgthreads: unstable-2023-06-06 -> 1.6.1, refactor
This commit is contained in:
commit
4694318659
1 changed files with 18 additions and 6 deletions
|
@ -1,14 +1,18 @@
|
||||||
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, autoreconfHook
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mcfgthreads";
|
pname = "mcfgthread";
|
||||||
version = "unstable-2023-06-06";
|
version = "1.6.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "lhmouse";
|
owner = "lhmouse";
|
||||||
repo = "mcfgthread";
|
repo = "mcfgthread";
|
||||||
rev = "f0a335ce926906d634c787249a89220045bf0f7e";
|
rev = "v${lib.versions.majorMinor version}-ga.${lib.versions.patch version}";
|
||||||
hash = "sha256-PLGIyoLdWgWvkHgRe0vHLIvnCxFpmHtbjS8xRhNM9Xw=";
|
hash = "sha256-FrmeaQhwLrNewS0HDlbWgCvVQ5U1l0jrw0YVuQdt9Ck=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
@ -16,4 +20,12 @@ stdenv.mkDerivation {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoreconfHook
|
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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue