nixpkgs/pkgs/tools/misc/bonk/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
614 B
Nix
Raw Normal View History

2022-10-05 10:38:02 +02:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "bonk";
2024-01-27 17:40:26 +01:00
version = "0.4.0";
2022-10-05 10:38:02 +02:00
src = fetchFromGitHub {
owner = "elliot40404";
repo = "bonk";
rev = "v${version}";
2024-01-27 17:40:26 +01:00
hash = "sha256-sAMIteNkGRqmE7BQD/TNC01K3eQQTLKuc0jcxHxtKF8=";
2022-10-05 10:38:02 +02:00
};
2024-01-27 17:40:26 +01:00
cargoHash = "sha256-/qBuIG5ETUWMv2iOGpW3/awuhZb35qsBAflNJv3xTUs=";
2022-10-05 10:38:02 +02:00
meta = {
description = "The blazingly fast touch alternative written in Rust";
homepage = "https://github.com/elliot40404/bonk";
license = lib.licenses.mit;
mainProgram = "bonk";
maintainers = with lib.maintainers; [ dit7ya ];
};
}