summary refs log tree commit diff
path: root/pkgs/applications/misc/gphoto2
diff options
context:
space:
mode:
authorJack Cummings <jack@mudshark.org>2012-10-20 21:59:25 -0700
committerJack Cummings <jack@mudshark.org>2012-10-20 21:59:25 -0700
commit1db34880d71152229c91225b734cac2ffc909810 (patch)
tree2f2211a7022288984210c07fb0117ed3078e3e9e /pkgs/applications/misc/gphoto2
parenta13346961f34acb7c2604599b2603028d4fe1a46 (diff)
downloadnixlib-1db34880d71152229c91225b734cac2ffc909810.tar
nixlib-1db34880d71152229c91225b734cac2ffc909810.tar.gz
nixlib-1db34880d71152229c91225b734cac2ffc909810.tar.bz2
nixlib-1db34880d71152229c91225b734cac2ffc909810.tar.lz
nixlib-1db34880d71152229c91225b734cac2ffc909810.tar.xz
nixlib-1db34880d71152229c91225b734cac2ffc909810.tar.zst
nixlib-1db34880d71152229c91225b734cac2ffc909810.zip
- gphoto2-2.4.14, libgphoto2-2.4.14
Diffstat (limited to 'pkgs/applications/misc/gphoto2')
-rw-r--r--pkgs/applications/misc/gphoto2/default.nix14
1 files changed, 12 insertions, 2 deletions
diff --git a/pkgs/applications/misc/gphoto2/default.nix b/pkgs/applications/misc/gphoto2/default.nix
index 9fff2943d305..022cb437c698 100644
--- a/pkgs/applications/misc/gphoto2/default.nix
+++ b/pkgs/applications/misc/gphoto2/default.nix
@@ -3,17 +3,27 @@
 }:
 
 stdenv.mkDerivation rec {
-  name = "gphoto2-2.4.11";
+  name = "gphoto2-2.4.14";
   
   src = fetchurl {
     url = "mirror://sourceforge/gphoto/${name}.tar.bz2";
-    sha256 = "0ah42b7rnqh0z8bb96z7cdycxdh5k19h6lmfc02kdhrhqdr3q81y";
+    sha256 = "08x1p8xhl65r79a6gn1fi63z1lspd5j55l05diiyzcwfxvqwsm47";
   };
   
   buildNativeInputs = [ pkgconfig gettext ];
   buildInputs = [ libgphoto2 libexif popt libjpeg readline libtool ];
   
   meta = {
+    description = "a ready to use set of digital camera software applications";
+    longDescription = ''
+
+      A set of command line utilities for manipulating over 1400 different
+      digital cameras. Through libgphoto2, it supports PTP, MTP, and much more..
+
+    '';
     homepage = http://www.gphoto.org/;
+    license = stdenv.lib.licenses.gpl2Plus;
+    platforms = with stdenv.lib.platforms; unix;
+    maintainers = with stdenv.lib.maintainers; [ jcumming ];
   };
 }