erofs-utils: 1.7.1 -> 1.8.1

This commit is contained in:
Jared Baur 2024-08-15 09:07:53 -07:00 committed by Emery Hemingway
parent 4f7b043880
commit ebdc6c7e13

View File

@ -4,15 +4,15 @@
, lzmaSupport ? false
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "erofs-utils";
version = "1.7.1";
version = "1.8.1";
outputs = [ "out" "man" ];
src = fetchurl {
url =
"https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot/erofs-utils-${version}.tar.gz";
hash = "sha256-GWCD1j5eIx+1eZ586GqUS7ylZNqrzj3pIlqKyp3K/xU=";
"https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot/erofs-utils-${finalAttrs.version}.tar.gz";
hash = "sha256-Xb97SS92gkYrl6dxIdQ8p2Cc2Q5l+MlpMa78ggpvDaM=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
@ -35,4 +35,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ ehmry nikstur ];
platforms = platforms.unix;
};
}
})