mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
Merge pull request #162007 from papojari/sanctity
This commit is contained in:
commit
f9afbac6b6
@ -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";
|
||||
|
23
pkgs/tools/misc/sanctity/default.nix
Normal file
23
pkgs/tools/misc/sanctity/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user