Merge pull request #233337 from figsoda/starcharts

starcharts: init at 1.7.0
This commit is contained in:
Nick Cao 2023-05-22 20:25:34 -06:00 committed by GitHub
commit 4d0ef51e28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "starcharts";
version = "1.7.0";
src = fetchFromGitHub {
owner = "caarlos0";
repo = "starcharts";
rev = "v${version}";
hash = "sha256-XlR3AZgxp3ZljDR4H/BANeCqfR/G0a1KXo789GqNN8Y=";
};
vendorHash = "sha256-ki+LaJ3dgN/cPA5zpbV/LiWIjuTKqojjpdRZ8VCZ0Kk=";
ldflags = [
"-s"
"-w"
"-X=main.version=${version}"
];
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Plot your repository stars over time";
homepage = "https://github.com/caarlos0/starcharts";
changelog = "https://github.com/caarlos0/starcharts/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -12694,6 +12694,8 @@ with pkgs;
stabber = callPackage ../misc/stabber { };
starcharts = callPackage ../servers/misc/starcharts { };
staticjinja = with python3.pkgs; toPythonApplication staticjinja;
stevenblack-blocklist = callPackage ../tools/networking/stevenblack-blocklist { };