python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / cbfmt / default.nix
blob09471b76ef5281a56e32b7657785a9341ea01cd9
1 { lib, rustPlatform, fetchFromGitHub, testers, cbfmt }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cbfmt";
5   version = "0.2.0";
7   src = fetchFromGitHub {
8     owner = "lukas-reineke";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-/ZvL1ZHXcmE1n+hHvJeSqmnI9nSHJ+zM9lLNx0VQfIE=";
12   };
14   cargoSha256 = "sha256-6oZCpjQ8t/QLFhEtF7td8KGI/kFE04pg7OELutsrJKo=";
16   passthru.tests.version = testers.testVersion {
17     package = cbfmt;
18   };
20   meta = with lib; {
21     description = "A tool to format codeblocks inside markdown and org documents";
22     homepage = "https://github.com/lukas-reineke/cbfmt";
23     license = licenses.mit;
24     maintainers = [ maintainers.stehessel ];
25   };