25 lines
583 B
Nix
25 lines
583 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|