evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / cb / cbfmt / package.nix
blob099a2a7f9f87d68d80952adcdeb2014597131a10
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   cargoHash = "sha256-6oZCpjQ8t/QLFhEtF7td8KGI/kFE04pg7OELutsrJKo=";
16   passthru.tests.version = testers.testVersion {
17     package = cbfmt;
18   };
20   meta = with lib; {
21     description = "Tool to format codeblocks inside markdown and org documents";
22     mainProgram = "cbfmt";
23     homepage = "https://github.com/lukas-reineke/cbfmt";
24     license = licenses.mit;
25     maintainers = [ maintainers.stehessel ];
26   };