Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

54 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchurl,
lua,
gettext,
groff,
libICE,
libSM,
libX11,
libXext,
}:
stdenv.mkDerivation rec {
pname = "ion";
version = "3-20090110";
src = fetchurl {
url = "https://tuomov.iki.fi/software/ion/dl/ion-${version}.tar.gz";
sha256 = "1nkks5a95986nyfkxvg2rik6zmwx0lh7szd5fji7yizccwzc9xns";
};
buildInputs = [
libICE
libSM
libX11
libXext
lua
gettext
groff
];
buildFlags = [
"LUA_DIR=${lua}"
"X11_PREFIX=/no-such-path"
"PREFIX=\${out}"
];
# Build system is missing depends for autogenerated export headers:
# luac -o mod_tiling.lc mod_tiling.lua
# main.c:21:10: fatal error: exports.h: No such file or directory
enableParallelBuilding = false;
installFlags = [ "PREFIX=\${out}" ];
meta = with lib; {
description = "Tiling tabbed window manager designed with keyboard users in mind";
homepage = "https://tuomov.iki.fi/software/ion/";
platforms = with platforms; linux;
license = licenses.lgpl21;
maintainers = [ ];
};
}