python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / tagref / default.nix
blob30d00eb74d2ea0f58a8d8274b9447a84863b7e17
1 { lib, fetchFromGitHub, rustPlatform }:
2 rustPlatform.buildRustPackage rec {
3   pname = "tagref";
4   version = "1.5.0";
6   src = fetchFromGitHub {
7     owner = "stepchowfun";
8     repo = pname;
9     rev = "v${version}";
10     sha256 = "sha256-PZ5ymYXn19PnvimofODh6su9zHdVoa3T7RCWPSO1Z6w=";
11   };
13   cargoSha256 = "sha256-6siqfAWFoOomqcRvW+iku28FbyKCHiDzMVIUwWP8hJM=";
15   meta = with lib; {
16     description = "Tagref helps you refer to other locations in your codebase.";
17     homepage = "https://github.com/stepchowfun/tagref";
18     license = licenses.mit;
19     maintainers = [ maintainers.yusdacra ];
20     platforms = platforms.unix;
21   };