nixpkgs/pkgs/tools/misc/nix-direnv/default.nix
adisbladis 349b8cfd36
nix-direnv: Fix nix executable paths
Match the upstream change in:
991ea66bb8
2021-02-19 11:56:59 +01:00

36 lines
990 B
Nix

{ lib, stdenv, fetchFromGitHub, gnugrep, nix }:
stdenv.mkDerivation rec {
pname = "nix-direnv";
version = "1.2.3";
src = fetchFromGitHub {
owner = "nix-community";
repo = "nix-direnv";
rev = version;
sha256 = "sha256-a0OyIONKtVWh9g/FZ6H0JSRuA1U48HSOX53G9z/h7t8=";
};
# Substitute instead of wrapping because the resulting file is
# getting sourced, not executed:
postPatch = ''
substituteInPlace direnvrc \
--replace "\''${NIX_BIN_PREFIX:-}" "\''${NIX_BIN_PREFIX:-${nix}/bin/}" \
--replace "grep" "${gnugrep}/bin/grep"
'';
installPhase = ''
runHook preInstall
install -m500 -D direnvrc $out/share/nix-direnv/direnvrc
runHook postInstall
'';
meta = with lib; {
description = "A fast, persistent use_nix implementation for direnv";
homepage = "https://github.com/nix-community/nix-direnv";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ mic92 ];
};
}