styx -> styx.sh

This commit is contained in:
Daylin Morgan 2024-01-26 13:09:15 -06:00
parent ab7ee89eda
commit 96cc3224f0
Signed by: daylin
GPG Key ID: C1E52E7DD81DF79F
2 changed files with 5 additions and 1 deletions

View File

@ -15,7 +15,11 @@ in rec {
forAllSystems (
pkgs: let
name = baseNameOf ../styx;
in {${name} = pkgs.writeScriptBin name (readFile ../styx);}
pkg = pkgs.writeScriptBin name (readFile ../styx/styx.sh);
in {
${name} = pkg;
default = pkg;
}
);
isNixFile = path: hasSuffix ".nix" path;

View File