nixpkgs/pkgs/tools/misc/tagref/default.nix

23 lines
631 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform }:
2020-12-03 14:42:57 +00:00
rustPlatform.buildRustPackage rec {
pname = "tagref";
2020-12-11 03:07:20 +00:00
version = "1.4.1";
2020-12-03 14:42:57 +00:00
src = fetchFromGitHub {
owner = "stepchowfun";
repo = pname;
rev = "v${version}";
2020-12-11 03:07:20 +00:00
sha256 = "0y1c0v2zjpav1n72pgf3kpqdz6ixp2mjhcvvza4gzfp865c236nc";
2020-12-03 14:42:57 +00:00
};
2020-12-11 03:07:20 +00:00
cargoSha256 = "06ljy213x9lhvqjysz9cjhrrg0ns07qkz27pxd8rih0mk6cck45g";
2020-12-03 14:42:57 +00:00
meta = with lib; {
description = "Tagref helps you refer to other locations in your codebase.";
homepage = "https://github.com/stepchowfun/tagref";
license = licenses.mit;
maintainers = [ maintainers.yusdacra ];
platforms = platforms.unix;
};
}