summary refs log tree commit diff
path: root/pkgs/development/libraries/libcutl/default.nix
diff options
context:
space:
mode:
authorMichiel Leenaars <michiel@staff.isoc.nl>2016-02-01 17:47:09 +0100
committerMichiel Leenaars <michiel@staff.isoc.nl>2016-02-01 17:50:57 +0100
commit5b8e6aaa219390c7e03d984150c7ac3874922fe7 (patch)
tree5af07e3f006cda0c247896c53cf6283c2502ba68 /pkgs/development/libraries/libcutl/default.nix
parenta7b7ac8bfb948f05c8956f8de23d806fb7686438 (diff)
downloadnixpkgs-5b8e6aaa219390c7e03d984150c7ac3874922fe7.tar
nixpkgs-5b8e6aaa219390c7e03d984150c7ac3874922fe7.tar.gz
nixpkgs-5b8e6aaa219390c7e03d984150c7ac3874922fe7.tar.bz2
nixpkgs-5b8e6aaa219390c7e03d984150c7ac3874922fe7.tar.lz
nixpkgs-5b8e6aaa219390c7e03d984150c7ac3874922fe7.tar.xz
nixpkgs-5b8e6aaa219390c7e03d984150c7ac3874922fe7.tar.zst
nixpkgs-5b8e6aaa219390c7e03d984150c7ac3874922fe7.zip
libcutl: init -> 1.9.0
Diffstat (limited to 'pkgs/development/libraries/libcutl/default.nix')
-rw-r--r--pkgs/development/libraries/libcutl/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libcutl/default.nix b/pkgs/development/libraries/libcutl/default.nix
new file mode 100644
index 00000000000..526890ed563
--- /dev/null
+++ b/pkgs/development/libraries/libcutl/default.nix
@@ -0,0 +1,21 @@
+{stdenv, fetchurl, xercesc }:
+with stdenv; with lib;
+mkDerivation rec {
+  name = "libcutl-${meta.major}.${meta.minor}";
+
+  meta = {
+    major = "1.9";
+    minor = "0";
+    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 = "http://codesynthesis.com/download/libcutl/1.9/${name}.tar.bz2";
+    sha1 = "0e8d255145afbc339a3284ef85a43f4baf3fec43";
+  };
+
+  buildInputs = [ xercesc ];
+}