Add ax (axolotl) custom Go package from self-hosted git

This commit is contained in:
2026-04-09 23:54:53 +02:00
parent d7332f3cc6
commit a6e67ae28f
4 changed files with 28 additions and 0 deletions

16
pkgs/ax/default.nix Normal file
View File

@@ -0,0 +1,16 @@
{ pkgs }:
pkgs.buildGoModule {
pname = "ax";
version = "0.1.3";
src = pkgs.fetchgit {
url = "https://g.eliaskohout.de/eliaskohout/ax";
rev = "v0.1.3";
hash = "sha256-IlQMAynwthzcu9YaHgelEEk9KEubmDWBtyp+bkys99M=";
};
sourceRoot = "ax/src";
vendorHash = "sha256-+ZC1pQJzt7Cv7whzJ2r8OjWZ1C5MMGgmYYk0BEbPyJU=";
}