2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, buildGoModule, bash, fish, zsh }:
|
2013-11-17 15:00:12 +01:00
|
|
|
|
2020-05-16 12:10:39 +02:00
|
|
|
buildGoModule rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "direnv";
|
2021-03-13 05:05:50 +01:00
|
|
|
version = "2.28.0";
|
2016-03-27 16:37:07 +02:00
|
|
|
|
2016-07-03 17:55:51 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "direnv";
|
|
|
|
repo = "direnv";
|
|
|
|
rev = "v${version}";
|
2021-03-13 05:05:50 +01:00
|
|
|
sha256 = "sha256-iZ3Lf7Yg+N9BWyLLF+MrT2gpPT9BTcp6pNMpfqwcZXo=";
|
2013-11-17 15:00:12 +01:00
|
|
|
};
|
|
|
|
|
2021-03-13 05:05:50 +01:00
|
|
|
vendorSha256 = "sha256-P8NLY1iGh86ntmYsTVlnNh5akdaM8nzcxDn6Nfmgr84=";
|
2021-01-01 17:39:41 +01:00
|
|
|
|
2018-11-22 22:25:05 +01:00
|
|
|
# we have no bash at the moment for windows
|
2020-05-29 16:02:49 +02:00
|
|
|
BASH_PATH =
|
2021-01-15 10:19:50 +01:00
|
|
|
lib.optionalString (!stdenv.hostPlatform.isWindows)
|
2020-05-29 16:02:49 +02:00
|
|
|
"${bash}/bin/bash";
|
|
|
|
|
|
|
|
# replace the build phase to use the GNUMakefile instead
|
|
|
|
buildPhase = ''
|
|
|
|
make BASH_PATH=$BASH_PATH
|
|
|
|
'';
|
2013-11-17 15:00:12 +01:00
|
|
|
|
2016-07-03 17:55:51 +02:00
|
|
|
installPhase = ''
|
2021-01-01 17:39:41 +01:00
|
|
|
make install PREFIX=$out
|
2016-07-03 17:55:51 +02:00
|
|
|
'';
|
|
|
|
|
2020-08-11 00:27:38 +02:00
|
|
|
checkInputs = [ fish zsh ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
make test-go test-bash test-fish test-zsh
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "A shell extension that manages your environment";
|
2013-11-17 15:00:12 +01: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 03:11:51 +02:00
|
|
|
homepage = "https://direnv.net";
|
2016-07-03 17:55:51 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
2013-11-17 15:00:12 +01:00
|
|
|
};
|
|
|
|
}
|