summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics/megapixels/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/graphics/megapixels/default.nix')
-rw-r--r--pkgs/applications/graphics/megapixels/default.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/megapixels/default.nix b/pkgs/applications/graphics/megapixels/default.nix
new file mode 100644
index 000000000000..29aaed1278d5
--- /dev/null
+++ b/pkgs/applications/graphics/megapixels/default.nix
@@ -0,0 +1,55 @@
+{ stdenv
+, lib
+, fetchgit
+, meson
+, ninja
+, pkg-config
+, wrapGAppsHook
+, gtk3
+, gnome3
+, tiffSupport ? true
+, libraw
+, jpgSupport ? true
+, imagemagick
+, exiftool
+}:
+
+assert jpgSupport -> tiffSupport;
+
+let
+ inherit (lib) makeBinPath optional optionals optionalString;
+ runtimePath = makeBinPath (
+ optional tiffSupport libraw
+ ++ optionals jpgSupport [ imagemagick exiftool ]
+ );
+in
+stdenv.mkDerivation rec {
+ pname = "megapixels";
+ version = "0.14.0";
+
+ src = fetchgit {
+ url = "https://git.sr.ht/~martijnbraam/megapixels";
+ rev = version;
+ sha256 = "136rv9sx0kgfkpqn5s90j7j4qhb8h04p14g5qhqshb89kmmsmxiw";
+ };
+
+ nativeBuildInputs = [ meson ninja pkg-config wrapGAppsHook ];
+
+ buildInputs = [ gtk3 gnome3.adwaita-icon-theme ]
+ ++ optional tiffSupport libraw
+ ++ optional jpgSupport imagemagick;
+
+ preFixup = optionalString (tiffSupport || jpgSupport) ''
+ gappsWrapperArgs+=(
+ --prefix PATH : ${runtimePath}
+ )
+ '';
+
+ meta = with lib; {
+ description = "GTK3 camera application using raw v4l2 and media-requests";
+ homepage = "https://sr.ht/~martijnbraam/Megapixels";
+ license = licenses.gpl3Only;
+ maintainers = with maintainers; [ OPNA2608 ];
+ platforms = platforms.linux;
+ };
+}