mirror of
https://github.com/nix-community/nix-direnv.git
synced 2025-11-08 19:46:11 +01:00
Merge pull request #98 from Hoverbear/fix-stdenv-lib-missing
fix(warn): stdenv.lib missing
This commit is contained in:
commit
a11b96b557
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ stdenv.mkDerivation {
|
||||||
install -m500 -D direnvrc $out/share/nix-direnv/direnvrc
|
install -m500 -D direnvrc $out/share/nix-direnv/direnvrc
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "A fast, persistent use_nix implementation for direnv";
|
description = "A fast, persistent use_nix implementation for direnv";
|
||||||
homepage = "https://github.com/nix-community/nix-direnv";
|
homepage = "https://github.com/nix-community/nix-direnv";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue