about summary refs log tree commit diff
path: root/pkgs/tools/text/gist
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2024-07-25 21:04:38 +0200
committerzimbatm <zimbatm@zimbatm.com>2024-07-31 09:10:29 +0200
commit06e0eef0f743a587aa74ff778729ae230d8198a8 (patch)
tree38e16a625f14830135aea590eaa7b039a51cee76 /pkgs/tools/text/gist
parent7266ad59cea0683d4e336bc9b3e7b9460d664d55 (diff)
gist: move to by-name
Diffstat (limited to 'pkgs/tools/text/gist')
-rw-r--r--pkgs/tools/text/gist/default.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/tools/text/gist/default.nix b/pkgs/tools/text/gist/default.nix
deleted file mode 100644
index d2676b379970e..0000000000000
--- a/pkgs/tools/text/gist/default.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ buildRubyGem, lib, ruby }:
-
-buildRubyGem rec {
-  inherit ruby;
-  name = "${gemName}-${version}";
-  gemName = "gist";
-  version = "6.0.0";
-  source.sha256 = "0qnd1jqd7b04871v4l73grcmi7c0pivm8nsfrqvwivm4n4b3c2hd";
-
-  meta = with lib; {
-    description = "Upload code to https://gist.github.com (or github enterprise)";
-    homepage = "http://defunkt.io/gist/";
-    license = licenses.mit;
-    maintainers = with maintainers; [ zimbatm ];
-    platforms = ruby.meta.platforms;
-  };
-}