Revert "erofs-utils: 1.7.1 -> 1.8.1"

This reverts commit ebdc6c7e13.
This commit is contained in:
Vladimír Čunát 2024-08-18 15:16:03 +02:00 committed by GitHub
parent 52ee4c79f6
commit 13c304eb48

View File

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