nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
67f5b5a8 d5aaf150

+95 -27
+1
nixos/modules/services/web-apps/snipe-it.nix
··· 472 472 "d ${cfg.dataDir}/storage/framework/views 0700 ${user} ${group} - -" 473 473 "d ${cfg.dataDir}/storage/logs 0700 ${user} ${group} - -" 474 474 "d ${cfg.dataDir}/storage/uploads 0700 ${user} ${group} - -" 475 + "d ${cfg.dataDir}/storage/private_uploads 0700 ${user} ${group} - -" 475 476 ]; 476 477 477 478 users = {
+1 -1
nixos/modules/services/x11/desktop-managers/plasma5.nix
··· 188 188 runUsingSystemd = mkOption { 189 189 description = lib.mdDoc "Use systemd to manage the Plasma session"; 190 190 type = types.bool; 191 - default = false; 191 + default = true; 192 192 }; 193 193 194 194 excludePackages = mkOption {
+31
pkgs/applications/editors/zee/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub, pkg-config, openssl, stdenv, Security }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "zee"; 5 + version = "0.3.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "zee-editor"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-/9SogKOaXdFDB+e0//lrenTTbfmXqNFGr23L+6Pnm8w="; 12 + }; 13 + 14 + nativeBuildInputs = [ pkg-config ]; 15 + 16 + buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security; 17 + 18 + # disable downloading and building the tree-sitter grammars at build time 19 + # grammars can be configured in a config file and installed with `zee --build` 20 + # see https://github.com/zee-editor/zee#syntax-highlighting 21 + ZEE_DISABLE_GRAMMAR_BUILD=1; 22 + 23 + cargoSha256 = "sha256-mbqI1csnU95VWgax4GjIxB+nhMtmpaeJ8QQ3qb0hY4c="; 24 + 25 + meta = with lib; { 26 + description = "A modern text editor for the terminal written in Rust"; 27 + homepage = "https://github.com/zee-editor/zee"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ booklearner ]; 30 + }; 31 + }
+2 -2
pkgs/applications/misc/syncthingtray/default.nix
··· 21 21 }: 22 22 23 23 mkDerivation rec { 24 - version = "1.2.1"; 24 + version = "1.2.2"; 25 25 pname = "syncthingtray"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "Martchus"; 29 29 repo = "syncthingtray"; 30 30 rev = "v${version}"; 31 - sha256 = "sha256-qcfmePPSuaCydATNhUCZ9ee9tV1KqclP9PPX6UPILTM="; 31 + sha256 = "sha256-BdcMW9ePOLXOZnFxFb1h/mn5a6c8fHYFr9ckK9hXJAM="; 32 32 }; 33 33 34 34 buildInputs = [
+3 -3
pkgs/applications/terminal-emulators/wezterm/default.nix
··· 29 29 30 30 rustPlatform.buildRustPackage rec { 31 31 pname = "wezterm"; 32 - version = "20220624-141144-bd1b7c5d"; 32 + version = "20220807-113146-c2fee766"; 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "wez"; 36 36 repo = pname; 37 37 rev = version; 38 38 fetchSubmodules = true; 39 - sha256 = "sha256-7VuNOJ4xqTxumLft7wRj4zdN8Y2ZSYtXr/KuqaLNOgw="; 39 + sha256 = "sha256-2krngcANqcwq8wNQZSz01srJ6yEOkk03QnO2sL7SuJA="; 40 40 }; 41 41 42 42 postPatch = '' ··· 46 46 rm -r wezterm-ssh/tests 47 47 ''; 48 48 49 - cargoSha256 = "sha256-YvQ0APyPiYwISE/pDD2s+UgYFj4CKPdolb14FrNpocU="; 49 + cargoSha256 = "sha256-ZkDGCR86VSCuvVlo4Pf9Ifax2BZuBicZpB/K/7bIMls="; 50 50 51 51 nativeBuildInputs = [ 52 52 pkg-config
+1 -1
pkgs/build-support/cc-wrapper/default.nix
··· 482 482 hardening_unsupported_flags+=" stackprotector fortify" 483 483 '' + optionalString targetPlatform.isAvr '' 484 484 hardening_unsupported_flags+=" stackprotector pic" 485 - '' + optionalString (targetPlatform.libc == "newlib") '' 485 + '' + optionalString (targetPlatform.libc == "newlib" || targetPlatform.libc == "newlib-nano") '' 486 486 hardening_unsupported_flags+=" stackprotector fortify pie pic" 487 487 '' + optionalString (targetPlatform.libc == "musl" && targetPlatform.isx86_32) '' 488 488 hardening_unsupported_flags+=" stackprotector"
+2 -2
pkgs/data/misc/v2ray-domain-list-community/default.nix
··· 3 3 let 4 4 generator = pkgsBuildBuild.buildGoModule rec { 5 5 pname = "v2ray-domain-list-community"; 6 - version = "20220708161253"; 6 + version = "20220808014309"; 7 7 src = fetchFromGitHub { 8 8 owner = "v2fly"; 9 9 repo = "domain-list-community"; 10 10 rev = version; 11 - sha256 = "sha256-RLfb4DmigoQAKp00RHjGKGjQhCHqxSOLNnphiv1ub8s="; 11 + sha256 = "sha256-pqe6AjXDTN71tShD41/tQFljRiH7qJaZ8w5lcTs6dxk="; 12 12 }; 13 13 vendorSha256 = "sha256-Igx8yGWWVmVEogvbrosaK13LVs+ZZuYLBNji7iSfzdo="; 14 14 meta = with lib; {
+3 -3
pkgs/data/misc/v2ray-geoip/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "v2ray-geoip"; 5 - version = "202207070057"; 5 + version = "202208040058"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "v2fly"; 9 9 repo = "geoip"; 10 - rev = "cbabee03cf7b7b60b1167a8a14ba1eba9d9dbb77"; 11 - sha256 = "sha256-bWhsV7+aj75nd8NDeb5D5UjvCChhtXq9lpkaZN41wDk="; 10 + rev = "97174fe0eeb28838b0e5e805687d230df773e661"; 11 + sha256 = "sha256-hodJ4HQHbv9voSS847pAHd3YSmfkV7fKyJhEUApVN+w="; 12 12 }; 13 13 14 14 installPhase = ''
+1 -1
pkgs/development/compilers/gcc/common/configure-flags.nix
··· 97 97 # In uclibc cases, libgomp needs an additional '-ldl' 98 98 # and as I don't know how to pass it, I disable libgomp. 99 99 "--disable-libgomp" 100 - ] ++ lib.optional (targetPlatform.libc == "newlib") "--with-newlib" 100 + ] ++ lib.optional (targetPlatform.libc == "newlib" || targetPlatform.libc == "newlib-nano") "--with-newlib" 101 101 ++ lib.optional (targetPlatform.libc == "avrlibc") "--with-avrlibc" 102 102 ); 103 103
+3 -3
pkgs/development/compilers/unison/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "unison-code-manager"; 9 - milestone_id = "M3"; 9 + milestone_id = "M4"; 10 10 version = "1.0.${milestone_id}-alpha"; 11 11 12 12 src = if (stdenv.isDarwin) then 13 13 fetchurl { 14 14 url = "https://github.com/unisonweb/unison/releases/download/release/${milestone_id}/ucm-macos.tar.gz"; 15 - sha256 = "sha256-xshqqERBr60vz1qEnewlgNIvd24aE6/VtK5iBlanQHg="; 15 + sha256 = "A8i1jH9+W89M+XbmYx0knJsP5c/EdVE2T9L/EIL0USU="; 16 16 } 17 17 else 18 18 fetchurl { 19 19 url = "https://github.com/unisonweb/unison/releases/download/release/${milestone_id}/ucm-linux.tar.gz"; 20 - sha256 = "sha256-rt8Y1ZEQVHH6gk4JV3lH38H10TDwdLDnbnqjG2vyyy4="; 20 + sha256 = "OqtJiKAsefw2fVjhtsYUe+qLPqXBPFkHUaMh26EJBJ4="; 21 21 }; 22 22 23 23 # The tarball is just the prebuilt binary, in the archive root.
+1
pkgs/development/python-modules/eventlet/default.nix
··· 51 51 disabledTests = [ 52 52 # Tests requires network access 53 53 "test_017_ssl_zeroreturnerror" 54 + "test_018b_http_10_keepalive_framing" 54 55 "test_getaddrinfo" 55 56 "test_hosts_no_network" 56 57 "test_leakage_from_tracebacks"
-1
pkgs/development/python-modules/uvloop/default.nix
··· 48 48 # Depend on pyopenssl 49 49 "--deselect tests/test_tcp.py::Test_UV_TCPSSL::test_flush_before_shutdown" 50 50 "--deselect tests/test_tcp.py::Test_UV_TCPSSL::test_renegotiation" 51 - ] ++ lib.optionals stdenv.hostPlatform.isAarch [ 52 51 # test gets stuck in epoll_pwait on hydras aarch64 builders 53 52 # https://github.com/MagicStack/uvloop/issues/412 54 53 "--deselect tests/test_tcp.py::Test_AIO_TCPSSL::test_remote_shutdown_receives_trailing_data"
+2 -2
pkgs/development/tools/analysis/rr/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake, libpfm, zlib, pkg-config, python3Packages, which, procps, gdb, capnproto }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "5.5.0"; 4 + version = "5.6.0"; 5 5 pname = "rr"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mozilla"; 9 9 repo = "rr"; 10 10 rev = version; 11 - sha256 = "sha256-ZZhkmDWGNWejwXZEcFO9p9NG1dopK7kXRj7OrkJCPR0="; 11 + sha256 = "H39HPkAQGubXVQV3jCpH4Pz+7Q9n03PrS70utk7Tt2k="; 12 12 }; 13 13 14 14 postPatch = ''
+3 -3
pkgs/tools/admin/kics/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kics"; 5 - version = "1.5.12"; 5 + version = "1.5.13"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Checkmarx"; 9 9 repo = "kics"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-jHspStyjq5T9jzYDRYaf2gOI4F/X+h4nDn0PFUOHoBY="; 11 + sha256 = "sha256-+trrtcK0zIjgl8SzURbvaabB/RtDKMEYyU8ZttD0hOs="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-q5NuuP04kOoLVj210s17fIW2cxrsC/tAyET8YYGai0M="; 14 + vendorSha256 = "sha256-/hoyT/PJ/nEQFg/1CJTb4lwOQ8ZYZtuHQeQUpPZepvc="; 15 15 16 16 subPackages = [ "cmd/console" ]; 17 17
+31
pkgs/tools/misc/outils/default.nix
··· 1 + { stdenv, fetchFromGitHub, lib }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "outils"; 5 + version = "0.10"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "leahneukirchen"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-xYjILa0Km57q/xNP+M34r29WLGC15tzUNoUgPzQTtIs="; 12 + }; 13 + 14 + makeFlags = [ "PREFIX=$(out)" ]; 15 + 16 + meta = with lib; { 17 + homepage = "https://github.com/leahneukirchen/outils"; 18 + description = "Port of OpenBSD-exclusive tools such as `calendar`, `vis`, and `signify`"; 19 + license = with licenses; [ 20 + beerware 21 + bsd2 22 + bsd3 23 + bsdOriginal 24 + isc 25 + mit 26 + publicDomain 27 + ]; 28 + platforms = platforms.linux; 29 + maintainers = with maintainers; [ somasis ]; 30 + }; 31 + }
+2 -2
pkgs/tools/package-management/opkg/default.nix
··· 2 2 , autoreconfHook }: 3 3 4 4 stdenv.mkDerivation rec { 5 - version = "0.4.5"; 5 + version = "0.6.0"; 6 6 pname = "opkg"; 7 7 src = fetchurl { 8 8 url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz"; 9 - sha256 = "sha256-oSFKdfo0+5Io242kcwjg5xGxyT/Yk4zxZMEP0o61Dx4="; 9 + sha256 = "sha256-VoRHIu/yN9rxSqbmgUNvMkUhPFWQ7QzaN6ed9jf/Okw="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config autoreconfHook ];
+2 -3
pkgs/tools/typesetting/sile/default.nix
··· 33 33 luasocket 34 34 luautf8 35 35 penlight 36 - stdlib 37 36 vstruct 38 37 ] ++ lib.optionals (lib.versionOlder lua.luaversion "5.2") [ 39 38 bit32 ··· 43 44 44 45 stdenv.mkDerivation rec { 45 46 pname = "sile"; 46 - version = "0.13.3"; 47 + version = "0.14.1"; 47 48 48 49 src = fetchurl { 49 50 url = "https://github.com/sile-typesetter/sile/releases/download/v${version}/${pname}-${version}.tar.xz"; 50 - sha256 = "0x8w63xr3nd0is1pv55dlgnv7fkn8s5ny6453wn84h44i7qwdc8s"; 51 + sha256 = "1l0cl5rwpndn2zmcrydnd80cznpfr8m6v3s4qkx6n6q0lrcnxa56"; 51 52 }; 52 53 53 54 configureFlags = [
+6
pkgs/top-level/all-packages.nix
··· 5848 5848 5849 5849 zabbixctl = callPackage ../tools/misc/zabbixctl { }; 5850 5850 5851 + zee = callPackage ../applications/editors/zee { 5852 + inherit (darwin.apple_sdk.frameworks) Security; 5853 + }; 5854 + 5851 5855 zeek = callPackage ../applications/networking/ids/zeek { }; 5852 5856 5853 5857 zoekt = callPackage ../tools/text/zoekt { }; ··· 10032 10028 openmpi = callPackage ../development/libraries/openmpi { }; 10033 10029 10034 10030 ouch = callPackage ../tools/compression/ouch { }; 10031 + 10032 + outils = callPackage ../tools/misc/outils {}; 10035 10033 10036 10034 mpi = openmpi; # this attribute should used to build MPI applications 10037 10035