cfonts: init at 1.1.0

This commit is contained in:
Jakob Leifhelm
2023-01-08 14:00:59 +01:00
parent 45229cf6c7
commit de4dccffbf
2 changed files with 26 additions and 0 deletions
+24
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 ];
};
}
+2
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 { };