2021-01-14 11:38:33 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2021-11-14 04:22:23 +00:00
|
|
|
, fetchFromGitLab
|
|
|
|
, glib
|
2021-01-14 11:38:33 +00:00
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
2022-05-18 05:02:06 +00:00
|
|
|
, wrapGAppsHook4
|
2022-12-09 17:03:06 +00:00
|
|
|
, feedbackd
|
2021-05-11 18:07:20 +00:00
|
|
|
, gtk4
|
2022-12-09 17:03:06 +00:00
|
|
|
, libepoxy
|
|
|
|
, xorg
|
2021-03-11 16:41:47 +00:00
|
|
|
, zbar
|
2021-01-14 11:38:33 +00:00
|
|
|
, tiffSupport ? true
|
|
|
|
, libraw
|
|
|
|
, jpgSupport ? true
|
2021-03-11 16:41:47 +00:00
|
|
|
, graphicsmagick
|
2021-01-14 11:38:33 +00:00
|
|
|
, exiftool
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert jpgSupport -> tiffSupport;
|
|
|
|
|
|
|
|
let
|
|
|
|
inherit (lib) makeBinPath optional optionals optionalString;
|
|
|
|
runtimePath = makeBinPath (
|
|
|
|
optional tiffSupport libraw
|
2021-03-11 16:41:47 +00:00
|
|
|
++ optionals jpgSupport [ graphicsmagick exiftool ]
|
2021-01-14 11:38:33 +00:00
|
|
|
);
|
|
|
|
in
|
2024-02-18 09:09:44 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2021-01-14 11:38:33 +00:00
|
|
|
pname = "megapixels";
|
2024-04-23 18:51:38 +00:00
|
|
|
version = "1.8.1";
|
2021-01-14 11:38:33 +00:00
|
|
|
|
2021-11-14 04:22:23 +00:00
|
|
|
src = fetchFromGitLab {
|
2024-02-12 12:06:24 +00:00
|
|
|
owner = "megapixels-org";
|
|
|
|
repo = "Megapixels";
|
2024-02-18 09:09:44 +00:00
|
|
|
rev = finalAttrs.version;
|
2024-04-23 18:51:38 +00:00
|
|
|
hash = "sha256-TXiPJbd4TPpsEvmD97F7xkm4rS1g+ViTVTNlxeXrQaw=";
|
2021-01-14 11:38:33 +00:00
|
|
|
};
|
|
|
|
|
2021-09-02 21:13:01 +00:00
|
|
|
nativeBuildInputs = [
|
2021-11-14 04:22:23 +00:00
|
|
|
glib
|
2021-09-02 21:13:01 +00:00
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
2022-05-18 05:02:06 +00:00
|
|
|
wrapGAppsHook4
|
2021-09-02 21:13:01 +00:00
|
|
|
];
|
2021-01-14 11:38:33 +00:00
|
|
|
|
2021-05-11 18:07:20 +00:00
|
|
|
buildInputs = [
|
2022-12-09 17:03:06 +00:00
|
|
|
feedbackd
|
2021-05-11 18:07:20 +00:00
|
|
|
gtk4
|
2022-12-09 17:03:06 +00:00
|
|
|
libepoxy
|
|
|
|
xorg.libXrandr
|
2021-05-11 18:07:20 +00:00
|
|
|
zbar
|
|
|
|
];
|
2021-01-14 11:38:33 +00:00
|
|
|
|
2021-09-02 21:13:01 +00:00
|
|
|
postInstall = ''
|
|
|
|
glib-compile-schemas $out/share/glib-2.0/schemas
|
|
|
|
'';
|
|
|
|
|
2021-01-14 11:38:33 +00:00
|
|
|
preFixup = optionalString (tiffSupport || jpgSupport) ''
|
|
|
|
gappsWrapperArgs+=(
|
2022-05-06 16:27:02 +00:00
|
|
|
--prefix PATH : ${lib.escapeShellArg runtimePath}
|
2021-01-14 11:38:33 +00:00
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
2024-02-18 09:09:44 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2021-01-14 11:38:33 +00:00
|
|
|
meta = with lib; {
|
2021-08-05 20:09:01 +00:00
|
|
|
description = "GTK4 camera application that knows how to deal with the media request api";
|
2024-02-12 12:06:24 +00:00
|
|
|
homepage = "https://gitlab.com/megapixels-org/Megapixels";
|
|
|
|
changelog = "https://gitlab.com/megapixels-org/Megapixels/-/tags/${finalAttrs.version}";
|
2021-01-14 11:38:33 +00:00
|
|
|
license = licenses.gpl3Only;
|
2024-02-12 11:48:37 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda Luflosi ];
|
2021-01-14 11:38:33 +00:00
|
|
|
platforms = platforms.linux;
|
2024-02-18 09:09:44 +00:00
|
|
|
mainProgram = "megapixels";
|
2021-01-14 11:38:33 +00:00
|
|
|
};
|
2024-02-18 09:09:44 +00:00
|
|
|
})
|