diff options
| author | Fuwn <[email protected]> | 2024-10-11 04:05:15 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-11 04:08:35 +0000 |
| commit | cdc8f1da9024b7bebf2a9ad54716cc911d296638 (patch) | |
| tree | 5dcf79c7e50d1c52cb5d185e00b64679076529f5 | |
| parent | feat(wiene): switch default sources path (diff) | |
| download | yae-cdc8f1da9024b7bebf2a9ad54716cc911d296638.tar.xz yae-cdc8f1da9024b7bebf2a9ad54716cc911d296638.zip | |
refactor!: wiene -> yae
It's far too easy to type wine.
| -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", }, }, |