evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / si / sig / package.nix
blobc3f053ae53a46e8cf5f7d97eec4e51c7999d7b17
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "sig";
9   version = "0.1.3";
11   src = fetchFromGitHub {
12     owner = "ynqa";
13     repo = "sig";
14     rev = "v${version}";
15     hash = "sha256-nt/KV4ohFNZTJTwbNoSxb5v9zQwp+7ypvfMthL1yMus=";
16   };
18   cargoHash = "sha256-gZZ2aOsqVqGN3gCBZnBXzlFicMssNIEyRT688OuNMJc=";
20   meta = {
21     description = "Interactive grep (for streaming)";
22     homepage = "https://github.com/ynqa/sig";
23     license = lib.licenses.mit;
24     maintainers = with lib.maintainers; [ qaidvoid ];
25     mainProgram = "sig";
26   };