nixpkgs-suyu/pkgs/applications/graphics/photoflow/default.nix

91 lines
1.6 KiB
Nix
Raw Normal View History

2020-11-25 15:23:43 +01:00
{ automake
, cmake
, exiv2
, expat
, fetchFromGitHub
, fftw
, fftwFloat
, gettext
, glib
, gobject-introspection
, gtkmm2
, lcms2
, lensfun
, libexif
, libiptcdata
, libjpeg
, libraw
, libtiff
, libxml2
, ninja
, openexr
, pcre
, pkgconfig
, pugixml
, stdenv
, swig
, vips
}:
2017-11-03 22:22:17 +01:00
2020-11-25 15:23:43 +01:00
stdenv.mkDerivation rec {
pname = "photoflow";
version = "2020-08-28";
2017-11-03 22:22:17 +01:00
src = fetchFromGitHub {
owner = "aferrero2707";
2020-11-25 15:23:43 +01:00
repo = pname;
rev = "8472024fb91175791e0eb23c434c5b58ecd250eb";
sha256 = "1bq4733hbh15nwpixpyhqfn3bwkg38amdj2xc0my0pii8l9ln793";
2017-11-03 22:22:17 +01:00
};
2020-11-25 15:23:43 +01:00
patches = [ ./CMakeLists.patch ];
2017-11-03 22:22:17 +01:00
nativeBuildInputs = [
2020-11-25 15:23:43 +01:00
automake
cmake
2017-11-03 22:22:17 +01:00
gettext
glib
2020-11-25 15:23:43 +01:00
gobject-introspection
2017-11-03 22:22:17 +01:00
libxml2
2020-11-25 15:23:43 +01:00
ninja
2017-11-03 22:22:17 +01:00
pkgconfig
swig
];
buildInputs = [
exiv2
2020-11-25 15:23:43 +01:00
expat
fftw
fftwFloat
2017-11-03 22:22:17 +01:00
gtkmm2 # Could be build with gtk3 but proper UI theme is missing and therefore not very usable with gtk3
# See: https://discuss.pixls.us/t/help-needed-for-gtk3-theme/5803
lcms2
2020-11-25 15:23:43 +01:00
lensfun
2017-11-03 22:22:17 +01:00
libexif
2020-11-25 15:23:43 +01:00
libiptcdata
libjpeg
libraw
libtiff
openexr
2017-11-03 22:22:17 +01:00
pcre
pugixml
2020-11-25 15:23:43 +01:00
vips
2017-11-03 22:22:17 +01:00
];
cmakeFlags = [
"-DBUNDLED_EXIV2=OFF"
"-DBUNDLED_LENSFUN=OFF"
"-DBUNDLED_GEXIV2=OFF"
];
meta = with stdenv.lib; {
description = "A fully non-destructive photo retouching program providing a complete RAW image editing workflow";
homepage = "https://aferrero2707.github.io/PhotoFlow/";
2017-11-03 22:22:17 +01:00
license = licenses.gpl3Plus;
maintainers = [ maintainers.MtP ];
2018-09-03 05:51:12 +02:00
platforms = platforms.linux;
2020-11-25 15:23:43 +01:00
# sse3 is not supported on aarch64
badPlatforms = [ "aarch64-linux" ];
2017-11-03 22:22:17 +01:00
};
}