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

32 lines
809 B
Nix
Raw Normal View History

{ stdenv, fetchurl, writeText, libX11, ncurses, libXext, libXft, fontconfig
, conf? null}:
with stdenv.lib;
2012-08-05 12:44:01 +02:00
stdenv.mkDerivation rec {
name = "st-0.4.1";
2012-08-05 12:44:01 +02:00
src = fetchurl {
2012-12-18 17:13:12 +01:00
url = "http://dl.suckless.org/st/${name}.tar.gz";
sha256 = "0cdzwbm5fxrwz8ryxkh90d3vwx54wjyywgj28ymsb5fdv3396bzf";
2012-08-05 12:44:01 +02:00
};
configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";
2012-08-05 12:44:01 +02:00
buildInputs = [ libX11 ncurses libXext libXft fontconfig ];
NIX_LDFLAGS = "-lfontconfig";
2012-08-05 12:44:01 +02:00
installPhase = ''
TERMINFO=$out/share/terminfo make install PREFIX=$out
'';
meta = {
homepage = http://st.suckless.org/;
license = "MIT";
maintainers = with maintainers; [viric];
platforms = with platforms; linux;
2012-08-05 12:44:01 +02:00
};
}