xst: init at 0.7.1

This commit is contained in:
xd1le 2017-07-12 02:53:43 +10:00
parent 4934a512d1
commit 88874e7650
3 changed files with 32 additions and 0 deletions

View file

@ -585,6 +585,7 @@
volth = "Jaroslavas Pocepko <jaroslavas@volth.com>";
vozz = "Oliver Hunt <oliver.huntuk@gmail.com>";
vrthra = "Rahul Gopinath <rahul@gopinath.org>";
vyp = "vyp <elisp.vim@gmail.com>";
wedens = "wedens <kirill.wedens@gmail.com>";
willtim = "Tim Philip Williams <tim.williams.public@gmail.com>";
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, pkgconfig, libX11, ncurses, libXext, libXft, fontconfig }:
with stdenv.lib;
let
version = "0.7.1";
name = "xst-${version}";
in stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "https://github.com/neeasade/xst/archive/v${version}.tar.gz";
sha256 = "19ayx1753f2s6k7f6yn256bsssm20ggffs1diakgjqwcyjcxxn7q";
};
buildInputs = [ pkgconfig libX11 ncurses libXext libXft fontconfig ];
installPhase = ''
TERMINFO=$out/share/terminfo make install PREFIX=$out
'';
meta = {
homepage = "https://github.com/neeasade/xst";
description = "Simple terminal fork that can load config from Xresources";
license = licenses.mit;
maintainers = maintainers.vyp;
platforms = platforms.linux;
};
}

View file

@ -15887,6 +15887,8 @@ with pkgs;
patches = config.st.patches or null;
};
xst = callPackage ../applications/misc/st/xst.nix { };
stag = callPackage ../applications/misc/stag {
curses = ncurses;
};