about summary refs log tree commit diff stats
path: root/pkgs/by-name/co/comments/package.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-21 15:13:03 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-21 15:25:21 +0200
commit6a8085c043ce4abf11c9a75c93c4e5109e6e5ea7 (patch)
treef1003c23798b9d512aa37de9df257a54db45f70c /pkgs/by-name/co/comments/package.nix
parentfix(pkgs/tree-sitter-yts): Update grammar to new yt (diff)
downloadnixos-config-6a8085c043ce4abf11c9a75c93c4e5109e6e5ea7.tar.gz
nixos-config-6a8085c043ce4abf11c9a75c93c4e5109e6e5ea7.zip
refactor(pkgs/comments): Integrate into yt
Diffstat (limited to 'pkgs/by-name/co/comments/package.nix')
-rw-r--r--pkgs/by-name/co/comments/package.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/by-name/co/comments/package.nix b/pkgs/by-name/co/comments/package.nix
deleted file mode 100644
index e8a33bff..00000000
--- a/pkgs/by-name/co/comments/package.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]}
-  '';
-}