about summary refs log tree commit diff
path: root/pkgs/tools/misc/faketty/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/faketty/default.nix')
-rw-r--r--pkgs/tools/misc/faketty/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/tools/misc/faketty/default.nix b/pkgs/tools/misc/faketty/default.nix
deleted file mode 100644
index dc48382945c9..000000000000
--- a/pkgs/tools/misc/faketty/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib, rustPlatform, fetchCrate }:
-
-rustPlatform.buildRustPackage rec {
-  pname = "faketty";
-  version = "1.0.17";
-
-  src = fetchCrate {
-    inherit pname version;
-    hash = "sha256-JUvQg8WLk5+O+3fbbQSUW6Mtp9TrYlrt+uwMAzm082Q=";
-  };
-
-  cargoHash = "sha256-Y+jcq2twIGDbHTA6aBGnyN9Old993Y/2j/fKnXhZGYU=";
-
-  postPatch = ''
-    patchShebangs tests/test.sh
-  '';
-
-  meta = with lib; {
-    description = "Wrapper to execute a command in a pty, even if redirecting the output";
-    homepage = "https://github.com/dtolnay/faketty";
-    changelog = "https://github.com/dtolnay/faketty/releases/tag/${version}";
-    license = with licenses; [ asl20 /* or */ mit ];
-    maintainers = with maintainers; [ figsoda ];
-    mainProgram = "faketty";
-  };
-}