mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
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 ];
|
|
};
|
|
}
|