2017-08-14 15:23:34 +01:00
|
|
|
{ stdenv, fetchFromGitHub, buildGoPackage, bash, writeText}:
|
2013-11-17 14:00:12 +00:00
|
|
|
|
2017-08-14 15:23:34 +01:00
|
|
|
buildGoPackage rec {
|
2013-11-17 14:00:12 +00:00
|
|
|
name = "direnv-${version}";
|
2017-12-13 15:33:45 +00:00
|
|
|
version = "2.14.0";
|
2017-08-14 15:23:34 +01:00
|
|
|
goPackagePath = "github.com/direnv/direnv";
|
2016-03-27 15:37:07 +01:00
|
|
|
|
2016-07-03 16:55:51 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "direnv";
|
|
|
|
repo = "direnv";
|
|
|
|
rev = "v${version}";
|
2017-12-13 15:33:45 +00:00
|
|
|
sha256 = "0xgb895dda7q7qyl5lg1jfjfb82daaf133dx0vw8lp7d67xqv9r8";
|
2013-11-17 14:00:12 +00:00
|
|
|
};
|
|
|
|
|
2017-08-14 15:23:34 +01:00
|
|
|
postConfigure = ''
|
|
|
|
cd $NIX_BUILD_TOP/go/src/$goPackagePath
|
|
|
|
'';
|
2013-11-17 14:00:12 +00:00
|
|
|
|
2016-07-03 16:55:51 +01:00
|
|
|
buildPhase = ''
|
2016-07-04 12:46:15 +01:00
|
|
|
make BASH_PATH=${bash}/bin/bash
|
2016-07-03 16:55:51 +01:00
|
|
|
'';
|
2013-11-17 14:00:12 +00:00
|
|
|
|
2016-07-03 16:55:51 +01:00
|
|
|
installPhase = ''
|
2017-08-14 15:23:34 +01: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 16:55:51 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 11:53:46 +01:00
|
|
|
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 11:05:13 +01:00
|
|
|
homepage = https://direnv.net;
|
2016-07-03 16:55:51 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
2013-11-17 14:00:12 +00:00
|
|
|
};
|
|
|
|
}
|