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 2 stdenv, 3 3 lib, 4 4 fetchurl, 5 - fetchpatch, 6 5 pkg-config, 7 6 gtk-doc, 8 7 nixosTests, ··· 53 52 ] 54 53 ); 55 54 in 56 - stdenv.mkDerivation rec { 55 + stdenv.mkDerivation (finalAttrs: { 57 56 pname = "ostree"; 58 - version = "2024.10"; 57 + version = "2025.2"; 59 58 60 59 outputs = [ 61 60 "out" ··· 65 64 ]; 66 65 67 66 src = fetchurl { 68 - url = "https://github.com/ostreedev/ostree/releases/download/v${version}/libostree-${version}.tar.xz"; 69 - sha256 = "sha256-VOM4fe4f8WAxoGeayitg2pCrf0omwhGCIzPH8jAAq+4="; 67 + url = "https://github.com/ostreedev/ostree/releases/download/v${finalAttrs.version}/libostree-${finalAttrs.version}.tar.xz"; 68 + hash = "sha256-8kSkCMkJmYp3jhJ/zCLBtQK00BPxXyaUj0fMcv/i7vQ="; 70 69 }; 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 70 80 71 nativeBuildInputs = 81 72 [ ··· 183 174 platforms = platforms.linux; 184 175 maintainers = with maintainers; [ copumpkin ]; 185 176 }; 186 - } 177 + })