about summary refs log tree commit diff
path: root/pkgs/applications/graphics/exrdisplay
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-07-11 17:36:39 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-07-11 18:02:49 +0200
commit497679725edad2361f4a1f70d3cca6691c57cea0 (patch)
tree000d516f735bb646bb82417220b3defd4369e270 /pkgs/applications/graphics/exrdisplay
parentc7af2af4556f77d4a6801a77abe5fec70fd39647 (diff)
downloadnixlib-497679725edad2361f4a1f70d3cca6691c57cea0.tar
nixlib-497679725edad2361f4a1f70d3cca6691c57cea0.tar.gz
nixlib-497679725edad2361f4a1f70d3cca6691c57cea0.tar.bz2
nixlib-497679725edad2361f4a1f70d3cca6691c57cea0.tar.lz
nixlib-497679725edad2361f4a1f70d3cca6691c57cea0.tar.xz
nixlib-497679725edad2361f4a1f70d3cca6691c57cea0.tar.zst
nixlib-497679725edad2361f4a1f70d3cca6691c57cea0.zip
fltk: get rid of composableDerivation
Diffstat (limited to 'pkgs/applications/graphics/exrdisplay')
-rw-r--r--pkgs/applications/graphics/exrdisplay/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/applications/graphics/exrdisplay/default.nix b/pkgs/applications/graphics/exrdisplay/default.nix
index e698fb8f2341..34e7b1f23088 100644
--- a/pkgs/applications/graphics/exrdisplay/default.nix
+++ b/pkgs/applications/graphics/exrdisplay/default.nix
@@ -1,7 +1,5 @@
 { stdenv, fetchurl, pkgconfig, fltk, openexr, libGLU_combined, openexr_ctl }:
 
-assert fltk.glSupport;
-
 stdenv.mkDerivation {
   name ="openexr_viewers-2.2.1";
 
@@ -14,14 +12,14 @@ stdenv.mkDerivation {
     ./configure --prefix=$out --with-fltk-config=${fltk}/bin/fltk-config
   '';
 
-  buildPahse = ''
+  buildPhase = ''
     make LDFLAGS="`fltk-config --ldflags` -lGL -lfltk_gl"
   '';
 
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [ openexr fltk libGLU_combined openexr_ctl ];
 
-  meta = { 
+  meta = {
     description = "Application for viewing OpenEXR images on a display at various exposure settings";
     homepage = http://openexr.com;
     platforms = stdenv.lib.platforms.linux;