3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #162007 from papojari/sanctity

This commit is contained in:
Sandro 2022-03-09 17:59:00 +01:00 committed by GitHub
commit f9afbac6b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

View file

@ -9391,6 +9391,13 @@
githubId = 71795;
name = "Mica Semrick";
};
papojari = {
email = "papojari-git.ovoid@aleeas.com";
matrix = "@papojari:artemislena.eu";
github = "papojari";
githubId = 81317317;
name = "papojari";
};
paraseba = {
email = "paraseba@gmail.com";
github = "paraseba";

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

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