ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ca / cargo-unfmt / package.nix
blob42a1ea9b57f88a125ce8012b29d2b62f35adf4ec
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage {
7   pname = "cargo-unfmt";
8   version = "0.3.3";
10   src = fetchFromGitHub {
11     owner = "fprasx";
12     repo = "cargo-unfmt";
13     rev = "0f4882f65d248e32812e0e854fa11d7db60921e7";
14     hash = "sha256-nvn4nZkkNQQvzShwoxtFqHeyhXQPm2GJoTKBI+MkFgM=";
15   };
17   cargoHash = "sha256-mMeHTYCUIZR3jVvTxfyH4I9wGfUdCWcyn9djnksAY8k=";
19   # Doc tests are broken on 0.3.3
20   doCheck = false;
22   meta = with lib; {
23     description = "Unformat code into perfect rectangles";
24     homepage = "https://github.com/fprasx/cargo-unfmt";
25     license = licenses.gpl3Plus;
26     mainProgram = "cargo-unfmt";
27     maintainers = with maintainers; [ cafkafk ];
28   };