cfonts: init at 1.1.0

This commit is contained in:
Jakob Leifhelm 2023-01-08 11:32:08 +01:00
parent 45229cf6c7
commit de4dccffbf
No known key found for this signature in database
GPG key ID: 6817AA0238100822
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib
, stdenv
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "cfonts";
version = "1.1.0";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-STeLEHgggshhyLCfqiJmDcmwxqQ1AOGHj2ATliEY+DA=";
};
cargoHash = "sha256-GGi4OduO9FPIWllxlx4tK3lix36zF0FNDyptzftV0GY=";
meta = with lib; {
homepage = "https://github.com/dominikwilkowski/cfonts";
description =
"A silly little command line tool for sexy ANSI fonts in the console";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ leifhelm ];
};
}

View file

@ -1329,6 +1329,8 @@ with pkgs;
cf-vault = callPackage ../tools/admin/cf-vault { };
cfonts = callPackage ../tools/misc/cfonts { };
bikeshed = python3Packages.callPackage ../applications/misc/bikeshed { };
cie-middleware-linux = callPackage ../tools/security/cie-middleware-linux { };