nixpkgs/pkgs/tools/misc/nix-direnv/default.nix

45 lines
1.0 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, gnugrep
, nixStable
, nixUnstable
, enableFlakes ? false
}:
2020-05-03 16:23:10 +01:00
let
nix = if enableFlakes then nixUnstable else nixStable;
in
2020-05-03 16:23:10 +01:00
stdenv.mkDerivation rec {
pname = "nix-direnv";
2021-11-02 16:36:46 +00:00
version = "1.5.0";
2020-05-03 16:23:10 +01:00
src = fetchFromGitHub {
owner = "nix-community";
repo = "nix-direnv";
rev = version;
2021-11-02 16:36:46 +00:00
sha256 = "sha256-PEteip6FcaJ2wqdhSM9SqL7bJ4nimcOrC3s2pWunEIE=";
2020-05-03 16:23:10 +01:00
};
# Substitute instead of wrapping because the resulting file is
# getting sourced, not executed:
postPatch = ''
sed -i "1a NIX_BIN_PREFIX=${nix}/bin/" direnvrc
substituteInPlace direnvrc --replace "grep" "${gnugrep}/bin/grep"
2020-05-03 16:23:10 +01:00
'';
installPhase = ''
runHook preInstall
2020-05-03 16:23:10 +01:00
install -m500 -D direnvrc $out/share/nix-direnv/direnvrc
runHook postInstall
2020-05-03 16:23:10 +01: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;
2020-05-11 06:49:37 +01:00
maintainers = with maintainers; [ mic92 ];
2020-05-03 16:23:10 +01:00
};
}