3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/enlightenment/ephoto/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
704 B
Nix
Raw Normal View History

2021-12-27 21:46:01 +00:00
{ lib
, stdenv
, fetchurl
, meson
, ninja
, pkg-config
, efl
}:
2017-04-21 21:22:36 +01:00
stdenv.mkDerivation rec {
pname = "ephoto";
2021-12-27 21:46:01 +00:00
version = "1.6.0";
2017-04-21 21:22:36 +01:00
src = fetchurl {
2021-12-27 21:46:01 +00:00
url = "http://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
sha256 = "1lvhcs4ba8h3z78nyycbww8mj4cscb8k200dcc3cdy8vrvrp7g1n";
2017-04-21 21:22:36 +01:00
};
nativeBuildInputs = [
2021-12-27 21:46:01 +00:00
meson
ninja
2021-01-17 02:21:50 +00:00
pkg-config
];
2017-04-21 21:22:36 +01:00
buildInputs = [
efl
];
2021-12-27 21:46:01 +00:00
meta = with lib; {
2017-04-21 21:22:36 +01:00
description = "Image viewer and editor written using the Enlightenment Foundation Libraries";
2021-12-27 21:46:01 +00:00
homepage = "https://www.smhouston.us/ephoto/";
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
2017-04-21 21:22:36 +01:00
};
}