blob: bc26507df8127bd7bb6711effb1dc3366be35095 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
stdenv,
fetchurl,
meson,
ninja,
pkg-config,
efl,
directoryListingUpdater,
}:
stdenv.mkDerivation rec {
pname = "ephoto";
version = "1.6.0";
src = fetchurl {
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
sha256 = "1lvhcs4ba8h3z78nyycbww8mj4cscb8k200dcc3cdy8vrvrp7g1n";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
efl
];
passthru.updateScript = directoryListingUpdater { };
meta = {
description = "Image viewer and editor written using the Enlightenment Foundation Libraries";
mainProgram = "ephoto";
homepage = "https://www.smhouston.us/ephoto/";
license = lib.licenses.bsd2;
platforms = lib.platforms.linux;
teams = [ lib.teams.enlightenment ];
};
}
|