lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
cf2149f1 2be25e10

+63 -41
+1 -1
nixos/modules/services/misc/zoneminder.nix
··· 366 366 }; 367 367 }; 368 368 369 - meta.maintainers = with lib.maintainers; [ peterhoeg ]; 369 + meta.maintainers = with lib.maintainers; [ ]; 370 370 }
+19 -3
pkgs/applications/misc/firestarter/default.nix
··· 2 2 , lib 3 3 , fetchFromGitHub 4 4 , fetchzip 5 + , addOpenGLRunpath 5 6 , cmake 6 7 , glibc_multi 7 8 , glibc ··· 9 10 , pkg-config 10 11 , cudatoolkit 11 12 , withCuda ? false 12 - , linuxPackages 13 13 }: 14 14 15 15 let ··· 60 60 fetchSubmodules = true; 61 61 }; 62 62 63 - nativeBuildInputs = [ cmake git pkg-config ]; 63 + nativeBuildInputs = [ 64 + cmake 65 + git 66 + pkg-config 67 + ] ++ lib.optionals withCuda [ 68 + addOpenGLRunpath 69 + ]; 64 70 65 71 buildInputs = [ hwloc ] ++ (if withCuda then 66 - [ glibc_multi cudatoolkit linuxPackages.nvidia_x11 ] 72 + [ glibc_multi cudatoolkit ] 67 73 else 68 74 [ glibc.static ]); 69 75 76 + NIX_LDFLAGS = lib.optionals withCuda [ 77 + "-L${cudatoolkit}/lib/stubs" 78 + ]; 79 + 70 80 cmakeFlags = [ 71 81 "-DFIRESTARTER_BUILD_HWLOC=OFF" 72 82 "-DCMAKE_C_COMPILER_WORKS=1" ··· 76 86 ]; 77 87 78 88 installPhase = '' 89 + runHook preInstall 79 90 mkdir -p $out/bin 80 91 cp src/FIRESTARTER${lib.optionalString withCuda "_CUDA"} $out/bin/ 92 + runHook postInstall 93 + ''; 94 + 95 + postFixup = lib.optionalString withCuda '' 96 + addOpenGLRunpath $out/bin/FIRESTARTER_CUDA 81 97 ''; 82 98 83 99 meta = with lib; {
+4 -4
pkgs/applications/misc/kile-wl/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "kile-wl"; 5 - version = "unstable-2021-08-03"; 5 + version = "unstable-2021-09-02"; 6 6 7 7 src = fetchFromGitLab { 8 8 owner = "snakedye"; 9 9 repo = "kile"; 10 - rev = "7f0b1578352d935084d3d56ef42487d2a8cfbfe8"; 11 - sha256 = "sha256-Ir9LNQt7/7TjhCJ69HYx1tBXeq/i7F3ydmenvchZgDI="; 10 + rev = "acd61f7e59cc34091c976b0cdc3067dd35b53cae"; 11 + sha256 = "sha256-O5sdPw9tR3GFPmJmb/QDmdBc7yeSGui4k+yn4Xo016A="; 12 12 }; 13 13 14 14 passthru.updateScript = unstableGitUpdater { 15 15 url = "https://gitlab.com/snakedye/kile.git"; 16 16 }; 17 17 18 - cargoSha256 = "sha256-195rPxX3BTxJ0xLgye14aWuBd5OuJ30wyUa4wrbQ3Xo="; 18 + cargoSha256 = "sha256-2QCv5fk0AH4sv0QJ/16zniHfg3HZLoHB7dl6vSfkxpE="; 19 19 20 20 nativeBuildInputs = [ scdoc ]; 21 21
+24 -13
pkgs/applications/networking/instant-messengers/quaternion/default.nix
··· 1 - { mkDerivation, stdenv, lib, fetchFromGitHub, cmake 2 - , qtbase, qtquickcontrols, qtquickcontrols2, qtkeychain, qtmultimedia, qttools 3 - , libquotient, libsecret 1 + { mkDerivation 2 + , stdenv 3 + , lib 4 + , fetchFromGitHub 5 + , cmake 6 + , qtbase 7 + , qtquickcontrols 8 + , qtquickcontrols2 9 + , qtkeychain 10 + , qtmultimedia 11 + , qttools 12 + , libquotient 13 + , libsecret 4 14 }: 5 15 6 16 mkDerivation rec { 7 17 pname = "quaternion"; 8 - version = "0.0.9.5-beta2"; 18 + version = "0.0.95"; 9 19 10 20 src = fetchFromGitHub { 11 21 owner = "QMatrixClient"; 12 22 repo = "Quaternion"; 13 23 rev = version; 14 - sha256 = "sha256-K4SMB5kL0YO2OIeNUu4hWqU4E4n4vZDRRsJVYmCZqvM="; 24 + sha256 = "sha256-WqhHqo4ySxufulC+TxS2ko2R5hUiORgdNAkp5Awdcw8="; 15 25 }; 16 26 17 27 buildInputs = [ ··· 26 36 27 37 nativeBuildInputs = [ cmake qttools ]; 28 38 29 - postInstall = if stdenv.isDarwin then '' 30 - mkdir -p $out/Applications 31 - mv $out/bin/quaternion.app $out/Applications 32 - rmdir $out/bin || : 33 - '' else '' 34 - substituteInPlace $out/share/applications/com.github.quaternion.desktop \ 35 - --replace 'Exec=quaternion' "Exec=$out/bin/quaternion" 36 - ''; 39 + postInstall = 40 + if stdenv.isDarwin then '' 41 + mkdir -p $out/Applications 42 + mv $out/bin/quaternion.app $out/Applications 43 + rmdir $out/bin || : 44 + '' else '' 45 + substituteInPlace $out/share/applications/com.github.quaternion.desktop \ 46 + --replace 'Exec=quaternion' "Exec=$out/bin/quaternion" 47 + ''; 37 48 38 49 meta = with lib; { 39 50 description =
+3 -3
pkgs/applications/version-management/git-and-tools/pass-git-helper/default.nix
··· 2 2 3 3 buildPythonApplication rec { 4 4 pname = "pass-git-helper"; 5 - version = "1.1.1"; 5 + version = "1.1.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "languitar"; 9 9 repo = "pass-git-helper"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-GdsFPpBdoEaOCmdKxw5xTuFOcGFH94w5q/lV891lCUs="; 11 + sha256 = "sha256-HEdOR6jS16c4UIatlgB6HeBtyyxePSab+6e2hu85dsI="; 12 12 }; 13 13 14 14 propagatedBuildInputs = [ pyxdg ]; ··· 21 21 homepage = "https://github.com/languitar/pass-git-helper"; 22 22 description = "A git credential helper interfacing with pass, the standard unix password manager"; 23 23 license = licenses.gpl3Plus; 24 - maintainers = with maintainers; [ vanzef ]; 24 + maintainers = with maintainers; [ hmenke vanzef ]; 25 25 }; 26 26 }
+3 -3
pkgs/applications/window-managers/river/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "river"; 22 - version = "unstable-2021-08-03"; 22 + version = "unstable-2021-08-19"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "ifreund"; 26 26 repo = pname; 27 - rev = "2fc0875a3e17a0328d14d0c6323bd8022d5b15de"; 28 - sha256 = "sha256-Cs9RRubxy0DY6ILRZY36HtcoqBvzbN7NEfpREq1KBBQ="; 27 + rev = "e59c2a73d72853cb54f55eecc446f337c94cda24"; 28 + sha256 = "sha256-R/Wg8KLh4v3ccX1Uh0Q+7026tRH7XLxHpX9/BgsGGdA="; 29 29 fetchSubmodules = true; 30 30 }; 31 31
+1 -1
pkgs/development/compilers/vala/default.nix
··· 100 100 homepage = "https://wiki.gnome.org/Projects/Vala"; 101 101 license = licenses.lgpl21Plus; 102 102 platforms = platforms.unix; 103 - maintainers = with maintainers; [ antono jtojnar peterhoeg maxeaubrey ] ++ teams.pantheon.members; 103 + maintainers = with maintainers; [ antono jtojnar maxeaubrey ] ++ teams.pantheon.members; 104 104 }; 105 105 }); 106 106
+2 -2
pkgs/development/libraries/science/math/tensorflow/bin.nix
··· 1 1 { lib, stdenv 2 2 , fetchurl 3 3 , addOpenGLRunpath 4 - , cudaSupport ? false, symlinkJoin, cudatoolkit, cudnn, nvidia_x11 4 + , cudaSupport ? false, symlinkJoin, cudatoolkit, cudnn 5 5 }: 6 6 7 7 with lib; ··· 17 17 platform = "x86_64"; 18 18 19 19 rpath = makeLibraryPath ([stdenv.cc.libc stdenv.cc.cc.lib] 20 - ++ optionals cudaSupport [ cudatoolkit.out cudatoolkit.lib cudnn nvidia_x11 ]); 20 + ++ optionals cudaSupport [ cudatoolkit.out cudatoolkit.lib cudnn ]); 21 21 22 22 packages = import ./binary-hashes.nix; 23 23
+1 -4
pkgs/development/python-modules/tensorflow/bin.nix
··· 23 23 , cudaSupport ? false 24 24 , cudatoolkit ? null 25 25 , cudnn ? null 26 - , nvidia_x11 ? null 27 26 , zlib 28 27 , python 29 28 , symlinkJoin ··· 41 40 # - the source build is currently brittle and not easy to maintain 42 41 43 42 assert cudaSupport -> cudatoolkit != null 44 - && cudnn != null 45 - && nvidia_x11 != null; 43 + && cudnn != null; 46 44 47 45 # unsupported combination 48 46 assert ! (stdenv.isDarwin && cudaSupport); ··· 126 124 cudatoolkit.out 127 125 cudatoolkit.lib 128 126 cudnn 129 - nvidia_x11 130 127 ]; 131 128 132 129 libpaths = [
+2 -2
pkgs/development/tools/analysis/flow/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "flow"; 5 - version = "0.160.0"; 5 + version = "0.160.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "facebook"; 9 9 repo = "flow"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-pgNxiNzL7Mb/ueBhWBtUi4BGnLnemk3o05K/fqXWE6Q="; 11 + sha256 = "sha256-tIKQBJ+nlUzY3+jHlXOAMfCLVJfRXZiveSkKaDMz/hI="; 12 12 }; 13 13 14 14 installPhase = ''
+1 -1
pkgs/development/tools/heroku/default.nix
··· 25 25 meta = { 26 26 homepage = "https://devcenter.heroku.com/articles/heroku-cli"; 27 27 description = "Everything you need to get started using Heroku"; 28 - maintainers = with lib.maintainers; [ aflatter mirdhyn peterhoeg marsam ]; 28 + maintainers = with lib.maintainers; [ aflatter mirdhyn marsam ]; 29 29 license = lib.licenses.mit; 30 30 platforms = with lib.platforms; unix; 31 31 };
+2 -2
pkgs/tools/filesystems/catcli/default.nix
··· 7 7 buildPythonApplication rec { 8 8 9 9 pname = "catcli"; 10 - version = "0.7.2"; 10 + version = "0.7.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "deadc0de6"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "12928pvwd6jr4x81nxi5691axianm4vz5gql1jazlij0ahc2f905"; 16 + sha256 = "03yf9sjqdg3xcbvkn1591zxd2d0r8wz1b749zrn55k3a03c7jzf5"; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ docopt anytree ];
-1
pkgs/top-level/all-packages.nix
··· 2062 2062 2063 2063 libtensorflow-bin = callPackage ../development/libraries/science/math/tensorflow/bin.nix { 2064 2064 cudaSupport = config.cudaSupport or false; 2065 - inherit (linuxPackages) nvidia_x11; 2066 2065 cudatoolkit = cudatoolkit_10_0; 2067 2066 cudnn = cudnn_cudatoolkit_10_0; 2068 2067 };
-1
pkgs/top-level/python-packages.nix
··· 8859 8859 8860 8860 tensorflow-bin_2 = callPackage ../development/python-modules/tensorflow/bin.nix { 8861 8861 cudaSupport = pkgs.config.cudaSupport or false; 8862 - inherit (pkgs.linuxPackages) nvidia_x11; 8863 8862 cudatoolkit = pkgs.cudatoolkit_11_0; 8864 8863 cudnn = pkgs.cudnn_cudatoolkit_11_0; 8865 8864 };