errno: ship

This commit is contained in:
2024-05-19 00:21:30 +00:00
parent f481ef077c
commit 1b24bd50f9
3 changed files with 10 additions and 0 deletions

View File

@@ -163,6 +163,7 @@ in
]; ];
pcConsoleUtils = declPackageSet [ pcConsoleUtils = declPackageSet [
"errno" # 2024/05/18: doesn't cross compile (perl File-ShareDir / Module-Build-Tiny)
# "gh" # MS GitHub cli # "gh" # MS GitHub cli
"nix-index" "nix-index"
"nixpkgs-review" "nixpkgs-review"

View File

@@ -34,6 +34,7 @@
./element-desktop.nix ./element-desktop.nix
./engrampa.nix ./engrampa.nix
./epiphany.nix ./epiphany.nix
./errno.nix
./evince.nix ./evince.nix
./fcitx5.nix ./fcitx5.nix
./feedbackd.nix ./feedbackd.nix

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
sane.programs.errno = {
packageUnwrapped = pkgs.linkIntoOwnPackage pkgs.moreutils "bin/errno";
sandbox.method = "landlock";
};
}