Adding xercesc, the references to coin3d and soqt, and trying to add

freecad (that still does not build).

svn path=/nixpkgs/trunk/; revision=26135
This commit is contained in:
Lluís Batlle i Rossell
2011-03-02 17:18:30 +00:00
parent f58e7158e0
commit d11c00e5a5
3 changed files with 70 additions and 0 deletions

View File

@@ -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";
};
}