talosctl: 1.9.1 -> 1.9.2 (#374443)
[NixPkgs.git] / pkgs / by-name / sa / sanctity / package.nix
blob531181ed266a97b8af61b1df9d389df2d7972064
2   lib,
3   rustPlatform,
4   fetchFromGitea,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "sanctity";
9   version = "1.3.1";
11   src = fetchFromGitea {
12     domain = "codeberg.org";
13     owner = "annaaurora";
14     repo = pname;
15     rev = "v${version}";
16     hash = "sha256-y6xj4A5SHcW747aFE9TfuurNnuUxjTUeKJmzxeiWqVc=";
17   };
19   cargoHash = "sha256-co58YBeFjP9DKzxDegQI7txuJ1smqJxdlRLae+Ppwh0=";
21   meta = with lib; {
22     description = "Test the 16 terminal colors in all combinations";
23     homepage = "https://codeberg.org/annaaurora/sanctity";
24     license = licenses.lgpl3Only;
25     maintainers = with maintainers; [ annaaurora ];
26     mainProgram = "sanctity";
27   };