2016-09-03 13:30:22 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, writeText, libX11, ncurses, libXext, libXft
|
2017-05-21 04:24:40 +01:00
|
|
|
, fontconfig, conf ? null, patches ? [], extraLibs ? []}:
|
2013-05-10 15:31:13 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-08-05 11:44:01 +01:00
|
|
|
|
2017-07-11 17:23:42 +01:00
|
|
|
let patches' = if patches == null then [] else patches;
|
2016-09-03 13:30:22 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "st-0.7";
|
|
|
|
|
2012-08-05 11:44:01 +01:00
|
|
|
src = fetchurl {
|
2012-12-18 16:13:12 +00:00
|
|
|
url = "http://dl.suckless.org/st/${name}.tar.gz";
|
2016-09-03 13:30:22 +01:00
|
|
|
sha256 = "f7870d906ccc988926eef2cc98950a99cc78725b685e934c422c03c1234e6000";
|
2012-08-05 11:44:01 +01:00
|
|
|
};
|
2013-05-10 15:31:13 +01:00
|
|
|
|
2016-09-03 13:30:22 +01:00
|
|
|
patches = patches' ++ [ ./st-fix-deletekey.patch ];
|
2016-04-12 21:44:07 +01:00
|
|
|
|
2013-05-10 15:31:13 +01:00
|
|
|
configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
|
|
|
|
preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libX11 ncurses libXext libXft fontconfig ] ++ extraLibs;
|
2012-08-05 11:44:01 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
TERMINFO=$out/share/terminfo make install PREFIX=$out
|
|
|
|
'';
|
2016-09-03 13:30:22 +01:00
|
|
|
|
2012-08-05 11:44:01 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://st.suckless.org/;
|
2017-07-11 17:25:18 +01:00
|
|
|
license = licenses.mit;
|
2016-09-03 13:30:22 +01:00
|
|
|
maintainers = with maintainers; [viric andsild];
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2012-08-05 11:44:01 +01:00
|
|
|
};
|
|
|
|
}
|