41 lines
770 B
Nix
41 lines
770 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
efl,
|
|
directoryListingUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ecrire";
|
|
version = "0.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "1pszk583rzclfqy3dyjh1m9pz1hnr84vqz8vw9kngcnmj23mjr6r";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
efl
|
|
];
|
|
|
|
passthru.updateScript = directoryListingUpdater { };
|
|
|
|
meta = with lib; {
|
|
description = "EFL simple text editor";
|
|
mainProgram = "ecrire";
|
|
homepage = "https://www.enlightenment.org/";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.enlightenment.members;
|
|
};
|
|
}
|