Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 24 lines 731 B view raw
1{ lib, stdenv, fetchFromGitHub, cmake, libpng, zlib, qt4, 2bison, flex, libGLU, pythonPackages 3}: 4 5stdenv.mkDerivation { 6 pname = "seexpr"; 7 version = "2.11"; 8 src = fetchFromGitHub { 9 owner = "wdas"; 10 repo = "SeExpr"; 11 rev = "v2.11"; 12 sha256 = "0a44k56jf6dl36fwgg4zpc252wq5lf9cblg74mp73k82hxw439l4"; 13 }; 14 15 nativeBuildInputs = [ cmake ]; 16 buildInputs = [ libGLU libpng zlib qt4 pythonPackages.pyqt4 bison flex ]; 17 meta = with lib; { 18 description = "Embeddable expression evaluation engine from Disney Animation"; 19 homepage = "https://www.disneyanimation.com/technology/seexpr.html"; 20 maintainers = with maintainers; [ hodapp ]; 21 license = licenses.asl20; 22 platforms = platforms.linux; 23 }; 24}