Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 9eeed94d 6bb65ddf

+105 -56
+2 -2
pkgs/applications/audio/mopidy/iris.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "Mopidy-Iris"; 5 - version = "3.60.0"; 6 7 src = python3Packages.fetchPypi { 8 inherit pname version; 9 - sha256 = "18w6qqmxzn8psiacybryxailm826f3j1wgiv0c03fbdsy6kr5f7l"; 10 }; 11 12 propagatedBuildInputs = [
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "Mopidy-Iris"; 5 + version = "3.64.0"; 6 7 src = python3Packages.fetchPypi { 8 inherit pname version; 9 + sha256 = "062x73glhn1x4wgc7zmb9y3cq15d5grgqf5drdpbp6p3cgk4s2vc"; 10 }; 11 12 propagatedBuildInputs = [
+2 -7
pkgs/applications/audio/mopidy/ytmusic.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "mopidy-ytmusic"; 5 - version = "0.3.5"; 6 7 src = python3Packages.fetchPypi { 8 inherit version; 9 pname = "Mopidy-YTMusic"; 10 - sha256 = "0pncyxfqxvznb9y4ksndbny1yf5mxh4089ak0yz86dp2qi5j99iv"; 11 }; 12 - 13 - postPatch = '' 14 - substituteInPlace setup.py \ 15 - --replace 'ytmusicapi>=0.20.0,<0.21.0' 'ytmusicapi>=0.20.0' 16 - ''; 17 18 propagatedBuildInputs = [ 19 mopidy
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "mopidy-ytmusic"; 5 + version = "0.3.7"; 6 7 src = python3Packages.fetchPypi { 8 inherit version; 9 pname = "Mopidy-YTMusic"; 10 + sha256 = "0gqjvi3nfzkqvbdhihzai241p1h5p037bj2475cc93xwzyyqxcrq"; 11 }; 12 13 propagatedBuildInputs = [ 14 mopidy
+8 -3
pkgs/applications/networking/browsers/firefox/wrapper.nix
··· 147 // extraPolicies; 148 }; 149 150 - mozillaCfg = writeText "mozilla.cfg" '' 151 // First line must be a comment 152 153 // Disables addon signature checking ··· 155 // Security is maintained because only user whitelisted addons 156 // with a checksum can be installed 157 ${ lib.optionalString usesNixExtensions ''lockPref("xpinstall.signatures.required", false)'' }; 158 - ${extraPrefs} 159 ''; 160 161 ############################# ··· 345 echo 'pref("general.config.filename", "mozilla.cfg");' > "$out/lib/${libName}/defaults/pref/autoconfig.js" 346 echo 'pref("general.config.obscure_value", 0);' >> "$out/lib/${libName}/defaults/pref/autoconfig.js" 347 348 - cat > "$out/lib/${libName}/mozilla.cfg" < ${mozillaCfg} 349 350 extraPrefsFiles=(${builtins.toString extraPrefsFiles}) 351 for extraPrefsFile in "''${extraPrefsFiles[@]}"; do 352 cat "$extraPrefsFile" >> "$out/lib/${libName}/mozilla.cfg" 353 done 354 355 mkdir -p $out/lib/${libName}/distribution/extensions 356
··· 147 // extraPolicies; 148 }; 149 150 + mozillaCfg = '' 151 // First line must be a comment 152 153 // Disables addon signature checking ··· 155 // Security is maintained because only user whitelisted addons 156 // with a checksum can be installed 157 ${ lib.optionalString usesNixExtensions ''lockPref("xpinstall.signatures.required", false)'' }; 158 ''; 159 160 ############################# ··· 344 echo 'pref("general.config.filename", "mozilla.cfg");' > "$out/lib/${libName}/defaults/pref/autoconfig.js" 345 echo 'pref("general.config.obscure_value", 0);' >> "$out/lib/${libName}/defaults/pref/autoconfig.js" 346 347 + cat > "$out/lib/${libName}/mozilla.cfg" << EOF 348 + ${mozillaCfg} 349 + EOF 350 351 extraPrefsFiles=(${builtins.toString extraPrefsFiles}) 352 for extraPrefsFile in "''${extraPrefsFiles[@]}"; do 353 cat "$extraPrefsFile" >> "$out/lib/${libName}/mozilla.cfg" 354 done 355 + 356 + cat >> "$out/lib/${libName}/mozilla.cfg" << EOF 357 + ${extraPrefs} 358 + EOF 359 360 mkdir -p $out/lib/${libName}/distribution/extensions 361
+2 -2
pkgs/applications/networking/instant-messengers/nheko/default.nix
··· 33 34 mkDerivation rec { 35 pname = "nheko"; 36 - version = "0.10.0"; 37 38 src = fetchFromGitHub { 39 owner = "Nheko-Reborn"; 40 repo = "nheko"; 41 rev = "v${version}"; 42 - sha256 = "sha256-JNAI1+GmRgee7bqeJi8JadV3W7vXMpEvvKqqinb97Ng="; 43 }; 44 45 nativeBuildInputs = [
··· 33 34 mkDerivation rec { 35 pname = "nheko"; 36 + version = "0.10.1-1"; 37 38 src = fetchFromGitHub { 39 owner = "Nheko-Reborn"; 40 repo = "nheko"; 41 rev = "v${version}"; 42 + sha256 = "sha256-Bpf38BAGfvmVyrAptIsQ9HaRUopqvytko6unlWLooUo="; 43 }; 44 45 nativeBuildInputs = [
+4 -5
pkgs/development/libraries/libusb-compat/0.1.nix
··· 2 , lib 3 , fetchFromGitHub 4 , autoreconfHook 5 - , patchelf 6 , pkg-config 7 , libusb1 8 }: ··· 13 14 outputs = [ "out" "dev" ]; # get rid of propagating systemd closure 15 outputBin = "dev"; 16 - 17 - nativeBuildInputs = [ autoreconfHook patchelf pkg-config ]; 18 - 19 - buildInputs = [ libusb1 ]; 20 21 src = fetchFromGitHub { 22 owner = "libusb"; ··· 26 }; 27 28 patches = lib.optional stdenv.hostPlatform.isMusl ./fix-headers.patch; 29 30 # without this, libusb-compat is unable to find libusb1 31 postFixup = ''
··· 2 , lib 3 , fetchFromGitHub 4 , autoreconfHook 5 , pkg-config 6 , libusb1 7 }: ··· 12 13 outputs = [ "out" "dev" ]; # get rid of propagating systemd closure 14 outputBin = "dev"; 15 16 src = fetchFromGitHub { 17 owner = "libusb"; ··· 21 }; 22 23 patches = lib.optional stdenv.hostPlatform.isMusl ./fix-headers.patch; 24 + 25 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 26 + 27 + buildInputs = [ libusb1 ]; 28 29 # without this, libusb-compat is unable to find libusb1 30 postFixup = ''
+2 -2
pkgs/development/libraries/neatvnc/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "neatvnc"; 7 - version = "0.5.3"; 8 9 src = fetchFromGitHub { 10 owner = "any1"; 11 repo = pname; 12 rev = "v${version}"; 13 - sha256 = "sha256-Y+qFTSvMX/iop+5UOm+4NqMSAZesFIJeTR+CRnlZTYo="; 14 }; 15 16 nativeBuildInputs = [ meson pkg-config ninja ];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "neatvnc"; 7 + version = "0.5.4"; 8 9 src = fetchFromGitHub { 10 owner = "any1"; 11 repo = pname; 12 rev = "v${version}"; 13 + sha256 = "sha256-IZUCNHhlDhq0KlUjkp3Yh5ysJsThlGw1FLHSaFe4Z0Q="; 14 }; 15 16 nativeBuildInputs = [ meson pkg-config ninja ];
+2 -2
pkgs/development/libraries/ngtcp2/gnutls.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "ngtcp2"; 9 - version = "0.7.0"; 10 11 src = fetchFromGitHub { 12 owner = "ngtcp2"; 13 repo = "ngtcp2"; 14 rev = "v${version}"; 15 - sha256 = "sha256-REAN5TW0miWXI3HFxtW3znTKTrhsBbNqu1VfjC2w0no="; 16 }; 17 18 outputs = [ "out" "dev" ];
··· 6 7 stdenv.mkDerivation rec { 8 pname = "ngtcp2"; 9 + version = "0.8.1"; 10 11 src = fetchFromGitHub { 12 owner = "ngtcp2"; 13 repo = "ngtcp2"; 14 rev = "v${version}"; 15 + sha256 = "sha256-Sn03nY80UmL5oeoK6ScPye1oSUmEKxgoz2VLHcvor3U="; 16 }; 17 18 outputs = [ "out" "dev" ];
+3
pkgs/development/python-modules/tensorflow-datasets/default.nix
··· 37 , termcolor 38 , tifffile 39 , tqdm 40 }: 41 42 buildPythonPackage rec { ··· 99 scipy 100 tensorflow 101 tifffile 102 ]; 103 104 disabledTestPaths = [ ··· 123 "tensorflow_datasets/image/lsun_test.py" 124 125 # Requires `envlogger` which is not packaged in `nixpkgs`. 126 "tensorflow_datasets/rlds/robosuite_panda_pick_place_can/robosuite_panda_pick_place_can_test.py" 127 128 # Fails with `TypeError: Constant constructor takes either 0 or 2 positional arguments`
··· 37 , termcolor 38 , tifffile 39 , tqdm 40 + , zarr 41 }: 42 43 buildPythonPackage rec { ··· 100 scipy 101 tensorflow 102 tifffile 103 + zarr 104 ]; 105 106 disabledTestPaths = [ ··· 125 "tensorflow_datasets/image/lsun_test.py" 126 127 # Requires `envlogger` which is not packaged in `nixpkgs`. 128 + "tensorflow_datasets/rlds/locomotion/locomotion_test.py" 129 "tensorflow_datasets/rlds/robosuite_panda_pick_place_can/robosuite_panda_pick_place_can_test.py" 130 131 # Fails with `TypeError: Constant constructor takes either 0 or 2 positional arguments`
+2 -2
pkgs/development/python-modules/xml2rfc/default.nix
··· 26 27 buildPythonPackage rec { 28 pname = "xml2rfc"; 29 - version = "3.14.1"; 30 31 disabled = pythonOlder "3.6"; 32 ··· 34 owner = "ietf-tools"; 35 repo = "xml2rfc"; 36 rev = "refs/tags/v${version}"; 37 - sha256 = "sha256-v8wvmAV5t2dEWFWtbM68Npe+QzwXksRUl0H+tP0RgFc="; 38 }; 39 40 postPatch = ''
··· 26 27 buildPythonPackage rec { 28 pname = "xml2rfc"; 29 + version = "3.14.2"; 30 31 disabled = pythonOlder "3.6"; 32 ··· 34 owner = "ietf-tools"; 35 repo = "xml2rfc"; 36 rev = "refs/tags/v${version}"; 37 + sha256 = "sha256-7UKav9IOH3u/3ZPDWVTBSf+A1li65qK2qASJpNVezdI="; 38 }; 39 40 postPatch = ''
+3
pkgs/os-specific/linux/kernel/common-config.nix
··· 270 }; 271 272 video = { 273 # Allow specifying custom EDID on the kernel command line 274 DRM_LOAD_EDID_FIRMWARE = yes; 275 VGA_SWITCHEROO = yes; # Hybrid graphics support
··· 270 }; 271 272 video = { 273 + DRM_LEGACY = no; 274 + NOUVEAU_LEGACY_CTX_SUPPORT = whenAtLeast "5.2" no; 275 + 276 # Allow specifying custom EDID on the kernel command line 277 DRM_LOAD_EDID_FIRMWARE = yes; 278 VGA_SWITCHEROO = yes; # Hybrid graphics support
+17 -9
pkgs/servers/dns/knot-dns/default.nix
··· 1 { lib, stdenv, fetchurl, pkg-config, gnutls, liburcu, lmdb, libcap_ng, libidn2, libunistring 2 , systemd, nettle, libedit, zlib, libiconv, libintl, libmaxminddb, libbpf, nghttp2, libmnl 3 , ngtcp2-gnutls 4 - , autoreconfHook, nixosTests, knot-resolver 5 - , fetchpatch 6 }: 7 8 stdenv.mkDerivation rec { 9 pname = "knot-dns"; 10 - version = "3.2.0"; 11 12 src = fetchurl { 13 url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; 14 - sha256 = "426d120994daf93af348aa6c48428e583dd286656415de4daf7a59106fd98631"; 15 }; 16 17 outputs = [ "bin" "out" "dev" ]; ··· 23 ]; 24 25 patches = [ 26 - (fetchpatch { 27 - name = "test-32bit-xdp.patch"; 28 - url = "https://gitlab.nic.cz/knot/knot-dns/-/commit/325dfeefdfd8a3dd318cfe0ab52cd7efbf839ccd.diff"; 29 - sha256 = "E5J2Jf4/m5H59Xn6TyATu2gKs3CgShYlMF2Qj1SW1zw="; 30 - }) 31 # Don't try to create directories like /var/lib/knot at build time. 32 # They are later created from NixOS itself. 33 ./dont-create-run-time-dirs.patch ··· 65 inherit knot-resolver; 66 } // lib.optionalAttrs stdenv.isLinux { 67 inherit (nixosTests) knot; 68 }; 69 70 meta = with lib; {
··· 1 { lib, stdenv, fetchurl, pkg-config, gnutls, liburcu, lmdb, libcap_ng, libidn2, libunistring 2 , systemd, nettle, libedit, zlib, libiconv, libintl, libmaxminddb, libbpf, nghttp2, libmnl 3 , ngtcp2-gnutls 4 + , autoreconfHook 5 + , nixosTests, knot-resolver, knot-dns, runCommandLocal 6 }: 7 8 stdenv.mkDerivation rec { 9 pname = "knot-dns"; 10 + version = "3.2.1"; 11 12 src = fetchurl { 13 url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; 14 + sha256 = "51efa36f92679b25d43dbf8ba543e9f26138559f0fa1ba5fae172f5400659c8f"; 15 }; 16 17 outputs = [ "bin" "out" "dev" ]; ··· 23 ]; 24 25 patches = [ 26 # Don't try to create directories like /var/lib/knot at build time. 27 # They are later created from NixOS itself. 28 ./dont-create-run-time-dirs.patch ··· 60 inherit knot-resolver; 61 } // lib.optionalAttrs stdenv.isLinux { 62 inherit (nixosTests) knot; 63 + # Some dependencies are very version-sensitive, so the might get dropped 64 + # or embedded after some update, even if the nixPackagers didn't intend to. 65 + # For non-linux I don't know a good replacement for `ldd`. 66 + deps = runCommandLocal "knot-deps-test" 67 + { nativeBuildInputs = [ (lib.getBin stdenv.cc.libc) ]; } 68 + '' 69 + for libname in libngtcp2 libbpf; do 70 + echo "Checking for $libname:" 71 + ldd '${knot-dns.bin}/bin/knotd' | grep -F "$libname" 72 + echo "OK" 73 + done 74 + touch "$out" 75 + ''; 76 }; 77 78 meta = with lib; {
+2 -2
pkgs/servers/http/nginx/modules.nix
··· 566 name = "vts"; 567 owner = "vozlt"; 568 repo = "nginx-module-vts"; 569 - rev = "v0.1.18"; 570 - sha256 = "1jq2s9k7hah3b317hfn9y3g1q4g4x58k209psrfsqs718a9sw8c7"; 571 }; 572 }; 573 }
··· 566 name = "vts"; 567 owner = "vozlt"; 568 repo = "nginx-module-vts"; 569 + rev = "v0.2.0"; 570 + sha256 = "sha256-uVGHFJt9KNcM4cdCUcSYL5KxbCiZkFf1eTdafCZXRew="; 571 }; 572 }; 573 }
+2 -2
pkgs/servers/nosql/apache-jena/binary.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "apache-jena"; 5 - version = "4.6.0"; 6 src = fetchurl { 7 url = "https://dlcdn.apache.org/jena/binaries/apache-jena-${version}.tar.gz"; 8 - sha256 = "sha256-1fNl6O9FVLzBx4U+4E72GY60UGMSRFdKNxIrPdcb/aA="; 9 }; 10 nativeBuildInputs = [ 11 makeWrapper
··· 2 3 stdenv.mkDerivation rec { 4 pname = "apache-jena"; 5 + version = "4.6.1"; 6 src = fetchurl { 7 url = "https://dlcdn.apache.org/jena/binaries/apache-jena-${version}.tar.gz"; 8 + sha256 = "sha256-XCExqN0S5aIeLUNkAXjBHPW/fvj+MxQP3GEOP9gSdLE="; 9 }; 10 nativeBuildInputs = [ 11 makeWrapper
+2 -2
pkgs/tools/admin/eksctl/default.nix
··· 2 3 buildGoModule rec { 4 pname = "eksctl"; 5 - version = "0.110.0"; 6 7 src = fetchFromGitHub { 8 owner = "weaveworks"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-QcSSdMWQNgsxzK9JJxGgIUkx54sLYXaF2HEAJZGWnjI="; 12 }; 13 14 vendorSha256 = "sha256-Dka0UbTxR2UsMkClq8t0//m+Ky7NEw3g9XP6PtTWOe4=";
··· 2 3 buildGoModule rec { 4 pname = "eksctl"; 5 + version = "0.111.0"; 6 7 src = fetchFromGitHub { 8 owner = "weaveworks"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-I/EYq83snTphHlOk6SgZSYpRS3RNpD2JX1fkwqEG9j0="; 12 }; 13 14 vendorSha256 = "sha256-Dka0UbTxR2UsMkClq8t0//m+Ky7NEw3g9XP6PtTWOe4=";
+3 -3
pkgs/tools/misc/fclones/default.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "fclones"; 11 - version = "0.27.2"; 12 13 src = fetchFromGitHub { 14 owner = "pkolaczk"; 15 repo = pname; 16 rev = "v${version}"; 17 - sha256 = "sha256-cP17WnQsP2S78O9MfmpivibvN1vYMeSNBSrrOENHUiE="; 18 }; 19 20 - cargoSha256 = "sha256-P1T9AAeEmCOiM74RPE/3Lz/XGAj150xTF3egjDv+zvc="; 21 22 buildInputs = lib.optionals stdenv.isDarwin [ 23 AppKit
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "fclones"; 11 + version = "0.27.3"; 12 13 src = fetchFromGitHub { 14 owner = "pkolaczk"; 15 repo = pname; 16 rev = "v${version}"; 17 + sha256 = "sha256-IAo7FKHh4oRPEmToEJca6b6E+TZvTeICPRYxol6Ppwo="; 18 }; 19 20 + cargoSha256 = "sha256-S4F/2kf9jbOA3o3kj5Ouo3QvCULbVILh3QbBLXUeOzc="; 21 22 buildInputs = lib.optionals stdenv.isDarwin [ 23 AppKit
+3 -3
pkgs/tools/misc/gh-dash/default.nix
··· 5 6 buildGoModule rec { 7 pname = "gh-dash"; 8 - version = "3.2.0"; 9 10 src = fetchFromGitHub { 11 owner = "dlvhdr"; 12 repo = "gh-dash"; 13 rev = "v${version}"; 14 - sha256 = "sha256-y7PJ8BDTiip6cjKQ3CVIcf3LwlGsEj3DHn3EOtCGa4A="; 15 }; 16 17 - vendorSha256 = "sha256-Hk/sBUI2XYB+ZHfuGUR3muEzUtVsGR28EkRD1jKg0Ss="; 18 19 ldflags = [ "-s" "-w" ]; 20
··· 5 6 buildGoModule rec { 7 pname = "gh-dash"; 8 + version = "3.3.0"; 9 10 src = fetchFromGitHub { 11 owner = "dlvhdr"; 12 repo = "gh-dash"; 13 rev = "v${version}"; 14 + sha256 = "sha256-fgafubFMYkWEqYVC9aHhheJQO8DnHB9onS1NJ63g74Y="; 15 }; 16 17 + vendorSha256 = "sha256-BbrHvphTQLvUKanmO4GrNpkT0MSlY7+WMJiyXV7dFB8="; 18 19 ldflags = [ "-s" "-w" ]; 20
+34
pkgs/tools/misc/hex/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , testers 5 + , hex 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "hex"; 10 + version = "0.4.2"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "sitkevij"; 14 + repo = "hex"; 15 + rev = "v${version}"; 16 + hash = "sha256-mxKjiciejnOTbSkCzOWdAtysRAnEv4JgntPS1qM9og8="; 17 + }; 18 + 19 + cargoHash = "sha256-kGe6XN03V+ILnlAcT0E8BvrYMa7ub05STFsFY6X5Gkk="; 20 + 21 + passthru.tests.version = testers.testVersion { 22 + package = hex; 23 + version = "hx ${version}"; 24 + }; 25 + 26 + meta = with lib; { 27 + description = "Futuristic take on hexdump, made in Rust"; 28 + homepage = "https://github.com/sitkevij/hex"; 29 + changelog = "https://github.com/sitkevij/hex/releases/tag/v${version}"; 30 + mainProgram = "hx"; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ ivar ]; 33 + }; 34 + }
+2 -2
pkgs/tools/networking/ipinfo/default.nix
··· 5 6 buildGoModule rec { 7 pname = "ipinfo"; 8 - version = "2.8.1"; 9 10 src = fetchFromGitHub { 11 owner = pname; 12 repo = "cli"; 13 rev = "${pname}-${version}"; 14 - hash = "sha256-j+ASyNWfYh4/u7OX3iZx8DZZg1XAwuy6fpC9TJKI+18="; 15 }; 16 17 vendorSha256 = null;
··· 5 6 buildGoModule rec { 7 pname = "ipinfo"; 8 + version = "2.9.0"; 9 10 src = fetchFromGitHub { 11 owner = pname; 12 repo = "cli"; 13 rev = "${pname}-${version}"; 14 + hash = "sha256-kv8krhmqwE4IfEYPpN+cRAnku/Vm0ctQskCiYAb5YQ0="; 15 }; 16 17 vendorSha256 = null;
+3 -3
pkgs/tools/networking/sish/default.nix
··· 5 6 buildGoModule rec { 7 pname = "sish"; 8 - version = "2.6.0"; 9 10 src = fetchFromGitHub { 11 owner = "antoniomika"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-Gk6hUv6SKZ71iJdeh9fvA45Oj3J1TjPWpvKQT5qj8NU="; 15 }; 16 17 - vendorSha256 = "sha256-FCLhAJxEPskigvlzvm5A+hVQOSWqqZnAxCPe7cawryA="; 18 19 meta = with lib; { 20 description = "HTTP(S)/WS(S)/TCP Tunnels to localhost";
··· 5 6 buildGoModule rec { 7 pname = "sish"; 8 + version = "2.7.0"; 9 10 src = fetchFromGitHub { 11 owner = "antoniomika"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-TiS28bqwcTbKKAj1trTOEs2a4FGADrkutIU3DkaTcjE="; 15 }; 16 17 + vendorSha256 = "sha256-Cky4ggZoNbIZK7w4tL00XqqyDDe0fmYk/+xZvtG/Nmg="; 18 19 meta = with lib; { 20 description = "HTTP(S)/WS(S)/TCP Tunnels to localhost";
+3 -3
pkgs/tools/security/gopass/jsonapi.nix
··· 8 9 buildGoModule rec { 10 pname = "gopass-jsonapi"; 11 - version = "1.14.5"; 12 13 src = fetchFromGitHub { 14 owner = "gopasspw"; 15 repo = pname; 16 rev = "v${version}"; 17 - sha256 = "sha256-zEyzoIl5LiVbNSRebbcE70HxhOGYaZvArdHQqgvi1ns="; 18 }; 19 20 - vendorSha256 = "sha256-mcI8ys+Vs46BEaETzsf0f1f2CgjEIV4iwSF4FWgNjUY="; 21 22 subPackages = [ "." ]; 23
··· 8 9 buildGoModule rec { 10 pname = "gopass-jsonapi"; 11 + version = "1.14.6"; 12 13 src = fetchFromGitHub { 14 owner = "gopasspw"; 15 repo = pname; 16 rev = "v${version}"; 17 + sha256 = "sha256-4jpW1XGT3LWucrDYsz30fKTO7v7AxDKhjx4UYE7NnMQ="; 18 }; 19 20 + vendorSha256 = "sha256-bTZ7fjRCKvp7AJcuNDHnsgB8hQUURPBCISgWtBAO1fI="; 21 22 subPackages = [ "." ]; 23
+4 -2
pkgs/top-level/all-packages.nix
··· 1428 1429 breitbandmessung = callPackage ../applications/networking/breitbandmessung { }; 1430 1431 - zq = callPackage ../development/tools/zq { buildGoModule = buildGo118Module; }; 1432 1433 ### APPLICATIONS/EMULATORS 1434 ··· 7475 helio-workstation = callPackage ../applications/audio/helio-workstation { }; 7476 7477 hevea = callPackage ../tools/typesetting/hevea { }; 7478 7479 hexd = callPackage ../tools/misc/hexd { }; 7480 pixd = callPackage ../tools/misc/pixd { }; ··· 15035 15036 clojure = callPackage ../development/interpreters/clojure { 15037 # set this to an LTS version of java 15038 - jdk = jdk11; 15039 }; 15040 15041 clojure-lsp = callPackage ../development/tools/misc/clojure-lsp { };
··· 1428 1429 breitbandmessung = callPackage ../applications/networking/breitbandmessung { }; 1430 1431 + zq = callPackage ../development/tools/zq { }; 1432 1433 ### APPLICATIONS/EMULATORS 1434 ··· 7475 helio-workstation = callPackage ../applications/audio/helio-workstation { }; 7476 7477 hevea = callPackage ../tools/typesetting/hevea { }; 7478 + 7479 + hex = callPackage ../tools/misc/hex { }; 7480 7481 hexd = callPackage ../tools/misc/hexd { }; 7482 pixd = callPackage ../tools/misc/pixd { }; ··· 15037 15038 clojure = callPackage ../development/interpreters/clojure { 15039 # set this to an LTS version of java 15040 + jdk = jdk17; 15041 }; 15042 15043 clojure-lsp = callPackage ../development/tools/misc/clojure-lsp { };