nixpkgs/pkgs/applications/misc/evilvte/default.nix

39 lines
1,005 B
Nix
Raw Normal View History

2014-08-27 14:38:15 +00:00
{ stdenv, fetchgit, makeWrapper, pkgconfig,
2019-05-22 11:03:39 +00:00
gnome2, glib, pango, cairo, gdk-pixbuf, atk, freetype, xorg,
2019-02-03 15:30:20 +00:00
configH ? ""
2014-08-27 14:38:15 +00:00
}:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "evilvte";
2014-08-27 14:38:15 +00:00
version = "0.5.2-20140827";
src = fetchgit {
url = https://github.com/caleb-/evilvte.git;
rev = "8dfa41e26bc640dd8d8c7317ff7d04e3c01ded8a";
sha256 = "70f1d4234d077121e2223a735d749d1b53f0b84393507b635b8a37c3716e94d3";
};
buildInputs = [
2019-05-22 11:03:39 +00:00
gnome2.vte glib pango gnome2.gtk cairo gdk-pixbuf atk freetype xorg.libX11
xorg.xorgproto xorg.libXext makeWrapper pkgconfig
2014-08-27 14:38:15 +00:00
];
buildPhase = ''
cat >src/config.h <<EOF
${configH}
EOF
make
'';
meta = with stdenv.lib; {
description = "VTE based, highly customizable terminal emulator";
homepage = http://www.calno.com/evilvte;
license = licenses.gpl2;
maintainers = [ maintainers.bodil ];
platforms = platforms.linux;
2018-08-15 22:44:34 +00:00
knownVulnerabilities = [
"https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=854585"
];
2014-08-27 14:38:15 +00:00
};
}