Unverified Commit 07a8a971 authored by isabel's avatar isabel Committed by GitHub
Browse files

comma: modernize (#484752)

parents 616fc8b4 d3cb5b57
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -12,14 +12,14 @@
  buildPackages,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "comma";
  version = "2.3.3";

  src = fetchFromGitHub {
    owner = "nix-community";
    repo = "comma";
    rev = "v${version}";
    rev = "v${finalAttrs.version}";
    hash = "sha256-dNek1a8Yt3icWc8ZpVe1NGuG+eSoTDOmAAJbkYmMocU=";
  };

@@ -67,4 +67,4 @@ rustPlatform.buildRustPackage rec {
    mainProgram = "comma";
    maintainers = with lib.maintainers; [ artturin ];
  };
}
})