summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/fondo/default.nix4
-rw-r--r--pkgs/applications/graphics/hdr-plus/default.nix42
-rw-r--r--pkgs/applications/graphics/megapixels/default.nix55
-rw-r--r--pkgs/applications/graphics/xmountains/default.nix25
4 files changed, 124 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/fondo/default.nix b/pkgs/applications/graphics/fondo/default.nix
index ee75d6e1ae05..6aa84846f3a2 100644
--- a/pkgs/applications/graphics/fondo/default.nix
+++ b/pkgs/applications/graphics/fondo/default.nix
@@ -21,13 +21,13 @@
stdenv.mkDerivation rec {
pname = "fondo";
- version = "1.5.0";
+ version = "1.5.1";
src = fetchFromGitHub {
owner = "calo001";
repo = pname;
rev = version;
- sha256 = "1zmrpk0b5z6m956j923njn6dpqdm2p8653a325hgjjjq0sgwbhj2";
+ sha256 = "sha256-eGHgZm9Q6JnY6OQNAyrFvRsuyuFnruMJNckOCCiO4Ug=";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/graphics/hdr-plus/default.nix b/pkgs/applications/graphics/hdr-plus/default.nix
new file mode 100644
index 000000000000..107694b2fcd2
--- /dev/null
+++ b/pkgs/applications/graphics/hdr-plus/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchFromGitHub, fetchpatch
+, cmake, halide
+, libpng, libjpeg, libtiff, libraw
+}:
+
+stdenv.mkDerivation rec {
+ pname = "hdr-plus-unstable";
+ version = "2020-10-29";
+
+ src = fetchFromGitHub {
+ owner = "timothybrooks";
+ repo = "hdr-plus";
+ rev = "132bd73ccd4eaef9830124605c93f06a98607cfa";
+ sha256 = "1n49ggrppf336p7n510kapzh376791bysxj3f33m3bdzksq360ps";
+ };
+
+ patches = [
+ # PR #70, fixes incompatibility with Halide 10.0.0
+ (fetchpatch {
+ url = "https://github.com/timothybrooks/hdr-plus/pull/70/commits/077e1a476279539c72e615210762dca27984c57b.patch";
+ sha256 = "1sg2l1bqs2smpfpy4flwg86fzhcc4yf7zx998v1bfhim43yyrx59";
+ })
+ ];
+
+ nativeBuildInputs = [ cmake ];
+
+ buildInputs = [ halide libpng libjpeg libtiff libraw ];
+
+ installPhase = ''
+ for bin in hdrplus stack_frames; do
+ install -Dm755 $bin $out/bin/$bin
+ done
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Burst photography pipeline based on Google's HDR+";
+ homepage = "https://www.timothybrooks.com/tech/hdr-plus/";
+ license = licenses.mit;
+ maintainers = with maintainers; [ OPNA2608 ];
+ platforms = platforms.all;
+ };
+}
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;
+ };
+}
diff --git a/pkgs/applications/graphics/xmountains/default.nix b/pkgs/applications/graphics/xmountains/default.nix
new file mode 100644
index 000000000000..c31f7923c990
--- /dev/null
+++ b/pkgs/applications/graphics/xmountains/default.nix
@@ -0,0 +1,25 @@
+{ lib, stdenv, fetchFromGitHub, xlibsWrapper, xorg }:
+
+stdenv.mkDerivation rec {
+ pname = "xmountains";
+ version = "2.10";
+
+ src = fetchFromGitHub {
+ owner = "spbooth";
+ repo = pname;
+ rev = "aa3bcbfed228adf3fff0fe4295589f13fc194f0b";
+ sha256 = "0dx4n2y736lv04sj41cp1dw8n5zkw5gyd946a6zsiv0k796s9ra9";
+ };
+
+ buildInputs = [ xlibsWrapper xorg.xbitmaps ];
+ nativeBuildInputs = with xorg; [ imake gccmakedep ];
+
+ installPhase = "install -Dm755 xmountains -t $out/bin";
+
+ meta = with lib; {
+ description = "X11 based fractal landscape generator";
+ homepage = "https://spbooth.github.io/xmountains";
+ license = licenses.hpndSellVariant;
+ maintainers = with maintainers; [ djanatyn ];
+ };
+}