1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/misc/st/default.nix

33 lines
977 B
Nix
Raw Normal View History

2016-09-03 13:30:22 +01:00
{ stdenv, fetchurl, pkgconfig, writeText, libX11, ncurses, libXext, libXft
2017-05-21 04:24:40 +01:00
, fontconfig, conf ? null, patches ? [], extraLibs ? []}:
with stdenv.lib;
2012-08-05 11:44:01 +01:00
let patches' = if patches == null then [] else patches;
2016-09-03 13:30:22 +01:00
in stdenv.mkDerivation rec {
name = "st-0.7";
2012-08-05 11:44:01 +01:00
src = fetchurl {
2012-12-18 16:13:12 +00:00
url = "http://dl.suckless.org/st/${name}.tar.gz";
2016-09-03 13:30:22 +01:00
sha256 = "f7870d906ccc988926eef2cc98950a99cc78725b685e934c422c03c1234e6000";
2012-08-05 11:44:01 +01:00
};
2016-09-03 13:30:22 +01: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";
2017-05-21 04:24:40 +01:00
buildInputs = [ pkgconfig libX11 ncurses libXext libXft fontconfig ] ++ 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 = http://st.suckless.org/;
license = stdenv.lib.licenses.mit;
2016-09-03 13:30:22 +01:00
maintainers = with maintainers; [viric andsild];
platforms = platforms.linux;
2012-08-05 11:44:01 +01:00
};
}