sanctity: init at 1.2.1

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: j-k <dev@j-k.io>
This commit is contained in:
papojari 2022-03-03 16:07:55 +01:00
parent e1c2836754
commit 53e39c44a7
No known key found for this signature in database
GPG key ID: 5D98BEEC20C9695C
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -9605,6 +9605,8 @@ with pkgs;
samplicator = callPackage ../tools/networking/samplicator { };
sanctity = callPackage ../tools/misc/sanctity { };
sandboxfs = callPackage ../tools/filesystems/sandboxfs { };
sasquatch = callPackage ../tools/filesystems/sasquatch { };