about summary refs log tree commit diff
path: root/pkgs/tools/misc/tagref/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/tagref/default.nix')
-rw-r--r--pkgs/tools/misc/tagref/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/tools/misc/tagref/default.nix b/pkgs/tools/misc/tagref/default.nix
deleted file mode 100644
index b54545f83685..000000000000
--- a/pkgs/tools/misc/tagref/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ 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";
-  };
-}