mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 14:20:44 -06:00
Compare commits
1 commit
0446dacc1a
...
0ed65daa44
Author | SHA1 | Date | |
---|---|---|---|
0ed65daa44 |
4 changed files with 22 additions and 21 deletions
|
@ -8,7 +8,7 @@ buildNimblePackage {
|
|||
verions = "unstable";
|
||||
src = lib.cleanSource ./.;
|
||||
nativeBuildInputs = [ openssl ];
|
||||
nimbleDepsHash = "sha256-/H/HvnJqpDJcyVJ2rbn7PDSSoJB/TMr9yiIKxtB1O+E=";
|
||||
nimbleDepsHash = "sha256-handlffewYPNvW4Vna6cqjyz/2kaLVWTnuibE/0NPC0=";
|
||||
|
||||
meta = {
|
||||
description = "nix begat oizys";
|
||||
|
|
|
@ -3,12 +3,12 @@
|
|||
"packages": {
|
||||
"hwylterm": {
|
||||
"version": "0.1.0",
|
||||
"vcsRevision": "e8e090c5b76bc555231bda536193df6f92a54db2",
|
||||
"vcsRevision": "31012dffbf2795b0ea779407ddd166bd9d9f9cfd",
|
||||
"url": "https://github.com/daylinmorgan/hwylterm",
|
||||
"downloadMethod": "git",
|
||||
"dependencies": [],
|
||||
"checksums": {
|
||||
"sha1": "925aad3ce660979de7cdb2f58a31dc7ac693e34d"
|
||||
"sha1": "177636b40ab24dc5a0dd1e702ea750b48bbb24dc"
|
||||
}
|
||||
},
|
||||
"jsony": {
|
||||
|
|
|
@ -13,5 +13,5 @@ bin = @["oizys"]
|
|||
requires "nim >= 2.0.8"
|
||||
requires "jsony"
|
||||
requires "zippy"
|
||||
requires "https://github.com/daylinmorgan/hwylterm#e8e090c"
|
||||
requires "https://github.com/daylinmorgan/hwylterm#31012df"
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@ proc checkExes() =
|
|||
fatalQuit "oizys requires nix"
|
||||
|
||||
checkexes()
|
||||
|
||||
hwylCli:
|
||||
name "oizys"
|
||||
flags:
|
||||
|
@ -25,16 +24,6 @@ hwylCli:
|
|||
T bool
|
||||
? "set cache timeout to 0"
|
||||
- r
|
||||
[yes]
|
||||
yes:
|
||||
T bool
|
||||
? "skip all confirmation prompts"
|
||||
[minimal]
|
||||
minimal:
|
||||
T bool
|
||||
? "set minimal"
|
||||
- m
|
||||
|
||||
preSub:
|
||||
setupLoggers(debug)
|
||||
updateContext(host, flake, debug, resetCache)
|
||||
|
@ -43,7 +32,10 @@ hwylCli:
|
|||
--- build
|
||||
... "nix build"
|
||||
flags:
|
||||
^[minimal]
|
||||
minimal:
|
||||
T bool
|
||||
? "set minimal"
|
||||
- m
|
||||
run:
|
||||
nixBuild(minimal, args)
|
||||
|
||||
|
@ -51,15 +43,15 @@ hwylCli:
|
|||
... "build and push store paths"
|
||||
flags:
|
||||
name:
|
||||
? "name of binary cache"
|
||||
* "oizys"
|
||||
? "name of binary cache"
|
||||
service:
|
||||
? "name of cache service"
|
||||
* "attic"
|
||||
jobs:
|
||||
T int
|
||||
? "jobs when pushing paths"
|
||||
* countProcessors()
|
||||
? "jobs when pushing paths"
|
||||
T int
|
||||
- j
|
||||
run:
|
||||
nixBuildWithCache(name, args, service, jobs)
|
||||
|
@ -77,7 +69,10 @@ hwylCli:
|
|||
--- dry
|
||||
... "dry run build"
|
||||
flags:
|
||||
^[minimal]
|
||||
minimal:
|
||||
T bool
|
||||
? "set minimal"
|
||||
- m
|
||||
run:
|
||||
nixBuildHostDry(minimal, args)
|
||||
|
||||
|
@ -96,13 +91,19 @@ hwylCli:
|
|||
|
||||
--- output
|
||||
... "nixos config attr"
|
||||
flags:
|
||||
yes:
|
||||
T bool
|
||||
? "skip all confirmation prompts"
|
||||
run:
|
||||
echo nixosConfigAttrs().join(" ")
|
||||
|
||||
--- update
|
||||
... "update and run nixos-rebuild"
|
||||
flags:
|
||||
^[yes]
|
||||
yes:
|
||||
T bool
|
||||
? "skip all confirmation prompts"
|
||||
preview:
|
||||
T bool
|
||||
? "show preview and exit"
|
||||
|
|
Loading…
Reference in a new issue