summary refs log tree commit diff
path: root/pkgs/tools/misc/tagref
diff options
context:
space:
mode:
authorYusuf Bera Ertan <y.bera003.06@protonmail.com>2020-12-03 17:42:57 +0300
committerYusuf Bera Ertan <y.bera003.06@protonmail.com>2020-12-03 17:42:57 +0300
commit36a4d5d9281a20d80e26ee9dbea341d953af5d4a (patch)
tree4bf65506957990de848df03cdf7a7ea23b4e7849 /pkgs/tools/misc/tagref
parent9ea8fd6df1b963b5f565a0fbe3c22a5d7fec2c01 (diff)
downloadnixpkgs-36a4d5d9281a20d80e26ee9dbea341d953af5d4a.tar
nixpkgs-36a4d5d9281a20d80e26ee9dbea341d953af5d4a.tar.gz
nixpkgs-36a4d5d9281a20d80e26ee9dbea341d953af5d4a.tar.bz2
nixpkgs-36a4d5d9281a20d80e26ee9dbea341d953af5d4a.tar.lz
nixpkgs-36a4d5d9281a20d80e26ee9dbea341d953af5d4a.tar.xz
nixpkgs-36a4d5d9281a20d80e26ee9dbea341d953af5d4a.tar.zst
nixpkgs-36a4d5d9281a20d80e26ee9dbea341d953af5d4a.zip
tagref: init at 1.3.3
Diffstat (limited to 'pkgs/tools/misc/tagref')
-rw-r--r--pkgs/tools/misc/tagref/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/misc/tagref/default.nix b/pkgs/tools/misc/tagref/default.nix
new file mode 100644
index 00000000000..64870e07a3d
--- /dev/null
+++ b/pkgs/tools/misc/tagref/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, lib, fetchFromGitHub, rustPlatform }:
+rustPlatform.buildRustPackage rec {
+  pname = "tagref";
+  version = "1.3.3";
+
+  src = fetchFromGitHub {
+    owner = "stepchowfun";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-3R6vhevSld9IjJMsGl5Rwv0ADMjm94NeZxvl8eYHR2Y=";
+  };
+
+  cargoSha256 = "sha256-pLugAT8QlgxawkR2y+LIacRh4nB59qpKLJjxc81CNDY=";
+
+  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;
+  };
+}