lol

bcachefs-tools: unstable-2023-06-28 -> 1.3.1

authored by

Adam Joseph and committed by
Austin Seipp
372ce96e 35f8ef3a

+7 -6
+7 -6
pkgs/tools/filesystems/bcachefs-tools/default.nix
··· 23 23 , fuseSupport ? false 24 24 }: 25 25 let 26 - rev = "cfa816bf3f823a3bedfedd8e214ea929c5c755fe"; 27 - in stdenv.mkDerivation { 26 + version = "1.3.1"; 27 + in 28 + stdenv.mkDerivation { 28 29 pname = "bcachefs-tools"; 29 - version = "unstable-2023-06-28"; 30 + inherit version; 30 31 31 32 src = fetchFromGitHub { 32 33 owner = "koverstreet"; 33 34 repo = "bcachefs-tools"; 34 - inherit rev; 35 - hash = "sha256-XgXUwyZV5N8buYTuiu1Y1ZU3uHXjZ/OZ1kbZ9d6Rt5I="; 35 + rev = "v${version}"; 36 + hash = "sha256-4TmH6YOW6ktISVA6RLo7JRl8/SnRzGMrdbyCr+mDkqY="; 36 37 }; 37 38 38 39 # errors on fsck_err function. Maybe miss-detection? ··· 75 76 76 77 makeFlags = [ 77 78 "PREFIX=${placeholder "out"}" 78 - "VERSION=${lib.strings.substring 0 7 rev}" 79 + "VERSION=${version}" 79 80 "INITRAMFS_DIR=${placeholder "out"}/etc/initramfs-tools" 80 81 ]; 81 82