mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
531e4b80c9
Only acts on one-line dependency lists.
31 lines
825 B
Nix
31 lines
825 B
Nix
{ stdenv, fetchurl, pkgconfig, fltk, openexr, mesa, openexr_ctl }:
|
|
|
|
assert fltk.glSupport;
|
|
|
|
stdenv.mkDerivation {
|
|
name ="openexr_viewers-2.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/openexr/openexr_viewers-2.2.0.tar.gz";
|
|
sha256 = "1s84vnas12ybx8zz0jcmpfbk9m4ab5bg2d3cglqwk3wys7jf4gzp";
|
|
};
|
|
|
|
configurePhase = ''
|
|
./configure --prefix=$out --with-fltk-config=${fltk}/bin/fltk-config
|
|
'';
|
|
|
|
buildPahse = ''
|
|
make LDFLAGS="`fltk-config --ldflags` -lGL -lfltk_gl"
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ openexr fltk mesa openexr_ctl ];
|
|
|
|
meta = {
|
|
description = "Application for viewing OpenEXR images on a display at various exposure settings";
|
|
homepage = http://openexr.com;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.bsd3;
|
|
};
|
|
}
|