Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
aad4d02c 066a9898

+355 -254
+1 -2
doc/languages-frameworks/go.section.md
··· 12 In the following is an example expression using `buildGoModule`, the following arguments are of special significance to the function: 13 14 - `vendorSha256`: is the hash of the output of the intermediate fetcher derivation. `vendorSha256` can also take `null` as an input. When `null` is used as a value, rather than fetching the dependencies and vendoring them, we use the vendoring included within the source repo. If you'd like to not have to update this field on dependency changes, run `go mod vendor` in your source repo and set `vendorSha256 = null;` 15 - - `runVend`: runs the vend command to generate the vendor directory. This is useful if your code depends on c code and go mod tidy does not include the needed sources to build. 16 - - `proxyVendor`: Fetches (go mod download) and proxies the vendor directory. This is useful if any dependency has case-insensitive conflicts which will produce platform dependant `vendorSha256` checksums. 17 18 ```nix 19 pet = buildGoModule rec {
··· 12 In the following is an example expression using `buildGoModule`, the following arguments are of special significance to the function: 13 14 - `vendorSha256`: is the hash of the output of the intermediate fetcher derivation. `vendorSha256` can also take `null` as an input. When `null` is used as a value, rather than fetching the dependencies and vendoring them, we use the vendoring included within the source repo. If you'd like to not have to update this field on dependency changes, run `go mod vendor` in your source repo and set `vendorSha256 = null;` 15 + - `proxyVendor`: Fetches (go mod download) and proxies the vendor directory. This is useful if your code depends on c code and go mod tidy does not include the needed sources to build or if any dependency has case-insensitive conflicts which will produce platform dependant `vendorSha256` checksums. 16 17 ```nix 18 pet = buildGoModule rec {
+3 -3
pkgs/applications/audio/bucklespring/default.nix
··· 19 in 20 stdenv.mkDerivation rec { 21 pname = "bucklespring"; 22 - version = "1.5.0"; 23 24 src = fetchFromGitHub { 25 owner = "zevv"; 26 repo = pname; 27 - rev = version; 28 - sha256 = "114dib4npb7r1z2zd1fwsx71xbf9r6psxqd7n7590cwz1w3r51mz"; 29 }; 30 31 nativeBuildInputs = [ pkg-config makeWrapper ];
··· 19 in 20 stdenv.mkDerivation rec { 21 pname = "bucklespring"; 22 + version = "1.5.1"; 23 24 src = fetchFromGitHub { 25 owner = "zevv"; 26 repo = pname; 27 + rev = "v${version}"; 28 + sha256 = "0prhqibivxzmz90k79zpwx3c97h8wa61rk5ihi9a5651mnc46mna"; 29 }; 30 31 nativeBuildInputs = [ pkg-config makeWrapper ];
+1
pkgs/applications/audio/gnome-podcasts/default.nix
··· 79 license = licenses.gpl3Plus; 80 maintainers = teams.gnome.members; 81 platforms = platforms.unix; 82 }; 83 }
··· 79 license = licenses.gpl3Plus; 80 maintainers = teams.gnome.members; 81 platforms = platforms.unix; 82 + broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/gnome-podcasts.x86_64-darwin 83 }; 84 }
+1 -1
pkgs/applications/blockchains/dashpay/default.nix
··· 15 owner = "dashpay"; 16 repo= "dash"; 17 rev = "v${version}"; 18 - sha256 = "0l1gcj2xf2bal9ph9y11x8yd28fd25f55f48xbm45bfw3ij7nbaa"; 19 }; 20 21 nativeBuildInputs = [ pkg-config autoreconfHook ];
··· 15 owner = "dashpay"; 16 repo= "dash"; 17 rev = "v${version}"; 18 + sha256 = "sha256-DMoiUX8Q0HcBHA6ZIN58uPsTnHjEJMi8eGG2DW8z17Q="; 19 }; 20 21 nativeBuildInputs = [ pkg-config autoreconfHook ];
+2 -2
pkgs/applications/blockchains/erigon.nix
··· 11 sha256 = "0l0w1badhvlh1rgqzvlmy5k7xhb1nf4f5dmhkl935a5ila08aak3"; 12 }; 13 14 - vendorSha256 = "1hbfmq76zm50zwmlh3jblriwq2k1mp99d8lg8xzxwy56hncgfj8k"; 15 - runVend = true; 16 17 # Build errors in mdbx when format hardening is enabled: 18 # cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security]
··· 11 sha256 = "0l0w1badhvlh1rgqzvlmy5k7xhb1nf4f5dmhkl935a5ila08aak3"; 12 }; 13 14 + vendorSha256 = "sha256-kA7pOSP4wkzKuFmUqhZmjXJ0ao64cIgZMrQtQ0bQ++U="; 15 + proxyVendor = true; 16 17 # Build errors in mdbx when format hardening is enabled: 18 # cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security]
+2 -2
pkgs/applications/misc/gpxsee/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gpxsee"; 5 - version = "10.0"; 6 7 src = fetchFromGitHub { 8 owner = "tumic0"; 9 repo = "GPXSee"; 10 rev = version; 11 - sha256 = "sha256-XACexj91TLd/i2GoFr0zZ3Yqcg+KjKoWWPfCGsEIR04="; 12 }; 13 14 patches = (substituteAll {
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gpxsee"; 5 + version = "10.1"; 6 7 src = fetchFromGitHub { 8 owner = "tumic0"; 9 repo = "GPXSee"; 10 rev = version; 11 + sha256 = "sha256-tU37dKBxzz+sxe4R7xbscpD28if8QOm6xpZEOdhK8lE="; 12 }; 13 14 patches = (substituteAll {
+2 -2
pkgs/applications/misc/hugo/default.nix
··· 11 sha256 = "sha256-6bqtw0hUrRBhTwEDURaTjgl3aVVCbfxjoPRfhSd3LK8="; 12 }; 13 14 - vendorSha256 = "sha256-CO+7WgoTsFCd9vkcALKcJP6Kj3CIWr5FF75/WgbK04g="; 15 16 doCheck = false; 17 18 - runVend = true; 19 20 tags = [ "extended" ]; 21
··· 11 sha256 = "sha256-6bqtw0hUrRBhTwEDURaTjgl3aVVCbfxjoPRfhSd3LK8="; 12 }; 13 14 + vendorSha256 = "sha256-M4pKAxNd8rqluVm+c+X+nxC/vcaVclebo9HP17yEpfo="; 15 16 doCheck = false; 17 18 + proxyVendor = true; 19 20 tags = [ "extended" ]; 21
+21 -4
pkgs/applications/misc/mob/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub}: 2 3 buildGoPackage rec { 4 pname = "mob"; 5 version = "2.1.0"; 6 - goPackagePath = "github.com/remotemobprogramming/mob"; 7 8 src = fetchFromGitHub { 9 rev = "v${version}"; ··· 12 sha256 = "sha256-K8ID8cetzCaMc/PVRNMyIhrshtEUiD6U/jI4e0TcOO4="; 13 }; 14 15 meta = with lib; { 16 - description = "Tool for swift git handover"; 17 homepage = "https://github.com/remotemobprogramming/mob"; 18 license = licenses.mit; 19 - maintainers = [ maintainers.ericdallo ]; 20 platforms = platforms.linux ++ platforms.darwin; 21 }; 22 }
··· 1 + { lib 2 + , buildGoPackage 3 + , fetchFromGitHub 4 + 5 + , withSpeech ? true 6 + , makeWrapper 7 + , espeak-ng 8 + }: 9 10 buildGoPackage rec { 11 pname = "mob"; 12 version = "2.1.0"; 13 14 src = fetchFromGitHub { 15 rev = "v${version}"; ··· 18 sha256 = "sha256-K8ID8cetzCaMc/PVRNMyIhrshtEUiD6U/jI4e0TcOO4="; 19 }; 20 21 + nativeBuildInputs = [ 22 + makeWrapper 23 + ]; 24 + 25 + goPackagePath = "github.com/remotemobprogramming/mob"; 26 + 27 + preFixup = lib.optionalString withSpeech '' 28 + wrapProgram $out/bin/mob \ 29 + --set MOB_VOICE_COMMAND "${lib.getBin espeak-ng}/bin/espeak" 30 + ''; 31 + 32 meta = with lib; { 33 + description = "Tool for smooth git handover"; 34 homepage = "https://github.com/remotemobprogramming/mob"; 35 license = licenses.mit; 36 + maintainers = with maintainers; [ ericdallo ]; 37 platforms = platforms.linux ++ platforms.darwin; 38 }; 39 }
+2 -2
pkgs/applications/networking/mailreaders/aerc/default.nix
··· 14 sha256 = "sha256-RaHigTp1YGkjQ46gFLhKcJuajekcCgfozu0ndCNq5Ac="; 15 }; 16 17 - runVend = true; 18 - vendorSha256 = "sha256-A2MZzTYzGuZLFENn9OBIBBreJan+b3RKOEu5bQcDwS8="; 19 20 doCheck = false; 21
··· 14 sha256 = "sha256-RaHigTp1YGkjQ46gFLhKcJuajekcCgfozu0ndCNq5Ac="; 15 }; 16 17 + proxyVendor = true; 18 + vendorSha256 = "sha256-ZFs2CXmNZpGae7bD15yTh3w6b00C7AgOwGuz72d2wHs="; 19 20 doCheck = false; 21
+1
pkgs/data/icons/gnome-icon-theme/default.nix
··· 29 license = licenses.gpl3Plus; 30 platforms = platforms.unix; 31 maintainers = [ maintainers.romildo ]; 32 }; 33 }
··· 29 license = licenses.gpl3Plus; 30 platforms = platforms.unix; 31 maintainers = [ maintainers.romildo ]; 32 + broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/gnome-icon-theme.x86_64-darwin 33 }; 34 }
+7 -6
pkgs/development/go-modules/generic/default.nix
··· 26 , vendorSha256 27 # Whether to delete the vendor folder supplied with the source. 28 , deleteVendor ? false 29 - # Whether to run the vend tool to regenerate the vendor directory. 30 - # This is useful if any dependency contain C files. 31 - , runVend ? false 32 # Whether to fetch (go mod download) and proxy the vendor directory. 33 - # This is useful if any dependency has case-insensitive conflicts 34 - # which will produce platform dependant `vendorSha256` checksums. 35 , proxyVendor ? false 36 37 # We want parallel builds by default ··· 43 44 , meta ? {} 45 46 # Not needed with buildGoModule 47 , goPackagePath ? "" 48 ··· 54 55 with builtins; 56 57 - assert (runVend == true && proxyVendor == true) -> throw "can't use `runVend` and `proxyVendor` together"; 58 59 assert goPackagePath != "" -> throw "`goPackagePath` is not needed with `buildGoModule`"; 60
··· 26 , vendorSha256 27 # Whether to delete the vendor folder supplied with the source. 28 , deleteVendor ? false 29 # Whether to fetch (go mod download) and proxy the vendor directory. 30 + # This is useful if your code depends on c code and go mod tidy does not 31 + # include the needed sources to build or if any dependency has case-insensitive 32 + # conflicts which will produce platform dependant `vendorSha256` checksums. 33 , proxyVendor ? false 34 35 # We want parallel builds by default ··· 41 42 , meta ? {} 43 44 + # disabled 45 + , runVend ? false 46 + 47 # Not needed with buildGoModule 48 , goPackagePath ? "" 49 ··· 55 56 with builtins; 57 58 + assert runVend != false -> throw "`runVend` has been replaced by `proxyVendor`"; 59 60 assert goPackagePath != "" -> throw "`goPackagePath` is not needed with `buildGoModule`"; 61
+6 -4
pkgs/development/libraries/LASzip/LASzip2.nix
··· 1 - { lib, stdenv, fetchurl, cmake }: 2 3 stdenv.mkDerivation rec { 4 version = "2.2.0"; 5 pname = "LASzip"; 6 7 - src = fetchurl { 8 - url = "https://github.com/LASzip/LASzip/archive/v${version}.tar.gz"; 9 - sha256 = "b8e8cc295f764b9d402bc587f3aac67c83ed8b39f1cb686b07c168579c61fbb2"; 10 }; 11 12 nativeBuildInputs = [ cmake ];
··· 1 + { lib, stdenv, fetchFromGitHub, cmake }: 2 3 stdenv.mkDerivation rec { 4 version = "2.2.0"; 5 pname = "LASzip"; 6 7 + src = fetchFromGitHub { 8 + owner = "LASzip"; 9 + repo = "LASzip"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-TXzse4oLjNX5R2xDR721iV+gW/rP5z3Zciv4OgxfeqA="; 12 }; 13 14 nativeBuildInputs = [ cmake ];
+6 -4
pkgs/development/libraries/graphene-hardened-malloc/default.nix
··· 1 - { lib, stdenv, fetchurl, python3, runCommand, makeWrapper, stress-ng }: 2 3 lib.fix (self: stdenv.mkDerivation rec { 4 pname = "graphene-hardened-malloc"; 5 version = "8"; 6 7 - src = fetchurl { 8 - url = "https://github.com/GrapheneOS/hardened_malloc/archive/${version}.tar.gz"; 9 - sha256 = "0lipyd2pb1bmghkyv9zmg25jwcglj7m281f01zlh3ghz3xlfh0ym"; 10 }; 11 12 doCheck = true;
··· 1 + { lib, stdenv, fetchFromGitHub, python3, runCommand, makeWrapper, stress-ng }: 2 3 lib.fix (self: stdenv.mkDerivation rec { 4 pname = "graphene-hardened-malloc"; 5 version = "8"; 6 7 + src = fetchFromGitHub { 8 + owner = "GrapheneOS"; 9 + repo = "hardened_malloc"; 10 + rev = version; 11 + sha256 = "sha256-+5kJb3hhuFTto7zsIymIXl3tpKUOm3v1DCY4EkAOCgo="; 12 }; 13 14 doCheck = true;
-71
pkgs/development/libraries/grib-api/default.nix
··· 1 - { fetchurl, fetchpatch, lib, stdenv, 2 - cmake, netcdf, gfortran, libpng, openjpeg, 3 - enablePython ? false, pythonPackages ? null }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "grib-api"; 7 - version = "1.28.0"; 8 - 9 - src = fetchurl { 10 - url = "https://software.ecmwf.int/wiki/download/attachments/3473437/grib_api-${version}-Source.tar.gz"; 11 - sha256 = "0qbj12ap7yy2rl1pq629chnss2jl73wxdj1lwzv0xp87r6z5qdfl"; 12 - }; 13 - 14 - patches = [ 15 - (fetchpatch { 16 - url = "https://salsa.debian.org/science-team/grib-api/raw/debian/1.28.0-2/debian/patches/openjpeg2.patch"; 17 - sha256 = "05faxh51vlidiazxq1ssd3k4cjivk1adyn30k94mxqa1xnb2r2pc"; 18 - }) 19 - ]; 20 - 21 - preConfigure = '' 22 - # Fix "no member named 'inmem_' in 'jas_image_t'" 23 - substituteInPlace "src/grib_jasper_encoding.c" --replace "image.inmem_ = 1;" "" 24 - ''; 25 - 26 - nativeBuildInputs = [ cmake gfortran ]; 27 - buildInputs = [ netcdf 28 - libpng 29 - openjpeg 30 - ] ++ lib.optionals enablePython [ 31 - pythonPackages.python 32 - ]; 33 - 34 - propagatedBuildInputs = lib.optionals enablePython [ 35 - pythonPackages.numpy 36 - ]; 37 - 38 - cmakeFlags = [ "-DENABLE_PYTHON=${if enablePython then "ON" else "OFF"}" 39 - "-DENABLE_PNG=ON" 40 - "-DENABLE_FORTRAN=ON" 41 - "-DOPENJPEG_INCLUDE_DIR=${openjpeg.dev}/include/${openjpeg.incDir}" 42 - ]; 43 - 44 - doCheck = true; 45 - 46 - # Only do tests that don't require downloading 120MB of testdata 47 - # We fix the darwin checkPhase, which searches for libgrib_api.dylib 48 - # in /nix/store by setting DYLD_LIBRARY_PATH 49 - checkPhase = lib.optionalString (stdenv.isDarwin) '' 50 - substituteInPlace "tests/include.sh" --replace "set -ea" "set -ea; export DYLD_LIBRARY_PATH=$(pwd)/lib" 51 - '' + '' 52 - ctest -R "t_definitions|t_calendar|t_unit_tests" -VV 53 - ''; 54 - 55 - 56 - meta = with lib; { 57 - homepage = "https://software.ecmwf.int/wiki/display/GRIB/Home"; 58 - license = licenses.asl20; 59 - platforms = with platforms; linux ++ darwin; 60 - description = "ECMWF Library for the GRIB file format -- DEPRECATED"; 61 - longDescription = '' 62 - The ECMWF GRIB API is an application program interface accessible from C, 63 - FORTRAN and Python programs developed for encoding and decoding WMO FM-92 64 - GRIB edition 1 and edition 2 messages. 65 - 66 - Please note: GRIB-API support is being discontinued at the end of 2018. 67 - After which there will be no further releases. Please upgrade to ecCodes 68 - ''; 69 - maintainers = with maintainers; [ knedlsepp ]; 70 - }; 71 - }
···
+6 -5
pkgs/development/libraries/keybinder/default.nix
··· 1 - { lib, stdenv, fetchurl, autoconf, automake, libtool, pkg-config, gnome 2 , gtk-doc, gtk2, python2Packages, lua, gobject-introspection 3 }: 4 ··· 8 pname = "keybinder"; 9 version = "0.3.0"; 10 11 - src = fetchurl { 12 - name = "${pname}-${version}.tar.gz"; 13 - url = "https://github.com/engla/keybinder/archive/v${version}.tar.gz"; 14 - sha256 = "0kkplz5snycik5xknwq1s8rnmls3qsp32z09mdpmaacydcw7g3cf"; 15 }; 16 17 nativeBuildInputs = [ pkg-config ];
··· 1 + { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config, gnome 2 , gtk-doc, gtk2, python2Packages, lua, gobject-introspection 3 }: 4 ··· 8 pname = "keybinder"; 9 version = "0.3.0"; 10 11 + src = fetchFromGitHub { 12 + owner = "engla"; 13 + repo = "keybinder"; 14 + rev = "v${version}"; 15 + sha256 = "sha256-q/+hqhvXIknT+/5oENcWSr1OuF00kaZlXFUP1fdCMlk="; 16 }; 17 18 nativeBuildInputs = [ pkg-config ];
+7 -5
pkgs/development/libraries/libcangjie/default.nix
··· 1 - { lib, stdenv, autoconf, automake, libtool, m4, fetchurl, bash, pkg-config, sqlite }: 2 3 stdenv.mkDerivation rec { 4 pname = "libcangjie"; 5 version = "1.4_rev_${rev}"; 6 rev = "a73c1d8783f7b6526fd9b2cc44a669ffa5518d3d"; 7 8 - src = fetchurl { 9 - url = "https://github.com/Cangjians/libcangjie/archive/${rev}.tar.gz"; 10 - sha256 = "0i5svvcx099fc9hh5dvr3gpb1041v6vn5fnylxy82zjy239114lg"; 11 }; 12 13 nativeBuildInputs = [ pkg-config ]; ··· 26 longDescription = '' 27 libcangjie is a library implementing the Cangjie input method. 28 ''; 29 - homepage = "http://cangjians.github.io/projects/libcangjie/"; 30 license = lib.licenses.lgpl3Plus; 31 32 maintainers = [ lib.maintainers.linquize ];
··· 1 + { lib, stdenv, autoconf, automake, libtool, m4, fetchFromGitLab, bash, pkg-config, sqlite }: 2 3 stdenv.mkDerivation rec { 4 pname = "libcangjie"; 5 version = "1.4_rev_${rev}"; 6 rev = "a73c1d8783f7b6526fd9b2cc44a669ffa5518d3d"; 7 8 + src = fetchFromGitLab { 9 + owner = "Cangjians"; 10 + repo = "libcangjie"; 11 + inherit rev; 12 + sha256 = "sha256-R7WqhxciaTxhTiwPp2EUNTOh477gi/Pj3VpMtat5qXw="; 13 }; 14 15 nativeBuildInputs = [ pkg-config ]; ··· 28 longDescription = '' 29 libcangjie is a library implementing the Cangjie input method. 30 ''; 31 + homepage = "https://gitlab.freedesktop.org/cangjie/libcangjie"; 32 license = lib.licenses.lgpl3Plus; 33 34 maintainers = [ lib.maintainers.linquize ];
+6 -4
pkgs/development/libraries/libcec/default.nix
··· 1 - { lib, stdenv, fetchurl, cmake, pkg-config, udev, libcec_platform, libraspberrypi ? null }: 2 3 stdenv.mkDerivation rec { 4 pname = "libcec"; 5 version = "6.0.2"; 6 7 - src = fetchurl { 8 - url = "https://github.com/Pulse-Eight/libcec/archive/libcec-${version}.tar.gz"; 9 - sha256 = "0xrkrcgfgr5r8r0854bw3i9jbq4jmf8nzc5vrrx2sxzvlkbrc1h9"; 10 }; 11 12 nativeBuildInputs = [ pkg-config cmake ];
··· 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, udev, libcec_platform, libraspberrypi ? null }: 2 3 stdenv.mkDerivation rec { 4 pname = "libcec"; 5 version = "6.0.2"; 6 7 + src = fetchFromGitHub { 8 + owner = "Pulse-Eight"; 9 + repo = "libcec"; 10 + rev = "libcec-${version}"; 11 + sha256 = "sha256-OWqCn7Z0KG8sLlfMWd0btJIFJs79ET3Y1AV/y/Kj2TU="; 12 }; 13 14 nativeBuildInputs = [ pkg-config cmake ];
+6 -4
pkgs/development/libraries/libcrafter/default.nix
··· 1 - { lib, stdenv, fetchzip, autoconf, automake, libtool, libpcap }: 2 3 stdenv.mkDerivation rec { 4 pname = "libcrafter"; 5 version = "1.0"; 6 7 - src = fetchzip { 8 - url = "https://github.com/pellegre/libcrafter/archive/version-${version}.zip"; 9 - sha256 = "1d2vgxawdwk2zg3scxclxdby1rhghmivly8azdjja89kw7gls9xl"; 10 }; 11 12 preConfigure = "cd libcrafter";
··· 1 + { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, libpcap }: 2 3 stdenv.mkDerivation rec { 4 pname = "libcrafter"; 5 version = "1.0"; 6 7 + src = fetchFromGitHub { 8 + owner = "pellegre"; 9 + repo = "libcrafter"; 10 + rev = "version-${version}"; 11 + sha256 = "sha256-tCdN3+EzISVl+wp5umOFD+bgV+uUdabH+2LyxlV/W7Q="; 12 }; 13 14 preConfigure = "cd libcrafter";
+55
pkgs/development/python-modules/optax/default.nix
···
··· 1 + { absl-py 2 + , buildPythonPackage 3 + , chex 4 + , dm-haiku 5 + , fetchFromGitHub 6 + , jaxlib 7 + , lib 8 + , numpy 9 + , pytestCheckHook 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "optax"; 14 + # As of 2022-01-06, the latest stable version (0.1.0) has broken tests that are fixed 15 + # in https://github.com/deepmind/optax/commit/d6633365d84eb6f2c0df0c52b630481a349ce562 16 + version = "unstable-2022-01-05"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "deepmind"; 20 + repo = pname; 21 + rev = "5ec5541b3486224b22e950480ff639ceaf5098f7"; 22 + sha256 = "1q8cxc42a5xais2ll1l238cnn3l7w28savhgiz0lg01ilz2ysbli"; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + absl-py 27 + chex 28 + jaxlib 29 + numpy 30 + ]; 31 + 32 + checkInputs = [ 33 + dm-haiku 34 + pytestCheckHook 35 + ]; 36 + 37 + pythonImportsCheck = [ 38 + "optax" 39 + ]; 40 + 41 + disabledTestPaths = [ 42 + # Requires `flax` which depends on `optax` creating circular dependency. 43 + "optax/_src/equivalence_test.py" 44 + # Require `tensorflow_datasets` which isn't packaged in `nixpkgs`. 45 + "examples/datasets_test.py" 46 + "examples/lookahead_mnist_test.py" 47 + ]; 48 + 49 + meta = with lib; { 50 + description = "Optax is a gradient processing and optimization library for JAX."; 51 + homepage = "https://github.com/deepmind/optax"; 52 + license = licenses.asl20; 53 + maintainers = with maintainers; [ ndl ]; 54 + }; 55 + }
+3 -3
pkgs/development/tools/go-task/default.nix
··· 2 3 buildGoModule rec { 4 pname = "go-task"; 5 - version = "3.9.2"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = "task"; 10 rev = "v${version}"; 11 - sha256 = "sha256-nlIgX7TV3bWi8vaYQ9kXmNzGlVLgRUDNkNApwrAw3EQ="; 12 }; 13 14 - vendorSha256 = "sha256-Dmn3LJ+TBO/F3N5lgrNXXrFJ5KTp6r45ZwU11LxvQSg="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "go-task"; 5 + version = "3.10.0"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = "task"; 10 rev = "v${version}"; 11 + sha256 = "sha256-E0wMFdLK8lA8oluFQuq7hPMWh4t6OsoJ14d7ErDjAdA="; 12 }; 13 14 + vendorSha256 = "sha256-ClMvbxDKwwoVUC9+AJPZfBxJ26KKuLueUn9Nz/gh4Fs="; 15 16 doCheck = false; 17
+9 -1
pkgs/games/widelands/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , SDL2 5 , SDL2_image 6 , SDL2_mixer ··· 32 sha256 = "sha256-gNumYoeKePaxiAzrqEPKibMxFwv9vyBrCSoua+MKhcM="; 33 }; 34 35 - patches = [ ./bincmake.patch ]; 36 37 postPatch = '' 38 substituteInPlace xdg/org.widelands.Widelands.desktop \
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 + , fetchpatch 5 , SDL2 6 , SDL2_image 7 , SDL2_mixer ··· 33 sha256 = "sha256-gNumYoeKePaxiAzrqEPKibMxFwv9vyBrCSoua+MKhcM="; 34 }; 35 36 + patches = [ 37 + ./bincmake.patch 38 + # fix for building with Boost 1.77, https://github.com/widelands/widelands/pull/5025 39 + (fetchpatch { 40 + url = "https://github.com/widelands/widelands/commit/33981fda8c319c9feafc958f5f0b1670c48666ef.patch"; 41 + sha256 = "sha256-FjxxCTPpg/Zp01XpNfgRXMMLJBfxAptkLpsLmnFXm2Q="; 42 + }) 43 + ]; 44 45 postPatch = '' 46 substituteInPlace xdg/org.widelands.Widelands.desktop \
+159 -87
pkgs/misc/vim-plugins/generated.nix
··· 45 src = fetchFromGitHub { 46 owner = "stevearc"; 47 repo = "aerial.nvim"; 48 - rev = "351b9693f1e0af0b0bbb05a8aef294bce1365e3c"; 49 - sha256 = "0f7ni7y3l3w01jyhp35n023dc0213794ds79p2lmlsdqbqs3p03f"; 50 }; 51 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 52 }; ··· 161 162 async-vim = buildVimPluginFrom2Nix { 163 pname = "async.vim"; 164 - version = "2021-03-21"; 165 src = fetchFromGitHub { 166 owner = "prabirshrestha"; 167 repo = "async.vim"; 168 - rev = "0fb846e1eb3c2bf04d52a57f41088afb3395212e"; 169 - sha256 = "1glzg0i53wkm383y1vbddbyp1ivlsx2hivjchiw60sr9gccn8f8l"; 170 }; 171 meta.homepage = "https://github.com/prabirshrestha/async.vim/"; 172 }; ··· 473 474 chadtree = buildVimPluginFrom2Nix { 475 pname = "chadtree"; 476 - version = "2022-01-03"; 477 src = fetchFromGitHub { 478 owner = "ms-jpq"; 479 repo = "chadtree"; 480 - rev = "cd5b7c77fb69b5ec7a2aa917234af17a4277db5e"; 481 - sha256 = "1api1vxlwlxw5j8m2hhkpiryr24hcx9lb0z64ajig04aak3pznk0"; 482 }; 483 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 484 }; ··· 581 582 cmp-buffer = buildVimPluginFrom2Nix { 583 pname = "cmp-buffer"; 584 - version = "2021-12-24"; 585 src = fetchFromGitHub { 586 owner = "hrsh7th"; 587 repo = "cmp-buffer"; 588 - rev = "a01cfeca70594f505b2f086501e90fb6c2f2aaaa"; 589 - sha256 = "0qsicv28kyg3rrj1b7g7x2dhhhrs9i577bnvv4972riii544wjra"; 590 }; 591 meta.homepage = "https://github.com/hrsh7th/cmp-buffer/"; 592 }; ··· 1182 1183 crates-nvim = buildVimPluginFrom2Nix { 1184 pname = "crates.nvim"; 1185 - version = "2022-01-01"; 1186 src = fetchFromGitHub { 1187 owner = "saecki"; 1188 repo = "crates.nvim"; 1189 - rev = "31a4bc8ae519020edf315f8d98380e7659c1d621"; 1190 - sha256 = "1hh942nczxgljy95c6788qmkqd9gql05fk9c3ddhbrci6mmjhwcj"; 1191 }; 1192 meta.homepage = "https://github.com/saecki/crates.nvim/"; 1193 }; ··· 2015 2016 friendly-snippets = buildVimPluginFrom2Nix { 2017 pname = "friendly-snippets"; 2018 - version = "2022-01-02"; 2019 src = fetchFromGitHub { 2020 owner = "rafamadriz"; 2021 repo = "friendly-snippets"; 2022 - rev = "7ef21c9daa6f47ad0ce6907232c94bcb99f23a11"; 2023 - sha256 = "0g466ddc0jk9mrv7lq4dpxgc5cpqy89w1jx5l0x0c339sijacsgb"; 2024 }; 2025 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 2026 }; ··· 2039 2040 FTerm-nvim = buildVimPluginFrom2Nix { 2041 pname = "FTerm.nvim"; 2042 - version = "2021-11-13"; 2043 src = fetchFromGitHub { 2044 owner = "numToStr"; 2045 repo = "FTerm.nvim"; 2046 - rev = "0911ab93b488fdd8032e695ab56d14357e14e836"; 2047 - sha256 = "0pbfg66fd8ff1b2wshlb9c58sb8zq3ckm7yjg6vv43dk4kcnjf1i"; 2048 }; 2049 meta.homepage = "https://github.com/numToStr/FTerm.nvim/"; 2050 }; ··· 2159 2160 ghcid = buildVimPluginFrom2Nix { 2161 pname = "ghcid"; 2162 - version = "2021-10-10"; 2163 src = fetchFromGitHub { 2164 owner = "ndmitchell"; 2165 repo = "ghcid"; 2166 - rev = "b18ad1643f753f39e924909ecd957cb6b5a5fa89"; 2167 - sha256 = "1swwz4kzc1d41nbvvar3a2c71xy524fsyf5kjyrbbivrghcifpl8"; 2168 }; 2169 meta.homepage = "https://github.com/ndmitchell/ghcid/"; 2170 }; ··· 2195 2196 git-blame-nvim = buildVimPluginFrom2Nix { 2197 pname = "git-blame.nvim"; 2198 - version = "2021-06-14"; 2199 src = fetchFromGitHub { 2200 owner = "f-person"; 2201 repo = "git-blame.nvim"; 2202 - rev = "125f09f3e09091fa9cc6585156e199d08989dc0e"; 2203 - sha256 = "1d6al5yrwv0wfmy39k8ky5ha1x0a6mz6djscibwz13fvgqka2730"; 2204 }; 2205 meta.homepage = "https://github.com/f-person/git-blame.nvim/"; 2206 }; ··· 2952 2953 lean-nvim = buildVimPluginFrom2Nix { 2954 pname = "lean.nvim"; 2955 - version = "2022-01-03"; 2956 src = fetchFromGitHub { 2957 owner = "Julian"; 2958 repo = "lean.nvim"; 2959 - rev = "1696419d2d8acc8f34ba9b81c5e91b8782369530"; 2960 - sha256 = "05a002zykm9xkqp5x6lpbwp46fyk7lz85fc2dnkq38hjyzp6h9sh"; 2961 }; 2962 meta.homepage = "https://github.com/Julian/lean.nvim/"; 2963 }; ··· 3154 meta.homepage = "https://github.com/tami5/lispdocs.nvim/"; 3155 }; 3156 3157 lsp-colors-nvim = buildVimPluginFrom2Nix { 3158 pname = "lsp-colors.nvim"; 3159 version = "2021-10-22"; ··· 3204 3205 lsp_signature-nvim = buildVimPluginFrom2Nix { 3206 pname = "lsp_signature.nvim"; 3207 - version = "2022-01-03"; 3208 src = fetchFromGitHub { 3209 owner = "ray-x"; 3210 repo = "lsp_signature.nvim"; 3211 - rev = "d15c7445dc896a146b670b6ceab4bb1619384062"; 3212 - sha256 = "0bb2hmfp43khn592zxddyvllim873phqzpma2q2hvk9hdl0hz1ry"; 3213 }; 3214 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 3215 }; ··· 3264 3265 lualine-nvim = buildVimPluginFrom2Nix { 3266 pname = "lualine.nvim"; 3267 - version = "2022-01-02"; 3268 src = fetchFromGitHub { 3269 owner = "nvim-lualine"; 3270 repo = "lualine.nvim"; 3271 - rev = "b18b7ee8acf877a603c21b28b9a4d9c08bbd9594"; 3272 - sha256 = "0zp02m1xhqa5rbqp5wjfjaasmyd50w9782wm0k7lnyakf8akg8jn"; 3273 }; 3274 meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/"; 3275 }; ··· 3412 src = fetchFromGitHub { 3413 owner = "jose-elias-alvarez"; 3414 repo = "minsnip.nvim"; 3415 - rev = "8edc84c4896e72a85a474930af82656773ac82b0"; 3416 - sha256 = "1m7w5xz5j0brqx7ravwqjnran9g2zr3nsckmgmpahva7287db9hz"; 3417 }; 3418 meta.homepage = "https://github.com/jose-elias-alvarez/minsnip.nvim/"; 3419 }; ··· 3804 3805 neorg = buildVimPluginFrom2Nix { 3806 pname = "neorg"; 3807 - version = "2022-01-02"; 3808 src = fetchFromGitHub { 3809 owner = "nvim-neorg"; 3810 repo = "neorg"; 3811 - rev = "36e4ba5b49d5e01b1910db8ebc7c1963e51600a4"; 3812 - sha256 = "0wgzhxrx034m2rn2sp7gs5bi6wwdmr73qddbn3fxfn69y8h1m41n"; 3813 }; 3814 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 3815 }; ··· 4032 4033 nnn-vim = buildVimPluginFrom2Nix { 4034 pname = "nnn.vim"; 4035 - version = "2021-12-04"; 4036 src = fetchFromGitHub { 4037 owner = "mcchrish"; 4038 repo = "nnn.vim"; 4039 - rev = "32d106a121eb4c88a8f4d0c6d779065b731c9fcb"; 4040 - sha256 = "12n3i813019q4j1lhgkpigjbi6yjywhhdib0xhw9qsjw2s7nvpk8"; 4041 }; 4042 meta.homepage = "https://github.com/mcchrish/nnn.vim/"; 4043 }; ··· 4104 4105 null-ls-nvim = buildVimPluginFrom2Nix { 4106 pname = "null-ls.nvim"; 4107 - version = "2022-01-03"; 4108 src = fetchFromGitHub { 4109 owner = "jose-elias-alvarez"; 4110 repo = "null-ls.nvim"; 4111 - rev = "5d37e35938862f1642ef94206bec9a6f184ec798"; 4112 - sha256 = "157246yhf7za5aw7v0g0wk6kbcdpz7bwngg45l7xxh0p4c57j0y2"; 4113 }; 4114 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4115 }; ··· 4152 4153 nvim-autopairs = buildVimPluginFrom2Nix { 4154 pname = "nvim-autopairs"; 4155 - version = "2021-12-26"; 4156 src = fetchFromGitHub { 4157 owner = "windwp"; 4158 repo = "nvim-autopairs"; 4159 - rev = "3909fc7912f4349ee8b8891056ad807abc7221d3"; 4160 - sha256 = "1awx0pzkgw1c07dghcfrspj4vl7s0rkb23jhz9sd0zi9cbrqczpc"; 4161 }; 4162 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 4163 }; ··· 4380 4381 nvim-highlite = buildVimPluginFrom2Nix { 4382 pname = "nvim-highlite"; 4383 - version = "2021-11-30"; 4384 src = fetchFromGitHub { 4385 owner = "Iron-E"; 4386 repo = "nvim-highlite"; 4387 - rev = "639c167541202fcbf41ed5cec619ce0fcf1d5ab8"; 4388 - sha256 = "1dcwbzw6rfh5h2yxl17jy5szqp2fmjcss3sfcznis1ccdggh9wnr"; 4389 }; 4390 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 4391 }; ··· 4476 4477 nvim-lspconfig = buildVimPluginFrom2Nix { 4478 pname = "nvim-lspconfig"; 4479 - version = "2022-01-02"; 4480 src = fetchFromGitHub { 4481 owner = "neovim"; 4482 repo = "nvim-lspconfig"; 4483 - rev = "486d51cbf492ea769ff563f86bf84ae4a51ccb02"; 4484 - sha256 = "1zhfs2s5c63i3hvs4d558zxjd4ckr5811qhmrxwb6ry3lvp2dq4j"; 4485 }; 4486 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 4487 }; ··· 4560 4561 nvim-scrollview = buildVimPluginFrom2Nix { 4562 pname = "nvim-scrollview"; 4563 - version = "2021-12-16"; 4564 src = fetchFromGitHub { 4565 owner = "dstein64"; 4566 repo = "nvim-scrollview"; 4567 - rev = "5f35322499bc789b44d19f35ee4c23fbed5a3a89"; 4568 - sha256 = "1nc3czp7grb9db52d2cvj81pqipk0x4918560v11b9g2kmvp34g2"; 4569 }; 4570 meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; 4571 }; ··· 4620 4621 nvim-treesitter = buildVimPluginFrom2Nix { 4622 pname = "nvim-treesitter"; 4623 - version = "2021-12-29"; 4624 src = fetchFromGitHub { 4625 owner = "nvim-treesitter"; 4626 repo = "nvim-treesitter"; 4627 - rev = "fa2a6b68aaa6df0187b5bbebe6cbadc120d4a65a"; 4628 - sha256 = "1yfvx0nmz76cl7d8zmzgmkpxkjn12ddk7sdglcqmvy32iil3bksw"; 4629 }; 4630 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 4631 }; ··· 4676 sha256 = "0hgay8d4lja4fk3d6xhq08n1j9ic6flzq1w003b3fpxzr6l2b0vl"; 4677 }; 4678 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 4679 }; 4680 4681 nvim-ts-context-commentstring = buildVimPluginFrom2Nix { ··· 5354 5355 renamer-nvim = buildVimPluginFrom2Nix { 5356 pname = "renamer.nvim"; 5357 - version = "2021-12-19"; 5358 src = fetchFromGitHub { 5359 owner = "filipdutescu"; 5360 repo = "renamer.nvim"; 5361 - rev = "814ddbb11602e3c8b2af166b4d1e029272ab796f"; 5362 - sha256 = "067mn0wzvin7zbbzd8svshi5ga38r5d7nw8kqbyn3aakggpnylm3"; 5363 }; 5364 meta.homepage = "https://github.com/filipdutescu/renamer.nvim/"; 5365 }; ··· 5390 5391 rnvimr = buildVimPluginFrom2Nix { 5392 pname = "rnvimr"; 5393 - version = "2022-01-02"; 5394 src = fetchFromGitHub { 5395 owner = "kevinhwang91"; 5396 repo = "rnvimr"; 5397 - rev = "d91ea7e21a2e3e0c4ff58abcdee0a4804c15cdc6"; 5398 - sha256 = "1hlrny63nn9836w4g4ia4niygq8pwwv0g9hsway589xpgj0kgadz"; 5399 }; 5400 meta.homepage = "https://github.com/kevinhwang91/rnvimr/"; 5401 }; ··· 5498 5499 SchemaStore-nvim = buildVimPluginFrom2Nix { 5500 pname = "SchemaStore.nvim"; 5501 - version = "2022-01-01"; 5502 src = fetchFromGitHub { 5503 owner = "b0o"; 5504 repo = "SchemaStore.nvim"; 5505 - rev = "efa83a65c646ff7a1deda77aaae3703f5e0cba0d"; 5506 - sha256 = "1rla73samh16x6yvw3qd9s36vh400k3rz4gid550msvxym3inq0y"; 5507 }; 5508 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 5509 }; ··· 5823 5824 splitjoin-vim = buildVimPluginFrom2Nix { 5825 pname = "splitjoin.vim"; 5826 - version = "2021-11-03"; 5827 src = fetchFromGitHub { 5828 owner = "AndrewRadev"; 5829 repo = "splitjoin.vim"; 5830 - rev = "0f45bfd7d6a8acb7d6ac126001a27190851bf3f5"; 5831 - sha256 = "1a5y8qj8gyrmaxh4si3k30v19yh8chws4h9k41ra1jzslrilm9ai"; 5832 fetchSubmodules = true; 5833 }; 5834 meta.homepage = "https://github.com/AndrewRadev/splitjoin.vim/"; ··· 5942 meta.homepage = "https://github.com/ervandew/supertab/"; 5943 }; 5944 5945 sved = buildVimPluginFrom2Nix { 5946 pname = "sved"; 5947 version = "2021-10-22"; ··· 6149 6150 telescope-coc-nvim = buildVimPluginFrom2Nix { 6151 pname = "telescope-coc.nvim"; 6152 - version = "2021-12-23"; 6153 src = fetchFromGitHub { 6154 owner = "fannheyward"; 6155 repo = "telescope-coc.nvim"; 6156 - rev = "2617983a9f0f70b578bbd290f2502d1bc91219ff"; 6157 - sha256 = "0ycvhvvy954vhi5jidwz37xkmdk3i8cnwx7aasgmpkwrcgpaqq43"; 6158 }; 6159 meta.homepage = "https://github.com/fannheyward/telescope-coc.nvim/"; 6160 }; ··· 7927 7928 vim-eunuch = buildVimPluginFrom2Nix { 7929 pname = "vim-eunuch"; 7930 - version = "2021-10-01"; 7931 src = fetchFromGitHub { 7932 owner = "tpope"; 7933 repo = "vim-eunuch"; 7934 - rev = "7a48f9ff0ef5f21447b2354ee52dc18b5567e05c"; 7935 - sha256 = "1mwalnbp8pigpvai22zhzg52m25qbl7hl7r8vr8vhs277gc0lx8m"; 7936 }; 7937 meta.homepage = "https://github.com/tpope/vim-eunuch/"; 7938 }; ··· 8985 8986 vim-lsp = buildVimPluginFrom2Nix { 8987 pname = "vim-lsp"; 8988 - version = "2022-01-02"; 8989 src = fetchFromGitHub { 8990 owner = "prabirshrestha"; 8991 repo = "vim-lsp"; 8992 - rev = "420143420d929d6bc9e98102b5828e0bbc5c9052"; 8993 - sha256 = "0dkvcsd3jmkmg3by4jz1a5lj17blqm6zb1w7n9bccc2gy232sx6y"; 8994 }; 8995 meta.homepage = "https://github.com/prabirshrestha/vim-lsp/"; 8996 }; ··· 9434 src = fetchFromGitHub { 9435 owner = "jceb"; 9436 repo = "vim-orgmode"; 9437 - rev = "03561775e295d8546a95e04f9a2f1a246ad80354"; 9438 - sha256 = "1xn4k29s6psn0jbmbj1nymrkjky10ny9nylzpm5zz3rbad1c0k26"; 9439 }; 9440 meta.homepage = "https://github.com/jceb/vim-orgmode/"; 9441 }; ··· 11184 11185 vimtex = buildVimPluginFrom2Nix { 11186 pname = "vimtex"; 11187 - version = "2022-01-02"; 11188 src = fetchFromGitHub { 11189 owner = "lervag"; 11190 repo = "vimtex"; 11191 - rev = "84bc5aeb1d6c07f892b39ae99e356d7ab7012476"; 11192 - sha256 = "17k6dcycv2n0zklb23nx9bzr4cmxgp1np3py3ci4s6fznn64yymn"; 11193 }; 11194 meta.homepage = "https://github.com/lervag/vimtex/"; 11195 };
··· 45 src = fetchFromGitHub { 46 owner = "stevearc"; 47 repo = "aerial.nvim"; 48 + rev = "0f26a8d2c63c7050aea9b19982b5402595126bd7"; 49 + sha256 = "118vv5g918r9zcbjrlm9df6q4vban8jkc9xa40bbfkghgccadbjf"; 50 }; 51 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 52 }; ··· 161 162 async-vim = buildVimPluginFrom2Nix { 163 pname = "async.vim"; 164 + version = "2022-01-04"; 165 src = fetchFromGitHub { 166 owner = "prabirshrestha"; 167 repo = "async.vim"; 168 + rev = "f20569020d65bec3249222606c073c0943045b5e"; 169 + sha256 = "0lff0v2vd06amcjirnpa4wc4l4nsbngcrdqcv34kszyqgzd7phka"; 170 }; 171 meta.homepage = "https://github.com/prabirshrestha/async.vim/"; 172 }; ··· 473 474 chadtree = buildVimPluginFrom2Nix { 475 pname = "chadtree"; 476 + version = "2022-01-04"; 477 src = fetchFromGitHub { 478 owner = "ms-jpq"; 479 repo = "chadtree"; 480 + rev = "09fb16e9c07c45f05951d939bb8b89e2e31dcea1"; 481 + sha256 = "0acsac6wmyxhcgwav7gzgcjabqi37c9gcxph6x87xw8cmlbbpx81"; 482 }; 483 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 484 }; ··· 581 582 cmp-buffer = buildVimPluginFrom2Nix { 583 pname = "cmp-buffer"; 584 + version = "2022-01-04"; 585 src = fetchFromGitHub { 586 owner = "hrsh7th"; 587 repo = "cmp-buffer"; 588 + rev = "f83773e2f433a923997c5faad7ea689ec24d1785"; 589 + sha256 = "0z1c0x60hz3khgpp7nfj0i579sgi4vsnhhcqb02i7a8jx685qwrd"; 590 }; 591 meta.homepage = "https://github.com/hrsh7th/cmp-buffer/"; 592 }; ··· 1182 1183 crates-nvim = buildVimPluginFrom2Nix { 1184 pname = "crates.nvim"; 1185 + version = "2022-01-04"; 1186 src = fetchFromGitHub { 1187 owner = "saecki"; 1188 repo = "crates.nvim"; 1189 + rev = "a43f8a467b091329ff59be52c06012a0c614fc9b"; 1190 + sha256 = "059h4fxx92rv78i1gpvvsnydkbr0fr1np0b7vkanhbqm37xz1b09"; 1191 }; 1192 meta.homepage = "https://github.com/saecki/crates.nvim/"; 1193 }; ··· 2015 2016 friendly-snippets = buildVimPluginFrom2Nix { 2017 pname = "friendly-snippets"; 2018 + version = "2022-01-03"; 2019 src = fetchFromGitHub { 2020 owner = "rafamadriz"; 2021 repo = "friendly-snippets"; 2022 + rev = "9f04462bcabfd108341a6e47ed742b09a6a5b975"; 2023 + sha256 = "0j8cb1k66x0xnqa9rf20lic9v3byw0r93kcznnjxv8arg82zpc2k"; 2024 }; 2025 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 2026 }; ··· 2039 2040 FTerm-nvim = buildVimPluginFrom2Nix { 2041 pname = "FTerm.nvim"; 2042 + version = "2022-01-04"; 2043 src = fetchFromGitHub { 2044 owner = "numToStr"; 2045 repo = "FTerm.nvim"; 2046 + rev = "eabb65f23ba48ec9e8abb9a2514f99b77b3bc6f2"; 2047 + sha256 = "0bk1lh9i584ysj5yvmb7945nkighrc8blw28y6npqaf6mvma31n6"; 2048 }; 2049 meta.homepage = "https://github.com/numToStr/FTerm.nvim/"; 2050 }; ··· 2159 2160 ghcid = buildVimPluginFrom2Nix { 2161 pname = "ghcid"; 2162 + version = "2022-01-03"; 2163 src = fetchFromGitHub { 2164 owner = "ndmitchell"; 2165 repo = "ghcid"; 2166 + rev = "dc20c97a8f9ee36cbcdcd824e3c42140059af759"; 2167 + sha256 = "0in5hryli9iiww4wvakd3q82m65zwplahnqxxfyppjps2q534dkm"; 2168 }; 2169 meta.homepage = "https://github.com/ndmitchell/ghcid/"; 2170 }; ··· 2195 2196 git-blame-nvim = buildVimPluginFrom2Nix { 2197 pname = "git-blame.nvim"; 2198 + version = "2022-01-03"; 2199 src = fetchFromGitHub { 2200 owner = "f-person"; 2201 repo = "git-blame.nvim"; 2202 + rev = "f94cd83f7fd15805c3b145ff63fdb9390b18585a"; 2203 + sha256 = "1qdb3xg7fmb5fid288h3jyaj2rl6vbcc8d7pn0gk5bshli02bp4q"; 2204 }; 2205 meta.homepage = "https://github.com/f-person/git-blame.nvim/"; 2206 }; ··· 2952 2953 lean-nvim = buildVimPluginFrom2Nix { 2954 pname = "lean.nvim"; 2955 + version = "2022-01-04"; 2956 src = fetchFromGitHub { 2957 owner = "Julian"; 2958 repo = "lean.nvim"; 2959 + rev = "a99fc6963510dd481953f71683e98a4559518825"; 2960 + sha256 = "1826ixb15k9s0rqiw1ynhf6j6w9cxxciskvyiyp7wgd2i6rwf42g"; 2961 }; 2962 meta.homepage = "https://github.com/Julian/lean.nvim/"; 2963 }; ··· 3154 meta.homepage = "https://github.com/tami5/lispdocs.nvim/"; 3155 }; 3156 3157 + litee-calltree-nvim = buildVimPluginFrom2Nix { 3158 + pname = "litee-calltree.nvim"; 3159 + version = "2022-01-03"; 3160 + src = fetchFromGitHub { 3161 + owner = "ldelossa"; 3162 + repo = "litee-calltree.nvim"; 3163 + rev = "518d9e9e82e8480a81cf3e76c46ba7880a0c0034"; 3164 + sha256 = "0ai2pj4ggjcrl3z0azwrjashqazim51crzk1f5gsbpd4j1r572iv"; 3165 + }; 3166 + meta.homepage = "https://github.com/ldelossa/litee-calltree.nvim/"; 3167 + }; 3168 + 3169 + litee-filetree-nvim = buildVimPluginFrom2Nix { 3170 + pname = "litee-filetree.nvim"; 3171 + version = "2022-01-03"; 3172 + src = fetchFromGitHub { 3173 + owner = "ldelossa"; 3174 + repo = "litee-filetree.nvim"; 3175 + rev = "fe7e87130ac73c60247c61d71a7479a696766c22"; 3176 + sha256 = "0scak2xdcq0vxhb21d7sm59b3hhccwwkrn5wcl7cd0akxg5xpp3s"; 3177 + }; 3178 + meta.homepage = "https://github.com/ldelossa/litee-filetree.nvim/"; 3179 + }; 3180 + 3181 + litee-symboltree-nvim = buildVimPluginFrom2Nix { 3182 + pname = "litee-symboltree.nvim"; 3183 + version = "2022-01-03"; 3184 + src = fetchFromGitHub { 3185 + owner = "ldelossa"; 3186 + repo = "litee-symboltree.nvim"; 3187 + rev = "1c857aa75a0f011fa62cfc8ccd11a3d4e14fc552"; 3188 + sha256 = "19xl6yfnyc30mgqqg15mfawj1cw78h59amb32r7zhwxsh1p4qvsg"; 3189 + }; 3190 + meta.homepage = "https://github.com/ldelossa/litee-symboltree.nvim/"; 3191 + }; 3192 + 3193 + litee-nvim = buildVimPluginFrom2Nix { 3194 + pname = "litee.nvim"; 3195 + version = "2022-01-03"; 3196 + src = fetchFromGitHub { 3197 + owner = "ldelossa"; 3198 + repo = "litee.nvim"; 3199 + rev = "db4bbde5f90c3a9ca82ffe5e5dca63ecf5a8bd7c"; 3200 + sha256 = "0d5dlnxn0swrvj7i2kn6nxc8msl6z632ichabls53y1b3xps20jw"; 3201 + }; 3202 + meta.homepage = "https://github.com/ldelossa/litee.nvim/"; 3203 + }; 3204 + 3205 lsp-colors-nvim = buildVimPluginFrom2Nix { 3206 pname = "lsp-colors.nvim"; 3207 version = "2021-10-22"; ··· 3252 3253 lsp_signature-nvim = buildVimPluginFrom2Nix { 3254 pname = "lsp_signature.nvim"; 3255 + version = "2022-01-04"; 3256 src = fetchFromGitHub { 3257 owner = "ray-x"; 3258 repo = "lsp_signature.nvim"; 3259 + rev = "44a5bde409922a0019f3c25011be11fb20705f47"; 3260 + sha256 = "0g93khmivnrr02avd3nb88hh8bcyj9y7gq5l8fgjjq2cppbw03a1"; 3261 }; 3262 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 3263 }; ··· 3312 3313 lualine-nvim = buildVimPluginFrom2Nix { 3314 pname = "lualine.nvim"; 3315 + version = "2022-01-04"; 3316 src = fetchFromGitHub { 3317 owner = "nvim-lualine"; 3318 repo = "lualine.nvim"; 3319 + rev = "4b68b8dd2aa5bb74fe8cd058797322d81df1f455"; 3320 + sha256 = "17csrd2hbqdrim9aq948zd5vy6babjh9c8z4zw2q8xskvkkbiww8"; 3321 }; 3322 meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/"; 3323 }; ··· 3460 src = fetchFromGitHub { 3461 owner = "jose-elias-alvarez"; 3462 repo = "minsnip.nvim"; 3463 + rev = "190eefab6335d8d803e49c14a15c9dd0a947f972"; 3464 + sha256 = "083yskdn9jhzk1qpyhak4rdm5r0ryjr9swscxp77df6sfnbixvf5"; 3465 }; 3466 meta.homepage = "https://github.com/jose-elias-alvarez/minsnip.nvim/"; 3467 }; ··· 3852 3853 neorg = buildVimPluginFrom2Nix { 3854 pname = "neorg"; 3855 + version = "2022-01-03"; 3856 src = fetchFromGitHub { 3857 owner = "nvim-neorg"; 3858 repo = "neorg"; 3859 + rev = "ff085fbaf095ea07f5e35404747281ad3d40772e"; 3860 + sha256 = "1l0lmhm4wdc5b30vbc4715gggm9xx6y5hkvzb1xrrvkx0dp6kj0c"; 3861 }; 3862 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 3863 }; ··· 4080 4081 nnn-vim = buildVimPluginFrom2Nix { 4082 pname = "nnn.vim"; 4083 + version = "2022-01-03"; 4084 src = fetchFromGitHub { 4085 owner = "mcchrish"; 4086 repo = "nnn.vim"; 4087 + rev = "169951733371abd152d76d1ce65e2dd867156e2d"; 4088 + sha256 = "15prh70imjikmgnk4b161phcfqqz8jfqdq3l3nzhz80b597d6sv5"; 4089 }; 4090 meta.homepage = "https://github.com/mcchrish/nnn.vim/"; 4091 }; ··· 4152 4153 null-ls-nvim = buildVimPluginFrom2Nix { 4154 pname = "null-ls.nvim"; 4155 + version = "2022-01-04"; 4156 src = fetchFromGitHub { 4157 owner = "jose-elias-alvarez"; 4158 repo = "null-ls.nvim"; 4159 + rev = "8c59fd5ec84e1c90c3982a40d699ebe62b243592"; 4160 + sha256 = "0lix5ambsmldvajb5dcwcyb8cy2g6v1iq92dbw0v11l5wcddr75f"; 4161 }; 4162 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4163 }; ··· 4200 4201 nvim-autopairs = buildVimPluginFrom2Nix { 4202 pname = "nvim-autopairs"; 4203 + version = "2022-01-04"; 4204 src = fetchFromGitHub { 4205 owner = "windwp"; 4206 repo = "nvim-autopairs"; 4207 + rev = "96858723f1cba6a3eb004373a20c315d90584ea6"; 4208 + sha256 = "11zmf2dwd9fxgdargjbkh70d89ii7qf00mh3v8v8dm89fd6ap0xy"; 4209 }; 4210 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 4211 }; ··· 4428 4429 nvim-highlite = buildVimPluginFrom2Nix { 4430 pname = "nvim-highlite"; 4431 + version = "2022-01-03"; 4432 src = fetchFromGitHub { 4433 owner = "Iron-E"; 4434 repo = "nvim-highlite"; 4435 + rev = "03f0100dd52125a968e3bda4dacc3ab2003049d9"; 4436 + sha256 = "0wqlsys0z2hq9mlqb631v84fd35fznvkkq3nbzq6xyr3d8wmp0fk"; 4437 }; 4438 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 4439 }; ··· 4524 4525 nvim-lspconfig = buildVimPluginFrom2Nix { 4526 pname = "nvim-lspconfig"; 4527 + version = "2022-01-04"; 4528 src = fetchFromGitHub { 4529 owner = "neovim"; 4530 repo = "nvim-lspconfig"; 4531 + rev = "1917a52a7ccb517f76d6a6e732fb349f381fc927"; 4532 + sha256 = "0s4wcnn4d0wjr02307fbwz2f0yp77ibzadp4lcvsd7im9kxiczna"; 4533 }; 4534 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 4535 }; ··· 4608 4609 nvim-scrollview = buildVimPluginFrom2Nix { 4610 pname = "nvim-scrollview"; 4611 + version = "2022-01-03"; 4612 src = fetchFromGitHub { 4613 owner = "dstein64"; 4614 repo = "nvim-scrollview"; 4615 + rev = "4313cbb75a966aa461ef179fbcda23ba21d64c65"; 4616 + sha256 = "15zwii6bwz488xwj9397fgbxv723vxvmqhkx3kfq412rlb5aadx5"; 4617 }; 4618 meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; 4619 }; ··· 4668 4669 nvim-treesitter = buildVimPluginFrom2Nix { 4670 pname = "nvim-treesitter"; 4671 + version = "2022-01-04"; 4672 src = fetchFromGitHub { 4673 owner = "nvim-treesitter"; 4674 repo = "nvim-treesitter"; 4675 + rev = "479fde3471ad6833d950abf645c0ebece15eaea4"; 4676 + sha256 = "072l6m04z83rb9f6sp4rvziyk3i2r20i5vhn0c9djkdhy7x2bj9h"; 4677 }; 4678 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 4679 }; ··· 4724 sha256 = "0hgay8d4lja4fk3d6xhq08n1j9ic6flzq1w003b3fpxzr6l2b0vl"; 4725 }; 4726 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 4727 + }; 4728 + 4729 + nvim-ts-autotag = buildVimPluginFrom2Nix { 4730 + pname = "nvim-ts-autotag"; 4731 + version = "2021-12-19"; 4732 + src = fetchFromGitHub { 4733 + owner = "windwp"; 4734 + repo = "nvim-ts-autotag"; 4735 + rev = "0ceb4ef342bf1fdbb082ad4fa1fcfd0f864e1cba"; 4736 + sha256 = "0bbjhjngn0wv6f28z437bx9743w366665ygz6pz81059whfp93g7"; 4737 + }; 4738 + meta.homepage = "https://github.com/windwp/nvim-ts-autotag/"; 4739 }; 4740 4741 nvim-ts-context-commentstring = buildVimPluginFrom2Nix { ··· 5414 5415 renamer-nvim = buildVimPluginFrom2Nix { 5416 pname = "renamer.nvim"; 5417 + version = "2022-01-03"; 5418 src = fetchFromGitHub { 5419 owner = "filipdutescu"; 5420 repo = "renamer.nvim"; 5421 + rev = "6d4e3066bbf5725d15b082a7a188a3aca16ce217"; 5422 + sha256 = "1yfkpjjkhkhkqf543is1y2r44kz9py20rl5j34lwd2zz8ldibmca"; 5423 }; 5424 meta.homepage = "https://github.com/filipdutescu/renamer.nvim/"; 5425 }; ··· 5450 5451 rnvimr = buildVimPluginFrom2Nix { 5452 pname = "rnvimr"; 5453 + version = "2022-01-04"; 5454 src = fetchFromGitHub { 5455 owner = "kevinhwang91"; 5456 repo = "rnvimr"; 5457 + rev = "b876914f4c0fef926bed50876c3da16c15adc81c"; 5458 + sha256 = "0n5y4ysm0inki1sxxa7w59b682xjy7ykflydiphwf5m1w0fhpkin"; 5459 }; 5460 meta.homepage = "https://github.com/kevinhwang91/rnvimr/"; 5461 }; ··· 5558 5559 SchemaStore-nvim = buildVimPluginFrom2Nix { 5560 pname = "SchemaStore.nvim"; 5561 + version = "2022-01-03"; 5562 src = fetchFromGitHub { 5563 owner = "b0o"; 5564 repo = "SchemaStore.nvim"; 5565 + rev = "8cec6ac01fbeba4efd91ab9f991bbd56fb5002a7"; 5566 + sha256 = "069hn6px0a83bpj6332n9gwn82145d98pdvadhsnj89dkmf4gdcj"; 5567 }; 5568 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 5569 }; ··· 5883 5884 splitjoin-vim = buildVimPluginFrom2Nix { 5885 pname = "splitjoin.vim"; 5886 + version = "2022-01-03"; 5887 src = fetchFromGitHub { 5888 owner = "AndrewRadev"; 5889 repo = "splitjoin.vim"; 5890 + rev = "ed71635666356d9dc8950ecc177ed7eaa0d939ec"; 5891 + sha256 = "1fjg1zxl4sbibr658962iqk0lgcrggxwffmscr5v4n3x41v0xnrd"; 5892 fetchSubmodules = true; 5893 }; 5894 meta.homepage = "https://github.com/AndrewRadev/splitjoin.vim/"; ··· 6002 meta.homepage = "https://github.com/ervandew/supertab/"; 6003 }; 6004 6005 + surround-nvim = buildVimPluginFrom2Nix { 6006 + pname = "surround.nvim"; 6007 + version = "2021-12-29"; 6008 + src = fetchFromGitHub { 6009 + owner = "blackCauldron7"; 6010 + repo = "surround.nvim"; 6011 + rev = "81f997bd71590f21f717e24bae72edf8e8b7b0f6"; 6012 + sha256 = "06mdbpka2z17hyi3p7b9ksyz79ppwybhr4h9829qba8xr2gpd465"; 6013 + }; 6014 + meta.homepage = "https://github.com/blackCauldron7/surround.nvim/"; 6015 + }; 6016 + 6017 sved = buildVimPluginFrom2Nix { 6018 pname = "sved"; 6019 version = "2021-10-22"; ··· 6221 6222 telescope-coc-nvim = buildVimPluginFrom2Nix { 6223 pname = "telescope-coc.nvim"; 6224 + version = "2022-01-04"; 6225 src = fetchFromGitHub { 6226 owner = "fannheyward"; 6227 repo = "telescope-coc.nvim"; 6228 + rev = "5d806a0de91abfbdad967028627e8f300946f463"; 6229 + sha256 = "0b2497s3zdan81fslxpxpcr495wcvj1kdi5dzwl13102gd2mqn59"; 6230 }; 6231 meta.homepage = "https://github.com/fannheyward/telescope-coc.nvim/"; 6232 }; ··· 7999 8000 vim-eunuch = buildVimPluginFrom2Nix { 8001 pname = "vim-eunuch"; 8002 + version = "2022-01-03"; 8003 src = fetchFromGitHub { 8004 owner = "tpope"; 8005 repo = "vim-eunuch"; 8006 + rev = "7fb5aef524808d6ba67d6d986d15a2e291194edf"; 8007 + sha256 = "1yil4g5wym2a41isb6cdqcmccwrggy255frwxlb3rvffnl9b22m7"; 8008 }; 8009 meta.homepage = "https://github.com/tpope/vim-eunuch/"; 8010 }; ··· 9057 9058 vim-lsp = buildVimPluginFrom2Nix { 9059 pname = "vim-lsp"; 9060 + version = "2022-01-04"; 9061 src = fetchFromGitHub { 9062 owner = "prabirshrestha"; 9063 repo = "vim-lsp"; 9064 + rev = "40b155512b142f2111195d85d4c19de2c424a4f2"; 9065 + sha256 = "1pxdc0f66hgikwnwddhlwriaribbsxddyki33a5pn7z2sbhd8c9g"; 9066 }; 9067 meta.homepage = "https://github.com/prabirshrestha/vim-lsp/"; 9068 }; ··· 9506 src = fetchFromGitHub { 9507 owner = "jceb"; 9508 repo = "vim-orgmode"; 9509 + rev = "7882e202a3115a07be5300fd596194c94d622911"; 9510 + sha256 = "1idmlrgjvarsv620rkhpnknbqvrw372mjzxi3jrk3i2d6d9phsnb"; 9511 }; 9512 meta.homepage = "https://github.com/jceb/vim-orgmode/"; 9513 }; ··· 11256 11257 vimtex = buildVimPluginFrom2Nix { 11258 pname = "vimtex"; 11259 + version = "2022-01-04"; 11260 src = fetchFromGitHub { 11261 owner = "lervag"; 11262 repo = "vimtex"; 11263 + rev = "d9fa252426343bd6f3e6cb134b41e674ad0e39d3"; 11264 + sha256 = "190kpl2ng8i1fkw6pzgx32aw6c1zw8w10aikwvdrz8f7g691kf7f"; 11265 }; 11266 meta.homepage = "https://github.com/lervag/vimtex/"; 11267 };
+6
pkgs/misc/vim-plugins/vim-plugin-names
··· 49 bhurlow/vim-parinfer 50 bitc/vim-hdevtools 51 bkad/camelcasemotion 52 bling/vim-bufferline 53 blueballs-theme/blueballs-neovim 54 blueyed/vim-diminactive ··· 388 lambdalisue/vim-manpager 389 lambdalisue/vim-pager 390 latex-box-team/latex-box 391 leafgarland/typescript-vim 392 leanprover/lean.vim 393 ledger/vim-ledger ··· 932 wincent/ferret 933 wincent/terminus 934 windwp/nvim-autopairs 935 winston0410/cmd-parser.nvim 936 winston0410/range-highlight.nvim 937 wlangstroth/vim-racket
··· 49 bhurlow/vim-parinfer 50 bitc/vim-hdevtools 51 bkad/camelcasemotion 52 + blackCauldron7/surround.nvim 53 bling/vim-bufferline 54 blueballs-theme/blueballs-neovim 55 blueyed/vim-diminactive ··· 389 lambdalisue/vim-manpager 390 lambdalisue/vim-pager 391 latex-box-team/latex-box 392 + ldelossa/litee-calltree.nvim 393 + ldelossa/litee-filetree.nvim 394 + ldelossa/litee-symboltree.nvim 395 + ldelossa/litee.nvim 396 leafgarland/typescript-vim 397 leanprover/lean.vim 398 ledger/vim-ledger ··· 937 wincent/ferret 938 wincent/terminus 939 windwp/nvim-autopairs 940 + windwp/nvim-ts-autotag 941 winston0410/cmd-parser.nvim 942 winston0410/range-highlight.nvim 943 wlangstroth/vim-racket
+25 -25
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 2 "4.14": { 3 "patch": { 4 "extra": "-hardened1", 5 - "name": "linux-hardened-4.14.258-hardened1.patch", 6 - "sha256": "0rni42mbvyw0f9032i6bkgcwnzfw472vimd5l1q7rp52m63z6vbk", 7 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.258-hardened1/linux-hardened-4.14.258-hardened1.patch" 8 }, 9 - "sha256": "162bzhm0k8kipgk0ma745rjcl33rqhpwxdfdz3q6rkp48b82kbvi", 10 - "version": "4.14.258" 11 }, 12 "4.19": { 13 "patch": { 14 "extra": "-hardened1", 15 - "name": "linux-hardened-4.19.221-hardened1.patch", 16 - "sha256": "0lw4lysiv5h1vlkwlz2z1kv78wsszj1xc383i2qkzfsb4l9vsm7h", 17 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.221-hardened1/linux-hardened-4.19.221-hardened1.patch" 18 }, 19 - "sha256": "1yg1cibyn53gpjnxfgj2qxxi8k3l7gv1ri6kywvp6sk5bygx8jd3", 20 - "version": "4.19.221" 21 }, 22 "5.10": { 23 "patch": { 24 "extra": "-hardened1", 25 - "name": "linux-hardened-5.10.87-hardened1.patch", 26 - "sha256": "1r1vyf9wy49s7pfskxlng17n0khi1dpxg5cm4yfnbbq0gdisnh1f", 27 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.87-hardened1/linux-hardened-5.10.87-hardened1.patch" 28 }, 29 - "sha256": "0jz6xhph7x0x11cjmypaw5gh8z4d53dcgx2gmg7k6d06ydq8n4h3", 30 - "version": "5.10.87" 31 }, 32 "5.15": { 33 "patch": { 34 "extra": "-hardened1", 35 - "name": "linux-hardened-5.15.10-hardened1.patch", 36 - "sha256": "1fn37pg10w1m4cr4g0ibs5fvqs1yx3y776daxv836naffl1001fm", 37 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.10-hardened1/linux-hardened-5.15.10-hardened1.patch" 38 }, 39 - "sha256": "0jsv8lialjwp91qg9c9rh8rhn49a70ryyhzl19bxq3fhz1fwyks8", 40 - "version": "5.15.10" 41 }, 42 "5.4": { 43 "patch": { 44 "extra": "-hardened1", 45 - "name": "linux-hardened-5.4.167-hardened1.patch", 46 - "sha256": "03mj8nncfpqf5j6l66239saxv251rh5infhl0jjyx1znhfzavg0p", 47 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.167-hardened1/linux-hardened-5.4.167-hardened1.patch" 48 }, 49 - "sha256": "19x5f3s5f4nqzjb61g22rs0hnmk43q4b7sm7mc4j1q3y44b33r5l", 50 - "version": "5.4.167" 51 } 52 }
··· 2 "4.14": { 3 "patch": { 4 "extra": "-hardened1", 5 + "name": "linux-hardened-4.14.260-hardened1.patch", 6 + "sha256": "13r6lx3rcbaz2wvhwa950gsjharzq1n61bl9l3nm8v66j7gab3l0", 7 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.260-hardened1/linux-hardened-4.14.260-hardened1.patch" 8 }, 9 + "sha256": "1bylxn6hsq17cann2w02ggz6xz3b3synrapcwlwfcfydf71hzj9f", 10 + "version": "4.14.260" 11 }, 12 "4.19": { 13 "patch": { 14 "extra": "-hardened1", 15 + "name": "linux-hardened-4.19.223-hardened1.patch", 16 + "sha256": "1jrg8fkb8kc3m1zcgyw99mnmgvyxi3yp33x9jh1s4babxcr7w4g3", 17 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.223-hardened1/linux-hardened-4.19.223-hardened1.patch" 18 }, 19 + "sha256": "1cnjk49g8sxsbzk375ji47lnx36drqh1x2pbfiqdwgrbjcb043sz", 20 + "version": "4.19.223" 21 }, 22 "5.10": { 23 "patch": { 24 "extra": "-hardened1", 25 + "name": "linux-hardened-5.10.89-hardened1.patch", 26 + "sha256": "0gpfyykm66h4hdazqw1xkg514cglin6zmd754xala924kj6x0k8b", 27 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.89-hardened1/linux-hardened-5.10.89-hardened1.patch" 28 }, 29 + "sha256": "0c5v8fsv9sazdmdw4m1canm54x2p8777yavxq2gcpw8q98d8n8cj", 30 + "version": "5.10.89" 31 }, 32 "5.15": { 33 "patch": { 34 "extra": "-hardened1", 35 + "name": "linux-hardened-5.15.12-hardened1.patch", 36 + "sha256": "1xxyh87pbk7961zc5554f3gwr65n5msaxyxbi1kpd4q19gcw86xz", 37 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.12-hardened1/linux-hardened-5.15.12-hardened1.patch" 38 }, 39 + "sha256": "182iwy2288layl2290cxla0k6y436lxlx43yaa8par325dviksbx", 40 + "version": "5.15.12" 41 }, 42 "5.4": { 43 "patch": { 44 "extra": "-hardened1", 45 + "name": "linux-hardened-5.4.169-hardened1.patch", 46 + "sha256": "19mghwh66rmbjd7i0hxhysabarpz8l4wadw8schwc8q9kxy33py4", 47 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.169-hardened1/linux-hardened-5.4.169-hardened1.patch" 48 }, 49 + "sha256": "068sw1p50vcygi422bfjpahf2fxy3ifyp4ljnkwxbbvibzcq4hsm", 50 + "version": "5.4.169" 51 } 52 }
+2 -2
pkgs/servers/hydron/default.nix
··· 13 14 nativeBuildInputs = [ pkg-config ]; 15 16 - vendorSha256 = "1ngig5zw0gf1mkjjsfvvn09rncb36rg274cbi3glp8wzfcr8aip3"; 17 - runVend = true; 18 19 buildInputs = [ ffmpeg ]; 20
··· 13 14 nativeBuildInputs = [ pkg-config ]; 15 16 + vendorSha256 = "sha256-TxeHfO5IUVsKmKZ1e0/KXi+6dk2nn6AoNG0eB3jyGkY="; 17 + proxyVendor = true; 18 19 buildInputs = [ ffmpeg ]; 20
+2 -2
pkgs/servers/livepeer/default.nix
··· 6 pname = "livepeer"; 7 version = "0.5.20"; 8 9 - runVend = true; 10 - vendorSha256 = "sha256-iFVScV3arPkBjMi8sCHIja4G2QeQDb2sgBrbTFyxKyw="; 11 12 src = fetchFromGitHub { 13 owner = "livepeer";
··· 6 pname = "livepeer"; 7 version = "0.5.20"; 8 9 + proxyVendor = true; 10 + vendorSha256 = "sha256-pyPxONcWniJoA0qYusHktF3/taYda2StaMiMhyRYEm4="; 11 12 src = fetchFromGitHub { 13 owner = "livepeer";
+3 -3
pkgs/servers/nosql/rethinkdb/default.nix
··· 1 { lib, stdenv, fetchurl, which, m4 2 - , protobuf, boost, zlib, curl, openssl, icu, jemalloc, libtool 3 , python2Packages, makeWrapper 4 }: 5 ··· 31 32 makeFlags = [ "rethinkdb" ]; 33 34 - buildInputs = [ protobuf boost zlib curl openssl icu ] 35 ++ lib.optional (!stdenv.isDarwin) jemalloc 36 ++ lib.optional stdenv.isDarwin libtool; 37 ··· 52 query language that supports really useful queries like table 53 joins and group by, and is easy to setup and learn. 54 ''; 55 - homepage = "http://www.rethinkdb.com"; 56 license = lib.licenses.asl20; 57 platforms = lib.platforms.linux; 58 maintainers = with lib.maintainers; [ thoughtpolice bluescreen303 ];
··· 1 { lib, stdenv, fetchurl, which, m4 2 + , protobuf, boost170, zlib, curl, openssl, icu, jemalloc, libtool 3 , python2Packages, makeWrapper 4 }: 5 ··· 31 32 makeFlags = [ "rethinkdb" ]; 33 34 + buildInputs = [ protobuf boost170 zlib curl openssl icu ] 35 ++ lib.optional (!stdenv.isDarwin) jemalloc 36 ++ lib.optional stdenv.isDarwin libtool; 37 ··· 52 query language that supports really useful queries like table 53 joins and group by, and is easy to setup and learn. 54 ''; 55 + homepage = "https://rethinkdb.com"; 56 license = lib.licenses.asl20; 57 platforms = lib.platforms.linux; 58 maintainers = with lib.maintainers; [ thoughtpolice bluescreen303 ];
+2 -2
pkgs/tools/package-management/nix-top/default.nix
··· 16 in 17 stdenv.mkDerivation rec { 18 pname = "nix-top"; 19 - version = "0.2.0"; 20 21 src = fetchFromGitHub { 22 owner = "samueldr"; 23 repo = "nix-top"; 24 rev = "v${version}"; 25 - sha256 = "0560a9g8n4p764r3va1nn95iv4bg71g8h0wws1af2p5g553j4zps"; 26 }; 27 28 nativeBuildInputs = [
··· 16 in 17 stdenv.mkDerivation rec { 18 pname = "nix-top"; 19 + version = "0.3.0"; 20 21 src = fetchFromGitHub { 22 owner = "samueldr"; 23 repo = "nix-top"; 24 rev = "v${version}"; 25 + sha256 = "sha256-w/TKzbZmMt4CX2KnLwPvR1ydp5NNlp9nNx78jJvhp54="; 26 }; 27 28 nativeBuildInputs = [
+3 -3
pkgs/tools/security/terrascan/default.nix
··· 5 6 buildGoModule rec { 7 pname = "terrascan"; 8 - version = "1.12.0"; 9 10 src = fetchFromGitHub { 11 owner = "accurics"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-DYWp7D2CQxasEYkoCEa0KdFQDvo4rNgRcTKzxYLsYFg="; 15 }; 16 17 - vendorSha256 = "0vx406y3kj1qmgr1y9vg3rprwjpm5g8p9shmhq28gp7sxz3j82ry"; 18 19 # Tests want to download a vulnerable Terraform project 20 doCheck = false;
··· 5 6 buildGoModule rec { 7 pname = "terrascan"; 8 + version = "1.13.0"; 9 10 src = fetchFromGitHub { 11 owner = "accurics"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-HV9WOJ8bWu8Uk1tXMZWqvo3ZvFiWLMGKmw6HzHBxSBY="; 15 }; 16 17 + vendorSha256 = "sha256-MB3/iIStqNBM9YnNaRpV4hbs1gZzWm+7B+qHHm0kOmU="; 18 19 # Tests want to download a vulnerable Terraform project 20 doCheck = false;
+2 -2
pkgs/tools/system/gotop/default.nix
··· 11 sha256 = "15bsxaxqxp17wsr0p9fkpvgfyqnhhwm3j8jxkvcs4cdw73qaxdsy"; 12 }; 13 14 - runVend = true; 15 - vendorSha256 = "06hl1npwmy9dvpf4kljvw8lwwiigm52wf106lmf9k6k2gi5ikprz"; 16 17 ldflags = [ "-s" "-w" "-X main.Version=v${version}" ]; 18
··· 11 sha256 = "15bsxaxqxp17wsr0p9fkpvgfyqnhhwm3j8jxkvcs4cdw73qaxdsy"; 12 }; 13 14 + proxyVendor = true; 15 + vendorSha256 = "sha256-c+9IZEKiW95JIh6krs9NhdBohUatTTEIYBU13kj9zB8="; 16 17 ldflags = [ "-s" "-w" "-X main.Version=v${version}" ]; 18
+1 -1
pkgs/tools/text/icdiff/default.nix
··· 28 meta = with lib; { 29 homepage = "https://www.jefftk.com/icdiff"; 30 description = "Side-by-side highlighted command line diffs"; 31 - maintainers = with maintainers; [ aneeshusa ]; 32 license = licenses.psfl; 33 }; 34 }
··· 28 meta = with lib; { 29 homepage = "https://www.jefftk.com/icdiff"; 30 description = "Side-by-side highlighted command line diffs"; 31 + maintainers = with maintainers; [ ]; 32 license = licenses.psfl; 33 }; 34 }
+1
pkgs/top-level/aliases.nix
··· 349 graalvm8 = throw "graalvm8-ce has been removed by upstream."; # added 2021-10-19 350 graalvm8-ce = throw "graalvm8-ce has been removed by upstream."; # added 2021-10-19 351 graalvm11 = graalvm11-ce; 352 gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25 353 gtk_doc = gtk-doc; # added 2018-02-25 354 gtklick = throw "gtklick has been removed from nixpkgs as the project is stuck on python2"; # added 2022-01-01
··· 349 graalvm8 = throw "graalvm8-ce has been removed by upstream."; # added 2021-10-19 350 graalvm8-ce = throw "graalvm8-ce has been removed by upstream."; # added 2021-10-19 351 graalvm11 = graalvm11-ce; 352 + grib-api = throw "grib-api has been replaced by ecCodes => https://confluence.ecmwf.int/display/ECC/GRIB-API+migration"; # added 2022-01-05 353 gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25 354 gtk_doc = gtk-doc; # added 2018-02-25 355 gtklick = throw "gtklick has been removed from nixpkgs as the project is stuck on python2"; # added 2022-01-01
-2
pkgs/top-level/all-packages.nix
··· 16821 16822 grab-site = callPackage ../tools/backup/grab-site { }; 16823 16824 - grib-api = callPackage ../development/libraries/grib-api { }; 16825 - 16826 grilo = callPackage ../development/libraries/grilo { }; 16827 16828 grilo-plugins = callPackage ../development/libraries/grilo-plugins { };
··· 16821 16822 grab-site = callPackage ../tools/backup/grab-site { }; 16823 16824 grilo = callPackage ../development/libraries/grilo { }; 16825 16826 grilo-plugins = callPackage ../development/libraries/grilo-plugins { };
+2
pkgs/top-level/python-packages.nix
··· 5600 5601 opt-einsum = callPackage ../development/python-modules/opt-einsum { }; 5602 5603 optuna = callPackage ../development/python-modules/optuna { }; 5604 5605 opuslib = callPackage ../development/python-modules/opuslib { };
··· 5600 5601 opt-einsum = callPackage ../development/python-modules/opt-einsum { }; 5602 5603 + optax = callPackage ../development/python-modules/optax { }; 5604 + 5605 optuna = callPackage ../development/python-modules/optuna { }; 5606 5607 opuslib = callPackage ../development/python-modules/opuslib { };