lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 23 lines 647 B view raw
1{ stdenv, fetchurl, pkgconfig, openexr, libpng12, libjpeg }: 2 3stdenv.mkDerivation rec { 4 name = "exrtools-${version}"; 5 version = "0.4"; 6 7 src = fetchurl { 8 url = "http://scanline.ca/exrtools/${name}.tar.gz"; 9 sha256 = "0jpkskqs1yjiighab4s91jy0c0qxcscwadfn94xy2mm2bx2qwp4z"; 10 }; 11 12 nativeBuildInputs = [ pkgconfig ]; 13 buildInputs = [ stdenv openexr libpng12 libjpeg ]; 14 15 meta = with stdenv.lib; { 16 description = "Collection of utilities for manipulating OpenEXR images"; 17 homepage = http://scanline.ca/exrtools; 18 platforms = platforms.linux; 19 license = licenses.mit; 20 maintainers = [ maintainers.juliendehos ]; 21 }; 22} 23