cfonts: init at 1.1.0
This commit is contained in:
parent
45229cf6c7
commit
de4dccffbf
2 changed files with 26 additions and 0 deletions
24
pkgs/tools/misc/cfonts/default.nix
Normal file
24
pkgs/tools/misc/cfonts/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue