about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libcutl/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libcutl/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/libcutl/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libcutl/default.nix b/nixpkgs/pkgs/development/libraries/libcutl/default.nix
new file mode 100644
index 000000000000..81122a6eb520
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libcutl/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, xercesc }:
+let
+    major = "1.9";
+    minor = "0";
+in
+with stdenv; with lib;
+mkDerivation rec {
+  name = "libcutl-${major}.${minor}";
+
+  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 {
+    url = "https://codesynthesis.com/download/libcutl/1.9/${name}.tar.bz2";
+    sha1 = "0e8d255145afbc339a3284ef85a43f4baf3fec43";
+  };
+
+  buildInputs = [ xercesc ];
+}