Skip to content

Commit

Permalink
add bonk
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrucciani committed Aug 8, 2023
1 parent 31638fa commit 37bf432
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/cli/bonk.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
pname = "bonk";
version = "0.3.2";

src = fetchFromGitHub {
owner = "elliot40404";
repo = "bonk";
rev = "v${version}";
hash = "sha256-Y6Hia+B7kIvdvpuZwWGJBsn+pOBmMynXai4KWkNs4ck=";
};

cargoHash = "sha256-XphSjB49zFB3zXYpdjjcVRdTAW2Bvg91aZkxDLvFy3M=";

meta = with lib; {
description = "The blazingly fast touch alternative with a sprinkle of mkdir written in rust";
homepage = "https://github.com/elliot40404/bonk";
license = licenses.mit;
maintainers = with maintainers; [ jpetrucciani ];
};
}

0 comments on commit 37bf432

Please sign in to comment.