aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.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 /flake.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 'flake.nix')
-rw-r--r--flake.nix23
1 files changed, 1 insertions, 22 deletions
diff --git a/flake.nix b/flake.nix
index 2340b92b..0d87262d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -29,20 +29,6 @@
{
nixosModules.hakurei = import ./nixos.nix self.packages;
- buildPackage = forAllSystems (
- system:
- nixpkgsFor.${system}.callPackage (
- import ./cmd/hpkg/build.nix {
- inherit
- nixpkgsFor
- system
- nixpkgs
- home-manager
- ;
- }
- )
- );
-
checks = forAllSystems (
system:
let
@@ -71,8 +57,6 @@
sharefs = callPackage ./cmd/sharefs/test { inherit system self; };
- hpkg = callPackage ./cmd/hpkg/test { inherit system self; };
-
formatting = runCommandLocal "check-formatting" { nativeBuildInputs = [ nixfmt-rfc-style ]; } ''
cd ${./.}
@@ -127,11 +111,6 @@
glibc
xdg-dbus-proxy
- # hpkg
- zstd
- gnutar
- coreutils
-
# for check
util-linux
nettools
@@ -219,7 +198,7 @@
./test/interactive/trace.nix
self.nixosModules.hakurei
- self.inputs.home-manager.nixosModules.home-manager
+ home-manager.nixosModules.home-manager
];
};
in