mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
104 lines
2.5 KiB
Nix
104 lines
2.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, 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=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix gcc-13 build:
|
|
# https://github.com/NatronGitHub/Natron/pull/929
|
|
(fetchpatch {
|
|
name = "gcc-13.patch";
|
|
url = "https://github.com/NatronGitHub/Natron/commit/4b44fb18293035873b35c3a2d2aa29da78cb8740.patch";
|
|
includes = ["Global/GlobalDefines.h"];
|
|
hash = "sha256-9E1tJCvO7zA1iQAhrlL3GaBFIGpkjxNOr31behQXdhQ=";
|
|
})
|
|
(fetchpatch {
|
|
name = "gcc-13.patch";
|
|
url = "https://github.com/NatronGitHub/Natron/commit/f21f58622e32c1684567c82e2ab361f33030bda7.patch";
|
|
includes = ["Engine/Noise.cpp"];
|
|
hash = "sha256-t2mzTsRuXVs8d1BB/5uAY1OPxWRa3JTK1iAWLAMsrgs=";
|
|
})
|
|
];
|
|
|
|
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.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64;
|
|
};
|
|
}
|