uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
54
pkgs/tools/misc/direnv/default.nix
Normal file
54
pkgs/tools/misc/direnv/default.nix
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue