lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
cf671bd5 f8cf6779

+296 -81
+1 -1
nixos/modules/services/web-servers/nginx/default.nix
··· 896 896 PrivateMounts = true; 897 897 # System Call Filtering 898 898 SystemCallArchitectures = "native"; 899 - SystemCallFilter = "~@cpu-emulation @debug @keyring @ipc @mount @obsolete @privileged @setuid"; 899 + SystemCallFilter = "~@cpu-emulation @debug @keyring @ipc @mount @obsolete @privileged @setuid @mincore"; 900 900 }; 901 901 }; 902 902
+3 -1
pkgs/applications/graphics/menyoki/default.nix
··· 6 6 , stdenv 7 7 , libX11 8 8 , libXrandr 9 + , AppKit 9 10 , withSki ? true 10 11 }: 11 12 ··· 25 26 nativeBuildInputs = [ installShellFiles ] 26 27 ++ lib.optional stdenv.isLinux pkg-config; 27 28 28 - buildInputs = lib.optionals stdenv.isLinux [ libX11 libXrandr ]; 29 + buildInputs = lib.optionals stdenv.isLinux [ libX11 libXrandr ] 30 + ++ lib.optional stdenv.isDarwin AppKit; 29 31 30 32 buildNoDefaultFeatures = !withSki; 31 33
+43 -22
pkgs/applications/misc/cardpeek/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, 2 - glib, gtk3, pcsclite, lua5_2, curl, readline }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , pkg-config 5 + , autoreconfHook 6 + , glib 7 + , gtk3 8 + , pcsclite 9 + , lua5_2 10 + , curl 11 + , readline 12 + , PCSC 13 + , xcbuild 14 + }: 3 15 let 4 16 version = "0.8.4"; 5 17 in 6 - stdenv.mkDerivation { 7 - pname = "cardpeek"; 8 - inherit version; 18 + stdenv.mkDerivation { 19 + pname = "cardpeek"; 20 + inherit version; 9 21 10 - src = fetchFromGitHub { 11 - owner = "L1L1"; 12 - repo = "cardpeek"; 13 - rev = "cardpeek-${version}"; 14 - sha256 = "1ighpl7nvcvwnsd6r5h5n9p95kclwrq99hq7bry7s53yr57l6588"; 15 - }; 22 + src = fetchFromGitHub { 23 + owner = "L1L1"; 24 + repo = "cardpeek"; 25 + rev = "cardpeek-${version}"; 26 + sha256 = "1ighpl7nvcvwnsd6r5h5n9p95kclwrq99hq7bry7s53yr57l6588"; 27 + }; 28 + 29 + postPatch = lib.optionalString stdenv.isDarwin '' 30 + # replace xcode check and hard-coded PCSC framework path 31 + substituteInPlace configure.ac \ 32 + --replace 'if test ! -e "/Applications/Xcode.app/"; then' 'if test yes != yes; then' \ 33 + --replace 'PCSC_HEADERS=`ls -d /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/*.sdk/System/Library/Frameworks/PCSC.framework/Versions/Current/Headers/ | sort | head -1`' 'PCSC_HEADERS=${PCSC}/Library/Frameworks/PCSC.framework/Headers' 34 + ''; 16 35 17 - nativeBuildInputs = [ pkg-config autoreconfHook ]; 18 - buildInputs = [ glib gtk3 pcsclite lua5_2 curl readline ]; 36 + nativeBuildInputs = [ pkg-config autoreconfHook ]; 37 + buildInputs = [ glib gtk3 lua5_2 curl readline ] 38 + ++ lib.optional stdenv.isDarwin PCSC 39 + ++ lib.optional stdenv.isLinux pcsclite; 19 40 20 - enableParallelBuilding = true; 41 + enableParallelBuilding = true; 21 42 22 - meta = with lib; { 23 - homepage = "https://github.com/L1L1/cardpeek"; 24 - description = "A tool to read the contents of ISO7816 smart cards"; 25 - license = licenses.gpl3Plus; 26 - platforms = with platforms; linux ++ darwin; 27 - maintainers = with maintainers; [ embr ]; 28 - }; 29 - } 43 + meta = with lib; { 44 + homepage = "https://github.com/L1L1/cardpeek"; 45 + description = "A tool to read the contents of ISO7816 smart cards"; 46 + license = licenses.gpl3Plus; 47 + platforms = with platforms; linux ++ darwin; 48 + maintainers = with maintainers; [ embr ]; 49 + }; 50 + }
+3 -3
pkgs/applications/science/astronomy/gildas/default.nix
··· 7 7 in 8 8 9 9 stdenv.mkDerivation rec { 10 - srcVersion = "sep20a"; 11 - version = "20200901_a"; 10 + srcVersion = "nov21a"; 11 + version = "20211101_a"; 12 12 pname = "gildas"; 13 13 14 14 src = fetchurl { ··· 16 16 # source code of the previous release to a different directory 17 17 urls = [ "http://www.iram.fr/~gildas/dist/gildas-src-${srcVersion}.tar.xz" 18 18 "http://www.iram.fr/~gildas/dist/archive/gildas/gildas-src-${srcVersion}.tar.xz" ]; 19 - sha256 = "9faa0b3e674b5ffe5b1aee88027d7401a46ae28cd0b306595300547605d6222a"; 19 + sha256 = "0fb6iqwh4hm7v7sib7sx98vxdavn3d6q2gq6y6vxg2z29g31f8g2"; 20 20 }; 21 21 22 22 nativeBuildInputs = [ pkg-config groff perl getopt gfortran which ];
+4
pkgs/applications/science/math/R/default.nix
··· 33 33 ./no-usr-local-search-paths.patch 34 34 ]; 35 35 36 + # Test of the examples for package 'tcltk' fails in Darwin sandbox. See: 37 + # https://github.com/NixOS/nixpkgs/issues/146131 36 38 prePatch = lib.optionalString stdenv.isDarwin '' 37 39 substituteInPlace configure \ 38 40 --replace "-install_name libRblas.dylib" "-install_name $out/lib/R/lib/libRblas.dylib" \ 39 41 --replace "-install_name libRlapack.dylib" "-install_name $out/lib/R/lib/libRlapack.dylib" \ 40 42 --replace "-install_name libR.dylib" "-install_name $out/lib/R/lib/libR.dylib" 43 + substituteInPlace tests/Examples/Makefile.in \ 44 + --replace "test-Examples: test-Examples-Base" "test-Examples:" # do not test the examples 41 45 ''; 42 46 43 47 dontDisableStatic = static;
+2 -2
pkgs/development/libraries/igraph/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "igraph"; 24 - version = "0.9.4"; 24 + version = "0.9.5"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "igraph"; 28 28 repo = pname; 29 29 rev = version; 30 - sha256 = "sha256-tF+cnJRv125bSpZIpABTIHAfJO4TNfSBHjnzpNTbFgk="; 30 + sha256 = "sha256-R5v1nbfYyIOzdw7LmkGQE4yVxpTVs6YF62jkfFrA1z8="; 31 31 }; 32 32 33 33 # Normally, igraph wants us to call bootstrap.sh, which will call
+1 -1
pkgs/development/libraries/mapnik/default.nix
··· 93 93 meta = with lib; { 94 94 description = "An open source toolkit for developing mapping applications"; 95 95 homepage = "https://mapnik.org"; 96 - maintainers = with maintainers; [ hrdinka ]; 96 + maintainers = with maintainers; [ hrdinka erictapen ]; 97 97 license = licenses.lgpl21; 98 98 platforms = platforms.all; 99 99 # https://github.com/mapnik/mapnik/issues/4232
+2
pkgs/development/libraries/unicorn/default.nix
··· 2 2 , fetchFromGitHub 3 3 , pkg-config 4 4 , cmake 5 + , IOKit 5 6 }: 6 7 7 8 stdenv.mkDerivation rec { ··· 16 17 }; 17 18 18 19 nativeBuildInputs = [ pkg-config cmake ]; 20 + buildInputs = lib.optionals stdenv.isDarwin [ IOKit ]; 19 21 20 22 meta = with lib; { 21 23 description = "Lightweight multi-platform CPU emulator library";
+37 -10
pkgs/development/python-modules/atomman/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, isPy27 1 + { lib 2 + , buildPythonPackage 2 3 , cython 3 4 , datamodeldict 5 + , fetchFromGitHub 4 6 , matplotlib 5 7 , numericalunits 6 8 , numpy 7 9 , pandas 10 + , potentials 8 11 , pytest 12 + , pythonOlder 9 13 , scipy 10 14 , toolz 11 15 , xmltodict 16 + , python 12 17 }: 13 18 14 19 buildPythonPackage rec { 15 - version = "1.3.0"; 20 + version = "1.4.2"; 16 21 pname = "atomman"; 17 - disabled = isPy27; 22 + format = "setuptools"; 23 + 24 + disabled = pythonOlder "3.6"; 18 25 19 26 src = fetchFromGitHub { 20 27 owner = "usnistgov"; 21 - repo = "atomman"; 28 + repo = "atomman"; 22 29 rev = "v${version}"; 23 - sha256 = "09pfykd96wmw00s3kgabghykjn8b4yjml4ybpi7kwy7ygdmzcx51"; 30 + sha256 = "sha256-Kq4mDykYf74ylWw2golxc81CYKGokXro64YUsFctLmk="; 24 31 }; 25 32 26 - checkInputs = [ pytest ]; 27 - propagatedBuildInputs = [ xmltodict datamodeldict numpy matplotlib scipy pandas cython numericalunits toolz ]; 33 + propagatedBuildInputs = [ 34 + cython 35 + datamodeldict 36 + matplotlib 37 + numericalunits 38 + numpy 39 + pandas 40 + potentials 41 + scipy 42 + toolz 43 + xmltodict 44 + ]; 45 + 46 + checkInputs = [ 47 + pytest 48 + ]; 28 49 29 50 checkPhase = '' 30 - py.test tests -k 'not test_atomic' 51 + # pytestCheckHook doesn't work 52 + py.test tests -k "not test_rootdir and not test_version \ 53 + and not test_atomic_mass and not imageflags" 31 54 ''; 32 55 56 + pythonImportsCheck = [ 57 + "atomman" 58 + ]; 59 + 33 60 meta = with lib; { 61 + description = "Atomistic Manipulation Toolkit"; 34 62 homepage = "https://github.com/usnistgov/atomman/"; 35 - description = "Atomistic Manipulation Toolkit"; 36 63 license = licenses.mit; 37 - maintainers = [ maintainers.costrouc ]; 64 + maintainers = with maintainers; [ costrouc ]; 38 65 }; 39 66 }
+44
pkgs/development/python-modules/cdcs/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , numpy 5 + , pandas 6 + , pytestCheckHook 7 + , pythonOlder 8 + , requests 9 + }: 10 + 11 + buildPythonPackage rec { 12 + version = "0.1.5"; 13 + pname = "cdcs"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.6"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "usnistgov"; 20 + repo = "pycdcs"; 21 + rev = "v${version}"; 22 + sha256 = "0sd0s0mka2bvpxxiz98cjc2h5ncsb7d03af1q3w9w8pmvfsgj7pc"; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + numpy 27 + pandas 28 + requests 29 + ]; 30 + 31 + # Project has no tests 32 + doCheck = false; 33 + 34 + pythonImportsCheck = [ 35 + "cdcs" 36 + ]; 37 + 38 + meta = with lib; { 39 + description = "Python client for performing REST calls to configurable data curation system (CDCS) databases"; 40 + homepage = "https://github.com/usnistgov/pycdcs"; 41 + license = licenses.mit; 42 + maintainers = with maintainers; [ fab ]; 43 + }; 44 + }
+2 -2
pkgs/development/python-modules/clize/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "clize"; 18 - version = "4.2.0"; 18 + version = "4.2.1"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - sha256 = "06p47i6hri006v7xbx7myj02as1a6f34rv88wfa9rb067p13nmyz"; 22 + sha256 = "3177a028e4169d8865c79af82bdd441b24311d4bd9c0ae8803641882d340a51d"; 23 23 }; 24 24 25 25 checkInputs = [
+2 -2
pkgs/development/python-modules/cozy/default.nix
··· 1 1 { buildPythonPackage, isPy3k, fetchFromGitHub, lib, 2 - z3, ply, python-igraph, oset, ordered-set, dictionaries, setuptools }: 2 + z3, ply, igraph, oset, ordered-set, dictionaries, setuptools }: 3 3 4 4 buildPythonPackage { 5 5 pname = "cozy"; ··· 7 7 disabled = !isPy3k; 8 8 9 9 propagatedBuildInputs = [ 10 - setuptools z3 ply python-igraph oset ordered-set dictionaries 10 + setuptools z3 ply igraph oset ordered-set dictionaries 11 11 ]; 12 12 13 13 src = fetchFromGitHub {
+17 -2
pkgs/development/python-modules/explorerscript/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, antlr4-python3-runtime, pygments, python-igraph }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , antlr4-python3-runtime 6 + , igraph 7 + , pygments 8 + }: 2 9 3 10 buildPythonPackage rec { 4 11 pname = "explorerscript"; ··· 11 18 sha256 = "1vzyliiyrxx8l9sfbqcyr4xn5swd7znkxy69kn0vb5rban8hm9c1"; 12 19 }; 13 20 14 - propagatedBuildInputs = [ antlr4-python3-runtime python-igraph ]; 21 + patches = [ 22 + # https://github.com/SkyTemple/ExplorerScript/pull/17 23 + (fetchpatch { 24 + url = "https://github.com/SkyTemple/ExplorerScript/commit/47d8b3d246881d675a82b4049b87ed7d9a0e1b15.patch"; 25 + sha256 = "0sadw9l2nypl2s8lw526lvbdj4rzqdvrjncx4zxxgyp3x47csb48"; 26 + }) 27 + ]; 28 + 29 + propagatedBuildInputs = [ antlr4-python3-runtime igraph ]; 15 30 checkInputs = [ pygments ]; 16 31 17 32 meta = with lib; {
+2 -2
pkgs/development/python-modules/kmapper/default.nix
··· 8 8 , pytestCheckHook 9 9 , networkx 10 10 , matplotlib 11 - , python-igraph 11 + , igraph 12 12 , plotly 13 13 , ipywidgets 14 14 }: ··· 35 35 pytestCheckHook 36 36 networkx 37 37 matplotlib 38 - python-igraph 38 + igraph 39 39 plotly 40 40 ipywidgets 41 41 ];
+22 -13
pkgs/development/python-modules/libcloud/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , isPy27 5 - , mock 6 4 , pycrypto 5 + , pythonOlder 7 6 , requests 8 - , pytest-runner 9 - , pytest 10 - , requests-mock 11 - , typing 12 7 }: 13 8 14 9 buildPythonPackage rec { 15 10 pname = "apache-libcloud"; 16 - version = "3.4.0"; 11 + version = "3.4.1"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.6"; 17 15 18 16 src = fetchPypi { 19 17 inherit pname version; 20 - sha256 = "17618ccbe3493f2be015db9e1efa35080ff34d470de723f1384d908ff126e51c"; 18 + sha256 = "sha256-iPGNoM8/rAr3I+dD+3QdnRviUYge2reloNFimVW1ARs="; 21 19 }; 22 20 23 - checkInputs = [ mock pytest pytest-runner requests-mock ]; 24 - propagatedBuildInputs = [ pycrypto requests ] ++ lib.optionals isPy27 [ typing ]; 21 + propagatedBuildInputs = [ 22 + pycrypto 23 + requests 24 + ]; 25 + 26 + preConfigure = '' 27 + cp libcloud/test/secrets.py-dist libcloud/test/secrets.py 28 + ''; 25 29 26 - preConfigure = "cp libcloud/test/secrets.py-dist libcloud/test/secrets.py"; 30 + postPatch = '' 31 + substituteInPlace setup.py \ 32 + --replace "setup_requires=pytest_runner," "setup_requires=[]," 33 + ''; 27 34 28 35 # requires a certificates file 29 36 doCheck = false; 30 37 31 - pythonImportsCheck = [ "libcloud" ]; 38 + pythonImportsCheck = [ 39 + "libcloud" 40 + ]; 32 41 33 42 meta = with lib; { 34 43 description = "A unified interface to many cloud providers"; 35 44 homepage = "https://libcloud.apache.org/"; 36 45 changelog = "https://github.com/apache/libcloud/blob/v${version}/CHANGES.rst"; 37 46 license = licenses.asl20; 47 + maintainers = with maintainers; [ ]; 38 48 }; 39 - 40 49 }
+58
pkgs/development/python-modules/potentials/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , ipywidgets 5 + , cdcs 6 + , bibtexparser 7 + , habanero 8 + , pandas 9 + , requests 10 + , numpy 11 + , matplotlib 12 + , unidecode 13 + , datamodeldict 14 + , xmltodict 15 + , pytestCheckHook 16 + , pythonOlder 17 + }: 18 + 19 + buildPythonPackage rec { 20 + version = "0.3.1"; 21 + pname = "potentials"; 22 + format = "setuptools"; 23 + 24 + disabled = pythonOlder "3.7"; 25 + 26 + src = fetchPypi { 27 + inherit pname version; 28 + sha256 = "02l1rav5jdfsb00byxbswyhqdnjljp9y7g4ddn4mivzi7x39qa52"; 29 + }; 30 + 31 + propagatedBuildInputs = [ 32 + ipywidgets 33 + cdcs 34 + bibtexparser 35 + habanero 36 + pandas 37 + requests 38 + numpy 39 + matplotlib 40 + unidecode 41 + datamodeldict 42 + xmltodict 43 + ]; 44 + 45 + # Project has no tests 46 + doCheck = false; 47 + 48 + pythonImportsCheck = [ 49 + "potentials" 50 + ]; 51 + 52 + meta = with lib; { 53 + description = "Python API database tools for accessing the NIST Interatomic Potentials Repository"; 54 + homepage = "https://github.com/usnistgov/potentials"; 55 + license = licenses.mit; 56 + maintainers = with maintainers; [ fab ]; 57 + }; 58 + }
+2 -2
pkgs/development/python-modules/python-igraph/default.nix pkgs/development/python-modules/igraph/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "python-igraph"; 13 - version = "0.9.6"; 13 + version = "0.9.8"; 14 14 15 15 disabled = pythonOlder "3.6"; 16 16 ··· 18 18 owner = "igraph"; 19 19 repo = "python-igraph"; 20 20 rev = version; 21 - sha256 = "sha256-x/BUlMmSgjY2v6bVKPxmz86OCz6xgRUcfSqI3vV9MPs="; 21 + sha256 = "sha256-RtvT5/LZ/xP68yBB7DDKJGeNCiX4HyPTCuk+Ijd2nFs="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+1 -1
pkgs/development/python-modules/python-mapnik/default.nix
··· 68 68 69 69 meta = with lib; { 70 70 description = "Python bindings for Mapnik"; 71 - maintainers = with maintainers; [ ]; 71 + maintainers = with maintainers; [ erictapen ]; 72 72 homepage = "https://mapnik.org"; 73 73 license = licenses.lgpl21; 74 74 };
+6 -4
pkgs/os-specific/linux/nixos-rebuild/nixos-rebuild.sh
··· 29 29 profile=/nix/var/nix/profiles/system 30 30 buildHost=localhost 31 31 targetHost= 32 - maybeSudo=() 32 + remoteSudo= 33 + # comma separated list of vars to preserve when using sudo 34 + preservedSudoVars=NIXOS_INSTALL_BOOTLOADER 33 35 34 36 while [ "$#" -gt 0 ]; do 35 37 i="$1"; shift 1 ··· 100 102 shift 1 101 103 ;; 102 104 --use-remote-sudo) 103 - maybeSudo=(sudo --) 105 + remoteSudo=1 104 106 ;; 105 107 --flake) 106 108 flake="$1" ··· 126 128 esac 127 129 done 128 130 129 - if [ -n "$SUDO_USER" ]; then 130 - maybeSudo=(sudo --) 131 + if [[ -n "$SUDO_USER" || -n $remoteSudo ]]; then 132 + maybeSudo=(sudo --preserve-env="$preservedSudoVars" --) 131 133 fi 132 134 133 135 if [ -z "$buildHost" -a -n "$targetHost" ]; then
+2 -2
pkgs/servers/http/nginx/stable.nix
··· 1 1 { callPackage, ... } @ args: 2 2 3 3 callPackage ./generic.nix args { 4 - version = "1.20.1"; 5 - sha256 = "0jccnknx57yvbvx6qwwisa8rb5zm1wb54xnz0nm0phym6cay2qp4"; 4 + version = "1.20.2"; 5 + sha256 = "0hjsyjzd35qyw49w210f67g678kvzinw4kg1acb0l6c2fxspd24m"; 6 6 }
+7 -4
pkgs/servers/sql/mariadb/default.nix
··· 1 - { lib, stdenv, fetchzip, fetchFromGitHub, cmake, pkg-config, makeWrapper, ncurses, nixosTests 1 + { lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkg-config, makeWrapper, ncurses, nixosTests 2 2 , libiconv, openssl, pcre2, boost, judy, bison, libxml2, libkrb5, linux-pam, curl 3 3 , libaio, libevent, jemalloc, cracklib, systemd, perl 4 4 , bzip2, lz4, lzo, snappy, xz, zlib, zstd ··· 24 24 common = rec { # attributes common to both builds 25 25 version = "10.6.5"; 26 26 27 - src = fetchzip { 27 + src = fetchurl { 28 28 url = "https://downloads.mariadb.com/MariaDB/mariadb-${version}/source/mariadb-${version}.tar.gz"; 29 - sha256 = "0rvcllbplgn92kr5n3qxfasnsqc8cn9ijm01fb7i7j2p9zxnfhig"; 29 + sha256 = "sha256-4L4EBCjZpCqLtL0iG1Z/8lIs1vqJBjhic9pPA8XCCo8="; 30 30 }; 31 31 32 32 nativeBuildInputs = [ cmake pkg-config ] ··· 44 44 45 45 patches = [ 46 46 ./cmake-includedir.patch 47 - ]; 47 + ] 48 + # Fixes a build issue as documented on 49 + # https://jira.mariadb.org/browse/MDEV-26769?focusedCommentId=206073&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-206073 50 + ++ lib.optional (!stdenv.isLinux) ./macos-MDEV-26769-regression-fix.patch; 48 51 49 52 cmakeFlags = [ 50 53 "-DBUILD_CONFIG=mysql_release"
+12
pkgs/servers/sql/mariadb/macos-MDEV-26769-regression-fix.patch
··· 1 + diff -ru a/storage/innobase/include/buf0types.h b/storage/innobase/include/buf0types.h 2 + --- a/storage/innobase/include/buf0types.h 2021-11-17 02:37:32.000000000 -0500 3 + +++ b/storage/innobase/include/buf0types.h 2021-11-17 02:38:50.000000000 -0500 4 + @@ -179,7 +179,7 @@ 5 + #include "sux_lock.h" 6 + 7 + #ifdef SUX_LOCK_GENERIC 8 + -class page_hash_latch : private rw_lock 9 + +class page_hash_latch : public rw_lock 10 + { 11 + /** Wait for a shared lock */ 12 + void read_lock_wait();
+14 -3
pkgs/top-level/all-packages.nix
··· 2379 2379 2380 2380 catclock = callPackage ../applications/misc/catclock { }; 2381 2381 2382 - cardpeek = callPackage ../applications/misc/cardpeek { }; 2382 + cardpeek = callPackage ../applications/misc/cardpeek { inherit (darwin.apple_sdk.frameworks) PCSC; }; 2383 2383 2384 2384 cawbird = callPackage ../applications/networking/cawbird { }; 2385 2385 ··· 10647 10647 withRedis = true; 10648 10648 }; 10649 10649 10650 - unicorn = callPackage ../development/libraries/unicorn { }; 10650 + unicorn = callPackage ../development/libraries/unicorn { 10651 + inherit (darwin.apple_sdk.frameworks) IOKit; 10652 + }; 10651 10653 10652 10654 units = callPackage ../tools/misc/units { 10653 10655 enableCurrenciesUpdater = true; ··· 18508 18510 18509 18511 opencl-clang = callPackage ../development/libraries/opencl-clang { }; 18510 18512 18511 - mapnik = callPackage ../development/libraries/mapnik { }; 18513 + mapnik = callPackage ../development/libraries/mapnik { 18514 + gdal = gdal.override { 18515 + libgeotiff = libgeotiff.override { proj = proj_7; }; 18516 + libspatialite = libspatialite.override { proj = proj_7; }; 18517 + proj = proj_7; 18518 + }; 18519 + proj = proj_7; 18520 + }; 18521 + 18512 18522 18513 18523 marisa = callPackage ../development/libraries/marisa {}; 18514 18524 ··· 26611 26621 26612 26622 menyoki = callPackage ../applications/graphics/menyoki { 26613 26623 inherit (xorg) libX11 libXrandr; 26624 + inherit (darwin.apple_sdk.frameworks) AppKit; 26614 26625 }; 26615 26626 26616 26627 mercurial = callPackage ../applications/version-management/mercurial {
+1
pkgs/top-level/python-aliases.nix
··· 75 75 pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10 76 76 pytestquickcheck = pytest-quickcheck; # added 2021-07-20 77 77 pytestrunner = pytest-runner; # added 2021-01-04 78 + python-igraph = igraph; # added 2021-11-11 78 79 python-lz4 = lz4; # added 2018-06-01 79 80 python_mimeparse = python-mimeparse; # added 2021-10-31 80 81 python-subunit = subunit; # added 2021-09-10
+8 -4
pkgs/top-level/python-packages.nix
··· 1411 1411 1412 1412 cchardet = callPackage ../development/python-modules/cchardet { }; 1413 1413 1414 + cdcs = callPackage ../development/python-modules/cdcs { }; 1415 + 1414 1416 celery = callPackage ../development/python-modules/celery { }; 1415 1417 1416 1418 cement = callPackage ../development/python-modules/cement { }; ··· 3701 3703 ifcopenshell = callPackage ../development/python-modules/ifcopenshell { }; 3702 3704 3703 3705 ignite = callPackage ../development/python-modules/ignite { }; 3706 + 3707 + igraph = callPackage ../development/python-modules/igraph { 3708 + inherit (pkgs) igraph; 3709 + }; 3704 3710 3705 3711 ihatemoney = callPackage ../development/python-modules/ihatemoney { }; 3706 3712 ··· 5920 5926 5921 5927 pot = callPackage ../development/python-modules/pot { }; 5922 5928 5929 + potentials = callPackage ../development/python-modules/potentials { }; 5930 + 5923 5931 potr = callPackage ../development/python-modules/potr { }; 5924 5932 5925 5933 power = callPackage ../development/python-modules/power { }; ··· 7514 7522 python-hpilo = callPackage ../development/python-modules/python-hpilo { }; 7515 7523 7516 7524 python-http-client = callPackage ../development/python-modules/python-http-client { }; 7517 - 7518 - python-igraph = callPackage ../development/python-modules/python-igraph { 7519 - inherit (pkgs) igraph; 7520 - }; 7521 7525 7522 7526 pythonix = callPackage ../development/python-modules/pythonix { 7523 7527 nix = pkgs.nix_2_3;