at 16.09-beta 29 lines 675 B view raw
1{ stdenv, fetchurl, automake, autoconf, libtool, which }: 2 3stdenv.mkDerivation rec { 4 name = "ilmbase-2.2.0"; 5 6 src = fetchurl { 7 url = "http://download.savannah.nongnu.org/releases/openexr/${name}.tar.gz"; 8 sha256 = "1izddjwbh1grs8080vmaix72z469qy29wrvkphgmqmcm0sv1by7c"; 9 }; 10 11 outputs = [ "out" "dev" ]; 12 13 preConfigure = '' 14 ./bootstrap 15 ''; 16 17 buildInputs = [ automake autoconf libtool which ]; 18 19 NIX_CFLAGS_LINK = [ "-pthread" ]; 20 21 patches = [ ./bootstrap.patch ]; 22 23 meta = with stdenv.lib; { 24 homepage = http://www.openexr.com/; 25 license = licenses.bsd3; 26 platforms = platforms.all; 27 maintainers = with maintainers; [ wkennington ]; 28 }; 29}