2018-08-06 15:58:12 +02:00
|
|
|
{ stdenv, fetchgit, pkgconfig, attr, libuuid, libscrypt, libsodium, keyutils
|
|
|
|
, liburcu, zlib, libaio, zstd, lz4 }:
|
2017-05-07 18:53:12 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-14 03:24:53 +01:00
|
|
|
pname = "bcachefs-tools";
|
2019-02-10 03:11:29 +01:00
|
|
|
version = "2019-02-09";
|
2017-05-07 18:53:12 +02:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://evilpiepirate.org/git/bcachefs-tools.git";
|
2019-02-10 03:11:29 +01:00
|
|
|
rev = "17c5215c1c542dd7b6b4f891a0da16d8c98e0591";
|
|
|
|
sha256 = "1zm2lnvijfmz483m2nhxz1rhk7ghgh0c450nyiwi6wa7lc1y3339";
|
2017-05-07 18:53:12 +02:00
|
|
|
};
|
|
|
|
|
2018-03-27 11:40:44 +02:00
|
|
|
enableParallelBuilding = true;
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-08-06 15:58:12 +02:00
|
|
|
buildInputs = [ attr libuuid libscrypt libsodium keyutils liburcu zlib libaio zstd lz4 ];
|
2019-01-14 03:24:53 +01:00
|
|
|
installFlags = [ "PREFIX=${placeholder "out"}" ];
|
2019-01-28 02:47:24 +01:00
|
|
|
|
2018-08-06 15:58:12 +02:00
|
|
|
preInstall = ''
|
2019-01-14 03:24:53 +01:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "INITRAMFS_DIR=/etc/initramfs-tools" \
|
|
|
|
"INITRAMFS_DIR=${placeholder "out"}/etc/initramfs-tools"
|
2018-08-06 15:58:12 +02:00
|
|
|
'';
|
2017-05-07 18:53:12 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tool for managing bcachefs filesystems";
|
2018-02-09 23:34:42 +01:00
|
|
|
homepage = https://bcachefs.org/;
|
2017-05-07 18:53:12 +02:00
|
|
|
license = licenses.gpl2;
|
2018-08-06 15:58:12 +02:00
|
|
|
maintainers = with maintainers; [ davidak chiiruno ];
|
2017-05-07 18:53:12 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|