tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
photoflow: init at unstable-2018-03-06
Marko Poikonen
7 years ago
f3045a5a
db6fb869
+62
3 changed files
expand all
collapse all
unified
split
maintainers
maintainer-list.nix
pkgs
applications
graphics
photoflow
default.nix
top-level
all-packages.nix
+5
maintainers/maintainer-list.nix
···
2421
2421
github = "mt-caret";
2422
2422
name = "Masayuki Takeda";
2423
2423
};
2424
2424
+
MtP = {
2425
2425
+
email = "marko.nixos@poikonen.de";
2426
2426
+
github = "MtP76";
2427
2427
+
name = "Marko Poikonen";
2428
2428
+
};
2424
2429
mtreskin = {
2425
2430
email = "zerthurd@gmail.com";
2426
2431
github = "Zert";
+55
pkgs/applications/graphics/photoflow/default.nix
···
1
1
+
{ stdenv, fetchFromGitHub, gettext, glib, libxml2, pkgconfig, swig, automake, gobjectIntrospection, cmake, ninja, libtiff, libjpeg, fftw, exiv2, lensfun, gtkmm2, libraw, lcms2, libexif, vips, expat, pcre, pugixml }:
2
2
+
3
3
+
stdenv.mkDerivation {
4
4
+
name = "photoflow-unstable-2018-03-06";
5
5
+
6
6
+
src = fetchFromGitHub {
7
7
+
owner = "aferrero2707";
8
8
+
repo = "PhotoFlow";
9
9
+
rev = "f9bbea183fa02412d1d17075955d2284eeaf8174";
10
10
+
sha256 = "1fsk7kdmlkd64wcswbxrl87aqwmzqak6p3s38ggxzx2h51fa7lmf";
11
11
+
};
12
12
+
13
13
+
nativeBuildInputs = [
14
14
+
gettext
15
15
+
glib
16
16
+
libxml2
17
17
+
pkgconfig
18
18
+
swig
19
19
+
automake
20
20
+
gobjectIntrospection
21
21
+
cmake
22
22
+
ninja
23
23
+
];
24
24
+
25
25
+
buildInputs = [
26
26
+
libtiff
27
27
+
libjpeg
28
28
+
fftw
29
29
+
exiv2
30
30
+
lensfun
31
31
+
gtkmm2 # Could be build with gtk3 but proper UI theme is missing and therefore not very usable with gtk3
32
32
+
# See: https://discuss.pixls.us/t/help-needed-for-gtk3-theme/5803
33
33
+
libraw
34
34
+
lcms2
35
35
+
libexif
36
36
+
vips
37
37
+
expat
38
38
+
pcre
39
39
+
pugixml
40
40
+
];
41
41
+
42
42
+
cmakeFlags = [
43
43
+
"-DBUNDLED_EXIV2=OFF"
44
44
+
"-DBUNDLED_LENSFUN=OFF"
45
45
+
"-DBUNDLED_GEXIV2=OFF"
46
46
+
];
47
47
+
48
48
+
meta = with stdenv.lib; {
49
49
+
description = "A fully non-destructive photo retouching program providing a complete RAW image editing workflow";
50
50
+
homepage = https://aferrero2707.github.io/PhotoFlow/;
51
51
+
license = licenses.gpl3Plus;
52
52
+
maintainers = [ maintainers.MtP ];
53
53
+
platforms = platforms.all;
54
54
+
};
55
55
+
}
+2
pkgs/top-level/all-packages.nix
···
16967
16967
16968
16968
photoqt = libsForQt5.callPackage ../applications/graphics/photoqt { };
16969
16969
16970
16970
+
photoflow = callPackage ../applications/graphics/photoflow { };
16971
16971
+
16970
16972
phototonic = libsForQt5.callPackage ../applications/graphics/phototonic { };
16971
16973
16972
16974
phrasendrescher = callPackage ../tools/security/phrasendrescher { };