mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, fontconfig
|
|
, freetype
|
|
, libX11
|
|
, libXft
|
|
, ncurses
|
|
, writeText
|
|
, conf ? null
|
|
, patches ? [ ]
|
|
, extraLibs ? [ ]
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "st";
|
|
version = "0.8.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://dl.suckless.org/st/${pname}-${version}.tar.gz";
|
|
hash = "sha256-6mgyID7QL/dBgry4raqexFTI+YnnkjLLhZZl4vVEqzc=";
|
|
};
|
|
|
|
inherit patches;
|
|
|
|
configFile = lib.optionalString (conf != null)
|
|
(writeText "config.def.h" conf);
|
|
|
|
postPatch = lib.optionalString (conf != null) "cp ${configFile} config.def.h"
|
|
+ lib.optionalString stdenv.isDarwin ''
|
|
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;
|
|
|
|
preInstall = ''
|
|
export TERMINFO=$out/share/terminfo
|
|
'';
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://st.suckless.org/";
|
|
description = "Simple Terminal for X from Suckless.org Community";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ andsild ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|