mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
Merge pull request #146264 from Stunkymonkey/seexpr-3.0.1
This commit is contained in:
commit
4b60f02c37
1 changed files with 23 additions and 10 deletions
|
@ -1,22 +1,35 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, cmake, libpng, zlib, qt4,
|
{ lib
|
||||||
bison, flex, libGLU, python2Packages
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, libpng
|
||||||
|
, zlib
|
||||||
|
, qt4
|
||||||
|
, bison
|
||||||
|
, flex
|
||||||
|
, libGLU
|
||||||
|
, python3Packages
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
pname = "seexpr";
|
pname = "seexpr";
|
||||||
version = "2.11";
|
version = "3.0.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "wdas";
|
owner = "wdas";
|
||||||
repo = "SeExpr";
|
repo = "SeExpr";
|
||||||
rev = "v2.11";
|
rev = "v${version}";
|
||||||
sha256 = "0a44k56jf6dl36fwgg4zpc252wq5lf9cblg74mp73k82hxw439l4";
|
sha256 = "sha256-r6mgyb/FGz4KYZOgLDgmIqjO+PSmneD3KUWjymZXtEk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DENABLE_SSE4=OFF" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ libGLU libpng zlib qt4 python2Packages.pyqt4 bison flex ];
|
buildInputs = [ libGLU libpng zlib qt4 python3Packages.pyqt4 python3Packages.boost bison flex ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Embeddable expression evaluation engine from Disney Animation";
|
description = "Embeddable expression evaluation engine from Disney Animation";
|
||||||
homepage = "https://www.disneyanimation.com/technology/seexpr.html";
|
homepage = "https://wdas.github.io/SeExpr/";
|
||||||
maintainers = with maintainers; [ hodapp ];
|
maintainers = with maintainers; [ hodapp ];
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue