2021-05-22 16:00:24 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
2021-09-04 22:43:33 +01:00
|
|
|
, libX11
|
2021-05-22 16:00:24 +01:00
|
|
|
, libXft
|
2021-09-04 22:43:33 +01:00
|
|
|
, ncurses
|
|
|
|
, writeText
|
2021-05-22 16:00:24 +01:00
|
|
|
, conf ? null
|
|
|
|
, patches ? [ ]
|
|
|
|
, extraLibs ? [ ]
|
|
|
|
}:
|
2013-05-10 15:31:13 +01:00
|
|
|
|
2018-07-18 03:15:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-06-25 18:56:41 +01:00
|
|
|
pname = "st";
|
2022-01-13 09:47:47 +00:00
|
|
|
version = "0.8.5";
|
2016-09-03 13:30:22 +01:00
|
|
|
|
2012-08-05 11:44:01 +01:00
|
|
|
src = fetchurl {
|
2020-06-25 18:56:41 +01:00
|
|
|
url = "https://dl.suckless.org/st/${pname}-${version}.tar.gz";
|
2022-01-13 09:47:47 +00:00
|
|
|
hash = "sha256-6mgyID7QL/dBgry4raqexFTI+YnnkjLLhZZl4vVEqzc=";
|
2012-08-05 11:44:01 +01:00
|
|
|
};
|
2013-05-10 15:31:13 +01:00
|
|
|
|
2018-07-18 03:15:13 +01:00
|
|
|
inherit patches;
|
2016-04-12 21:44:07 +01:00
|
|
|
|
2021-09-04 22:43:33 +01:00
|
|
|
configFile = lib.optionalString (conf != null)
|
|
|
|
(writeText "config.def.h" conf);
|
2020-10-11 12:06:59 +01:00
|
|
|
|
2021-09-04 22:43:33 +01:00
|
|
|
postPatch = lib.optionalString (conf != null) "cp ${configFile} config.def.h"
|
|
|
|
+ lib.optionalString stdenv.isDarwin ''
|
2020-10-11 12:06:59 +01:00
|
|
|
substituteInPlace config.mk --replace "-lrt" ""
|
|
|
|
'';
|
2013-05-10 15:31:13 +01:00
|
|
|
|
2021-05-22 16:00:24 +01:00
|
|
|
strictDeps = true;
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"PKG_CONFIG=${stdenv.cc.targetPrefix}pkg-config"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
ncurses
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
libX11
|
|
|
|
libXft
|
|
|
|
] ++ extraLibs;
|
2012-08-05 11:44:01 +01:00
|
|
|
|
2022-01-13 09:47:47 +00:00
|
|
|
preInstall = ''
|
|
|
|
export TERMINFO=$out/share/terminfo
|
2012-08-05 11:44:01 +01:00
|
|
|
'';
|
2016-09-03 13:30:22 +01:00
|
|
|
|
2022-01-13 09:47:47 +00:00
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-09-04 22:43:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01: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 17:25:18 +01:00
|
|
|
license = licenses.mit;
|
2020-10-11 12:06:59 +01:00
|
|
|
maintainers = with maintainers; [ andsild ];
|
2022-01-13 09:47:47 +00:00
|
|
|
platforms = platforms.unix;
|
2012-08-05 11:44:01 +01:00
|
|
|
};
|
|
|
|
}
|