My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/direnv/default.nix

54 lines
1.4 KiB

{ lib, stdenv, fetchFromGitHub, buildGoModule, bash, fish, zsh }:
buildGoModule rec {
pname = "direnv";
version = "2.31.0";
src = fetchFromGitHub {
owner = "direnv";
repo = "direnv";
rev = "v${version}";
sha256 = "sha256-s3IzckePNjr8Bo4kDXj3/WJgybirvtBd9hW2+eWPorA=";
};
vendorSha256 = "sha256-YhgQUl9fdictEtz6J88vEzznGd8Ipeb9AYo/p1ZLz5k=";
# we have no bash at the moment for windows
BASH_PATH =
lib.optionalString (!stdenv.hostPlatform.isWindows)
"${bash}/bin/bash";
# replace the build phase to use the GNUMakefile instead
buildPhase = ''
make BASH_PATH=$BASH_PATH
'';
installPhase = ''
make install PREFIX=$out
'';
checkInputs = [ fish zsh ];
checkPhase = ''
export HOME=$(mktemp -d)
make test-go test-bash test-fish test-zsh
'';
meta = with 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 = teams.numtide.members;
};
}