about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/enlightenment/ephoto/default.nix
blob: c7681bfe0e47ab053148800b7d91fc7463306c43 (plain) (blame)
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
{ lib
, stdenv
, fetchurl
, meson
, ninja
, pkg-config
, efl
, directoryListingUpdater
}:

stdenv.mkDerivation rec {
  pname = "ephoto";
  version = "1.6.0";

  src = fetchurl {
    url = "http://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
    sha256 = "1lvhcs4ba8h3z78nyycbww8mj4cscb8k200dcc3cdy8vrvrp7g1n";
  };

  nativeBuildInputs = [
    meson
    ninja
    pkg-config
  ];

  buildInputs = [
    efl
  ];

  passthru.updateScript = directoryListingUpdater { };

  meta = with lib; {
    description = "Image viewer and editor written using the Enlightenment Foundation Libraries";
    homepage = "https://www.smhouston.us/ephoto/";
    license = licenses.bsd2;
    platforms = platforms.linux;
    maintainers = teams.enlightenment.members;
  };
}