summary refs log tree commit diff
path: root/pkgs/development/libraries/xsd/default.nix
blob: bd87d306b965912ab3e30e3dd166833c35af9cb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, fetchurl, xercesc }:

let
  fixed_paths = ''LDFLAGS="-L${xercesc}/lib" CPPFLAGS="-I${xercesc}/include"'';
in
stdenv.mkDerivation {
  pname = "xsd";
  version = "4.0.0";

  src = fetchurl {
    url = "https://codesynthesis.com/download/xsd/4.0/xsd-4.0.0+dep.tar.bz2";
    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 ];
  };
}