nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / se / see-cat / package.nix
blobc8c213272a52165e399221805a0bb93c5289010f
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5   pkg-config,
6 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "see-cat";
9   version = "0.8.1";
11   src = fetchFromGitHub {
12     owner = "guilhermeprokisch";
13     repo = "see";
14     rev = "v${version}";
15     hash = "sha256-VCUrPCaG2fKp9vpFLzNLcfCBu2NiwdY2+bo1pd7anZY=";
16   };
18   cargoHash = "sha256-lfpJ40QpZ9eQhDFJjLwiDU5DmaYAqCh5iJSjZ+jj+kk=";
20   nativeBuildInputs = [
21     pkg-config
22   ];
24   meta = {
25     description = "Cute cat(1) for the terminal";
26     longDescription = ''
27       see is a powerful file visualization tool for the terminal, offering
28       advanced code viewing capabilities, Markdown rendering, and
29       more. It provides syntax highlighting, emoji support, and image
30       rendering capabilities, offering a visually appealing way to view
31       various file types directly in your console.
32     '';
33     homepage = "https://github.com/guilhermeprokisch/see";
34     license = lib.licenses.mit;
35     mainProgram = "see";
36     maintainers = with lib.maintainers; [ louis-thevenet ];
37   };