* Added libpar2 and nzbget.

svn path=/nixpkgs/trunk/; revision=26895
This commit is contained in:
Eelco Dolstra
2011-04-19 20:35:24 +00:00
parent 1cdd246d2b
commit b2c4b433b4
2 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchurl, pkgconfig, libsigcxx }:
stdenv.mkDerivation rec {
name = "libpar2-0.2";
src = fetchurl {
url = "mirror://sourceforge/parchive/${name}.tar.gz";
sha256 = "024r37wi01d1pfkk17l5lk0ci0cc0xhy5z050hzf3cbk1y2bykq7";
};
buildInputs = [ pkgconfig libsigcxx ];
meta = {
homepage = http://parchive.sourceforge.net/;
license = "GPLv2+";
description = "A library for using Parchives (parity archive volume sets)";
};
}