2020-05-03 17:23:10 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, gnugrep, nix }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "nix-direnv";
|
2020-12-25 19:35:03 +01:00
|
|
|
version = "1.2";
|
2020-05-03 17:23:10 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nix-community";
|
|
|
|
repo = "nix-direnv";
|
2020-11-01 23:39:49 +01:00
|
|
|
rev = version;
|
2020-12-25 19:35:03 +01:00
|
|
|
sha256 = "sha256-/mlM1EeUlr1nTUJ5rB41idzk3Mfy/htjjPUARYDFpb0=";
|
2020-05-03 17:23:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# Substitute instead of wrapping because the resulting file is
|
|
|
|
# getting sourced, not executed:
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace direnvrc \
|
|
|
|
--replace "grep" "${gnugrep}/bin/grep" \
|
|
|
|
--replace "nix-shell" "${nix}/bin/nix-shell" \
|
|
|
|
--replace "nix-instantiate" "${nix}/bin/nix-instantiate"
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2020-05-11 07:49:23 +02:00
|
|
|
runHook preInstall
|
2020-05-03 17:23:10 +02:00
|
|
|
install -m500 -D direnvrc $out/share/nix-direnv/direnvrc
|
2020-05-11 07:49:23 +02:00
|
|
|
runHook postInstall
|
2020-05-03 17:23:10 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-05-03 17:23:10 +02:00
|
|
|
description = "A fast, persistent use_nix implementation for direnv";
|
|
|
|
homepage = "https://github.com/nix-community/nix-direnv";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2020-05-11 07:49:37 +02:00
|
|
|
maintainers = with maintainers; [ mic92 ];
|
2020-05-03 17:23:10 +02:00
|
|
|
};
|
|
|
|
}
|