treewide: Get rid of libGLU_combined
This commit is contained in:
parent
e6963bc983
commit
c9d8624ccd
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub , xorg, freetype, alsaLib, curl, libjack2
|
{ stdenv, fetchFromGitHub , xorg, freetype, alsaLib, curl, libjack2
|
||||||
, lv2, pkgconfig, libGLU_combined }:
|
, lv2, pkgconfig, libGLU, libGL }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
version = "0.9.0";
|
version = "0.9.0";
|
||||||
@ -15,7 +15,7 @@
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
xorg.libX11 xorg.libXcomposite xorg.libXcursor xorg.libXext
|
xorg.libX11 xorg.libXcomposite xorg.libXcursor xorg.libXext
|
||||||
xorg.libXinerama xorg.libXrender xorg.libXrandr
|
xorg.libXinerama xorg.libXrender xorg.libXrandr
|
||||||
freetype alsaLib curl libjack2 pkgconfig libGLU_combined lv2
|
freetype alsaLib curl libjack2 pkgconfig libGLU libGL lv2
|
||||||
];
|
];
|
||||||
|
|
||||||
CXXFLAGS = "-DHAVE_LROUND";
|
CXXFLAGS = "-DHAVE_LROUND";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, SDL, libjack2, libGLU_combined, pkgconfig }:
|
{ stdenv, fetchurl, SDL, libjack2, libGLU, libGL, pkgconfig }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "jack_oscrolloscope";
|
pname = "jack_oscrolloscope";
|
||||||
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ SDL libjack2 libGLU_combined ];
|
buildInputs = [ SDL libjack2 libGLU libGL ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig
|
{ stdenv, fetchurl, pkgconfig
|
||||||
, lv2, libGLU_combined, gtk2, cairo, pango, fftwFloat, libjack2 }:
|
, lv2, libGLU, libGL, gtk2, cairo, pango, fftwFloat, libjack2 }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.9.10";
|
version = "0.9.10";
|
||||||
@ -26,7 +26,7 @@ stdenv.mkDerivation {
|
|||||||
inherit name;
|
inherit name;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ lv2 libGLU_combined gtk2 cairo pango fftwFloat libjack2 ];
|
buildInputs = [ lv2 libGLU libGL gtk2 cairo pango fftwFloat libjack2 ];
|
||||||
|
|
||||||
srcs = [ src robtkSrc ];
|
srcs = [ src robtkSrc ];
|
||||||
sourceRoot = name;
|
sourceRoot = name;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, alsaLib, cmake, libGLU_combined, makeWrapper, qt4 }:
|
{ stdenv, fetchurl, alsaLib, cmake, libGLU, libGL, makeWrapper, qt4 }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "pianobooster";
|
pname = "pianobooster";
|
||||||
@ -16,12 +16,13 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
preConfigure = "cd src";
|
preConfigure = "cd src";
|
||||||
|
|
||||||
buildInputs = [ alsaLib cmake makeWrapper libGLU_combined qt4 ];
|
buildInputs = [ alsaLib cmake makeWrapper libGLU libGL qt4 ];
|
||||||
NIX_LDFLAGS = [ "-lGL" "-lpthread" ];
|
NIX_LDFLAGS = [ "-lGL" "-lpthread" ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram $out/bin/pianobooster \
|
wrapProgram $out/bin/pianobooster \
|
||||||
--prefix LD_LIBRARY_PATH : ${libGLU_combined}/lib
|
--prefix LD_LIBRARY_PATH : ${libGL}/lib \
|
||||||
|
--prefix LD_LIBRARY_PATH : ${libGLU}/lib
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchzip, alsaLib, freetype, ftgl, libjack2, libX11, lv2
|
{ stdenv, fetchzip, alsaLib, freetype, ftgl, libjack2, libX11, lv2
|
||||||
, libGLU_combined, pkgconfig, ttf_bitstream_vera
|
, libGLU, libGL, pkgconfig, ttf_bitstream_vera
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
alsaLib freetype ftgl libjack2 libX11 lv2 libGLU_combined
|
alsaLib freetype ftgl libjack2 libX11 lv2 libGLU libGL
|
||||||
ttf_bitstream_vera
|
ttf_bitstream_vera
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, lv2, pkgconfig, libGLU_combined, cairo, pango, libjack2 }:
|
{ stdenv, fetchFromGitHub, lv2, pkgconfig, libGLU, libGL, cairo, pango, libjack2 }:
|
||||||
|
|
||||||
let
|
let
|
||||||
name = "sisco.lv2-${version}";
|
name = "sisco.lv2-${version}";
|
||||||
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
|||||||
sourceRoot = src.name;
|
sourceRoot = src.name;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ lv2 pango cairo libjack2 libGLU_combined ];
|
buildInputs = [ lv2 pango cairo libjack2 libGLU libGL ];
|
||||||
|
|
||||||
postUnpack = "chmod u+w -R ${robtkName}-src; mv ${robtkName}-src/* ${sourceRoot}/robtk";
|
postUnpack = "chmod u+w -R ${robtkName}-src; mv ${robtkName}-src/* ${sourceRoot}/robtk";
|
||||||
sisco_VERSION = version;
|
sisco_VERSION = version;
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
, boost
|
, boost
|
||||||
, ecasound
|
, ecasound
|
||||||
, glibcLocales
|
, glibcLocales
|
||||||
, libGLU_combined # Needed because help2man basically does a ./ssr-binaural --help and ssr-binaural needs libGL
|
, libGLU, libGL # Needed because help2man basically does a ./ssr-binaural --help and ssr-binaural needs libGL
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
@ -33,7 +33,7 @@ stdenv.mkDerivation {
|
|||||||
LC_ALL = "en_US.UTF-8";
|
LC_ALL = "en_US.UTF-8";
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
buildInputs = [ boost boost.dev ecasound libGLU_combined help2man libsndfile fftwFloat libjack2 libxml2 qt4 glibcLocales ];
|
buildInputs = [ boost boost.dev ecasound libGLU libGL help2man libsndfile fftwFloat libjack2 libxml2 qt4 glibcLocales ];
|
||||||
|
|
||||||
# 1) Fix detecting version. https://github.com/SoundScapeRenderer/ssr/pull/53
|
# 1) Fix detecting version. https://github.com/SoundScapeRenderer/ssr/pull/53
|
||||||
# 2) Make it find ecasound headers
|
# 2) Make it find ecasound headers
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, alsaLib, boost, cairo, cmake, fftwSinglePrec, fltk, pcre
|
{ stdenv, fetchurl, alsaLib, boost, cairo, cmake, fftwSinglePrec, fltk, pcre
|
||||||
, libjack2, libsndfile, libXdmcp, readline, lv2, libGLU_combined, minixml, pkgconfig, zlib, xorg
|
, libjack2, libsndfile, libXdmcp, readline, lv2, libGLU, libGL, minixml, pkgconfig, zlib, xorg
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert stdenv ? glibc;
|
assert stdenv ? glibc;
|
||||||
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
alsaLib boost cairo fftwSinglePrec fltk libjack2 libsndfile libXdmcp readline lv2 libGLU_combined
|
alsaLib boost cairo fftwSinglePrec fltk libjack2 libsndfile libXdmcp readline lv2 libGLU libGL
|
||||||
minixml zlib xorg.libpthreadstubs pcre
|
minixml zlib xorg.libpthreadstubs pcre
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchgit , boost, libX11, libGLU_combined, liblo, libjack2, ladspaH, lv2, pkgconfig, rubberband, libsndfile, fftwFloat, libsamplerate }:
|
{ stdenv, fetchgit , boost, libX11, libGLU, libGL, liblo, libjack2, ladspaH, lv2, pkgconfig, rubberband, libsndfile, fftwFloat, libsamplerate }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "zam-plugins";
|
pname = "zam-plugins";
|
||||||
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ boost libX11 libGLU_combined liblo libjack2 ladspaH lv2 rubberband libsndfile fftwFloat libsamplerate ];
|
buildInputs = [ boost libX11 libGLU libGL liblo libjack2 ladspaH lv2 rubberband libsndfile fftwFloat libsamplerate ];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
patchShebangs ./dpf/utils/generate-ttl.sh
|
patchShebangs ./dpf/utils/generate-ttl.sh
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, lib, fetchurl, makeDesktopItem, makeWrapper
|
{ stdenv, lib, fetchurl, makeDesktopItem, makeWrapper
|
||||||
, # Patchelf dependencies:
|
, # Patchelf dependencies:
|
||||||
alsaLib, atomEnv, boehmgc, flac, libogg, libvorbis, libXScrnSaver, libGLU_combined
|
alsaLib, atomEnv, boehmgc, flac, libogg, libvorbis, libXScrnSaver, libGLU, libGL
|
||||||
, openssl, xorg, zlib
|
, openssl, xorg, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -56,7 +56,7 @@ in
|
|||||||
$out/kodestudio
|
$out/kodestudio
|
||||||
patchelf \
|
patchelf \
|
||||||
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||||
--set-rpath ".:${stdenv.cc.libc}/lib:${xorg.libXinerama}/lib:${xorg.libX11}/lib:${alsaLib}/lib:${libGLU_combined}/lib:${openssl.out}/lib" \
|
--set-rpath ".:${stdenv.cc.libc}/lib:${xorg.libXinerama}/lib:${xorg.libX11}/lib:${alsaLib}/lib:${libGL}/lib:${libGLU}/lib:${openssl.out}/lib" \
|
||||||
$out/resources/app/extensions/krom/Krom/linux/Krom
|
$out/resources/app/extensions/krom/Krom/linux/Krom
|
||||||
patchelf \
|
patchelf \
|
||||||
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, libpng, python3
|
{ stdenv, fetchFromGitHub, libpng, python3
|
||||||
, libGLU_combined, qtbase, wrapQtAppsHook, ncurses
|
, libGLU, libGL, qtbase, wrapQtAppsHook, ncurses
|
||||||
, cmake, flex, lemon
|
, cmake, flex, lemon
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ in
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libpng python3 python3.pkgs.boost
|
libpng python3 python3.pkgs.boost
|
||||||
libGLU_combined qtbase wrapQtAppsHook
|
libGLU libGL qtbase wrapQtAppsHook
|
||||||
ncurses
|
ncurses
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
flex, libtiff, libjpeg, libpng, libexif, zlib, perlPackages, libX11,
|
flex, libtiff, libjpeg, libpng, libexif, zlib, perlPackages, libX11,
|
||||||
pythonPackages, gettext, intltool, babl, gegl,
|
pythonPackages, gettext, intltool, babl, gegl,
|
||||||
glib, makedepend, xorgproto, libXmu, openexr,
|
glib, makedepend, xorgproto, libXmu, openexr,
|
||||||
libGLU_combined, libXext, libXpm, libXau, libXxf86vm, pixman, libpthreadstubs, fltk } :
|
libGLU, libGL, libXext, libXpm, libXau, libXxf86vm, pixman, libpthreadstubs, fltk } :
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (pythonPackages) python pygtk;
|
inherit (pythonPackages) python pygtk;
|
||||||
@ -16,7 +16,7 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ libpng gtk2 freetype fontconfig lcms flex libtiff libjpeg
|
buildInputs = [ libpng gtk2 freetype fontconfig lcms flex libtiff libjpeg
|
||||||
libexif zlib libX11 python pygtk gettext intltool babl
|
libexif zlib libX11 python pygtk gettext intltool babl
|
||||||
gegl glib makedepend xorgproto libXmu openexr libGLU_combined
|
gegl glib makedepend xorgproto libXmu openexr libGLU libGL
|
||||||
libXext libXpm libXau libXxf86vm pixman libpthreadstubs fltk
|
libXext libXpm libXau libXxf86vm pixman libpthreadstubs fltk
|
||||||
] ++ (with perlPackages; [ perl XMLParser ]);
|
] ++ (with perlPackages; [ perl XMLParser ]);
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, dpkg, makeWrapper, gcc, libGLU_combined, xdg_utils,
|
{ stdenv, fetchurl, dpkg, makeWrapper, gcc, libGLU, libGL, xdg_utils,
|
||||||
dbus, alsaLib, cups, fontconfig, glib, icu, libpng12,
|
dbus, alsaLib, cups, fontconfig, glib, icu, libpng12,
|
||||||
xkeyboard_config, zlib, libxslt, libxml2, sqlite, orc,
|
xkeyboard_config, zlib, libxslt, libxml2, sqlite, orc,
|
||||||
libX11, libXcursor, libXrandr, libxcb, libXi, libSM, libICE,
|
libX11, libXcursor, libXrandr, libxcb, libXi, libSM, libICE,
|
||||||
@ -71,7 +71,7 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "05lrvml0zkzqg0sj6sj2h8h66hxdmsw5fg9fwz923r1y8j48qxdx";
|
sha256 = "05lrvml0zkzqg0sj6sj2h8h66hxdmsw5fg9fwz923r1y8j48qxdx";
|
||||||
};
|
};
|
||||||
|
|
||||||
libPath = stdenv.lib.makeLibraryPath [ gcc.cc libGLU_combined xdg_utils
|
libPath = stdenv.lib.makeLibraryPath [ gcc.cc libGLU libGL xdg_utils
|
||||||
dbus alsaLib cups.lib fontconfig glib icu libpng12
|
dbus alsaLib cups.lib fontconfig glib icu libpng12
|
||||||
xkeyboard_config zlib libxslt libxml2 sqlite orc libX11
|
xkeyboard_config zlib libxslt libxml2 sqlite orc libX11
|
||||||
libXcursor libXrandr libxcb libXi libSM libICE libXrender
|
libXcursor libXrandr libxcb libXi libSM libICE libXrender
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, fltk, openexr, libGLU_combined, ctl }:
|
{ stdenv, fetchurl, pkgconfig, fltk, openexr, libGLU, libGL, ctl }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name ="openexr_viewers-2.2.1";
|
name ="openexr_viewers-2.2.1";
|
||||||
@ -17,7 +17,7 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ openexr fltk libGLU_combined ctl ];
|
buildInputs = [ openexr fltk libGLU libGL ctl ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Application for viewing OpenEXR images on a display at various exposure settings";
|
description = "Application for viewing OpenEXR images on a display at various exposure settings";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, libjpeg, libGLU_combined, freeglut, zlib, cmake, libX11, libxml2, libpng,
|
{ stdenv, fetchurl, libjpeg, libGLU, libGL, freeglut, zlib, cmake, libX11, libxml2, libpng,
|
||||||
libXxf86vm }:
|
libXxf86vm }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
@ -9,7 +9,7 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1w19abqjn64w47m35alg7bcdl1p97nf11zn64cp4p0dydihmhv56";
|
sha256 = "1w19abqjn64w47m35alg7bcdl1p97nf11zn64cp4p0dydihmhv56";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libjpeg libGLU_combined freeglut zlib cmake libX11 libxml2 libpng
|
buildInputs = [ libjpeg libGLU libGL freeglut zlib cmake libX11 libxml2 libpng
|
||||||
libXxf86vm ];
|
libXxf86vm ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, cmake, fetchurl, gnumake, makeWrapper, pkgconfig, fetchpatch
|
{ stdenv, cmake, fetchurl, gnumake, makeWrapper, pkgconfig, fetchpatch
|
||||||
, autopanosiftc, boost, cairo, enblend-enfuse, exiv2, fftw, flann, gettext
|
, autopanosiftc, boost, cairo, enblend-enfuse, exiv2, fftw, flann, gettext
|
||||||
, glew, ilmbase, lcms2, lensfun, libjpeg, libpng, libtiff, libX11, libXi
|
, glew, ilmbase, lcms2, lensfun, libjpeg, libpng, libtiff, libX11, libXi
|
||||||
, libXmu, libGLU_combined, openexr, panotools, perlPackages, sqlite, vigra, wxGTK, zlib
|
, libXmu, libGLU, libGL, openexr, panotools, perlPackages, sqlite, vigra, wxGTK, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
boost cairo exiv2 fftw flann gettext glew ilmbase lcms2 lensfun libjpeg
|
boost cairo exiv2 fftw flann gettext glew ilmbase lcms2 lensfun libjpeg
|
||||||
libpng libtiff libX11 libXi libXmu libGLU_combined openexr panotools sqlite vigra
|
libpng libtiff libX11 libXi libXmu libGLU libGL openexr panotools sqlite vigra
|
||||||
wxGTK zlib
|
wxGTK zlib
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, fetchpatch, ftgl, glew, asciidoc
|
{ stdenv, fetchFromGitHub, fetchpatch, ftgl, glew, asciidoc
|
||||||
, cmake, ninja, libGLU_combined, zlib, python, expat, libxml2, libsigcxx, libuuid, freetype
|
, cmake, ninja, libGLU, libGL, zlib, python, expat, libxml2, libsigcxx, libuuid, freetype
|
||||||
, libpng, boost, doxygen, cairomm, pkgconfig, imagemagick, libjpeg, libtiff
|
, libpng, boost, doxygen, cairomm, pkgconfig, imagemagick, libjpeg, libtiff
|
||||||
, gettext, intltool, perl, gtkmm2, glibmm, gtkglext, pangox_compat, libXmu }:
|
, gettext, intltool, perl, gtkmm2, glibmm, gtkglext, pangox_compat, libXmu }:
|
||||||
|
|
||||||
@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ cmake ninja gettext intltool doxygen pkgconfig perl asciidoc ];
|
nativeBuildInputs = [ cmake ninja gettext intltool doxygen pkgconfig perl asciidoc ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libGLU_combined zlib python expat libxml2 libsigcxx libuuid freetype libpng
|
libGLU libGL zlib python expat libxml2 libsigcxx libuuid freetype libpng
|
||||||
boost cairomm imagemagick libjpeg libtiff
|
boost cairomm imagemagick libjpeg libtiff
|
||||||
ftgl glew gtkmm2 glibmm gtkglext pangox_compat libXmu
|
ftgl glew gtkmm2 glibmm gtkglext pangox_compat libXmu
|
||||||
];
|
];
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
, alsaLib
|
, alsaLib
|
||||||
, glib
|
, glib
|
||||||
, gst_all_1
|
, gst_all_1
|
||||||
, libGLU_combined
|
, libGLU, libGL
|
||||||
, xorg
|
, xorg
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
|||||||
glib
|
glib
|
||||||
gst_all_1.gstreamer
|
gst_all_1.gstreamer
|
||||||
gst_all_1.gst-plugins-base
|
gst_all_1.gst-plugins-base
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
xorg.libX11
|
xorg.libX11
|
||||||
];
|
];
|
||||||
in ''
|
in ''
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
, flex
|
, flex
|
||||||
, eigen
|
, eigen
|
||||||
, boost
|
, boost
|
||||||
, libGLU_combined
|
, libGLU, libGL
|
||||||
, glew
|
, glew
|
||||||
, opencsg
|
, opencsg
|
||||||
, cgal
|
, cgal
|
||||||
@ -44,7 +44,7 @@ mkDerivation rec {
|
|||||||
eigen boost glew opencsg cgal mpfr gmp glib
|
eigen boost glew opencsg cgal mpfr gmp glib
|
||||||
harfbuzz lib3mf libzip double-conversion freetype fontconfig
|
harfbuzz lib3mf libzip double-conversion freetype fontconfig
|
||||||
qtbase qtmultimedia qscintilla
|
qtbase qtmultimedia qscintilla
|
||||||
] ++ stdenv.lib.optional stdenv.isLinux libGLU_combined
|
] ++ stdenv.lib.optionals stdenv.isLinux [ libGLU libGL ]
|
||||||
++ stdenv.lib.optional stdenv.isDarwin qtmacextras
|
++ stdenv.lib.optional stdenv.isDarwin qtmacextras
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
stdenv, fetchFromGitHub, cmake, makeWrapper
|
stdenv, fetchFromGitHub, cmake, makeWrapper
|
||||||
,qtbase, qttools, python, libGLU_combined
|
,qtbase, qttools, python, libGLU, libGL
|
||||||
,libXt, qtx11extras, qtxmlpatterns
|
,libXt, qtx11extras, qtxmlpatterns
|
||||||
, mkDerivation
|
, mkDerivation
|
||||||
}:
|
}:
|
||||||
@ -43,7 +43,7 @@ mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
python
|
python
|
||||||
python.pkgs.numpy
|
python.pkgs.numpy
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
libXt
|
libXt
|
||||||
qtbase
|
qtbase
|
||||||
qtx11extras
|
qtx11extras
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ fetchurl, stdenv, cmake, wxGTK, itk, libGLU_combined, libXft, libXext, libXi, zlib, libXmu,
|
{ fetchurl, stdenv, cmake, wxGTK, itk, libGLU, libGL, libXft, libXext, libXi, zlib, libXmu,
|
||||||
libuuid }:
|
libuuid }:
|
||||||
|
|
||||||
assert (stdenv ? glibc);
|
assert (stdenv ? glibc);
|
||||||
@ -46,7 +46,7 @@ stdenv.mkDerivation {
|
|||||||
exit 1
|
exit 1
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ cmake wxGTK itk libGLU_combined libXft libXext libXi zlib libXmu libuuid ];
|
buildInputs = [ cmake wxGTK itk libGLU libGL libXft libXext libXi zlib libXmu libuuid ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
broken = true;
|
broken = true;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ config, stdenv, lib, fetchurl, boost, cmake, ffmpeg, gettext, glew
|
{ config, stdenv, lib, fetchurl, boost, cmake, ffmpeg, gettext, glew
|
||||||
, ilmbase, libXi, libX11, libXext, libXrender
|
, ilmbase, libXi, libX11, libXext, libXrender
|
||||||
, libjpeg, libpng, libsamplerate, libsndfile
|
, libjpeg, libpng, libsamplerate, libsndfile
|
||||||
, libtiff, libGLU_combined, openal, opencolorio, openexr, openimageio, openjpeg_1, python3Packages
|
, libtiff, libGLU, libGL, openal, opencolorio, openexr, openimageio, openjpeg_1, python3Packages
|
||||||
, zlib, fftw, opensubdiv, freetype, jemalloc, ocl-icd, addOpenGLRunpath
|
, zlib, fftw, opensubdiv, freetype, jemalloc, ocl-icd, addOpenGLRunpath
|
||||||
, jackaudioSupport ? false, libjack2
|
, jackaudioSupport ? false, libjack2
|
||||||
, cudaSupport ? config.cudaSupport or false, cudatoolkit
|
, cudaSupport ? config.cudaSupport or false, cudatoolkit
|
||||||
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs =
|
buildInputs =
|
||||||
[ boost ffmpeg gettext glew ilmbase
|
[ boost ffmpeg gettext glew ilmbase
|
||||||
libXi libX11 libXext libXrender
|
libXi libX11 libXext libXrender
|
||||||
freetype libjpeg libpng libsamplerate libsndfile libtiff libGLU_combined openal
|
freetype libjpeg libpng libsamplerate libsndfile libtiff libGLU libGL openal
|
||||||
opencolorio openexr openimageio openjpeg_1 python zlib fftw jemalloc
|
opencolorio openexr openimageio openjpeg_1 python zlib fftw jemalloc
|
||||||
(opensubdiv.override { inherit cudaSupport; })
|
(opensubdiv.override { inherit cudaSupport; })
|
||||||
makeWrapper
|
makeWrapper
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
, miniupnpc
|
, miniupnpc
|
||||||
, libmicrohttpd
|
, libmicrohttpd
|
||||||
, gmp
|
, gmp
|
||||||
, libGLU_combined
|
, libGLU, libGL
|
||||||
, extraCmakeFlags ? []
|
, extraCmakeFlags ? []
|
||||||
}:
|
}:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
|
|||||||
miniupnpc
|
miniupnpc
|
||||||
libmicrohttpd
|
libmicrohttpd
|
||||||
gmp
|
gmp
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
];
|
];
|
||||||
|
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, glibc, libGLU_combined, freetype, glib, libSM, libICE, libXi, libXv
|
{ stdenv, fetchurl, glibc, libGLU, libGL, freetype, glib, libSM, libICE, libXi, libXv
|
||||||
, libXrender, libXrandr, libXfixes, libXcursor, libXinerama, libXext, libX11
|
, libXrender, libXrandr, libXfixes, libXcursor, libXinerama, libXext, libX11
|
||||||
, zlib, fontconfig, dpkg, libproxy, libxml2, gstreamer, gst_all_1, dbus }:
|
, zlib, fontconfig, dpkg, libproxy, libxml2, gstreamer, gst_all_1, dbus }:
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ let
|
|||||||
libICE
|
libICE
|
||||||
libXi
|
libXi
|
||||||
libXv
|
libXv
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
libXrender
|
libXrender
|
||||||
libXrandr
|
libXrandr
|
||||||
libXfixes
|
libXfixes
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, lib, fetchzip, freeglut, libXmu, libXi, libX11, libICE, libGLU_combined, libSM, libXext, dialog, makeWrapper }:
|
{ stdenv, lib, fetchzip, freeglut, libXmu, libXi, libX11, libICE, libGLU, libGL, libSM, libXext, dialog, makeWrapper }:
|
||||||
let
|
let
|
||||||
lpath = stdenv.lib.makeLibraryPath [ libXmu libXi libX11 freeglut libICE libGLU_combined libSM libXext ];
|
lpath = stdenv.lib.makeLibraryPath [ libXmu libXi libX11 freeglut libICE libGLU libGL libSM libXext ];
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "iceSL";
|
pname = "iceSL";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, lib, substituteAll, makeWrapper, fetchgit, ocaml, mupdf, libX11,
|
{ stdenv, lib, substituteAll, makeWrapper, fetchgit, ocaml, mupdf, libX11,
|
||||||
libGLU_combined, freetype, xclip, inotify-tools, procps }:
|
libGLU, libGL, freetype, xclip, inotify-tools, procps }:
|
||||||
|
|
||||||
assert lib.versionAtLeast (lib.getVersion ocaml) "4.07";
|
assert lib.versionAtLeast (lib.getVersion ocaml) "4.07";
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
});
|
});
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
buildInputs = [ ocaml mupdf libX11 libGLU_combined freetype ];
|
buildInputs = [ ocaml mupdf libX11 libGLU libGL freetype ];
|
||||||
|
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, pkgconfig, gtk2, fontconfig, freetype, imlib2
|
{ stdenv, fetchFromGitHub, pkgconfig, gtk2, fontconfig, freetype, imlib2
|
||||||
, SDL_image, libGLU_combined, libXmu, freeglut, pcre, dbus, dbus-glib, glib
|
, SDL_image, libGLU, libGL, libXmu, freeglut, pcre, dbus, dbus-glib, glib
|
||||||
, librsvg, freeimage, libxslt, cairo, gdk-pixbuf, pango
|
, librsvg, freeimage, libxslt, cairo, gdk-pixbuf, pango
|
||||||
, atk, patchelf, fetchurl, bzip2, python, gettext, quesoglc
|
, atk, patchelf, fetchurl, bzip2, python, gettext, quesoglc
|
||||||
, gd, cmake, shapelib, SDL_ttf, fribidi, makeWrapper
|
, gd, cmake, shapelib, SDL_ttf, fribidi, makeWrapper
|
||||||
@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk2 fontconfig freetype imlib2 libGLU_combined freeimage
|
gtk2 fontconfig freetype imlib2 libGLU libGL freeimage
|
||||||
libxslt libXmu freeglut python gettext quesoglc gd
|
libxslt libXmu freeglut python gettext quesoglc gd
|
||||||
fribidi pcre dbus dbus-glib librsvg shapelib glib
|
fribidi pcre dbus dbus-glib librsvg shapelib glib
|
||||||
cairo gdk-pixbuf pango atk
|
cairo gdk-pixbuf pango atk
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, qtbase, vcg, glew, qmake, libGLU_combined }:
|
{ stdenv, fetchFromGitHub, qtbase, vcg, glew, qmake, libGLU, libGL }:
|
||||||
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
@ -28,7 +28,7 @@ stdenv.mkDerivation {
|
|||||||
install -Dm644 reference.brf $out/share/openBrf/reference.brf
|
install -Dm644 reference.brf $out/share/openBrf/reference.brf
|
||||||
|
|
||||||
patchelf \
|
patchelf \
|
||||||
--set-rpath "${stdenv.lib.makeLibraryPath [ qtbase glew stdenv.cc.cc libGLU_combined ]}" \
|
--set-rpath "${stdenv.lib.makeLibraryPath [ qtbase glew stdenv.cc.cc libGLU libGL ]}" \
|
||||||
$out/share/openBrf/openBrf
|
$out/share/openBrf/openBrf
|
||||||
|
|
||||||
mkdir -p "$out/bin"
|
mkdir -p "$out/bin"
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
, bison, gperf
|
, bison, gperf
|
||||||
, glib, gtk3, dbus-glib
|
, glib, gtk3, dbus-glib
|
||||||
, glibc
|
, glibc
|
||||||
, libXScrnSaver, libXcursor, libXtst, libGLU_combined, libGL
|
, libXScrnSaver, libXcursor, libXtst, libGLU, libGL
|
||||||
, protobuf, speechd, libXdamage, cups
|
, protobuf, speechd, libXdamage, cups
|
||||||
, ffmpeg, libxslt, libxml2, at-spi2-core
|
, ffmpeg, libxslt, libxml2, at-spi2-core
|
||||||
, jdk
|
, jdk
|
||||||
@ -123,7 +123,7 @@ let
|
|||||||
utillinux alsaLib
|
utillinux alsaLib
|
||||||
bison gperf kerberos
|
bison gperf kerberos
|
||||||
glib gtk3 dbus-glib
|
glib gtk3 dbus-glib
|
||||||
libXScrnSaver libXcursor libXtst libGLU_combined
|
libXScrnSaver libXcursor libXtst libGLU libGL
|
||||||
pciutils protobuf speechd libXdamage at-spi2-core
|
pciutils protobuf speechd libXdamage at-spi2-core
|
||||||
jdk.jre
|
jdk.jre
|
||||||
] ++ optional gnomeKeyringSupport libgnome-keyring3
|
] ++ optional gnomeKeyringSupport libgnome-keyring3
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
, libgnomeui
|
, libgnomeui
|
||||||
, libnotify
|
, libnotify
|
||||||
, gnome3
|
, gnome3
|
||||||
, libGLU_combined
|
, libGLU, libGL
|
||||||
, nspr
|
, nspr
|
||||||
, nss
|
, nss
|
||||||
, pango
|
, pango
|
||||||
@ -126,7 +126,7 @@ stdenv.mkDerivation {
|
|||||||
libgnome
|
libgnome
|
||||||
libgnomeui
|
libgnomeui
|
||||||
libnotify
|
libnotify
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
nspr
|
nspr
|
||||||
nss
|
nss
|
||||||
pango
|
pango
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
{ lib, stdenv, pkgconfig, pango, perl, python2, python3, zip, libIDL
|
{ lib, stdenv, pkgconfig, pango, perl, python2, python3, zip, libIDL
|
||||||
, libjpeg, zlib, dbus, dbus-glib, bzip2, xorg
|
, libjpeg, zlib, dbus, dbus-glib, bzip2, xorg
|
||||||
, freetype, fontconfig, file, nspr, nss, libnotify
|
, freetype, fontconfig, file, nspr, nss, libnotify
|
||||||
, yasm, libGLU_combined, sqlite, unzip, makeWrapper
|
, yasm, libGLU, libGL, sqlite, unzip, makeWrapper
|
||||||
, hunspell, libXdamage, libevent, libstartup_notification, libvpx
|
, hunspell, libXdamage, libevent, libstartup_notification, libvpx
|
||||||
, icu, libpng, jemalloc, glib
|
, icu, libpng, jemalloc, glib
|
||||||
, autoconf213, which, gnused, cargo, rustc, llvmPackages
|
, autoconf213, which, gnused, cargo, rustc, llvmPackages
|
||||||
@ -131,7 +131,7 @@ stdenv.mkDerivation rec {
|
|||||||
gtk2 perl zip libIDL libjpeg zlib bzip2
|
gtk2 perl zip libIDL libjpeg zlib bzip2
|
||||||
dbus dbus-glib pango freetype fontconfig xorg.libXi xorg.libXcursor
|
dbus dbus-glib pango freetype fontconfig xorg.libXi xorg.libXcursor
|
||||||
xorg.libX11 xorg.libXrender xorg.libXft xorg.libXt file
|
xorg.libX11 xorg.libXrender xorg.libXft xorg.libXt file
|
||||||
libnotify xorg.pixman yasm libGLU_combined
|
libnotify xorg.pixman yasm libGLU libGL
|
||||||
xorg.libXScrnSaver xorg.xorgproto
|
xorg.libXScrnSaver xorg.xorgproto
|
||||||
xorg.libXext sqlite unzip makeWrapper
|
xorg.libXext sqlite unzip makeWrapper
|
||||||
libevent libstartup_notification libvpx /* cairo */
|
libevent libstartup_notification libvpx /* cairo */
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
, dbus, dbus-glib, ffmpeg, file, fontconfig, freetype
|
, dbus, dbus-glib, ffmpeg, file, fontconfig, freetype
|
||||||
, gnome2, gnum4, gtk2, hunspell, libevent, libjpeg
|
, gnome2, gnum4, gtk2, hunspell, libevent, libjpeg
|
||||||
, libnotify, libstartup_notification, makeWrapper
|
, libnotify, libstartup_notification, makeWrapper
|
||||||
, libGLU_combined, perl, python, libpulseaudio
|
, libGLU, libGL, perl, python, libpulseaudio
|
||||||
, unzip, xorg, wget, which, yasm, zip, zlib
|
, unzip, xorg, wget, which, yasm, zip, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -43,7 +43,7 @@ in stdenv.mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
alsaLib bzip2 cairo dbus dbus-glib ffmpeg file fontconfig freetype
|
alsaLib bzip2 cairo dbus dbus-glib ffmpeg file fontconfig freetype
|
||||||
gnome2.GConf gnum4 gtk2 hunspell libevent libjpeg libnotify
|
gnome2.GConf gnum4 gtk2 hunspell libevent libjpeg libnotify
|
||||||
libstartup_notification makeWrapper libGLU_combined perl
|
libstartup_notification makeWrapper libGLU libGL perl
|
||||||
pkgconfig python libpulseaudio unzip wget which yasm zip zlib
|
pkgconfig python libpulseaudio unzip wget which yasm zip zlib
|
||||||
] ++ (with xorg; [
|
] ++ (with xorg; [
|
||||||
libX11 libXext libXft libXi libXrender libXScrnSaver
|
libX11 libXext libXft libXi libXrender libXScrnSaver
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{fetchurl, stdenv, dpkg, makeWrapper,
|
{fetchurl, stdenv, dpkg, makeWrapper,
|
||||||
alsaLib, cups, curl, dbus, expat, fontconfig, freetype, glib, gst_all_1, harfbuzz, libcap,
|
alsaLib, cups, curl, dbus, expat, fontconfig, freetype, glib, gst_all_1, harfbuzz, libcap,
|
||||||
libpulseaudio, libxml2, libxslt, libGLU_combined, nspr, nss, openssl, systemd, wayland, xorg, zlib, ...
|
libpulseaudio, libxml2, libxslt, libGLU, libGL, nspr, nss, openssl, systemd, wayland, xorg, zlib, ...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
@ -32,7 +32,7 @@ stdenv.mkDerivation {
|
|||||||
libpulseaudio
|
libpulseaudio
|
||||||
libxml2
|
libxml2
|
||||||
libxslt
|
libxslt
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
nspr
|
nspr
|
||||||
nss
|
nss
|
||||||
openssl
|
openssl
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
, libgnome
|
, libgnome
|
||||||
, libgnomeui
|
, libgnomeui
|
||||||
, gnome3
|
, gnome3
|
||||||
, libGLU_combined
|
, libGLU, libGL
|
||||||
, nspr
|
, nspr
|
||||||
, nss
|
, nss
|
||||||
, pango
|
, pango
|
||||||
@ -116,7 +116,7 @@ stdenv.mkDerivation {
|
|||||||
libcanberra-gtk2
|
libcanberra-gtk2
|
||||||
libgnome
|
libgnome
|
||||||
libgnomeui
|
libgnomeui
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
nspr
|
nspr
|
||||||
nss
|
nss
|
||||||
pango
|
pango
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ lib, stdenv, fetchurl, pkgconfig, gtk2, pango, perl, python2, python3, nodejs
|
{ lib, stdenv, fetchurl, pkgconfig, gtk2, pango, perl, python2, python3, nodejs
|
||||||
, libIDL, libjpeg, zlib, dbus, dbus-glib, bzip2, xorg
|
, libIDL, libjpeg, zlib, dbus, dbus-glib, bzip2, xorg
|
||||||
, freetype, fontconfig, file, nspr, nss, libnotify
|
, freetype, fontconfig, file, nspr, nss, libnotify
|
||||||
, yasm, libGLU_combined, sqlite, zip, unzip
|
, yasm, libGLU, libGL, sqlite, zip, unzip
|
||||||
, libevent, libstartup_notification
|
, libevent, libstartup_notification
|
||||||
, icu, libpng, jemalloc
|
, icu, libpng, jemalloc
|
||||||
, autoconf213, which, m4, fetchpatch
|
, autoconf213, which, m4, fetchpatch
|
||||||
@ -37,7 +37,7 @@ in stdenv.mkDerivation rec {
|
|||||||
[ gtk2 zip libIDL libjpeg zlib bzip2
|
[ gtk2 zip libIDL libjpeg zlib bzip2
|
||||||
dbus dbus-glib pango freetype fontconfig xorg.libXi
|
dbus dbus-glib pango freetype fontconfig xorg.libXi
|
||||||
xorg.libX11 xorg.libXrender xorg.libXft xorg.libXt file
|
xorg.libX11 xorg.libXrender xorg.libXft xorg.libXt file
|
||||||
nspr nss libnotify xorg.pixman yasm libGLU_combined
|
nspr nss libnotify xorg.pixman yasm libGLU libGL
|
||||||
xorg.libXScrnSaver xorg.xorgproto
|
xorg.libXScrnSaver xorg.xorgproto
|
||||||
xorg.libXext sqlite unzip
|
xorg.libXext sqlite unzip
|
||||||
libevent libstartup_notification /* cairo */
|
libevent libstartup_notification /* cairo */
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, makeWrapper, makeDesktopItem
|
{ stdenv, fetchurl, makeWrapper, makeDesktopItem
|
||||||
, atk, cairo, gdk-pixbuf, glib, gnome2, gtk2, libGLU_combined, pango, xorg
|
, atk, cairo, gdk-pixbuf, glib, gnome2, gtk2, libGLU, libGL, pango, xorg
|
||||||
, lsb-release, freetype, fontconfig, pangox_compat, polkit, polkit_gnome
|
, lsb-release, freetype, fontconfig, pangox_compat, polkit, polkit_gnome
|
||||||
, pulseaudio }:
|
, pulseaudio }:
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
atk cairo gdk-pixbuf glib gtk2 stdenv.cc.cc pango
|
atk cairo gdk-pixbuf glib gtk2 stdenv.cc.cc pango
|
||||||
gnome2.gtkglext libGLU_combined freetype fontconfig
|
gnome2.gtkglext libGLU libGL freetype fontconfig
|
||||||
pangox_compat polkit polkit_gnome pulseaudio
|
pangox_compat polkit polkit_gnome pulseaudio
|
||||||
] ++ (with xorg; [
|
] ++ (with xorg; [
|
||||||
libxcb libxkbfile libX11 libXdamage libXext libXfixes libXi libXmu
|
libxcb libxkbfile libX11 libXdamage libXext libXfixes libXi libXmu
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
, bison, flex, zip, unzip, gtk3, gtk2, libmspack, getopt, file, cairo, which
|
, bison, flex, zip, unzip, gtk3, gtk2, libmspack, getopt, file, cairo, which
|
||||||
, icu, boost, jdk, ant, cups, xorg, libcmis, fontforge
|
, icu, boost, jdk, ant, cups, xorg, libcmis, fontforge
|
||||||
, openssl, gperf, cppunit, GConf, ORBit2, poppler, utillinux
|
, openssl, gperf, cppunit, GConf, ORBit2, poppler, utillinux
|
||||||
, librsvg, gnome_vfs, libGLU_combined, bsh, CoinMP, libwps, libabw, libmysqlclient
|
, librsvg, gnome_vfs, libGLU, libGL, bsh, CoinMP, libwps, libabw, libmysqlclient
|
||||||
, autoconf, automake, openldap, bash, hunspell, librdf_redland, nss, nspr
|
, autoconf, automake, openldap, bash, hunspell, librdf_redland, nss, nspr
|
||||||
, libwpg, dbus-glib, qt4, clucene_core, libcdr, lcms, vigra
|
, libwpg, dbus-glib, qt4, clucene_core, libcdr, lcms, vigra
|
||||||
, unixODBC, mdds, sane-backends, mythes, libexttextcat, libvisio
|
, unixODBC, mdds, sane-backends, mythes, libexttextcat, libvisio
|
||||||
@ -360,7 +360,7 @@ in stdenv.mkDerivation rec {
|
|||||||
hunspell icu jdk lcms libcdr libexttextcat unixODBC libjpeg
|
hunspell icu jdk lcms libcdr libexttextcat unixODBC libjpeg
|
||||||
libmspack librdf_redland librsvg libsndfile libvisio libwpd libwpg libX11
|
libmspack librdf_redland librsvg libsndfile libvisio libwpd libwpg libX11
|
||||||
libXaw libXext libXi libXinerama libxml2 libxslt libXtst
|
libXaw libXext libXi libXinerama libxml2 libxslt libXtst
|
||||||
libXdmcp libpthreadstubs libGLU_combined mythes gst_all_1.gstreamer
|
libXdmcp libpthreadstubs libGLU libGL mythes gst_all_1.gstreamer
|
||||||
gst_all_1.gst-plugins-base glib libmysqlclient
|
gst_all_1.gst-plugins-base glib libmysqlclient
|
||||||
neon nspr nss openldap openssl ORBit2 pam perl pkgconfig poppler
|
neon nspr nss openldap openssl ORBit2 pam perl pkgconfig poppler
|
||||||
python3 sane-backends unzip vigra which zip zlib
|
python3 sane-backends unzip vigra which zip zlib
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
, bison, flex, zip, unzip, gtk3, gtk2, libmspack, getopt, file, cairo, which
|
, bison, flex, zip, unzip, gtk3, gtk2, libmspack, getopt, file, cairo, which
|
||||||
, icu, boost, jdk, ant, cups, xorg, libcmis, fontforge
|
, icu, boost, jdk, ant, cups, xorg, libcmis, fontforge
|
||||||
, openssl, gperf, cppunit, GConf, ORBit2, poppler, utillinux
|
, openssl, gperf, cppunit, GConf, ORBit2, poppler, utillinux
|
||||||
, librsvg, gnome_vfs, libGLU_combined, bsh, CoinMP, libwps, libabw, libmysqlclient
|
, librsvg, gnome_vfs, libGLU, libGL, bsh, CoinMP, libwps, libabw, libmysqlclient
|
||||||
, autoconf, automake, openldap, bash, hunspell, librdf_redland, nss, nspr
|
, autoconf, automake, openldap, bash, hunspell, librdf_redland, nss, nspr
|
||||||
, libwpg, dbus-glib, qt4, clucene_core, libcdr, lcms, vigra
|
, libwpg, dbus-glib, qt4, clucene_core, libcdr, lcms, vigra
|
||||||
, unixODBC, mdds, sane-backends, mythes, libexttextcat, libvisio
|
, unixODBC, mdds, sane-backends, mythes, libexttextcat, libvisio
|
||||||
@ -357,7 +357,7 @@ in stdenv.mkDerivation rec {
|
|||||||
hunspell icu jdk lcms libcdr libexttextcat unixODBC libjpeg
|
hunspell icu jdk lcms libcdr libexttextcat unixODBC libjpeg
|
||||||
libmspack librdf_redland librsvg libsndfile libvisio libwpd libwpg libX11
|
libmspack librdf_redland librsvg libsndfile libvisio libwpd libwpg libX11
|
||||||
libXaw libXext libXi libXinerama libxml2 libxslt libXtst
|
libXaw libXext libXi libXinerama libxml2 libxslt libXtst
|
||||||
libXdmcp libpthreadstubs libGLU_combined mythes gst_all_1.gstreamer
|
libXdmcp libpthreadstubs libGLU libGL mythes gst_all_1.gstreamer
|
||||||
gst_all_1.gst-plugins-base glib libmysqlclient
|
gst_all_1.gst-plugins-base glib libmysqlclient
|
||||||
neon nspr nss openldap openssl ORBit2 pam perl poppler
|
neon nspr nss openldap openssl ORBit2 pam perl poppler
|
||||||
python3 sane-backends unzip vigra which zip zlib
|
python3 sane-backends unzip vigra which zip zlib
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
, libXt
|
, libXt
|
||||||
, libnotify
|
, libnotify
|
||||||
, gnome3
|
, gnome3
|
||||||
, libGLU_combined
|
, libGLU, libGL
|
||||||
, nspr
|
, nspr
|
||||||
, nss
|
, nss
|
||||||
, pango
|
, pango
|
||||||
@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
|
|||||||
libXrender
|
libXrender
|
||||||
libXt
|
libXt
|
||||||
libnotify
|
libnotify
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
nspr
|
nspr
|
||||||
nss
|
nss
|
||||||
pango
|
pango
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, freeglut, gtk2, gtkglext, libjpeg_turbo, libtheora, libXmu
|
{ stdenv, fetchurl, freeglut, gtk2, gtkglext, libjpeg_turbo, libtheora, libXmu
|
||||||
, lua, libGLU_combined, pkgconfig, perl, autoreconfHook
|
, lua, libGLU, libGL, pkgconfig, perl, autoreconfHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -44,7 +44,7 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ freeglut gtk2 gtkglext libjpeg_turbo libtheora libXmu libGLU_combined lua
|
buildInputs = [ freeglut gtk2 gtkglext libjpeg_turbo libtheora libXmu libGLU libGL lua
|
||||||
perl autoreconfHook ];
|
perl autoreconfHook ];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, SDL, SDL_ttf, SDL_image, libSM, libICE, libGLU_combined, libpng, lua5, autoconf, automake }:
|
{ stdenv, fetchurl, SDL, SDL_ttf, SDL_image, libSM, libICE, libGLU, libGL, libpng, lua5, autoconf, automake }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gravit-0.5.1";
|
name = "gravit-0.5.1";
|
||||||
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "14vf7zj2bgrl96wsl3f1knsggc8h9624354ajzd72l46y09x5ky7";
|
sha256 = "14vf7zj2bgrl96wsl3f1knsggc8h9624354ajzd72l46y09x5ky7";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libGLU_combined SDL SDL_ttf SDL_image lua5 libpng libSM libICE ];
|
buildInputs = [ libGLU libGL SDL SDL_ttf SDL_image lua5 libpng libSM libICE ];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoconf automake ];
|
nativeBuildInputs = [ autoconf automake ];
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ mkDerivation, lib, fetchFromGitHub
|
{ mkDerivation, lib, fetchFromGitHub
|
||||||
, cmake, freetype, libpng, libGLU_combined, openssl, perl, libiconv
|
, cmake, freetype, libpng, libGLU, libGL, openssl, perl, libiconv
|
||||||
, qtscript, qtserialport, qttools
|
, qtscript, qtserialport, qttools
|
||||||
, qtmultimedia, qtlocation, qtbase, wrapQtAppsHook
|
, qtmultimedia, qtlocation, qtbase, wrapQtAppsHook
|
||||||
}:
|
}:
|
||||||
@ -18,7 +18,7 @@ mkDerivation rec {
|
|||||||
nativeBuildInputs = [ cmake perl wrapQtAppsHook ];
|
nativeBuildInputs = [ cmake perl wrapQtAppsHook ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
freetype libpng libGLU_combined openssl libiconv qtscript qtserialport qttools
|
freetype libpng libGLU libGL openssl libiconv qtscript qtserialport qttools
|
||||||
qtmultimedia qtlocation qtbase
|
qtmultimedia qtlocation qtbase
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, cmake, qt4, zlib, eigen, openbabel, pkgconfig, libGLU_combined, libX11, doxygen }:
|
{ stdenv, fetchurl, cmake, qt4, zlib, eigen, openbabel, pkgconfig, libGLU, libGL, libX11, doxygen }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "avogadro-1.1.1";
|
name = "avogadro-1.1.1";
|
||||||
@ -8,11 +8,11 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "050ag9p4vg7jg8hj1wqfv7lsm6ar2isxjw2vw85s49vsl7g7nvzy";
|
sha256 = "050ag9p4vg7jg8hj1wqfv7lsm6ar2isxjw2vw85s49vsl7g7nvzy";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ qt4 eigen zlib openbabel libGLU_combined libX11 ];
|
buildInputs = [ qt4 eigen zlib openbabel libGL libGLU libX11 ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig doxygen ];
|
nativeBuildInputs = [ cmake pkgconfig doxygen ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = "-include ${libGLU_combined}/include/GL/glu.h";
|
NIX_CFLAGS_COMPILE = "-include ${libGLU.dev}/include/GL/glu.h";
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
(fetchurl {
|
(fetchurl {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ wxGTK, lib, stdenv, fetchurl, fetchFromGitHub, cmake, libGLU_combined, zlib
|
{ wxGTK, lib, stdenv, fetchurl, fetchFromGitHub, cmake, libGLU, libGL, zlib
|
||||||
, libX11, gettext, glew, glm, cairo, curl, openssl, boost, pkgconfig
|
, libX11, gettext, glew, glm, cairo, curl, openssl, boost, pkgconfig
|
||||||
, doxygen, pcre, libpthreadstubs, libXdmcp
|
, doxygen, pcre, libpthreadstubs, libXdmcp
|
||||||
, wrapGAppsHook
|
, wrapGAppsHook
|
||||||
@ -63,7 +63,7 @@ in stdenv.mkDerivation rec {
|
|||||||
propagatedBuildInputs = [ pythonPackages.wxPython ];
|
propagatedBuildInputs = [ pythonPackages.wxPython ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libGLU_combined zlib libX11 wxGTK pcre libXdmcp glew glm libpthreadstubs
|
libGLU libGL zlib libX11 wxGTK pcre libXdmcp glew glm libpthreadstubs
|
||||||
cairo curl openssl boost
|
cairo curl openssl boost
|
||||||
swig (python.withPackages (ps: with ps; [ wxPython ]))
|
swig (python.withPackages (ps: with ps; [ wxPython ]))
|
||||||
] ++ optional (oceSupport) opencascade
|
] ++ optional (oceSupport) opencascade
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ wxGTK, lib, stdenv, fetchFromGitHub, cmake, libGLU_combined, zlib
|
{ wxGTK, lib, stdenv, fetchFromGitHub, cmake, libGLU, libGL, zlib
|
||||||
, libX11, gettext, glew, glm, cairo, curl, openssl, boost, pkgconfig
|
, libX11, gettext, glew, glm, cairo, curl, openssl, boost, pkgconfig
|
||||||
, doxygen, pcre, libpthreadstubs, libXdmcp
|
, doxygen, pcre, libpthreadstubs, libXdmcp
|
||||||
|
|
||||||
@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ cmake doxygen pkgconfig ];
|
nativeBuildInputs = [ cmake doxygen pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libGLU_combined zlib libX11 wxGTK pcre libXdmcp gettext glew glm libpthreadstubs
|
libGLU libGL zlib libX11 wxGTK pcre libXdmcp gettext glew glm libpthreadstubs
|
||||||
cairo curl openssl boost
|
cairo curl openssl boost
|
||||||
] ++ optional (oceSupport) opencascade
|
] ++ optional (oceSupport) opencascade
|
||||||
++ optional (ngspiceSupport) libngspice
|
++ optional (ngspiceSupport) libngspice
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gtk2, bison, intltool, flex
|
{ stdenv, fetchurl, pkgconfig, gtk2, bison, intltool, flex
|
||||||
, netpbm, imagemagick, dbus, xlibsWrapper, libGLU_combined
|
, netpbm, imagemagick, dbus, xlibsWrapper, libGLU, libGL
|
||||||
, shared-mime-info, tcl, tk, gnome2, pangox_compat, gd, xorg
|
, shared-mime-info, tcl, tk, gnome2, pangox_compat, gd, xorg
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk2 bison intltool flex netpbm imagemagick dbus xlibsWrapper
|
gtk2 bison intltool flex netpbm imagemagick dbus xlibsWrapper
|
||||||
libGLU_combined tcl shared-mime-info tk
|
libGLU libGL tcl shared-mime-info tk
|
||||||
gnome2.gtkglext pangox_compat gd xorg.libXmu
|
gnome2.gtkglext pangox_compat gd xorg.libXmu
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, cmake, libGLU_combined, qt5, boost}:
|
{stdenv, fetchurl, cmake, libGLU, libGL, qt5, boost}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "201707";
|
version = "201707";
|
||||||
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1c8h94ja7271ph61zrcgnjgblxppld6v22f7f900prjgzbcfy14m";
|
sha256 = "1c8h94ja7271ph61zrcgnjgblxppld6v22f7f900prjgzbcfy14m";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake libGLU_combined qt5.qtbase boost ];
|
buildInputs = [ cmake libGLU libGL qt5.qtbase boost ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch, texlive, bison, flex, liblapack
|
{ stdenv, fetchurl, fetchpatch, texlive, bison, flex, liblapack
|
||||||
, gmp, mpfr, pari, ntl, gsl, blas, mpfi, ecm, glpk, nauty
|
, gmp, mpfr, pari, ntl, gsl, blas, mpfi, ecm, glpk, nauty
|
||||||
, readline, gettext, libpng, libao, gfortran, perl
|
, readline, gettext, libpng, libao, gfortran, perl
|
||||||
, enableGUI ? false, libGLU_combined ? null, xorg ? null, fltk ? null
|
, enableGUI ? false, libGL ? null, libGLU ? null, xorg ? null, fltk ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert enableGUI -> libGLU_combined != null && xorg != null && fltk != null;
|
assert enableGUI -> libGLU != null && libGL != null && xorg != null && fltk != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${attr}-${version}";
|
name = "${attr}-${version}";
|
||||||
@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
|
|||||||
(stdenv.lib.getLib gfortran.cc)
|
(stdenv.lib.getLib gfortran.cc)
|
||||||
liblapack
|
liblapack
|
||||||
] ++ stdenv.lib.optionals enableGUI [
|
] ++ stdenv.lib.optionals enableGUI [
|
||||||
libGLU_combined fltk xorg.libX11
|
libGL libGLU fltk xorg.libX11
|
||||||
];
|
];
|
||||||
|
|
||||||
/* fixes:
|
/* fixes:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, ocamlPackages, libGLU_combined, freeglut
|
{ stdenv, fetchurl, ocamlPackages, libGLU, libGL, freeglut
|
||||||
, libmysqlclient, mpfr, gmp, libtiff, libjpeg, libpng, giflib
|
, libmysqlclient, mpfr, gmp, libtiff, libjpeg, libpng, giflib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -10,7 +10,7 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "0w8xxfnw2snflz8wdr2ca9f5g91w5vbyp1hwlx1v7vg83d4bwqs7";
|
sha256 = "0w8xxfnw2snflz8wdr2ca9f5g91w5vbyp1hwlx1v7vg83d4bwqs7";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ freeglut libGLU_combined libmysqlclient mpfr gmp
|
buildInputs = [ freeglut libGLU libGL libmysqlclient mpfr gmp
|
||||||
libtiff libjpeg libpng giflib ]
|
libtiff libjpeg libpng giflib ]
|
||||||
++ (with ocamlPackages; [
|
++ (with ocamlPackages; [
|
||||||
ocaml findlib ocaml_mysql lablgl camlimages_4_0 mlgmpidl
|
ocaml findlib ocaml_mysql lablgl camlimages_4_0 mlgmpidl
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, cmake, openblasCompat, gfortran, gmm, fltk, libjpeg
|
{ stdenv, fetchurl, cmake, openblasCompat, gfortran, gmm, fltk, libjpeg
|
||||||
, zlib, libGLU_combined, libGLU, xorg, opencascade-occt }:
|
, zlib, libGL, libGLU, xorg, opencascade-occt }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gmsh";
|
pname = "gmsh";
|
||||||
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1p7hibmsgv961lfkzdxlgcvmcb0q155m2sp60r97cjsfzhw68g45";
|
sha256 = "1p7hibmsgv961lfkzdxlgcvmcb0q155m2sp60r97cjsfzhw68g45";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ openblasCompat gmm fltk libjpeg zlib libGLU_combined
|
buildInputs = [ openblasCompat gmm fltk libjpeg zlib libGLU libGL
|
||||||
libGLU xorg.libXrender xorg.libXcursor xorg.libXfixes xorg.libXext
|
libGLU xorg.libXrender xorg.libXcursor xorg.libXfixes xorg.libXext
|
||||||
xorg.libXft xorg.libXinerama xorg.libX11 xorg.libSM xorg.libICE
|
xorg.libXft xorg.libXinerama xorg.libX11 xorg.libSM xorg.libICE
|
||||||
opencascade-occt
|
opencascade-occt
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, rpmextract, makeWrapper, patchelf, qt4, zlib, libX11, libXt, libSM, libICE, libXext, libGLU_combined }:
|
{ stdenv, fetchurl, rpmextract, makeWrapper, patchelf, qt4, zlib, libX11, libXt, libSM, libICE, libXext, libGLU, libGL }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
@ -27,7 +27,7 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
postInstall = let
|
postInstall = let
|
||||||
libs = stdenv.lib.makeLibraryPath [ qt4 zlib stdenv.cc.cc libSM libICE libX11 libXext libXt libGLU_combined ];
|
libs = stdenv.lib.makeLibraryPath [ qt4 zlib stdenv.cc.cc libSM libICE libX11 libXext libXt libGLU libGL ];
|
||||||
in ''
|
in ''
|
||||||
${patchelf}/bin/patchelf \
|
${patchelf}/bin/patchelf \
|
||||||
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ fetchFromGitHub, stdenv, autoconf, automake, pkgconfig, m4, curl,
|
{ fetchFromGitHub, stdenv, autoconf, automake, pkgconfig, m4, curl,
|
||||||
libGLU_combined, libXmu, libXi, freeglut, libjpeg, libtool, wxGTK30, xcbutil,
|
libGLU, libGL, libXmu, libXi, freeglut, libjpeg, libtool, wxGTK30, xcbutil,
|
||||||
sqlite, gtk2, patchelf, libXScrnSaver, libnotify, libX11, libxcb }:
|
sqlite, gtk2, patchelf, libXScrnSaver, libnotify, libX11, libxcb }:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ libtool automake autoconf m4 pkgconfig ];
|
nativeBuildInputs = [ libtool automake autoconf m4 pkgconfig ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
curl libGLU_combined libXmu libXi freeglut libjpeg wxGTK30 sqlite gtk2 libXScrnSaver
|
curl libGLU libGL libXmu libXi freeglut libjpeg wxGTK30 sqlite gtk2 libXScrnSaver
|
||||||
libnotify patchelf libX11 libxcb xcbutil
|
libnotify patchelf libX11 libxcb xcbutil
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{stdenv, fetchgit
|
{stdenv, fetchgit
|
||||||
, wxGTK, perl, python2, zlib, libGLU_combined, libX11
|
, wxGTK, perl, python2, zlib, libGLU, libGL, libX11
|
||||||
, automake, autoconf
|
, automake, autoconf
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [autoconf automake];
|
nativeBuildInputs = [autoconf automake];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
wxGTK perl python2 zlib libGLU_combined libX11
|
wxGTK perl python2 zlib libGLU libGL libX11
|
||||||
];
|
];
|
||||||
|
|
||||||
# Link against Python explicitly as it is needed for scripts
|
# Link against Python explicitly as it is needed for scripts
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, wxGTK, perl, python2, zlib, libGLU_combined, libX11}:
|
{stdenv, fetchurl, wxGTK, perl, python2, zlib, libGLU, libGL, libX11}:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "golly";
|
pname = "golly";
|
||||||
version = "3.3";
|
version = "3.3";
|
||||||
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
wxGTK perl python2 zlib libGLU_combined libX11
|
wxGTK perl python2 zlib libGLU libGL libX11
|
||||||
];
|
];
|
||||||
|
|
||||||
setSourceRoot = ''
|
setSourceRoot = ''
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, qt4, qwt6_qt4, libGLU_combined, glew, gdal_1_11, cgal
|
{ stdenv, fetchurl, qt4, qwt6_qt4, libGLU, libGL, glew, gdal_1_11, cgal
|
||||||
, proj, boost, cmake, python2, doxygen, graphviz, gmp }:
|
, proj, boost, cmake, python2, doxygen, graphviz, gmp }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
qt4 qwt6_qt4 libGLU_combined glew gdal_1_11 cgal proj boost cmake python2
|
qt4 qwt6_qt4 libGLU libGL glew gdal_1_11 cgal proj boost cmake python2
|
||||||
doxygen graphviz gmp
|
doxygen graphviz gmp
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch, cmake, pcre, pkgconfig, python2
|
{ stdenv, fetchurl, fetchpatch, cmake, pcre, pkgconfig, python2
|
||||||
, libX11, libXpm, libXft, libXext, libGLU_combined, zlib, libxml2, lzma, gsl_1
|
, libX11, libXpm, libXft, libXext, libGLU, libGL, zlib, libxml2, lzma, gsl_1
|
||||||
, Cocoa, OpenGL, noSplash ? false }:
|
, Cocoa, OpenGL, noSplash ? false }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ cmake pcre python2 zlib libxml2 lzma gsl_1 ]
|
buildInputs = [ cmake pcre python2 zlib libxml2 lzma gsl_1 ]
|
||||||
++ stdenv.lib.optionals (!stdenv.isDarwin) [ libX11 libXpm libXft libXext libGLU_combined ]
|
++ stdenv.lib.optionals (!stdenv.isDarwin) [ libX11 libXpm libXft libXext libGLU libGL ]
|
||||||
++ stdenv.lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL ]
|
++ stdenv.lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL ]
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, cmake, pcre, pkgconfig, python2
|
{ stdenv, fetchurl, cmake, pcre, pkgconfig, python2
|
||||||
, libX11, libXpm, libXft, libXext, libGLU_combined, zlib, libxml2, lz4, lzma, gsl, xxHash
|
, libX11, libXpm, libXft, libXext, libGLU, libGL, zlib, libxml2, lz4, lzma, gsl, xxHash
|
||||||
, Cocoa, OpenGL, noSplash ? false }:
|
, Cocoa, OpenGL, noSplash ? false }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ cmake pcre python2 zlib libxml2 lz4 lzma gsl xxHash ]
|
buildInputs = [ cmake pcre python2 zlib libxml2 lz4 lzma gsl xxHash ]
|
||||||
++ stdenv.lib.optionals (!stdenv.isDarwin) [ libX11 libXpm libXft libXext libGLU_combined ]
|
++ stdenv.lib.optionals (!stdenv.isDarwin) [ libX11 libXpm libXft libXext libGLU libGL ]
|
||||||
++ stdenv.lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL ]
|
++ stdenv.lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL ]
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ fetchurl, stdenv, libxml2, freetype, libGLU_combined, glew, qt4
|
{ fetchurl, stdenv, libxml2, freetype, libGLU, libGL, glew, qt4
|
||||||
, cmake, makeWrapper, libjpeg, python }:
|
, cmake, makeWrapper, libjpeg, python }:
|
||||||
|
|
||||||
let version = "5.2.1"; in
|
let version = "5.2.1"; in
|
||||||
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0bqmqy6sri87a8xv5xf7ffaq5zin4hiaa13g0l64b84i7yckfwky";
|
sha256 = "0bqmqy6sri87a8xv5xf7ffaq5zin4hiaa13g0l64b84i7yckfwky";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libxml2 freetype glew libGLU_combined qt4 libjpeg python ];
|
buildInputs = [ libxml2 freetype glew libGLU libGL qt4 libjpeg python ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake makeWrapper ];
|
nativeBuildInputs = [ cmake makeWrapper ];
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ fetchsvn, stdenv, cmake, qt4, libGLU_combined }:
|
{ fetchsvn, stdenv, cmake, qt4, libGLU, libGL }:
|
||||||
|
|
||||||
# ViTE 1.1 has several bugs, so use the SVN version.
|
# ViTE 1.1 has several bugs, so use the SVN version.
|
||||||
let
|
let
|
||||||
@ -23,7 +23,7 @@ stdenv.mkDerivation {
|
|||||||
ln -sv "${externals}" externals
|
ln -sv "${externals}" externals
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ cmake qt4 libGLU_combined ];
|
buildInputs = [ cmake qt4 libGLU libGL ];
|
||||||
|
|
||||||
NIX_LDFLAGS = "-lGLU";
|
NIX_LDFLAGS = "-lGLU";
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, SDL2, ftgl, pkgconfig, libpng, libjpeg, pcre
|
{ stdenv, fetchurl, SDL2, ftgl, pkgconfig, libpng, libjpeg, pcre
|
||||||
, SDL2_image, freetype, glew, libGLU_combined, boost, glm
|
, SDL2_image, freetype, glew, libGLU, libGL, boost, glm
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glew SDL2 ftgl libpng libjpeg pcre SDL2_image libGLU_combined
|
glew SDL2 ftgl libpng libjpeg pcre SDL2_image libGLU libGL
|
||||||
boost glm freetype
|
boost glm freetype
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ config, stdenv, fetchurl
|
{ config, stdenv, fetchurl
|
||||||
, libX11, wxGTK
|
, libX11, wxGTK
|
||||||
, libiconv, fontconfig, freetype
|
, libiconv, fontconfig, freetype
|
||||||
, libGLU_combined
|
, libGLU, libGL
|
||||||
, libass, fftw, ffms
|
, libass, fftw, ffms
|
||||||
, ffmpeg, pkgconfig, zlib # Undocumented (?) dependencies
|
, ffmpeg, pkgconfig, zlib # Undocumented (?) dependencies
|
||||||
, icu, boost, intltool # New dependencies
|
, icu, boost, intltool # New dependencies
|
||||||
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
|||||||
postPatch = "sed '1i#include <unicode/unistr.h>' -i src/utils.cpp";
|
postPatch = "sed '1i#include <unicode/unistr.h>' -i src/utils.cpp";
|
||||||
|
|
||||||
buildInputs = with stdenv.lib;
|
buildInputs = with stdenv.lib;
|
||||||
[ pkgconfig intltool libX11 wxGTK fontconfig freetype libGLU_combined
|
[ pkgconfig intltool libX11 wxGTK fontconfig freetype libGLU libGL
|
||||||
libass fftw ffms ffmpeg zlib icu boost boost.out libiconv
|
libass fftw ffms ffmpeg zlib icu boost boost.out libiconv
|
||||||
]
|
]
|
||||||
++ optional spellcheckSupport hunspell
|
++ optional spellcheckSupport hunspell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ config, stdenv, fetchFromGitHub
|
{ config, stdenv, fetchFromGitHub
|
||||||
, fetchpatch, pkgconfig, perl, python, which
|
, fetchpatch, pkgconfig, perl, python, which
|
||||||
, libX11, libxcb, libGLU_combined
|
, libX11, libxcb, libGLU, libGL
|
||||||
, qtbase, qtdeclarative, qtquickcontrols, qttools, qtx11extras, qmake, makeWrapper
|
, qtbase, qtdeclarative, qtquickcontrols, qttools, qtx11extras, qmake, makeWrapper
|
||||||
, libchardet
|
, libchardet
|
||||||
, ffmpeg
|
, ffmpeg
|
||||||
@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = with stdenv.lib;
|
buildInputs = with stdenv.lib;
|
||||||
[ libX11
|
[ libX11
|
||||||
libxcb
|
libxcb
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
qtbase
|
qtbase
|
||||||
qtx11extras
|
qtx11extras
|
||||||
qtdeclarative
|
qtdeclarative
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
, aalibSupport ? true, aalib ? null
|
, aalibSupport ? true, aalib ? null
|
||||||
, fontconfigSupport ? true, fontconfig ? null, freefont_ttf ? null
|
, fontconfigSupport ? true, fontconfig ? null, freefont_ttf ? null
|
||||||
, fribidiSupport ? true, fribidi ? null
|
, fribidiSupport ? true, fribidi ? null
|
||||||
, x11Support ? true, libX11 ? null, libXext ? null, libGLU_combined ? null
|
, x11Support ? true, libX11 ? null, libXext ? null, libGLU, libGL ? null
|
||||||
, xineramaSupport ? true, libXinerama ? null
|
, xineramaSupport ? true, libXinerama ? null
|
||||||
, xvSupport ? true, libXv ? null
|
, xvSupport ? true, libXv ? null
|
||||||
, alsaSupport ? stdenv.isLinux, alsaLib ? null
|
, alsaSupport ? stdenv.isLinux, alsaLib ? null
|
||||||
@ -32,7 +32,7 @@
|
|||||||
assert fontconfigSupport -> (fontconfig != null);
|
assert fontconfigSupport -> (fontconfig != null);
|
||||||
assert (!fontconfigSupport) -> (freefont_ttf != null);
|
assert (!fontconfigSupport) -> (freefont_ttf != null);
|
||||||
assert fribidiSupport -> (fribidi != null);
|
assert fribidiSupport -> (fribidi != null);
|
||||||
assert x11Support -> (libX11 != null && libXext != null && libGLU_combined != null);
|
assert x11Support -> (libX11 != null && libXext != null && libGLU != null && libGL != null);
|
||||||
assert xineramaSupport -> (libXinerama != null && x11Support);
|
assert xineramaSupport -> (libXinerama != null && x11Support);
|
||||||
assert xvSupport -> (libXv != null && x11Support);
|
assert xvSupport -> (libXv != null && x11Support);
|
||||||
assert alsaSupport -> alsaLib != null;
|
assert alsaSupport -> alsaLib != null;
|
||||||
@ -111,7 +111,7 @@ stdenv.mkDerivation rec {
|
|||||||
++ optional aalibSupport aalib
|
++ optional aalibSupport aalib
|
||||||
++ optional fontconfigSupport fontconfig
|
++ optional fontconfigSupport fontconfig
|
||||||
++ optional fribidiSupport fribidi
|
++ optional fribidiSupport fribidi
|
||||||
++ optionals x11Support [ libX11 libXext libGLU_combined ]
|
++ optionals x11Support [ libX11 libXext libGLU libGL ]
|
||||||
++ optional alsaSupport alsaLib
|
++ optional alsaSupport alsaLib
|
||||||
++ optional xvSupport libXv
|
++ optional xvSupport libXv
|
||||||
++ optional theoraSupport libtheora
|
++ optional theoraSupport libtheora
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
, libxkbcommon ? null
|
, libxkbcommon ? null
|
||||||
|
|
||||||
, x11Support ? stdenv.isLinux
|
, x11Support ? stdenv.isLinux
|
||||||
, libGLU_combined ? null
|
, libGLU, libGL ? null
|
||||||
, libX11 ? null
|
, libX11 ? null
|
||||||
, libXext ? null
|
, libXext ? null
|
||||||
, libXxf86vm ? null
|
, libXxf86vm ? null
|
||||||
@ -86,7 +86,7 @@ assert vapoursynthSupport -> available vapoursynth;
|
|||||||
assert vdpauSupport -> available libvdpau;
|
assert vdpauSupport -> available libvdpau;
|
||||||
assert vulkanSupport -> all available [ libplacebo shaderc vulkan-headers vulkan-loader ];
|
assert vulkanSupport -> all available [ libplacebo shaderc vulkan-headers vulkan-loader ];
|
||||||
assert waylandSupport -> all available [ wayland wayland-protocols libxkbcommon ];
|
assert waylandSupport -> all available [ wayland wayland-protocols libxkbcommon ];
|
||||||
assert x11Support -> all available [ libGLU_combined libX11 libXext libXxf86vm libXrandr ];
|
assert x11Support -> all available [ libGLU libGL libX11 libXext libXxf86vm libXrandr ];
|
||||||
assert xineramaSupport -> x11Support && available libXinerama;
|
assert xineramaSupport -> x11Support && available libXinerama;
|
||||||
assert xvSupport -> x11Support && available libXv;
|
assert xvSupport -> x11Support && available libXv;
|
||||||
assert youtubeSupport -> available youtube-dl;
|
assert youtubeSupport -> available youtube-dl;
|
||||||
@ -181,7 +181,7 @@ in stdenv.mkDerivation rec {
|
|||||||
++ optionals drmSupport [ libdrm mesa ]
|
++ optionals drmSupport [ libdrm mesa ]
|
||||||
++ optionals dvdnavSupport [ libdvdnav libdvdnav.libdvdread ]
|
++ optionals dvdnavSupport [ libdvdnav libdvdnav.libdvdread ]
|
||||||
++ optionals waylandSupport [ wayland wayland-protocols libxkbcommon ]
|
++ optionals waylandSupport [ wayland wayland-protocols libxkbcommon ]
|
||||||
++ optionals x11Support [ libX11 libXext libGLU_combined libXxf86vm libXrandr ]
|
++ optionals x11Support [ libX11 libXext libGLU libGL libXxf86vm libXrandr ]
|
||||||
++ optionals vulkanSupport [ libplacebo shaderc vulkan-headers vulkan-loader ]
|
++ optionals vulkanSupport [ libplacebo shaderc vulkan-headers vulkan-loader ]
|
||||||
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
||||||
CoreFoundation Cocoa CoreAudio
|
CoreFoundation Cocoa CoreAudio
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, mkDerivation, fetchFromGitHub, which, qtbase, qtwebkit, qtscript, xlibsWrapper
|
{ stdenv, mkDerivation, fetchFromGitHub, which, qtbase, qtwebkit, qtscript, xlibsWrapper
|
||||||
, libpulseaudio, fftwSinglePrec , lame, zlib, libGLU_combined, alsaLib, freetype
|
, libpulseaudio, fftwSinglePrec , lame, zlib, libGLU, libGL, alsaLib, freetype
|
||||||
, perl, pkgconfig , libsamplerate, libbluray, lzo, libX11, libXv, libXrandr, libXvMC, libXinerama, libXxf86vm
|
, perl, pkgconfig , libsamplerate, libbluray, lzo, libX11, libXv, libXrandr, libXvMC, libXinerama, libXxf86vm
|
||||||
, libXmu , yasm, libuuid, taglib, libtool, autoconf, automake, file, exiv2, linuxHeaders
|
, libXmu , yasm, libuuid, taglib, libtool, autoconf, automake, file, exiv2, linuxHeaders
|
||||||
, libXNVCtrl, enableXnvctrl ? false
|
, libXNVCtrl, enableXnvctrl ? false
|
||||||
@ -26,7 +26,7 @@ mkDerivation rec {
|
|||||||
setSourceRoot = ''sourceRoot=$(echo */mythtv)'';
|
setSourceRoot = ''sourceRoot=$(echo */mythtv)'';
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
freetype qtbase qtwebkit qtscript lame zlib xlibsWrapper libGLU_combined
|
freetype qtbase qtwebkit qtscript lame zlib xlibsWrapper libGLU libGL
|
||||||
perl libsamplerate libbluray lzo alsaLib libpulseaudio fftwSinglePrec libX11 libXv libXrandr libXvMC
|
perl libsamplerate libbluray lzo alsaLib libpulseaudio fftwSinglePrec libX11 libXv libXrandr libXvMC
|
||||||
libXmu libXinerama libXxf86vm libXmu libuuid taglib exiv2
|
libXmu libXinerama libXxf86vm libXmu libuuid taglib exiv2
|
||||||
] ++ stdenv.lib.optional enableXnvctrl libXNVCtrl;
|
] ++ stdenv.lib.optional enableXnvctrl libXNVCtrl;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, mkDerivation, fetchurl, alsaLib, ffmpeg, libjack2, libX11, libXext, qtx11extras
|
{ stdenv, mkDerivation, fetchurl, alsaLib, ffmpeg, libjack2, libX11, libXext, qtx11extras
|
||||||
, libXfixes, libGLU_combined, pkgconfig, libpulseaudio, qtbase, cmake, ninja
|
, libXfixes, libGLU, libGL, pkgconfig, libpulseaudio, qtbase, cmake, ninja
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
@ -25,7 +25,7 @@ mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig cmake ninja ];
|
nativeBuildInputs = [ pkgconfig cmake ninja ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
alsaLib ffmpeg libjack2 libX11 libXext libXfixes libGLU_combined
|
alsaLib ffmpeg libjack2 libX11 libXext libXfixes libGLU libGL
|
||||||
libpulseaudio qtbase qtx11extras
|
libpulseaudio qtbase qtx11extras
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl
|
||||||
, pkgconfig, libtool
|
, pkgconfig, libtool
|
||||||
, gtk2, libGLU_combined, readline, libX11, libXpm
|
, gtk2, libGLU, libGL, readline, libX11, libXpm
|
||||||
, docbook_xml_dtd_45, docbook_xsl
|
, docbook_xml_dtd_45, docbook_xsl
|
||||||
, sdlSupport ? true, SDL2 ? null
|
, sdlSupport ? true, SDL2 ? null
|
||||||
, termSupport ? true, ncurses ? null
|
, termSupport ? true, ncurses ? null
|
||||||
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||||||
patches = [ ./bochs-2.6.9-glibc-2.26.patch ];
|
patches = [ ./bochs-2.6.9-glibc-2.26.patch ];
|
||||||
|
|
||||||
buildInputs = with stdenv.lib;
|
buildInputs = with stdenv.lib;
|
||||||
[ pkgconfig libtool gtk2 libGLU_combined readline libX11 libXpm docbook_xml_dtd_45 docbook_xsl ]
|
[ pkgconfig libtool gtk2 libGLU libGL readline libX11 libXpm docbook_xml_dtd_45 docbook_xsl ]
|
||||||
++ optionals termSupport [ ncurses ]
|
++ optionals termSupport [ ncurses ]
|
||||||
++ optionals sdlSupport [ SDL2 ]
|
++ optionals sdlSupport [ SDL2 ]
|
||||||
++ optionals wxSupport [ wxGTK ]
|
++ optionals wxSupport [ wxGTK ]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch, pkgconfig, glib, gtk2, libGLU_combined, pango, pangox_compat, xorg }:
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, glib, gtk2, libGLU, libGL, pango, pangox_compat, xorg }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gtkglext-1.2.0";
|
name = "gtkglext-1.2.0";
|
||||||
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with xorg;
|
buildInputs = with xorg;
|
||||||
[ pkgconfig glib gtk2 libGLU_combined pango libX11 libXmu ];
|
[ pkgconfig glib gtk2 libGLU libGL pango libX11 libXmu ];
|
||||||
propagatedBuildInputs = [ pangox_compat ];
|
propagatedBuildInputs = [ pangox_compat ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -259,7 +259,7 @@ self: super: builtins.intersectAttrs super {
|
|||||||
wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK30; };
|
wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK30; };
|
||||||
|
|
||||||
# Test suite wants to connect to $DISPLAY.
|
# Test suite wants to connect to $DISPLAY.
|
||||||
hsqml = dontCheck (addExtraLibrary (super.hsqml.override { qt5 = pkgs.qt5Full; }) pkgs.libGLU_combined);
|
hsqml = dontCheck (addExtraLibraries (super.hsqml.override { qt5 = pkgs.qt5Full; }) [pkgs.libGLU pkgs.libGL]);
|
||||||
|
|
||||||
# Tests attempt to use NPM to install from the network into
|
# Tests attempt to use NPM to install from the network into
|
||||||
# /homeless-shelter. Disabled.
|
# /homeless-shelter. Disabled.
|
||||||
|
@ -85987,7 +85987,7 @@ self: {
|
|||||||
|
|
||||||
"fltkhs" = callPackage
|
"fltkhs" = callPackage
|
||||||
({ mkDerivation, base, bytestring, c2hs, Cabal, directory, filepath
|
({ mkDerivation, base, bytestring, c2hs, Cabal, directory, filepath
|
||||||
, fltk14, libGLU_combined, mtl, OpenGLRaw, parsec, pkgconfig, text
|
, fltk14, libGLU, libGL, mtl, OpenGLRaw, parsec, pkgconfig, text
|
||||||
, vector
|
, vector
|
||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
@ -86000,14 +86000,14 @@ self: {
|
|||||||
setupHaskellDepends = [ base Cabal directory filepath ];
|
setupHaskellDepends = [ base Cabal directory filepath ];
|
||||||
libraryHaskellDepends = [ base bytestring text vector ];
|
libraryHaskellDepends = [ base bytestring text vector ];
|
||||||
librarySystemDepends = [ fltk14 ];
|
librarySystemDepends = [ fltk14 ];
|
||||||
libraryPkgconfigDepends = [ libGLU_combined ];
|
libraryPkgconfigDepends = [ libGLU libGL ];
|
||||||
libraryToolDepends = [ c2hs pkgconfig ];
|
libraryToolDepends = [ c2hs pkgconfig ];
|
||||||
executableHaskellDepends = [
|
executableHaskellDepends = [
|
||||||
base directory filepath mtl OpenGLRaw parsec text
|
base directory filepath mtl OpenGLRaw parsec text
|
||||||
];
|
];
|
||||||
description = "FLTK bindings";
|
description = "FLTK bindings";
|
||||||
license = stdenv.lib.licenses.mit;
|
license = stdenv.lib.licenses.mit;
|
||||||
}) {inherit (pkgs) fltk14; inherit (pkgs) libGLU_combined;
|
}) {inherit (pkgs) fltk14; inherit (pkgs) libGLU libGL;
|
||||||
pkgconfig = null;};
|
pkgconfig = null;};
|
||||||
|
|
||||||
"fltkhs-demos" = callPackage
|
"fltkhs-demos" = callPackage
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
, libxml2, libxslt, ncurses, openssl, perl, autoconf
|
, libxml2, libxslt, ncurses, openssl, perl, autoconf
|
||||||
, openjdk ? null # javacSupport
|
, openjdk ? null # javacSupport
|
||||||
, unixODBC ? null # odbcSupport
|
, unixODBC ? null # odbcSupport
|
||||||
, libGLU_combined ? null, wxGTK ? null, wxmac ? null, xorg ? null # wxSupport
|
, libGL ? null, libGLU ? null, wxGTK ? null, wxmac ? null, xorg ? null # wxSupport
|
||||||
, withSystemd ? stdenv.isLinux, systemd # systemd support in epmd
|
, withSystemd ? stdenv.isLinux, systemd # systemd support in epmd
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -18,7 +18,7 @@
|
|||||||
, enableKernelPoll ? true
|
, enableKernelPoll ? true
|
||||||
, javacSupport ? false, javacPackages ? [ openjdk ]
|
, javacSupport ? false, javacPackages ? [ openjdk ]
|
||||||
, odbcSupport ? false, odbcPackages ? [ unixODBC ]
|
, odbcSupport ? false, odbcPackages ? [ unixODBC ]
|
||||||
, wxSupport ? true, wxPackages ? [ libGLU_combined wxGTK xorg.libX11 ]
|
, wxSupport ? true, wxPackages ? [ libGL libGLU wxGTK xorg.libX11 ]
|
||||||
, preUnpack ? "", postUnpack ? ""
|
, preUnpack ? "", postUnpack ? ""
|
||||||
, patches ? [], patchPhase ? "", prePatch ? "", postPatch ? ""
|
, patches ? [], patchPhase ? "", prePatch ? "", postPatch ? ""
|
||||||
, configureFlags ? [], configurePhase ? "", preConfigure ? "", postConfigure ? ""
|
, configureFlags ? [], configurePhase ? "", preConfigure ? "", postConfigure ? ""
|
||||||
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
assert wxSupport -> (if stdenv.isDarwin
|
assert wxSupport -> (if stdenv.isDarwin
|
||||||
then wxmac != null
|
then wxmac != null
|
||||||
else libGLU_combined != null && wxGTK != null && xorg != null);
|
else libGL != null && libGLU != null && wxGTK != null && xorg != null);
|
||||||
|
|
||||||
assert odbcSupport -> unixODBC != null;
|
assert odbcSupport -> unixODBC != null;
|
||||||
assert javacSupport -> openjdk != null;
|
assert javacSupport -> openjdk != null;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, zlib, sqlite, gmp, libffi, cairo,
|
{ stdenv, fetchFromGitHub, cmake, zlib, sqlite, gmp, libffi, cairo,
|
||||||
ncurses, freetype, libGLU_combined, libpng, libtiff, libjpeg, readline, libsndfile,
|
ncurses, freetype, libGLU, libGL, libpng, libtiff, libjpeg, readline, libsndfile,
|
||||||
libxml2, freeglut, libsamplerate, pcre, libevent, libedit, yajl,
|
libxml2, freeglut, libsamplerate, pcre, libevent, libedit, yajl,
|
||||||
python3, openssl, glfw, pkgconfig, libpthreadstubs, libXdmcp, libmemcached
|
python3, openssl, glfw, pkgconfig, libpthreadstubs, libXdmcp, libmemcached
|
||||||
}:
|
}:
|
||||||
@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
zlib sqlite gmp libffi cairo ncurses freetype
|
zlib sqlite gmp libffi cairo ncurses freetype
|
||||||
libGLU_combined libpng libtiff libjpeg readline libsndfile libxml2
|
libGLU libGL libpng libtiff libjpeg readline libsndfile libxml2
|
||||||
freeglut libsamplerate pcre libevent libedit yajl
|
freeglut libsamplerate pcre libevent libedit yajl
|
||||||
pkgconfig glfw openssl libpthreadstubs libXdmcp
|
pkgconfig glfw openssl libpthreadstubs libXdmcp
|
||||||
libmemcached python3
|
libmemcached python3
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromBitbucket, pkgconfig, SDL2, libGLU_combined, openal, luajit,
|
{ stdenv, fetchFromBitbucket, pkgconfig, SDL2, libGLU, libGL, openal, luajit,
|
||||||
libdevil, freetype, physfs, libmodplug, mpg123, libvorbis, libogg,
|
libdevil, freetype, physfs, libmodplug, mpg123, libvorbis, libogg,
|
||||||
libtheora, which, autoconf, automake, libtool
|
libtheora, which, autoconf, automake, libtool
|
||||||
}:
|
}:
|
||||||
@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
SDL2 libGLU_combined openal luajit libdevil freetype physfs libmodplug mpg123
|
SDL2 libGLU libGL openal luajit libdevil freetype physfs libmodplug mpg123
|
||||||
libvorbis libogg libtheora autoconf which libtool automake
|
libvorbis libogg libtheora autoconf which libtool automake
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig
|
{ stdenv, fetchurl, pkgconfig
|
||||||
, SDL, libGLU_combined, openal, lua
|
, SDL, libGLU, libGL, openal, lua
|
||||||
, libdevil, freetype, physfs
|
, libdevil, freetype, physfs
|
||||||
, libmodplug, mpg123, libvorbis, libogg
|
, libmodplug, mpg123, libvorbis, libogg
|
||||||
, libmng
|
, libmng
|
||||||
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
SDL libGLU_combined openal lua
|
SDL libGLU libGL openal lua
|
||||||
libdevil freetype physfs libmodplug mpg123 libvorbis libogg libmng
|
libdevil freetype physfs libmodplug mpg123 libvorbis libogg libmng
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig
|
{ stdenv, fetchurl, pkgconfig
|
||||||
, SDL, libGLU_combined, openal, lua
|
, SDL, libGLU, libGL, openal, lua
|
||||||
, libdevil, freetype, physfs
|
, libdevil, freetype, physfs
|
||||||
, libmodplug, mpg123, libvorbis, libogg
|
, libmodplug, mpg123, libvorbis, libogg
|
||||||
}:
|
}:
|
||||||
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
SDL libGLU_combined openal lua
|
SDL libGLU libGL openal lua
|
||||||
libdevil freetype physfs libmodplug mpg123 libvorbis libogg
|
libdevil freetype physfs libmodplug mpg123 libvorbis libogg
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig
|
{ stdenv, fetchurl, pkgconfig
|
||||||
, SDL2, libGLU_combined, openal, luajit
|
, SDL2, libGLU, libGL, openal, luajit
|
||||||
, libdevil, freetype, physfs
|
, libdevil, freetype, physfs
|
||||||
, libmodplug, mpg123, libvorbis, libogg
|
, libmodplug, mpg123, libvorbis, libogg
|
||||||
}:
|
}:
|
||||||
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
SDL2 libGLU_combined openal luajit
|
SDL2 libGLU libGL openal luajit
|
||||||
libdevil freetype physfs libmodplug mpg123 libvorbis libogg
|
libdevil freetype physfs libmodplug mpg123 libvorbis libogg
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromBitbucket, pkgconfig, SDL2, libGLU_combined, openal, luajit,
|
{ stdenv, fetchFromBitbucket, pkgconfig, SDL2, libGLU, libGL, openal, luajit,
|
||||||
libdevil, freetype, physfs, libmodplug, mpg123, libvorbis, libogg,
|
libdevil, freetype, physfs, libmodplug, mpg123, libvorbis, libogg,
|
||||||
libtheora, which, autoconf, automake, libtool
|
libtheora, which, autoconf, automake, libtool
|
||||||
}:
|
}:
|
||||||
@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
SDL2 libGLU_combined openal luajit libdevil freetype physfs libmodplug mpg123
|
SDL2 libGLU libGL openal luajit libdevil freetype physfs libmodplug mpg123
|
||||||
libvorbis libogg libtheora autoconf which libtool automake
|
libvorbis libogg libtheora autoconf which libtool automake
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, libX11, xorgproto, indent, readline, gsl, freeglut, libGLU_combined, SDL
|
{stdenv, fetchurl, libX11, xorgproto, indent, readline, gsl, freeglut, libGLU, libGL, SDL
|
||||||
, blas, libbfd, intltool, gettext, zlib, libSM}:
|
, blas, libbfd, intltool, gettext, zlib, libSM}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libX11 libSM xorgproto indent readline gsl freeglut libGLU_combined SDL blas libbfd
|
libX11 libSM xorgproto indent readline gsl freeglut libGLU libGL SDL blas libbfd
|
||||||
intltool gettext zlib
|
intltool gettext zlib
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, python2Packages, pkgconfig, SDL2
|
{ stdenv, fetchurl, python2Packages, pkgconfig, SDL2
|
||||||
, libpng, ffmpeg, freetype, glew, libGLU_combined, fribidi, zlib
|
, libpng, ffmpeg, freetype, glew, libGL, libGLU, fribidi, zlib
|
||||||
, glib
|
, glib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -32,13 +32,13 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
python cython wrapPython tkinter
|
python cython wrapPython tkinter
|
||||||
SDL2 libpng ffmpeg freetype glew libGLU_combined fribidi zlib pygame_sdl2 glib
|
SDL2 libpng ffmpeg freetype glew libGLU libGL fribidi zlib pygame_sdl2 glib
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonPath = [ pygame_sdl2 tkinter ];
|
pythonPath = [ pygame_sdl2 tkinter ];
|
||||||
|
|
||||||
RENPY_DEPS_INSTALL = stdenv.lib.concatStringsSep "::" (map (path: path) [
|
RENPY_DEPS_INSTALL = stdenv.lib.concatStringsSep "::" (map (path: path) [
|
||||||
SDL2 SDL2.dev libpng ffmpeg ffmpeg.out freetype glew.dev glew.out libGLU_combined fribidi zlib
|
SDL2 SDL2.dev libpng ffmpeg ffmpeg.out freetype glew.dev glew.out libGLU libGL fribidi zlib
|
||||||
]);
|
]);
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
{ stdenv, fetchurl, unzip, xorg, libGLU_combined }:
|
{ stdenv, fetchurl, unzip, xorg, libGLU, libGL }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "AntTweakBar-1.16";
|
name = "AntTweakBar-1.16";
|
||||||
|
|
||||||
buildInputs = [ unzip xorg.libX11 libGLU_combined ];
|
buildInputs = [ unzip xorg.libX11 libGLU libGL ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/project/anttweakbar/AntTweakBar_116.zip";
|
url = "mirror://sourceforge/project/anttweakbar/AntTweakBar_116.zip";
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchFromGitHub, fetchpatch, texinfo, libXext, xorgproto, libX11
|
{ stdenv, fetchFromGitHub, fetchpatch, texinfo, libXext, xorgproto, libX11
|
||||||
, libXpm, libXt, libXcursor, alsaLib, cmake, zlib, libpng, libvorbis
|
, libXpm, libXt, libXcursor, alsaLib, cmake, zlib, libpng, libvorbis
|
||||||
, libXxf86dga, libXxf86misc
|
, libXxf86dga, libXxf86misc
|
||||||
, libXxf86vm, openal, libGLU_combined, libjpeg, flac
|
, libXxf86vm, openal, libGLU, libGL, libjpeg, flac
|
||||||
, libXi, libXfixes, freetype, libopus, libtheora
|
, libXi, libXfixes, freetype, libopus, libtheora
|
||||||
, physfs, enet, pkgconfig, gtk2, pcre, libpulseaudio, libpthreadstubs
|
, physfs, enet, pkgconfig, gtk2, pcre, libpulseaudio, libpthreadstubs
|
||||||
, libXdmcp
|
, libXdmcp
|
||||||
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
texinfo libXext xorgproto libX11 libXpm libXt libXcursor
|
texinfo libXext xorgproto libX11 libXpm libXt libXcursor
|
||||||
alsaLib cmake zlib libpng libvorbis libXxf86dga libXxf86misc
|
alsaLib cmake zlib libpng libvorbis libXxf86dga libXxf86misc
|
||||||
libXxf86vm openal libGLU_combined
|
libXxf86vm openal libGLU libGL
|
||||||
libjpeg flac
|
libjpeg flac
|
||||||
libXi libXfixes
|
libXi libXfixes
|
||||||
enet libtheora freetype physfs libopus pkgconfig gtk2 pcre libXdmcp
|
enet libtheora freetype physfs libopus pkgconfig gtk2 pcre libXdmcp
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchurl, texinfo, libXext, xorgproto, libX11
|
{ stdenv, fetchurl, texinfo, libXext, xorgproto, libX11
|
||||||
, libXpm, libXt, libXcursor, alsaLib, cmake, zlib, libpng, libvorbis
|
, libXpm, libXt, libXcursor, alsaLib, cmake, zlib, libpng, libvorbis
|
||||||
, libXxf86dga, libXxf86misc
|
, libXxf86dga, libXxf86misc
|
||||||
, libXxf86vm, openal, libGLU_combined }:
|
, libXxf86vm, openal, libGLU, libGL }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "allegro";
|
pname = "allegro";
|
||||||
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
texinfo libXext xorgproto libX11 libXpm libXt libXcursor
|
texinfo libXext xorgproto libX11 libXpm libXt libXcursor
|
||||||
alsaLib cmake zlib libpng libvorbis libXxf86dga libXxf86misc
|
alsaLib cmake zlib libpng libvorbis libXxf86dga libXxf86misc
|
||||||
libXxf86vm openal libGLU_combined
|
libXxf86vm openal libGLU libGL
|
||||||
];
|
];
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig
|
{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig
|
||||||
, cudatoolkit, opencl-clhpp, ocl-icd, fftw, fftwFloat, mkl
|
, cudatoolkit, opencl-clhpp, ocl-icd, fftw, fftwFloat, mkl
|
||||||
, blas, openblas, boost, mesa, libGLU_combined
|
, blas, openblas, boost, mesa, libGLU, libGL
|
||||||
, freeimage, python, clfft, clblas
|
, freeimage, python, clfft, clblas
|
||||||
, doxygen, buildDocs ? false
|
, doxygen, buildDocs ? false
|
||||||
}:
|
}:
|
||||||
@ -51,7 +51,7 @@ in stdenv.mkDerivation rec {
|
|||||||
opencl-clhpp fftw fftwFloat
|
opencl-clhpp fftw fftwFloat
|
||||||
mkl
|
mkl
|
||||||
openblas
|
openblas
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
mesa freeimage
|
mesa freeimage
|
||||||
boost.out boost.dev
|
boost.out boost.dev
|
||||||
] ++ (stdenv.lib.optional stdenv.isLinux [ cudatoolkit ocl-icd ])
|
] ++ (stdenv.lib.optional stdenv.isLinux [ cudatoolkit ocl-icd ])
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, unzip, cmake, libGLU_combined, freeglut, libX11, xorgproto
|
{ stdenv, fetchurl, unzip, cmake, libGLU, libGL, freeglut, libX11, xorgproto
|
||||||
, libXi, pkgconfig }:
|
, libXi, pkgconfig }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
unzip cmake libGLU_combined freeglut libX11 xorgproto libXi
|
unzip cmake libGLU libGL freeglut libX11 xorgproto libXi
|
||||||
];
|
];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, libGLU_combined, freeglut
|
{ stdenv, fetchFromGitHub, cmake, libGLU, libGL, freeglut
|
||||||
, Cocoa, OpenGL
|
, Cocoa, OpenGL
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ libGLU_combined freeglut ]
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ libGLU libGL freeglut ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa OpenGL ];
|
++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa OpenGL ];
|
||||||
|
|
||||||
patches = [ ./gwen-narrowing.patch ];
|
patches = [ ./gwen-narrowing.patch ];
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, libGLU_combined, freeglut
|
{ stdenv, fetchFromGitHub, cmake, libGLU, libGL, freeglut
|
||||||
, Cocoa, OpenGL
|
, Cocoa, OpenGL
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ libGLU_combined freeglut ]
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ libGLU libGL freeglut ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa OpenGL ];
|
++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa OpenGL ];
|
||||||
|
|
||||||
patches = [ ./gwen-narrowing.patch ];
|
patches = [ ./gwen-narrowing.patch ];
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
, xcbSupport ? x11Support, libxcb, xcbutil # no longer experimental since 1.12
|
, xcbSupport ? x11Support, libxcb, xcbutil # no longer experimental since 1.12
|
||||||
, libGLSupported ? stdenv.lib.elem stdenv.hostPlatform.system stdenv.lib.platforms.mesaPlatforms
|
, libGLSupported ? stdenv.lib.elem stdenv.hostPlatform.system stdenv.lib.platforms.mesaPlatforms
|
||||||
, glSupport ? config.cairo.gl or (libGLSupported && stdenv.isLinux && !stdenv.isAarch32 && !stdenv.isMips)
|
, glSupport ? config.cairo.gl or (libGLSupported && stdenv.isLinux && !stdenv.isAarch32 && !stdenv.isMips)
|
||||||
, libGL ? null # libGLU_combined is no longer a big dependency
|
, libGL ? null # libGLU libGL is no longer a big dependency
|
||||||
, pdfSupport ? true
|
, pdfSupport ? true
|
||||||
, darwin
|
, darwin
|
||||||
}:
|
}:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, cmake, freeglut, libGLU_combined, glfw2, glew, libX11, xorgproto
|
{ stdenv, fetchurl, cmake, freeglut, libGLU, libGL, glfw2, glew, libX11, xorgproto
|
||||||
, libXi, libXmu
|
, libXi, libXmu
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ freeglut libGLU_combined glfw2 glew libX11 xorgproto libXi libXmu ];
|
[ freeglut libGLU libGL glfw2 glew libX11 xorgproto libXi libXmu ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
|
@ -104,7 +104,7 @@
|
|||||||
#, opencl ? null # OpenCL code
|
#, opencl ? null # OpenCL code
|
||||||
, opencore-amr ? null # AMR-NB de/encoder & AMR-WB decoder
|
, opencore-amr ? null # AMR-NB de/encoder & AMR-WB decoder
|
||||||
#, opencv ? null # Video filtering
|
#, opencv ? null # Video filtering
|
||||||
, openglExtlib ? false, libGLU_combined ? null # OpenGL rendering
|
, openglExtlib ? false, libGL ? null, libGLU ? null # OpenGL rendering
|
||||||
#, openh264 ? null # H.264/AVC encoder
|
#, openh264 ? null # H.264/AVC encoder
|
||||||
, openjpeg ? null # JPEG 2000 de/encoder
|
, openjpeg ? null # JPEG 2000 de/encoder
|
||||||
, opensslExtlib ? false, openssl ? null
|
, opensslExtlib ? false, openssl ? null
|
||||||
@ -234,7 +234,7 @@ assert gnutls != null -> !opensslExtlib;
|
|||||||
assert libxcbshmExtlib -> libxcb != null;
|
assert libxcbshmExtlib -> libxcb != null;
|
||||||
assert libxcbxfixesExtlib -> libxcb != null;
|
assert libxcbxfixesExtlib -> libxcb != null;
|
||||||
assert libxcbshapeExtlib -> libxcb != null;
|
assert libxcbshapeExtlib -> libxcb != null;
|
||||||
assert openglExtlib -> libGLU_combined != null;
|
assert openglExtlib -> libGL != null && libGLU != null;
|
||||||
assert opensslExtlib -> gnutls == null && openssl != null && nonfreeLicensing;
|
assert opensslExtlib -> gnutls == null && openssl != null && nonfreeLicensing;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -424,7 +424,7 @@ stdenv.mkDerivation rec {
|
|||||||
libxcb libXv libXext lzma openal openjpeg libpulseaudio rtmpdump opencore-amr
|
libxcb libXv libXext lzma openal openjpeg libpulseaudio rtmpdump opencore-amr
|
||||||
samba SDL2 soxr speex vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore
|
samba SDL2 soxr speex vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore
|
||||||
zeromq4 zlib
|
zeromq4 zlib
|
||||||
] ++ optional openglExtlib libGLU_combined
|
] ++ optionals openglExtlib [ libGL libGLU ]
|
||||||
++ optionals nonfreeLicensing [ fdk_aac openssl ]
|
++ optionals nonfreeLicensing [ fdk_aac openssl ]
|
||||||
++ optional ((isLinux || isFreeBSD) && libva != null) libva
|
++ optional ((isLinux || isFreeBSD) && libva != null) libva
|
||||||
++ optional (!isAarch64 && libvmaf != null && version3Licensing) libvmaf
|
++ optional (!isAarch64 && libvmaf != null && version3Licensing) libvmaf
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
, alsaLib, bzip2, fontconfig, freetype, gnutls, libiconv, lame, libass, libogg
|
, alsaLib, bzip2, fontconfig, freetype, gnutls, libiconv, lame, libass, libogg
|
||||||
, libssh, libtheora, libva, libdrm, libvorbis, libvpx, lzma, libpulseaudio, soxr
|
, libssh, libtheora, libva, libdrm, libvorbis, libvpx, lzma, libpulseaudio, soxr
|
||||||
, x264, x265, xvidcore, zlib, libopus, speex, nv-codec-headers, dav1d
|
, x264, x265, xvidcore, zlib, libopus, speex, nv-codec-headers, dav1d
|
||||||
, openglSupport ? false, libGLU_combined ? null
|
, openglSupport ? false, libGLU ? null, libGL ? null
|
||||||
, libmfxSupport ? false, intel-media-sdk ? null
|
, libmfxSupport ? false, intel-media-sdk ? null
|
||||||
, libaomSupport ? false, libaom ? null
|
, libaomSupport ? false, libaom ? null
|
||||||
# Build options
|
# Build options
|
||||||
@ -63,7 +63,7 @@ let
|
|||||||
vpxSupport = reqMin "0.6" && !isAarch32;
|
vpxSupport = reqMin "0.6" && !isAarch32;
|
||||||
in
|
in
|
||||||
|
|
||||||
assert openglSupport -> libGLU_combined != null;
|
assert openglSupport -> libGL != null && libGLU != null;
|
||||||
assert libmfxSupport -> intel-media-sdk != null;
|
assert libmfxSupport -> intel-media-sdk != null;
|
||||||
assert libaomSupport -> libaom != null;
|
assert libaomSupport -> libaom != null;
|
||||||
|
|
||||||
@ -168,7 +168,7 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
bzip2 fontconfig freetype gnutls libiconv lame libass libogg libssh libtheora
|
bzip2 fontconfig freetype gnutls libiconv lame libass libogg libssh libtheora
|
||||||
libvdpau libvorbis lzma soxr x264 x265 xvidcore zlib libopus speex nv-codec-headers
|
libvdpau libvorbis lzma soxr x264 x265 xvidcore zlib libopus speex nv-codec-headers
|
||||||
] ++ optional openglSupport libGLU_combined
|
] ++ optionals openglSupport [ libGL libGLU ]
|
||||||
++ optional libmfxSupport intel-media-sdk
|
++ optional libmfxSupport intel-media-sdk
|
||||||
++ optional vpxSupport libaom
|
++ optional vpxSupport libaom
|
||||||
++ optional vpxSupport libvpx
|
++ optional vpxSupport libvpx
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, xlibsWrapper, xorgproto, libXi
|
{ stdenv, fetchurl, pkgconfig, xlibsWrapper, xorgproto, libXi
|
||||||
, freeglut, libGLU_combined, libjpeg, zlib, libXft, libpng
|
, freeglut, libGLU, libGL, libjpeg, zlib, libXft, libpng
|
||||||
, libtiff, freetype, Cocoa, AGL, GLUT
|
, libtiff, freetype, Cocoa, AGL, GLUT
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
|||||||
patches = stdenv.lib.optionals stdenv.isDarwin [ ./nsosv.patch ];
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./nsosv.patch ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ libGLU_combined libjpeg zlib libpng libXft ]
|
buildInputs = [ libGLU libGL libjpeg zlib libpng libXft ]
|
||||||
++ stdenv.lib.optional stdenv.isDarwin [ AGL Cocoa GLUT ];
|
++ stdenv.lib.optional stdenv.isDarwin [ AGL Cocoa GLUT ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ xorgproto ]
|
propagatedBuildInputs = [ xorgproto ]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig
|
||||||
, arrayfire, expat, fontconfig, freeimage, freetype, boost
|
, arrayfire, expat, fontconfig, freeimage, freetype, boost
|
||||||
, mesa, libGLU_combined, glfw3, SDL2, cudatoolkit
|
, mesa, libGLU, libGL, glfw3, SDL2, cudatoolkit
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
|||||||
boost.dev
|
boost.dev
|
||||||
freeimage
|
freeimage
|
||||||
mesa
|
mesa
|
||||||
libGLU_combined
|
libGLU libGL
|
||||||
glfw3
|
glfw3
|
||||||
SDL2
|
SDL2
|
||||||
cudatoolkit
|
cudatoolkit
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, xlibsWrapper, libpng, libjpeg, libtiff, zlib, bzip2, libXcursor
|
{ stdenv, fetchurl, xlibsWrapper, libpng, libjpeg, libtiff, zlib, bzip2, libXcursor
|
||||||
, libXrandr, libGLU_combined, libXft, libXfixes, xinput
|
, libXrandr, libGLU, libGL, libXft, libXfixes, xinput
|
||||||
, CoreServices }:
|
, CoreServices }:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
xlibsWrapper libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr
|
xlibsWrapper libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr
|
||||||
libXft libGLU_combined libXfixes xinput
|
libXft libGLU libGL libXfixes xinput
|
||||||
] ++ stdenv.lib.optional stdenv.isDarwin CoreServices;
|
] ++ stdenv.lib.optional stdenv.isDarwin CoreServices;
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, cmake, libusb, pkgconfig, freeglut, libGLU_combined, libXi, libXmu
|
{ stdenv, lib, fetchFromGitHub, cmake, libusb, pkgconfig, freeglut, libGLU, libGL, libXi, libXmu
|
||||||
, GLUT, Cocoa
|
, GLUT, Cocoa
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0vnc7z2avckh4mccqq6alsd2z7xvsh3kaslc5b0gnfxw0j269gl6";
|
sha256 = "0vnc7z2avckh4mccqq6alsd2z7xvsh3kaslc5b0gnfxw0j269gl6";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libusb freeglut libGLU_combined libXi libXmu ]
|
buildInputs = [ libusb freeglut libGLU libGL libXi libXmu ]
|
||||||
++ lib.optionals stdenv.isDarwin [ GLUT Cocoa ];
|
++ lib.optionals stdenv.isDarwin [ GLUT Cocoa ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig ];
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{stdenv, fetchurl, freeglut, libGLU_combined, libXmu, libXext, libX11, libXi}:
|
{stdenv, fetchurl, freeglut, libGLU, libGL, libXmu, libXext, libX11, libXi}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "glui-2.35";
|
name = "glui-2.35";
|
||||||
buildInputs = [freeglut libGLU_combined libXmu libXext libX11 libXi];
|
buildInputs = [freeglut libGLU libGL libXmu libXext libX11 libXi];
|
||||||
preConfigure = ''cd src'';
|
preConfigure = ''cd src'';
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p "$out"/{bin,lib,share/glui/doc,include}
|
mkdir -p "$out"/{bin,lib,share/glui/doc,include}
|
||||||
|
@ -70,7 +70,8 @@
|
|||||||
, xvidcore
|
, xvidcore
|
||||||
, gnutls
|
, gnutls
|
||||||
, mjpegtools
|
, mjpegtools
|
||||||
, libGLU_combined
|
, libGLU
|
||||||
|
, libGL
|
||||||
, libintl
|
, libintl
|
||||||
, libgme
|
, libgme
|
||||||
, openssl
|
, openssl
|
||||||
@ -148,7 +149,8 @@ in stdenv.mkDerivation rec {
|
|||||||
libwebp
|
libwebp
|
||||||
xvidcore
|
xvidcore
|
||||||
gnutls
|
gnutls
|
||||||
libGLU_combined
|
libGL
|
||||||
|
libGLU
|
||||||
libgme
|
libgme
|
||||||
openssl
|
openssl
|
||||||
x265
|
x265
|
||||||
|
@ -10,7 +10,8 @@
|
|||||||
, libdrm
|
, libdrm
|
||||||
, udev
|
, udev
|
||||||
, xorg
|
, xorg
|
||||||
, libGLU_combined
|
, libGLU
|
||||||
|
, libGL
|
||||||
, gstreamer
|
, gstreamer
|
||||||
, gst-plugins-bad
|
, gst-plugins-bad
|
||||||
, nasm
|
, nasm
|
||||||
@ -50,7 +51,8 @@ stdenv.mkDerivation rec {
|
|||||||
xorg.libXrandr
|
xorg.libXrandr
|
||||||
xorg.libSM
|
xorg.libSM
|
||||||
xorg.libICE
|
xorg.libICE
|
||||||
libGLU_combined
|
libGL
|
||||||
|
libGLU
|
||||||
nasm
|
nasm
|
||||||
libvpx
|
libvpx
|
||||||
python
|
python
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchzip, libGLU_combined, unzip, libXrandr, libX11, libXxf86vm }:
|
{ stdenv, fetchzip, libGLU, libGL, unzip, libXrandr, libX11, libXxf86vm }:
|
||||||
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||||||
mkdir -p $out/lib
|
mkdir -p $out/lib
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ unzip libGLU_combined libXrandr libX11 libXxf86vm ];
|
buildInputs = [ unzip libGLU libGL libXrandr libX11 libXxf86vm ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://irrlicht.sourceforge.net/;
|
homepage = http://irrlicht.sourceforge.net/;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, lib, fetchurl, unzip, jdk, pkgconfig, gtk2
|
{ stdenv, lib, fetchurl, unzip, jdk, pkgconfig, gtk2
|
||||||
, libXt, libXtst, libXi, libGLU_combined, webkitgtk, libsoup, xorg
|
, libXt, libXtst, libXi, libGLU, libGL, webkitgtk, libsoup, xorg
|
||||||
, pango, gdk-pixbuf, glib
|
, pango, gdk-pixbuf, glib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -36,7 +36,7 @@ in stdenv.mkDerivation rec {
|
|||||||
sourceRoot = ".";
|
sourceRoot = ".";
|
||||||
|
|
||||||
nativeBuildInputs = [ unzip pkgconfig ];
|
nativeBuildInputs = [ unzip pkgconfig ];
|
||||||
buildInputs = [ jdk gtk2 libXt libXtst libXi libGLU_combined webkitgtk libsoup ];
|
buildInputs = [ jdk gtk2 libXt libXtst libXi libGLU libGL webkitgtk libsoup ];
|
||||||
|
|
||||||
NIX_LFLAGS = (map (x: "-L${lib.getLib x}/lib") [ xorg.libX11 pango gdk-pixbuf glib ]) ++
|
NIX_LFLAGS = (map (x: "-L${lib.getLib x}/lib") [ xorg.libX11 pango gdk-pixbuf glib ]) ++
|
||||||
[ "-lX11" "-lpango-1.0" "-lgdk_pixbuf-2.0" "-lglib-2.0" ];
|
[ "-lX11" "-lpango-1.0" "-lgdk_pixbuf-2.0" "-lglib-2.0" ];
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, libtool, perl, bsdbuild, gettext, mandoc
|
{ stdenv, fetchurl, pkgconfig, libtool, perl, bsdbuild, gettext, mandoc
|
||||||
, libpng, libjpeg, xlibsWrapper, libXinerama, freetype, SDL, libGLU_combined
|
, libpng, libjpeg, xlibsWrapper, libXinerama, freetype, SDL, libGLU, libGL
|
||||||
, libsndfile, portaudio, libmysqlclient, fontconfig
|
, libsndfile, portaudio, libmysqlclient, fontconfig
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
|||||||
"--enable-nls=yes"
|
"--enable-nls=yes"
|
||||||
"--with-gettext=${gettext}"
|
"--with-gettext=${gettext}"
|
||||||
"--with-jpeg=${libjpeg.dev}"
|
"--with-jpeg=${libjpeg.dev}"
|
||||||
"--with-gl=${libGLU_combined}"
|
"--with-gl=${libGL}"
|
||||||
"--with-mysql=${libmysqlclient}"
|
"--with-mysql=${libmysqlclient}"
|
||||||
"--with-manpages=yes"
|
"--with-manpages=yes"
|
||||||
];
|
];
|
||||||
@ -29,7 +29,7 @@ stdenv.mkDerivation {
|
|||||||
nativeBuildInputs = [ pkgconfig libtool gettext ];
|
nativeBuildInputs = [ pkgconfig libtool gettext ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
bsdbuild perl xlibsWrapper libXinerama SDL libGLU_combined libmysqlclient mandoc
|
bsdbuild perl xlibsWrapper libXinerama SDL libGL libmysqlclient mandoc
|
||||||
freetype.dev libpng libjpeg.dev fontconfig portaudio libsndfile
|
freetype.dev libpng libjpeg.dev fontconfig portaudio libsndfile
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user