You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: flake.nix
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -11,23 +11,23 @@
11
11
let
12
12
pkgs=importnixpkgs{inheritsystem;};
13
13
14
-
version="0.11.0";#version - This line is replaced by CI
14
+
version="0.1.0";#version - This line is replaced by CI
15
15
16
16
assetName="karg-v${version}-${system}.tar.gz";
17
17
18
18
# Hashes for each platform (will be updated by CI)
19
19
hashes={
20
20
"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
22
22
};
23
23
"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
25
25
};
26
26
"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
28
28
};
29
29
"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
31
31
};
32
32
};
33
33
@@ -40,7 +40,7 @@
40
40
inheritversion;
41
41
42
42
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
44
44
inherit(hashes.${system})hash;
45
45
};
46
46
@@ -58,7 +58,7 @@
58
58
59
59
meta=withpkgs.lib;{
60
60
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
0 commit comments