nixpkgs/pkgs/tools/filesystems/bcachefs-tools/default.nix
John Ericson f96f3f7a5c bcachefs-tools: Make eval more robust
No hash was changed
2017-09-14 12:32:23 -04:00

29 lines
919 B
Nix

{ stdenv, pkgs, fetchgit, pkgconfig, attr, libuuid, libscrypt, libsodium, keyutils, liburcu, zlib, libaio }:
stdenv.mkDerivation rec {
name = "bcachefs-tools-unstable-2017-08-28";
src = fetchgit {
url = "https://evilpiepirate.org/git/bcachefs-tools.git";
rev = "b1814f2dd0c6b61a12a2ebb67a13d406d126b227";
sha256 = "05ba1h09rrqj6vjr3q37ybca3nbrmnifmffdyk83622l28fpv350";
};
buildInputs = [ pkgconfig attr libuuid libscrypt libsodium keyutils liburcu zlib libaio ];
preConfigure = ''
substituteInPlace cmd_migrate.c --replace /usr/include/dirent.h ${stdenv.lib.getDev stdenv.cc.libc}/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;
};
}