bcachefs-tools: init at a588eb0

This commit is contained in:
davidak 2017-05-07 18:53:12 +02:00
parent 63841d159e
commit 26294f40c3
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, pkgs, fetchgit, pkgconfig, attr, libuuid, libscrypt, libsodium, keyutils, liburcu, zlib, libaio }:
stdenv.mkDerivation rec {
name = "bcachefs-tools-${version}";
version = "git";
src = fetchgit {
url = "https://evilpiepirate.org/git/bcachefs-tools.git";
rev = "a588eb0d9e30dffa4b319a4715c1454ee1d911f1 ";
sha256 = "1xpiwp6n6jp3zc70i648xpp54cd5yay4si28czn350bxwljbwpsy";
};
buildInputs = [ pkgconfig attr libuuid libscrypt libsodium keyutils liburcu zlib libaio ];
preConfigure = ''
substituteInPlace cmd_migrate.c --replace /usr/include/dirent.h ${stdenv.glibc.dev}/include/dirent.h
'';
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "Tool for managing bcachefs filesystems";
homepage = "http://bcachefs.org/";
license = licenses.gpl2;
maintainers = with maintainers; [ davidak ];
platforms = platforms.linux;
};
}

View file

@ -518,6 +518,8 @@ with pkgs;
autorevision = callPackage ../tools/misc/autorevision { };
bcachefs-tools = callPackage ../tools/filesystems/bcachefs-tools { };
bonnie = callPackage ../tools/filesystems/bonnie { };
djmount = callPackage ../tools/filesystems/djmount { };