2017-12-05 22:20:11 +00:00
|
|
|
{ stdenv, fetchurl, xercesc }:
|
|
|
|
let
|
|
|
|
major = "1.9";
|
|
|
|
minor = "0";
|
|
|
|
in
|
2016-02-01 16:47:09 +00:00
|
|
|
with stdenv; with lib;
|
|
|
|
mkDerivation rec {
|
2017-12-05 22:20:11 +00:00
|
|
|
name = "libcutl-${major}.${minor}";
|
2016-02-01 16:47:09 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A collection of generic and independent components such as meta-programming tests, smart pointers, containers, compiler building blocks" ;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://codesynthesis.com/download/libcutl/1.9/${name}.tar.bz2";
|
2016-02-01 16:47:09 +00:00
|
|
|
sha1 = "0e8d255145afbc339a3284ef85a43f4baf3fec43";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ xercesc ];
|
|
|
|
}
|