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:
parent
e1c2836754
commit
53e39c44a7
2 changed files with 25 additions and 0 deletions
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -9605,6 +9605,8 @@ with pkgs;
|
||||||
|
|
||||||
samplicator = callPackage ../tools/networking/samplicator { };
|
samplicator = callPackage ../tools/networking/samplicator { };
|
||||||
|
|
||||||
|
sanctity = callPackage ../tools/misc/sanctity { };
|
||||||
|
|
||||||
sandboxfs = callPackage ../tools/filesystems/sandboxfs { };
|
sandboxfs = callPackage ../tools/filesystems/sandboxfs { };
|
||||||
|
|
||||||
sasquatch = callPackage ../tools/filesystems/sasquatch { };
|
sasquatch = callPackage ../tools/filesystems/sasquatch { };
|
||||||
|
|
Loading…
Reference in a new issue