mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
natron: init at 2.1.9
This commit is contained in:
parent
72cc140c93
commit
f133475370
3 changed files with 148 additions and 0 deletions
20
pkgs/applications/video/natron/config.pri
Normal file
20
pkgs/applications/video/natron/config.pri
Normal file
|
@ -0,0 +1,20 @@
|
|||
boost: LIBS += -lboost_serialization
|
||||
expat: LIBS += -lexpat
|
||||
expat: PKGCONFIG -= expat
|
||||
cairo {
|
||||
PKGCONFIG += cairo
|
||||
LIBS -= $$system(pkg-config --variable=libdir cairo)/libcairo.a
|
||||
}
|
||||
pyside {
|
||||
PKGCONFIG -= pyside
|
||||
INCLUDEPATH += $$system(pkg-config --variable=includedir pyside)
|
||||
INCLUDEPATH += $$system(pkg-config --variable=includedir pyside)/QtCore
|
||||
INCLUDEPATH += $$system(pkg-config --variable=includedir pyside)/QtGui
|
||||
INCLUDEPATH += $$system(pkg-config --variable=includedir QtGui)
|
||||
LIBS += -lpyside-python2.7
|
||||
}
|
||||
shiboken {
|
||||
PKGCONFIG -= shiboken
|
||||
INCLUDEPATH += $$system(pkg-config --variable=includedir shiboken)
|
||||
LIBS += -lshiboken-python2.7
|
||||
}
|
126
pkgs/applications/video/natron/default.nix
Normal file
126
pkgs/applications/video/natron/default.nix
Normal file
|
@ -0,0 +1,126 @@
|
|||
{ lib, stdenv, fetchurl, qt4, pkgconfig, boost, expat, cairo, python2Packages,
|
||||
cmake, flex, bison, pango, librsvg, librevenge, libxml2, libcdr, libzip,
|
||||
poppler, imagemagick, glew, openexr, ffmpeg, opencolorio, openimageio,
|
||||
qmake4Hook, libpng, mesa_noglu, lndir }:
|
||||
|
||||
let
|
||||
minorVersion = "2.1";
|
||||
version = "${minorVersion}.9";
|
||||
OpenColorIO-Configs = fetchurl {
|
||||
url = "https://github.com/MrKepzie/OpenColorIO-Configs/archive/Natron-v${minorVersion}.tar.gz";
|
||||
sha256 = "9eec5a02ca80c9cd8e751013cb347ea982fdddd592a4a9215cce462e332dac51";
|
||||
};
|
||||
seexpr = stdenv.mkDerivation rec {
|
||||
version = "1.0.1";
|
||||
name = "seexpr-${version}";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/wdas/SeExpr/archive/rel-${version}.tar.gz";
|
||||
sha256 = "1ackh0xs4ip7mk34bam8zd4qdymkdk0dgv8x0f2mf6gbyzzyh7lp";
|
||||
};
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ libpng flex bison ];
|
||||
};
|
||||
buildPlugin = { pluginName, sha256, buildInputs, preConfigure ? "" }:
|
||||
stdenv.mkDerivation {
|
||||
name = "openfx-${pluginName}-${version}";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/MrKepzie/Natron/releases/download/${version}/openfx-${pluginName}-${version}.tar.xz";
|
||||
inherit sha256;
|
||||
};
|
||||
inherit buildInputs;
|
||||
preConfigure = ''
|
||||
makeFlagsArray+=("CONFIG=release")
|
||||
makeFlagsArray+=("PLUGINPATH=$out/Plugins/OFX/Natron")
|
||||
${preConfigure}
|
||||
'';
|
||||
};
|
||||
lodepngcpp = fetchurl {
|
||||
url = https://raw.githubusercontent.com/lvandeve/lodepng/a70c086077c0eaecbae3845e4da4424de5f43361/lodepng.cpp;
|
||||
sha256 = "1dxkkr4jbmvlwfr7m16i1mgcj1pqxg9s1a7y3aavs9rrk0ki8ys2";
|
||||
};
|
||||
lodepngh = fetchurl {
|
||||
url = https://raw.githubusercontent.com/lvandeve/lodepng/a70c086077c0eaecbae3845e4da4424de5f43361/lodepng.h;
|
||||
sha256 = "14drdikd0vws3wwpyqq7zzm5z3kg98svv4q4w0hr45q6zh6hs0bq";
|
||||
};
|
||||
CImgh = fetchurl {
|
||||
url = https://raw.githubusercontent.com/dtschump/CImg/572c12d82b2f59ece21be8f52645c38f1dd407e6/CImg.h;
|
||||
sha256 = "0n4qfxj8j6rmj4svf68gg2pzg8d1pb74bnphidnf8i2paj6lwniz";
|
||||
};
|
||||
plugins = map buildPlugin [
|
||||
({
|
||||
pluginName = "arena";
|
||||
sha256 = "0qba13vn9qdfax7nqlz1ps27zspr5kh795jp1xvbmwjzjzjpkqkf";
|
||||
buildInputs = [
|
||||
pkgconfig pango librsvg librevenge libcdr opencolorio libxml2 libzip
|
||||
poppler imagemagick
|
||||
];
|
||||
preConfigure = ''
|
||||
sed -i 's|pkg-config poppler-glib|pkg-config poppler poppler-glib|g' Makefile.master
|
||||
for i in Extra Bundle; do
|
||||
cp ${lodepngcpp} $i/lodepng.cpp
|
||||
cp ${lodepngh} $i/lodepng.h
|
||||
done
|
||||
'';
|
||||
})
|
||||
({
|
||||
pluginName = "io";
|
||||
sha256 = "0s196i9fkgr9iw92c94mxgs1lkxbhynkf83vmsgrldflmf0xjky7";
|
||||
buildInputs = [
|
||||
pkgconfig libpng ffmpeg openexr opencolorio openimageio boost mesa_noglu
|
||||
seexpr
|
||||
];
|
||||
})
|
||||
({
|
||||
pluginName = "misc";
|
||||
sha256 = "02h79jrll0c17azxj16as1mks3lmypm4m3da4mms9sg31l3n82qi";
|
||||
buildInputs = [
|
||||
mesa_noglu
|
||||
];
|
||||
preConfigure = ''
|
||||
cp ${CImgh} CImg/CImg.h
|
||||
'';
|
||||
})
|
||||
];
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit version;
|
||||
name = "natron-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/MrKepzie/Natron/releases/download/${version}/Natron-${version}.tar.xz";
|
||||
sha256 = "1wdc0zqriw2jhlrhzs6af3kagrv22cm086ffnbr1x43mgc9hfhjp";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig qt4 boost expat cairo python2Packages.pyside python2Packages.pysideShiboken
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ qmake4Hook python2Packages.wrapPython ];
|
||||
|
||||
preConfigure = ''
|
||||
export MAKEFLAGS=-j$NIX_BUILD_CORES
|
||||
cp ${./config.pri} config.pri
|
||||
mkdir OpenColorIO-Configs
|
||||
tar -xf ${OpenColorIO-Configs} --strip-components=1 -C OpenColorIO-Configs
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
for i in ${lib.escapeShellArgs plugins}; do
|
||||
${lndir}/bin/lndir $i $out
|
||||
done
|
||||
wrapProgram $out/bin/Natron \
|
||||
--set PYTHONPATH "$PYTHONPATH"
|
||||
'';
|
||||
|
||||
meta = with stdenv.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.inria.fr/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [ maintainers.puffnfresh ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -14073,6 +14073,8 @@ in
|
|||
|
||||
neomutt = callPackage ../applications/networking/mailreaders/neomutt { };
|
||||
|
||||
natron = callPackage ../applications/video/natron { };
|
||||
|
||||
notion = callPackage ../applications/window-managers/notion { };
|
||||
|
||||
openshift = callPackage ../applications/networking/cluster/openshift { };
|
||||
|
|
Loading…
Reference in a new issue