about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/yt/ytc.nix
diff options
context:
space:
mode:
Diffstat (limited to 'sys/nixpkgs/pkgs/yt/ytc.nix')
-rw-r--r--sys/nixpkgs/pkgs/yt/ytc.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/sys/nixpkgs/pkgs/yt/ytc.nix b/sys/nixpkgs/pkgs/yt/ytc.nix
deleted file mode 100644
index dff5bcf8..00000000
--- a/sys/nixpkgs/pkgs/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]}
-  '';
-}