nixpkgs/pkgs/development/tools/glslviewer/default.nix

53 lines
1.6 KiB
Nix
Raw Normal View History

2017-09-10 15:23:50 +00:00
{ stdenv, fetchFromGitHub, glfw, pkgconfig, libXrandr, libXdamage
, libXext, libXrender, libXinerama, libXcursor, libXxf86vm, libXi
, libX11, libGLU, python2Packages, ensureNewerSourcesForZipFilesHook
, Cocoa
2017-09-10 15:23:50 +00:00
}:
2017-08-03 23:29:26 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "glslviewer";
2019-04-22 19:05:00 +00:00
version = "2019-04-22";
2017-08-03 23:29:26 +00:00
src = fetchFromGitHub {
owner = "patriciogonzalezvivo";
repo = "glslViewer";
2019-04-22 19:05:00 +00:00
rev = "fa3e2ed4810927d189e480b704366cca22f281f3";
sha256 = "1888jxi84f2nnc0kpzqrn2cada1z4zqyq8ss4ppb5y3wy7d87qjn";
2017-08-03 23:29:26 +00:00
};
nativeBuildInputs = [ pkgconfig ensureNewerSourcesForZipFilesHook ];
buildInputs = [
glfw libGLU glfw libXrandr libXdamage
libXext libXrender libXinerama libXcursor libXxf86vm
libXi libX11
] ++ (with python2Packages; [ python setuptools wrapPython ])
++ stdenv.lib.optional stdenv.isDarwin Cocoa;
pythonPath = with python2Packages; [ requests ];
2017-08-03 23:29:26 +00:00
# Makefile has /usr/local/bin hard-coded for 'make install'
preConfigure = ''
2017-09-10 15:23:50 +00:00
substituteInPlace Makefile \
--replace '/usr/local' "$out" \
--replace '/usr/bin/clang++' 'clang++'
substituteInPlace Makefile \
--replace 'python setup.py install' "python setup.py install --prefix=$out"
2017-08-03 23:29:26 +00:00
'';
preInstall = ''
mkdir -p $out/bin $(toPythonPath "$out")
export PYTHONPATH=$PYTHONPATH:$(toPythonPath "$out")
2017-08-03 23:29:26 +00:00
'';
2017-09-10 15:23:50 +00:00
postInstall = ''
wrapPythonPrograms
'';
2017-09-10 15:23:50 +00:00
2017-08-03 23:29:26 +00:00
meta = with stdenv.lib; {
description = "Live GLSL coding renderer";
homepage = http://patriciogonzalezvivo.com/2015/glslViewer/;
license = licenses.bsd3;
platforms = platforms.linux ++ platforms.darwin;
maintainers = [ maintainers.hodapp ];
};
}