2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, pcre }:
|
2010-01-27 13:12:35 +01:00
|
|
|
|
2013-12-15 10:31:53 +01:00
|
|
|
let version = "1.0.10"; in
|
2010-01-27 13:12:35 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "classads";
|
|
|
|
inherit version;
|
2010-01-27 13:12:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.cs.wisc.edu/condor/classad/c++/classads-${version}.tar.gz";
|
2013-12-15 10:31:53 +01:00
|
|
|
sha256 = "1czgj53gnfkq3ncwlsrwnr4y91wgz35sbicgkp4npfrajqizxqnd";
|
2010-01-27 13:12:35 +01:00
|
|
|
};
|
|
|
|
|
2013-12-15 10:38:20 +01:00
|
|
|
buildInputs = [ pcre ];
|
|
|
|
|
2018-07-25 23:44:21 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-namespace" "--enable-flexible-member"
|
|
|
|
];
|
2021-01-19 22:20:11 +01:00
|
|
|
|
2010-01-27 13:12:35 +01:00
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.cs.wisc.edu/condor/classad/";
|
2013-10-05 16:22:46 +02:00
|
|
|
description = "The Classified Advertisements library provides a generic means for matching resources";
|
2021-01-21 18:00:13 +01:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
platforms = lib.platforms.unix;
|
2010-01-27 13:12:35 +01:00
|
|
|
};
|
|
|
|
}
|