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

57 lines
1.4 KiB
Nix
Raw Normal View History

2017-11-03 21:22:17 +00:00
{ stdenv, fetchFromGitHub, gettext, glib, libxml2, pkgconfig, swig, automake, gobjectIntrospection, cmake, ninja, libtiff, libjpeg, fftw, exiv2, lensfun, gtkmm2, libraw, lcms2, libexif, vips, expat, pcre, pugixml }:
stdenv.mkDerivation {
2018-09-03 03:51:12 +00:00
name = "photoflow-unstable-2018-08-28";
2017-11-03 21:22:17 +00:00
src = fetchFromGitHub {
owner = "aferrero2707";
repo = "PhotoFlow";
2018-09-03 03:51:12 +00:00
rev = "df03f2538ddd232e693c307db4ab63eb5bdfea38";
sha256 = "08ybhv08h24y4li8wb4m89xgrz1szlwpksf6vjharp8cznn4y4x9";
2017-11-03 21:22:17 +00:00
};
nativeBuildInputs = [
gettext
glib
libxml2
pkgconfig
swig
automake
gobjectIntrospection
cmake
ninja
];
buildInputs = [
libtiff
libjpeg
fftw
exiv2
lensfun
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
libraw
lcms2
libexif
vips
expat
pcre
pugixml
];
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/;
license = licenses.gpl3Plus;
maintainers = [ maintainers.MtP ];
2018-09-03 03:51:12 +00:00
platforms = platforms.linux;
2018-09-03 19:31:12 +00:00
broken = stdenv.isAarch64;
2017-11-03 21:22:17 +00:00
};
}