1{ stdenv, fetchFromGitHub, cmake, libpng, zlib, qt4,
2bison, flex, libGLU, pythonPackages
3}:
4
5stdenv.mkDerivation rec {
6 name = "seexpr-${version}";
7 version = "2.11";
8 src = fetchFromGitHub {
9 owner = "wdas";
10 repo = "SeExpr";
11 rev = "v2.11";
12 sha256 = "0a44k56jf6dl36fwgg4zpc252wq5lf9cblg74mp73k82hxw439l4";
13 };
14
15 buildInputs = [ cmake libGLU libpng zlib qt4 pythonPackages.pyqt4 bison flex ];
16 meta = with stdenv.lib; {
17 description = "Embeddable expression evaluation engine from Disney Animation";
18 homepage = https://www.disneyanimation.com/technology/seexpr.html;
19 maintainers = with maintainers; [ hodapp ];
20 license = licenses.asl20;
21 platforms = platforms.linux;
22 };
23}