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

35 lines
947 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, writeText, libX11, ncurses
, libXft, conf ? null, patches ? [], extraLibs ? []}:
with stdenv.lib;
2012-08-05 03:44:01 -07:00
2018-07-17 19:15:13 -07:00
stdenv.mkDerivation rec {
2020-06-25 10:56:41 -07:00
pname = "st";
version = "0.8.4";
2016-09-03 05:30:22 -07:00
2012-08-05 03:44:01 -07:00
src = fetchurl {
2020-06-25 10:56:41 -07:00
url = "https://dl.suckless.org/st/${pname}-${version}.tar.gz";
sha256 = "19j66fhckihbg30ypngvqc9bcva47mp379ch5vinasjdxgn3qbfl";
2012-08-05 03:44:01 -07:00
};
2018-07-17 19:15:13 -07:00
inherit patches;
configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
postPatch = optionalString (conf!=null) "cp ${configFile} config.def.h";
nativeBuildInputs = [ pkgconfig ncurses ];
buildInputs = [ libX11 libXft ] ++ extraLibs;
2012-08-05 03:44:01 -07:00
installPhase = ''
TERMINFO=$out/share/terminfo make install PREFIX=$out
'';
2016-09-03 05:30:22 -07:00
2012-08-05 03:44:01 -07:00
meta = {
homepage = "https://st.suckless.org/";
description = "Simple Terminal for X from Suckless.org Community";
license = licenses.mit;
maintainers = with maintainers; [andsild];
platforms = platforms.linux;
2012-08-05 03:44:01 -07:00
};
}