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

48 lines
1.3 KiB
Nix
Raw Normal View History

2017-08-14 14:23:34 +00:00
{ stdenv, fetchFromGitHub, buildGoPackage, bash, writeText}:
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}";
2017-08-14 14:23:34 +00:00
version = "2.12.2";
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}";
2017-08-14 14:23:34 +00:00
sha256 = "0i8fnxhcl1zin714wxk93x8fi36z4fibapfn4jl3qkwbczkj8c8b";
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
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 = ''
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.
'';
homepage = http://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
};
}