lol

archivemount: 1 -> 1a (#367253)

authored by

Peder Bergebakken Sundt and committed by
GitHub
55d82ef1 8075165d

+3 -13
+3 -13
pkgs/by-name/ar/archivemount/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromSourcehut, 5 - fetchpatch, 6 5 pkg-config, 7 6 fuse, 8 7 libarchive, ··· 10 9 11 10 stdenv.mkDerivation (finalAttrs: { 12 11 pname = "archivemount"; 13 - version = "1"; 12 + version = "1a"; 14 13 15 14 src = fetchFromSourcehut { 16 15 owner = "~nabijaczleweli"; 17 16 repo = "archivemount-ng"; 18 17 rev = finalAttrs.version; 19 - hash = "sha256-xuLtbqC9iS86BKz4jG8of4id+GTlBXoohONrkmIzOpY="; 18 + hash = "sha256-XfWs8+vYCa9G9aPtXk/s5YYq/CHNOS7XDrGW7WpSWBQ="; 20 19 }; 21 20 22 21 nativeBuildInputs = [ pkg-config ]; ··· 32 31 33 32 dontConfigure = true; 34 33 35 - # Fix missing standard struct stat on Darwin 36 - # Already on upstream, but no new release made 37 - patches = [ 38 - (fetchpatch { 39 - name = "fix-missing-standard-struct-stat-on-darwin.patch"; 40 - url = "https://git.sr.ht/~nabijaczleweli/archivemount-ng/commit/53dd70f05fdb6ababe7c1ca70f0f62bcf4930b5a.patch"; 41 - hash = "sha256-UqoALAJoNXihop6Mem4mu+W8REOV92Zyv7pPW20Ugz8="; 42 - }) 43 - ]; 44 - 45 34 # Fix cross-compilation 46 35 postPatch = '' 47 36 substituteInPlace Makefile --replace-fail pkg-config "$PKG_CONFIG" ··· 49 38 50 39 meta = { 51 40 description = "Gateway between FUSE and libarchive: allows mounting of cpio, .tar.gz, .tar.bz2 archives"; 41 + changelog = "https://git.sr.ht/~nabijaczleweli/archivemount-ng/refs/${finalAttrs.version}"; 52 42 mainProgram = "archivemount"; 53 43 license = [ 54 44 lib.licenses.lgpl2Plus