1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00

Adding dar (disk archiver with indexable archives) - patch by Lluis Batlle

svn path=/nixpkgs/trunk/; revision=13695
This commit is contained in:
Michael Raskin 2009-01-03 15:11:52 +00:00
parent b689e76b2e
commit b04fc9492c
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{stdenv, fetchurl, zlib, bzip2, openssl}:
stdenv.mkDerivation {
name = "dar-2.3.8";
src = fetchurl {
url = mirror://sourceforge/dar/dar-2.3.8.tar.gz;
md5 = "6c0d383c22df0e1816e860153f60d746";
};
meta = {
homepage = http://dar.linux.free.fr/;
description = "Disk ARchiver, allows backing up files into indexed archives";
};
buildInputs = [zlib bzip2 openssl];
}

View file

@ -624,6 +624,10 @@ let
inherit (gtkLibs) glib;
};
dar = import ../tools/archivers/dar {
inherit fetchurl stdenv zlib bzip2 openssl;
};
ddrescue = builderDefsPackage (selectVersion ../tools/system/ddrescue "1.8") {};
dnsmasq = import ../tools/networking/dnsmasq {