nixpkgs/pkgs/applications/terminal-emulators/st/xst.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
848 B
Nix
Raw Normal View History

2021-09-05 00:07:29 +02:00
{ lib
, stdenv
, fetchFromGitHub
, fontconfig
, libX11
, libXext
, libXft
, ncurses
, pkg-config
}:
2017-07-11 18:53:43 +02:00
2021-02-06 10:48:12 +01:00
stdenv.mkDerivation rec {
pname = "xst";
version = "0.8.4.1";
2017-07-11 18:53:43 +02:00
2017-07-12 22:29:15 +02:00
src = fetchFromGitHub {
owner = "gnotclub";
2021-02-06 10:48:12 +01:00
repo = pname;
2017-07-12 22:29:15 +02:00
rev = "v${version}";
2021-02-06 10:48:12 +01:00
sha256 = "nOJcOghtzFkl7B/4XeXptn2TdrGQ4QTKBo+t+9npxOA=";
2017-07-11 18:53:43 +02:00
};
2021-09-05 00:07:29 +02:00
nativeBuildInputs = [
pkg-config
];
buildInputs = [
fontconfig
libX11
libXext
libXft
ncurses
];
2017-07-11 18:53:43 +02:00
installPhase = ''
2021-09-05 00:07:29 +02:00
runHook preInstall
2017-07-11 18:53:43 +02:00
TERMINFO=$out/share/terminfo make install PREFIX=$out
2021-09-05 00:07:29 +02:00
runHook postInstall
2017-07-11 18:53:43 +02:00
'';
2021-02-06 10:48:12 +01:00
meta = with lib; {
homepage = "https://github.com/gnotclub/xst";
2017-07-11 18:53:43 +02:00
description = "Simple terminal fork that can load config from Xresources";
license = licenses.mit;
maintainers = [ maintainers.vyp ];
2017-07-11 18:53:43 +02:00
platforms = platforms.linux;
};
}