mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, buildGoPackage, bash}:
|
|
|
|
buildGoPackage rec {
|
|
name = "direnv-${version}";
|
|
version = "2.17.0";
|
|
goPackagePath = "github.com/direnv/direnv";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "direnv";
|
|
repo = "direnv";
|
|
rev = "v${version}";
|
|
sha256 = "1dmanqpifx27cz41yc3ijpij0wrbgw9qny2d4n6jppfwf2qzyq4s";
|
|
};
|
|
|
|
postConfigure = ''
|
|
cd $NIX_BUILD_TOP/go/src/$goPackagePath
|
|
'';
|
|
|
|
buildPhase = ''
|
|
make 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 ];
|
|
};
|
|
}
|