summary refs log tree commit diff
path: root/pkgs/development/compilers/seexpr/default.nix
blob: f13ec5174d5ae5cfd6a02e4ff7e0fcfd5ebb9ba3 (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
{ lib
, stdenv
, fetchFromGitHub
, cmake
, libpng
, zlib
, qt4
, bison
, flex
, libGLU
, python3Packages
}:

stdenv.mkDerivation rec {
  pname = "seexpr";
  version = "3.0.1";

  src = fetchFromGitHub {
    owner = "wdas";
    repo = "SeExpr";
    rev = "v${version}";
    sha256 = "sha256-r6mgyb/FGz4KYZOgLDgmIqjO+PSmneD3KUWjymZXtEk=";
  };

  cmakeFlags = [ "-DENABLE_SSE4=OFF" ];

  nativeBuildInputs = [ cmake ];
  buildInputs = [ libGLU libpng zlib qt4 python3Packages.pyqt4 python3Packages.boost bison flex ];

  meta = with lib; {
    description = "Embeddable expression evaluation engine from Disney Animation";
    homepage = "https://wdas.github.io/SeExpr/";
    maintainers = with maintainers; [ hodapp ];
    license = licenses.asl20;
    platforms = platforms.linux;
  };
}