nixpkgs/pkgs/by-name/bo/bonk/package.nix

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

27 lines
610 B
Nix
Raw Normal View History

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