nixpkgs/pkgs/development/libraries/xsd/default.nix

39 lines
919 B
Nix
Raw Normal View History

2016-04-26 20:11:51 +00:00
{ stdenv, fetchurl, xercesc }:
let
fixed_paths = ''LDFLAGS="-L${xercesc}/lib" CPPFLAGS="-I${xercesc}/include"'';
in
stdenv.mkDerivation rec {
name = "xsd-${version}";
version = "4.0.0";
src = fetchurl {
url = "https://codesynthesis.com/download/xsd/4.0/xsd-4.0.0+dep.tar.bz2";
2016-04-26 20:11:51 +00:00
sha256 = "05wqhmd5cd4pdky8i8qysnh96d2h16ly8r73whmbxkajiyf2m9gc";
};
patches = [ ./xsdcxx.patch ];
configurePhase = ''
patchShebangs .
'';
buildPhase = ''
make ${fixed_paths}
'';
buildInputs = [ xercesc ];
installPhase = ''
make ${fixed_paths} install_prefix="$out" install
'';
meta = {
homepage = http://www.codesynthesis.com/products/xsd;
description = "An open-source, cross-platform W3C XML Schema to C++ data binding compiler";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.jagajaga ];
};
}