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 11:10:39 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "direnv";
|
2022-03-27 12:15:43 +01:00
|
|
|
version = "2.31.0";
|
2016-03-27 15:37:07 +01:00
|
|
|
|
2016-07-03 16:55:51 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "direnv";
|
|
|
|
repo = "direnv";
|
|
|
|
rev = "v${version}";
|
2022-03-27 12:15:43 +01:00
|
|
|
sha256 = "sha256-s3IzckePNjr8Bo4kDXj3/WJgybirvtBd9hW2+eWPorA=";
|
2013-11-17 14:00:12 +00:00
|
|
|
};
|
|
|
|
|
2021-12-24 00:13:12 +00:00
|
|
|
vendorSha256 = "sha256-YhgQUl9fdictEtz6J88vEzznGd8Ipeb9AYo/p1ZLz5k=";
|
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 15:02:49 +01:00
|
|
|
BASH_PATH =
|
2021-01-15 09:19:50 +00:00
|
|
|
lib.optionalString (!stdenv.hostPlatform.isWindows)
|
2020-05-29 15:02:49 +01: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 16:55:51 +01:00
|
|
|
installPhase = ''
|
2021-01-01 16:39:41 +00:00
|
|
|
make install PREFIX=$out
|
2016-07-03 16:55:51 +01:00
|
|
|
'';
|
|
|
|
|
2020-08-10 23:27:38 +01:00
|
|
|
checkInputs = [ fish zsh ];
|
|
|
|
|
|
|
|
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 11:53:46 +01: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 02:11:51 +01:00
|
|
|
homepage = "https://direnv.net";
|
2016-07-03 16:55:51 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
2013-11-17 14:00:12 +00:00
|
|
|
};
|
|
|
|
}
|