2016-08-24 20:06:51 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook
|
|
|
|
, pkgconfig, libuuid, e2fsprogs
|
2013-05-16 10:41:58 +01:00
|
|
|
}:
|
2016-08-24 20:06:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "partclone-${version}";
|
|
|
|
version = "0.2.89";
|
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;
|
|
|
|
sha256 = "0gw47pchqshhm00yf34qgxh6bh2jfryv0sm7ghwn77bv5gzwr481";
|
2013-05-16 10:41:58 +01:00
|
|
|
};
|
|
|
|
|
2016-08-24 20:06:51 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2016-08-25 09:44:20 +01:00
|
|
|
buildInputs = [
|
|
|
|
e2fsprogs libuuid stdenv.cc.libc
|
|
|
|
(stdenv.lib.getOutput "static" stdenv.cc.libc)
|
|
|
|
];
|
2013-05-16 10:41:58 +01:00
|
|
|
|
2016-08-24 20:06:51 +01:00
|
|
|
enableParallelBuilding = true;
|
2013-05-16 10:41:58 +01:00
|
|
|
|
|
|
|
meta = {
|
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.
|
|
|
|
'';
|
2013-05-16 10:41:58 +01:00
|
|
|
homepage = http://partclone.org;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|