Merge pull request #209665 from leifhelm/cfonts

cfonts: init at 1.1.0
This commit is contained in:
Jonas Heinrich 2023-01-10 18:28:18 +01:00 committed by GitHub
commit 4a816568af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 0 deletions

View File

@ -8029,6 +8029,15 @@
fingerprint = "CC50 F82C 985D 2679 0703 AF15 19B0 82B3 DEFE 5451";
}];
};
leifhelm = {
email = "jakob.leifhelm@gmail.com";
github = "leifhelm";
githubId = 31693262;
name = "Jakob Leifhelm";
keys =[{
fingerprint = "4A82 F68D AC07 9FFD 8BF0 89C4 6817 AA02 3810 0822";
}];
};
leixb = {
email = "abone9999+nixpkgs@gmail.com";
matrix = "@leix_b:matrix.org";

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

@ -1331,6 +1331,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 { };