about summary refs log tree commit diff
path: root/pkgs/applications/misc/qcad/default.nix
blob: 00d4fe99ba3ba868755bc86b82b92a4212540a80 (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
39
40
41
42
# translations still misssing
args: with args;
stdenv.mkDerivation {
  name = "qcad-2.0.5.0-1-community";

  src = fetchurl {
    url = http://www.ribbonsoft.com/archives/qcad/qcad-2.0.5.0-1-community.src.tar.gz;
    sha256 = "07aiw7zjf1fc04dhgwwp29adwb2qs165n7v04lh09zy0k2aplcl3";
  };

  # TODO: add translations
  buildPhase = ''
    cd scripts
    sh build_qcad.sh notrans
    cd ..
  '';

  buildInputs = [qt3 libpng libXext libX11];

  patchPhase = ''
    sed -i 's/-pedantic//' mkspecs/defs.pro
    patch -p1 < ${ ./qcad-2.0.4.0-1.src-intptr.patch /* taken from gentoo, fixes amd64 compilation issue */}
  '';

  # probably there is more to be done. But this seems to work for now (eg see gentoo ebuild)
  installPhase = ''
    ensureDir $out/{bin,share}
    cp -r qcad $out/share
    cat >> $out/bin/qcad << EOF
    #!/bin/sh
    cd $out/share/qcad
    ./qcad "\$@"
    EOF
    chmod +x $out/bin/qcad
  '';

  meta = { 
      description="A 2D CAD package based upon Qt.";
      homepage = http://www.ribbonsoft.de/qcad.html;
      license = "GPLv2"; # community edition
  };
}