2021-01-14 11:38:33 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2021-04-13 11:01:18 +00:00
|
|
|
, fetchFromSourcehut
|
2021-01-14 11:38:33 +00:00
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
2021-09-02 21:13:01 +00:00
|
|
|
, glib
|
2021-01-14 11:38:33 +00:00
|
|
|
, wrapGAppsHook
|
2021-05-11 18:07:20 +00:00
|
|
|
, epoxy
|
|
|
|
, gtk4
|
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
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "megapixels";
|
2021-08-05 20:09:01 +00:00
|
|
|
version = "1.2.0";
|
2021-01-14 11:38:33 +00:00
|
|
|
|
2021-04-13 11:01:18 +00:00
|
|
|
src = fetchFromSourcehut {
|
|
|
|
owner = "~martijnbraam";
|
|
|
|
repo = "megapixels";
|
2021-01-14 11:38:33 +00:00
|
|
|
rev = version;
|
2021-08-05 20:09:01 +00:00
|
|
|
sha256 = "0jnfzwvq58p4ksyifma10i158r2fb7fv72ymibgcxbnx596xpjb2";
|
2021-01-14 11:38:33 +00:00
|
|
|
};
|
|
|
|
|
2021-09-02 21:13:01 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
glib
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
2021-01-14 11:38:33 +00:00
|
|
|
|
2021-05-11 18:07:20 +00:00
|
|
|
buildInputs = [
|
|
|
|
epoxy
|
|
|
|
gtk4
|
|
|
|
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+=(
|
|
|
|
--prefix PATH : ${runtimePath}
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
|
|
|
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";
|
2021-01-14 11:38:33 +00:00
|
|
|
homepage = "https://sr.ht/~martijnbraam/Megapixels";
|
2021-04-13 11:01:18 +00:00
|
|
|
changelog = "https://git.sr.ht/~martijnbraam/megapixels/refs/${version}";
|
2021-01-14 11:38:33 +00:00
|
|
|
license = licenses.gpl3Only;
|
2021-05-11 18:07:20 +00:00
|
|
|
maintainers = with maintainers; [ OPNA2608 dotlambda ];
|
2021-01-14 11:38:33 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|