partclone, partimage. both are used by clonezilla and drbl (which I haven't packaged yet)
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{stdenv, fetchurl, bzip2, zlib, newt, openssl, pkgconfig, slang
|
||||
, automake, autoconf, libtool, gettext
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
name = "partimage-0.6.9";
|
||||
enableParallelBuilding = true;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://sourceforge.net/projects/partimage/files/stable/0.6.9/partimage-0.6.9.tar.bz2;
|
||||
sha256 = "0db6xiphk6xnlpbxraiy31c5xzj0ql6k4rfkmqzh665yyj0nqfkm";
|
||||
};
|
||||
configureFlags = "--with-ssl-headers=${openssl}/include/openssl";
|
||||
|
||||
buildInputs = [bzip2 zlib newt newt openssl pkgconfig slang
|
||||
# automake autoconf libtool gettext
|
||||
];
|
||||
|
||||
patches = [
|
||||
./gentoos-zlib.patch
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "opensource disk backup software";
|
||||
homepage = http://www.partimage.org;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [stdenv.lib.maintainers.marcweber];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user