mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
86 lines
1.8 KiB
Nix
86 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, wrapQtAppsHook
|
|
, boost
|
|
, cairo
|
|
, ceres-solver
|
|
, expat
|
|
, extra-cmake-modules
|
|
, glog
|
|
, libXdmcp
|
|
, python3
|
|
, wayland
|
|
}:
|
|
|
|
let
|
|
minorVersion = "2.5";
|
|
version = "${minorVersion}.0";
|
|
OpenColorIO-Configs = fetchFromGitHub {
|
|
owner = "NatronGitHub";
|
|
repo = "OpenColorIO-Configs";
|
|
rev = "Natron-v${minorVersion}";
|
|
hash = "sha256-TD7Uge9kKbFxOmOCn+TSQovnKTmFS3uERTu5lmZFHbc=";
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit version;
|
|
pname = "natron";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NatronGitHub";
|
|
repo = "Natron";
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-dgScbfyulZPlrngqSw7xwipldoRd8uFO8VP9mlJyhQ8=";
|
|
};
|
|
|
|
cmakeFlags = [ "-DNATRON_SYSTEM_LIBS=ON" ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
expat
|
|
cairo
|
|
python3
|
|
python3.pkgs.pyside2
|
|
python3.pkgs.shiboken2
|
|
extra-cmake-modules
|
|
wayland
|
|
glog
|
|
ceres-solver
|
|
libXdmcp
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share
|
|
cp -r ${OpenColorIO-Configs} $out/share/OpenColorIO-Configs
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/Natron \
|
|
--prefix PYTHONPATH : "${python3.pkgs.makePythonPath [ python3.pkgs.qtpy python3.pkgs.pyside2 ]}" \
|
|
--set-default OCIO "$out/share/OpenColorIO-Configs/blender/config.ocio"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Node-graph based, open-source compositing software";
|
|
longDescription = ''
|
|
Node-graph based, open-source compositing software. Similar in
|
|
functionalities to Adobe After Effects and Nuke by The Foundry.
|
|
'';
|
|
homepage = "https://natron.fr/";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ maintainers.puffnfresh ];
|
|
platforms = platforms.linux;
|
|
broken = stdenv.isLinux && stdenv.isAarch64;
|
|
};
|
|
}
|