about summary refs log tree commit diff stats
path: root/pkgs/sources/yt/ytc.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/sources/yt/ytc.nix')
-rw-r--r--pkgs/sources/yt/ytc.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/sources/yt/ytc.nix b/pkgs/sources/yt/ytc.nix
deleted file mode 100644
index dff5bcf8..00000000
--- a/pkgs/sources/yt/ytc.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
-  lib,
-  rustPlatform,
-  ytcc,
-  yt-dlp,
-  mpv,
-  makeWrapper,
-}:
-rustPlatform.buildRustPackage {
-  pname = "ytc";
-  version = "0.1.0";
-
-  src = ./.;
-  cargoLock = {
-    lockFile = ./Cargo.lock;
-  };
-
-  buildNoDefaultFeatures = true;
-  buildFeatures = ["ytc"];
-
-  nativeBuildInputs = [
-    makeWrapper
-  ];
-
-  postInstall = ''
-    wrapProgram $out/bin/ytc \
-      --set PATH ${lib.makeBinPath [mpv yt-dlp ytcc]}
-  '';
-}