mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
23 lines
618 B
Nix
23 lines
618 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
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";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|