Merge pull request #25580 from davidak/bcachefs-tools

bcachefs-tools: init at a588eb0
This commit is contained in:
Jörg Thalheim 2017-05-19 13:16:58 +01:00 committed by GitHub
commit db70f2958a
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 { };