47 lines
965 B
Nix
47 lines
965 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, imlib2
|
|
, libX11
|
|
, libXaw
|
|
, libXext
|
|
, libast
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "eterm";
|
|
version = "0.9.6-unstable=2020-03-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mej";
|
|
repo = pname;
|
|
rev = "e8fb85b56da21113aaf0f5f7987ae647c4413b6c";
|
|
sha256 = "sha256-pfXYrd6BamBTcnarvXj+C6D1WyGtj87GrW+Dl6AeiDE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
imlib2
|
|
libX11
|
|
libXaw
|
|
libXext
|
|
libast
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.eterm.org";
|
|
description = "Terminal emulator";
|
|
license = licenses.bsd2;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
platforms = platforms.linux;
|
|
knownVulnerabilities = [
|
|
"Usage of ANSI escape sequences causes unexpected newline-termination, leading to unexpected command execution (https://www.openwall.com/lists/oss-security/2021/05/17/1)"
|
|
];
|
|
};
|
|
}
|