forked from mirrors/nixpkgs
* dar: build with --disable-dar-static, apparently the zlib update
broke it. Also upgrade to 2.3.10 and turn on ACL support. svn path=/nixpkgs/branches/x-updates/; revision=22690
This commit is contained in:
parent
ab0d010869
commit
f555da864d
|
@ -1,18 +1,21 @@
|
|||
{stdenv, fetchurl, zlib, bzip2, openssl}:
|
||||
{ stdenv, fetchurl, zlib, bzip2, openssl, attr }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dar-2.3.9";
|
||||
name = "dar-2.3.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/dar/dar-2.3.9.tar.gz";
|
||||
sha256 = "037ak6wckqyn52000m8bapgnf70rw776dl3s61i9bdq548slq6yc";
|
||||
url = "mirror://sourceforge/dar/${name}.tar.gz";
|
||||
sha256 = "04qzdcz97bzz414khfj82hn8s1i1ry7qxaikq8lj1069gvhc6qjn";
|
||||
};
|
||||
|
||||
buildInputs = [zlib bzip2 openssl];
|
||||
buildInputs = [ zlib bzip2 openssl attr ];
|
||||
|
||||
configureFlags = "--disable-dar-static";
|
||||
|
||||
meta = {
|
||||
homepage = http://dar.linux.free.fr/;
|
||||
description = "Disk ARchiver, allows backing up files into indexed archives";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
homepage = http://dar.linux.free.fr/;
|
||||
description = "Disk ARchiver, allows backing up files into indexed archives";
|
||||
maintainers = [ stdenv.lib.maintainers.viric ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -606,7 +606,7 @@ let
|
|||
};
|
||||
|
||||
dar = import ../tools/archivers/dar {
|
||||
inherit fetchurl stdenv zlib bzip2 openssl;
|
||||
inherit fetchurl stdenv zlib bzip2 openssl attr;
|
||||
};
|
||||
|
||||
davfs2 = import ../tools/filesystems/davfs2 {
|
||||
|
|
Loading…
Reference in a new issue