Files
lix/releng/garage-ephemeral-key/default.nix
T
KFearsoffandjade 3f811a415b releng: add local environment
This takes the first baby steps towards resolving #765. This first
test/workflow isn't the most useful thing ever, because it doesn't
test the code path for building the manual. Still, it does a decent job
at testing the basic git workflow, and the upload functionality.

Change-Id: I16dd3a39addd6308ad3eb37c2e3dc3466584a4e3
2025-05-09 00:01:22 +00:00

13 lines
218 B
Nix

{
lib,
writePython3Bin,
python3Packages,
}:
let
package = writePython3Bin "garage-ephemeral-key" { libraries = [ python3Packages.requests ]; } (
builtins.readFile ./garage-ephemeral-key.py
);
in
package