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:
parent
9a9707a8b7
commit
aee73ac488
30
pkgs/by-name/ar/archimede/package.nix
Normal file
30
pkgs/by-name/ar/archimede/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user