nixpkgs/pkgs/tools/misc/direnv/default.nix
2020-04-10 17:54:53 +01:00

49 lines
1.4 KiB
Nix

{ stdenv, fetchFromGitHub, buildGoPackage, bash }:
buildGoPackage rec {
pname = "direnv";
version = "2.21.2";
goPackagePath = "github.com/direnv/direnv";
src = fetchFromGitHub {
owner = "direnv";
repo = "direnv";
rev = "v${version}";
sha256 = "0afpxx8pwa1zb66l79af57drzjaazn2rp6306w4pxvqfh0zi2bri";
};
postConfigure = ''
cd $NIX_BUILD_TOP/go/src/$goPackagePath
'';
# we have no bash at the moment for windows
makeFlags = stdenv.lib.optional (!stdenv.hostPlatform.isWindows) [
"BASH_PATH=${bash}/bin/bash"
];
installPhase = ''
mkdir -p $out
make install DESTDIR=$bin
mkdir -p $bin/share/fish/vendor_conf.d
echo "eval ($bin/bin/direnv hook fish)" > $bin/share/fish/vendor_conf.d/direnv.fish
'';
meta = with stdenv.lib; {
description = "A shell extension that manages your environment";
longDescription = ''
Once hooked into your shell direnv is looking for an .envrc file in your
current directory before every prompt.
If found it will load the exported environment variables from that bash
script into your current environment, and unload them if the .envrc is
not reachable from the current path anymore.
In short, this little tool allows you to have project-specific
environment variables.
'';
homepage = "https://direnv.net";
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}