···384384 done385385386386 for d in $(grep '^dynamic-library-dirs:' "$packageConfDir"/* | cut -d' ' -f2- | tr ' ' '\n' | sort -u); do387387- for lib in "$d/"*.dylib; do387387+ for lib in "$d/"*.{dylib,so}; do388388 ln -s "$lib" "$dynamicLinksDir"389389 done390390 done
+1-13
pkgs/development/interpreters/perl/default.nix
···11{ config, lib, stdenv, fetchurl, pkgs, buildPackages, callPackage22-, enableThreading ? stdenv ? glibc, coreutils, makeWrapper22+, enableThreading ? true, coreutils, makeWrapper33}:4455with lib;66-77-# We can only compile perl with threading on platforms where we have a88-# real glibc in the stdenv.99-#1010-# Instead of silently building an unthreaded perl if this is not the1111-# case, we force callers to disableThreading explicitly, therefore1212-# documenting the platforms where the perl is not threaded.1313-#1414-# In the case of stdenv linux boot stage1 it's not possible to use1515-# threading because of the simpleness of the bootstrap glibc, so we1616-# use enableThreading = false there.1717-assert enableThreading -> (stdenv ? glibc);186197let208
···15151616stdenv.mkDerivation rec {1717 pname = "bluez";1818- version = "5.52";1818+ version = "5.53";19192020 src = fetchurl {2121 url = "mirror://kernel/linux/bluetooth/${pname}-${version}.tar.xz";2222- sha256 = "02jng21lp6fb3c2bh6vf9y7cj4gaxwk29dfc32ncy0lj0gi4q57p";2222+ sha256 = "1g1qg6dz6hl3csrmz75ixr12lwv836hq3ckb259svvrg62l2vaiq";2323 };24242525 pythonPath = with python3.pkgs; [···116116117117 meta = with stdenv.lib; {118118 description = "Bluetooth support for Linux";119119- homepage = http://www.bluez.org/;119119+ homepage = "http://www.bluez.org/";120120 license = with licenses; [ gpl2 lgpl21 ];121121 platforms = platforms.linux;122122 repositories.git = https://git.kernel.org/pub/scm/bluetooth/bluez.git;
+2-2
pkgs/os-specific/linux/libcap-ng/default.nix
···66 pname = "libcap-ng";77 # When updating make sure to test that the version with88 # all of the python bindings still works99- version = "0.7.9";99+ version = "0.7.10";10101111 src = fetchurl {1212 url = "${meta.homepage}/${pname}-${version}.tar.gz";1313- sha256 = "0a0k484kwv0zilry2mbl9k56cnpdhsjxdxin17jas6kkyfy345aa";1313+ sha256 = "1gzzy12agfa9ddipdf72h9y68zqqnvsjjylv4vnq6hj4w2safk58";1414 };15151616 nativeBuildInputs = [ swig ];
+3-3
pkgs/os-specific/linux/sysstat/default.nix
···11{ stdenv, fetchurl, gettext, bzip2 }:2233stdenv.mkDerivation rec {44- name = "sysstat-12.2.0";44+ name = "sysstat-12.3.1";5566 src = fetchurl {77 url = "http://pagesperso-orange.fr/sebastien.godard/${name}.tar.xz";88- sha256 = "0xc3983ccr0dwab1px2jhbgj86pfmmr29k7ggnwjwm1qigmriak1";88+ sha256 = "1hf1sy7akribmgavadqccxpy49yv0zfb3m81d2bj6jf8pyzwcrbq";99 };10101111 buildInputs = [ gettext ];···2323 patches = [ ./install.patch ];24242525 meta = {2626- homepage = http://sebastien.godard.pagesperso-orange.fr/;2626+ homepage = "http://sebastien.godard.pagesperso-orange.fr/";2727 description = "A collection of performance monitoring tools for Linux (such as sar, iostat and pidstat)";2828 license = stdenv.lib.licenses.gpl2Plus;2929 platforms = stdenv.lib.platforms.linux;
+4-4
pkgs/os-specific/linux/systemd/default.nix
···3030 bzip2 = null;3131};3232in stdenv.mkDerivation {3333- version = "243.4";3333+ version = "243.7";3434 pname = "systemd";35353636 # When updating, use https://github.com/systemd/systemd-stable tree, not the development one!···3838 src = fetchFromGitHub {3939 owner = "nixos";4040 repo = "systemd";4141- rev = "d8853d39a28b9884e0acd3ae5732a1e7caaf08af";4242- sha256 = "1wqm51i2czbbb3nara11mnxzqng4na1l8fvz7qnbxcrjsqm7hz18";4141+ rev = "e7d881488292fc8bdf96acd12767eca1bd65adae";4242+ sha256 = "0haj3iff3y13pm4w5dbqj1drp5wryqfad58jbbmnb6zdgis56h8f";4343 };44444545 outputs = [ "out" "lib" "man" "dev" ];···258258 passthru.interfaceVersion = 2;259259260260 meta = with stdenv.lib; {261261- homepage = http://www.freedesktop.org/wiki/Software/systemd;261261+ homepage = "https://www.freedesktop.org/wiki/Software/systemd/";262262 description = "A system and service manager for Linux";263263 license = licenses.lgpl21Plus;264264 platforms = platforms.linux;