dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / by-name / di / direnv / package.nix
blobb2ef901d02b0686c857e3e4aa21c92e57e91c4a0
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   buildGoModule,
6   bash,
7   fish,
8   zsh,
9 }:
11 buildGoModule rec {
12   pname = "direnv";
13   version = "2.35.0";
15   src = fetchFromGitHub {
16     owner = "direnv";
17     repo = "direnv";
18     rev = "v${version}";
19     hash = "sha256-C4FkBS+2MZGGlpWb7ng4Aa9IvqEuY716M5h2W3b8N1E=";
20   };
22   vendorHash = "sha256-O2NZgWn00uKLstYPIj9LwyF4kmitJ1FXltazv8RrmZg=";
24   # we have no bash at the moment for windows
25   BASH_PATH = lib.optionalString (!stdenv.hostPlatform.isWindows) "${bash}/bin/bash";
27   # replace the build phase to use the GNUMakefile instead
28   buildPhase = ''
29     make BASH_PATH=$BASH_PATH
30   '';
32   installPhase = ''
33     make install PREFIX=$out
34   '';
36   nativeCheckInputs = [
37     fish
38     zsh
39   ];
41   checkPhase = ''
42     export HOME=$(mktemp -d)
43     make test-go test-bash test-fish test-zsh
44   '';
46   meta = with lib; {
47     description = "Shell extension that manages your environment";
48     longDescription = ''
49       Once hooked into your shell direnv is looking for an .envrc file in your
50       current directory before every prompt.
52       If found it will load the exported environment variables from that bash
53       script into your current environment, and unload them if the .envrc is
54       not reachable from the current path anymore.
56       In short, this little tool allows you to have project-specific
57       environment variables.
58     '';
59     homepage = "https://direnv.net";
60     license = licenses.mit;
61     maintainers = [ maintainers.zimbatm ];
62     mainProgram = "direnv";
63   };