diff --git a/pkgs/bonnie/default.nix b/pkgs/bonnie/default.nix index fa5ff73..365d5e3 100644 --- a/pkgs/bonnie/default.nix +++ b/pkgs/bonnie/default.nix @@ -1,8 +1,8 @@ -{ lib -, rustPlatform -, fetchFromGitHub +{ + lib, + rustPlatform, + fetchFromGitHub, }: - rustPlatform.buildRustPackage rec { pname = "bonnie"; version = "0.3.2"; @@ -17,11 +17,13 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-fdkw2QB4n2kbuQtvQ0IagGxEvlnurExTW4UKdwSx93M="; + doCheck = false; + meta = with lib; { description = "Simple, cross-platform, and fast command aliases with superpowers"; homepage = "https://github.com/arctic-hen7/bonnie"; changelog = "https://github.com/arctic-hen7/bonnie/blob/${src.rev}/CHANGELOG.md"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; []; }; }