30 lines
851 B
Nix
30 lines
851 B
Nix
|
{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;
|
||
|
};
|
||
|
}
|