comma: use nix from environment

(cherry picked from commit 1ef34b5ae8)
This commit is contained in:
Mario Rodas
2022-11-23 04:20:00 +00:00
committed by github-actions[bot]
parent b357494ee2
commit c783530ecf

View File

@@ -2,9 +2,8 @@
, fetchFromGitHub
, fzy
, lib
, makeWrapper
, nix
, nix-index
, makeBinaryWrapper
, nix-index-unwrapped
, rustPlatform
, testers
}:
@@ -22,11 +21,11 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-/1b3GF0flhvejZ3C/yOzRGl50sWR4IxprwRoMUYEvm8=";
nativeBuildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeBinaryWrapper ];
postInstall = ''
wrapProgram $out/bin/comma \
--prefix PATH : ${lib.makeBinPath [ nix fzy nix-index ]}
--prefix PATH : ${lib.makeBinPath [ fzy nix-index-unwrapped ]}
ln -s $out/bin/comma $out/bin/,
'';
@@ -39,6 +38,5 @@ rustPlatform.buildRustPackage rec {
description = "Runs programs without installing them";
license = licenses.mit;
maintainers = with maintainers; [ Enzime artturin ];
platforms = platforms.all;
};
}