nixpkgs/pkgs/applications/window-managers/ion-3/default.nix

26 lines
744 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl, xlibsWrapper, lua, gettext, groff }:
stdenv.mkDerivation rec {
2021-11-08 08:47:20 +00:00
pname = "ion";
version = "3-20090110";
2021-11-08 08:47:20 +00:00
src = fetchurl {
url = "http://tuomov.iki.fi/software/dl/ion-${version}.tar.gz";
2012-12-18 20:02:36 +00:00
sha256 = "1nkks5a95986nyfkxvg2rik6zmwx0lh7szd5fji7yizccwzc9xns";
};
2021-11-08 08:47:20 +00:00
buildInputs = [ xlibsWrapper lua gettext groff ];
2021-11-08 08:47:20 +00:00
buildFlags = [ "LUA_DIR=${lua}" "X11_PREFIX=/no-such-path" "PREFIX=\${out}" ];
2021-11-08 08:47:20 +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; [ ];
};
}