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