2018-10-03 08:42:59 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, writeText, libX11, ncurses
|
|
|
|
, libXft, conf ? null, patches ? [], extraLibs ? []}:
|
2013-05-10 14:31:13 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-08-05 10:44:01 +00:00
|
|
|
|
2018-07-18 02:15:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-06-25 17:56:41 +00:00
|
|
|
pname = "st";
|
|
|
|
version = "0.8.4";
|
2016-09-03 12:30:22 +00:00
|
|
|
|
2012-08-05 10:44:01 +00:00
|
|
|
src = fetchurl {
|
2020-06-25 17:56:41 +00:00
|
|
|
url = "https://dl.suckless.org/st/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "19j66fhckihbg30ypngvqc9bcva47mp379ch5vinasjdxgn3qbfl";
|
2012-08-05 10:44:01 +00:00
|
|
|
};
|
2013-05-10 14:31:13 +00:00
|
|
|
|
2018-07-18 02:15:13 +00:00
|
|
|
inherit patches;
|
2016-04-12 20:44:07 +00:00
|
|
|
|
2020-04-22 13:37:42 +00:00
|
|
|
configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
|
|
|
|
postPatch = optionalString (conf!=null) "cp ${configFile} config.def.h";
|
2013-05-10 14:31:13 +00:00
|
|
|
|
2018-10-03 08:42:59 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ncurses ];
|
|
|
|
buildInputs = [ libX11 libXft ] ++ extraLibs;
|
2012-08-05 10:44:01 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
TERMINFO=$out/share/terminfo make install PREFIX=$out
|
|
|
|
'';
|
2016-09-03 12:30:22 +00:00
|
|
|
|
2012-08-05 10:44:01 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://st.suckless.org/";
|
2017-11-11 04:00:29 +00:00
|
|
|
description = "Simple Terminal for X from Suckless.org Community";
|
2017-07-11 16:25:18 +00:00
|
|
|
license = licenses.mit;
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with maintainers; [andsild];
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2012-08-05 10:44:01 +00:00
|
|
|
};
|
|
|
|
}
|