Initial commit

This commit is contained in:
Raghav 2025-06-04 19:27:06 -04:00
parent 4f79eedcbc
commit cb8a574f09

26
default.nix Normal file
View File

@ -0,0 +1,26 @@
with import <nixpkgs> {};
buildGoModule (finalAttrs: {
pname = "abra";
version = "0.10.1-beta";
src = fetchGit {
url = "https://git.coopcloud.tech/toolshed/abra.git";
rev = "2fbef41a3a000b78b8c3a68d1aa0604f50bad715";
};
# abra vendors its dependencies
vendorHash = null;
# TODO: go back and check why `go test` for abra is not hermetic
doCheck = false;
meta = {
description = "The Co-op Cloud command-line interface.";
homepage = "https://git.coopcloud.tech/toolshed/abra";
license = lib.licenses.gpl3;
# maintainers = with lib.maintainers; [sixsmith];
};
}
)