biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / tagref / default.nix
blobb54545f836854600872b5554b3ff5d4bd3908301
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "tagref";
5   version = "1.10.0";
7   src = fetchFromGitHub {
8     owner = "stepchowfun";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-ANQxW5Qznu2JbiazFElB1sxpX4BwPgk6SVGgYpJ6DUw=";
12   };
14   cargoHash = "sha256-vdmr5n4M+Qe/jzjNdg+sy7q2osTivxmLG+xMTMkEFm4=";
16   meta = with lib; {
17     description = "Manage cross-references in your code";
18     homepage = "https://github.com/stepchowfun/tagref";
19     license = licenses.mit;
20     maintainers = [ maintainers.yusdacra ];
21     platforms = platforms.unix;
22     mainProgram = "tagref";
23   };