ostree: 2024.10 → 2025.2

https://github.com/ostreedev/ostree/releases/tag/v2025.1
https://github.com/ostreedev/ostree/releases/tag/v2025.2

Jan Tojnar 0c327564 2631b0b7

+5 -14
+5 -14
pkgs/by-name/os/ostree/package.nix
··· 2 stdenv, 3 lib, 4 fetchurl, 5 - fetchpatch, 6 pkg-config, 7 gtk-doc, 8 nixosTests, ··· 53 ] 54 ); 55 in 56 - stdenv.mkDerivation rec { 57 pname = "ostree"; 58 - version = "2024.10"; 59 60 outputs = [ 61 "out" ··· 65 ]; 66 67 src = fetchurl { 68 - url = "https://github.com/ostreedev/ostree/releases/download/v${version}/libostree-${version}.tar.xz"; 69 - sha256 = "sha256-VOM4fe4f8WAxoGeayitg2pCrf0omwhGCIzPH8jAAq+4="; 70 }; 71 - 72 - patches = [ 73 - (fetchpatch { 74 - name = "static-pkg-config.patch"; 75 - url = "https://github.com/ostreedev/ostree/pull/3382.patch"; 76 - hash = "sha256-VCQLq4OqmojtB7WFHNNV82asgXPGq5tKoJun66eUntY="; 77 - }) 78 - ]; 79 80 nativeBuildInputs = 81 [ ··· 183 platforms = platforms.linux; 184 maintainers = with maintainers; [ copumpkin ]; 185 }; 186 - }
··· 2 stdenv, 3 lib, 4 fetchurl, 5 pkg-config, 6 gtk-doc, 7 nixosTests, ··· 52 ] 53 ); 54 in 55 + stdenv.mkDerivation (finalAttrs: { 56 pname = "ostree"; 57 + version = "2025.2"; 58 59 outputs = [ 60 "out" ··· 64 ]; 65 66 src = fetchurl { 67 + url = "https://github.com/ostreedev/ostree/releases/download/v${finalAttrs.version}/libostree-${finalAttrs.version}.tar.xz"; 68 + hash = "sha256-8kSkCMkJmYp3jhJ/zCLBtQK00BPxXyaUj0fMcv/i7vQ="; 69 }; 70 71 nativeBuildInputs = 72 [ ··· 174 platforms = platforms.linux; 175 maintainers = with maintainers; [ copumpkin ]; 176 }; 177 + })