nixpkgs/pkgs/tools/misc/sanctity/default.nix
papojari 53e39c44a7
sanctity: init at 1.2.1
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: j-k <dev@j-k.io>
2022-03-09 17:13:22 +01:00

24 lines
625 B
Nix

{ 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 ];
};
}