archimede: init at 0.0.2 (#355257)

This commit is contained in:
Aleksana 2024-11-29 16:50:26 +08:00 committed by GitHub
commit 84dafe5c5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 36 additions and 0 deletions

View File

@ -1624,6 +1624,12 @@
githubId = 4194320;
name = "Anton Schirg";
};
anugrahn1 = {
email = "pnanugrah@gmail.com";
github = "anugrahn1";
githubId = 117428605;
name = "Anugrah Naranatt";
};
anytimetraveler = {
email = "simon@simonscode.org";
github = "AnyTimeTraveler";

View File

@ -0,0 +1,30 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
let
version = "0.0.2";
in
buildGoModule {
pname = "archimede";
inherit version;
src = fetchFromGitHub {
owner = "gennaro-tedesco";
repo = "archimede";
rev = "refs/tags/v${version}";
hash = "sha256-7P7PtzYlcNYG2+KW9zvcaRlTW+vHw8jeLD2dEQXmrzc=";
};
vendorHash = "sha256-F74TVp6+UdV31YVYYHWtdIzpbbiYM2I8csGobesFN2g=";
meta = {
homepage = "https://github.com/gennaro-tedesco/archimede";
description = "Unobtrusive directory information fetcher";
license = lib.licenses.asl20;
mainProgram = "archimede";
maintainers = [ lib.maintainers.anugrahn1 ];
};
}