cinepaint: remove
This commit is contained in:
parent
8a5cfec1c2
commit
cd6c028a1b
@ -1,38 +0,0 @@
|
|||||||
{ stdenv, fetchurl, cmake, pkgconfig, gtk2, freetype, fontconfig, lcms,
|
|
||||||
flex, libtiff, libjpeg, libpng, libexif, zlib, perlPackages, libX11,
|
|
||||||
pythonPackages, gettext, intltool, babl, gegl,
|
|
||||||
glib, makedepend, xorgproto, libXmu, openexr,
|
|
||||||
libGLU, libGL, libXext, libXpm, libXau, libXxf86vm, pixman, libpthreadstubs, fltk } :
|
|
||||||
|
|
||||||
let
|
|
||||||
inherit (pythonPackages) python pygtk;
|
|
||||||
in stdenv.mkDerivation rec {
|
|
||||||
name = "cinepaint-1.1";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "mirror://sourceforge/cinepaint/${name}.tgz";
|
|
||||||
sha256 = "0b5g4bkq62yiz1cnb2vfij0a8fw5w5z202v5dm4dh89k7cj0yq4w";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ libpng gtk2 freetype fontconfig lcms flex libtiff libjpeg
|
|
||||||
libexif zlib libX11 python pygtk gettext intltool babl
|
|
||||||
gegl glib makedepend xorgproto libXmu openexr libGLU libGL
|
|
||||||
libXext libXpm libXau libXxf86vm pixman libpthreadstubs fltk
|
|
||||||
] ++ (with perlPackages; [ perl XMLParser ]);
|
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
|
||||||
|
|
||||||
patches = [ ./install.patch ];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig ];
|
|
||||||
|
|
||||||
NIX_LDFLAGS = "-lm -llcms -ljpeg -lpng -lX11";
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = http://www.cinepaint.org/;
|
|
||||||
license = stdenv.lib.licenses.free;
|
|
||||||
description = "Image editor which supports images over 8bpp and ICC profiles";
|
|
||||||
maintainers = with stdenv.lib.maintainers; [viric];
|
|
||||||
platforms = stdenv.lib.platforms.linux;
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,24 +0,0 @@
|
|||||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
||||||
index dfb182f..5adaaa5 100644
|
|
||||||
--- a/CMakeLists.txt
|
|
||||||
+++ b/CMakeLists.txt
|
|
||||||
@@ -138,7 +138,7 @@ STRING(REPLACE "/" "\\/" ESCAPEDPREFIX ${PREFIX})
|
|
||||||
# Note that for MacOS this needs to be revised
|
|
||||||
# for the @OSX_ICC...@ variables
|
|
||||||
ADD_CUSTOM_COMMAND(
|
|
||||||
- OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/gimprc
|
|
||||||
+ OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/gimprc
|
|
||||||
COMMAND sed -e s/\@platform\@//g
|
|
||||||
-e s/\@prefix\@/${ESCAPEDPREFIX}/g
|
|
||||||
-e s/\@exec_prefix\@/\${prefix}/g
|
|
||||||
@@ -155,8 +155,8 @@ ADD_CUSTOM_COMMAND(
|
|
||||||
|
|
||||||
ADD_CUSTOM_TARGET(RCFile ALL echo
|
|
||||||
""
|
|
||||||
- DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/user_install
|
|
||||||
- ${CMAKE_CURRENT_SOURCE_DIR}/gimprc
|
|
||||||
+ DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/user_install
|
|
||||||
+ ${CMAKE_CURRENT_BINARY_DIR}/gimprc
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
@ -60,6 +60,7 @@ mapAliases ({
|
|||||||
cantarell_fonts = cantarell-fonts; # added 2018-03-03
|
cantarell_fonts = cantarell-fonts; # added 2018-03-03
|
||||||
checkbashism = checkbashisms; # added 2016-08-16
|
checkbashism = checkbashisms; # added 2016-08-16
|
||||||
cide = throw "deprecated in 2019-09-11: abandoned by upstream";
|
cide = throw "deprecated in 2019-09-11: abandoned by upstream";
|
||||||
|
cinepaint = throw "cinepaint has been removed from nixpkgs, as it was unmaintained"; # added 2019-12-10
|
||||||
cifs_utils = cifs-utils; # added 2016-08
|
cifs_utils = cifs-utils; # added 2016-08
|
||||||
ckb = ckb-next; # added 2018-10-21
|
ckb = ckb-next; # added 2018-10-21
|
||||||
clangAnalyzer = clang-analyzer; # added 2015-02-20
|
clangAnalyzer = clang-analyzer; # added 2015-02-20
|
||||||
|
@ -18287,12 +18287,6 @@ in
|
|||||||
python = python27;
|
python = python27;
|
||||||
};
|
};
|
||||||
|
|
||||||
cinepaint = callPackage ../applications/graphics/cinepaint {
|
|
||||||
fltk = fltk13;
|
|
||||||
libpng = libpng12;
|
|
||||||
cmake = cmake_2_8;
|
|
||||||
};
|
|
||||||
|
|
||||||
codeblocks = callPackage ../applications/editors/codeblocks { };
|
codeblocks = callPackage ../applications/editors/codeblocks { };
|
||||||
codeblocksFull = codeblocks.override { contribPlugins = true; };
|
codeblocksFull = codeblocks.override { contribPlugins = true; };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user