applying patches provided by griswold

svn path=/nixpkgs/trunk/; revision=19707
This commit is contained in:
Rob Vermaas
2010-01-27 12:12:35 +00:00
parent 77bf39bf82
commit 13417770a3
11 changed files with 221 additions and 11 deletions
@@ -0,0 +1,22 @@
{ stdenv, fetchurl }:
let version = "1.0.4"; in
stdenv.mkDerivation {
name = "classads-${version}";
src = fetchurl {
url = "ftp://ftp.cs.wisc.edu/condor/classad/c++/classads-${version}.tar.gz";
sha256 = "80b11c6d383891c90e04e403b2f282e91177940c3fe536082899fbfb9e854d24";
};
configureFlags = ''
--enable-namespace --enable-flexible-member
'';
meta = {
homepage = http://www.cs.wisc.edu/condor/classad/;
description = "The Classified Advertisements library provides a generic means for matching resources.";
license = "Apache-2.0";
};
}