nixpkgs/pkgs/applications/misc/st/default.nix

36 lines
1.1 KiB
Nix
Raw Normal View History

2018-03-20 21:08:16 +00:00
{ stdenv, fetchurl, pkgconfig, writeText, makeWrapper, libX11, ncurses, libXext
, libXft, fontconfig, dmenu, conf ? null, patches ? [], extraLibs ? []}:
with stdenv.lib;
2012-08-05 10:44:01 +00:00
let patches' = if patches == null then [] else patches;
2016-09-03 12:30:22 +00:00
in stdenv.mkDerivation rec {
2018-03-20 20:50:32 +00:00
name = "st-0.8.1";
2016-09-03 12:30:22 +00:00
2012-08-05 10:44:01 +00:00
src = fetchurl {
url = "https://dl.suckless.org/st/${name}.tar.gz";
2018-03-20 20:50:32 +00:00
sha256 = "09k94v3n20gg32xy7y68p96x9dq5msl80gknf9gbvlyjp3i0zyy4";
2012-08-05 10:44:01 +00:00
};
2018-03-15 13:06:40 +00:00
patches = patches';
configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
2018-03-20 21:08:16 +00:00
nativeBuildInputs = [ pkgconfig makeWrapper ];
buildInputs = [ libX11 ncurses libXext libXft fontconfig ] ++ extraLibs;
2012-08-05 10:44:01 +00:00
installPhase = ''
TERMINFO=$out/share/terminfo make install PREFIX=$out
2018-03-20 21:08:16 +00:00
wrapProgram "$out/bin/st" --prefix PATH : "${dmenu}/bin"
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;
2016-09-03 12:30:22 +00:00
maintainers = with maintainers; [viric andsild];
platforms = platforms.linux;
2012-08-05 10:44:01 +00:00
};
}