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

34 lines
993 B
Nix
Raw Normal View History

2016-09-03 12:30:22 +00:00
{ stdenv, fetchurl, pkgconfig, writeText, libX11, ncurses, libXext, libXft
2017-05-21 03:24:40 +00:00
, fontconfig, 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 {
name = "st-0.7";
2012-08-05 10:44:01 +00:00
src = fetchurl {
2012-12-18 16:13:12 +00:00
url = "http://dl.suckless.org/st/${name}.tar.gz";
2016-09-03 12:30:22 +00:00
sha256 = "f7870d906ccc988926eef2cc98950a99cc78725b685e934c422c03c1234e6000";
2012-08-05 10:44:01 +00:00
};
2016-09-03 12:30:22 +00:00
patches = patches' ++ [ ./st-fix-deletekey.patch ];
configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libX11 ncurses libXext libXft fontconfig ] ++ extraLibs;
2012-08-05 10:44:01 +00:00
installPhase = ''
TERMINFO=$out/share/terminfo make install PREFIX=$out
'';
2016-09-03 12:30:22 +00:00
2012-08-05 10:44:01 +00:00
meta = {
homepage = http://st.suckless.org/;
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
};
}