From 00b70818302f64a039ddabeeb987e21fec5ab1d7 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 21 May 2023 22:50:19 -0400 Subject: [PATCH] starcharts: init at 1.7.0 https://github.com/caarlos0/starcharts --- pkgs/servers/misc/starcharts/default.nix | 34 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/servers/misc/starcharts/default.nix diff --git a/pkgs/servers/misc/starcharts/default.nix b/pkgs/servers/misc/starcharts/default.nix new file mode 100644 index 00000000000..213b3d9aaec --- /dev/null +++ b/pkgs/servers/misc/starcharts/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3c2a437a0b5..923f5fd7aba 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12668,6 +12668,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 { };