diff options
| -rw-r--r-- | README.md | 12 | ||||
| -rw-r--r-- | flake.nix | 6 | ||||
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | yae.go (renamed from wiene.go) | 4 |
4 files changed, 12 insertions, 12 deletions
@@ -1,12 +1,12 @@ -# 🦖 Wiene +# ⛩️ Yae -Wiene is a simple dependency manager for use with Nix, similar to [niv](https://github.com/nmattia/niv/) +Yae is a simple dependency manager for use with Nix, similar to [niv](https://github.com/nmattia/niv/) and [`npins`](https://github.com/andir/npins/). I made it to solve my own problems, but I hope it can help you too. Try it out without installing anything permanently by running -`nix run github:Fuwn/wiene`! +`nix run github:Fuwn/yae`! ## Installation @@ -16,10 +16,10 @@ Follow the installation instructions at [Tsutsumi](https://github.com/Fuwn/tsuts ```text NAME: - wiene - Nix Dependency Manager + yae - Nix Dependency Manager USAGE: - wiene [global options] command [command options] + yae [global options] command [command options] DESCRIPTION: Nix Dependency Manager @@ -34,7 +34,7 @@ COMMANDS: help, h Shows a list of commands or help for one command GLOBAL OPTIONS: - --sources value Sources path (default: "./wiene.json") + --sources value Sources path (default: "./yae.json") --help, -h show help COPYRIGHT: @@ -37,7 +37,7 @@ system: let pkgs = import nixpkgs { inherit system; }; - name = "wiene"; + name = "yae"; meta = with pkgs.lib; { description = "Nix Dependency Manager"; @@ -48,7 +48,7 @@ platforms = platforms.linux; }; - wiene = + yae = pkgs.buildGo122Module.override { stdenv = pkgs.stdenvAdapters.useMoldLinker pkgs.clangStdenv; } rec { inherit meta; @@ -71,7 +71,7 @@ in { packages = { - default = wiene; + default = yae; ${name} = self.packages.${system}.default; }; @@ -1,4 +1,4 @@ -module github.com/Fuwn/wiene +module github.com/Fuwn/yae go 1.22.7 @@ -14,7 +14,7 @@ func main() { sources := Sources{} (&cli.App{ - Name: "wiene", + Name: "yae", Usage: "Nix Dependency Manager", Description: "Nix Dependency Manager", EnableBashCompletion: true, @@ -30,7 +30,7 @@ func main() { Flags: []cli.Flag{ &cli.StringFlag{ Name: "sources", - Value: "./wiene.json", + Value: "./yae.json", Usage: "Sources path", }, }, |