a4c940d569
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/terminology/versions
33 lines
803 B
Nix
33 lines
803 B
Nix
{ stdenv, fetchurl, meson, ninja, pkgconfig, efl, pcre, mesa, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "terminology";
|
|
version = "1.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "0v4amfg8ji0mb6j7kcxh3wz1xw5zyxg4rw6ylx17rfw2nc1yamfy";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
(pkgconfig.override { vanilla = true; })
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
efl
|
|
pcre
|
|
mesa
|
|
];
|
|
|
|
meta = {
|
|
description = "Powerful terminal emulator based on EFL";
|
|
homepage = https://www.enlightenment.org/about-terminology;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.bsd2;
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
|
|
};
|
|
}
|