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

34 lines
919 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, writeText, libX11, ncurses
, libXft, conf ? null, patches ? [], extraLibs ? []}:
with stdenv.lib;
2012-08-05 11:44:01 +01:00
2018-07-18 03:15:13 +01:00
stdenv.mkDerivation rec {
2020-04-29 17:20:10 +01:00
name = "st-0.8.3";
2016-09-03 13:30:22 +01:00
2012-08-05 11:44:01 +01:00
src = fetchurl {
url = "https://dl.suckless.org/st/${name}.tar.gz";
2020-04-29 17:20:10 +01:00
sha256 = "0ll5wbw1szs70wdf8zy1y2ig5mfbqw2w4ls8d64r8z3y4gdf76lk";
2012-08-05 11:44:01 +01:00
};
2018-07-18 03:15:13 +01: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 11:44:01 +01:00
installPhase = ''
TERMINFO=$out/share/terminfo make install PREFIX=$out
'';
2016-09-03 13:30:22 +01:00
2012-08-05 11:44:01 +01: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 11:44:01 +01:00
};
}