diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-21 15:13:03 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-21 15:25:21 +0200 |
commit | 6a8085c043ce4abf11c9a75c93c4e5109e6e5ea7 (patch) | |
tree | f1003c23798b9d512aa37de9df257a54db45f70c /pkgs/by-name/co/comments/package.nix | |
parent | fix(pkgs/tree-sitter-yts): Update grammar to new yt (diff) | |
download | nixos-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.nix | 25 |
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]} - ''; -} |