2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-10 15:04:44 +00:00

archimede: init at 0.0.2

This commit is contained in:
Anugrah 2024-11-11 11:34:41 -08:00
parent 9a9707a8b7
commit aee73ac488

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 ];
};
}