mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 14:20:44 -06:00
styx -> styx.sh
This commit is contained in:
parent
ab7ee89eda
commit
96cc3224f0
2 changed files with 5 additions and 1 deletions
|
@ -15,7 +15,11 @@ in rec {
|
||||||
forAllSystems (
|
forAllSystems (
|
||||||
pkgs: let
|
pkgs: let
|
||||||
name = baseNameOf ../styx;
|
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;
|
isNixFile = path: hasSuffix ".nix" path;
|
||||||
|
|
Loading…
Reference in a new issue