jrl-cmakemodules: 1.1.0 -> 1.1.2 (#472397)

This commit is contained in:
Sandro
2026-03-12 12:18:15 +00:00
committed by GitHub
+2 -12
View File
@@ -2,31 +2,21 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
nix-update-script,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "jrl-cmakemodules";
version = "1.1.0";
version = "1.1.2";
src = fetchFromGitHub {
owner = "jrl-umi3218";
repo = "jrl-cmakemodules";
tag = "v${finalAttrs.version}";
hash = "sha256-WQiAAexshQ4zgaBNo/CD91XV+PAeoPZatmehSA14aPM=";
hash = "sha256-TUewcxvBGYF3WpqkiWvZzmbyXyaM+UqzHLVsaUJdC0w=";
};
patches = [
# ref. https://github.com/jrl-umi3218/jrl-cmakemodules/pull/783
(fetchpatch {
name = "fix-permissions.patch";
url = "https://github.com/jrl-umi3218/jrl-cmakemodules/commit/defed70c8a7c5e4bd5b26006bef26e3fb22c3b26.patch";
hash = "sha256-muO6DwQhNPCv6DPmnHnEHjsh/FSj0ljgNCb+ZowLRaY=";
})
];
nativeBuildInputs = [ cmake ];
passthru.updateScript = nix-update-script { };