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 07:18:12 +00:00
{ lib, rustPlatform, fetchCrate }:
2023-01-08 10:32:08 +00:00
rustPlatform.buildRustPackage rec {
pname = "cfonts";
2023-08-29 07:18:12 +00:00
version = "1.1.2";
2023-01-08 10:32:08 +00:00
src = fetchCrate {
inherit pname version;
2023-08-29 07:18:12 +00:00
hash = "sha256-bnjrbcQ2MMZsM0rWWk+xkA58rSREHWfSvlGDAHKIPAw=";
2023-01-08 10:32:08 +00:00
};
2023-08-29 07:18:12 +00:00
cargoHash = "sha256-8NgEsFglt+JyP5D61mT4Z8SIbPATJskiEpn8tWy+yjk=";
2023-01-08 10:32:08 +00: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 01:17:53 +00:00
mainProgram = "cfonts";
2023-01-08 10:32:08 +00:00
};
}