mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
beamPackages: add missing lib where needed (#110708)
changes in 2f78ee7
missed some places where lib had to be added
This commit is contained in:
parent
ab757a382c
commit
6a30c02ac3
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, writeText, elixir }:
|
||||
{ lib, stdenv, fetchFromGitHub, writeText, elixir }:
|
||||
|
||||
let
|
||||
shell = drv: stdenv.mkDerivation {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, buildHex }:
|
||||
{ lib, buildHex }:
|
||||
|
||||
buildHex {
|
||||
name = "pc";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchFromGitHub, buildRebar3 }:
|
||||
{ lib, stdenv, fetchFromGitHub, buildRebar3 }:
|
||||
|
||||
let
|
||||
shell = drv: stdenv.mkDerivation {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchFromGitHub, writeText, erlang }:
|
||||
{ lib, stdenv, fetchFromGitHub, writeText, erlang }:
|
||||
|
||||
let
|
||||
shell = drv: stdenv.mkDerivation {
|
||||
|
|
Loading…
Reference in a new issue