2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, buildGoModule, bash, fish, zsh }:
|
2013-11-17 14:00:12 +00:00
|
|
|
|
2020-05-16 10:10:39 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "direnv";
|
2023-11-30 10:29:48 +00:00
|
|
|
version = "2.33.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}";
|
2023-11-30 10:29:48 +00:00
|
|
|
sha256 = "sha256-/xOqJ3dr+3S502rXHVBcHhgBCctoMYnWpfLqgrxIoN8=";
|
2013-11-17 14:00:12 +00:00
|
|
|
};
|
|
|
|
|
2023-11-30 10:29:48 +00:00
|
|
|
vendorHash = "sha256-QGPcNgA/iiGt0CdFs2kR3zLL5/SWulSyyf/pW212JpU=";
|
2021-01-01 16:39:41 +00:00
|
|
|
|
2018-11-22 21:25:05 +00:00
|
|
|
# we have no bash at the moment for windows
|
2020-05-29 14:02:49 +00:00
|
|
|
BASH_PATH =
|
2021-01-15 09:19:50 +00:00
|
|
|
lib.optionalString (!stdenv.hostPlatform.isWindows)
|
2020-05-29 14:02:49 +00:00
|
|
|
"${bash}/bin/bash";
|
|
|
|
|
|
|
|
# replace the build phase to use the GNUMakefile instead
|
|
|
|
buildPhase = ''
|
|
|
|
make BASH_PATH=$BASH_PATH
|
|
|
|
'';
|
2013-11-17 14:00:12 +00:00
|
|
|
|
2016-07-03 15:55:51 +00:00
|
|
|
installPhase = ''
|
2021-01-01 16:39:41 +00:00
|
|
|
make install PREFIX=$out
|
2016-07-03 15:55:51 +00:00
|
|
|
'';
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ fish zsh ];
|
2020-08-10 22:27:38 +00:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
make test-go test-bash test-fish test-zsh
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://direnv.net";
|
2016-07-03 15:55:51 +00:00
|
|
|
license = licenses.mit;
|
2023-11-20 21:27:26 +00:00
|
|
|
maintainers = [ maintainers.zimbatm ];
|
2023-07-31 19:21:43 +00:00
|
|
|
mainProgram = "direnv";
|
2013-11-17 14:00:12 +00:00
|
|
|
};
|
|
|
|
}
|