aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-11 04:05:15 +0000
committerFuwn <[email protected]>2024-10-11 04:08:35 +0000
commitcdc8f1da9024b7bebf2a9ad54716cc911d296638 (patch)
tree5dcf79c7e50d1c52cb5d185e00b64679076529f5
parentfeat(wiene): switch default sources path (diff)
downloadyae-cdc8f1da9024b7bebf2a9ad54716cc911d296638.tar.xz
yae-cdc8f1da9024b7bebf2a9ad54716cc911d296638.zip
refactor!: wiene -> yae
It's far too easy to type wine.
-rw-r--r--README.md12
-rw-r--r--flake.nix6
-rw-r--r--go.mod2
-rw-r--r--yae.go (renamed from wiene.go)4
4 files changed, 12 insertions, 12 deletions
diff --git a/README.md b/README.md
index b8a9f7e..dfb9ba7 100644
--- a/README.md
+++ b/README.md
@@ -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:
diff --git a/flake.nix b/flake.nix
index 64e2fc0..e66c393 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;
};
diff --git a/go.mod b/go.mod
index 733c26d..4dc332f 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module github.com/Fuwn/wiene
+module github.com/Fuwn/yae
go 1.22.7
diff --git a/wiene.go b/yae.go
index ec9f028..baf1a9a 100644
--- a/wiene.go
+++ b/yae.go
@@ -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",
},
},