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