summary refs log tree commit diff
path: root/pkgs/applications/misc/librecad/default.nix
blob: b2960e9f47d438e065ea291848d422f5f77c3527 (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
{ stdenv, fetchurl, qt4, muparser, which}:

stdenv.mkDerivation {
  name = "librecad-1.0.4";

  src = fetchurl {
    url = https://github.com/LibreCAD/LibreCAD/tarball/v1.0.4;
    name = "librecad-1.0.4.tar.gz";
    sha256 = "00nzbijw7pn1zkj4256da501xcm6rkcvycpa79y6dr2p6c43yc6m";
  };

  patchPhase = ''
    sed -i -e s,/bin/bash,`type -P bash`, scripts/postprocess-unix.sh
    sed -i -e s,/usr/share,$out/share, src/lib/engine/rs_system.cpp
  '';

  configurePhase = "qmake PREFIX=$out";

  installPhase = ''
    mkdir -p $out/bin $out/share
    cp -R unix/librecad $out/bin
    cp -R unix/resources $out/share/librecad
  '';

  buildInputs = [ qt4 muparser which ];

  meta = {
    description = "A 2D CAD package based upon Qt";
    homepage = http://librecad.org;
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}