lol
fork

Configure Feed

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

at 16.09-beta 20 lines 507 B view raw
1{ stdenv, fetchurl, gettext }: 2 3stdenv.mkDerivation rec { 4 name = "libexif-0.6.21"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/libexif/${name}.tar.bz2"; 8 sha256 = "06nlsibr3ylfwp28w8f5466l6drgrnydgxrm4jmxzrmk5svaxk8n"; 9 }; 10 11 buildInputs = [ gettext ]; 12 13 meta = { 14 homepage = http://libexif.sourceforge.net/; 15 description = "A library to read and manipulate EXIF data in digital photographs"; 16 license = stdenv.lib.licenses.lgpl21; 17 platforms = stdenv.lib.platforms.unix; 18 }; 19 20}