nixpkgs/pkgs/tools/misc/tagref/default.nix
2024-03-14 14:50:45 +00:00

25 lines
634 B
Nix

{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "tagref";
version = "1.10.0";
src = fetchFromGitHub {
owner = "stepchowfun";
repo = pname;
rev = "v${version}";
sha256 = "sha256-ANQxW5Qznu2JbiazFElB1sxpX4BwPgk6SVGgYpJ6DUw=";
};
cargoHash = "sha256-vdmr5n4M+Qe/jzjNdg+sy7q2osTivxmLG+xMTMkEFm4=";
meta = with lib; {
description = "Manage cross-references in your code";
homepage = "https://github.com/stepchowfun/tagref";
license = licenses.mit;
maintainers = [ maintainers.yusdacra ];
platforms = platforms.unix;
mainProgram = "tagref";
};
}