python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / sanctity / default.nix
blobcdfc1b89e634e9b3f99f8bccb9d80e53a133aa85
1 { lib, rustPlatform, fetchFromGitea }:
3 rustPlatform.buildRustPackage rec {
4   pname = "sanctity";
5   version = "1.3.1";
7   src = fetchFromGitea {
8     domain = "codeberg.org";
9     owner = "annaaurora";
10     repo = pname;
11     rev = "v${version}";
12     sha256 = "sha256-y6xj4A5SHcW747aFE9TfuurNnuUxjTUeKJmzxeiWqVc=";
13   };
15   cargoSha256 = "sha256-co58YBeFjP9DKzxDegQI7txuJ1smqJxdlRLae+Ppwh0=";
17   meta = with lib; {
18     description = "Test the 16 terminal colors in all combinations";
19     homepage = "https://codeberg.org/annaaurora/sanctity";
20     license = licenses.lgpl3Only;
21     maintainers = with maintainers; [ annaaurora ];
22   };