2013-05-16 11:41:58 +02:00
|
|
|
{stdenv, fetchurl, bzip2, zlib, newt, openssl, pkgconfig, slang
|
|
|
|
, automake, autoconf, libtool, gettext
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "partimage-0.6.9";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 03:17:07 +02:00
|
|
|
url = mirror://sourceforge/partimage/partimage-0.6.9.tar.bz2;
|
2013-05-16 11:41:58 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|