2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook
|
2021-07-05 21:01:55 +01:00
|
|
|
, pkg-config, libuuid, e2fsprogs, nilfs-utils, ntfs3g, openssl
|
2013-05-16 10:41:58 +01:00
|
|
|
}:
|
2016-08-24 20:06:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "partclone";
|
2022-07-29 16:08:10 +01:00
|
|
|
version = "0.3.20";
|
2013-05-16 10:41:58 +01:00
|
|
|
|
2015-12-07 15:06:53 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Thomas-Tsai";
|
|
|
|
repo = "partclone";
|
2016-08-24 20:06:51 +01:00
|
|
|
rev = version;
|
2022-07-29 16:08:10 +01:00
|
|
|
sha256 = "sha256-LuAK3atyu9olsrSw25Y7aKBiOpEV709nu+pZhVAjGfY=";
|
2013-05-16 10:41:58 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2016-08-25 09:44:20 +01:00
|
|
|
buildInputs = [
|
2021-07-05 21:01:55 +01:00
|
|
|
e2fsprogs libuuid stdenv.cc.libc nilfs-utils ntfs3g openssl
|
2021-01-15 09:19:50 +00:00
|
|
|
(lib.getOutput "static" stdenv.cc.libc)
|
2016-08-25 09:44:20 +01:00
|
|
|
];
|
2013-05-16 10:41:58 +01:00
|
|
|
|
2018-04-17 16:50:48 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-xfs"
|
|
|
|
"--enable-extfs"
|
|
|
|
"--enable-hfsp"
|
|
|
|
"--enable-fat"
|
|
|
|
"--enable-exfat"
|
|
|
|
"--enable-ntfs"
|
|
|
|
"--enable-btrfs"
|
|
|
|
"--enable-minix"
|
|
|
|
"--enable-f2fs"
|
|
|
|
"--enable-nilfs2"
|
|
|
|
];
|
|
|
|
|
2016-08-24 20:06:51 +01:00
|
|
|
enableParallelBuilding = true;
|
2013-05-16 10:41:58 +01:00
|
|
|
|
2021-07-05 21:01:55 +01:00
|
|
|
meta = with lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Utilities to save and restore used blocks on a partition";
|
|
|
|
longDescription = ''
|
|
|
|
Partclone provides utilities to save and restore used blocks on a
|
|
|
|
partition and is designed for higher compatibility of the file system by
|
|
|
|
using existing libraries, e.g. e2fslibs is used to read and write the
|
|
|
|
ext2 partition.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://partclone.org";
|
2021-07-05 21:01:55 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ marcweber ];
|
|
|
|
platforms = platforms.linux;
|
2013-05-16 10:41:58 +01:00
|
|
|
};
|
|
|
|
}
|