base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / misc / gh-cal / default.nix
blob53e5e1d3ee7dfca722e4222663f09057fb703dc3
1 { lib
2 , fetchCrate
3 , rustPlatform
4 , pkg-config
5 , openssl
6 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "gh-cal";
9   version = "0.1.3";
11   src = fetchCrate {
12     inherit pname version;
13     hash = "sha256-x9DekflZoXxH964isWCi6YuV3v/iIyYOuRYVgKaUBx0=";
14   };
16   cargoHash = "sha256-73gqk0DjhaLGIEP5VQQlubPomxHQyg4RnY5XTgE7msQ=";
18   nativeBuildInputs = [ pkg-config ];
19   buildInputs = [ openssl ];
21   meta = with lib; {
22     description = "GitHub contributions calender terminal viewer";
23     homepage = "https://github.com/mrshmllow/gh-cal";
24     license = licenses.mit;
25     maintainers = with maintainers; [ loicreynier ];
26     mainProgram = "gh-cal";
27   };