37 lines
704 B
Nix
37 lines
704 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, efl
|
|
}:
|
|
|
|
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
|
|
];
|
|
|
|
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 = with maintainers; [ romildo ];
|
|
};
|
|
}
|