pkgs: Don't run bonnie tests

This commit is contained in:
traxys 2023-05-07 18:40:13 +02:00
parent 8721b3d6e7
commit d98361d222

View file

@ -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; [];
};
}