gphoto2: 2.5.8 -> 2.5.11

ndowens 89e2a4c3 040b86a9

+8 -8
+8 -8
pkgs/applications/misc/gphoto2/default.nix
··· 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - name = "gphoto2-2.5.8"; 6 + name = "gphoto2-2.5.11"; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://sourceforge/gphoto/${name}.tar.bz2"; 10 - sha256 = "0kgfql6c64ha1gahjdwlqhmkslnfywmc2fkys4c5682zv4awvax9"; 10 + sha256 = "1sgr6rsvzzagcwhc8fxbnvz3k02wr2hab0vrbvcb04k5l3b48a1r"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkgconfig gettext ]; 14 - buildInputs = [ libgphoto2 libexif popt libjpeg readline libtool ]; 13 + nativeBuildInputs = [ pkgconfig gettext libtool ]; 14 + buildInputs = [ libgphoto2 libexif popt libjpeg readline ]; 15 15 16 - meta = { 16 + meta = with stdenv.lib; { 17 17 description = "A ready to use set of digital camera software applications"; 18 18 longDescription = '' 19 19 ··· 22 22 23 23 ''; 24 24 homepage = http://www.gphoto.org/; 25 - license = stdenv.lib.licenses.gpl2Plus; 26 - platforms = with stdenv.lib.platforms; unix; 27 - maintainers = with stdenv.lib.maintainers; [ jcumming ]; 25 + license = licenses.gpl2Plus; 26 + platforms = platforms.unix; 27 + maintainers = [ maintainers.jcumming ]; 28 28 }; 29 29 }