diff options
Diffstat (limited to 'pkgs/sources/comments/comments.nix')
-rw-r--r-- | pkgs/sources/comments/comments.nix | 25 |
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]} - ''; -} |