about summary refs log tree commit diff
path: root/pkgs/tools/text/tuc
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/tuc')
-rw-r--r--pkgs/tools/text/tuc/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/tools/text/tuc/default.nix b/pkgs/tools/text/tuc/default.nix
deleted file mode 100644
index 46e9bb86e57c..000000000000
--- a/pkgs/tools/text/tuc/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ lib, fetchFromGitHub, rustPlatform }:
-rustPlatform.buildRustPackage rec {
-  pname = "tuc";
-  version = "1.2.0";
-
-  src = fetchFromGitHub {
-    owner = "riquito";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-+QkkwQfp818bKVo1yUkWKLMqbdzRJ+oHpjxB+UFDRsU=";
-  };
-
-  cargoHash = "sha256-NbqmXptLmqLd6QizRB1bIM53Rdj010Hy3JqSuLQ4H24=";
-
-  meta = with lib; {
-    description = "When cut doesn't cut it";
-    mainProgram = "tuc";
-    homepage = "https://github.com/riquito/tuc";
-    license = licenses.gpl3;
-    maintainers = with maintainers; [ dit7ya ];
-  };
-}