2017-07-12 20:29:15 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, libX11, ncurses, libXext, libXft, fontconfig }:
|
2017-07-11 16:53:43 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
2019-08-21 05:09:05 +00:00
|
|
|
version = "0.7.2";
|
2017-07-11 16:53:43 +00:00
|
|
|
name = "xst-${version}";
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
2017-07-12 20:29:15 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-07-22 10:21:57 +00:00
|
|
|
owner = "gnotclub";
|
2017-07-12 20:29:15 +00:00
|
|
|
repo = "xst";
|
|
|
|
rev = "v${version}";
|
2019-08-21 05:09:05 +00:00
|
|
|
sha256 = "1fplgy30gyrwkjsw3z947327r98i13zd1whwkplpj9fzckhb9vs9";
|
2017-07-11 16:53:43 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libX11 ncurses libXext libXft fontconfig ];
|
2017-07-11 16:53:43 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
TERMINFO=$out/share/terminfo make install PREFIX=$out
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/neeasade/xst";
|
2017-07-11 16:53:43 +00:00
|
|
|
description = "Simple terminal fork that can load config from Xresources";
|
|
|
|
license = licenses.mit;
|
2017-12-05 22:20:11 +00:00
|
|
|
maintainers = [ maintainers.vyp ];
|
2017-07-11 16:53:43 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|