···134134135135 system.nixos-generate-config.configuration = mkDefault ''136136 # Edit this configuration file to define what should be installed on137137- # your system. Help is available in the configuration.nix(5) man page138138- # and in the NixOS manual (accessible by running `nixos-help`).137137+ # your system. Help is available in the configuration.nix(5) man page, on138138+ # https://search.nixos.org/options and in the NixOS manual (`nixos-help`).139139140140 { config, lib, pkgs, ... }:141141
···88in99buildNodejs {1010 inherit enableNpm;1111- version = "18.17.1";1212- sha256 = "sha256-8hXPA9DwDwesC2dMaBn4BMFULhbxUtoEmAAirsz15lo=";1111+ version = "18.18.0";1212+ sha256 = "sha256-5NTbrDY02Z+JLwDbR9p4+YSTwzlYLoqV+y3Vn1z+D5A=";1313 patches = [1414 ./disable-darwin-v8-system-instrumentation.patch1515 ./bypass-darwin-xcrun-node16.patch1616 ./revert-arm64-pointer-auth.patch1717 ./node-npm-build-npm-package-logic.patch1818 ./trap-handler-backport.patch1919- # Fixes target toolchain arguments being passed to the host toolchain when2020- # cross-compiling. For example, -m64 is not available on aarch64.2121- (fetchpatch {2222- name = "common-gypi-cross.patch";2323- url = "https://github.com/nodejs/node/pull/48597.patch";2424- hash = "sha256-FmHmwlTxPw5mTW6t4zuy9vr4FxopjU4Kx+F1aqabG1s=";2525- })2619 ];2720}
···1616 meta = with lib; {1717 description = "A tool to automate building and releasing iOS and Android apps";1818 longDescription = "fastlane is a tool for iOS and Android developers to automate tedious tasks like generating screenshots, dealing with provisioning profiles, and releasing your application.";1919- homepage = "https://github.com/fastlane/fastlane";1919+ homepage = "https://fastlane.tools/";2020 license = licenses.mit;2121 maintainers = with maintainers; [2222 peterromfeldhk
···5151 Once the test suite is written they can be executed, waited-on, or served as a health endpoint.5252 '';5353 license = licenses.asl20;5454- platforms = platforms.linux;5454+ platforms = platforms.linux ++ platforms.darwin;5555 maintainers = with maintainers; [ hyzual jk anthonyroussel ];5656 };5757}
+2-2
pkgs/tools/misc/mongodb-compass/default.nix
···3333}:34343535let3636- version = "1.39.3";3636+ version = "1.39.4";37373838 rpath = lib.makeLibraryPath [3939 alsa-lib···8282 if stdenv.hostPlatform.system == "x86_64-linux" then8383 fetchurl {8484 url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb";8585- sha256 = "sha256-6HK1t05amGd7H6MS9Lg+vJvWdOWi+ukqz5gY1IaPw9E=";8585+ sha256 = "sha256-FK42DJLxY9gMNt92/UEdrseT3p1xPDVn1+5Cnbc+WnY=";8686 }8787 else8888 throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}";
+3-3
pkgs/tools/security/grype/default.nix
···7788buildGoModule rec {99 pname = "grype";1010- version = "0.68.0";1010+ version = "0.68.1";11111212 src = fetchFromGitHub {1313 owner = "anchore";1414 repo = pname;1515 rev = "refs/tags/v${version}";1616- hash = "sha256-im7dEKkWs63AUxLa659ceKremmubK7eM2rSskEEKiww=";1616+ hash = "sha256-ASjnExBnOdeEWc94ShM+RUmp1YK499M/5CN6WQjCXMo=";1717 # populate values that require us to use git. By doing this in postFetch we1818 # can delete .git afterwards and maintain better reproducibility of the src.1919 leaveDotGit = true;···28282929 proxyVendor = true;30303131- vendorHash = "sha256-r/1UlU0DU5gSX1aW7Jdk7BR6+rt/4/88eYp5ycLI9Wk=";3131+ vendorHash = "sha256-nLZAbniX1FT1PE32cmYzqZar1e2ZiLBpnYuZg1BcKMo=";32323333 nativeBuildInputs = [3434 installShellFiles