2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchurl, xlibsWrapper, lua, gettext, groff }:
|
2007-07-17 19:29:53 +00:00
|
|
|
|
2021-11-07 13:50:48 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-11-08 08:47:20 +00:00
|
|
|
pname = "ion";
|
2021-11-07 13:50:48 +00:00
|
|
|
version = "3-20090110";
|
2021-11-08 08:47:20 +00:00
|
|
|
|
2007-07-17 19:29:53 +00:00
|
|
|
src = fetchurl {
|
2021-11-07 13:50:48 +00:00
|
|
|
url = "http://tuomov.iki.fi/software/dl/ion-${version}.tar.gz";
|
2012-12-18 20:02:36 +00:00
|
|
|
sha256 = "1nkks5a95986nyfkxvg2rik6zmwx0lh7szd5fji7yizccwzc9xns";
|
2007-07-17 19:29:53 +00:00
|
|
|
};
|
2021-11-08 08:47:20 +00:00
|
|
|
|
2015-09-15 09:13:22 +00:00
|
|
|
buildInputs = [ xlibsWrapper lua gettext groff ];
|
2021-11-08 08:47:20 +00:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
buildFlags = [ "LUA_DIR=${lua}" "X11_PREFIX=/no-such-path" "PREFIX=\${out}" ];
|
2021-11-08 08:47:20 +00:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
installFlags = [ "PREFIX=\${out}" ];
|
2021-11-08 08:47:20 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Tiling tabbed window manager designed with keyboard users in mind";
|
|
|
|
homepage = "http://modeemi.fi/~tuomov/ion";
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
2007-07-17 19:29:53 +00:00
|
|
|
}
|