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