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

49 lines
1.4 KiB
Nix
Raw Normal View History

2018-11-22 21:25:05 +00:00
{ stdenv, fetchFromGitHub, buildGoPackage, bash, fetchpatch }:
2013-11-17 14:00:12 +00:00
2017-08-14 14:23:34 +00:00
buildGoPackage rec {
2013-11-17 14:00:12 +00:00
name = "direnv-${version}";
2019-03-31 19:15:16 +00:00
version = "2.20.0";
2017-08-14 14:23:34 +00:00
goPackagePath = "github.com/direnv/direnv";
2016-03-27 14:37:07 +00:00
2016-07-03 15:55:51 +00:00
src = fetchFromGitHub {
owner = "direnv";
repo = "direnv";
rev = "v${version}";
2019-03-31 19:15:16 +00:00
sha256 = "0ds8abwasymbsn9vak2105gczfgka4mz1i6kf1lvc3zm27v55cij";
2013-11-17 14:00:12 +00:00
};
2017-08-14 14:23:34 +00:00
postConfigure = ''
cd $NIX_BUILD_TOP/go/src/$goPackagePath
'';
2013-11-17 14:00:12 +00:00
2018-11-22 21:25:05 +00:00
# we have no bash at the moment for windows
makeFlags = stdenv.lib.optional (!stdenv.hostPlatform.isWindows) [
"BASH_PATH=${bash}/bin/bash"
];
2013-11-17 14:00:12 +00:00
2016-07-03 15:55:51 +00:00
installPhase = ''
2017-08-14 14:23:34 +00:00
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
2016-07-03 15:55:51 +00:00
'';
meta = with stdenv.lib; {
description = "A shell extension that manages your environment";
2013-11-17 14:00:12 +00:00
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.
'';
2017-10-06 10:05:13 +00:00
homepage = https://direnv.net;
2016-07-03 15:55:51 +00:00
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
2013-11-17 14:00:12 +00:00
};
}