about summary refs log tree commit diff
path: root/pkgs/applications/misc/librecad/default.nix
blob: 59bd4888e4a6202f60d29babe71fccea5ef62e6d (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.2";

  src = fetchurl {
    url = https://github.com/LibreCAD/LibreCAD/tarball/v1.0.2;
    name = "librecad-1.0.2.tar.gz";
    sha256 = "13ee7e401e4f5fbc68c2e017b7189bec788038f4f6e77f559861ceb8cfb1907d";
  };

  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 = ''
    ensureDir $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 = "GPLv2";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}