about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2021-01-11 02:04:20 +0100
committerFlorian Klink <flokli@flokli.de>2021-01-13 00:30:46 +0100
commit038de4c5b185d450b2326af5cec24c5d6969dd02 (patch)
tree8dc9df3ac81f74dfe5a5683012252d02e1a8985b /pkgs/applications/graphics
parente35938ab71ad19a82da135928f1e1d08ace79f65 (diff)
ufraw: remove
This is broken and unmaintained. nufraw seems to be a drop-in
alternative, but is currently broken (see
https://github.com/NixOS/nixpkgs/pull/108993#issuecomment-757988146).

Using Darktable seems to be the reasonable choice for now.

Closes https://github.com/NixOS/nixpkgs/issues/97946.
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/gimp/plugins/default.nix2
-rw-r--r--pkgs/applications/graphics/ufraw/default.nix88
2 files changed, 0 insertions, 90 deletions
diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix
index 7ea76c9a82455..c2e8a47420eba 100644
--- a/pkgs/applications/graphics/gimp/plugins/default.nix
+++ b/pkgs/applications/graphics/gimp/plugins/default.nix
@@ -167,8 +167,6 @@ in
     variant = "gimp";
   };
 
-  ufraw = pkgs.ufraw.gimpPlugin;
-
   gimplensfun = pluginDerivation rec {
     version = "unstable-2018-10-21";
     name = "gimplensfun-${version}";
diff --git a/pkgs/applications/graphics/ufraw/default.nix b/pkgs/applications/graphics/ufraw/default.nix
deleted file mode 100644
index c30aeb15a0c2f..0000000000000
--- a/pkgs/applications/graphics/ufraw/default.nix
+++ /dev/null
@@ -1,88 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-
-, autoconf
-, automake
-, autoreconfHook
-, bzip2
-, cfitsio
-, exiv2
-, gettext
-, gimp ? null
-, gtk2
-, gtkimageview
-, lcms2
-, lensfun
-, libjpeg
-, libtiff
-, perl
-, pkgconfig
-, zlib
-
-, withGimpPlugin ? true
-}:
-
-assert withGimpPlugin -> gimp != null;
-
-stdenv.mkDerivation {
-  pname = "ufraw";
-  version = "unstable-2019-06-12";
-
-  # The original ufraw repo is unmaintained and broken;
-  # this is a fork that collects patches
-  src = fetchFromGitHub {
-    owner = "sergiomb2";
-    repo = "ufraw";
-    rev = "c65b4237dcb430fb274e4778afaf5df9a18e04e6";
-    sha256 = "02icn67bsinvgliy62qa6v7gmwgp2sh15jvm8iiz3c7g1h74f0b7";
-  };
-
-  outputs = [ "out" ] ++ stdenv.lib.optional withGimpPlugin "gimpPlugin";
-
-  nativeBuildInputs = [ autoconf automake autoreconfHook gettext perl pkgconfig ];
-
-  buildInputs = [
-    bzip2
-    cfitsio
-    exiv2
-    gtk2
-    gtkimageview
-    lcms2
-    lensfun
-    libjpeg
-    libtiff
-    zlib
-  ] ++ stdenv.lib.optional withGimpPlugin gimp;
-
-  configureFlags = [
-    "--enable-contrast"
-    "--enable-dst-correction"
-  ] ++ stdenv.lib.optional withGimpPlugin "--with-gimp";
-
-  postInstall = stdenv.lib.optionalString withGimpPlugin ''
-    moveToOutput "lib/gimp" "$gimpPlugin"
-  '';
-
-  meta = with lib; {
-    homepage = "https://github.com/sergiomb2/ufraw";
-
-    broken = true; # https://github.com/NixOS/nixpkgs/issues/97946
-
-    description = "Utility to read and manipulate raw images from digital cameras";
-
-    longDescription =
-      '' The Unidentified Flying Raw (UFRaw) is a utility to read and
-         manipulate raw images from digital cameras.  It can be used on its
-         own or as a Gimp plug-in.  It reads raw images using Dave Coffin's
-         raw conversion utility - DCRaw.  UFRaw supports color management
-         workflow based on Little CMS, allowing the user to apply ICC color
-         profiles.  For Nikon users UFRaw has the advantage that it can read
-         the camera's tone curves.
-      '';
-
-    license = licenses.gpl2Plus;
-
-    maintainers = with maintainers; [ gloaming ];
-    platforms   = with platforms; all;
-  };
-}