summary refs log tree commit diff
path: root/pkgs/applications/window-managers/ion-3/default.nix
blob: 8f172ac8700363ec4488b64f3f6f8fc374ead3f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, stdenv, fetchurl, xlibsWrapper, lua, gettext, groff }:

stdenv.mkDerivation {
  name = "ion-3-20090110";
  meta = {
    description = "Tiling tabbed window manager designed with keyboard users in mind";
    homepage = "http://modeemi.fi/~tuomov/ion";
    platforms = with lib.platforms; linux;
    license = lib.licenses.lgpl21;
  };
  src = fetchurl {
    url = "http://tuomov.iki.fi/software/dl/ion-3-20090110.tar.gz";
    sha256 = "1nkks5a95986nyfkxvg2rik6zmwx0lh7szd5fji7yizccwzc9xns";
  };
  buildInputs = [ xlibsWrapper lua gettext groff ];
  buildFlags = [ "LUA_DIR=${lua}" "X11_PREFIX=/no-such-path" "PREFIX=\${out}" ];
  installFlags = [ "PREFIX=\${out}" ];
}