waagent: 2.11.1.12 -> 2.12.0.2 (#357728)
[NixPkgs.git] / pkgs / by-name / bo / bonk / package.nix
blobb4a65329dc96fe6402ee7365cef57f91df371cb2
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "bonk";
8   version = "0.4.0";
10   src = fetchFromGitHub {
11     owner = "elliot40404";
12     repo = "bonk";
13     rev = "v${version}";
14     hash = "sha256-sAMIteNkGRqmE7BQD/TNC01K3eQQTLKuc0jcxHxtKF8=";
15   };
17   cargoHash = "sha256-/qBuIG5ETUWMv2iOGpW3/awuhZb35qsBAflNJv3xTUs=";
19   meta = {
20     description = "Blazingly fast touch alternative written in Rust";
21     homepage = "https://github.com/elliot40404/bonk";
22     license = lib.licenses.mit;
23     mainProgram = "bonk";
24     maintainers = with lib.maintainers; [ dit7ya ];
25   };