mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 10:18:05 +00:00
direnv: 2.25.1 -> 2.27.0 (#108125)
This commit is contained in:
parent
0587d518db
commit
1996ff7d42
@ -2,36 +2,29 @@
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "direnv";
|
||||
version = "2.25.1";
|
||||
|
||||
vendorSha256 = null;
|
||||
version = "2.27.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "direnv";
|
||||
repo = "direnv";
|
||||
rev = "v${version}";
|
||||
sha256 = "0bwr7zdzjm5p6bjyzafc2n57y83f0pv2bmj99rhi8f94hhfydlsf";
|
||||
sha256 = "05vvn59xd2q4yjizh5fprjib5xqq58by80d5avsm8nb1qxf383b1";
|
||||
};
|
||||
|
||||
vendorSha256 = "084x7d7sshcsyim76d6pl6127nlqacgwwnm965srl9y5w5nqzba6";
|
||||
|
||||
# we have no bash at the moment for windows
|
||||
BASH_PATH =
|
||||
stdenv.lib.optionalString (!stdenv.hostPlatform.isWindows)
|
||||
"${bash}/bin/bash";
|
||||
|
||||
# fix hardcoded GOFLAGS in makefile. remove once https://github.com/direnv/direnv/issues/718 is closed.
|
||||
postPatch = ''
|
||||
substituteInPlace GNUmakefile --replace "export GOFLAGS=-mod=vendor" ""
|
||||
'';
|
||||
|
||||
# replace the build phase to use the GNUMakefile instead
|
||||
buildPhase = ''
|
||||
make BASH_PATH=$BASH_PATH
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
make install DESTDIR=$out
|
||||
mkdir -p $out/share/fish/vendor_conf.d
|
||||
echo "eval ($out/bin/direnv hook fish)" > $out/share/fish/vendor_conf.d/direnv.fish
|
||||
make install PREFIX=$out
|
||||
'';
|
||||
|
||||
checkInputs = [ fish zsh ];
|
||||
|
Loading…
Reference in New Issue
Block a user