pkgs/development/libraries: stdenv.lib -> lib
This commit is contained in:
committed by
Jonathan Ringer
parent
046d24424e
commit
66e44425c6
@@ -1,4 +1,4 @@
|
||||
{ stdenv, callPackage, fetchFromGitHub
|
||||
{ lib, stdenv, callPackage, fetchFromGitHub
|
||||
, enableStatic ? stdenv.hostPlatform.isStatic
|
||||
, enableShared ? !stdenv.hostPlatform.isStatic
|
||||
}:
|
||||
@@ -17,7 +17,7 @@ in stdenv.mkDerivation rec {
|
||||
"--enable-static=${yesno enableStatic}"
|
||||
"--enable-shared=${yesno enableShared}"
|
||||
];
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A C library that may be linked into a C/C++ program to produce symbolic backtraces";
|
||||
homepage = https://github.com/ianlancetaylor/libbacktrace;
|
||||
maintainers = with maintainers; [ twey ];
|
||||
|
||||
Reference in New Issue
Block a user