2021-06-08 01:40:10 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, gnugrep
|
2021-11-09 19:31:46 +00:00
|
|
|
, nix
|
|
|
|
, enableFlakes ? null # deprecated
|
2021-06-08 01:40:10 +01:00
|
|
|
}:
|
2020-05-03 16:23:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "nix-direnv";
|
2022-04-25 14:48:22 +01:00
|
|
|
version = "2.0.1";
|
2020-05-03 16:23:10 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nix-community";
|
|
|
|
repo = "nix-direnv";
|
2020-11-01 22:39:49 +00:00
|
|
|
rev = version;
|
2022-04-25 14:48:22 +01:00
|
|
|
sha256 = "sha256-edRdnMNYB5N9v9QlfSFNqJl93X0rSCllmzSZO9+sCOg=";
|
2020-05-03 16:23:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Substitute instead of wrapping because the resulting file is
|
|
|
|
# getting sourced, not executed:
|
|
|
|
postPatch = ''
|
2021-06-08 01:40:10 +01:00
|
|
|
sed -i "1a NIX_BIN_PREFIX=${nix}/bin/" direnvrc
|
2021-02-28 07:30:34 +00:00
|
|
|
substituteInPlace direnvrc --replace "grep" "${gnugrep}/bin/grep"
|
2020-05-03 16:23:10 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2020-05-11 06:49:23 +01:00
|
|
|
runHook preInstall
|
2020-05-03 16:23:10 +01:00
|
|
|
install -m500 -D direnvrc $out/share/nix-direnv/direnvrc
|
2020-05-11 06:49:23 +01:00
|
|
|
runHook postInstall
|
2020-05-03 16:23:10 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-05-03 16:23:10 +01:00
|
|
|
description = "A fast, persistent use_nix implementation for direnv";
|
|
|
|
homepage = "https://github.com/nix-community/nix-direnv";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2022-05-06 13:35:40 +01:00
|
|
|
maintainers = with maintainers; [ mic92 bbenne10 ];
|
2020-05-03 16:23:10 +01:00
|
|
|
};
|
|
|
|
}
|