errno: ship

This commit is contained in:
Colin 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 [
"errno" # 2024/05/18: doesn't cross compile (perl File-ShareDir / Module-Build-Tiny)
# "gh" # MS GitHub cli
"nix-index"
"nixpkgs-review"

View File

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

View File

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