lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
ded44e80 b4fed0cb

+220 -51
+11 -10
.github/PULL_REQUEST_TEMPLATE.md
··· 1 - <!-- 2 - To help with the large amounts of pull requests, we would appreciate your 3 - reviews of other pull requests, especially simple package updates. Just leave a 4 - comment describing what you have tested in the relevant package/service. 5 - Reviewing helps to reduce the average time-to-merge for everyone. 6 - Thanks a lot if you do! 7 - List of open PRs: https://github.com/NixOS/nixpkgs/pulls 8 - Reviewing guidelines: https://nixos.org/manual/nixpkgs/unstable/#chap-reviewing-contributions 9 - --> 10 - 11 1 ###### Description of changes 12 2 13 3 <!-- ··· 38 28 - [ ] (Module addition) Added a release notes entry if adding a new NixOS module 39 29 - [ ] (Release notes changes) Ran `nixos/doc/manual/md-to-db.sh` to update generated release notes 40 30 - [ ] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md). 31 + 32 + <!-- 33 + To help with the large amounts of pull requests, we would appreciate your 34 + reviews of other pull requests, especially simple package updates. Just leave a 35 + comment describing what you have tested in the relevant package/service. 36 + Reviewing helps to reduce the average time-to-merge for everyone. 37 + Thanks a lot if you do! 38 + 39 + List of open PRs: https://github.com/NixOS/nixpkgs/pulls 40 + Reviewing guidelines: https://nixos.org/manual/nixpkgs/unstable/#chap-reviewing-contributions 41 + -->
+6
maintainers/maintainer-list.nix
··· 14038 14038 github = "jpagex"; 14039 14039 githubId = 635768; 14040 14040 }; 14041 + vbrandl = { 14042 + name = "Valentin Brandl"; 14043 + email = "mail+nixpkgs@vbrandl.net"; 14044 + github = "vbrandl"; 14045 + githubId = 20639051; 14046 + }; 14041 14047 portothree = { 14042 14048 name = "Gustavo Porto"; 14043 14049 email = "gustavoporto@ya.ru";
+1 -1
nixos/modules/services/security/tor.nix
··· 962 962 '') onion.authorizedClients ++ 963 963 optional (onion.secretKey != null) '' 964 964 install -d -o tor -g tor -m 0700 ${escapeShellArg onion.path} 965 - key="$(cut -f1 -d: ${escapeShellArg onion.secretKey})" 965 + key="$(cut -f1 -d: ${escapeShellArg onion.secretKey} | head -1)" 966 966 case "$key" in 967 967 ("== ed25519v"*"-secret") 968 968 install -o tor -g tor -m 0400 ${escapeShellArg onion.secretKey} ${escapeShellArg onion.path}/hs_ed25519_secret_key;;
+39
pkgs/applications/audio/psst/default.nix
··· 1 + { lib, fetchFromGitHub, rustPlatform, alsa-lib, atk, cairo, dbus, gdk-pixbuf, glib, gtk3, pango, pkg-config }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "psst"; 5 + version = "unstable-2022-01-25"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jpochyla"; 9 + repo = pname; 10 + rev = "1627cd4a301dd51e9ee3034294cd7b0d94d02ddc"; 11 + sha256 = "sha256-kepvYhmieXx6Hj79aqaA7tYUnueaBsNx0U4lV7K6LuU="; 12 + }; 13 + 14 + cargoSha256 = "sha256-DcdlQudGyWUUAacV7pAOLDvhd1fgAkEesdxDkHSYm4M="; 15 + # specify the subdirectory of the binary crate to build from the workspace 16 + buildAndTestSubdir = "psst-gui"; 17 + 18 + nativeBuildInputs = [ 19 + pkg-config 20 + ]; 21 + 22 + buildInputs = [ 23 + alsa-lib 24 + atk 25 + cairo 26 + dbus 27 + gdk-pixbuf 28 + glib 29 + gtk3 30 + pango 31 + ]; 32 + 33 + meta = with lib; { 34 + description = "Fast and multi-platform Spotify client with native GUI"; 35 + homepage = "https://github.com/jpochyla/psst"; 36 + license = licenses.mit; 37 + maintainers = [ maintainers.vbrandl ]; 38 + }; 39 + }
+3 -3
pkgs/applications/misc/josm/default.nix
··· 3 3 }: 4 4 let 5 5 pname = "josm"; 6 - version = "18360"; 6 + version = "18387"; 7 7 srcs = { 8 8 jar = fetchurl { 9 9 url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar"; 10 - sha256 = "sha256-1OMEPMtUGkxQCgpmyVP1h25gSDa2MKF7l1rodr61O5s="; 10 + sha256 = "sha256-zkEWZjjSy0ajG5X1/dIgLPZ7zr0BiaJJcHaN8sv/3yc="; 11 11 }; 12 12 macosx = fetchurl { 13 13 url = "https://josm.openstreetmap.de/download/macosx/josm-macos-${version}-java17.zip"; 14 - sha256 = "sha256-ZCybgaLwPfQVG2gJ+dtElIY7bGZUe9R8a/0B6QK8yK8="; 14 + sha256 = "sha256-xOVnnQ+eUkboT8Tq5F4QJEou1wAaHwiEdyiEKDR/fUk="; 15 15 }; 16 16 pkg = fetchsvn { 17 17 url = "https://josm.openstreetmap.de/svn/trunk/native/linux/tested";
+2 -2
pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix
··· 4 4 5 5 python3Packages.buildPythonApplication rec { 6 6 pname = "git-remote-hg"; 7 - version = "1.0.2.1"; 7 + version = "1.0.3.2"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "mnauw"; 11 11 repo = "git-remote-hg"; 12 12 rev = "v${version}"; 13 - sha256 = "1crgq13v2p9wmw1yhckmyzybh8h1nz3839qhqvzh48vxqkailzmn"; 13 + sha256 = "0b5lfbrcrvzpz380817md00lbgy5yl4y76vs3vm0bpm5wmr7c027"; 14 14 }; 15 15 16 16 nativeBuildInputs = [
+5 -3
pkgs/applications/virtualization/cloud-hypervisor/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cloud-hypervisor"; 5 - version = "21.0"; 5 + version = "22.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloud-hypervisor"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "00b0ij9sfv7zsrgwrcj2rzpy1z8bp0m0lmzjp433xzpcgcnzw3w5"; 11 + sha256 = "1n4i7rgx8rkif2naw429fnkhv0888sfxmnky67fd42mlv1lhz9w8"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ openssl ] ++ lib.optional stdenv.isAarch64 dtc; 16 16 17 - cargoSha256 = "0lf7bb468s2ic9vabx954i46605gf7c6064vvwqvz7djk30z0y0d"; 17 + cargoSha256 = "0kc6lcwlqg9l19l4psakgkc5jf28nw1riz85adci897yha1dsnh0"; 18 + 19 + OPENSSL_NO_VENDOR = true; 18 20 19 21 # Integration tests require root. 20 22 cargoTestFlags = [ "--bins" ];
+3
pkgs/applications/window-managers/qtile/default.nix
··· 69 69 name = "${unwrapped.pname}-${unwrapped.version}"; 70 70 # export underlying qtile package 71 71 passthru = { inherit unwrapped; }; 72 + 73 + # restore original qtile attrs 74 + inherit (unwrapped) pname version meta; 72 75 })
+2 -2
pkgs/development/php-packages/phing/default.nix
··· 1 1 { mkDerivation, fetchurl, makeWrapper, lib, php }: 2 2 let 3 3 pname = "phing"; 4 - version = "2.17.1"; 4 + version = "2.17.2"; 5 5 in 6 6 mkDerivation { 7 7 inherit pname version; 8 8 9 9 src = fetchurl { 10 10 url = "https://www.phing.info/get/phing-${version}.phar"; 11 - sha256 = "sha256-Sf2fdy9b1wmXEDA3S4CRksH/DhAIirIy6oekWE1TNjE="; 11 + sha256 = "sha256-KDqJdHIqgtar6ofNG4ENRlpRg9XYFeL5YS7Rclh1+PQ="; 12 12 }; 13 13 14 14 dontUnpack = true;
+2 -2
pkgs/development/php-packages/php-cs-fixer/default.nix
··· 1 1 { mkDerivation, fetchurl, makeWrapper, lib, php }: 2 2 let 3 3 pname = "php-cs-fixer"; 4 - version = "3.6.0"; 4 + version = "3.7.0"; 5 5 in 6 6 mkDerivation { 7 7 inherit pname version; 8 8 9 9 src = fetchurl { 10 10 url = "https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v${version}/php-cs-fixer.phar"; 11 - sha256 = "sha256-sbz8uq6nJ6dEL6FHJ01VTrovaJa8bwQ9Ic+dLr7yPnA="; 11 + sha256 = "sha256-a7mKM++0iQm9hQFCDfyR6Jdb9h98YNHmbdQso8BU3WE="; 12 12 }; 13 13 14 14 dontUnpack = true;
+2 -2
pkgs/development/php-packages/phpstan/default.nix
··· 1 1 { mkDerivation, fetchurl, makeWrapper, lib, php }: 2 2 let 3 3 pname = "phpstan"; 4 - version = "1.4.7"; 4 + version = "1.4.8"; 5 5 in 6 6 mkDerivation { 7 7 inherit pname version; 8 8 9 9 src = fetchurl { 10 10 url = "https://github.com/phpstan/phpstan/releases/download/${version}/phpstan.phar"; 11 - sha256 = "sha256-bsSdFfUVQnbDFH8hO1Z9sHA2w7pMHlLEx1hsgDdCUmE="; 11 + sha256 = "sha256-ghXyPo9n2oXAz7BvuvBYjyJnUqf/FvNk8nTPIRv19cw="; 12 12 }; 13 13 14 14 dontUnpack = true;
+2 -2
pkgs/development/python-modules/azure-synapse-artifacts/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "azure-synapse-artifacts"; 9 - version = "0.11.0"; 9 + version = "0.12.0"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 13 extension = "zip"; 14 - sha256 = "79eb973280ea89c0e6e2872d8f3f175b172b7438c2e2b9b4e655ae206be705fa"; 14 + sha256 = "sha256-IfQWsITuThzh+TRgv99JTtcDFY3gMq5PjALkN4mJEZo="; 15 15 }; 16 16 17 17 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-error-reporting/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-error-reporting"; 15 - version = "1.5.0"; 15 + version = "1.5.1"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "sha256-qvhZU7T2fHA2uRyXJjRxqeEAFwShH+TpGwICczgX7Sk="; 19 + sha256 = "sha256-7gFpvFxtYneABxW2mOwW1V2E7kobmj0yzV0pxaRhs8c="; 20 20 }; 21 21 22 22 postPatch = ''
+2 -2
pkgs/development/python-modules/google-cloud-firestore/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "google-cloud-firestore"; 16 - version = "2.3.4"; 16 + version = "2.4.0"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "sha256-cU4bwfxRAp14qmSTO+8u/APa7clWXqeeyRuEOwUgFuw="; 20 + sha256 = "sha256-9+esejwSitfYEkD03KsPiTIKxmYhRxTrgfy3QKqIIO4="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-resumable-media/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-resumable-media"; 15 - version = "2.3.1"; 15 + version = "2.3.2"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "sha256-H02LFRlnZv34qGD9LPqmGEE4cH7F+SHNGDQGel39Lbc="; 19 + sha256 = "sha256-BpJOix558VjwIC590VGtdbDqnVm5l8hQ9WvdSlo2FRM="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ google-auth google-crc32c requests ];
+2 -2
pkgs/development/python-modules/radios/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "radios"; 20 - version = "0.1.0"; 20 + version = "0.1.1"; 21 21 22 22 disabled = pythonOlder "3.9"; 23 23 ··· 27 27 owner = "frenck"; 28 28 repo = "python-radios"; 29 29 rev = "v${version}"; 30 - hash = "sha256-3xRtOGY9DYnZN0g95213vWDbO3/XZZ5+s7A9sqNmO/w="; 30 + hash = "sha256-NCBch9MCWVD6ez0sIUph8rwOOzEMZtwC4atXJe53xZM="; 31 31 }; 32 32 33 33 postPatch = ''
+2 -2
pkgs/development/python-modules/sphinxext-opengraph/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "sphinxext-opengraph"; 11 - version = "0.6.1"; 11 + version = "0.6.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "wpilibsuite"; 15 15 repo = "sphinxext-opengraph"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-kaKOKeztP89SLF4yrUFW1TTAEyAaCTm2XCcOH0b+Dzc="; 17 + sha256 = "sha256-3bZFFtGW6j/3m/3F4+tapZujzpMZnrIcYTngDCNGylI="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+16 -4
pkgs/development/ruby-modules/bundled-common/default.nix
··· 1 1 { stdenv, runCommand, ruby, lib, rsync 2 2 , defaultGemConfig, buildRubyGem, buildEnv 3 - , makeWrapper 3 + , makeBinaryWrapper 4 4 , bundler 5 5 }@defs: 6 6 ··· 118 118 119 119 wrappedRuby = stdenv.mkDerivation { 120 120 name = "wrapped-ruby-${pname'}"; 121 - nativeBuildInputs = [ makeWrapper ]; 122 - inherit (ruby) gemPath meta; 123 - buildCommand = '' 121 + 122 + nativeBuildInputs = [ makeBinaryWrapper ]; 123 + 124 + dontUnpack = true; 125 + 126 + buildPhase = '' 124 127 mkdir -p $out/bin 125 128 for i in ${ruby}/bin/*; do 126 129 makeWrapper "$i" $out/bin/$(basename "$i") \ ··· 131 134 --set GEM_PATH ${basicEnv}/${ruby.gemPath} 132 135 done 133 136 ''; 137 + 138 + dontInstall = true; 139 + 140 + doCheck = true; 141 + checkPhase = '' 142 + $out/bin/ruby --help > /dev/null 143 + ''; 144 + 145 + inherit (ruby) meta; 134 146 }; 135 147 136 148 env = let
+78
pkgs/development/tools/wails/default.nix
··· 1 + { lib 2 + , stdenv 3 + , buildGoModule 4 + , fetchFromGitHub 5 + , pkg-config 6 + , makeWrapper 7 + , go 8 + , gcc 9 + , gtk3 10 + , webkitgtk 11 + , nodejs 12 + , upx 13 + , zlib 14 + }: 15 + 16 + buildGoModule rec { 17 + pname = "wails"; 18 + version = "2.0.0-beta.33"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "wailsapp"; 22 + repo = pname; 23 + rev = "v${version}"; 24 + sha256 = "sha256-efxOL/FllToum0P4JyAJt0fbrznTFYh7czTWpZu3uk0="; 25 + } + "/v2"; 26 + 27 + vendorSha256 = "sha256-qPMVsvud2L7hpXUOfYYMiO32JXff8ZZC34EsxFoSJ0g="; 28 + 29 + proxyVendor = true; 30 + 31 + subPackages = [ "cmd/wails" ]; 32 + 33 + # These packages are needed to build wails 34 + # and will also need to be used when building a wails app. 35 + nativeBuildInputs = [ 36 + pkg-config 37 + makeWrapper 38 + ]; 39 + 40 + # Wails apps are built with Go, so we need to be able to 41 + # add it in propagatedBuildInputs. 42 + allowGoReference = true; 43 + 44 + # Following packages are required when wails used as a builder. 45 + propagatedBuildInputs = [ 46 + pkg-config 47 + go 48 + gcc 49 + gtk3 50 + webkitgtk 51 + nodejs 52 + upx 53 + ]; 54 + 55 + ldflags = [ 56 + "-s" 57 + "-w" 58 + ]; 59 + 60 + # As Wails calls a compiler, certain apps and libraries need to be made available. 61 + postFixup = '' 62 + wrapProgram $out/bin/wails \ 63 + --prefix PATH : ${lib.makeBinPath [ pkg-config go gcc nodejs upx ]} \ 64 + --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ gtk3 webkitgtk ]} \ 65 + --set PKG_CONFIG_PATH "$PKG_CONFIG_PATH" \ 66 + --set CGO_LDFLAGS "-L${lib.makeLibraryPath [ zlib ]}" 67 + ''; 68 + 69 + doCheck = true; 70 + 71 + meta = with lib; { 72 + description = "Build applications using Go + HTML + CSS + JS"; 73 + homepage = "https://wails.io"; 74 + license = licenses.mit; 75 + maintainers = with maintainers; [ ianmjones ]; 76 + platforms = platforms.linux; 77 + }; 78 + }
+1 -1
pkgs/tools/graphics/agi/default.nix
··· 52 52 desktopItems = [(makeDesktopItem { 53 53 name = "agi"; 54 54 desktopName = "Android GPU Inspector"; 55 - exec = "$out/bin/agi"; 55 + exec = "agi"; 56 56 icon = "agi"; 57 57 categories = [ "Development" "Debugger" "Graphics" "3DGraphics" ]; 58 58 })];
+1 -1
pkgs/tools/graphics/snapdragon-profiler/default.nix
··· 70 70 desktopItems = [(makeDesktopItem { 71 71 name = pname; 72 72 desktopName = "Snapdragon Profiler"; 73 - exec = "$out/bin/snapdragon-profiler"; 73 + exec = "snapdragon-profiler"; 74 74 icon = "snapdragon-profiler"; 75 75 comment = meta.description; 76 76 categories = [ "Development" "Debugger" "Graphics" "3DGraphics" ];
+3 -3
pkgs/tools/misc/kepubify/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kepubify"; 5 - version = "4.0.3"; 5 + version = "4.0.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pgaskin"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-pe4jNBoPjrkvsdeFjH4TNwacp0qkf+v+SjIAZqV1GWE="; 11 + sha256 = "sha256-H6W+C5twXit7Z9hLIJKAftbnvYDA9HAb9tR6yeQGRKI="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-eiFG6lgsY5hf+XT3Kf5uA4Ai8vBbPsh1T4ObV+rj30Y="; 14 + vendorSha256 = "sha256-QOMLwDDvrDQAaK4M4QhBFTGD1CzblkDoA3ZqtCoRHtQ="; 15 15 16 16 ldflags = [ "-s" "-w" "-X main.version=${version}" ]; 17 17
+8
pkgs/tools/nix/nix-output-monitor/default.nix
··· 16 16 filepath, 17 17 generic-optics, 18 18 HUnit, 19 + installShellFiles, 19 20 lib, 20 21 lock-file, 21 22 MemoTrie, ··· 140 141 maintainers = with lib.maintainers; [maralorn]; 141 142 passthru.updateScript = ./update.sh; 142 143 testTarget = "unit-tests"; 144 + buildTools = [installShellFiles]; 143 145 postInstall = '' 144 146 cat > $out/bin/nom-build << EOF 145 147 #!${runtimeShell} 146 148 ${expect}/bin/unbuffer nix-build "\$@" 2>&1 | exec $out/bin/nom 147 149 EOF 148 150 chmod a+x $out/bin/nom-build 151 + installShellCompletion --zsh --name _nom-build ${ 152 + builtins.toFile "completion.zsh" '' 153 + #compdef nom-build 154 + compdef nom-build=nix-build 155 + '' 156 + } 149 157 ''; 150 158 }
+14 -1
pkgs/tools/nix/nix-output-monitor/update.sh
··· 21 21 # This file has been autogenerate with cabal2nix. 22 22 # Update via ./update.sh" 23 23 EOF 24 - cabal2nix --extra-arguments expect --extra-arguments runtimeShell --maintainer maralorn "https://github.com/maralorn/nix-output-monitor/archive/refs/tags/${new_version}.tar.gz" | head -n-1 >> "$derivation_file" 24 + 25 + cabal2nix \ 26 + --extra-arguments expect \ 27 + --extra-arguments runtimeShell\ 28 + --extra-arguments installShellFiles\ 29 + --maintainer maralorn \ 30 + "https://github.com/maralorn/nix-output-monitor/archive/refs/tags/${new_version}.tar.gz" \ 31 + | head -n-1 >> "$derivation_file" 32 + 25 33 cat >> "$derivation_file" << EOF 26 34 passthru.updateScript = ./update.sh; 27 35 testTarget = "unit-tests"; 36 + buildTools = [ installShellFiles ]; 28 37 postInstall = '' 29 38 cat > \$out/bin/nom-build << EOF 30 39 #!\${runtimeShell} 31 40 \${expect}/bin/unbuffer nix-build "\\\$@" 2>&1 | exec \$out/bin/nom 32 41 EOF 33 42 chmod a+x \$out/bin/nom-build 43 + installShellCompletion --zsh --name _nom-build \${builtins.toFile "completion.zsh" '' 44 + #compdef nom-build 45 + compdef nom-build=nix-build 46 + ''} 34 47 ''; 35 48 } 36 49 EOF
+1 -1
pkgs/tools/package-management/nix/common.nix
··· 205 205 }; 206 206 207 207 passthru = { 208 - inherit boehmgc; 208 + inherit aws-sdk-cpp boehmgc; 209 209 210 210 perl-bindings = perl.pkgs.toPerlModule (callPackage ./nix-perl.nix { inherit src version; }); 211 211 };
+3
pkgs/tools/package-management/nix/default.nix
··· 24 24 customMemoryManagement = false; 25 25 }).overrideDerivation (args: { 26 26 patches = (args.patches or [ ]) ++ [ ./patches/aws-sdk-cpp-TransferManager-ContentEncoding.patch ]; 27 + 28 + # only a stripped down version is build which takes a lot less resources to build 29 + requiredSystemFeatures = null; 27 30 }); 28 31 29 32 common = args:
+1 -1
pkgs/tools/security/spire/default.nix
··· 29 29 30 30 meta = with lib; { 31 31 description = "The SPIFFE Runtime Environment"; 32 - homepage = "github.com/spiffe/spire"; 32 + homepage = "https://github.com/spiffe/spire"; 33 33 license = licenses.asl20; 34 34 maintainers = with maintainers; [ jonringer fkautz ]; 35 35 };
+2 -2
pkgs/tools/security/traitor/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "traitor"; 8 - version = "0.0.9"; 8 + version = "0.0.14"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "liamg"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-SHfAPPVq5OmS0yPaSXGsMjskQdosoBN4XRLSzkrviJM="; 14 + sha256 = "sha256-LQfKdjZaTm5z8DUt6He/RJHbOUCUwP3CV3Fyt5rJIfU="; 15 15 }; 16 16 17 17 vendorSha256 = null;
+4
pkgs/top-level/all-packages.nix
··· 15926 15926 15927 15927 vtable-dumper = callPackage ../development/tools/misc/vtable-dumper { }; 15928 15928 15929 + wails = callPackage ../development/tools/wails { }; 15930 + 15929 15931 whatsapp-for-linux = callPackage ../applications/networking/instant-messengers/whatsapp-for-linux { }; 15930 15932 15931 15933 whatstyle = callPackage ../development/tools/misc/whatstyle { ··· 29036 29038 }; 29037 29039 29038 29040 spotifywm = callPackage ../applications/audio/spotifywm { }; 29041 + 29042 + psst = callPackage ../applications/audio/psst { }; 29039 29043 29040 29044 squeezelite = callPackage ../applications/audio/squeezelite { }; 29041 29045