python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / bunnyfetch / default.nix
blobd03fea2cefd28e53c7adcf657e0b1afee4a4fd5e
1 { buildGoModule, fetchFromGitHub, lib }:
3 buildGoModule rec {
4   pname = "bunnyfetch";
5   version = "0.2.0";
7   src = fetchFromGitHub {
8     owner = "Rosettea";
9     repo = "bunnyfetch";
10     rev = "v${version}";
11     sha256 = "sha256-6MnjCXc9/8twdf8PHKsVJY1yWYwUf5R01vtQFJbyy7M=";
12   };
14   vendorSha256 = "sha256-w+O1dU8t7uNvdlFnYhCdJCDixpWWZAnj9GrtsCbu9SM=";
16   # No upstream tests
17   doCheck = false;
19   meta = with lib; {
20     description = "Tiny system info fetch utility";
21     homepage = "https://github.com/Rosettea/bunnyfetch";
22     license = licenses.mit;
23     maintainers = with maintainers; [ devins2518 ];
24     platforms = platforms.linux;
25     mainProgram = "bunnyfetch";
26   };