1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/archivers/dar/default.nix
Lluís Batlle i Rossell 9908557ae0 Updating dar.
svn path=/nixpkgs/trunk/; revision=30375
2011-11-10 21:19:30 +00:00

22 lines
578 B
Nix

{ stdenv, fetchurl, zlib, bzip2, openssl, attr }:
stdenv.mkDerivation rec {
name = "dar-2.3.11";
src = fetchurl {
url = "mirror://sourceforge/dar/${name}.tar.gz";
sha256 = "016147f6z8k4wxym2bzgjjp54b4p82lqqwf1lvqmvgj9pbcn3wid";
};
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 = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.linux;
};
}