about summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-02-23 06:29:25 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-02-23 06:29:25 +0100
commit4ec69afa512d956a6acacc1f1d860aa8632f3717 (patch)
treede6b7d7a1c9f9fa82f5df77db296a3c756acf96d /pkgs/tools/text
parent1eaa36b87a0721cc722faed57ff06248d8e7955a (diff)
parent46a66fd4a8e838838aaeb7a57d25be7db4fed7d3 (diff)
Merge branch 'master' into staging-next
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/cringify/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/tools/text/cringify/default.nix b/pkgs/tools/text/cringify/default.nix
deleted file mode 100644
index 6230f6575c3f6..0000000000000
--- a/pkgs/tools/text/cringify/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ lib
-, rustPlatform
-, fetchFromGitHub
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "cringify";
-  version = "0.1.1";
-
-  src = fetchFromGitHub {
-    owner = "sansyrox";
-    repo = "cringify";
-    rev = "dd753818f8dd4b343be9370d2c29a6be070ad791";
-    hash = "sha256-6hSgOk9DzDfGtZX1vt6AQsKSLdPdqy2Mz3UtK6d2AuA=";
-  };
-
-  cargoHash = "sha256-w6lqPyUCaXZBQ1EmMyj0sVnEHugMD6JugIIK0rEa19Y=";
-
-  postPatch = ''
-    # Upstream forgot to update the version value
-    substituteInPlace src/main.rs --replace '0.1.0' ${version}
-  '';
-
-  # No tests are present in the repository
-  doCheck = false;
-
-  meta = {
-    description = "Annoy your friends with the cringified text";
-    homepage = "https://github.com/sansyrox/cringify";
-    license = lib.licenses.mit;
-    mainProgram = "cringify";
-    maintainers = with lib.maintainers; [ tomasajt ];
-  };
-}