nixpkgs/pkgs/by-name/en/entangle/package.nix

139 lines
2.9 KiB
Nix
Raw Normal View History

2024-09-28 01:40:07 +00:00
{
lib,
stdenv,
fetchFromGitLab,
fetchpatch,
itstool,
libxml2,
meson,
ninja,
perl,
python3,
pkg-config,
2024-09-28 01:40:07 +00:00
wrapGAppsHook3,
at-spi2-core,
dbus,
elfutils,
libepoxy,
gexiv2,
glib,
gobject-introspection,
gst_all_1,
gtk3,
lcms2,
libdatrie,
libgphoto2,
libgudev,
libpeas,
libraw,
libselinux,
libsepol,
2024-09-28 01:53:49 +00:00
lerc,
2024-09-28 01:40:07 +00:00
libthai,
libunwind,
libxkbcommon,
orc,
udev,
util-linux,
xorg,
zstd,
2021-10-24 22:59:54 +00:00
}:
2024-09-28 01:40:07 +00:00
stdenv.mkDerivation (finalAttrs: {
2021-10-24 22:59:54 +00:00
pname = "entangle";
version = "3.0";
src = fetchFromGitLab {
owner = "entangle";
repo = "entangle";
2024-09-28 01:53:49 +00:00
rev = "refs/tags/v${finalAttrs.version}";
2021-10-24 22:59:54 +00:00
sha256 = "hz2WSDOjriQSavFlDT+35x1X5MeInq80ZrSP1WR/td0=";
};
2022-03-30 10:18:23 +00:00
patches = [
# Fix build with meson 0.61, can be removed on next update
# https://gitlab.com/entangle/entangle/-/issues/67
(fetchpatch {
url = "https://gitlab.com/entangle/entangle/-/commit/54795d275a93e94331a614c8712740fcedbdd4f0.patch";
sha256 = "iEgqGjKa0xwSdctwvNdEV361l9nx+bz53xn3fuDgtzY=";
})
# Fix implicit dependency
# https://github.com/NixOS/nixpkgs/issues/36468
# https://gitlab.com/entangle/entangle/-/merge_requests/61
./0001-build-Add-missing-gio-unix-2.0-dependency.patch
2022-03-30 10:18:23 +00:00
];
2021-10-24 22:59:54 +00:00
nativeBuildInputs = [
2022-03-30 10:18:23 +00:00
itstool
glib
libxml2 # for xmllint
2021-10-24 22:59:54 +00:00
meson
ninja
perl # for pod2man and build scripts
python3 # for build scripts
pkg-config
wrapGAppsHook3
gobject-introspection
2021-10-24 22:59:54 +00:00
];
2024-09-28 01:40:07 +00:00
buildInputs =
[
at-spi2-core
dbus
libepoxy
elfutils
gexiv2
glib
2024-09-28 01:53:49 +00:00
lerc
2024-09-28 01:40:07 +00:00
gst_all_1.gst-plugins-base
gst_all_1.gstreamer
gtk3
lcms2
libdatrie
libgphoto2
libgudev
libpeas
libraw
libselinux
libsepol
libthai
libunwind
libxkbcommon
orc
udev
util-linux
zstd
]
++ (with xorg; [
libXdmcp
libXtst
]);
2021-10-24 22:59:54 +00:00
# Disable building of doc/reference since it requires network connection to render XML to HTML
# Patch build script shebangs
postPatch = ''
sed -i "/subdir('reference')/d" "docs/meson.build"
patchShebangs --build build-aux meson_post_install.py
sed -i meson_post_install.py \
-e "/print('Update icon cache...')/d" \
-e "/gtk-update-icon-cache/d"
'';
2024-09-28 01:40:07 +00:00
meta = {
2021-10-24 22:59:54 +00:00
description = "Tethered camera control and capture";
longDescription = ''
Entangle uses GTK and libgphoto2 to provide a graphical interface
for tethered photography with digital cameras.
It includes control over camera shooting and configuration settings
and 'hands off' shooting directly from the controlling computer.
This app can also serve as a camera app for mobile devices.
'';
homepage = "https://gitlab.com/entangle/entangle";
2024-09-28 01:40:07 +00:00
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ ShamrockLee ];
2023-11-27 01:17:53 +00:00
mainProgram = "entangle";
2021-10-24 22:59:54 +00:00
};
2024-09-28 01:40:07 +00:00
})