biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / sm / smag / package.nix
blob794ee78e859102b1cdedd6ac3c40827f825263f7
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "smag";
5   version = "0.8.0";
7   src = fetchFromGitHub {
8     owner = "aantn";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-Vyd35wYDNI4T7DdqihwpmJOAZGxjnCeWS609o3L+gHM=";
12   };
14   cargoHash = "sha256-ujQAT36qzlfliEC7rFYiWUb3DuwkqCvpUS5Q3v+6378=";
16   meta = with lib; {
17     description = "Easily create graphs from cli commands and view them in the terminal";
18     longDescription = ''
19       Easily create graphs from cli commands and view them in the terminal.
20       Like the watch command but with a graph of the output.
21     '';
22     homepage = "https://github.com/aantn/smag";
23     license = licenses.mit;
24     changelog = "https://github.com/aantn/smag/releases/tag/v${version}";
25     mainProgram = "smag";
26     maintainers = with maintainers; [ zebreus ];
27   };