about summary refs log tree commit diff
path: root/pkgs/desktops/enlightenment/ephoto/default.nix
blob: 2da7df3728da6c29299b8d27b3fca1c4d8f328f3 (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
{ lib, stdenv, fetchurl, pkg-config, efl, pcre, mesa, makeWrapper }:

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

  src = fetchurl {
    url = "http://www.smhouston.us/stuff/${pname}-${version}.tar.gz";
    sha256 = "09kraa5zz45728h2dw1ssh23b87j01bkfzf977m48y1r507sy3vb";
  };

  nativeBuildInputs = [
    pkg-config
    mesa.dev # otherwise pkg-config does not find gbm
    makeWrapper
  ];

  buildInputs = [
    efl
    pcre
  ];

  meta = {
    description = "Image viewer and editor written using the Enlightenment Foundation Libraries";
    homepage = "https://smhouston.us/projects/ephoto/";
    license = lib.licenses.bsd2;
    platforms = lib.platforms.linux;
    maintainers = [ lib.maintainers.romildo ];
  };
}