2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, efl, pcre, mesa, makeWrapper }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ephoto";
|
|
|
|
version = "1.5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.smhouston.us/stuff/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "09kraa5zz45728h2dw1ssh23b87j01bkfzf977m48y1r507sy3vb";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-02-05 17:12:51 +00:00
|
|
|
pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
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/";
|
2021-01-17 00:15:33 +00:00
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.romildo ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|