about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/sanctity/default.nix
blob: c0e85340c856935372a20a594d23b50dac7f3504 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, rustPlatform, fetchFromGitea }:

rustPlatform.buildRustPackage rec {
  pname = "sanctity";
  version = "1.2.1";

  src = fetchFromGitea {
    domain = "codeberg.org";
    owner = "papojari";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-rK4em0maJQS50zPfnuFSxRoXUuFCaw9ZOfmgf70Sdac=";
  };

  cargoSha256 = "sha256-IQp/sSVgKY1j6N+UcifEi74dg/PkZJoeqLekeLc/vMU=";

  meta = with lib; {
    description = "Test the 16 terminal colors in all combinations";
    homepage = "https://codeberg.org/papojari/sanctity";
    license = licenses.lgpl3Only;
    maintainers = with maintainers; [ papojari ];
  };
}