Merge pull request #231051 from ehmry/erofs

erofs-utils: 1.5 -> 1.6

authored by

Weijia Wang and committed by
GitHub
92ab89d1 8e0b0fa4

+6 -7
+6 -7
pkgs/os-specific/linux/erofs-utils/default.nix
··· 1 - { lib, stdenv, fetchgit, autoreconfHook, pkg-config, fuse, libuuid, lz4 }: 1 + { lib, stdenv, fetchurl, autoreconfHook, pkg-config, fuse, libuuid, lz4 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "erofs-utils"; 5 - version = "1.5"; 5 + version = "1.6"; 6 6 outputs = [ "out" "man" ]; 7 7 8 - src = fetchgit { 8 + src = fetchurl { 9 9 url = 10 - "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git"; 11 - rev = "v" + version; 12 - sha256 = "sha256-vMWAmGMJp0XDuc4sbo6Y7gfCQVAo4rETea0Tkdbg82U="; 10 + "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot/erofs-utils-${version}.tar.gz"; 11 + sha256 = "sha256-2/Gtrv8buFMrKacsip4ZGTjJOJlGdw3HY9PFnm8yBXE="; 13 12 }; 14 13 15 14 nativeBuildInputs = [ autoreconfHook pkg-config ]; ··· 19 18 20 19 meta = with lib; { 21 20 description = "Userspace utilities for linux-erofs file system"; 22 - license = with licenses; [ gpl2 ]; 21 + license = with licenses; [ gpl2Plus ]; 23 22 maintainers = with maintainers; [ ehmry ]; 24 23 platforms = platforms.linux; 25 24 };