summary refs log tree commit diff
path: root/pkgs/applications/misc/st/wayland.nix
blob: 4d9f0ef3f8d5b834ae853f6036fd346b222cedc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, fetchurl, pkgconfig, writeText
, ncurses, wayland, wld, libxkbcommon, fontconfig, pixman
, conf ? null, patches ? [] }:

with stdenv.lib;

stdenv.mkDerivation rec {
  name = "st-wayland-${version}";
  version = "git-2015-08-29";
  rev = "61b47b76a09599c8093214e28c48938f5b424daa";

  src = fetchurl {
    url = "https://github.com/michaelforney/st/archive/${rev}.tar.gz";
    sha256 = "7164da135f02405dba5ae3131dfd896e072df29ac6c0928f3b887beffb8a7d97";
  };

  inherit patches;

  configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
  preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h";

  buildInputs = [ pkgconfig ncurses wayland wld libxkbcommon fontconfig pixman ];

  NIX_LDFLAGS = "-lfontconfig";

  installPhase = ''
    TERMINFO=$out/share/terminfo make install PREFIX=$out
  '';

  meta = {
    homepage = http://st.suckless.org/;
    license = stdenv.lib.licenses.mit;
    maintainers = with maintainers; [ ];
    platforms = with platforms; linux;
  };
}