2017-04-03 23:29:26 +00:00
|
|
|
{ stdenv, fetchFromGitHub, go, bash, writeText}:
|
2013-11-17 14:00:12 +00:00
|
|
|
|
2016-03-27 14:37:07 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-11-17 14:00:12 +00:00
|
|
|
name = "direnv-${version}";
|
2016-12-10 17:42:52 +00:00
|
|
|
version = "2.10.0";
|
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}";
|
2016-12-10 17:42:52 +00:00
|
|
|
sha256 = "04b098i8dlr6frks67ik0kbc281c6j8lkb6v0y33iwqv45n233q3";
|
2013-11-17 14:00:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ go ];
|
|
|
|
|
2016-07-03 15:55:51 +00:00
|
|
|
buildPhase = ''
|
2016-07-04 11:46:15 +00:00
|
|
|
make BASH_PATH=${bash}/bin/bash
|
2016-07-03 15:55:51 +00:00
|
|
|
'';
|
2013-11-17 14:00:12 +00:00
|
|
|
|
2016-07-03 15:55:51 +00:00
|
|
|
installPhase = ''
|
|
|
|
make install DESTDIR=$out
|
2017-04-03 23:29:26 +00:00
|
|
|
mkdir -p $out/share/fish/vendor_conf.d
|
|
|
|
echo "eval ($out/bin/direnv hook fish)" > $out/share/fish/vendor_conf.d/direnv.fish
|
2016-07-03 15:55:51 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 10:53:46 +00: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.
|
|
|
|
'';
|
|
|
|
homepage = http://direnv.net;
|
2016-07-03 15:55:51 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
|
|
inherit (go.meta) platforms;
|
2013-11-17 14:00:12 +00:00
|
|
|
};
|
|
|
|
}
|