Skip to content

Commit

Permalink
archimede: init at 0.0.2 (#355257)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksanaa authored Nov 29, 2024
2 parents 53f77a5 + aee73ac commit 84dafe5
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1624,6 +1624,12 @@
githubId = 4194320;
name = "Anton Schirg";
};
anugrahn1 = {
email = "[email protected]";
github = "anugrahn1";
githubId = 117428605;
name = "Anugrah Naranatt";
};
anytimetraveler = {
email = "[email protected]";
github = "AnyTimeTraveler";
Expand Down
30 changes: 30 additions & 0 deletions pkgs/by-name/ar/archimede/package.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit 84dafe5

Please sign in to comment.