feat(legacy): helpers: update log, unefficient but works
This commit is contained in:
18
package/male-amusements/default.nix
Normal file
18
package/male-amusements/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ symlinkJoin, dash, hectic }: let
|
||||
shell = "${dash}/bin/dash";
|
||||
bashOptions = [
|
||||
"errexit"
|
||||
"nounset"
|
||||
];
|
||||
|
||||
show-megumin = hectic.writeShellApplication {
|
||||
inherit shell bashOptions;
|
||||
name = "show-megumin";
|
||||
runtimeInputs = [ ];
|
||||
text = builtins.readFile ./show-megumin.sh;
|
||||
};
|
||||
in
|
||||
symlinkJoin {
|
||||
name = "sentinèlla";
|
||||
paths = [ show-megumin ];
|
||||
}
|
||||
Reference in New Issue
Block a user