summary refs log tree commit diff
path: root/pkgs/development/libraries/libgphoto2/default.nix
blob: 6e332117a2db4867e71be7639e72424ccf1a9a40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
args: with args;

stdenv.mkDerivation rec {
  name = "libgphoto2-2.4.0";

  src = fetchurl {
    url = "mirror://sourceforge/gphoto/${name}.tar.bz2";
    sha256 = "0yfvpgfly774jnjrfqjf89h99az3sgvzkfpb9diygpk8hmx6phhd";
  };
  buildInputs = [pkgconfig libusb libtool libexif libjpeg gettext];

  meta = {
	  license = "LGPL-2";
  };
}