Skip to content

Commit e8fcd41

Browse files
chore: update flake.nix and README.md for v0.1.0
1 parent fc1f759 commit e8fcd41

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ Using [Devbox](https://www.jetify.com/devbox):
2424

2525
<!-- begin:devbox_install - DON'T EDIT: This block will be replaced by CI -->
2626
```bash
27-
devbox add github:suinplayground/distribute-binary-via-devbox/v0.11.0#karg
27+
devbox add github:appthrust/karg/v0.1.0#karg
2828
```
2929
<!-- end:devbox_install -->
3030

3131
Using [Nix](https://nixos.org/):
3232

3333
<!-- begin:nix_install - DON'T EDIT: This block will be replaced by CI -->
3434
```bash
35-
nix run github:suinplayground/distribute-binary-via-devbox/v0.11.0#karg -- --help
35+
nix run github:appthrust/karg/v0.1.0#karg -- --help
3636
```
3737
<!-- end:nix_install -->
3838

flake.nix

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@
1111
let
1212
pkgs = import nixpkgs { inherit system; };
1313

14-
version = "0.11.0"; #version - This line is replaced by CI
14+
version = "0.1.0"; #version - This line is replaced by CI
1515

1616
assetName = "karg-v${version}-${system}.tar.gz";
1717

1818
# Hashes for each platform (will be updated by CI)
1919
hashes = {
2020
"x86_64-linux" = {
21-
hash = "sha256:357ba1e9f63077ae8ebe730e32f84f88f756a1b36d1cb0f3d152996026890a08"; #x86_64-linux - This line is replaced by CI
21+
hash = "sha256:373c8012938741c5b1e1a0b578a2d5d890c58c02f30969b3b507405a73fb708c"; #x86_64-linux - This line is replaced by CI
2222
};
2323
"aarch64-linux" = {
24-
hash = "sha256:4bee59b32cc6154799c67093a377c655818453d17170959aa0a5adeca74db7fe"; #aarch64-linux - This line is replaced by CI
24+
hash = "sha256:5bbd260f0e5c236fec8a631d5cbc6d9838a9faf15973f160e5070d51e4f327f2"; #aarch64-linux - This line is replaced by CI
2525
};
2626
"x86_64-darwin" = {
27-
hash = "sha256:b1ca0ef1f74001fe4f0ccc052a8ba9c97cad036be46883652c6fc80f856c8959"; #x86_64-darwin - This line is replaced by CI
27+
hash = "sha256:b358455f4a7c522571c13405612d822374f4706c6b4c548ac3a433892faae204"; #x86_64-darwin - This line is replaced by CI
2828
};
2929
"aarch64-darwin" = {
30-
hash = "sha256:b415f26e6a7c82f8450909453b131d6482d26bfb4a51470e1b94f13a1782f594"; #aarch64-darwin - This line is replaced by CI
30+
hash = "sha256:8138051cc0b74d0f407e5224183f10dc4b6a4d4890db723687a83cfd569f210c"; #aarch64-darwin - This line is replaced by CI
3131
};
3232
};
3333

@@ -40,7 +40,7 @@
4040
inherit version;
4141

4242
src = pkgs.fetchurl {
43-
url = "https://github.com/suinplayground/distribute-binary-via-devbox/releases/download/v${version}/${assetName}"; #github-url - This line is replaced by CI
43+
url = "https://github.com/appthrust/karg/releases/download/v${version}/${assetName}"; #github-url - This line is replaced by CI
4444
inherit (hashes.${system}) hash;
4545
};
4646

@@ -58,7 +58,7 @@
5858

5959
meta = with pkgs.lib; {
6060
description = "KARG - Kubernetes API Reference Generator. Generate documentation from Kubernetes CRD YAML files";
61-
homepage = "https://github.com/suinplayground/distribute-binary-via-devbox"; #github-homepage - This line is replaced by CI
61+
homepage = "https://github.com/appthrust/karg"; #github-homepage - This line is replaced by CI
6262
license = licenses.mit;
6363
maintainers = [ ];
6464
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];

0 commit comments

Comments
 (0)