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
+6 -6
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchpatch, pkg-config, glib, autoreconfHook }:
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, glib, autoreconfHook }:
let
cross = stdenv.hostPlatform != stdenv.buildPlatform;
@@ -24,15 +24,15 @@ in stdenv.mkDerivation (rec {
patches = [ ./deadlock.patch ]
++ map fetchurl (import ./debian-patches.nix)
++ stdenv.lib.optional stdenv.cc.isClang ./returnval.patch
++ stdenv.lib.optional stdenv.hostPlatform.isMusl (fetchpatch {
++ lib.optional stdenv.cc.isClang ./returnval.patch
++ lib.optional stdenv.hostPlatform.isMusl (fetchpatch {
name = "fix-pthread-mutex.patch";
url = "https://git.alpinelinux.org/aports/plain/main/gamin/fix-pthread-mutex.patch?h=3.4-stable&id=a1a836b089573752c1b0da7d144c0948b04e8ea8";
sha256 = "13igdbqsxb3sz0h417k6ifmq2n4siwqspj6slhc7fdl5wd1fxmdz";
}) ++ stdenv.lib.optional (cross) ./abstract-socket-namespace.patch ;
}) ++ lib.optional (cross) ./abstract-socket-namespace.patch ;
meta = with stdenv.lib; {
meta = with lib; {
homepage = "https://people.gnome.org/~veillard/gamin/";
description = "A file and directory monitoring system";
maintainers = with maintainers; [ lovek323 ];
@@ -41,7 +41,7 @@ in stdenv.mkDerivation (rec {
};
}
// stdenv.lib.optionalAttrs stdenv.isDarwin {
// lib.optionalAttrs stdenv.isDarwin {
preBuild = ''
sed -i 's/,--version-script=.*$/\\/' libgamin/Makefile
'';