summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2017-12-09 22:01:24 +0100
committerAndreas Rammhold <andreas@rammhold.de>2017-12-09 22:04:33 +0100
commit241f3bb6731e5b8583ae4a6667f83685aa89fea5 (patch)
treefef99a6f397da974d1e249ab1d37dcea28fb6580 /pkgs/applications
parent48b0e5ddbc3c5fd72e2d126dccb7491fa82fa838 (diff)
downloadnixlib-241f3bb6731e5b8583ae4a6667f83685aa89fea5.tar
nixlib-241f3bb6731e5b8583ae4a6667f83685aa89fea5.tar.gz
nixlib-241f3bb6731e5b8583ae4a6667f83685aa89fea5.tar.bz2
nixlib-241f3bb6731e5b8583ae4a6667f83685aa89fea5.tar.lz
nixlib-241f3bb6731e5b8583ae4a6667f83685aa89fea5.tar.xz
nixlib-241f3bb6731e5b8583ae4a6667f83685aa89fea5.tar.zst
nixlib-241f3bb6731e5b8583ae4a6667f83685aa89fea5.zip
rawtherapee-git: remove `-git` version
As discussed in #32337 the `-git` version is outdated since a while and
doesn't compile with modern compilers anymore.

closes #32337
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/graphics/rawtherapee/dev.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/applications/graphics/rawtherapee/dev.nix b/pkgs/applications/graphics/rawtherapee/dev.nix
deleted file mode 100644
index fb73feb4a099..000000000000
--- a/pkgs/applications/graphics/rawtherapee/dev.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ stdenv, fetchFromGitHub, pkgconfig, cmake, pixman, libpthreadstubs, gtkmm2, libXau
-, libXdmcp, lcms2, libiptcdata, libcanberra_gtk2, fftw, expat, pcre, libsigcxx
-}:
-
-stdenv.mkDerivation rec {
-  name = "rawtherapee-git-2016-10-10";
-
-  src = fetchFromGitHub {
-    owner = "Beep6581";
-    repo = "RawTherapee";
-    rev = "0821eea7b6a4ac2fce1fcf644e06078e161e41e3";
-    sha256 = "1nwb6b1qrpdyigwig7bvr42lf7na1ngm0q2cislcvb2v1nmk6nlz";
-  };
-
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ cmake pixman libpthreadstubs gtkmm2 libXau libXdmcp
-    lcms2 libiptcdata libcanberra_gtk2 fftw expat pcre libsigcxx ];
-
-  NIX_CFLAGS_COMPILE = "-std=gnu++11 -Wno-deprecated-declarations -Wno-unused-result";
-
-  # Copy generated ReleaseInfo.cmake so we don't need git. File was
-  # generated manually using `./tools/generateReleaseInfo` in the
-  # source folder. Make sure to regenerate it when updating.
-  preConfigure = ''
-    cp ${./ReleaseInfo.cmake} ./ReleaseInfo.cmake
-  '';
-
-  enableParallelBuilding = true;
-
-  meta = {
-    description = "RAW converter and digital photo processing software";
-    homepage = http://www.rawtherapee.com/;
-    license = stdenv.lib.licenses.gpl3Plus;
-    maintainers = with stdenv.lib.maintainers; [ viric jcumming mahe the-kenny ];
-    platforms = with stdenv.lib.platforms; linux;
-  };
-}