bcachefs-tools: 1.3.5 -> 1.4.1

This commit is contained in:
Julius de Bruijn 2024-01-15 21:11:49 +01:00
parent 4e977402c7
commit f320925fc0
2 changed files with 4 additions and 13 deletions

View File

@ -99,7 +99,6 @@ dependencies = [
"errno 0.2.8",
"gag",
"getset",
"itertools",
"libc",
"log",
"parse-display",
@ -407,15 +406,6 @@ dependencies = [
"windows-sys",
]
[[package]]
name = "itertools"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
dependencies = [
"either",
]
[[package]]
name = "lazy_static"
version = "1.4.0"

View File

@ -24,14 +24,14 @@
stdenv.mkDerivation (finalAttrs: {
pname = "bcachefs-tools";
version = "1.3.5";
version = "1.4.1";
src = fetchFromGitHub {
owner = "koverstreet";
repo = "bcachefs-tools";
rev = "v${finalAttrs.version}";
hash = "sha256-Yq631LPpWal0hsEJS0dOtiox1295tYgUWJVIw+bsbnw=";
hash = "sha256-+KqTiIp9dIJWG2KvgvPwXC7p754XfgvKHjvwjCdbvCs=";
};
nativeBuildInputs = [
@ -69,7 +69,8 @@ stdenv.mkDerivation (finalAttrs: {
checkFlags = [ "BCACHEFS_TEST_USE_VALGRIND=no" ];
makeFlags = [
"PREFIX=${placeholder "out"}"
"DESTDIR=${placeholder "out"}"
"PREFIX="
"VERSION=${finalAttrs.version}"
"INITRAMFS_DIR=${placeholder "out"}/etc/initramfs-tools"
];