aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/hpkg/test/foot.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-03-02 13:42:49 +0900
committerOphestra <cat@gensokyo.uk>2026-03-02 13:42:49 +0900
commitc5089cad7883d0157ca5339ed6e43fb18ad2c838 (patch)
tree6170e08ba1541d62b7ceee22f3c0a48ec4b0a7de /cmd/hpkg/test/foot.nix
parentc83905f31194541892e99d5a57b7b974b6a601d2 (diff)
cmd: remove hpkg
This proof-of-concept was abandoned long ago. Its test suite is flaky, heavy on I/O and does not increase test coverage. This change fully removes hpkg and supporting code. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd/hpkg/test/foot.nix')
-rw-r--r--cmd/hpkg/test/foot.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/cmd/hpkg/test/foot.nix b/cmd/hpkg/test/foot.nix
deleted file mode 100644
index 76b677ac..00000000
--- a/cmd/hpkg/test/foot.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- lib,
- buildPackage,
- foot,
- wayland-utils,
- inconsolata,
-}:
-
-buildPackage {
- name = "foot";
- inherit (foot) version;
-
- identity = 2;
- id = "org.codeberg.dnkl.foot";
-
- modules = [
- {
- home.packages = [
- foot
-
- # For wayland-info:
- wayland-utils
- ];
- }
- ];
-
- nixosModules = [
- {
- # To help with OCR:
- environment.etc."xdg/foot/foot.ini".text = lib.generators.toINI { } {
- main = {
- font = "inconsolata:size=14";
- };
- colors = rec {
- foreground = "000000";
- background = "ffffff";
- regular2 = foreground;
- };
- };
-
- fonts.packages = [ inconsolata ];
- }
- ];
-
- script = ''
- exec foot "$@"
- '';
-}