Merge remote-tracking branch 'central/master' into viric_clean

This commit is contained in:
Lluís Batlle i Rossell
2018-07-28 19:25:14 +02:00
292 changed files with 11331 additions and 3672 deletions
+10 -4
View File
@@ -3,7 +3,10 @@ eigen3_3, libpng, python, libGLU, qt4, openexr, openimageio,
opencolorio, xercesc, ilmbase, osl, seexpr
}:
let boost_static = boost165.override { enableStatic = true; };
let boost_static = boost165.override {
enableStatic = true;
enablePython = true;
};
in stdenv.mkDerivation rec {
name = "appleseed-${version}";
@@ -28,9 +31,7 @@ in stdenv.mkDerivation rec {
"-DUSE_EXTERNAL_OSL=ON" "-DWITH_CLI=ON" "-DWITH_STUDIO=ON" "-DWITH_TOOLS=ON"
"-DUSE_EXTERNAL_PNG=ON" "-DUSE_EXTERNAL_ZLIB=ON"
"-DUSE_EXTERNAL_EXR=ON" "-DUSE_EXTERNAL_SEEXPR=ON"
"-DWITH_PYTHON2_BINDINGS=ON"
# TODO: Look further into this if someone needs Python 3.x:
# "-DWITH_PYTHON3_BINDINGS=ON"
"-DWITH_PYTHON=ON"
"-DWITH_DISNEY_MATERIAL=ON"
"-DUSE_SSE=ON"
"-DUSE_SSE42=ON"
@@ -44,6 +45,11 @@ in stdenv.mkDerivation rec {
license = licenses.mit;
platforms = platforms.linux;
};
# Work around a bug in the CMake build:
postInstall = ''
chmod a+x $out/bin/*
'';
}
# TODO: Is the below problematic?
+38
View File
@@ -0,0 +1,38 @@
{ stdenv, fetchFromGitHub, makeWrapper,
maim, slop, ffmpeg, byzanz, libnotify, xdpyinfo }:
stdenv.mkDerivation rec {
name = "yaxg-${version}";
version = "unstable-2018-05-03";
src = fetchFromGitHub {
owner = "DanielFGray";
repo = "yaxg";
rev = "9d6af75da2ec25dba4b8d784e431064033d67ad2";
sha256 = "01p6ghp1vfrlnrm78bgbl9ppqwsdxh761g0qa172dpvsqg91l1p6";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ maim slop ffmpeg byzanz libnotify xdpyinfo ];
installPhase = ''
mkdir -p $out/bin/
mv yaxg $out/bin/
chmod +x $out/bin/yaxg
wrapProgram $out/bin/yaxg --prefix PATH : ${ stdenv.lib.makeBinPath [ maim slop ffmpeg byzanz libnotify xdpyinfo ]}
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Yet Another X Grabber script";
longDescription = ''
Capture and record your screen with callbacks. Wraps maim, slop, ffmpeg,
and byzanz to enable still image, video, or gif recording of part or all
of your screen. Similar command-line interface to scrot but is overall
more flexible and less buggy.
'';
platforms = platforms.all;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ neonfuz ];
};
}