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

67 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, pkg-config
, writeText
, libX11
, ncurses
, fontconfig
, freetype
, libXft
, conf ? null
, patches ? [ ]
, extraLibs ? [ ]
}:
2021-01-15 13:21:58 +00:00
with 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
};
2018-07-18 02:15:13 +00:00
inherit patches;
configFile = optionalString (conf != null) (writeText "config.def.h" conf);
2020-10-11 11:06:59 +00:00
postPatch = optionalString (conf != null) "cp ${configFile} config.def.h"
+ optionalString stdenv.isDarwin ''
2020-10-11 11:06:59 +00: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 10:44:01 +00:00
installPhase = ''
runHook preInstall
2012-08-05 10:44:01 +00:00
TERMINFO=$out/share/terminfo make install PREFIX=$out
runHook postInstall
2012-08-05 10:44:01 +00:00
'';
2016-09-03 12:30:22 +00:00
2012-08-05 10:44:01 +00:00
meta = {
homepage = "https://st.suckless.org/";
description = "Simple Terminal for X from Suckless.org Community";
license = licenses.mit;
2020-10-11 11:06:59 +00:00
maintainers = with maintainers; [ andsild ];
platforms = platforms.linux ++ platforms.darwin;
2012-08-05 10:44:01 +00:00
};
}