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