summary refs log tree commit diff
path: root/pkgs/development/libraries/xercesc
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-03-02 17:18:30 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-03-02 17:18:30 +0000
commitd11c00e5a5ea121f218501931ccc9195c696bf7e (patch)
treea258dc6deafc81a8c58cf941d4a9d8f97bc8df26 /pkgs/development/libraries/xercesc
parentf58e7158e04657ef089164882461e726fa6b5642 (diff)
downloadnixpkgs-d11c00e5a5ea121f218501931ccc9195c696bf7e.tar
nixpkgs-d11c00e5a5ea121f218501931ccc9195c696bf7e.tar.gz
nixpkgs-d11c00e5a5ea121f218501931ccc9195c696bf7e.tar.bz2
nixpkgs-d11c00e5a5ea121f218501931ccc9195c696bf7e.tar.lz
nixpkgs-d11c00e5a5ea121f218501931ccc9195c696bf7e.tar.xz
nixpkgs-d11c00e5a5ea121f218501931ccc9195c696bf7e.tar.zst
nixpkgs-d11c00e5a5ea121f218501931ccc9195c696bf7e.zip
Adding xercesc, the references to coin3d and soqt, and trying to add
freecad (that still does not build).

svn path=/nixpkgs/trunk/; revision=26135
Diffstat (limited to 'pkgs/development/libraries/xercesc')
-rw-r--r--pkgs/development/libraries/xercesc/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/xercesc/default.nix b/pkgs/development/libraries/xercesc/default.nix
new file mode 100644
index 00000000000..f5c9ba8a698
--- /dev/null
+++ b/pkgs/development/libraries/xercesc/default.nix
@@ -0,0 +1,17 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "xerces-c-${version}";
+  version = "3.1.1";
+
+  src = fetchurl {
+    url = "mirror://apache/xerces/c/3/sources/${name}.tar.gz";
+    sha256 = "0dl7jr26vlh5p3hps86xrwyafq6f21schc9q4zyxb48b3vvqa9x4";
+  };
+
+  meta = {
+    homepage = http://xerces.apache.org/xerces-c/;
+    description = "Validating XML parser written in a portable subset of C++";
+    license = "ASL2.0";
+  };
+}