9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gettext
|
|
, libusb1
|
|
, libtool
|
|
, libexif
|
|
, libjpeg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libgphoto2";
|
|
version = "2.5.26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gphoto";
|
|
repo = "libgphoto2";
|
|
rev = "libgphoto2-${builtins.replaceStrings [ "." ] [ "_" ] version}-release";
|
|
sha256 = "0lnlxflj04ng9a0hm2nb2067kqs4kp9kx1z4gg395cgbfd7lx6j6";
|
|
};
|
|
|
|
patches = [];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
gettext
|
|
libtool
|
|
];
|
|
|
|
buildInputs = [
|
|
libjpeg
|
|
libusb1
|
|
];
|
|
|
|
# These are mentioned in the Requires line of libgphoto's pkg-config file.
|
|
propagatedBuildInputs = [ libexif ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/lib/udev/rules.d
|
|
$out/lib/libgphoto2/print-camera-list udev-rules version 175 group camera >$out/lib/udev/rules.d/40-gphoto2.rules
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://www.gphoto.org/proj/libgphoto2/";
|
|
description = "A library for accessing digital cameras";
|
|
longDescription = ''
|
|
This is the library backend for gphoto2. It contains the code for PTP,
|
|
MTP, and other vendor specific protocols for controlling and transferring data
|
|
from digital cameras.
|
|
'';
|
|
# XXX: the homepage claims LGPL, but several src files are lgpl21Plus
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
|
};
|
|
}
|