mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
26 lines
707 B
Nix
26 lines
707 B
Nix
{ stdenv, fetchurl, pcre }:
|
|
|
|
let version = "1.0.10"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "classads-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.cs.wisc.edu/condor/classad/c++/classads-${version}.tar.gz";
|
|
sha256 = "1czgj53gnfkq3ncwlsrwnr4y91wgz35sbicgkp4npfrajqizxqnd";
|
|
};
|
|
|
|
buildInputs = [ pcre ];
|
|
|
|
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 = stdenv.lib.licenses.asl20;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|