Unverified Commit 892e95f5 authored by Christian Kögler's avatar Christian Kögler Committed by GitHub
Browse files

cargo-sort-derives: init at 0.12.0 (#456417)

parents e53a7aba b6d22e5e
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -23754,6 +23754,12 @@
    name = "Otto Sabart";
    keys = [ { fingerprint = "0AF6 4C3B 1F12 14B3 8C8C  5786 1FA2 DBE6 7438 7CC3"; } ];
  };
  sebimarkgraf = {
    email = "sebastian-markgraf@t-online.de";
    github = "sebimarkgraf";
    githubId = 24530526;
    name = "Sebastian Mossburger";
  };
  sebrut = {
    email = "kontakt@sebastian-rutofski.de";
    github = "sebrut";
+27 −0
Original line number Diff line number Diff line
{
  fetchFromGitHub,
  lib,
  rustPlatform,
}:

rustPlatform.buildRustPackage rec {
  pname = "cargo-sort-derives";
  version = "0.12.0";

  src = fetchFromGitHub {
    owner = "lusingander";
    repo = "cargo-sort-derives";
    tag = "v${version}";
    hash = "sha256-91sfRTMcI2/MyTrv+uJmhqfL4KUAc6//yzRR9FxvPHo=";
  };

  cargoHash = "sha256-kQTAYBb/xhrfO3PSJvnZrZKr6B3fgtlElf1mNCSf7eg=";

  meta = {
    description = "Cargo subcommand to sort derive attributes";
    mainProgram = "cargo-sort-derives";
    homepage = "https://lusingander.github.io/cargo-sort-derives/";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ sebimarkgraf ];
  };
}