nixpkgs/pkgs/tools/misc/cfonts/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
598 B
Nix
Raw Normal View History

2023-08-29 09:18:12 +02:00
{ lib, rustPlatform, fetchCrate }:
2023-01-08 11:32:08 +01:00
rustPlatform.buildRustPackage rec {
pname = "cfonts";
2024-02-18 11:19:54 +01:00
version = "1.1.3";
2023-01-08 11:32:08 +01:00
src = fetchCrate {
inherit pname version;
2024-02-18 11:19:54 +01:00
hash = "sha256-ixxDlHjx5Bi6Wl/kzJ/R7d+jgTDCAti25TV1RlXRPus=";
2023-01-08 11:32:08 +01:00
};
2024-02-18 11:19:54 +01:00
cargoHash = "sha256-NltvO5ACf8TsE9CgC1jAXx04/T/kHSZLxXJ4zhA5DGo=";
2023-01-08 11:32:08 +01:00
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 ];
2023-11-27 02:17:53 +01:00
mainProgram = "cfonts";
2023-01-08 11:32:08 +01:00
};
}