lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
5b18be2d 707b006b

+60 -31
+2 -2
pkgs/applications/misc/gallery-dl/default.nix
··· 2 3 buildPythonApplication rec { 4 pname = "gallery_dl"; 5 - version = "1.19.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "ea1a7bf908507a87edffde6d6be93b8859ab0832ca788b61690a13aa5dd52216"; 10 }; 11 12 propagatedBuildInputs = [ requests ];
··· 2 3 buildPythonApplication rec { 4 pname = "gallery_dl"; 5 + version = "1.19.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "7fec9ac69582dbd9922666e6ece3142ae52dc9679a2c4a613f6ee94ad09e5f68"; 10 }; 11 12 propagatedBuildInputs = [ requests ];
+26
pkgs/applications/networking/nextcloud-client/0001-When-creating-the-autostart-entry-do-not-use-an-abso.patch
···
··· 1 + From bade623bb98c957d9a274df75b58296beb8ae6a7 Mon Sep 17 00:00:00 2001 2 + From: Marvin Dostal <maffinmaffinmaffinmaffin@gmail.com> 3 + Date: Sun, 17 Oct 2021 21:26:51 +0200 4 + Subject: [PATCH] When creating the autostart entry, do not use an absolute 5 + path 6 + 7 + --- 8 + src/common/utility_unix.cpp | 2 +- 9 + 1 file changed, 1 insertion(+), 1 deletion(-) 10 + 11 + diff --git a/src/common/utility_unix.cpp b/src/common/utility_unix.cpp 12 + index 010408395..16964c64f 100644 13 + --- a/src/common/utility_unix.cpp 14 + +++ b/src/common/utility_unix.cpp 15 + @@ -83,7 +83,7 @@ void setLaunchOnStartup_private(const QString &appName, const QString &guiName, 16 + ts << QLatin1String("[Desktop Entry]") << endl 17 + << QLatin1String("Name=") << guiName << endl 18 + << QLatin1String("GenericName=") << QLatin1String("File Synchronizer") << endl 19 + - << QLatin1String("Exec=\"") << executablePath << "\" --background" << endl 20 + + << QLatin1String("Exec=") << "nextcloud --background" << endl 21 + << QLatin1String("Terminal=") << "false" << endl 22 + << QLatin1String("Icon=") << APPLICATION_ICON_NAME << endl 23 + << QLatin1String("Categories=") << QLatin1String("Network") << endl 24 + -- 25 + 2.31.1 26 +
+5 -2
pkgs/applications/networking/nextcloud-client/default.nix
··· 21 22 mkDerivation rec { 23 pname = "nextcloud-client"; 24 - version = "3.3.5"; 25 26 src = fetchFromGitHub { 27 owner = "nextcloud"; 28 repo = "desktop"; 29 rev = "v${version}"; 30 - sha256 = "sha256-kqNN9P0G/Obi/8PStmLxImQdqkhLnJoFZ7dLpqe11TI="; 31 }; 32 33 patches = [ 34 # Explicitly move dbus configuration files to the store path rather than `/etc/dbus-1/services`. 35 ./0001-Explicitly-copy-dbus-files-into-the-store-dir.patch 36 ]; 37 38 nativeBuildInputs = [ ··· 59 60 qtWrapperArgs = [ 61 "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libsecret ]}" 62 ]; 63 64 cmakeFlags = [
··· 21 22 mkDerivation rec { 23 pname = "nextcloud-client"; 24 + version = "3.3.6"; 25 26 src = fetchFromGitHub { 27 owner = "nextcloud"; 28 repo = "desktop"; 29 rev = "v${version}"; 30 + sha256 = "sha256-HhFm8rIsDaV4QmvHplbj49gf1vYCZyBl8WH5bvRHT7I="; 31 }; 32 33 patches = [ 34 # Explicitly move dbus configuration files to the store path rather than `/etc/dbus-1/services`. 35 ./0001-Explicitly-copy-dbus-files-into-the-store-dir.patch 36 + ./0001-When-creating-the-autostart-entry-do-not-use-an-abso.patch 37 ]; 38 39 nativeBuildInputs = [ ··· 60 61 qtWrapperArgs = [ 62 "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libsecret ]}" 63 + # See also: https://bugreports.qt.io/browse/QTBUG-85967 64 + "--set QML_DISABLE_DISK_CACHE 1" 65 ]; 66 67 cmakeFlags = [
+16 -16
pkgs/development/compilers/dotnet/default.nix
··· 79 }; 80 }; 81 82 - # v6.0 (RC) 83 84 aspnetcore_6_0 = buildAspNetCore { 85 - version = "6.0.0-rc.2.21480.10"; 86 sha512 = { 87 - x86_64-linux = "d48895237644a3999663b2e16baa2303d8b77f66385a04d8edb5601fdffacce18b1b1318827d09f74f6b133ff2c179ef659bd21cf8460289b5f81f404fa8b326"; 88 - aarch64-linux = "3a92e93a8cb0c186f1c4a822d46a37604bc470599dbcbe05a7f1ea7c7d1dd9c0e6571de524de8729d19d237078742a0b4e3a1daa11b5eb5f8cce74b69710ada4"; 89 - x86_64-darwin = "ed1cad94acf207d0f18201af1e0e6c386466f94b8fd0474dc8d59f47d8f3c456f3a55de392dda126e0e1f4f934249b0e17b7b86f6bc7c510dc475324ee1395f0"; 90 - aarch64-darwin = "688879db73aa6b7556da70907920f3e443dff54bf8624030352ed5ba3896cceda69040ef359dacf55d50cc52fc2c75057d259a1cc11a2258d4446ebbd2200820"; 91 }; 92 }; 93 94 runtime_6_0 = buildNetRuntime { 95 - version = "6.0.0-rc.2.21480.5"; 96 sha512 = { 97 - x86_64-linux = "45062417c6111af4d635868927e8f69d43f66c9e0f111cb71c1861eaf5ceda4aefa99d97c6ce3b13fac2bc7c57c435e6f8b2d43c51a3bb3304b42081d98f7047"; 98 - aarch64-linux = "b0f8128d994b0de0c72b9dd8083a7350218adfafedc643c59b497fa605420602004d9e21e8acb488d92bc498f9783a3240cfcafa77443eb6f08b66aadc4f5b65"; 99 - x86_64-darwin = "0f702645719af5a4f1e720c0f2a0c67c7a4a84fac525b3ac6ce6357ca6d44405aeca674d04d8a976a7338ddf8782350debd53dce85e614c837106ffadf84cfb9"; 100 - aarch64-darwin = "747abb8eaad53e0ca7e5b2908b620076fa68a75c5e822361483ed13f7544e31def26bbf67bb85f47633e2dddde9cb095503bf70d1a4b0b2f33c6ef6f887d95fa"; 101 }; 102 }; 103 104 sdk_6_0 = buildNetSdk { 105 - version = "6.0.100-rc.2.21505.57"; 106 sha512 = { 107 - x86_64-linux = "0a8f85a2757f61ca7f9b8c546af4554c2aac9cdb06f6d62879a60de6f2a3d37ea7136f48896c9c85828a2d55df354e7b9b5b4dc22896c927f0c6370a5ade1b9c"; 108 - aarch64-linux = "14aa96f47f7f3520075e41753c705bdbf7f84fd7cff7cc2add1095a13e3e3c44eaaf2d822551902f05a6ad0c9acd7f7424190b7c09c397004c632eddc8acd5ac"; 109 - x86_64-darwin = "6a896f2d1e8e2d00b52641e8b1aee88888a2b30e0f18e499b1eaf4ae7dbdaa24ea5af0dbd4a6a1cee715738e6e91cecdbc02c2c7d3d4c71d4c9af3e04f1b4fc9"; 110 - aarch64-darwin = "c96c8a86e36ca16a0e10f635250472d5c8eda290dc505ed8eb4bd6a68b8e6ae6b2770236f5bda1573bc3124229531b3ed7dd71f60a821e39aaaa6697a82fdf8a"; 111 }; 112 }; 113 }
··· 79 }; 80 }; 81 82 + # v6.0 83 84 aspnetcore_6_0 = buildAspNetCore { 85 + version = "6.0.0"; 86 sha512 = { 87 + x86_64-linux = "6a1ae878efdc9f654e1914b0753b710c3780b646ac160fb5a68850b2fd1101675dc71e015dbbea6b4fcf1edac0822d3f7d470e9ed533dd81d0cfbcbbb1745c6c"; 88 + aarch64-linux = "e61eade344b686180b8a709229d6b3180ea6f085523e5e4e4b0d23dd00cf9edce3e51a920c986b1bab7d04d8cab5aae219c3b533b6feb84b32a02810936859b0"; 89 + x86_64-darwin = "76029272ff50fbf9fcc513109b98c0db5f74dbf970c1380be4dfac0dae7558824d68a167d0a8ceb39042ff4a7ca973cdcc15afed2d1ffef55b0adba8e40c9073"; 90 + aarch64-darwin = "e459ddf33243d680baecc5378b9c4182daf42b8c36a9a996205d91146a614d048a385f953c43727350ad55b1221c5f5d43b383d03e3883e862bf12faeaa02dfb"; 91 }; 92 }; 93 94 runtime_6_0 = buildNetRuntime { 95 + version = "6.0.0"; 96 sha512 = { 97 + x86_64-linux = "7cc8d93f9495b516e1b33bf82af3af605f1300bcfeabdd065d448cc126bd97ab4da5ec5e95b7775ee70ab4baf899ff43671f5c6f647523fb41cda3d96f334ae5"; 98 + aarch64-linux = "b0f0f2b4dc0a31b06cc3af541a3c44260317ca3a4414a5d50e6cf859d93821b3d2c2246baec9f96004aeb1eb0e353631283b11cf3acc134d4694f0ed71c9503d"; 99 + x86_64-darwin = "d6842bddd9652dd7ad1d8156c3e9012f9412b3d89b4cfc0b6d644fd76744298aa5ed2cde8a80d14bb2b247ee162bae255875ee2ca62033a422dacb7adaeece2d"; 100 + aarch64-darwin = "5cfc3c8a70f0e90f09047d3eeccd699e7210756b60fabbf1a30d6fdc121df084e5d8c3210557273739d5421f031dc9e4d07c611406734ca0671585de6e28e028"; 101 }; 102 }; 103 104 sdk_6_0 = buildNetSdk { 105 + version = "6.0.100"; 106 sha512 = { 107 + x86_64-linux = "cb0d174a79d6294c302261b645dba6a479da8f7cf6c1fe15ae6998bc09c5e0baec810822f9e0104e84b0efd51fdc0333306cb2a0a6fcdbaf515a8ad8cf1af25b"; 108 + aarch64-linux = "e5983c1c599d6dc7c3c7496b9698e47c68247f04a5d0d1e3162969d071471297bce1c2fd3a1f9fb88645006c327ae79f880dcbdd8eefc9166fd717331f2716e7"; 109 + x86_64-darwin = "6e2f502a84f712d60daed31c4076c5b55ee98a03259adf4bdc01659afcac2be7050e5a404dcda35fdc598bf5cd766772c08abc483ed94f6985c9501057b0186a"; 110 + aarch64-darwin = "92ead34c7e082dbed2786db044385ddfc68673e096a3edf64bc0bf70c76ea1c5cb816cde99aab2d8c528a44c86593b812877d075486dd0ae565f0e01e9eaa562"; 111 }; 112 }; 113 }
pkgs/development/interpreters/lua-5/setup-hook.nix

This is a binary file and will not be displayed.

+7 -7
pkgs/development/tools/ocaml/opam/default.nix
··· 19 sha256 = "17ajdzrnmnyfig3s6hinb56mcmhywbssxhsq32dz0v90dhz3wmfv"; 20 }; 21 "cudf" = fetchurl { 22 - url = "https://gforge.inria.fr/frs/download.php/36602/cudf-0.9.tar.gz"; 23 sha256 = "0771lwljqwwn3cryl0plny5a5dyyrj4z6bw66ha5n8yfbpcy8clr"; 24 }; 25 "dose3" = fetchurl { 26 - url = "https://gforge.inria.fr/frs/download.php/file/36063/dose3-5.0.1.tar.gz"; 27 - sha256 = "00yvyfm4j423zqndvgc1ycnmiffaa2l9ab40cyg23pf51qmzk2jm"; 28 }; 29 "dune-local" = fetchurl { 30 url = "https://github.com/ocaml/dune/releases/download/2.9.0/dune-2.9.0.tbz"; ··· 67 sha256 = "0jnqsv6pqp5b5g7lcjwgd75zqqvcwcl5a32zi03zg1kvj79p5gxs"; 68 }; 69 opam = fetchurl { 70 - url = "https://github.com/ocaml/opam/archive/2.1.0.zip"; 71 - sha256 = "063df5gsvp4yrbqbnd8k7a1f04cf12prc5wh4f1200acs3jwjxwb"; 72 }; 73 }; 74 in stdenv.mkDerivation { 75 pname = "opam"; 76 - version = "2.1.0"; 77 78 nativeBuildInputs = [ makeWrapper unzip ]; 79 buildInputs = [ curl ncurses ocaml getconf ] ++ lib.optional stdenv.isLinux bubblewrap; ··· 133 platforms = platforms.all; 134 }; 135 } 136 - # Generated by: ./opam.nix.pl -v 2.1.0 -p opam-shebangs.patch
··· 19 sha256 = "17ajdzrnmnyfig3s6hinb56mcmhywbssxhsq32dz0v90dhz3wmfv"; 20 }; 21 "cudf" = fetchurl { 22 + url = "https://github.com/ocaml/opam-source-archives/raw/main/cudf-0.9.tar.gz"; 23 sha256 = "0771lwljqwwn3cryl0plny5a5dyyrj4z6bw66ha5n8yfbpcy8clr"; 24 }; 25 "dose3" = fetchurl { 26 + url = "https://gitlab.com/irill/dose3/-/archive/5.0.1/dose3-5.0.1.tar.gz"; 27 + sha256 = "1mh6fv8qbf8xx4h2dc0dpv2lzygvikzjhw1idrknibbwsjw3jg9c"; 28 }; 29 "dune-local" = fetchurl { 30 url = "https://github.com/ocaml/dune/releases/download/2.9.0/dune-2.9.0.tbz"; ··· 67 sha256 = "0jnqsv6pqp5b5g7lcjwgd75zqqvcwcl5a32zi03zg1kvj79p5gxs"; 68 }; 69 opam = fetchurl { 70 + url = "https://github.com/ocaml/opam/archive/2.1.1.zip"; 71 + sha256 = "0sm9a7yh1iqcd51j5wdrc34w71iga619hvmgyy5fq1hwvgmfssrj"; 72 }; 73 }; 74 in stdenv.mkDerivation { 75 pname = "opam"; 76 + version = "2.1.1"; 77 78 nativeBuildInputs = [ makeWrapper unzip ]; 79 buildInputs = [ curl ncurses ocaml getconf ] ++ lib.optional stdenv.isLinux bubblewrap; ··· 133 platforms = platforms.all; 134 }; 135 } 136 + # Generated by: ./opam.nix.pl -v 2.1.1 -p opam-shebangs.patch
+4 -4
pkgs/tools/networking/godns/default.nix
··· 2 3 buildGoModule rec { 4 pname = "godns"; 5 - version = "2.5"; 6 7 src = fetchFromGitHub { 8 owner = "TimothyYe"; 9 repo = "godns"; 10 rev = "v${version}"; 11 - sha256 = "sha256-ia0FmV2KlFPh9gmKOqVxiStgmBbX9vUIc7KllpUt44Q="; 12 }; 13 14 - vendorSha256 = "sha256-FZLDaMrPEyoTGFmGBlpqPWsMuobqwkBaot5qjcRJe9w="; 15 16 # Some tests require internet access, broken in sandbox 17 doCheck = false; 18 19 - ldflags = [ "-X main.Version=${version}" ]; 20 21 meta = with lib; { 22 description = "A dynamic DNS client tool supports AliDNS, Cloudflare, Google Domains, DNSPod, HE.net & DuckDNS & DreamHost, etc";
··· 2 3 buildGoModule rec { 4 pname = "godns"; 5 + version = "2.5.1"; 6 7 src = fetchFromGitHub { 8 owner = "TimothyYe"; 9 repo = "godns"; 10 rev = "v${version}"; 11 + sha256 = "sha256-a0wq/qPtwhAtm8khQsusHpsjXzsYixHqH1aAeBs1dKM="; 12 }; 13 14 + vendorSha256 = "sha256-TYjkow/9W467CMyqV2SSRJAuqXGdnAgR9gtfq4vX4u0="; 15 16 # Some tests require internet access, broken in sandbox 17 doCheck = false; 18 19 + ldflags = [ "-s" "-w" "-X main.Version=${version}" ]; 20 21 meta = with lib; { 22 description = "A dynamic DNS client tool supports AliDNS, Cloudflare, Google Domains, DNSPod, HE.net & DuckDNS & DreamHost, etc";