evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / pi / pik / package.nix
blob9a0ab2efb19b72490a473428043349c3c4ddc957
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5   testers,
6   pik,
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "pik";
11   version = "0.10.0";
13   src = fetchFromGitHub {
14     owner = "jacek-kurlit";
15     repo = "pik";
16     rev = version;
17     hash = "sha256-q1nNQC9qGa7nUNIaDdqW3wIrfzH7JKS/yZAe9KNmX3k=";
18   };
20   cargoHash = "sha256-gqzt3cFOS4uzIstIvmPS0n18aFUt0YnoTRz7EVTV7sA=";
22   passthru.tests.version = testers.testVersion { package = pik; };
24   meta = {
25     description = "Process Interactive Kill";
26     longDescription = ''
27       Process Interactive Kill is a command line tool that helps to find and kill process.
28       It works like pkill command but search is interactive.
29     '';
30     homepage = "https://github.com/jacek-kurlit/pik";
31     license = with lib.licenses; [ mit ];
32     maintainers = with lib.maintainers; [ bew ];
33     mainProgram = "pik";
34   };