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

This commit is contained in:
Ben Siraphob
2021-01-22 00:00:13 +07:00
committed by Jonathan Ringer
parent 046d24424e
commit 66e44425c6
1770 changed files with 4913 additions and 4912 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv
{ lib, stdenv
, fetchgit
}:
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
src = fetchgit {
url = "https://git.code.sf.net/p/pstreams/code";
rev = let dot2Underscore = stdenv.lib.strings.stringAsChars (c: if c == "." then "_" else c);
rev = let dot2Underscore = lib.strings.stringAsChars (c: if c == "." then "_" else c);
in "RELEASE_${dot2Underscore version}";
sha256 = "0r8aj0nh5mkf8cvnzl8bdy4nm7i74vs83axxfimcd74kjfn0irys";
};
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
# `make install` fails on case-insensitive file systems (e.g. APFS by
# default) because this target exists
meta = with stdenv.lib; {
meta = with lib; {
description = "POSIX Process Control in C++";
longDescription = ''
PStreams allows you to run another program from your C++ application and