comma: modernize (#484752)

This commit is contained in:
isabel
2026-01-28 16:28:16 +00:00
committed by GitHub
+3 -3
View File
@@ -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 ];
};
}
})