2021-06-28 23:13:55 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, gnugrep
|
|
|
|
, nixStable
|
|
|
|
, nixUnstable
|
|
|
|
, enableFlakes ? false
|
|
|
|
}:
|
2020-05-15 21:57:56 +00:00
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
let
|
|
|
|
nix = if enableFlakes then nixUnstable else nixStable;
|
|
|
|
in
|
2020-05-15 21:57:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "nix-direnv";
|
2021-06-28 23:13:55 +00:00
|
|
|
version = "1.4.0";
|
2020-05-15 21:57:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nix-community";
|
|
|
|
repo = "nix-direnv";
|
2020-11-03 02:18:15 +00:00
|
|
|
rev = version;
|
2021-06-28 23:13:55 +00:00
|
|
|
sha256 = "sha256-BKiuYvxgY2P7GK59jul5l0kHNrJtD2jmsMGmX0+09hY=";
|
2020-05-15 21:57:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Substitute instead of wrapping because the resulting file is
|
|
|
|
# getting sourced, not executed:
|
|
|
|
postPatch = ''
|
2021-06-28 23:13:55 +00:00
|
|
|
sed -i "1a NIX_BIN_PREFIX=${nix}/bin/" direnvrc
|
2021-03-09 03:18:52 +00:00
|
|
|
substituteInPlace direnvrc --replace "grep" "${gnugrep}/bin/grep"
|
2020-05-15 21:57:56 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
install -m500 -D direnvrc $out/share/nix-direnv/direnvrc
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-05-15 21:57:56 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|