nixpkgs/pkgs/applications/terminal-emulators/st/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, pkg-config
, fontconfig
, freetype
2021-09-04 22:43:33 +01:00
, libX11
, libXft
2021-09-04 22:43:33 +01:00
, ncurses
, writeText
, conf ? null
, patches ? [ ]
, extraLibs ? [ ]
}:
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
};
2018-07-18 03:15:13 +01:00
inherit patches;
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" ""
'';
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; {
homepage = "https://st.suckless.org/";
description = "Simple Terminal for X from Suckless.org Community";
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
};
}