nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

xcalib: fix build

Pulls a patch from upstream which bumps the minimum cmake version.

+9
+9
pkgs/by-name/xc/xcalib/package.nix
··· 8 8 libXxf86vm, 9 9 libXrandr, 10 10 samurai, 11 + fetchpatch, 11 12 }: 12 13 13 14 stdenv.mkDerivation (finalAttrs: { ··· 22 21 tag = finalAttrs.version; 23 22 hash = "sha256-o0pizV4Qrb9wfVKVNH2Ifb9tr7N7iveVHQB39WVCl8w="; 24 23 }; 24 + 25 + patches = [ 26 + # bump min cmake to v3.5 27 + (fetchpatch { 28 + url = "https://codeberg.org/OpenICC/xcalib/commit/e8566ead8c043b5f0003c3613b91deab6430eac8.patch"; 29 + hash = "sha256-gZc4itfsP5T68ZucdYJWJ4sL11xFaw5ePABsmEYHxrU="; 30 + }) 31 + ]; 25 32 26 33 nativeBuildInputs = [ 27 34 cmake