tangled
alpha
login
or
join now
fuwn.net
/
yae
0
fork
atom
⛩️ Powerful yet Minimal Nix Dependency Manager
flake
flakes
home-manager
nixos
go
nix
dependency
dependencies
0
fork
atom
overview
issues
pulls
pipelines
fix(init): initialise base empty environment on init command
fuwn.net
1 year ago
73339dda
c04d5cd0
verified
This commit was signed with the committer's
known signature
.
fuwn.net
SSH Key Fingerprint:
SHA256:VPdFPyPbd6JkoMyWUdZ/kkTcIAt3sxjXD2XSAZ7FYC4=
+4
-1
2 changed files
expand all
collapse all
unified
split
flake.nix
internal
commands
init.go
+1
-1
flake.nix
···
54
54
inherit meta;
55
55
56
56
pname = name;
57
57
-
version = "2024.10.25";
57
57
+
version = "2024.11.25";
58
58
src = pkgs.lib.cleanSource ./.;
59
59
vendorHash = "sha256-XQEB2vgiztbtLnc7BR4WTouPI+2NDQXXFUNidqmvbac=";
60
60
buildInputs = [ pkgs.musl ];
+3
internal/commands/init.go
···
14
14
return fmt.Errorf("sources file already exists")
15
15
}
16
16
17
17
+
sources.Sources = make(map[string]yae.Source)
18
18
+
sources.Schema = "https://raw.githubusercontent.com/Fuwn/yae/refs/heads/main/yae.schema.json"
19
19
+
17
20
if c.Bool("dry-run") {
18
21
return nil
19
22
}