blob: f74cbce5eb56103dfd24d2efc6e5b404a5d0721f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ stdenv, fetchgit, pkgconfig, writeText, libX11, ncurses, libXft, harfbuzzFull }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "st";
src = fetchgit {
url = "https://github.com/LukeSmithXYZ/st";
rev = "de6fd85eeb544548ed5ad23a639eedd6af510036";
sha256 = "1xyrbi857435dln7i6qb9ys2jizv43a2zq6fx4dr8z52ramxzyky";
};
nativeBuildInputs = [ pkgconfig ncurses ];
buildInputs = [ libX11 libXft harfbuzzFull ];
installPhase = ''
sed '/sed/d' Makefile > Makefile.new
mv Makefile.new Makefile
TERMINFO=$out/share/terminfo make install PREFIX=$out
'';
meta = {
homepage = "https://github.com/LukeSmithXYZ/st";
description = "Luke's fork of the suckless simple terminal (st) with vim bindings and Xresource compatibility.";
license = licenses.mit;
platforms = platforms.linux;
};
}
|