forked from mirrors/nixpkgs
partclone: add support for various filesystems
Adds support for ext2/3/4, fat, hfs+, minix, nilfs, ntfs, and xfs Closes #39079
This commit is contained in:
parent
cee2c50748
commit
8e52dc1028
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook
|
||||
, pkgconfig, libuuid, e2fsprogs
|
||||
, pkgconfig, libuuid, e2fsprogs, nilfs-utils, ntfs3g
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -15,10 +15,23 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
buildInputs = [
|
||||
e2fsprogs libuuid stdenv.cc.libc
|
||||
e2fsprogs libuuid stdenv.cc.libc nilfs-utils ntfs3g
|
||||
(stdenv.lib.getOutput "static" stdenv.cc.libc)
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-xfs"
|
||||
"--enable-extfs"
|
||||
"--enable-hfsp"
|
||||
"--enable-fat"
|
||||
"--enable-exfat"
|
||||
"--enable-ntfs"
|
||||
"--enable-btrfs"
|
||||
"--enable-minix"
|
||||
"--enable-f2fs"
|
||||
"--enable-nilfs2"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue