summary refs log tree commit diff
path: root/pkgs/applications/graphics/antimony/default.nix
blob: 5e8dfd93f30eb26794a839285de3f1c19754251c (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
{ stdenv, fetchgit, libpng, python3, boost, mesa, qtbase, ncurses }:

let
  gitRev    = "745eca3a2d2657c495d5509e9083c884e021d09c";
  gitBranch = "master";
  gitTag    = "0.8.0b";
in 
  stdenv.mkDerivation rec {
    name    = "antimony-${version}";
    version = gitTag;

    src  = fetchgit {
      url         = "git://github.com/mkeeter/antimony.git";
      rev         = gitRev;
      sha256      = "19ir3y5ipmfyygcn8mbxika4j3af6dfrv54dvhn6maz7dy8h30f4";
    };

    patches = [ ./paths-fix.patch ];

    buildInputs = [
      libpng python3 (boost.override { python = python3; })
      mesa qtbase ncurses
    ];

    configurePhase = ''
      export GITREV=${gitRev}
      export GITBRANCH=${gitBranch}
      export GITTAG=${gitTag}

      cd qt
      export sourceRoot=$sourceRoot/qt
      qmake antimony.pro PREFIX=$out
    '';

    meta = with stdenv.lib; {
      description = "A computer-aided design (CAD) tool from a parallel universe";
      homepage    = "https://github.com/mkeeter/antimony";
      license     = licenses.mit;
      platforms   = platforms.linux;
    };
  }