bitwarden-desktop: 2024.12.1 -> 2025.1.1 (#374021)
[NixPkgs.git] / pkgs / by-name / im / impala / package.nix
blob28312ea0b064dea765a110a58f6bcea438f89304
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "impala";
8   version = "0.2.4";
10   src = fetchFromGitHub {
11     owner = "pythops";
12     repo = "impala";
13     rev = "v${version}";
14     hash = "sha256-NPNzvqnuYXrHCOLN0kZwtzPiKVdl6UFnb/S/XtG+sEY=";
15   };
17   cargoHash = "sha256-3mRWXUWyMgeaGOFvZXUeZmlD607zCz8a2d3O+MzhhNo=";
19   meta = {
20     description = "TUI for managing wifi";
21     homepage = "https://github.com/pythops/impala";
22     platforms = lib.platforms.linux;
23     license = lib.licenses.gpl3Only;
24     maintainers = [ lib.maintainers.nydragon ];
25   };