nixpkgs/pkgs/applications/misc/st/xst.nix

33 lines
793 B
Nix
Raw Normal View History

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
version = "0.7.1";
name = "xst-${version}";
in stdenv.mkDerivation {
inherit name;
2017-07-12 20:29:15 +00:00
src = fetchFromGitHub {
owner = "neeasade";
repo = "xst";
rev = "v${version}";
sha256 = "1fh4y2w0icaij99kihl3w8j5d5b38d72afp17c81pi57f43ss6pc";
2017-07-11 16:53:43 +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 = {
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;
maintainers = maintainers.vyp;
platforms = platforms.linux;
};
}