pkgs/development/libraries: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-21 19:11:02 -08:00
committed by Jonathan Ringer
parent 046d24424e
commit 66e44425c6
1770 changed files with 4913 additions and 4912 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl}:
{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "5.2.0";
src = fetchurl {
@@ -8,11 +8,11 @@ stdenv.mkDerivation rec {
pname = "libosip2";
meta = {
license = stdenv.lib.licenses.lgpl21Plus;
license = lib.licenses.lgpl21Plus;
homepage = "https://www.gnu.org/software/osip/";
description = "The GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)";
maintainers = with stdenv.lib.maintainers; [ raskin ];
platforms = stdenv.lib.platforms.linux;
maintainers = with lib.maintainers; [ raskin ];
platforms = lib.platforms.linux;
inherit version;
};
}