Merge master into staging-next

authored by github-actions[bot] and committed by GitHub ac962ee6 a13bf182

+1304 -2449
+3 -1
lib/generators.nix
··· 35 35 ("generators.mkValueStringDefault: " + 36 36 "${t} not supported: ${toPretty {} v}"); 37 37 in if isInt v then toString v 38 + # convert derivations to store paths 39 + else if lib.isDerivation v then toString v 38 40 # we default to not quoting strings 39 41 else if isString v then v 40 42 # isString returns "1", which is not a good default ··· 169 171 # converts { a.b.c = 5; } to { "a.b".c = 5; } for toINI 170 172 gitFlattenAttrs = let 171 173 recurse = path: value: 172 - if isAttrs value then 174 + if isAttrs value && !lib.isDerivation value then 173 175 lib.mapAttrsToList (name: value: recurse ([ name ] ++ path) value) value 174 176 else if length path > 1 then { 175 177 ${concatStringsSep "." (lib.reverseList (tail path))}.${head path} = value;
+13
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 927 927 file</link> format. 928 928 </para> 929 929 </listitem> 930 + <listitem> 931 + <para> 932 + The <literal>datadog-agent</literal>, 933 + <literal>datadog-integrations-core</literal> and 934 + <literal>datadog-process-agent</literal> packages were 935 + upgraded from 6.11.2 to 7.30.2, git-2018-09-18 to 7.30.1 and 936 + 6.11.1 to 7.30.2, respectively. As a result 937 + <literal>services.datadog-agent</literal> has had breaking 938 + changes to the configuration file. For details, see the 939 + <link xlink:href="https://github.com/DataDog/datadog-agent/blob/main/CHANGELOG.rst">upstream 940 + changelog</link>. 941 + </para> 942 + </listitem> 930 943 </itemizedlist> 931 944 </section> 932 945 <section xml:id="sec-release-21.11-notable-changes">
+5
nixos/doc/manual/release-notes/rl-2111.section.md
··· 271 271 272 272 - The `todoman` package was upgraded from 3.9.0 to 4.0.0. This introduces breaking changes in the [configuration file](https://todoman.readthedocs.io/en/stable/configure.html#configuration-file) format. 273 273 274 + - The `datadog-agent`, `datadog-integrations-core` and `datadog-process-agent` packages 275 + were upgraded from 6.11.2 to 7.30.2, git-2018-09-18 to 7.30.1 and 6.11.1 to 7.30.2, 276 + respectively. As a result `services.datadog-agent` has had breaking changes to the 277 + configuration file. For details, see the [upstream changelog](https://github.com/DataDog/datadog-agent/blob/main/CHANGELOG.rst). 278 + 274 279 ## Other Notable Changes {#sec-release-21.11-notable-changes} 275 280 276 281 - The linux kernel package infrastructure was moved out of `all-packages.nix`, and restructured. Linux related functions and attributes now live under the `pkgs.linuxKernel` attribute set.
+2
nixos/modules/module-list.nix
··· 383 383 ./services/display-managers/greetd.nix 384 384 ./services/editors/emacs.nix 385 385 ./services/editors/infinoted.nix 386 + ./services/games/crossfire-server.nix 387 + ./services/games/deliantra-server.nix 386 388 ./services/games/factorio.nix 387 389 ./services/games/freeciv.nix 388 390 ./services/games/minecraft-server.nix
+177
nixos/modules/services/games/crossfire-server.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.crossfire-server; 7 + serverPort = 13327; 8 + in { 9 + options.services.crossfire-server = { 10 + enable = mkOption { 11 + type = types.bool; 12 + default = false; 13 + description = '' 14 + If enabled, the Crossfire game server will be started at boot. 15 + ''; 16 + }; 17 + 18 + package = mkOption { 19 + type = types.package; 20 + default = pkgs.crossfire-server; 21 + defaultText = "pkgs.crossfire-server"; 22 + description = '' 23 + The package to use for the Crossfire server (and map/arch data, if you 24 + don't change dataDir). 25 + ''; 26 + }; 27 + 28 + dataDir = mkOption { 29 + type = types.str; 30 + default = "${cfg.package}/share/crossfire"; 31 + defaultText = "\${config.services.crossfire.package}/share/crossfire"; 32 + description = '' 33 + Where to load readonly data from -- maps, archetypes, treasure tables, 34 + and the like. If you plan to edit the data on the live server (rather 35 + than overlaying the crossfire-maps and crossfire-arch packages and 36 + nixos-rebuilding), point this somewhere read-write and copy the data 37 + there before starting the server. 38 + ''; 39 + }; 40 + 41 + stateDir = mkOption { 42 + type = types.str; 43 + default = "/var/lib/crossfire"; 44 + description = '' 45 + Where to store runtime data (save files, persistent items, etc). 46 + 47 + If left at the default, this will be automatically created on server 48 + startup if it does not already exist. If changed, it is the admin's 49 + responsibility to make sure that the directory exists and is writeable 50 + by the `crossfire` user. 51 + ''; 52 + }; 53 + 54 + openFirewall = mkOption { 55 + type = types.bool; 56 + default = false; 57 + description = '' 58 + Whether to open ports in the firewall for the server. 59 + ''; 60 + }; 61 + 62 + configFiles = mkOption { 63 + type = types.attrsOf types.str; 64 + description = '' 65 + Text to append to the corresponding configuration files. Note that the 66 + files given in the example are *not* the complete set of files available 67 + to customize; look in /etc/crossfire after enabling the server to see 68 + the available files, and read the comments in each file for detailed 69 + documentation on the format and what settings are available. 70 + 71 + Note that the motd, rules, and news files, if configured here, will 72 + overwrite the example files that come with the server, rather than being 73 + appended to them as the other configuration files are. 74 + ''; 75 + example = literalExample '' 76 + dm_file = ''' 77 + admin:secret_password:localhost 78 + jane:xyzzy:* 79 + '''; 80 + ban_file = ''' 81 + # Bob is a jerk 82 + bob@* 83 + # So is everyone on 192.168.86.255/24 84 + *@192.168.86. 85 + '''; 86 + metaserver2 = ''' 87 + metaserver2_notification on 88 + localhostname crossfire.example.net 89 + '''; 90 + motd = "Welcome to CrossFire!"; 91 + news = "No news yet."; 92 + rules = "Don't be a jerk."; 93 + settings = ''' 94 + # be nicer to newbies and harsher to experienced players 95 + balanced_stat_loss true 96 + # don't let players pick up and use admin-created items 97 + real_wiz false 98 + '''; 99 + ''; 100 + default = {}; 101 + }; 102 + }; 103 + 104 + config = mkIf cfg.enable { 105 + users.users.crossfire = { 106 + description = "Crossfire server daemon user"; 107 + home = cfg.stateDir; 108 + createHome = false; 109 + isSystemUser = true; 110 + group = "crossfire"; 111 + }; 112 + users.groups.crossfire = {}; 113 + 114 + # Merge the cfg.configFiles setting with the default files shipped with 115 + # Crossfire. 116 + # For most files this consists of reading ${crossfire}/etc/crossfire/${name} 117 + # and appending the user setting to it; the motd, news, and rules are handled 118 + # specially, with user-provided values completely replacing the original. 119 + environment.etc = lib.attrsets.mapAttrs' 120 + (name: value: lib.attrsets.nameValuePair "crossfire/${name}" { 121 + mode = "0644"; 122 + text = 123 + (optionalString (!elem name ["motd" "news" "rules"]) 124 + (fileContents "${cfg.package}/etc/crossfire/${name}")) 125 + + "\n${value}"; 126 + }) ({ 127 + ban_file = ""; 128 + dm_file = ""; 129 + exp_table = ""; 130 + forbid = ""; 131 + metaserver2 = ""; 132 + motd = (fileContents "${cfg.package}/etc/crossfire/motd"); 133 + news = (fileContents "${cfg.package}/etc/crossfire/news"); 134 + rules = (fileContents "${cfg.package}/etc/crossfire/rules"); 135 + settings = ""; 136 + stat_bonus = ""; 137 + } // cfg.configFiles); 138 + 139 + systemd.services.crossfire-server = { 140 + description = "Crossfire Server Daemon"; 141 + wantedBy = [ "multi-user.target" ]; 142 + after = [ "network.target" ]; 143 + 144 + serviceConfig = mkMerge [ 145 + { 146 + ExecStart = "${cfg.package}/bin/crossfire-server -conf /etc/crossfire -local '${cfg.stateDir}' -data '${cfg.dataDir}'"; 147 + Restart = "always"; 148 + User = "crossfire"; 149 + Group = "crossfire"; 150 + WorkingDirectory = cfg.stateDir; 151 + } 152 + (mkIf (cfg.stateDir == "/var/lib/crossfire") { 153 + StateDirectory = "crossfire"; 154 + }) 155 + ]; 156 + 157 + # The crossfire server needs access to a bunch of files at runtime that 158 + # are not created automatically at server startup; they're meant to be 159 + # installed in $PREFIX/var/crossfire by `make install`. And those files 160 + # need to be writeable, so we can't just point at the ones in the nix 161 + # store. Instead we take the approach of copying them out of the store 162 + # on first run. If `bookarch` already exists, we assume the rest of the 163 + # files do as well, and copy nothing -- otherwise we risk ovewriting 164 + # server state information every time the server is upgraded. 165 + preStart = '' 166 + if [ ! -e "${cfg.stateDir}"/bookarch ]; then 167 + ${pkgs.rsync}/bin/rsync -a --chmod=u=rwX,go=rX \ 168 + "${cfg.package}/var/crossfire/" "${cfg.stateDir}/" 169 + fi 170 + ''; 171 + }; 172 + 173 + networking.firewall = mkIf cfg.openFirewall { 174 + allowedTCPPorts = [ serverPort ]; 175 + }; 176 + }; 177 + }
+170
nixos/modules/services/games/deliantra-server.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.deliantra-server; 7 + serverPort = 13327; 8 + in { 9 + options.services.deliantra-server = { 10 + enable = mkOption { 11 + type = types.bool; 12 + default = false; 13 + description = '' 14 + If enabled, the Deliantra game server will be started at boot. 15 + ''; 16 + }; 17 + 18 + package = mkOption { 19 + type = types.package; 20 + default = pkgs.deliantra-server; 21 + defaultText = "pkgs.deliantra-server"; 22 + description = '' 23 + The package to use for the Deliantra server (and map/arch data, if you 24 + don't change dataDir). 25 + ''; 26 + }; 27 + 28 + dataDir = mkOption { 29 + type = types.str; 30 + default = "${pkgs.deliantra-data}"; 31 + defaultText = "\${pkgs.deliantra-data}"; 32 + description = '' 33 + Where to store readonly data (maps, archetypes, sprites, etc). 34 + Note that if you plan to use the live map editor (rather than editing 35 + the maps offline and then nixos-rebuilding), THIS MUST BE WRITEABLE -- 36 + copy the deliantra-data someplace writeable (say, 37 + /var/lib/deliantra/data) and update this option accordingly. 38 + ''; 39 + }; 40 + 41 + stateDir = mkOption { 42 + type = types.str; 43 + default = "/var/lib/deliantra"; 44 + description = '' 45 + Where to store runtime data (save files, persistent items, etc). 46 + 47 + If left at the default, this will be automatically created on server 48 + startup if it does not already exist. If changed, it is the admin's 49 + responsibility to make sure that the directory exists and is writeable 50 + by the `crossfire` user. 51 + ''; 52 + }; 53 + 54 + openFirewall = mkOption { 55 + type = types.bool; 56 + default = false; 57 + description = '' 58 + Whether to open ports in the firewall for the server. 59 + ''; 60 + }; 61 + 62 + configFiles = mkOption { 63 + type = types.attrsOf types.str; 64 + description = '' 65 + Contents of the server configuration files. These will be appended to 66 + the example configurations the server comes with and overwrite any 67 + default settings defined therein. 68 + 69 + The example here is not comprehensive. See the files in 70 + /etc/deliantra-server after enabling this module for full documentation. 71 + ''; 72 + example = literalExample '' 73 + dm_file = ''' 74 + admin:secret_password:localhost 75 + jane:xyzzy:* 76 + '''; 77 + motd = "Welcome to Deliantra!"; 78 + settings = ''' 79 + # Settings for game mechanics. 80 + stat_loss_on_death true 81 + armor_max_enchant 7 82 + '''; 83 + config = ''' 84 + # Settings for the server daemon. 85 + hiscore_url https://deliantra.example.net/scores/ 86 + max_map_reset 86400 87 + '''; 88 + ''; 89 + default = { 90 + motd = ""; 91 + }; 92 + }; 93 + }; 94 + 95 + config = mkIf cfg.enable { 96 + users.users.deliantra = { 97 + description = "Deliantra server daemon user"; 98 + home = cfg.stateDir; 99 + createHome = false; 100 + isSystemUser = true; 101 + group = "deliantra"; 102 + }; 103 + users.groups.deliantra = {}; 104 + 105 + # Merge the cfg.configFiles setting with the default files shipped with 106 + # Deliantra. 107 + # For most files this consists of reading 108 + # ${deliantra}/etc/deliantra-server/${name} and appending the user setting 109 + # to it. 110 + environment.etc = lib.attrsets.mapAttrs' 111 + (name: value: lib.attrsets.nameValuePair "deliantra-server/${name}" { 112 + mode = "0644"; 113 + text = 114 + # Deliantra doesn't come with a motd file, but respects it if present 115 + # in /etc. 116 + (optionalString (name != "motd") 117 + (fileContents "${cfg.package}/etc/deliantra-server/${name}")) 118 + + "\n${value}"; 119 + }) ({ 120 + motd = ""; 121 + settings = ""; 122 + config = ""; 123 + dm_file = ""; 124 + } // cfg.configFiles); 125 + 126 + systemd.services.deliantra-server = { 127 + description = "Deliantra Server Daemon"; 128 + wantedBy = [ "multi-user.target" ]; 129 + after = [ "network.target" ]; 130 + 131 + environment = { 132 + DELIANTRA_DATADIR="${cfg.dataDir}"; 133 + DELIANTRA_LOCALDIR="${cfg.stateDir}"; 134 + DELIANTRA_CONFDIR="/etc/deliantra-server"; 135 + }; 136 + 137 + serviceConfig = mkMerge [ 138 + { 139 + ExecStart = "${cfg.package}/bin/deliantra-server"; 140 + Restart = "always"; 141 + User = "deliantra"; 142 + Group = "deliantra"; 143 + WorkingDirectory = cfg.stateDir; 144 + } 145 + (mkIf (cfg.stateDir == "/var/lib/deliantra") { 146 + StateDirectory = "deliantra"; 147 + }) 148 + ]; 149 + 150 + # The deliantra server needs access to a bunch of files at runtime that 151 + # are not created automatically at server startup; they're meant to be 152 + # installed in $PREFIX/var/deliantra-server by `make install`. And those 153 + # files need to be writeable, so we can't just point at the ones in the 154 + # nix store. Instead we take the approach of copying them out of the store 155 + # on first run. If `bookarch` already exists, we assume the rest of the 156 + # files do as well, and copy nothing -- otherwise we risk ovewriting 157 + # server state information every time the server is upgraded. 158 + preStart = '' 159 + if [ ! -e "${cfg.stateDir}"/bookarch ]; then 160 + ${pkgs.rsync}/bin/rsync -a --chmod=u=rwX,go=rX \ 161 + "${cfg.package}/var/deliantra-server/" "${cfg.stateDir}/" 162 + fi 163 + ''; 164 + }; 165 + 166 + networking.firewall = mkIf cfg.openFirewall { 167 + allowedTCPPorts = [ serverPort ]; 168 + }; 169 + }; 170 + }
+3 -3
nixos/modules/services/monitoring/datadog-agent.nix
··· 51 51 options.services.datadog-agent = { 52 52 enable = mkOption { 53 53 description = '' 54 - Whether to enable the datadog-agent v6 monitoring service 54 + Whether to enable the datadog-agent v7 monitoring service 55 55 ''; 56 56 default = false; 57 57 type = types.bool; ··· 61 61 default = pkgs.datadog-agent; 62 62 defaultText = "pkgs.datadog-agent"; 63 63 description = '' 64 - Which DataDog v6 agent package to use. Note that the provided 64 + Which DataDog v7 agent package to use. Note that the provided 65 65 package is expected to have an overridable `pythonPackages`-attribute 66 66 which configures the Python environment with the Datadog 67 67 checks. ··· 274 274 path = [ ]; 275 275 script = '' 276 276 export DD_API_KEY=$(head -n 1 ${cfg.apiKeyFile}) 277 - ${pkgs.datadog-process-agent}/bin/agent --config /etc/datadog-agent/datadog.yaml 277 + ${pkgs.datadog-process-agent}/bin/process-agent --config /etc/datadog-agent/datadog.yaml 278 278 ''; 279 279 }); 280 280
+3 -3
nixos/modules/services/security/privacyidea.nix
··· 228 228 path = with pkgs; [ openssl ]; 229 229 environment.PRIVACYIDEA_CONFIGFILE = "${cfg.stateDir}/privacyidea.cfg"; 230 230 preStart = let 231 - pi-manage = "${pkgs.sudo}/bin/sudo -u privacyidea -HE ${penv}/bin/pi-manage"; 231 + pi-manage = "${config.security.sudo.package}/bin/sudo -u privacyidea -HE ${penv}/bin/pi-manage"; 232 232 pgsu = config.services.postgresql.superUser; 233 233 psql = config.services.postgresql.package; 234 234 in '' ··· 239 239 -i "${piCfgFile}" 240 240 chown ${cfg.user}:${cfg.group} ${cfg.stateDir}/privacyidea.cfg 241 241 if ! test -e "${cfg.stateDir}/db-created"; then 242 - ${pkgs.sudo}/bin/sudo -u ${pgsu} ${psql}/bin/createuser --no-superuser --no-createdb --no-createrole ${cfg.user} 243 - ${pkgs.sudo}/bin/sudo -u ${pgsu} ${psql}/bin/createdb --owner ${cfg.user} privacyidea 242 + ${config.security.sudo.package}/bin/sudo -u ${pgsu} ${psql}/bin/createuser --no-superuser --no-createdb --no-createrole ${cfg.user} 243 + ${config.security.sudo.package}/bin/sudo -u ${pgsu} ${psql}/bin/createdb --owner ${cfg.user} privacyidea 244 244 ${pi-manage} create_enckey 245 245 ${pi-manage} create_audit_keys 246 246 ${pi-manage} createdb
+1
nixos/tests/kernel-generic.nix
··· 32 32 linuxPackages_5_4 33 33 linuxPackages_5_10 34 34 linuxPackages_5_13 35 + linuxPackages_5_14 35 36 36 37 linuxPackages_4_14_hardened 37 38 linuxPackages_4_19_hardened
+2 -2
pkgs/applications/blockchains/charge-lnd/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "charge-lnd"; 5 - version = "0.2.3"; 5 + version = "0.2.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "accumulator"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "1cj8ggahnbn55wlkxzf5b9n8rvm30mc95vgcw8b60pzs47q6vncp"; 11 + sha256 = "1d1cbpmpppp7z1bmsarwfs314c7ypchlyr4calx0fzxfpxzfks5k"; 12 12 }; 13 13 14 14 propagatedBuildInputs = with python3Packages; [
+2 -2
pkgs/applications/graphics/megapixels/default.nix
··· 27 27 in 28 28 stdenv.mkDerivation rec { 29 29 pname = "megapixels"; 30 - version = "1.2.0"; 30 + version = "1.3.0"; 31 31 32 32 src = fetchFromSourcehut { 33 33 owner = "~martijnbraam"; 34 34 repo = "megapixels"; 35 35 rev = version; 36 - sha256 = "0jnfzwvq58p4ksyifma10i158r2fb7fv72ymibgcxbnx596xpjb2"; 36 + sha256 = "0dagp1sh5whnnllrydk7ijjid0hmvcbdm8kkzq2g168khdfn80jm"; 37 37 }; 38 38 39 39 nativeBuildInputs = [
+2 -2
pkgs/applications/networking/instant-messengers/signal-cli/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "signal-cli"; 5 - version = "0.8.5"; 5 + version = "0.9.0"; 6 6 7 7 # Building from source would be preferred, but is much more involved. 8 8 src = fetchurl { 9 9 url = "https://github.com/AsamK/signal-cli/releases/download/v${version}/signal-cli-${version}.tar.gz"; 10 - sha256 = "sha256-H895fyI6fdrrqhcgKMxzGSxO5BFuuizjfjBEwvl1yyg="; 10 + sha256 = "sha256-wk8kk+PG0nw2OE7mccGjP435SEytStRy1unxg6EqP/8="; 11 11 }; 12 12 13 13 buildInputs = lib.optionals stdenv.isLinux [ libmatthew_java dbus dbus_java ];
+4 -2
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 59 59 in 60 60 mkDerivation rec { 61 61 pname = "telegram-desktop"; 62 - version = "2.9.3"; 62 + version = "3.0.1"; 63 63 # Note: Update via pkgs/applications/networking/instant-messengers/telegram/tdesktop/update.py 64 64 65 65 # Telegram-Desktop with submodules ··· 68 68 repo = "tdesktop"; 69 69 rev = "v${version}"; 70 70 fetchSubmodules = true; 71 - sha256 = "sha256-ZmhgBL5nbgrNLRmCHocqVNC3KtaLm4LUY1f4Xl8CvB4="; 71 + sha256 = "196w82a92jahz7caqv2cyhhq53xm3figa7kiq59kid5wbqg33c9x"; 72 72 }; 73 73 74 74 postPatch = '' ··· 81 81 --replace '"libasound.so.2"' '"${alsa-lib}/lib/libasound.so.2"' 82 82 substituteInPlace Telegram/ThirdParty/libtgvoip/os/linux/AudioPulse.cpp \ 83 83 --replace '"libpulse.so.0"' '"${libpulseaudio}/lib/libpulse.so.0"' 84 + substituteInPlace Telegram/lib_webview/webview/platform/linux/webview_linux_webkit_gtk.cpp \ 85 + --replace '"libwebkit2gtk-4.0.so.37"' '"${webkitgtk}/lib/libwebkit2gtk-4.0.so.37"' 84 86 ''; 85 87 86 88 # We want to run wrapProgram manually (with additional parameters)
+2 -2
pkgs/applications/office/kitsas/default.nix
··· 2 2 3 3 mkDerivation rec { 4 4 pname = "kitsas"; 5 - version = "2.3"; 5 + version = "3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "artoh"; 9 9 repo = "kitupiikki"; 10 10 rev = "v${version}"; 11 - sha256 = "1qac6cxkb45rs5pschsf2rvpa789g27shmrwpshwahqzhw42xvgl"; 11 + sha256 = "sha256-UH2bFJZd83APRjlv6JR+Uy+ng4DWnnLmavAgjgSOiRo="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config ];
+7 -8
pkgs/applications/office/watson/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages, installShellFiles }: 2 - 3 - with pythonPackages; 1 + { lib, fetchFromGitHub, python3, installShellFiles }: 4 2 5 3 let 6 4 # Watson is currently not compatible with Click 8. See the following ··· 10 8 # https://github.com/TailorDev/Watson/pull/432 11 9 # 12 10 # Workaround the issue by providing click 7 explicitly. 13 - click7 = pythonPackages.callPackage ../../../development/python-modules/click/7.nix {}; 14 - click7-didyoumean = click-didyoumean.override { 15 - click = click7; 11 + python = python3.override { 12 + packageOverrides = self: super: { 13 + click = self.callPackage ../../../development/python-modules/click/7.nix { }; 14 + }; 16 15 }; 17 - in buildPythonApplication rec { 16 + in with python.pkgs; buildPythonApplication rec { 18 17 pname = "watson"; 19 18 20 19 # When you update Watson, please check whether the Click 7 ··· 34 33 ''; 35 34 36 35 checkInputs = [ pytestCheckHook pytest-mock mock pytest-datafiles ]; 37 - propagatedBuildInputs = [ arrow click7 click7-didyoumean requests ]; 36 + propagatedBuildInputs = [ arrow click click-didyoumean requests ]; 38 37 nativeBuildInputs = [ installShellFiles ]; 39 38 40 39 meta = with lib; {
+2 -2
pkgs/applications/radio/tqsl/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tqsl"; 5 - version = "2.5.1"; 5 + version = "2.5.7"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.arrl.org/files/file/LoTW%20Instructions/${pname}-${version}.tar.gz"; 9 - sha256 = "00v4n8pvi5qi2psjnrw611w5gg5bdlaxbsny535fsci3smyygpc0"; 9 + sha256 = "sha256-0QlTUNwKeuuR+n8eT04kiywAsY3hrPGPYH1A84MmxIs="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ cmake makeWrapper ];
+2 -2
pkgs/applications/science/robotics/mavproxy/default.nix
··· 3 3 4 4 buildPythonApplication rec { 5 5 pname = "MAVProxy"; 6 - version = "1.8.41"; 6 + version = "1.8.42"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "3dffb9b5b1e23c8dcb54bb8bdf1435337c01a4ab9faf34ffdfcb1dd26a4d8890"; 10 + sha256 = "787f29f10d2cb7572206f874a255949d0da9a4e2ffd2bc28b94b78bb73cf05d8"; 11 11 }; 12 12 13 13 postPatch = ''
+4 -15
pkgs/data/icons/whitesur-icon-theme/default.nix
··· 1 - { lib 2 - , stdenvNoCC 3 - , fetchFromGitHub 4 - , gtk3 5 - , gnome 6 - , gnome-icon-theme 7 - , hicolor-icon-theme 8 - }: 1 + { lib, stdenvNoCC, fetchFromGitHub, gtk3, hicolor-icon-theme }: 9 2 10 3 stdenvNoCC.mkDerivation rec { 11 4 pname = "Whitesur-icon-theme"; 12 - version = "2021-05-20"; 5 + version = "2021-08-26"; 13 6 14 7 src = fetchFromGitHub { 15 8 owner = "vinceliuice"; 16 9 repo = pname; 17 10 rev = version; 18 - sha256 = "KboUYozTleOBKNun66g2oj7u/36hyQsPtRSk/x/LAWo="; 11 + sha256 = "O7nb6X20HvnzldijP/fXqAs/2qE5JUg3DEMb84ZMQp4="; 19 12 }; 20 13 21 14 nativeBuildInputs = [ gtk3 ]; 22 15 23 - buildInputs = [ 24 - gnome-icon-theme 25 - gnome.adwaita-icon-theme 26 - hicolor-icon-theme 27 - ]; 16 + buildInputs = [ hicolor-icon-theme ]; 28 17 29 18 dontDropIconThemeCache = true; 30 19
+5 -5
pkgs/data/themes/venta/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 3 4 , gdk-pixbuf 4 5 , gtk-engine-murrine ··· 8 9 9 10 stdenv.mkDerivation rec { 10 11 pname = "venta"; 11 - version = "2020-08-20"; 12 + version = "0.6"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "darkomarko42"; 15 16 repo = pname; 16 - rev = "f9b7ea560def5c9d25a14015d265ba559d3501ca"; 17 - sha256 = "13rdavspz1q3zk2h04jpd77hxdcifg42kd71qq13ryg4b5yzqqgb"; 17 + rev = version; 18 + sha256 = "1fhiq1kji5qmwsh8335rzilvhs30g5jp126czf2rf532iba0ivd7"; 18 19 }; 19 20 20 21 buildInputs = [ ··· 33 34 runHook preInstall 34 35 mkdir -p $out/share/themes 35 36 cp -a Venta* $out/share/themes 36 - rm $out/share/themes/*/COPYING 37 37 runHook postInstall 38 38 ''; 39 39
+67
pkgs/development/libraries/blitz/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, pkg-config, gfortran, texinfo, python, boost 2 + # Select SIMD alignment width (in bytes) for vectorization. 3 + , simdWidth ? 1 4 + # Pad arrays to simdWidth by default? 5 + # Note: Only useful if simdWidth > 1 6 + , enablePadding ? false 7 + # Activate serialization through Boost.Serialize? 8 + , enableSerialization ? true 9 + # Activate test-suite? 10 + # WARNING: Some of the tests require up to 1700MB of memory to compile. 11 + , doCheck ? true 12 + }: 13 + 14 + let 15 + inherit (lib) optional optionals; 16 + in 17 + stdenv.mkDerivation rec { 18 + pname = "blitz++"; 19 + version = "1.0.1"; 20 + 21 + src = fetchFromGitHub { 22 + owner = "blitzpp"; 23 + repo = "blitz"; 24 + rev = "1.0.1"; 25 + sha256 = "0nq84vwvvbq7m0my6h835ijfw53bxdp42qjc6kjhk436888qy9rh"; 26 + }; 27 + 28 + nativeBuildInputs = [ pkg-config python texinfo ]; 29 + buildInputs = [ gfortran texinfo boost ]; 30 + 31 + configureFlags = 32 + [ "--enable-shared" 33 + "--disable-static" 34 + "--enable-fortran" 35 + "--enable-optimize" 36 + "--with-pic=yes" 37 + "--enable-html-docs" 38 + "--disable-doxygen" 39 + "--disable-dot" 40 + "--disable-latex-docs" 41 + "--enable-simd-width=${toString simdWidth}" 42 + "--with-boost=${boost.dev}" 43 + "--with-boost-libdir=${boost.out}/lib" 44 + ] ++ optional enablePadding "--enable-array-length-padding" 45 + ++ optional enableSerialization "--enable-serialization" 46 + ++ optional stdenv.is64bit "--enable-64bit"; 47 + 48 + enableParallelBuilding = true; 49 + 50 + inherit doCheck; 51 + checkTarget = "check-testsuite check-examples"; 52 + 53 + meta = with lib; { 54 + description = "Fast multi-dimensional array library for C++"; 55 + homepage = https://sourceforge.net/projects/blitz/; 56 + license = licenses.lgpl3; 57 + platforms = platforms.unix; 58 + maintainers = with maintainers; [ ToxicFrog ]; 59 + longDescription = '' 60 + Blitz++ is a C++ class library for scientific computing which provides 61 + performance on par with Fortran 77/90. It uses template techniques to 62 + achieve high performance. Blitz++ provides dense arrays and vectors, 63 + random number generators, and small vectors (useful for representing 64 + multicomponent or vector fields). 65 + ''; 66 + }; 67 + }
+2 -2
pkgs/development/libraries/gvm-libs/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "gvm-libs"; 23 - version = "21.4.1"; 23 + version = "21.4.2"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "greenbone"; 27 27 repo = pname; 28 28 rev = "v${version}"; 29 - sha256 = "1ap3m7f1gyv9p96czi8mzryhjijgaqcbdyr8lwvnw8ynzskx8s3y"; 29 + sha256 = "14v7z8ynd20s4pkhp2nc19n6gbmbh8yrn39yi2fbfm7gj28b52sx"; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/libnbd/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "libnbd"; 14 - version = "1.9.3"; 14 + version = "1.9.5"; 15 15 16 16 src = fetchurl { 17 17 url = "https://download.libguestfs.org/libnbd/${lib.versions.majorMinor version}-development/${pname}-${version}.tar.gz"; 18 - hash = "sha256-qF9IFZGj+9Zuw00+9pbgAhBUk+eUIAxhYNJAMWxmWo0="; 18 + hash = "sha256-BnMoxIiuwhqcwVr3AwAIFgZPcFsIg55N66ZwWMTUnCw="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/libxsmm/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "libxsmm"; 9 - version = "1.16.1"; 9 + version = "1.16.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "hfp"; 13 13 repo = "libxsmm"; 14 14 rev = version; 15 - sha256 = "1c1qj6hcdfx11bvilnly92vgk1niisd2bjw1s8vfyi2f7ws1wnp0"; 15 + sha256 = "sha256-gmv5XHBRztcF7+ZKskQMloytJ53k0eJg0HJmUhndq70="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+23 -8
pkgs/development/python-modules/beautifulsoup4/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, soupsieve, pytest, python }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , html5lib 5 + , lxml 6 + , pytestCheckHook 7 + , pythonOlder 8 + , soupsieve 9 + }: 2 10 3 11 buildPythonPackage rec { 4 12 pname = "beautifulsoup4"; 5 - version = "4.9.3"; 13 + version = "4.10.0"; 14 + 15 + disabled = pythonOlder "3.6"; 6 16 7 17 src = fetchPypi { 8 18 inherit pname version; 9 - sha256 = "84729e322ad1d5b4d25f805bfa05b902dd96450f43842c4e99067d5e1369eb25"; 19 + sha256 = "sha256-wjrSPFIdgYlVpBUaZ9gVgDGdS/VI09SfQiOuBB/5iJE="; 10 20 }; 11 21 12 - checkInputs = [ pytest ]; 13 - checkPhase = '' 14 - py.test $out/${python.sitePackages}/bs4/tests 15 - ''; 22 + propagatedBuildInputs = [ 23 + html5lib 24 + lxml 25 + soupsieve 26 + ]; 27 + 28 + checkInputs = [ 29 + pytestCheckHook 30 + ]; 16 31 17 - propagatedBuildInputs = [ soupsieve ]; 32 + pythonImportsCheck = [ "bs4" ]; 18 33 19 34 meta = with lib; { 20 35 homepage = "http://crummy.com/software/BeautifulSoup/bs4/";
+9 -7
pkgs/development/python-modules/telfhash/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , capstone 5 + , packaging 5 6 , pyelftools 6 7 , tlsh 7 8 , nose 8 9 }: 9 - buildPythonPackage { 10 + buildPythonPackage rec { 10 11 pname = "telfhash"; 11 - version = "unstable-2021-01-29"; 12 + version = "0.9.8"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "trendmicro"; 15 16 repo = "telfhash"; 16 - rev = "b5e398e59dc25a56a28861751c1fccc74ef71617"; 17 - sha256 = "jNu6qm8Q/UyJVaCqwFOPX02xAR5DwvCK3PaH6Fvmakk="; 17 + rev = "v${version}"; 18 + sha256 = "124zajv43wx9l8rvdvmzcnbh0xpzmbn253pznpbjwvygfx16gq02"; 18 19 }; 19 20 20 - patches = [ ./telfhash-new-tlsh-hash.patch ]; 21 - 22 21 # The tlsh library's name is just "tlsh" 23 22 postPatch = '' 24 - substituteInPlace requirements.txt --replace "python-tlsh" "tlsh" 23 + substituteInPlace requirements.txt \ 24 + --replace "python-tlsh" "tlsh" \ 25 + --replace "py-tlsh" "tlsh" 25 26 ''; 26 27 27 28 propagatedBuildInputs = [ 28 29 capstone 29 30 pyelftools 30 31 tlsh 32 + packaging 31 33 ]; 32 34 33 35 checkInputs = [
-30
pkgs/development/python-modules/telfhash/telfhash-new-tlsh-hash.patch
··· 1 - diff --git a/telfhash/grouping.py b/telfhash/grouping.py 2 - index c62f8d9..4ee9f0b 100644 3 - --- a/telfhash/grouping.py 4 - +++ b/telfhash/grouping.py 5 - @@ -32,10 +32,10 @@ import tlsh 6 - def get_combination(telfhash_data): 7 - 8 - # 9 - - # TLSH hash is 70 characters long. if the telfhash is not 70 10 - + # The new TLSH hash is 72 characters long. if the telfhash is not 72 11 - # characters in length, exclude from the list 12 - # 13 - - files_list = [x for x in list(telfhash_data.keys()) if telfhash_data[x]["telfhash"] is not None and len(telfhash_data[x]["telfhash"]) == 70] 14 - + files_list = [x for x in list(telfhash_data.keys()) if telfhash_data[x]["telfhash"] is not None and len(telfhash_data[x]["telfhash"]) == 72] 15 - 16 - # 17 - # get the combination of all the possible pairs of filenames 18 - diff --git a/telfhash/telfhash.py b/telfhash/telfhash.py 19 - index f2bbd25..c6e346c 100755 20 - --- a/telfhash/telfhash.py 21 - +++ b/telfhash/telfhash.py 22 - @@ -132,7 +132,7 @@ def get_hash(symbols_list): 23 - symbol_string = ",".join(symbols_list) 24 - encoded_symbol_string = symbol_string.encode("ascii") 25 - 26 - - return tlsh.forcehash(encoded_symbol_string).lower() 27 - + return tlsh.forcehash(encoded_symbol_string) 28 - 29 - 30 - def elf_get_imagebase(elf):
+3 -3
pkgs/development/tools/konstraint/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "konstraint"; 5 - version = "0.14.2"; 5 + version = "0.15.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "plexsystems"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ESkRycS+ObLaDkb28kvi9Wtc4Lc66qHFz0DYMjEa5eE="; 11 + sha256 = "sha256-lnbci3SUVp/vyArrfRF1dgv0KnqcmGIalhsZjDOhpSg="; 12 12 }; 13 - vendorSha256 = "sha256-uvDYUm6REL1hvj77P/+1fMCE1n6ZUP6rp0ma8O2bVkU="; 13 + vendorSha256 = "sha256-hfnpZgGIEpfHjM5J93D/aljN6j5XHGknpYXWeRV4Y4Q="; 14 14 15 15 # Exclude go within .github folder 16 16 excludedPackages = ".github";
+2 -2
pkgs/development/tools/misc/blackfire/php-probe.nix
··· 18 18 }.${lib.versions.majorMinor php.version} or (throw "Unsupported PHP version."); 19 19 in stdenv.mkDerivation rec { 20 20 pname = "php-blackfire"; 21 - version = "1.53.0"; 21 + version = "1.66.0"; 22 22 23 23 src = fetchurl { 24 24 url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire-php/blackfire-php_${version}_amd64.deb"; 25 - sha256 = "ApKj5gulTCzWh7oSAM+JWQnWviHCnHV3OJHegpXJL54="; 25 + sha256 = "kfCIjsGSvaGCZtOIBdKcaeS+TJdVHICo7MSW8YxQ+/Y="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+4 -4
pkgs/development/tools/misc/clojure-lsp/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "clojure-lsp"; 5 - version = "2021.07.12-12.30.59"; 5 + version = "2021.09.04-17.11.44"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "0iky3yh548xn28285x8gnjzc00f3i2b415wb2dhd9p9y2bgzhkld"; 11 + sha256 = "1i12vxg3yb1051q7j6yqlsdy4lc4xl7n4lqssp8w634fpx1p0rgv"; 12 12 }; 13 13 14 14 jar = fetchurl { 15 15 url = "https://github.com/clojure-lsp/clojure-lsp/releases/download/${version}/clojure-lsp.jar"; 16 - sha256 = "02k1k0slh1lm7k43d52jvgl0fdyp9gcr8csbr6yi71qbhy0axrmp"; 16 + sha256 = "0ahrlqzyz3mgfx8w9w49172pb3dipq0hwwzk2yasqzcp1fi6jm80"; 17 17 }; 18 18 19 19 GRAALVM_HOME = graalvm11-ce; ··· 44 44 45 45 export HOME="$(mktemp -d)" 46 46 ./clojure-lsp --version | fgrep -q '${version}' 47 - ${babashka}/bin/bb integration-test/run-all.clj ./clojure-lsp 47 + ${babashka}/bin/bb integration-test ./clojure-lsp 48 48 49 49 runHook postCheck 50 50 '';
+27
pkgs/games/crossfire/crossfire-arch.nix
··· 1 + { stdenv, lib, fetchsvn, 2 + version, rev, sha256 }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "crossfire-arch"; 6 + version = "r${toString rev}"; 7 + 8 + src = fetchsvn { 9 + url = "http://svn.code.sf.net/p/crossfire/code/arch/trunk/"; 10 + sha256 = sha256; 11 + rev = rev; 12 + }; 13 + 14 + installPhase = '' 15 + mkdir -p "$out" 16 + cp -a . "$out/" 17 + ''; 18 + 19 + meta = with lib; { 20 + description = "Archetype data for the Crossfire free MMORPG"; 21 + homepage = "http://crossfire.real-time.com/"; 22 + license = licenses.gpl2Plus; 23 + platforms = platforms.linux; 24 + hydraPlatforms = []; 25 + maintainers = with maintainers; [ ToxicFrog ]; 26 + }; 27 + }
+32
pkgs/games/crossfire/crossfire-client.nix
··· 1 + { stdenv, lib, fetchsvn 2 + , cmake, pkg-config, perl, vala 3 + , gtk2, pcre, zlib, libpng, fribidi, harfbuzzFull, xorg, util-linux, curl 4 + , SDL, SDL_image, SDL_mixer, libselinux, libsepol 5 + , version, rev, sha256 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "crossfire-client"; 10 + version = "r${toString rev}"; 11 + 12 + src = fetchsvn { 13 + url = "http://svn.code.sf.net/p/crossfire/code/client/trunk/"; 14 + sha256 = sha256; 15 + rev = rev; 16 + }; 17 + 18 + nativeBuildInputs = [ cmake pkg-config perl vala ]; 19 + buildInputs = [ 20 + gtk2 pcre zlib libpng fribidi harfbuzzFull xorg.libpthreadstubs 21 + xorg.libXdmcp curl SDL SDL_image SDL_mixer util-linux libselinux libsepol 22 + ]; 23 + hardeningDisable = [ "format" ]; 24 + 25 + meta = with lib; { 26 + description = "GTKv2 client for the Crossfire free MMORPG"; 27 + homepage = "http://crossfire.real-time.com/"; 28 + license = licenses.gpl2Plus; 29 + platforms = platforms.linux; 30 + maintainers = with maintainers; [ ToxicFrog ]; 31 + }; 32 + }
+27
pkgs/games/crossfire/crossfire-maps.nix
··· 1 + { stdenv, lib, fetchsvn, 2 + version, rev, sha256 }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "crossfire-maps"; 6 + version = "r${toString rev}"; 7 + 8 + src = fetchsvn { 9 + url = "http://svn.code.sf.net/p/crossfire/code/maps/trunk/"; 10 + sha256 = sha256; 11 + rev = rev; 12 + }; 13 + 14 + installPhase = '' 15 + mkdir -p "$out" 16 + cp -a . "$out/" 17 + ''; 18 + 19 + meta = with lib; { 20 + description = "Map data for the Crossfire free MMORPG"; 21 + homepage = "http://crossfire.real-time.com/"; 22 + license = licenses.gpl2Plus; 23 + platforms = platforms.linux; 24 + hydraPlatforms = []; 25 + maintainers = with maintainers; [ ToxicFrog ]; 26 + }; 27 + }
+37
pkgs/games/crossfire/crossfire-server.nix
··· 1 + { stdenv, lib, fetchsvn, autoreconfHook, 2 + autoconf, automake, libtool, flex, perl, check, pkg-config, python3, 3 + version, rev, sha256, maps, arch }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "crossfire-server"; 7 + version = "r${toString rev}"; 8 + 9 + src = fetchsvn { 10 + url = "http://svn.code.sf.net/p/crossfire/code/server/trunk/"; 11 + sha256 = sha256; 12 + rev = rev; 13 + }; 14 + 15 + nativeBuildInputs = [ autoconf automake libtool flex perl check pkg-config python3 ]; 16 + hardeningDisable = [ "format" ]; 17 + 18 + preConfigure = '' 19 + ln -s ${arch} lib/arch 20 + ln -s ${maps} lib/maps 21 + sh autogen.sh 22 + ''; 23 + 24 + configureFlags = [ "--with-python=${python3}" ]; 25 + 26 + postInstall = '' 27 + ln -s ${maps} "$out/share/crossfire/maps" 28 + ''; 29 + 30 + meta = with lib; { 31 + description = "Server for the Crossfire free MMORPG"; 32 + homepage = "http://crossfire.real-time.com/"; 33 + license = licenses.gpl2Plus; 34 + platforms = platforms.linux; 35 + maintainers = with maintainers; [ ToxicFrog ]; 36 + }; 37 + }
+28
pkgs/games/crossfire/default.nix
··· 1 + { callPackage, ... }: 2 + 3 + rec { 4 + crossfire-client = callPackage ./crossfire-client.nix { 5 + version = "1.75.0"; 6 + rev = 21760; 7 + sha256 = "0b42sak8hj60nywfswkps777asy9p8r9wsn7pmj2nqbd29ng1p9d"; 8 + }; 9 + 10 + crossfire-server = callPackage ./crossfire-server.nix { 11 + version = "latest"; 12 + rev = 22111; 13 + sha256 = "04fjif6zv642n2zlw27cgzkak2kknwrxqzg42bvzl7q901bsr9l7"; 14 + maps = crossfire-maps; arch = crossfire-arch; 15 + }; 16 + 17 + crossfire-arch = callPackage ./crossfire-arch.nix { 18 + version = "latest"; 19 + rev = 22111; 20 + sha256 = "0l4rp3idvbhknpxxs0w4i4nqfg01wblzm4v4j375xwxxbf00j0ms"; 21 + }; 22 + 23 + crossfire-maps = callPackage ./crossfire-maps.nix { 24 + version = "latest"; 25 + rev = 22111; 26 + sha256 = "1dwfc84acjvbjgjakkb8z8pdlksbsn90j0z8z8rq37lqx0kx1sap"; 27 + }; 28 + }
+17
pkgs/games/deliantra/0001-abs.patch
··· 1 + --- a/utils/cfhq2xa.C 2 + +++ b/utils/cfhq2xa.C 3 + @@ -182,10 +182,10 @@ static inline bool Diff (pixel w1, pixel w2) 4 + pixel YUV1 = RGBAtoYUVA (w1); 5 + pixel YUV2 = RGBAtoYUVA (w2); 6 + 7 + - return ((abs (((YUV1 >> Rshift) & Cmask) - ((YUV2 >> Rshift) & Cmask)) > trY) || 8 + - (abs (((YUV1 >> Gshift) & Cmask) - ((YUV2 >> Gshift) & Cmask)) > trU) || 9 + - (abs (((YUV1 >> Bshift) & Cmask) - ((YUV2 >> Bshift) & Cmask)) > trV) || 10 + - (abs (((YUV1 >> Ashift) & Cmask) - ((YUV2 >> Ashift) & Cmask)) > trA) ); 11 + + return ((abs ((signed int)((YUV1 >> Rshift) & Cmask) - (signed int)((YUV2 >> Rshift) & Cmask)) > trY) || 12 + + (abs ((signed int)((YUV1 >> Gshift) & Cmask) - (signed int)((YUV2 >> Gshift) & Cmask)) > trU) || 13 + + (abs ((signed int)((YUV1 >> Bshift) & Cmask) - (signed int)((YUV2 >> Bshift) & Cmask)) > trV) || 14 + + (abs ((signed int)((YUV1 >> Ashift) & Cmask) - (signed int)((YUV2 >> Ashift) & Cmask)) > trA) ); 15 + } 16 + 17 + static void
+11
pkgs/games/deliantra/0002-datadir.patch
··· 1 + --- a/utils/cfutil.in 2 + +++ b/utils/cfutil.in 3 + @@ -27,7 +27,7 @@ use common::sense; 4 + my $prefix = "@prefix@"; 5 + my $exec_prefix = "@exec_prefix@"; 6 + my $datarootdir = "@datarootdir@"; 7 + -my $DATADIR = "@datadir@/@PACKAGE@"; 8 + +my $DATADIR = $ENV{'DELIANTRA_DATADIR'} || "@datadir@/@PACKAGE@"; 9 + 10 + my $CONVERT = "@CONVERT@"; 11 + my $IDENTIFY = "@IDENTIFY@";
+10
pkgs/games/deliantra/default.nix
··· 1 + pkgs: 2 + 3 + let 4 + callPackage = pkgs.callPackage; 5 + in { 6 + deliantra-server = callPackage ./deliantra-server.nix {}; 7 + deliantra-arch = callPackage ./deliantra-arch.nix {}; 8 + deliantra-maps = callPackage ./deliantra-maps.nix {}; 9 + deliantra-data = callPackage ./deliantra-data.nix {}; 10 + }
+25
pkgs/games/deliantra/deliantra-arch.nix
··· 1 + { stdenv, lib, fetchurl, deliantra-server }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "deliantra-arch"; 5 + version = "3.1"; 6 + 7 + src = fetchurl { 8 + url = "http://dist.schmorp.de/deliantra/${pname}-${version}.tar.xz"; 9 + sha256 = "1xzhv48g90hwkzgx9nfjm81ivg6hchkik9ldimi8ijb4j393kvsz"; 10 + }; 11 + 12 + installPhase = '' 13 + mkdir -p "$out" 14 + export DELIANTRA_DATADIR="$out" 15 + ${deliantra-server}/bin/cfutil --install-arch . 16 + ''; 17 + 18 + meta = with lib; { 19 + description = "Archetype data for the Deliantra free MMORPG"; 20 + homepage = "http://www.deliantra.net/"; 21 + license = with licenses; [ gpl2Plus agpl3Plus ]; 22 + platforms = platforms.linux; 23 + maintainers = with maintainers; [ ToxicFrog ]; 24 + }; 25 + }
+21
pkgs/games/deliantra/deliantra-data.nix
··· 1 + { stdenv, lib, fetchurl, deliantra-maps, deliantra-arch, deliantra-server, symlinkJoin }: 2 + 3 + symlinkJoin rec { 4 + name = "deliantra-data-${version}"; 5 + version = "M${deliantra-maps.version}+A${deliantra-arch.version}"; 6 + 7 + paths = [ 8 + deliantra-maps 9 + deliantra-arch 10 + "${deliantra-server}/share/deliantra-server" 11 + ]; 12 + 13 + meta = with lib; { 14 + description = "Combined game data (maps + archetypes) for the Deliantra free MMORPG"; 15 + homepage = "http://www.deliantra.net/"; 16 + license = with licenses; [ gpl2Plus agpl3Plus ]; 17 + platforms = platforms.linux; 18 + maintainers = with maintainers; [ ToxicFrog ]; 19 + hydraPlatforms = []; 20 + }; 21 + }
+25
pkgs/games/deliantra/deliantra-maps.nix
··· 1 + { stdenv, lib, fetchurl, deliantra-server }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "deliantra-maps"; 5 + version = "3.1"; 6 + 7 + src = fetchurl { 8 + url = "http://dist.schmorp.de/deliantra/${pname}-${version}.tar.xz"; 9 + sha256 = "0zbwzya28s1xpnbrmqkqvfrzns03zdjd8a9w9nk665aif6rw2zbz"; 10 + }; 11 + 12 + installPhase = '' 13 + mkdir -p "$out/maps" 14 + export DELIANTRA_DATADIR="$out" 15 + ${deliantra-server}/bin/cfutil --install-maps . 16 + ''; 17 + 18 + meta = with lib; { 19 + description = "Map data for the Deliantra free MMORPG"; 20 + homepage = "http://www.deliantra.net/"; 21 + license = with licenses; [ gpl2Plus agpl3Plus ]; 22 + platforms = platforms.linux; 23 + maintainers = with maintainers; [ ToxicFrog ]; 24 + }; 25 + }
+48
pkgs/games/deliantra/deliantra-server.nix
··· 1 + { stdenv, lib, fetchurl, perlPackages 2 + , autoconf, perl, gperf, optipng, pngnq, rsync, imagemagick, blitz 3 + , pkg-config, glib, boost, makeWrapper 4 + }: 5 + 6 + let 7 + perl-deps = with perlPackages; [ 8 + AnyEvent AnyEventAIO AnyEventBDB AnyEventIRC 9 + CompressLZF commonsense Coro CoroEV 10 + Deliantra DigestSHA1 EV PodPOM SafeHole URI YAMLLibYAML 11 + ]; 12 + in 13 + stdenv.mkDerivation rec { 14 + pname = "deliantra-server"; 15 + version = "3.1"; 16 + 17 + src = fetchurl { 18 + url = "http://dist.schmorp.de/deliantra/${pname}-${version}.tar.xz"; 19 + sha256 = "0v0m2m9fxq143aknh7jb3qj8bnpjrs3bpbbx07c18516y3izr71d"; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + autoconf perl gperf optipng pngnq rsync imagemagick 24 + pkg-config makeWrapper 25 + ]; 26 + propagatedBuildInputs = perl-deps; 27 + buildInputs = [ 28 + blitz boost glib 29 + ]; 30 + 31 + hardeningDisable = [ "format" ]; 32 + patches = [ 33 + ./0001-abs.patch 34 + ./0002-datadir.patch 35 + ]; 36 + postFixup = '' 37 + wrapProgram $out/bin/cfutil --prefix PERL5LIB : $PERL5LIB 38 + wrapProgram $out/bin/deliantra-server --prefix PERL5LIB : $PERL5LIB 39 + ''; 40 + 41 + meta = with lib; { 42 + description = "Server for the Deliantra free MMORPG"; 43 + homepage = "http://www.deliantra.net/"; 44 + license = with licenses; [ gpl2Plus agpl3Plus ]; 45 + platforms = platforms.linux; 46 + maintainers = with maintainers; [ ToxicFrog ]; 47 + }; 48 + }
+3 -3
pkgs/misc/emulators/wine/sources.nix
··· 44 44 45 45 unstable = fetchurl rec { 46 46 # NOTE: Don't forget to change the SHA256 for staging as well. 47 - version = "6.16"; 47 + version = "6.17"; 48 48 url = "https://dl.winehq.org/wine/source/6.x/wine-${version}.tar.xz"; 49 - sha256 = "sha256-aVCSBQ2YoSnE1/MVPLDkkjJIuuXz2SBjn6SrGnP4+ug="; 49 + sha256 = "sha256-nbHyQ12AJiw3dzF98HWFWu6j5qUst3xjDsGysfuUjwg="; 50 50 inherit (stable) gecko32 gecko64; 51 51 52 52 ## see http://wiki.winehq.org/Mono ··· 65 65 staging = fetchFromGitHub rec { 66 66 # https://github.com/wine-staging/wine-staging/releases 67 67 inherit (unstable) version; 68 - sha256 = "sha256-TvTx3vSOyudyC7aravQGcj5KGqI8uHkgHroIJww5buQ="; 68 + sha256 = "sha256-rR5m6D8M3vTXXIHzsF8+o2G5rlRS2HLfCHoatbJwlrQ="; 69 69 owner = "wine-staging"; 70 70 repo = "wine-staging"; 71 71 rev = "v${version}";
+3 -3
pkgs/misc/gnuk/generic.nix
··· 1 1 { lib, stdenv, gcc-arm-embedded, binutils-arm-embedded, makeWrapper 2 - , python2Packages 2 + , python3Packages 3 3 4 4 # Extra options 5 5 , device ? "fsij", vid ? "234b", pid ? "0000" ··· 15 15 inherit src; 16 16 17 17 nativeBuildInputs = [ gcc-arm-embedded binutils-arm-embedded makeWrapper ]; 18 - buildInputs = with python2Packages; [ python pyusb colorama ]; 18 + buildInputs = with python3Packages; [ python pyusb colorama ]; 19 19 20 20 configurePhase = '' 21 21 cd src ··· 44 44 ''; 45 45 46 46 meta = with lib; { 47 - homepage = "http://www.fsij.org/pages/gnuk"; 47 + homepage = "https://www.fsij.org/doc-gnuk/"; 48 48 description = "An implementation of USB cryptographic token for gpg"; 49 49 license = licenses.gpl3; 50 50 platforms = with platforms; linux;
+280 -231
pkgs/misc/vim-plugins/generated.nix
··· 77 77 78 78 ale = buildVimPluginFrom2Nix { 79 79 pname = "ale"; 80 - version = "2021-09-06"; 80 + version = "2021-09-11"; 81 81 src = fetchFromGitHub { 82 82 owner = "dense-analysis"; 83 83 repo = "ale"; 84 - rev = "35d0bd15194b95f0dc8483ee6e727fcf3d4c8b26"; 85 - sha256 = "1ra8ns6n7xfjk032gw9yd8kvmm9ylwp06d04raz19nhalxi7ra9y"; 84 + rev = "19437e25d05950ab83dce285b4b8ec5166e06dba"; 85 + sha256 = "1pc99l00ir145b0i7g1m857v1318ji1p8bzhs0cmql0hdp4cvyd3"; 86 86 }; 87 87 meta.homepage = "https://github.com/dense-analysis/ale/"; 88 88 }; ··· 365 365 366 366 bufdelete-nvim = buildVimPluginFrom2Nix { 367 367 pname = "bufdelete.nvim"; 368 - version = "2021-09-06"; 368 + version = "2021-09-09"; 369 369 src = fetchFromGitHub { 370 370 owner = "famiu"; 371 371 repo = "bufdelete.nvim"; 372 - rev = "6cf11ded5c8e6e3ea997b64a78be241e2d6c0614"; 373 - sha256 = "1ah9snm88970cyy9f23r9pdjlmzy4y39s4wlx7zwxh6wrfdfnzr1"; 372 + rev = "39d7bfa1802895920f2327b41ab8e41f4b14c866"; 373 + sha256 = "0j1h6h6frngpwx4z42jpxlmpqh736lilvkxhdlc8hcx6cxvw3z0r"; 374 374 }; 375 375 meta.homepage = "https://github.com/famiu/bufdelete.nvim/"; 376 376 }; ··· 389 389 390 390 bufferline-nvim = buildVimPluginFrom2Nix { 391 391 pname = "bufferline.nvim"; 392 - version = "2021-09-02"; 392 + version = "2021-09-12"; 393 393 src = fetchFromGitHub { 394 394 owner = "akinsho"; 395 395 repo = "bufferline.nvim"; 396 - rev = "bede234e1036ab04dd6c6caf3bd7f9ed1d194c3c"; 397 - sha256 = "0rmibanlfyny2zb7rlw4zfw3xdhcqap70xr72a9m9frxvgdmgdnr"; 396 + rev = "15923279b719ce77911caf34e5f4c83a0b5397c9"; 397 + sha256 = "0rmmr0c2jxsl4b4dzs0jdp3dinldczw3s6mnf80k4jvswy28rd9h"; 398 398 }; 399 399 meta.homepage = "https://github.com/akinsho/bufferline.nvim/"; 400 400 }; ··· 449 449 450 450 chadtree = buildVimPluginFrom2Nix { 451 451 pname = "chadtree"; 452 - version = "2021-09-07"; 452 + version = "2021-09-12"; 453 453 src = fetchFromGitHub { 454 454 owner = "ms-jpq"; 455 455 repo = "chadtree"; 456 - rev = "d578a9e0e95e67d01cd847bbd4caab62294ed241"; 457 - sha256 = "1gjmind3dfl41mdjpp7z5zx5l41qv55ckq97zid639lhggi19hbv"; 456 + rev = "121139c3308df99a230da75c3c168947dfd94f60"; 457 + sha256 = "1w3fjz06cz43lyl52kcbyc9zsqzhs483jyc4av3fvycfqs9n2z6m"; 458 458 }; 459 459 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 460 460 }; ··· 579 579 meta.homepage = "https://github.com/hrsh7th/cmp-emoji/"; 580 580 }; 581 581 582 + cmp-latex-symbols = buildVimPluginFrom2Nix { 583 + pname = "cmp-latex-symbols"; 584 + version = "2021-09-10"; 585 + src = fetchFromGitHub { 586 + owner = "kdheepak"; 587 + repo = "cmp-latex-symbols"; 588 + rev = "29dc9e53d17cd1f26605888f85500c8ba79cebff"; 589 + sha256 = "17qjw0yp0cmgyjy593qq6rfh7fgfwgb7mxg7a0kg1drjpncwv8gl"; 590 + }; 591 + meta.homepage = "https://github.com/kdheepak/cmp-latex-symbols/"; 592 + }; 593 + 582 594 cmp-nvim-lsp = buildVimPluginFrom2Nix { 583 595 pname = "cmp-nvim-lsp"; 584 596 version = "2021-09-03"; ··· 605 617 606 618 cmp-path = buildVimPluginFrom2Nix { 607 619 pname = "cmp-path"; 608 - version = "2021-09-06"; 620 + version = "2021-09-11"; 609 621 src = fetchFromGitHub { 610 622 owner = "hrsh7th"; 611 623 repo = "cmp-path"; 612 - rev = "8450341c7e50cc8ae0faee1fafe60b3f516cea79"; 613 - sha256 = "0f8apk6138d9kzcggmbxhrsckv73ld8kdgmw6hcj0ld80a1s683n"; 624 + rev = "0016221b6143fd6bf308667c249e9dbdee835ae2"; 625 + sha256 = "03k43xavw17bbjzmkknp9z4m8jv9hn6wyvjwaj1gpyz0n21kn5bb"; 614 626 }; 615 627 meta.homepage = "https://github.com/hrsh7th/cmp-path/"; 616 628 }; 617 629 630 + cmp-spell = buildVimPluginFrom2Nix { 631 + pname = "cmp-spell"; 632 + version = "2021-08-28"; 633 + src = fetchFromGitHub { 634 + owner = "f3fora"; 635 + repo = "cmp-spell"; 636 + rev = "7157c9fa1029269d97d9ed5632ec575bb71981b4"; 637 + sha256 = "1xrc3zs9jz7dvdfhfx9ikg7abxgvjns0iqr9yzn3jzqm4a37zc62"; 638 + }; 639 + meta.homepage = "https://github.com/f3fora/cmp-spell/"; 640 + }; 641 + 642 + cmp-treesitter = buildVimPluginFrom2Nix { 643 + pname = "cmp-treesitter"; 644 + version = "2021-09-11"; 645 + src = fetchFromGitHub { 646 + owner = "ray-x"; 647 + repo = "cmp-treesitter"; 648 + rev = "cdc1c4c6170278e119759da0b3c28d73f531a231"; 649 + sha256 = "0h0hr086mdszqjk5417nk2fmnbdkyi29gmqirx15k323y53hnvd1"; 650 + }; 651 + meta.homepage = "https://github.com/ray-x/cmp-treesitter/"; 652 + }; 653 + 618 654 cmp-vsnip = buildVimPluginFrom2Nix { 619 655 pname = "cmp-vsnip"; 620 656 version = "2021-08-25"; ··· 629 665 630 666 cmp_luasnip = buildVimPluginFrom2Nix { 631 667 pname = "cmp_luasnip"; 632 - version = "2021-09-02"; 668 + version = "2021-09-11"; 633 669 src = fetchFromGitHub { 634 670 owner = "saadparwaiz1"; 635 671 repo = "cmp_luasnip"; 636 - rev = "438632c7996fe633e1b0f60c9089e8e8637f1bb7"; 637 - sha256 = "14h0d4ni5vahhxbqfa9smzyfcg73kp2iaxxfzhlkx4sq107byry3"; 672 + rev = "7284dd6ee87b05203932db6f9d28516efa5dc981"; 673 + sha256 = "0wffibd4vfmgrhwzymfqkqn8klvv0mhgbjkzjgxl15hpxhz62i5d"; 638 674 }; 639 675 meta.homepage = "https://github.com/saadparwaiz1/cmp_luasnip/"; 640 676 }; ··· 665 701 666 702 coc-fzf = buildVimPluginFrom2Nix { 667 703 pname = "coc-fzf"; 668 - version = "2021-08-03"; 704 + version = "2021-09-12"; 669 705 src = fetchFromGitHub { 670 706 owner = "antoinemadec"; 671 707 repo = "coc-fzf"; 672 - rev = "415535475c43fedb8bccd72fbcc00bb850113eb7"; 673 - sha256 = "02blpv258ibzk2bz1bjcjcqiab9lb6ilhclj5s1abwblvn713i47"; 708 + rev = "2d9deb2a3b05a0c09f01edda0a4abd542cb3eebd"; 709 + sha256 = "0y1yh5sf0irk9rr0d5vzvf58y5q5i50b9wdpbjy1b4dfvnax00gn"; 674 710 }; 675 711 meta.homepage = "https://github.com/antoinemadec/coc-fzf/"; 676 712 }; ··· 1134 1170 1135 1171 defx-nvim = buildVimPluginFrom2Nix { 1136 1172 pname = "defx.nvim"; 1137 - version = "2021-08-18"; 1173 + version = "2021-09-09"; 1138 1174 src = fetchFromGitHub { 1139 1175 owner = "Shougo"; 1140 1176 repo = "defx.nvim"; 1141 - rev = "7e506d4b8cea834ef7e61a1f694540c5da418a25"; 1142 - sha256 = "16lg72l4zixhmd7pf8aliw3gwz2m25z90h8phmjj3d93w2g4q8zd"; 1177 + rev = "7db19db1b1b6a82b763331b1719151a927d494e6"; 1178 + sha256 = "1v435j2qm395kvrq1vcrg4i76av2nzp5vywlhq4mk54q9gmb5xlp"; 1143 1179 }; 1144 1180 meta.homepage = "https://github.com/Shougo/defx.nvim/"; 1145 1181 }; ··· 1194 1230 1195 1231 deol-nvim = buildVimPluginFrom2Nix { 1196 1232 pname = "deol.nvim"; 1197 - version = "2021-08-26"; 1233 + version = "2021-09-09"; 1198 1234 src = fetchFromGitHub { 1199 1235 owner = "Shougo"; 1200 1236 repo = "deol.nvim"; 1201 - rev = "355ae1f71be51faacd40a38e1046f1b1edef5788"; 1202 - sha256 = "1zwmhcjd5ygd3qq7jcb5yvprv081azwmp4x2cg3ijlazgh610ssa"; 1237 + rev = "9859e06d7a478eb3c2d26ca0270501581bd95a0b"; 1238 + sha256 = "1r6hr0lfbhdl86a5k2vy3vaiqnnl9pgvgpak0lvswrjzjkz4nn7h"; 1203 1239 }; 1204 1240 meta.homepage = "https://github.com/Shougo/deol.nvim/"; 1205 1241 }; ··· 1328 1364 1329 1365 deoplete-lsp = buildVimPluginFrom2Nix { 1330 1366 pname = "deoplete-lsp"; 1331 - version = "2021-09-06"; 1367 + version = "2021-09-08"; 1332 1368 src = fetchFromGitHub { 1333 1369 owner = "deoplete-plugins"; 1334 1370 repo = "deoplete-lsp"; 1335 - rev = "a716897b958d1f1c0809d92a70e8d849a3d652e2"; 1336 - sha256 = "1zbh595vq0y8liipncpcc3rwh5dpfifbp623z2w5fx3jpic538xw"; 1371 + rev = "6299a22bedfb4f814d95cb0010291501472f8fd0"; 1372 + sha256 = "01gbjhzgy64398idd3hx0805aaa9ynsxyl52qirr16sy3ydpw0rc"; 1337 1373 }; 1338 1374 meta.homepage = "https://github.com/deoplete-plugins/deoplete-lsp/"; 1339 1375 }; ··· 1472 1508 1473 1509 diffview-nvim = buildVimPluginFrom2Nix { 1474 1510 pname = "diffview.nvim"; 1475 - version = "2021-09-06"; 1511 + version = "2021-09-08"; 1476 1512 src = fetchFromGitHub { 1477 1513 owner = "sindrets"; 1478 1514 repo = "diffview.nvim"; 1479 - rev = "5965e8303be4bc50d26733a02e5c11100f98986c"; 1480 - sha256 = "12pxdha0zk8lwvgvqp02fwkvh5yvpzxf75865h5rxz69v1dqgspf"; 1515 + rev = "520bb5c34dd24e70fc063d28bd6d0e8181bff118"; 1516 + sha256 = "0iz98b75alndxlgyabprk7vmgshqjiigmqmha5pjfw92z4g5lyw8"; 1481 1517 }; 1482 1518 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 1483 1519 }; ··· 1702 1738 1703 1739 feline-nvim = buildVimPluginFrom2Nix { 1704 1740 pname = "feline.nvim"; 1705 - version = "2021-09-07"; 1741 + version = "2021-09-12"; 1706 1742 src = fetchFromGitHub { 1707 1743 owner = "famiu"; 1708 1744 repo = "feline.nvim"; 1709 - rev = "092442db0c7eb6087f0ae2cbeb776781bcc16176"; 1710 - sha256 = "0ac4r3qv5d91srxra71paa03h0wnw6hrfpwr0v9lsk58bv0fxbc2"; 1745 + rev = "0506b42b11e9ef6c5c9a3710cb29f8829b33aaa8"; 1746 + sha256 = "17c8fm8yjzic6ys5p6cy3dkpxjlqp1ziqx537wdqylfa9q177gbg"; 1711 1747 }; 1712 1748 meta.homepage = "https://github.com/famiu/feline.nvim/"; 1713 1749 }; ··· 1847 1883 1848 1884 friendly-snippets = buildVimPluginFrom2Nix { 1849 1885 pname = "friendly-snippets"; 1850 - version = "2021-09-07"; 1886 + version = "2021-09-11"; 1851 1887 src = fetchFromGitHub { 1852 1888 owner = "rafamadriz"; 1853 1889 repo = "friendly-snippets"; 1854 - rev = "1fc5567b29bc9c2588eb0584a001a2dfb706030b"; 1855 - sha256 = "0q8dhnz3ykx3gk7myprkfa6vnvv8xjpj86faadfc6c01l1299f15"; 1890 + rev = "9b1804bf6b6db18b1e056a92e0e03ddecff8e721"; 1891 + sha256 = "08gvxbq8i6hw4s2h6d68bdb27gm97sxj00zcamhpj6gi2h4wbzwl"; 1856 1892 }; 1857 1893 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 1858 1894 }; ··· 1907 1943 1908 1944 fzf-lsp-nvim = buildVimPluginFrom2Nix { 1909 1945 pname = "fzf-lsp.nvim"; 1910 - version = "2021-06-20"; 1946 + version = "2021-09-11"; 1911 1947 src = fetchFromGitHub { 1912 1948 owner = "gfanto"; 1913 1949 repo = "fzf-lsp.nvim"; 1914 - rev = "6683718524adec3ce58c848706bcc7f3aa6a09a1"; 1915 - sha256 = "12ccd7yf726s1gfcxhv7fnwfgwlkgvkqnds442k4i2m9ahs0pyj7"; 1950 + rev = "a08c0417fb910e06ad08d13bc8f9c12848722618"; 1951 + sha256 = "1m5khwj4mbhrhzs5yxipnzja1av9vvnpb460axswcdji9w0niv9y"; 1916 1952 }; 1917 1953 meta.homepage = "https://github.com/gfanto/fzf-lsp.nvim/"; 1918 1954 }; ··· 1955 1991 1956 1992 gentoo-syntax = buildVimPluginFrom2Nix { 1957 1993 pname = "gentoo-syntax"; 1958 - version = "2021-09-01"; 1994 + version = "2021-09-11"; 1959 1995 src = fetchFromGitHub { 1960 1996 owner = "gentoo"; 1961 1997 repo = "gentoo-syntax"; 1962 - rev = "07f6f93065ffc2aa6fe398eebbf31013a092701b"; 1963 - sha256 = "0g4cdx2n5l0fmfdv09h2kg96z04s7lyigi6f0xbp1axc2b8zxrzp"; 1998 + rev = "c38b35cb2b5c8b1a60b5cfd61749ec3b7268218b"; 1999 + sha256 = "1m43bq5cq8k9m71hha76pd1kq8nf9cs7jrgk25m15fc5ywaz4fag"; 1964 2000 }; 1965 2001 meta.homepage = "https://github.com/gentoo/gentoo-syntax/"; 1966 2002 }; ··· 2063 2099 2064 2100 gitsigns-nvim = buildVimPluginFrom2Nix { 2065 2101 pname = "gitsigns.nvim"; 2066 - version = "2021-09-07"; 2102 + version = "2021-09-11"; 2067 2103 src = fetchFromGitHub { 2068 2104 owner = "lewis6991"; 2069 2105 repo = "gitsigns.nvim"; 2070 - rev = "f2437cd95a9320c1021edd5fc5ac2e1f9e47fef3"; 2071 - sha256 = "1xyxi1cyqd0464q60kb2bpxd5vapkmq5a3g3qzvl4klr6syvrkgd"; 2106 + rev = "cef4e6f26cd52f6a9725f0af4798b35cf6807404"; 2107 + sha256 = "01asl51liflhpdgmcmqw1djq24wpyhb051y87fxq6nnlyg92smpc"; 2072 2108 }; 2073 2109 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 2074 2110 }; ··· 2423 2459 2424 2460 indent-blankline-nvim = buildVimPluginFrom2Nix { 2425 2461 pname = "indent-blankline.nvim"; 2426 - version = "2021-09-06"; 2462 + version = "2021-09-12"; 2427 2463 src = fetchFromGitHub { 2428 2464 owner = "lukas-reineke"; 2429 2465 repo = "indent-blankline.nvim"; 2430 - rev = "c4317837801c72686a342a9db4d4f7405857c82d"; 2431 - sha256 = "0sb49f6yba94zyvqqggiz7lwm31ch94rwz09p5jh4iys49kb4s4s"; 2466 + rev = "0a3792cfc978ce30632bb0b10968849f1b9604eb"; 2467 + sha256 = "0ggxdcsdwb686rqwqga34cic94i45zp9aykqrqy13iv49gvspyxv"; 2432 2468 }; 2433 2469 meta.homepage = "https://github.com/lukas-reineke/indent-blankline.nvim/"; 2434 2470 }; ··· 2844 2880 2845 2881 lightspeed-nvim = buildVimPluginFrom2Nix { 2846 2882 pname = "lightspeed.nvim"; 2847 - version = "2021-09-07"; 2883 + version = "2021-09-11"; 2848 2884 src = fetchFromGitHub { 2849 2885 owner = "ggandor"; 2850 2886 repo = "lightspeed.nvim"; 2851 - rev = "5a856fdaf6298be5124e26bccaba68578b625b90"; 2852 - sha256 = "1x4h2dkyf6q434j75xzw0f7xm4633zm8fjm2sgrskvx1r4hbf480"; 2887 + rev = "01909f4e4e46777ca808ce91dc1088f8aba40b45"; 2888 + sha256 = "00szivifmkngq14s3n58hdc3mws0hs2h4ypcykyxc9sypc44ygzs"; 2853 2889 }; 2854 2890 meta.homepage = "https://github.com/ggandor/lightspeed.nvim/"; 2855 2891 }; ··· 2880 2916 2881 2917 lispdocs-nvim = buildVimPluginFrom2Nix { 2882 2918 pname = "lispdocs.nvim"; 2883 - version = "2021-05-16"; 2919 + version = "2021-09-08"; 2884 2920 src = fetchFromGitHub { 2885 2921 owner = "tami5"; 2886 2922 repo = "lispdocs.nvim"; 2887 - rev = "69fbcd854e9600b0f2c6f1c9ec4cb8fde8f5e6da"; 2888 - sha256 = "19n12m6rnv8blbavd2zkwwv6x7gjfziavc5i0zdh4h1l9x9hmwq3"; 2923 + rev = "811527775351070008549c3c2931f80f809fa25c"; 2924 + sha256 = "1idbl5wmj0svh01dfvcilzbx24xl4cc6i77pb3laizh4fz7x7vza"; 2889 2925 }; 2890 2926 meta.homepage = "https://github.com/tami5/lispdocs.nvim/"; 2891 2927 }; ··· 2916 2952 2917 2953 lsp-status-nvim = buildVimPluginFrom2Nix { 2918 2954 pname = "lsp-status.nvim"; 2919 - version = "2021-09-06"; 2955 + version = "2021-09-11"; 2920 2956 src = fetchFromGitHub { 2921 2957 owner = "nvim-lua"; 2922 2958 repo = "lsp-status.nvim"; 2923 - rev = "a5990bfde2fb67c55575ece39b1c863d107acb60"; 2924 - sha256 = "10swm4zwdkgvn8pdqif1ai8kqshzm6bzw9k9jykpb8dxy2anj27y"; 2959 + rev = "d12d7c62efdfd9151aa1b11bebe8cd8655a61368"; 2960 + sha256 = "0vsfih3dn0rmnwbmrd2p0y5fw1h5ii62a9fzjvpjkgw7i9s8d4lp"; 2925 2961 }; 2926 2962 meta.homepage = "https://github.com/nvim-lua/lsp-status.nvim/"; 2927 2963 }; 2928 2964 2929 2965 lsp_extensions-nvim = buildVimPluginFrom2Nix { 2930 2966 pname = "lsp_extensions.nvim"; 2931 - version = "2021-09-06"; 2967 + version = "2021-09-11"; 2932 2968 src = fetchFromGitHub { 2933 2969 owner = "nvim-lua"; 2934 2970 repo = "lsp_extensions.nvim"; 2935 - rev = "379a935b797f5f8a386bcbfd3b105da8007a9303"; 2936 - sha256 = "05q9i93xvp5p770fpg8wkyngq8ncr6b21fdkh9crcgfi1bp7rhqr"; 2971 + rev = "4011f4aec61ba59c734f5dbf52e91f258b99d985"; 2972 + sha256 = "0nzxadzc2namm1lxrklw6gqwdw6wvl2ddpg7c0alhw5c1j05lb64"; 2937 2973 }; 2938 2974 meta.homepage = "https://github.com/nvim-lua/lsp_extensions.nvim/"; 2939 2975 }; 2940 2976 2941 2977 lsp_signature-nvim = buildVimPluginFrom2Nix { 2942 2978 pname = "lsp_signature.nvim"; 2943 - version = "2021-09-07"; 2979 + version = "2021-09-12"; 2944 2980 src = fetchFromGitHub { 2945 2981 owner = "ray-x"; 2946 2982 repo = "lsp_signature.nvim"; 2947 - rev = "d7e5a2f5192dd09b30ccec7ad0de0323c8687e34"; 2948 - sha256 = "01v9crqps9d4wngjfnk535vqgyqqfgrfjyg3aydaa46lyj1ilcvr"; 2983 + rev = "76afb84baee7d843c3d5fb6491a01081ceb3c717"; 2984 + sha256 = "0cy3z89sjy64ri6q015h7r20xqmdxszcrh80jf8v1nay71maxs8b"; 2949 2985 }; 2950 2986 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 2951 2987 }; ··· 3000 3036 3001 3037 luasnip = buildVimPluginFrom2Nix { 3002 3038 pname = "luasnip"; 3003 - version = "2021-09-06"; 3039 + version = "2021-09-12"; 3004 3040 src = fetchFromGitHub { 3005 3041 owner = "l3mon4d3"; 3006 3042 repo = "luasnip"; 3007 - rev = "9748870f69236db39cc8eeb668d944bbe496634e"; 3008 - sha256 = "1fzqfl5isq31iqrl8m52ca8rrpn3rxh6xzwyr4czsx8fggi221dd"; 3043 + rev = "80085bcf4a0f5b6a1008cac29eda9c9242b11520"; 3044 + sha256 = "0jlc2vnyqplzjns3av1h74kfl1jh36aqbffggd59xz2bp10jmwh3"; 3009 3045 }; 3010 3046 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; 3011 3047 }; ··· 3432 3468 3433 3469 neogit = buildVimPluginFrom2Nix { 3434 3470 pname = "neogit"; 3435 - version = "2021-09-03"; 3471 + version = "2021-09-12"; 3436 3472 src = fetchFromGitHub { 3437 3473 owner = "TimUntersberger"; 3438 3474 repo = "neogit"; 3439 - rev = "2a9ce6bbe682c31dbd5cd59214eb0ae93dab4ab6"; 3440 - sha256 = "1pkdq2c1ac90zblrm10fbrjw3sxlifd87djnnnmc9r7xmvb4azxa"; 3475 + rev = "8d0adf5420314e98577c9a1974cf0f0f34ec16eb"; 3476 + sha256 = "0fl7zk81z54166428ff42dbhzz347scqaajr5qzgin20sydj66qk"; 3441 3477 }; 3442 3478 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 3443 3479 }; ··· 3492 3528 3493 3529 neorg = buildVimPluginFrom2Nix { 3494 3530 pname = "neorg"; 3495 - version = "2021-09-05"; 3531 + version = "2021-09-11"; 3496 3532 src = fetchFromGitHub { 3497 3533 owner = "nvim-neorg"; 3498 3534 repo = "neorg"; 3499 - rev = "47a0a3d91ddde94488ccd03d38b5beeb296d3148"; 3500 - sha256 = "0n8scyjy3wx2l3anl3dyipx7rlayrjb5dlri2r81dr1s77vkch83"; 3535 + rev = "4c71e58684dee52f1f19f2d10e7dd4f9a50eaba7"; 3536 + sha256 = "0l12j53ga7ycm773jddi9nj0bkdjwh3d3cx9zgnxgn0ra0niq3fs"; 3501 3537 }; 3502 3538 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 3503 3539 }; ··· 3516 3552 3517 3553 neosnippet-snippets = buildVimPluginFrom2Nix { 3518 3554 pname = "neosnippet-snippets"; 3519 - version = "2021-05-05"; 3555 + version = "2021-09-11"; 3520 3556 src = fetchFromGitHub { 3521 3557 owner = "Shougo"; 3522 3558 repo = "neosnippet-snippets"; 3523 - rev = "1315d10e60bd93483aaac4cc5a1623d13aede504"; 3524 - sha256 = "1w80id0123rbwmkicm8n053mp1wzqwh9lxxjmmp6bp6c2x97mgzk"; 3559 + rev = "24115acf7549620c1e64be1f996fe1cf5435d039"; 3560 + sha256 = "1jr4vk8r3p5qnd2l6v278c3ppggzxaq28dqmdg267rd34jybng8d"; 3525 3561 }; 3526 3562 meta.homepage = "https://github.com/Shougo/neosnippet-snippets/"; 3527 3563 }; ··· 3564 3600 3565 3601 neovim-ayu = buildVimPluginFrom2Nix { 3566 3602 pname = "neovim-ayu"; 3567 - version = "2021-08-30"; 3603 + version = "2021-09-10"; 3568 3604 src = fetchFromGitHub { 3569 3605 owner = "Shatur"; 3570 3606 repo = "neovim-ayu"; 3571 - rev = "5f8fbd1c8df54859c34c201515f734550fdb264e"; 3572 - sha256 = "0rdxf7qd1hn2s82c7z0f7mgaw2dmbhwdy4jdkiabdi9y5f4d66wh"; 3607 + rev = "441d9db65ef7fb3ced17d0d88b2114b925302ec2"; 3608 + sha256 = "1wmvclkrkdmx5ng6hs4yyvlvhwbbv767shsn2yqg6p5hx67sa4d2"; 3573 3609 }; 3574 3610 meta.homepage = "https://github.com/Shatur/neovim-ayu/"; 3575 3611 }; ··· 3624 3660 3625 3661 nerdtree = buildVimPluginFrom2Nix { 3626 3662 pname = "nerdtree"; 3627 - version = "2021-09-07"; 3663 + version = "2021-09-11"; 3628 3664 src = fetchFromGitHub { 3629 3665 owner = "preservim"; 3630 3666 repo = "nerdtree"; 3631 - rev = "e5f24e2b8bc09ce6fc3488215d69ddb7cadc5f8d"; 3632 - sha256 = "13hbf5c67hi103yixc1jhp8gky02gy2hfq2im4sq7y1wwhgfxn0l"; 3667 + rev = "aa7e97b7ff2ace7ed434b09bd33f3ad449d294e9"; 3668 + sha256 = "0ylfls91m65hhargnv1gqlqak61qv63zldh6ri91h7nidrxi7m1m"; 3633 3669 }; 3634 3670 meta.homepage = "https://github.com/preservim/nerdtree/"; 3635 3671 }; ··· 3696 3732 3697 3733 nnn-vim = buildVimPluginFrom2Nix { 3698 3734 pname = "nnn.vim"; 3699 - version = "2021-09-03"; 3735 + version = "2021-09-11"; 3700 3736 src = fetchFromGitHub { 3701 3737 owner = "mcchrish"; 3702 3738 repo = "nnn.vim"; 3703 - rev = "c4c4d9531726c11892e32daa977c958ad47f7b97"; 3704 - sha256 = "1b84nh9c3pvlkgj2jldd9p8bmd3wzqxldl0y7gn6ny93f3ajgkb8"; 3739 + rev = "07c3ccda0f4b579aa26f882bf771c6096e783e30"; 3740 + sha256 = "19f4m4djfs5szwc5v9zwc0ki8w59glxcv5mxps88gyns1c07qbvn"; 3705 3741 }; 3706 3742 meta.homepage = "https://github.com/mcchrish/nnn.vim/"; 3707 3743 }; ··· 3720 3756 3721 3757 nord-nvim = buildVimPluginFrom2Nix { 3722 3758 pname = "nord.nvim"; 3723 - version = "2021-08-20"; 3759 + version = "2021-09-09"; 3724 3760 src = fetchFromGitHub { 3725 3761 owner = "shaunsingh"; 3726 3762 repo = "nord.nvim"; 3727 - rev = "d2b6f9d4688a381f26a652df7e1b6a49e9f33542"; 3728 - sha256 = "03jjx1mblqwdrz7g280wvdyq9sbfj6spf8k61gcq1gy7bb4qjfp7"; 3763 + rev = "467d684f296a57b0069ff4ee9566df439511efe3"; 3764 + sha256 = "1grnvi8glqffbr1k4sifr0bg6dkflarzj3f6c2jbm98l4dk3vps8"; 3729 3765 }; 3730 3766 meta.homepage = "https://github.com/shaunsingh/nord.nvim/"; 3731 3767 }; ··· 3756 3792 3757 3793 null-ls-nvim = buildVimPluginFrom2Nix { 3758 3794 pname = "null-ls.nvim"; 3759 - version = "2021-09-07"; 3795 + version = "2021-09-10"; 3760 3796 src = fetchFromGitHub { 3761 3797 owner = "jose-elias-alvarez"; 3762 3798 repo = "null-ls.nvim"; 3763 - rev = "f9f4c8cd1a2af30bed35296a50eca8957fa99e3b"; 3764 - sha256 = "0yi1nhh0xh6fhqd52f6wsysylm3ls9xh7dy03990lmcv64wajx9j"; 3799 + rev = "da8bb757c630b96fd26030df56fd3a070fbf16a1"; 3800 + sha256 = "1n6gqikw4fsypchvb5hna1l7b54638qrhny0w84xamadmv4nj4kr"; 3765 3801 }; 3766 3802 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 3767 3803 }; ··· 3804 3840 3805 3841 nvim-autopairs = buildVimPluginFrom2Nix { 3806 3842 pname = "nvim-autopairs"; 3807 - version = "2021-09-04"; 3843 + version = "2021-09-11"; 3808 3844 src = fetchFromGitHub { 3809 3845 owner = "windwp"; 3810 3846 repo = "nvim-autopairs"; 3811 - rev = "b9bb1713257ae73eec22d68579e3012134a3598c"; 3812 - sha256 = "0m71mqcsmi4masabpmidpyqc1r8v48zj2kzicg2fnw1xkmwjbh5n"; 3847 + rev = "c80b4ac3faec6fa60637f1ac785b311c26b06b1f"; 3848 + sha256 = "1w2m278g0hl3yc32x8rr4wxmhshsv53a6k59ihgjdk703n66cp7a"; 3813 3849 }; 3814 3850 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 3815 3851 }; ··· 3864 3900 3865 3901 nvim-cmp = buildVimPluginFrom2Nix { 3866 3902 pname = "nvim-cmp"; 3867 - version = "2021-09-07"; 3903 + version = "2021-09-12"; 3868 3904 src = fetchFromGitHub { 3869 3905 owner = "hrsh7th"; 3870 3906 repo = "nvim-cmp"; 3871 - rev = "c44ae32bf52b95b0b98e08b6430b998bfde02cf8"; 3872 - sha256 = "0yhgimz1hqzb7sxhzv4hirzl89r2ri5y0h671rcl7xlhhzmmb7ks"; 3907 + rev = "9c460395a04e2ea7a1f4f8b82572efc67faf18ff"; 3908 + sha256 = "0rvk3y08fhwjy1k9s9jvgiak0f4h6pwl6gxa3ibm8wd6bah8ip9b"; 3873 3909 }; 3874 3910 meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 3875 3911 }; ··· 3912 3948 3913 3949 nvim-dap = buildVimPluginFrom2Nix { 3914 3950 pname = "nvim-dap"; 3915 - version = "2021-09-02"; 3951 + version = "2021-09-10"; 3916 3952 src = fetchFromGitHub { 3917 3953 owner = "mfussenegger"; 3918 3954 repo = "nvim-dap"; 3919 - rev = "980bdf8e68d626adba0fea7ef990966bd47052a1"; 3920 - sha256 = "06inkm5rw9lx14jz1z4r3q669wyqm46s3b6k6aiiz2b8dldz74ll"; 3955 + rev = "55971c4f5cf83177a38bdec9de7bea6711c94880"; 3956 + sha256 = "149zhqwfv8ciw1ik5c258gwx71y7i0517qzqzw9qq5p66bxsxsdx"; 3921 3957 }; 3922 3958 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 3923 3959 }; 3924 3960 3925 3961 nvim-dap-ui = buildVimPluginFrom2Nix { 3926 3962 pname = "nvim-dap-ui"; 3927 - version = "2021-09-06"; 3963 + version = "2021-09-10"; 3928 3964 src = fetchFromGitHub { 3929 3965 owner = "rcarriga"; 3930 3966 repo = "nvim-dap-ui"; 3931 - rev = "8683ebb3a599cccb0ca1d850e9423debe193b468"; 3932 - sha256 = "1jd9cbwb4vpyp5mvc2zpz776j5b6313bmw3cij3q5fbg5mqzg23s"; 3967 + rev = "945ab8c0def213b26fb87f24c1953541b60bd7e8"; 3968 + sha256 = "11jznj4a45i6221s1izr17nhlayi6ry6ma0a7x01cblfzdcg60as"; 3933 3969 }; 3934 3970 meta.homepage = "https://github.com/rcarriga/nvim-dap-ui/"; 3935 3971 }; ··· 3972 4008 3973 4009 nvim-gps = buildVimPluginFrom2Nix { 3974 4010 pname = "nvim-gps"; 3975 - version = "2021-09-06"; 4011 + version = "2021-09-12"; 3976 4012 src = fetchFromGitHub { 3977 4013 owner = "smiteshp"; 3978 4014 repo = "nvim-gps"; 3979 - rev = "4c68a6463599ec432ee67b0eb337235c153c6b64"; 3980 - sha256 = "1mfi2si4x2qn5qww3lfp4827sjpa3j7ma4k1ypidpqq53fr2h8c8"; 4015 + rev = "38adf37b1937abdbee41860299d6dc29303bcfcc"; 4016 + sha256 = "0cvbdg4mvvnnziz28h0imgwf5cj9s3nji9z0gbkf0xzqanlfqbaa"; 3981 4017 }; 3982 4018 meta.homepage = "https://github.com/smiteshp/nvim-gps/"; 3983 4019 }; 3984 4020 3985 4021 nvim-highlite = buildVimPluginFrom2Nix { 3986 4022 pname = "nvim-highlite"; 3987 - version = "2021-09-02"; 4023 + version = "2021-09-10"; 3988 4024 src = fetchFromGitHub { 3989 4025 owner = "Iron-E"; 3990 4026 repo = "nvim-highlite"; 3991 - rev = "b0c31d84d8c53999365a8d38ebefd7f1e7221b9e"; 3992 - sha256 = "0cs47xpp1f6l9fsk320sk8kkqjanzwzg0718awzbj7rfbcvm865l"; 4027 + rev = "6b06fdec591ff93ce47b0489ad524929a323ff59"; 4028 + sha256 = "10wfs6s76f2vx47q48ihx5y6fxgq0iq3ixifv2z0l1r6n9x5rkr6"; 3993 4029 }; 3994 4030 meta.homepage = "https://github.com/Iron-E/nvim-highlite/"; 3995 4031 }; 3996 4032 3997 4033 nvim-hlslens = buildVimPluginFrom2Nix { 3998 4034 pname = "nvim-hlslens"; 3999 - version = "2021-09-03"; 4035 + version = "2021-09-09"; 4000 4036 src = fetchFromGitHub { 4001 4037 owner = "kevinhwang91"; 4002 4038 repo = "nvim-hlslens"; 4003 - rev = "20db45d5626c9441a9b8bb687dd8915db69b76cb"; 4004 - sha256 = "1yxrs62lpanaiw1m4wbxrhq9b7xqjmca8i2hscfzn3ydvdnd0bf4"; 4039 + rev = "df0eb031cdc0688381f6c059ecd3545ecfffe89b"; 4040 + sha256 = "03mv11724jx5s811gisl6xc62qc31xknydsg67nz81mrya3559jb"; 4005 4041 }; 4006 4042 meta.homepage = "https://github.com/kevinhwang91/nvim-hlslens/"; 4007 4043 }; ··· 4032 4068 4033 4069 nvim-lightbulb = buildVimPluginFrom2Nix { 4034 4070 pname = "nvim-lightbulb"; 4035 - version = "2021-08-21"; 4071 + version = "2021-09-09"; 4036 4072 src = fetchFromGitHub { 4037 4073 owner = "kosayoda"; 4038 4074 repo = "nvim-lightbulb"; 4039 - rev = "e94e434f4549c9c331f875931b3e804fb1d2bc16"; 4040 - sha256 = "0043vzjp4p48xw03xn9g5l0daplg3rfijqxdq00kp0s6np3c312j"; 4075 + rev = "7411586f6b431a9c49a50fa962b6d6eae25aeb20"; 4076 + sha256 = "0maba6mzkpvnjdz8x0lifdqlbw55bd58ggavbhyxd8279887bph6"; 4041 4077 }; 4042 4078 meta.homepage = "https://github.com/kosayoda/nvim-lightbulb/"; 4043 4079 }; 4044 4080 4045 4081 nvim-lspconfig = buildVimPluginFrom2Nix { 4046 4082 pname = "nvim-lspconfig"; 4047 - version = "2021-09-06"; 4083 + version = "2021-09-12"; 4048 4084 src = fetchFromGitHub { 4049 4085 owner = "neovim"; 4050 4086 repo = "nvim-lspconfig"; 4051 - rev = "ea72eaae8809c0e475a8248aa665034d7d4520db"; 4052 - sha256 = "01mzyf0d5q0wmr9md6dj3yxlxqc3s80mz43ig3lkz7cgywjzn3qz"; 4087 + rev = "974d15fa2809dff691d6a50a6759bf2c8bf39b4a"; 4088 + sha256 = "1nb5k8hsxm8anjmvavxniv4k0rgrgl068czczs9x8z6dsd2865il"; 4053 4089 }; 4054 4090 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 4055 4091 }; ··· 4080 4116 4081 4117 nvim-notify = buildVimPluginFrom2Nix { 4082 4118 pname = "nvim-notify"; 4083 - version = "2021-09-06"; 4119 + version = "2021-09-09"; 4084 4120 src = fetchFromGitHub { 4085 4121 owner = "rcarriga"; 4086 4122 repo = "nvim-notify"; 4087 - rev = "6602d0d2bec64994e2f3d5b2038e98cb67101828"; 4088 - sha256 = "0njp63lignvm7b6akq3v840wkyqfw2crips36rvxljy00d5q4smz"; 4123 + rev = "2f5559d38967587d4982bd70002b6e8091a7dfb3"; 4124 + sha256 = "0a51z3a2n9k80s60palm1gdry3n5zfv8vs8swvqla9zjvj3d960h"; 4089 4125 }; 4090 4126 meta.homepage = "https://github.com/rcarriga/nvim-notify/"; 4091 4127 }; ··· 4104 4140 4105 4141 nvim-scrollview = buildVimPluginFrom2Nix { 4106 4142 pname = "nvim-scrollview"; 4107 - version = "2021-09-05"; 4143 + version = "2021-09-09"; 4108 4144 src = fetchFromGitHub { 4109 4145 owner = "dstein64"; 4110 4146 repo = "nvim-scrollview"; 4111 - rev = "ac9ce2834753eee1a8cdb8851567f968d2770870"; 4112 - sha256 = "1j4xdrk8lvjglkkadkvmcwap2ikgcvymsds2xzmix3xjn5kvrjxj"; 4147 + rev = "e4c243ebdbe1a224016d7139169789c9ba5d6426"; 4148 + sha256 = "0hq6m68ydmg24q5ksz5im61wvqdm08v7j3bp76vsw7x06igxp12l"; 4113 4149 }; 4114 4150 meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; 4115 4151 }; ··· 4128 4164 4129 4165 nvim-spectre = buildVimPluginFrom2Nix { 4130 4166 pname = "nvim-spectre"; 4131 - version = "2021-09-05"; 4167 + version = "2021-09-11"; 4132 4168 src = fetchFromGitHub { 4133 4169 owner = "windwp"; 4134 4170 repo = "nvim-spectre"; 4135 - rev = "0f10e9fe2553cb8c0a1512924a2639035559e0bd"; 4136 - sha256 = "15bahq0gspjl263bjlpd199brf3ns126j2mrlfxsqzlcnc53y7za"; 4171 + rev = "f8d6775bf41a341b1ee4a9c76da1f2f98836c505"; 4172 + sha256 = "0vizqw40im61c5638910dh6aa4l9g9lspn0l1yqc3qnj7rvcjflc"; 4137 4173 }; 4138 4174 meta.homepage = "https://github.com/windwp/nvim-spectre/"; 4139 4175 }; ··· 4152 4188 4153 4189 nvim-tree-lua = buildVimPluginFrom2Nix { 4154 4190 pname = "nvim-tree.lua"; 4155 - version = "2021-09-04"; 4191 + version = "2021-09-12"; 4156 4192 src = fetchFromGitHub { 4157 4193 owner = "kyazdani42"; 4158 4194 repo = "nvim-tree.lua"; 4159 - rev = "71122d798482e30c599d78aa7ae4a756c6e81a79"; 4160 - sha256 = "1gdhq3q0r63z5qy29h833v8g77y1d6939z1n1y1skjay4y9krx2z"; 4195 + rev = "d7f73b5ae9c8fa85535c32e2861c2cb97df5d56b"; 4196 + sha256 = "15j4q0qa84mg5bnnr216njbq26pq0a9z5ggd6s0wdfzkiqkhswz1"; 4161 4197 }; 4162 4198 meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; 4163 4199 }; ··· 4224 4260 4225 4261 nvim-ts-context-commentstring = buildVimPluginFrom2Nix { 4226 4262 pname = "nvim-ts-context-commentstring"; 4227 - version = "2021-08-17"; 4263 + version = "2021-09-09"; 4228 4264 src = fetchFromGitHub { 4229 4265 owner = "joosepalviste"; 4230 4266 repo = "nvim-ts-context-commentstring"; 4231 - rev = "72a3f45a294a4a871101f820c6b94a29bd9b203f"; 4232 - sha256 = "12cpak7b2aw2wrfx6gpw4lqx9c65q4fibsy5vf3a7h5g1i6yjg2m"; 4267 + rev = "a2283cfc9f4aa892349004153ab54dfe8911241c"; 4268 + sha256 = "1zf9jfzxpc9n7vd40lm8c8yys8lsyq0rnv9ywwdwsfai4pjj3x0z"; 4233 4269 }; 4234 4270 meta.homepage = "https://github.com/joosepalviste/nvim-ts-context-commentstring/"; 4235 4271 }; 4236 4272 4237 4273 nvim-ts-rainbow = buildVimPluginFrom2Nix { 4238 4274 pname = "nvim-ts-rainbow"; 4239 - version = "2021-08-27"; 4275 + version = "2021-09-08"; 4240 4276 src = fetchFromGitHub { 4241 4277 owner = "p00f"; 4242 4278 repo = "nvim-ts-rainbow"; 4243 - rev = "aa27d56bc53a82f501cd89cd797969f5e2211c61"; 4244 - sha256 = "1xaigr825wd1q4kxayki8a1pqfcyps07llfl6naa05k5x4g59izv"; 4279 + rev = "2f39c594a8d110bd4fcb75288a7d03cb93c81ea2"; 4280 + sha256 = "1aziya540ddix71xhivkqjrr3s57mwlgfwix3pg2gkwajjnwxwml"; 4245 4281 }; 4246 4282 meta.homepage = "https://github.com/p00f/nvim-ts-rainbow/"; 4247 4283 }; 4248 4284 4249 4285 nvim-web-devicons = buildVimPluginFrom2Nix { 4250 4286 pname = "nvim-web-devicons"; 4251 - version = "2021-08-31"; 4287 + version = "2021-09-11"; 4252 4288 src = fetchFromGitHub { 4253 4289 owner = "kyazdani42"; 4254 4290 repo = "nvim-web-devicons"; 4255 - rev = "c8ce86df2ee0f5bb455c4188c8a4c77d3c9ef714"; 4256 - sha256 = "1n6cp02zmz3ykgw7ywh59fw48q13s3friql7cfbx8sdb1qsjmh8h"; 4291 + rev = "be8bb70502441e3bdd4911cf7998dc16d7535706"; 4292 + sha256 = "0sz6y0jzzb84ws5p8m49ry43dl9y0ahbppx5qy61i72bahv9hkpj"; 4257 4293 }; 4258 4294 meta.homepage = "https://github.com/kyazdani42/nvim-web-devicons/"; 4259 4295 }; ··· 4402 4438 meta.homepage = "https://github.com/tyru/open-browser.vim/"; 4403 4439 }; 4404 4440 4441 + orgmode-nvim = buildVimPluginFrom2Nix { 4442 + pname = "orgmode.nvim"; 4443 + version = "2021-09-10"; 4444 + src = fetchFromGitHub { 4445 + owner = "kristijanhusak"; 4446 + repo = "orgmode.nvim"; 4447 + rev = "e7fff702db42ed1d90bc9fa46c3b3a102024041f"; 4448 + sha256 = "0fxz0j7mjbs64x18kx3jsj3h8l124ndxf576k8vh9cwgz1g66bcj"; 4449 + }; 4450 + meta.homepage = "https://github.com/kristijanhusak/orgmode.nvim/"; 4451 + }; 4452 + 4405 4453 packer-nvim = buildVimPluginFrom2Nix { 4406 4454 pname = "packer.nvim"; 4407 - version = "2021-09-04"; 4455 + version = "2021-09-10"; 4408 4456 src = fetchFromGitHub { 4409 4457 owner = "wbthomason"; 4410 4458 repo = "packer.nvim"; 4411 - rev = "daec6c759f95cd8528e5dd7c214b18b4cec2658c"; 4412 - sha256 = "1mavf0rwrlvwd9bmxj1nnyd32jqrzn4wpiman8wpakf5dcn1i8gb"; 4459 + rev = "0dc37ac2e93895d0adc872b7ce69ad864a1fa45a"; 4460 + sha256 = "0a4mnfhrv4g5zqvjj3mv3bv5l7py9s4iqwy0f9xnh0f92c631q0b"; 4413 4461 }; 4414 4462 meta.homepage = "https://github.com/wbthomason/packer.nvim/"; 4415 4463 }; ··· 4512 4560 4513 4561 plenary-nvim = buildVimPluginFrom2Nix { 4514 4562 pname = "plenary.nvim"; 4515 - version = "2021-09-01"; 4563 + version = "2021-09-12"; 4516 4564 src = fetchFromGitHub { 4517 4565 owner = "nvim-lua"; 4518 4566 repo = "plenary.nvim"; 4519 - rev = "06266e7bf675ba9af887fb6d1661b289fdd9bcf4"; 4520 - sha256 = "02c1y9ygzq8fmcgy7l4khpb141v2fww3gbl8vf0ds2f70zgglxs4"; 4567 + rev = "6c80b83cd57ff3b029fae37b6145bcaeb4f69ee3"; 4568 + sha256 = "1jzyxnjs2zg02ib7h2vshhiq873n04bsg4g829v7d46bsw1337kw"; 4521 4569 }; 4522 4570 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 4523 4571 }; ··· 4777 4825 4778 4826 refactoring-nvim = buildVimPluginFrom2Nix { 4779 4827 pname = "refactoring.nvim"; 4780 - version = "2021-09-02"; 4828 + version = "2021-09-10"; 4781 4829 src = fetchFromGitHub { 4782 4830 owner = "theprimeagen"; 4783 4831 repo = "refactoring.nvim"; 4784 - rev = "220685f62532d28af64def09266b8341502044cc"; 4785 - sha256 = "0pv78vkhsnhc690q449950abxlr6w88xj60g39hyx9y5wkq8aqks"; 4832 + rev = "dcb0c790f20c4970a9d0e9b1f1c0c5f71b613547"; 4833 + sha256 = "1adjalqqa27f27nlwkj8pybk6sp8l9fic9fikvlqgnfg7v1r8gkw"; 4786 4834 }; 4787 4835 meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 4788 4836 }; 4789 4837 4790 4838 registers-nvim = buildVimPluginFrom2Nix { 4791 4839 pname = "registers.nvim"; 4792 - version = "2021-09-04"; 4840 + version = "2021-09-09"; 4793 4841 src = fetchFromGitHub { 4794 4842 owner = "tversteeg"; 4795 4843 repo = "registers.nvim"; 4796 - rev = "b99098afe11d275297715f06ddea4536e90eac7a"; 4797 - sha256 = "0f42zvbgqqv3vs5rplwwyx9pdsysm375nyr3fdb0xdfx2gn9wc38"; 4844 + rev = "3f522bd7375dc780714c1ebe7fe398f4e45f0e52"; 4845 + sha256 = "013n3ci6605qa6dvabg02nhln9s5ahh9gvzh07w3ikvb53wp31h4"; 4798 4846 }; 4799 4847 meta.homepage = "https://github.com/tversteeg/registers.nvim/"; 4800 4848 }; ··· 5247 5295 5248 5296 sqlite-lua = buildVimPluginFrom2Nix { 5249 5297 pname = "sqlite.lua"; 5250 - version = "2021-09-04"; 5298 + version = "2021-09-09"; 5251 5299 src = fetchFromGitHub { 5252 5300 owner = "tami5"; 5253 5301 repo = "sqlite.lua"; 5254 - rev = "f43b038b4e1c05c457d36b89afe240089089358d"; 5255 - sha256 = "1681hzxz4pykb6svk18mhv8w5wr9c2m626sfyvpg9na25w4d7ijd"; 5302 + rev = "92ebda8bfd719668279ea82f84e5c2e13db5b658"; 5303 + sha256 = "0yxcak88lvmsxji6wai23wycwj0mmc95jwhh29i916jsk0xc20n5"; 5256 5304 }; 5257 5305 meta.homepage = "https://github.com/tami5/sqlite.lua/"; 5258 5306 }; ··· 5355 5403 5356 5404 swift-vim = buildVimPluginFrom2Nix { 5357 5405 pname = "swift.vim"; 5358 - version = "2021-08-05"; 5406 + version = "2021-09-10"; 5359 5407 src = fetchFromGitHub { 5360 5408 owner = "keith"; 5361 5409 repo = "swift.vim"; 5362 - rev = "e83ca052e88805b8b20bc2558e7995461665e306"; 5363 - sha256 = "1in7dz0h9a4phw57a3fk7h2lmn3hrcn17vaqjimpp7hwlc160467"; 5410 + rev = "3278cf3b0522e6f08eaf11275fedce619beffe9a"; 5411 + sha256 = "0hhi49iwkgzxhdixj0jbc4mbgad1irb056ijf7l5022r4k4gs2n8"; 5364 5412 }; 5365 5413 meta.homepage = "https://github.com/keith/swift.vim/"; 5366 5414 }; ··· 5403 5451 5404 5452 tabnine-vim = buildVimPluginFrom2Nix { 5405 5453 pname = "tabnine-vim"; 5406 - version = "2021-09-02"; 5454 + version = "2021-09-12"; 5407 5455 src = fetchFromGitHub { 5408 5456 owner = "codota"; 5409 5457 repo = "tabnine-vim"; 5410 - rev = "d0f294cbe6dcdd226240a7d2a598cbba05581389"; 5411 - sha256 = "1iq6j6g68q4c9dnsnf0i6p2z1ipygm9kmjzwz5i5rl52nhkc18f3"; 5458 + rev = "25b1afe68ab77097fc029389f0b46a1f2a606c57"; 5459 + sha256 = "1n3714zywqkw3a3wdyp3vnlgly2i51b8f4csyk7nd8giwg3c1428"; 5460 + fetchSubmodules = true; 5412 5461 }; 5413 5462 meta.homepage = "https://github.com/codota/tabnine-vim/"; 5414 5463 }; ··· 5547 5596 5548 5597 telescope-fzf-native-nvim = buildVimPluginFrom2Nix { 5549 5598 pname = "telescope-fzf-native.nvim"; 5550 - version = "2021-08-27"; 5599 + version = "2021-09-12"; 5551 5600 src = fetchFromGitHub { 5552 5601 owner = "nvim-telescope"; 5553 5602 repo = "telescope-fzf-native.nvim"; 5554 - rev = "66c8705414483d768b25f7e19d445e3df0d62625"; 5555 - sha256 = "1hg908k21zbmdc4qmdnpq5kz4lfwdrghmxibcm5li6c5shb0rs1q"; 5603 + rev = "c507c54786e8ce389a6a6aca1f406522fa3d88d3"; 5604 + sha256 = "1v4gr1bgb1li8xdz78sjn4gms72pa615h5cy2af0zx0akhbk28ql"; 5556 5605 }; 5557 5606 meta.homepage = "https://github.com/nvim-telescope/telescope-fzf-native.nvim/"; 5558 5607 }; ··· 5620 5669 5621 5670 telescope-nvim = buildVimPluginFrom2Nix { 5622 5671 pname = "telescope.nvim"; 5623 - version = "2021-09-07"; 5672 + version = "2021-09-12"; 5624 5673 src = fetchFromGitHub { 5625 5674 owner = "nvim-telescope"; 5626 5675 repo = "telescope.nvim"; 5627 - rev = "12a44ededa1fc2426d40886feb4034230759a19a"; 5628 - sha256 = "0h2idrbi8ahldvgrlcl6hi5bjm2gwd4raz3k7mc3k34vmfk3r29z"; 5676 + rev = "1d17cc4abc493d20b4aba36569e8805c2382ea7b"; 5677 + sha256 = "1ycq09ip2dhlzf2bmjayb3zj9zhl1scznls2krzvmzfq46g93ira"; 5629 5678 }; 5630 5679 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 5631 5680 }; ··· 6233 6282 6234 6283 vim-airline = buildVimPluginFrom2Nix { 6235 6284 pname = "vim-airline"; 6236 - version = "2021-08-11"; 6285 + version = "2021-09-10"; 6237 6286 src = fetchFromGitHub { 6238 6287 owner = "vim-airline"; 6239 6288 repo = "vim-airline"; 6240 - rev = "0de4c9df21abf9256091d205148601f718d3a12c"; 6241 - sha256 = "12k3kdxnmqhkb8f71cqrrf1xwphlcc7nbimlxkp7my5y75xrk6lx"; 6289 + rev = "2e29ab965625d1315f0ad070c928794baea3d66f"; 6290 + sha256 = "1v1n6q6iq1d82i4hrkp0rqmd5yd2p0znlwd5khwq3nsfgbqsnwa9"; 6242 6291 }; 6243 6292 meta.homepage = "https://github.com/vim-airline/vim-airline/"; 6244 6293 }; ··· 6413 6462 6414 6463 vim-better-whitespace = buildVimPluginFrom2Nix { 6415 6464 pname = "vim-better-whitespace"; 6416 - version = "2020-03-24"; 6465 + version = "2021-09-12"; 6417 6466 src = fetchFromGitHub { 6418 6467 owner = "ntpeters"; 6419 6468 repo = "vim-better-whitespace"; 6420 - rev = "8cf4b2175dd61416c2fe7d3234324a6c59d678de"; 6421 - sha256 = "1iga1xdzygnr9rhv0kw01nr3vahl2d486p06slmri2vy8ngzym0q"; 6469 + rev = "c63394d4da842b6fd547d072a4f22dbd3a0e3168"; 6470 + sha256 = "1kpq5bjp8wr8r1kfkq4dx3ypgv9jn3y91bfi2sszbn4i882j4ka7"; 6422 6471 }; 6423 6472 meta.homepage = "https://github.com/ntpeters/vim-better-whitespace/"; 6424 6473 }; ··· 6533 6582 6534 6583 vim-clap = buildVimPluginFrom2Nix { 6535 6584 pname = "vim-clap"; 6536 - version = "2021-09-07"; 6585 + version = "2021-09-11"; 6537 6586 src = fetchFromGitHub { 6538 6587 owner = "liuchengxu"; 6539 6588 repo = "vim-clap"; 6540 - rev = "84cbe8dc7bfcc53422971ae89f1eda4d95611d50"; 6541 - sha256 = "08scpqjkqmjl3wh58haa9ii9rabilllgb60jrj8sc4hs9zr4n04n"; 6589 + rev = "33f194a70ec85dd493449f730030167c213b41e0"; 6590 + sha256 = "0bqvis6nkgfld8vs20k95vlpg28rigv9pjbqp58lqrjhk5h5lab0"; 6542 6591 }; 6543 6592 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 6544 6593 }; ··· 6929 6978 6930 6979 vim-dispatch = buildVimPluginFrom2Nix { 6931 6980 pname = "vim-dispatch"; 6932 - version = "2021-08-12"; 6981 + version = "2021-09-12"; 6933 6982 src = fetchFromGitHub { 6934 6983 owner = "tpope"; 6935 6984 repo = "vim-dispatch"; 6936 - rev = "ed9538655a6ab3e8f48be7c32657ec974242845f"; 6937 - sha256 = "0zskv8isxg3yfsqw5bzi0n6ywhha63rnah4k6skjycawcb9i8bvv"; 6985 + rev = "c88f1b1e4fd428d826fa38c272ed80b6518d37eb"; 6986 + sha256 = "13zxw6779drlhcms5pmdxp5k4nmvxjzjsw64jkqjmabdsjlm0hz7"; 6938 6987 }; 6939 6988 meta.homepage = "https://github.com/tpope/vim-dispatch/"; 6940 6989 }; ··· 7325 7374 7326 7375 vim-fugitive = buildVimPluginFrom2Nix { 7327 7376 pname = "vim-fugitive"; 7328 - version = "2021-09-06"; 7377 + version = "2021-09-10"; 7329 7378 src = fetchFromGitHub { 7330 7379 owner = "tpope"; 7331 7380 repo = "vim-fugitive"; 7332 - rev = "6f07d7e6cd23b7a76dc461fdfb1984717d233806"; 7333 - sha256 = "01kb2xhjd57irqzinvsiif60dkds6f80yjw7k2hl480szx62j57q"; 7381 + rev = "e2927fb4676b499931a3c27a2dc8a8a8bc52ab55"; 7382 + sha256 = "0bqnq5ayws8dlg4zmp4ra0y9343dncg2v588311kxb3vc5m42vp2"; 7334 7383 }; 7335 7384 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 7336 7385 }; ··· 7385 7434 7386 7435 vim-git = buildVimPluginFrom2Nix { 7387 7436 pname = "vim-git"; 7388 - version = "2021-08-28"; 7437 + version = "2021-09-11"; 7389 7438 src = fetchFromGitHub { 7390 7439 owner = "tpope"; 7391 7440 repo = "vim-git"; 7392 - rev = "3d68c6dcaa303f0144b7657e00b46ef98f0deb82"; 7393 - sha256 = "060djzwpx5imlw3lb3kifp3gl0drn32a2dvb5baddg0kacahdvky"; 7441 + rev = "8565831452c355cd4aa49d6877c094c377cd5ce8"; 7442 + sha256 = "0i8h4wp036j1ll36gzqypxxxnwp6084127753pqg2c1pi37hk4mp"; 7394 7443 }; 7395 7444 meta.homepage = "https://github.com/tpope/vim-git/"; 7396 7445 }; ··· 7457 7506 7458 7507 vim-go = buildVimPluginFrom2Nix { 7459 7508 pname = "vim-go"; 7460 - version = "2021-09-03"; 7509 + version = "2021-09-12"; 7461 7510 src = fetchFromGitHub { 7462 7511 owner = "fatih"; 7463 7512 repo = "vim-go"; 7464 - rev = "4a429a0fc85c2a95b24544373516fdee805c3a56"; 7465 - sha256 = "07m51777mgww3ryclfcph7nvxrywc6zx9nzx9y5pqgcl8q87h711"; 7513 + rev = "abe94c3fcf681fde772f2906fbbdfecf5afda7c8"; 7514 + sha256 = "1fdl2rdvdjvyai2pj1v6cr21a10pcdg5277616lbfbbl3p7iak63"; 7466 7515 }; 7467 7516 meta.homepage = "https://github.com/fatih/vim-go/"; 7468 7517 }; ··· 8288 8337 8289 8338 vim-matchup = buildVimPluginFrom2Nix { 8290 8339 pname = "vim-matchup"; 8291 - version = "2021-08-28"; 8340 + version = "2021-09-12"; 8292 8341 src = fetchFromGitHub { 8293 8342 owner = "andymass"; 8294 8343 repo = "vim-matchup"; 8295 - rev = "4bbb22d694e1ca1132a9bbee4f491b48041e1710"; 8296 - sha256 = "035bf331rr4xbxi8mlnlhnvrg3q97lnpgzkgw1gc7d7rsbf0gz6p"; 8344 + rev = "5a1978e46a0e721b5c5d113379c685ff7ec339e7"; 8345 + sha256 = "0r5hwfc41p0yv3ny7sgr8aqyl2y81kfjwy4mcqiha0rbw0x41fas"; 8297 8346 }; 8298 8347 meta.homepage = "https://github.com/andymass/vim-matchup/"; 8299 8348 }; ··· 8684 8733 8685 8734 vim-pandoc = buildVimPluginFrom2Nix { 8686 8735 pname = "vim-pandoc"; 8687 - version = "2021-07-30"; 8736 + version = "2021-09-07"; 8688 8737 src = fetchFromGitHub { 8689 8738 owner = "vim-pandoc"; 8690 8739 repo = "vim-pandoc"; 8691 - rev = "38476f9e61582d17d5e724fd3977913a9c0af5a4"; 8692 - sha256 = "1zadap09iqdbssmqf44543hhkga696bxfv3gjcxln6xjfwmvmrck"; 8740 + rev = "2f57074fc9f67128b30ce32949130a8dbda0b098"; 8741 + sha256 = "0b2kssdbzknc43jx4xjl0c4q4v01735d5wsr77zmb9vq3k48hd7j"; 8693 8742 }; 8694 8743 meta.homepage = "https://github.com/vim-pandoc/vim-pandoc/"; 8695 8744 }; ··· 8828 8877 8829 8878 vim-polyglot = buildVimPluginFrom2Nix { 8830 8879 pname = "vim-polyglot"; 8831 - version = "2021-07-28"; 8880 + version = "2021-09-10"; 8832 8881 src = fetchFromGitHub { 8833 8882 owner = "sheerun"; 8834 8883 repo = "vim-polyglot"; 8835 - rev = "ce31cd1d2f4e8eee9fd91325e4599f15cb9566fd"; 8836 - sha256 = "16wxmqq90n2153w1lkycq2drpcgdxmrsfiizz0m2vi17ph69avnr"; 8884 + rev = "4d4aa5fe553a47ef5c5c6d0a97bb487fdfda2d5b"; 8885 + sha256 = "0xavwlgmr2z86kkj1xg5c6ly2agaaa6l6mzsjnbmc98r720z6q88"; 8837 8886 }; 8838 8887 meta.homepage = "https://github.com/sheerun/vim-polyglot/"; 8839 8888 }; ··· 9128 9177 9129 9178 vim-ruby = buildVimPluginFrom2Nix { 9130 9179 pname = "vim-ruby"; 9131 - version = "2021-09-05"; 9180 + version = "2021-09-10"; 9132 9181 src = fetchFromGitHub { 9133 9182 owner = "vim-ruby"; 9134 9183 repo = "vim-ruby"; 9135 - rev = "10dfcbe875b392b6c98585bd0a07794f0cc78906"; 9136 - sha256 = "0gfzvxi890bmgp0c4wbfk5ppawm8cq187p73id2spj2zqhfgjhvn"; 9184 + rev = "a2b8e9151a5a753fc93ed86e3d1e030c65553874"; 9185 + sha256 = "0mmzwqlfc3kc4fqrwy69p97nmdlscjxalnn552qdvbb1nvxv7czi"; 9137 9186 }; 9138 9187 meta.homepage = "https://github.com/vim-ruby/vim-ruby/"; 9139 9188 }; ··· 9404 9453 9405 9454 vim-snippets = buildVimPluginFrom2Nix { 9406 9455 pname = "vim-snippets"; 9407 - version = "2021-09-06"; 9456 + version = "2021-09-11"; 9408 9457 src = fetchFromGitHub { 9409 9458 owner = "honza"; 9410 9459 repo = "vim-snippets"; 9411 - rev = "ef4f418e5326b2069ab767e4139b7bd3dfa5e0f0"; 9412 - sha256 = "1wxv22d79mv0jns0jcfkww4xyilwpvcmi82jd1b92l8b3xc6awyp"; 9460 + rev = "89ff074400256ce7a58bb88ff0c5cc27e6fbe222"; 9461 + sha256 = "0gzxvlq3mbzx4iiiikibzxpfllzkkzlx0p2fgj7j244z2mjv7h8y"; 9413 9462 }; 9414 9463 meta.homepage = "https://github.com/honza/vim-snippets/"; 9415 9464 }; ··· 9524 9573 9525 9574 vim-stylishask = buildVimPluginFrom2Nix { 9526 9575 pname = "vim-stylishask"; 9527 - version = "2020-04-05"; 9576 + version = "2021-09-10"; 9528 9577 src = fetchFromGitHub { 9529 9578 owner = "alx741"; 9530 9579 repo = "vim-stylishask"; 9531 - rev = "dcc12c724cec7f8aee7ad197752710eaa3bfd12c"; 9532 - sha256 = "09k1n6r9gy3jikss84y141dqqsgc1a1ia89jj0367an53pfl6dn2"; 9580 + rev = "4819e57980617eba24856ba6c0134596904ed901"; 9581 + sha256 = "03wz665s6lj42bhll4radpxyqhjylwnb20cgd2giyxd9ab7sy4cg"; 9533 9582 }; 9534 9583 meta.homepage = "https://github.com/alx741/vim-stylishask/"; 9535 9584 }; ··· 9801 9850 9802 9851 vim-toml = buildVimPluginFrom2Nix { 9803 9852 pname = "vim-toml"; 9804 - version = "2020-12-08"; 9853 + version = "2021-09-09"; 9805 9854 src = fetchFromGitHub { 9806 9855 owner = "cespare"; 9807 9856 repo = "vim-toml"; 9808 - rev = "3c5face8e8944a217af45bc5bb708ff7dfcf1a54"; 9809 - sha256 = "0g3hj9lcwd2vzcfkdrydhga2n82144llkvrxcjdn6zl84pjcvgd2"; 9857 + rev = "b524235e91a6ce07a53411719c67e5265b3d5edf"; 9858 + sha256 = "05s9bl15myi6cppapfjadkjaqldsb6bsw8ksbqm379lscd6l6nv8"; 9810 9859 }; 9811 9860 meta.homepage = "https://github.com/cespare/vim-toml/"; 9812 9861 }; ··· 9897 9946 9898 9947 vim-unimpaired = buildVimPluginFrom2Nix { 9899 9948 pname = "vim-unimpaired"; 9900 - version = "2021-08-26"; 9949 + version = "2021-09-11"; 9901 9950 src = fetchFromGitHub { 9902 9951 owner = "tpope"; 9903 9952 repo = "vim-unimpaired"; 9904 - rev = "c147741c643e2fef3458e8e44834c11ef85bdd9b"; 9905 - sha256 = "0lz2kdp8wmrnrcflsbfhmv42l81gvv00s3qfgf6926zxsr7r5kpl"; 9953 + rev = "58e4434f5ecadd4f28a521bcabc690e39186a98f"; 9954 + sha256 = "10ylvziwr61djc2jp20a8k2pl8qqn9rff5n4ncc8jcib58lq9r62"; 9906 9955 }; 9907 9956 meta.homepage = "https://github.com/tpope/vim-unimpaired/"; 9908 9957 }; ··· 9981 10030 9982 10031 vim-vsnip-integ = buildVimPluginFrom2Nix { 9983 10032 pname = "vim-vsnip-integ"; 9984 - version = "2021-09-05"; 10033 + version = "2021-09-09"; 9985 10034 src = fetchFromGitHub { 9986 10035 owner = "hrsh7th"; 9987 10036 repo = "vim-vsnip-integ"; 9988 - rev = "0a917e0a2c057185b71a4d8367aa69366ebe54e5"; 9989 - sha256 = "1fx8a798d7z2xl9jgwn9nvs1cskvi36c557v5yr4w8fc1afl6abm"; 10037 + rev = "1b7259510486e825e61c461362578aa15afe3507"; 10038 + sha256 = "0ig1dgyyqdzcrrgsbjaa4308ar04xlcgpygc0fbg27xj7ppiy2f5"; 9990 10039 }; 9991 10040 meta.homepage = "https://github.com/hrsh7th/vim-vsnip-integ/"; 9992 10041 }; ··· 10005 10054 10006 10055 vim-wakatime = buildVimPluginFrom2Nix { 10007 10056 pname = "vim-wakatime"; 10008 - version = "2021-08-23"; 10057 + version = "2021-09-09"; 10009 10058 src = fetchFromGitHub { 10010 10059 owner = "wakatime"; 10011 10060 repo = "vim-wakatime"; 10012 - rev = "1bef11e2f277984214a7bdca250c09199b57a80b"; 10013 - sha256 = "01f3mrbcpdg3dxhy0h2khjaj1fz63f4x8iwmbqbk9vp6r1qzwkkl"; 10061 + rev = "5ef2cc4c68af5d291ba85dc444ebb1b26158444c"; 10062 + sha256 = "1crzqn6g80kjhjsp9azh48xh9m5zcjr7vfazssh02sads02nppcw"; 10014 10063 }; 10015 10064 meta.homepage = "https://github.com/wakatime/vim-wakatime/"; 10016 10065 }; ··· 10053 10102 10054 10103 vim-wordmotion = buildVimPluginFrom2Nix { 10055 10104 pname = "vim-wordmotion"; 10056 - version = "2021-07-26"; 10105 + version = "2021-09-12"; 10057 10106 src = fetchFromGitHub { 10058 10107 owner = "chaoren"; 10059 10108 repo = "vim-wordmotion"; 10060 - rev = "0edeebdfa95c0a1fc5fbb83b8faf6b0b2cc3bf7e"; 10061 - sha256 = "0f9jfb9x1p43q3apyj68200dp8821qv8bdybax0c33hyxyzbz6n6"; 10109 + rev = "02e32fcb062553a8293992411677e12cacccb09d"; 10110 + sha256 = "1bbaxk5b0cvikmls4r0z3k0zxpmnjzwdv6grs0m6vfyiszcpvm1h"; 10062 10111 }; 10063 10112 meta.homepage = "https://github.com/chaoren/vim-wordmotion/"; 10064 10113 }; ··· 10293 10342 10294 10343 vimspector = buildVimPluginFrom2Nix { 10295 10344 pname = "vimspector"; 10296 - version = "2021-09-07"; 10345 + version = "2021-09-09"; 10297 10346 src = fetchFromGitHub { 10298 10347 owner = "puremourning"; 10299 10348 repo = "vimspector"; 10300 - rev = "51d78fce5f95fb10ba84b8ab66e97d44d75df010"; 10301 - sha256 = "119x44yvva87f02rra9dm6xg8zmisa9ij9f8426vqpx4307p1wfc"; 10349 + rev = "2bb8561eb622b6316d2fc7f3fa56d8199da6cc3f"; 10350 + sha256 = "0a1prybnmfr5iqmdbhrvlcw66fvl426mgv5in3wf4kfxqy2pg9dr"; 10302 10351 fetchSubmodules = true; 10303 10352 }; 10304 10353 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 10306 10355 10307 10356 vimtex = buildVimPluginFrom2Nix { 10308 10357 pname = "vimtex"; 10309 - version = "2021-09-07"; 10358 + version = "2021-09-11"; 10310 10359 src = fetchFromGitHub { 10311 10360 owner = "lervag"; 10312 10361 repo = "vimtex"; 10313 - rev = "5623fb4c44b2975dd89b0925ba3b952ffa33dfc6"; 10314 - sha256 = "0xd6ysq8f946wf4680gd12irdl9q3fqjpq6234d53k15b302lf71"; 10362 + rev = "c445c1684bd5cedc7adb2226f0e88292e1a988f0"; 10363 + sha256 = "0h9ks1v3qli5k1a85s5wg4lvv6pml7xgxynnmh1s6cv42b1hn6dy"; 10315 10364 }; 10316 10365 meta.homepage = "https://github.com/lervag/vimtex/"; 10317 10366 }; ··· 10438 10487 10439 10488 wilder-nvim = buildVimPluginFrom2Nix { 10440 10489 pname = "wilder.nvim"; 10441 - version = "2021-09-03"; 10490 + version = "2021-09-11"; 10442 10491 src = fetchFromGitHub { 10443 10492 owner = "gelguy"; 10444 10493 repo = "wilder.nvim"; 10445 - rev = "8fb563901cada58e247336d380c85f884274b66c"; 10446 - sha256 = "0x696lnhs8qfn3k1c5m235y7zf2lwgk9d7azldwdg1ziiyvih4y4"; 10494 + rev = "558bf9380df27d4be2e690f5da1958d02052987a"; 10495 + sha256 = "1cy30b56rjbhvmk44y10zgg8x1f9ghiz3jxm7cmwjisv3bv8n73j"; 10447 10496 }; 10448 10497 meta.homepage = "https://github.com/gelguy/wilder.nvim/"; 10449 10498 };
+4 -2
pkgs/misc/vim-plugins/overrides.nix
··· 480 480 }); 481 481 482 482 sqlite-lua = super.sqlite-lua.overrideAttrs (old: { 483 - postPatch = '' 483 + postPatch = let 484 + libsqlite = "${sqlite.out}/lib/libsqlite3${stdenv.hostPlatform.extensions.sharedLibrary}"; 485 + in '' 484 486 substituteInPlace lua/sqlite/defs.lua \ 485 - --replace "vim.g.sqlite_clib_path" "vim.g.sqlite_clib_path or '${sqlite.out}/lib/libsqlite3.so'" 487 + --replace "path = vim.g.sqlite_clib_path" "path = vim.g.sqlite_clib_path or ${lib.escapeShellArg libsqlite}" 486 488 ''; 487 489 }); 488 490
+4
pkgs/misc/vim-plugins/vim-plugin-names
··· 145 145 euclidianAce/BetterLua.vim 146 146 euclio/vim-markdown-composer 147 147 f-person/git-blame.nvim 148 + f3fora/cmp-spell 148 149 famiu/bufdelete.nvim 149 150 famiu/feline.nvim 150 151 farmergreg/vim-lastplace ··· 327 328 kassio/neoterm 328 329 kbenzie/vim-spirv 329 330 kchmck/vim-coffee-script 331 + kdheepak/cmp-latex-symbols@main 330 332 kdheepak/lazygit.nvim 331 333 KeitaNakamura/neodark.vim 332 334 keith/investigate.vim ··· 344 346 kristijanhusak/defx-git 345 347 kristijanhusak/defx-icons 346 348 kristijanhusak/deoplete-phpactor 349 + kristijanhusak/orgmode.nvim 347 350 kristijanhusak/vim-carbon-now-sh 348 351 kristijanhusak/vim-dadbod-completion 349 352 kristijanhusak/vim-dadbod-ui ··· 589 592 Raimondi/delimitMate 590 593 rakr/vim-one 591 594 ray-x/aurora 595 + ray-x/cmp-treesitter 592 596 ray-x/lsp_signature.nvim 593 597 rbgrouleff/bclose.vim 594 598 rbong/vim-flog
+2 -2
pkgs/os-specific/linux/kernel/linux-5.10.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.10.63"; 6 + version = "5.10.64"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0bnbkd4vbf43m37wab4zwvcv3wy3ixh4x1zrwlfhi845i21mx88r"; 16 + sha256 = "02p36mf41nsa4bamw18vhgbca094q2blbqqljdsb9qid9b94pf1y"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.13.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.13.15"; 6 + version = "5.13.16"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "06v2jgzq2l56bjbymcrnaybqvvr1q44c0k534v77b3l5bwwlq2rk"; 16 + sha256 = "1ljigvcg4q6ckr8kna3q5iyjsy7x5mrf1ycqfy0ibbhn9hbqjna9"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.14.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.14.2"; 6 + version = "5.14.3"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "05yw3i2c21dabdn5khyk60ds4h8krg5iyxk4zq1msv0igdfqf6gl"; 16 + sha256 = "1n5808v3vb2c27pv4f8r4avqzqp20dylclbc83cj2872d6z41hy6"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.4.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.4.144"; 6 + version = "5.4.145"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "11aqp12xwbg7ysac3f9iaxwkhvasdg9bw4r43jj8af5bf61bjhxw"; 16 + sha256 = "1yb8vk5sbnyswylkpqw5i4n9cmnmlrfmbrnmy3nif579q8p7ixsw"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-rt-5.4.nix
··· 6 6 , ... } @ args: 7 7 8 8 let 9 - version = "5.4.143-rt63"; # updated by ./update-rt.sh 9 + version = "5.4.143-rt64"; # updated by ./update-rt.sh 10 10 branch = lib.versions.majorMinor version; 11 11 kversion = builtins.elemAt (lib.splitString "-" version) 0; 12 12 in buildLinux (args // { ··· 21 21 name = "rt"; 22 22 patch = fetchurl { 23 23 url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz"; 24 - sha256 = "13d9sx6vw3hlh0cpccfsfqkjj6yfjmbh4wp4x6ry84i39lrfbwg3"; 24 + sha256 = "0prfrvk2ds20sclikizzgg5qf4mfcyaymp9r272d5nj35293622n"; 25 25 }; 26 26 }; in [ rt-patch ] ++ kernelPatches; 27 27
+3 -3
pkgs/os-specific/linux/kernel/linux-xanmod.nix
··· 1 1 { lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args: 2 2 3 3 let 4 - version = "5.13.13"; 4 + version = "5.14.3"; 5 5 release = "1"; 6 6 suffix = "xanmod${release}-cacule"; 7 7 in ··· 13 13 owner = "xanmod"; 14 14 repo = "linux"; 15 15 rev = modDirVersion; 16 - sha256 = "sha256-qRJuTkTmsKbCCGrzq62o+1RrvTGM74p4mqy9AQ8hvD0="; 16 + sha256 = "sha256-nl8DktW2TsV20ii/f41TsSotE/yBRBH3SYlWKLsfT50="; 17 17 }; 18 18 19 19 structuredExtraConfig = with lib.kernel; { ··· 53 53 }; 54 54 55 55 extraMeta = { 56 - branch = "5.13-cacule"; 56 + branch = "5.14-cacule"; 57 57 maintainers = with lib.maintainers; [ fortuneteller2k lovesegfault ]; 58 58 description = "Built with custom settings and new features built to provide a stable, responsive and smooth desktop experience"; 59 59 broken = stdenv.isAarch64;
+3 -3
pkgs/tools/backup/borgmatic/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "borgmatic"; 5 - version = "1.5.13"; 5 + version = "1.5.18"; 6 6 7 7 src = python3Packages.fetchPypi { 8 8 inherit pname version; 9 - sha256 = "12390ffdg30ncc5k92pvagwbvnsh42xl35a3nagbskznyfd23mw3"; 9 + sha256 = "sha256-dX1U1zza8zMhDiTLE+DgtN6RLRciLks4NDOukpKH/po="; 10 10 }; 11 11 12 12 checkInputs = with python3Packages; [ flexmock pytestCheckHook pytest-cov ]; ··· 20 20 propagatedBuildInputs = with python3Packages; [ 21 21 borgbackup 22 22 colorama 23 - pykwalify 23 + jsonschema 24 24 ruamel_yaml 25 25 requests 26 26 setuptools
+6
pkgs/tools/misc/mcfly/default.nix
··· 11 11 sha256 = "0i3qjgq1b8h3bzc7rxa60kq1yc2im9m6dgzrvial086a1zk8s81r"; 12 12 }; 13 13 14 + postPatch = '' 15 + substituteInPlace mcfly.bash --replace '$(which mcfly)' '${placeholder "out"}/bin/mcfly' 16 + substituteInPlace mcfly.zsh --replace '$(which mcfly)' '${placeholder "out"}/bin/mcfly' 17 + substituteInPlace mcfly.fish --replace '(which mcfly)' '${placeholder "out"}/bin/mcfly' 18 + ''; 19 + 14 20 cargoSha256 = "084v4fsdi25ahz068ssq29z7d5d3k3jh3s8b07irwybdsy18c629"; 15 21 16 22 meta = with lib; {
-17
pkgs/tools/networking/dd-agent/README.md
··· 1 - To update datadog-agent v6 (v5 is deprecated and should be removed): 2 - 3 - 1. Bump `version`, `rev`, `sha256` and `payloadVersion` in `datadog-agent.nix` 4 - 2. `git clone https://github.com/DataDog/datadog-agent.git && cd datadog-agent` 5 - 3. `git checkout <tag>` 6 - 4. `nix-env -i -f https://github.com/nixcloud/dep2nix/archive/master.tar.gz` 7 - 5. `dep2nix` 8 - 6. `cp deps.nix $NIXPKGS/pkgs/tools/networking/dd-agent/datadog-agent-deps.nix` 9 - 10 - To update datadog-process-agent: 11 - 12 - 1. Bump `version`, `rev` and `sha256` in `datadog-process-agent.nix` 13 - 2. `git clone https://github.com/DataDog/datadog-process-agent.git && cd datadog-process-agent` 14 - 3. `git checkout <tag>` 15 - 4. `nix-env -i -f https://github.com/nixcloud/dep2nix/archive/master.tar.gz` 16 - 5. `dep2nix` 17 - 6. `cp deps.nix $NIXPKGS/pkgs/tools/networking/dd-agent/datadog-process-agent-deps.nix`
-1353
pkgs/tools/networking/dd-agent/datadog-agent-deps.nix
··· 1 - # file generated from Gopkg.lock using dep2nix (https://github.com/nixcloud/dep2nix) 2 - [ 3 - { 4 - goPackagePath = "bitbucket.org/ww/goautoneg"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/adjust/goautoneg"; 8 - rev = "d788f35a0315672bc90f50a6145d1252a230ee0d"; 9 - sha256 = "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"; 10 - }; 11 - } 12 - { 13 - goPackagePath = "github.com/DataDog/agent-payload"; 14 - fetch = { 15 - type = "git"; 16 - url = "https://github.com/DataDog/agent-payload"; 17 - rev = "c76e9d5be7457cafb7b3e056c6e8ae127b1f0431"; 18 - sha256 = "0wva55yz5gs5gw23icz1z23hwhjw5vmijx4aa3fp3bq6pi63s873"; 19 - }; 20 - } 21 - { 22 - goPackagePath = "github.com/DataDog/datadog-go"; 23 - fetch = { 24 - type = "git"; 25 - url = "https://github.com/DataDog/datadog-go"; 26 - rev = "e67964b4021ad3a334e748e8811eb3cd6becbc6e"; 27 - sha256 = "1b2dzyk9c9icdwcyfiwh3djzh8gb5z4hmhp796ns7hh72cdnnys1"; 28 - }; 29 - } 30 - { 31 - goPackagePath = "github.com/DataDog/gohai"; 32 - fetch = { 33 - type = "git"; 34 - url = "https://github.com/DataDog/gohai"; 35 - rev = "43b075bb9705588cd89c71363d6d72937e3020c7"; 36 - sha256 = "195z5g8gdxcx4cq51p2xqha3j8m7mk5d5lr6i3hbaxp948hgc8dh"; 37 - }; 38 - } 39 - { 40 - goPackagePath = "github.com/DataDog/mmh3"; 41 - fetch = { 42 - type = "git"; 43 - url = "https://github.com/DataDog/mmh3"; 44 - rev = "2cfb68475274527a10701355c739f31dd404718c"; 45 - sha256 = "09jgzxi08pkxllxk3f5qwipz96jxrw5v035fj2bkid1d4akn8y0b"; 46 - }; 47 - } 48 - { 49 - goPackagePath = "github.com/DataDog/viper"; 50 - fetch = { 51 - type = "git"; 52 - url = "https://github.com/DataDog/viper"; 53 - rev = "v1.5.0"; 54 - sha256 = "1sv0xvmfaif7zpfwk0j6qf11hxnfdsb2zfj63b9zx7l0zzhjzh06"; 55 - }; 56 - } 57 - { 58 - goPackagePath = "github.com/DataDog/zstd"; 59 - fetch = { 60 - type = "git"; 61 - url = "https://github.com/DataDog/zstd"; 62 - rev = "aebefd9fcb99f22cd691ef778a12ed68f0e6a1ab"; 63 - sha256 = "06wphl43ji23c0cmmm6fd3wszbwq36mdp1jarak2a6hmxl6yf0b8"; 64 - }; 65 - } 66 - { 67 - goPackagePath = "github.com/Microsoft/go-winio"; 68 - fetch = { 69 - type = "git"; 70 - url = "https://github.com/Microsoft/go-winio"; 71 - rev = "67921128fb397dd80339870d2193d6b1e6856fd4"; 72 - sha256 = "1m3ajjwpdmbzhn5iclhzgyknfncw06fnd5n91yxlf75qsq235rz3"; 73 - }; 74 - } 75 - { 76 - goPackagePath = "github.com/Microsoft/hcsshim"; 77 - fetch = { 78 - type = "git"; 79 - url = "https://github.com/Microsoft/hcsshim"; 80 - rev = "0acf63599bff447edf6bbfb8bbb38cb5fb33aa1e"; 81 - sha256 = "009jx133302pj0jf1bxsj4r5zy7j0lxmr7l53czi7930516b0rh3"; 82 - }; 83 - } 84 - { 85 - goPackagePath = "github.com/NYTimes/gziphandler"; 86 - fetch = { 87 - type = "git"; 88 - url = "https://github.com/NYTimes/gziphandler"; 89 - rev = "2600fb119af974220d3916a5916d6e31176aac1b"; 90 - sha256 = "0bh6qqz2iyrnxhhj02s8mqayqwqxy182ldxh97q1vg7phlbm52xx"; 91 - }; 92 - } 93 - { 94 - goPackagePath = "github.com/PuerkitoBio/purell"; 95 - fetch = { 96 - type = "git"; 97 - url = "https://github.com/PuerkitoBio/purell"; 98 - rev = "0bcb03f4b4d0a9428594752bd2a3b9aa0a9d4bd4"; 99 - sha256 = "0vsxyn1fbm7g873b8kf3hcsgqgncb5nmfq3zfsc35a9yhzarka91"; 100 - }; 101 - } 102 - { 103 - goPackagePath = "github.com/PuerkitoBio/urlesc"; 104 - fetch = { 105 - type = "git"; 106 - url = "https://github.com/PuerkitoBio/urlesc"; 107 - rev = "de5bf2ad457846296e2031421a34e2568e304e35"; 108 - sha256 = "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw"; 109 - }; 110 - } 111 - { 112 - goPackagePath = "github.com/StackExchange/wmi"; 113 - fetch = { 114 - type = "git"; 115 - url = "https://github.com/StackExchange/wmi"; 116 - rev = "5d049714c4a64225c3c79a7cf7d02f7fb5b96338"; 117 - sha256 = "1slw6v1fl8i0hz4db9lph55pbhnrxhqyndq6vm27dgvpj22k29fk"; 118 - }; 119 - } 120 - { 121 - goPackagePath = "github.com/aws/aws-sdk-go"; 122 - fetch = { 123 - type = "git"; 124 - url = "https://github.com/aws/aws-sdk-go"; 125 - rev = "bff41fb23b7550368282029f6478819d6a99ae0f"; 126 - sha256 = "1hcd8f3m2cq02mj9i8c1ynbh3j0iyw14l1wszm0qgs18nsj1rzgn"; 127 - }; 128 - } 129 - { 130 - goPackagePath = "github.com/beevik/ntp"; 131 - fetch = { 132 - type = "git"; 133 - url = "https://github.com/beevik/ntp"; 134 - rev = "cb3dae3a7588ae35829eb5724df611cd75152fba"; 135 - sha256 = "0nc6f7d0xw23y18z9qxrmm8kvnywihassyk706mn9v4makmhalnz"; 136 - }; 137 - } 138 - { 139 - goPackagePath = "github.com/beorn7/perks"; 140 - fetch = { 141 - type = "git"; 142 - url = "https://github.com/beorn7/perks"; 143 - rev = "3a771d992973f24aa725d07868b467d1ddfceafb"; 144 - sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3"; 145 - }; 146 - } 147 - { 148 - goPackagePath = "github.com/cenkalti/backoff"; 149 - fetch = { 150 - type = "git"; 151 - url = "https://github.com/cenkalti/backoff"; 152 - rev = "2ea60e5f094469f9e65adb9cd103795b73ae743e"; 153 - sha256 = "0k4899ifpir6kmfxli8a2xfj5zdh0xb2jd0fq2r38wzd4pk25ipr"; 154 - }; 155 - } 156 - { 157 - goPackagePath = "github.com/cihub/seelog"; 158 - fetch = { 159 - type = "git"; 160 - url = "https://github.com/cihub/seelog"; 161 - rev = "d2c6e5aa9fbfdd1c624e140287063c7730654115"; 162 - sha256 = "0ab9kyrh51x1x71z37pwjsla0qv11a1qv697xafyc4r5nq5hds6p"; 163 - }; 164 - } 165 - { 166 - goPackagePath = "github.com/clbanning/mxj"; 167 - fetch = { 168 - type = "git"; 169 - url = "https://github.com/clbanning/mxj"; 170 - rev = "1f00e0bf9bacd7ea9c93d27594d1d1f5a41bac36"; 171 - sha256 = "1cb7kib79xrzr8n91p6kskmn30ayqrhbqql2ppyf879967wbm8qy"; 172 - }; 173 - } 174 - { 175 - goPackagePath = "github.com/containerd/cgroups"; 176 - fetch = { 177 - type = "git"; 178 - url = "https://github.com/containerd/cgroups"; 179 - rev = "3024bc7cc0c88af4b32d38a14444f38e65ab169f"; 180 - sha256 = "09jmzwl0zjzwhyd77pp8x3xwihcjxlxa9wamkx22rvd1pqlgszw7"; 181 - }; 182 - } 183 - { 184 - goPackagePath = "github.com/containerd/containerd"; 185 - fetch = { 186 - type = "git"; 187 - url = "https://github.com/containerd/containerd"; 188 - rev = "9754871865f7fe2f4e74d43e2fc7ccd237edcbce"; 189 - sha256 = "065snv0s3v3z0ghadlii4w78qnhchcbx2kfdrvm8fk8gb4pkx1ya"; 190 - }; 191 - } 192 - { 193 - goPackagePath = "github.com/containerd/continuity"; 194 - fetch = { 195 - type = "git"; 196 - url = "https://github.com/containerd/continuity"; 197 - rev = "c7c5070e6f6e090ab93b0a61eb921f2196fc3383"; 198 - sha256 = "0xyf9w4xn501jspl4r6ml84am90bfgljnjlbd4i1pxkm372qzvzf"; 199 - }; 200 - } 201 - { 202 - goPackagePath = "github.com/containerd/cri"; 203 - fetch = { 204 - type = "git"; 205 - url = "https://github.com/containerd/cri"; 206 - rev = "f3687c59470b76ee57c90d4b3dd92888dec58c2b"; 207 - sha256 = "00lasx5yylmgsj1f9znl3xyxm2bngj4xfj69vcwb4qzdy0vclc7w"; 208 - }; 209 - } 210 - { 211 - goPackagePath = "github.com/containerd/fifo"; 212 - fetch = { 213 - type = "git"; 214 - url = "https://github.com/containerd/fifo"; 215 - rev = "3d5202aec260678c48179c56f40e6f38a095738c"; 216 - sha256 = "11jp12vgfj0xg9m2w5cfay72fwrxb6w8za7rkcqw8yy8hypiqqxq"; 217 - }; 218 - } 219 - { 220 - goPackagePath = "github.com/containerd/typeurl"; 221 - fetch = { 222 - type = "git"; 223 - url = "https://github.com/containerd/typeurl"; 224 - rev = "a93fcdb778cd272c6e9b3028b2f42d813e785d40"; 225 - sha256 = "0aqnf5rzc5pldln0czhxlr0fqaf5553ab7wzsq85p90lg1ryqnd6"; 226 - }; 227 - } 228 - { 229 - goPackagePath = "github.com/coreos/etcd"; 230 - fetch = { 231 - type = "git"; 232 - url = "https://github.com/coreos/etcd"; 233 - rev = "c9504f61fc7f29b0ad30bf8bab02d9e1b600e962"; 234 - sha256 = "1ap8zhfz6pcn2ipn27s84ihpyrvpjrb48mpy4n5pr6khrni83p1a"; 235 - }; 236 - } 237 - { 238 - goPackagePath = "github.com/coreos/go-semver"; 239 - fetch = { 240 - type = "git"; 241 - url = "https://github.com/coreos/go-semver"; 242 - rev = "8ab6407b697782a06568d4b7f1db25550ec2e4c6"; 243 - sha256 = "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0"; 244 - }; 245 - } 246 - { 247 - goPackagePath = "github.com/coreos/go-systemd"; 248 - fetch = { 249 - type = "git"; 250 - url = "https://github.com/coreos/go-systemd"; 251 - rev = "40e2722dffead74698ca12a750f64ef313ddce05"; 252 - sha256 = "0kq7aa0pbn8gv9ny2a1gfx3ybsqyryfwz9gv7fck6zfc8xxbl1fa"; 253 - }; 254 - } 255 - { 256 - goPackagePath = "github.com/coreos/pkg"; 257 - fetch = { 258 - type = "git"; 259 - url = "https://github.com/coreos/pkg"; 260 - rev = "97fdf19511ea361ae1c100dd393cc47f8dcfa1e1"; 261 - sha256 = "1srn87wih25l09f75483hnxsr8fc6rq3bk7w1x8125ym39p6mg21"; 262 - }; 263 - } 264 - { 265 - goPackagePath = "github.com/davecgh/go-spew"; 266 - fetch = { 267 - type = "git"; 268 - url = "https://github.com/davecgh/go-spew"; 269 - rev = "346938d642f2ec3594ed81d874461961cd0faa76"; 270 - sha256 = "0d4jfmak5p6lb7n2r6yvf5p1zcw0l8j74kn55ghvr7zr7b7axm6c"; 271 - }; 272 - } 273 - { 274 - goPackagePath = "github.com/docker/distribution"; 275 - fetch = { 276 - type = "git"; 277 - url = "https://github.com/docker/distribution"; 278 - rev = "83389a148052d74ac602f5f1d62f86ff2f3c4aa5"; 279 - sha256 = "0ypps7340k1g1njcdbn83c9233hrki0mxyj66av1i55ji378ayyn"; 280 - }; 281 - } 282 - { 283 - goPackagePath = "github.com/docker/docker"; 284 - fetch = { 285 - type = "git"; 286 - url = "https://github.com/docker/docker"; 287 - rev = "092cba3727bb9b4a2f0e922cd6c0f93ea270e363"; 288 - sha256 = "0l9kjibnpwcgk844sibxk9ppyqniw9r0np1mzp95f8f461jb0iar"; 289 - }; 290 - } 291 - { 292 - goPackagePath = "github.com/docker/go-connections"; 293 - fetch = { 294 - type = "git"; 295 - url = "https://github.com/docker/go-connections"; 296 - rev = "3ede32e2033de7505e6500d6c868c2b9ed9f169d"; 297 - sha256 = "0v1pkr8apwmhyzbjfriwdrs1ihlk6pw7izm57r24mf9jdmg3fyb0"; 298 - }; 299 - } 300 - { 301 - goPackagePath = "github.com/docker/go-events"; 302 - fetch = { 303 - type = "git"; 304 - url = "https://github.com/docker/go-events"; 305 - rev = "9461782956ad83b30282bf90e31fa6a70c255ba9"; 306 - sha256 = "0vn0kd0w253jwdk86gv1h6s8p6bzxiyif74xdzlb39zr6fdrr145"; 307 - }; 308 - } 309 - { 310 - goPackagePath = "github.com/docker/go-units"; 311 - fetch = { 312 - type = "git"; 313 - url = "https://github.com/docker/go-units"; 314 - rev = "47565b4f722fb6ceae66b95f853feed578a4a51c"; 315 - sha256 = "0npxsb3pp89slwf4a73fxm20hykad8xggij6i6hcd5jy19bjrd93"; 316 - }; 317 - } 318 - { 319 - goPackagePath = "github.com/docker/spdystream"; 320 - fetch = { 321 - type = "git"; 322 - url = "https://github.com/docker/spdystream"; 323 - rev = "bc6354cbbc295e925e4c611ffe90c1f287ee54db"; 324 - sha256 = "08746a15snvmax6cnzn2qy7cvsspxbsx97vdbjpdadir3pypjxya"; 325 - }; 326 - } 327 - { 328 - goPackagePath = "github.com/dsnet/compress"; 329 - fetch = { 330 - type = "git"; 331 - url = "https://github.com/dsnet/compress"; 332 - rev = "cc9eb1d7ad760af14e8f918698f745e80377af4f"; 333 - sha256 = "159liclywmyb6zx88ga5gn42hfl4cpk1660zss87fkx31hdq9fgx"; 334 - }; 335 - } 336 - { 337 - goPackagePath = "github.com/dustin/go-humanize"; 338 - fetch = { 339 - type = "git"; 340 - url = "https://github.com/dustin/go-humanize"; 341 - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e"; 342 - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3"; 343 - }; 344 - } 345 - { 346 - goPackagePath = "github.com/elazarl/go-bindata-assetfs"; 347 - fetch = { 348 - type = "git"; 349 - url = "https://github.com/elazarl/go-bindata-assetfs"; 350 - rev = "30f82fa23fd844bd5bb1e5f216db87fd77b5eb43"; 351 - sha256 = "1swfb37g6sga3awvcmxf49ngbpvjv7ih5an9f8ixjqcfcwnb7nzp"; 352 - }; 353 - } 354 - { 355 - goPackagePath = "github.com/emicklei/go-restful"; 356 - fetch = { 357 - type = "git"; 358 - url = "https://github.com/emicklei/go-restful"; 359 - rev = "3658237ded108b4134956c1b3050349d93e7b895"; 360 - sha256 = "07sm3b5dlrqld4r8r1w79s37y41fk4zmw4afhi2ragjy1iarqck3"; 361 - }; 362 - } 363 - { 364 - goPackagePath = "github.com/emicklei/go-restful-swagger12"; 365 - fetch = { 366 - type = "git"; 367 - url = "https://github.com/emicklei/go-restful-swagger12"; 368 - rev = "dcef7f55730566d41eae5db10e7d6981829720f6"; 369 - sha256 = "0zz1f6n1qfbyrp592mgyrkyfhki3r0ksic6ja9lxisg8br1ibrvq"; 370 - }; 371 - } 372 - { 373 - goPackagePath = "github.com/evanphx/json-patch"; 374 - fetch = { 375 - type = "git"; 376 - url = "https://github.com/evanphx/json-patch"; 377 - rev = "afac545df32f2287a079e2dfb7ba2745a643747e"; 378 - sha256 = "1d90prf8wfvndqjn6nr0k405ykia5vb70sjw4ywd49s9p3wcdyn8"; 379 - }; 380 - } 381 - { 382 - goPackagePath = "github.com/fatih/color"; 383 - fetch = { 384 - type = "git"; 385 - url = "https://github.com/fatih/color"; 386 - rev = "5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4"; 387 - sha256 = "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv"; 388 - }; 389 - } 390 - { 391 - goPackagePath = "github.com/fsnotify/fsnotify"; 392 - fetch = { 393 - type = "git"; 394 - url = "https://github.com/fsnotify/fsnotify"; 395 - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9"; 396 - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g"; 397 - }; 398 - } 399 - { 400 - goPackagePath = "github.com/ghodss/yaml"; 401 - fetch = { 402 - type = "git"; 403 - url = "https://github.com/ghodss/yaml"; 404 - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7"; 405 - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g"; 406 - }; 407 - } 408 - { 409 - goPackagePath = "github.com/go-ini/ini"; 410 - fetch = { 411 - type = "git"; 412 - url = "https://github.com/go-ini/ini"; 413 - rev = "06f5f3d67269ccec1fe5fe4134ba6e982984f7f5"; 414 - sha256 = "0fx123601aiqqn0yr9vj6qp1bh8gp240w4qdm76irs73q8dxlk7a"; 415 - }; 416 - } 417 - { 418 - goPackagePath = "github.com/go-ole/go-ole"; 419 - fetch = { 420 - type = "git"; 421 - url = "https://github.com/go-ole/go-ole"; 422 - rev = "a41e3c4b706f6ae8dfbff342b06e40fa4d2d0506"; 423 - sha256 = "114h8x7dh4jp7w7k678fm98lr9icavsf74v6jfipyq7q35bsfr1p"; 424 - }; 425 - } 426 - { 427 - goPackagePath = "github.com/go-openapi/jsonpointer"; 428 - fetch = { 429 - type = "git"; 430 - url = "https://github.com/go-openapi/jsonpointer"; 431 - rev = "3a0015ad55fa9873f41605d3e8f28cd279c32ab2"; 432 - sha256 = "02an755ashhckqwxyq2avgn8mm4qq3hxda2jsj1a3bix2gkb45v7"; 433 - }; 434 - } 435 - { 436 - goPackagePath = "github.com/go-openapi/jsonreference"; 437 - fetch = { 438 - type = "git"; 439 - url = "https://github.com/go-openapi/jsonreference"; 440 - rev = "3fb327e6747da3043567ee86abd02bb6376b6be2"; 441 - sha256 = "0zwsrmqqcihm0lj2pc18cpm7wnn1dzwr4kvrlyrxf0lnn7dsdsbm"; 442 - }; 443 - } 444 - { 445 - goPackagePath = "github.com/go-openapi/spec"; 446 - fetch = { 447 - type = "git"; 448 - url = "https://github.com/go-openapi/spec"; 449 - rev = "bcff419492eeeb01f76e77d2ebc714dc97b607f5"; 450 - sha256 = "00z8sv766kjdrdvpyzm9c5x3d45gssbwsm77qihmkflric6a3d3l"; 451 - }; 452 - } 453 - { 454 - goPackagePath = "github.com/go-openapi/swag"; 455 - fetch = { 456 - type = "git"; 457 - url = "https://github.com/go-openapi/swag"; 458 - rev = "811b1089cde9dad18d4d0c2d09fbdbf28dbd27a5"; 459 - sha256 = "0hkbrq4jq9s4nrz7xpx03z1zljss1zdylm3zb76hhjpp0s7hz418"; 460 - }; 461 - } 462 - { 463 - goPackagePath = "github.com/godbus/dbus"; 464 - fetch = { 465 - type = "git"; 466 - url = "https://github.com/godbus/dbus"; 467 - rev = "a389bdde4dd695d414e47b755e95e72b7826432c"; 468 - sha256 = "1ckvg15zdsgmbn4mi36cazkb407ixc9mmyf7vwj8b8wi3d00rgn9"; 469 - }; 470 - } 471 - { 472 - goPackagePath = "github.com/gogo/googleapis"; 473 - fetch = { 474 - type = "git"; 475 - url = "https://github.com/gogo/googleapis"; 476 - rev = "08a7655d27152912db7aaf4f983275eaf8d128ef"; 477 - sha256 = "0mzjclx31hkdgad0xjdihz23qphrsljkvzx5gnwn96m7agx6vkvr"; 478 - }; 479 - } 480 - { 481 - goPackagePath = "github.com/gogo/protobuf"; 482 - fetch = { 483 - type = "git"; 484 - url = "https://github.com/gogo/protobuf"; 485 - rev = "1adfc126b41513cc696b209667c8656ea7aac67c"; 486 - sha256 = "1j7azzlnihcvnd1apw5zr0bz30h7n0gyimqqkgc76vzb1n5dpi7m"; 487 - }; 488 - } 489 - { 490 - goPackagePath = "github.com/golang/glog"; 491 - fetch = { 492 - type = "git"; 493 - url = "https://github.com/golang/glog"; 494 - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998"; 495 - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30"; 496 - }; 497 - } 498 - { 499 - goPackagePath = "github.com/golang/groupcache"; 500 - fetch = { 501 - type = "git"; 502 - url = "https://github.com/golang/groupcache"; 503 - rev = "24b0969c4cb722950103eed87108c8d291a8df00"; 504 - sha256 = "0rj588dxg4ncanj8vcsixi00161xq54nz7siv47d5ijmzgxs82zf"; 505 - }; 506 - } 507 - { 508 - goPackagePath = "github.com/golang/protobuf"; 509 - fetch = { 510 - type = "git"; 511 - url = "https://github.com/golang/protobuf"; 512 - rev = "b4deda0973fb4c70b50d226b1af49f3da59f5265"; 513 - sha256 = "0ya4ha7m20bw048m1159ppqzlvda4x0vdprlbk5sdgmy74h3xcdq"; 514 - }; 515 - } 516 - { 517 - goPackagePath = "github.com/golang/snappy"; 518 - fetch = { 519 - type = "git"; 520 - url = "https://github.com/golang/snappy"; 521 - rev = "2e65f85255dbc3072edf28d6b5b8efc472979f5a"; 522 - sha256 = "05w6mpc4qcy0pv8a2bzng8nf4s5rf5phfang4jwy9rgf808q0nxf"; 523 - }; 524 - } 525 - { 526 - goPackagePath = "github.com/google/btree"; 527 - fetch = { 528 - type = "git"; 529 - url = "https://github.com/google/btree"; 530 - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306"; 531 - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6"; 532 - }; 533 - } 534 - { 535 - goPackagePath = "github.com/google/gofuzz"; 536 - fetch = { 537 - type = "git"; 538 - url = "https://github.com/google/gofuzz"; 539 - rev = "24818f796faf91cd76ec7bddd72458fbced7a6c1"; 540 - sha256 = "0cq90m2lgalrdfrwwyycrrmn785rgnxa3l3vp9yxkvnv88bymmlm"; 541 - }; 542 - } 543 - { 544 - goPackagePath = "github.com/googleapis/gnostic"; 545 - fetch = { 546 - type = "git"; 547 - url = "https://github.com/googleapis/gnostic"; 548 - rev = "7c663266750e7d82587642f65e60bc4083f1f84e"; 549 - sha256 = "0yh3ckd7m0r9h50wmxxvba837d0wb1k5yd439zq4p1kpp4390z12"; 550 - }; 551 - } 552 - { 553 - goPackagePath = "github.com/gorilla/context"; 554 - fetch = { 555 - type = "git"; 556 - url = "https://github.com/gorilla/context"; 557 - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42"; 558 - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4"; 559 - }; 560 - } 561 - { 562 - goPackagePath = "github.com/gorilla/mux"; 563 - fetch = { 564 - type = "git"; 565 - url = "https://github.com/gorilla/mux"; 566 - rev = "e3702bed27f0d39777b0b37b664b6280e8ef8fbf"; 567 - sha256 = "0pvzm23hklxysspnz52mih6h1q74vfrdhjfm1l3sa9r8hhqmmld2"; 568 - }; 569 - } 570 - { 571 - goPackagePath = "github.com/gregjones/httpcache"; 572 - fetch = { 573 - type = "git"; 574 - url = "https://github.com/gregjones/httpcache"; 575 - rev = "9cad4c3443a7200dd6400aef47183728de563a38"; 576 - sha256 = "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s"; 577 - }; 578 - } 579 - { 580 - goPackagePath = "github.com/hashicorp/consul"; 581 - fetch = { 582 - type = "git"; 583 - url = "https://github.com/hashicorp/consul"; 584 - rev = "fb848fc48818f58690db09d14640513aa6bf3c02"; 585 - sha256 = "0ra38xrh6ghcnix8w6gjs33yr2ra1n5jvf8lww4csr4dgw5bh5b1"; 586 - }; 587 - } 588 - { 589 - goPackagePath = "github.com/hashicorp/go-cleanhttp"; 590 - fetch = { 591 - type = "git"; 592 - url = "https://github.com/hashicorp/go-cleanhttp"; 593 - rev = "d5fe4b57a186c716b0e00b8c301cbd9b4182694d"; 594 - sha256 = "1m20y90syky4xr81sm3980jpil81nnpzmi6kv0vjr6p584gl1hn8"; 595 - }; 596 - } 597 - { 598 - goPackagePath = "github.com/hashicorp/go-rootcerts"; 599 - fetch = { 600 - type = "git"; 601 - url = "https://github.com/hashicorp/go-rootcerts"; 602 - rev = "6bb64b370b90e7ef1fa532be9e591a81c3493e00"; 603 - sha256 = "1a81fcm1i0ji2iva0dcimiichgwpbcb7lx0vyaks87zj5wf04qy9"; 604 - }; 605 - } 606 - { 607 - goPackagePath = "github.com/hashicorp/golang-lru"; 608 - fetch = { 609 - type = "git"; 610 - url = "https://github.com/hashicorp/golang-lru"; 611 - rev = "0fb14efe8c47ae851c0034ed7a448854d3d34cf3"; 612 - sha256 = "0vg4yn3088ym4sj1d34kr13lp4v5gya7r2nxshp2bz70n46fsqn2"; 613 - }; 614 - } 615 - { 616 - goPackagePath = "github.com/hashicorp/hcl"; 617 - fetch = { 618 - type = "git"; 619 - url = "https://github.com/hashicorp/hcl"; 620 - rev = "ef8a98b0bbce4a65b5aa4c368430a80ddc533168"; 621 - sha256 = "1qalfsc31fra7hcw2lc3s20aj7al62fq3j5fn5kga3mg99b82nyr"; 622 - }; 623 - } 624 - { 625 - goPackagePath = "github.com/hashicorp/serf"; 626 - fetch = { 627 - type = "git"; 628 - url = "https://github.com/hashicorp/serf"; 629 - rev = "d6574a5bb1226678d7010325fb6c985db20ee458"; 630 - sha256 = "1arakjvhyasrk52vhxas2ghlrby3i3wj59r7sjrkbpln2cdbqnlx"; 631 - }; 632 - } 633 - { 634 - goPackagePath = "github.com/hectane/go-acl"; 635 - fetch = { 636 - type = "git"; 637 - url = "https://github.com/hectane/go-acl"; 638 - rev = "7f56832555fc229dad908c67d65ed3ce6156b70c"; 639 - sha256 = "17crpqmn51fqcz0j1vi4grwwiaqpvc3zhl102hn5sy7s2lmdf630"; 640 - }; 641 - } 642 - { 643 - goPackagePath = "github.com/imdario/mergo"; 644 - fetch = { 645 - type = "git"; 646 - url = "https://github.com/imdario/mergo"; 647 - rev = "9316a62528ac99aaecb4e47eadd6dc8aa6533d58"; 648 - sha256 = "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb"; 649 - }; 650 - } 651 - { 652 - goPackagePath = "github.com/inconshreveable/mousetrap"; 653 - fetch = { 654 - type = "git"; 655 - url = "https://github.com/inconshreveable/mousetrap"; 656 - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75"; 657 - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152"; 658 - }; 659 - } 660 - { 661 - goPackagePath = "github.com/jmespath/go-jmespath"; 662 - fetch = { 663 - type = "git"; 664 - url = "https://github.com/jmespath/go-jmespath"; 665 - rev = "0b12d6b5"; 666 - sha256 = "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld"; 667 - }; 668 - } 669 - { 670 - goPackagePath = "github.com/json-iterator/go"; 671 - fetch = { 672 - type = "git"; 673 - url = "https://github.com/json-iterator/go"; 674 - rev = "1624edc4454b8682399def8740d46db5e4362ba4"; 675 - sha256 = "11wn4hpmrs8bmpvd93wqk49jfbbgylakhi35f9k5qd7jd479ci4s"; 676 - }; 677 - } 678 - { 679 - goPackagePath = "github.com/kardianos/osext"; 680 - fetch = { 681 - type = "git"; 682 - url = "https://github.com/kardianos/osext"; 683 - rev = "ae77be60afb1dcacde03767a8c37337fad28ac14"; 684 - sha256 = "056dkgxrqjj5r18bnc3knlpgdz5p3yvp12y4y978hnsfhwaqvbjz"; 685 - }; 686 - } 687 - { 688 - goPackagePath = "github.com/kubernetes-incubator/custom-metrics-apiserver"; 689 - fetch = { 690 - type = "git"; 691 - url = "https://github.com/kubernetes-incubator/custom-metrics-apiserver"; 692 - rev = "85ebc283a57287a8fcb3ad4b488d633cd63ef7d8"; 693 - sha256 = "06m3xa9j46035bagv9r2ghsmdx6pr0r3lcj4hz1cx943dllj0n6v"; 694 - }; 695 - } 696 - { 697 - goPackagePath = "github.com/lxn/walk"; 698 - fetch = { 699 - type = "git"; 700 - url = "https://github.com/lxn/walk"; 701 - rev = "02935bac0ab8448d5f9bf72ebeeb7ca0d5553f9b"; 702 - sha256 = "0m0dva6nyv6vxc188c9003g5ylxb6clmlcvqjgaibbcrxkxjw1d5"; 703 - }; 704 - } 705 - { 706 - goPackagePath = "github.com/lxn/win"; 707 - fetch = { 708 - type = "git"; 709 - url = "https://github.com/lxn/win"; 710 - rev = "7e1250ba2e7749fb9eb865da9ee93fb5a2fe73f1"; 711 - sha256 = "1n5ksvy3va3zd0iqpl64advjscm2w9n8kxn45ahahvbrbi7zy1zw"; 712 - }; 713 - } 714 - { 715 - goPackagePath = "github.com/magiconair/properties"; 716 - fetch = { 717 - type = "git"; 718 - url = "https://github.com/magiconair/properties"; 719 - rev = "c2353362d570a7bfa228149c62842019201cfb71"; 720 - sha256 = "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn"; 721 - }; 722 - } 723 - { 724 - goPackagePath = "github.com/mailru/easyjson"; 725 - fetch = { 726 - type = "git"; 727 - url = "https://github.com/mailru/easyjson"; 728 - rev = "3fdea8d05856a0c8df22ed4bc71b3219245e4485"; 729 - sha256 = "0g3crph77yhv4ipdnwqc32z4cp87ahi4ikad5kyy6q4znnxliz74"; 730 - }; 731 - } 732 - { 733 - goPackagePath = "github.com/mattn/go-colorable"; 734 - fetch = { 735 - type = "git"; 736 - url = "https://github.com/mattn/go-colorable"; 737 - rev = "167de6bfdfba052fa6b2d3664c8f5272e23c9072"; 738 - sha256 = "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx"; 739 - }; 740 - } 741 - { 742 - goPackagePath = "github.com/mattn/go-isatty"; 743 - fetch = { 744 - type = "git"; 745 - url = "https://github.com/mattn/go-isatty"; 746 - rev = "0360b2af4f38e8d38c7fce2a9f4e702702d73a39"; 747 - sha256 = "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n"; 748 - }; 749 - } 750 - { 751 - goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; 752 - fetch = { 753 - type = "git"; 754 - url = "https://github.com/matttproud/golang_protobuf_extensions"; 755 - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c"; 756 - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya"; 757 - }; 758 - } 759 - { 760 - goPackagePath = "github.com/mholt/archiver"; 761 - fetch = { 762 - type = "git"; 763 - url = "https://github.com/mholt/archiver"; 764 - rev = "26cf5bb32d07aa4e8d0de15f56ce516f4641d7df"; 765 - sha256 = "1r2gcxh8gkyn1l0h7sshachg2fxz6542lbqcar9zym6n2dni30mm"; 766 - }; 767 - } 768 - { 769 - goPackagePath = "github.com/mitchellh/go-homedir"; 770 - fetch = { 771 - type = "git"; 772 - url = "https://github.com/mitchellh/go-homedir"; 773 - rev = "3864e76763d94a6df2f9960b16a20a33da9f9a66"; 774 - sha256 = "1n8vya16l60i5jms43yb8fzdgwvqa2q926p5wkg3lbrk8pxy1nv0"; 775 - }; 776 - } 777 - { 778 - goPackagePath = "github.com/mitchellh/mapstructure"; 779 - fetch = { 780 - type = "git"; 781 - url = "https://github.com/mitchellh/mapstructure"; 782 - rev = "bb74f1db0675b241733089d5a1faa5dd8b0ef57b"; 783 - sha256 = "1aqk9qr46bwgdc5j7n7als61xvssvyjf4qzfsvhacl4izpygqnw7"; 784 - }; 785 - } 786 - { 787 - goPackagePath = "github.com/mitchellh/reflectwalk"; 788 - fetch = { 789 - type = "git"; 790 - url = "https://github.com/mitchellh/reflectwalk"; 791 - rev = "63d60e9d0dbc60cf9164e6510889b0db6683d98c"; 792 - sha256 = "1hpq6sjr6l1h25x68mz13q7sd52dv1mjfxbl5p7m3j7cv85khnvc"; 793 - }; 794 - } 795 - { 796 - goPackagePath = "github.com/modern-go/concurrent"; 797 - fetch = { 798 - type = "git"; 799 - url = "https://github.com/modern-go/concurrent"; 800 - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94"; 801 - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs"; 802 - }; 803 - } 804 - { 805 - goPackagePath = "github.com/modern-go/reflect2"; 806 - fetch = { 807 - type = "git"; 808 - url = "https://github.com/modern-go/reflect2"; 809 - rev = "4b7aa43c6742a2c18fdef89dd197aaae7dac7ccd"; 810 - sha256 = "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49"; 811 - }; 812 - } 813 - { 814 - goPackagePath = "github.com/nwaples/rardecode"; 815 - fetch = { 816 - type = "git"; 817 - url = "https://github.com/nwaples/rardecode"; 818 - rev = "e06696f847aeda6f39a8f0b7cdff193b7690aef6"; 819 - sha256 = "1aj7l8ii7hxnn3q4wzxlx3f92b1aspck6ncyqgb4h2g228phcibw"; 820 - }; 821 - } 822 - { 823 - goPackagePath = "github.com/opencontainers/go-digest"; 824 - fetch = { 825 - type = "git"; 826 - url = "https://github.com/opencontainers/go-digest"; 827 - rev = "279bed98673dd5bef374d3b6e4b09e2af76183bf"; 828 - sha256 = "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9"; 829 - }; 830 - } 831 - { 832 - goPackagePath = "github.com/opencontainers/image-spec"; 833 - fetch = { 834 - type = "git"; 835 - url = "https://github.com/opencontainers/image-spec"; 836 - rev = "d60099175f88c47cd379c4738d158884749ed235"; 837 - sha256 = "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q"; 838 - }; 839 - } 840 - { 841 - goPackagePath = "github.com/opencontainers/runc"; 842 - fetch = { 843 - type = "git"; 844 - url = "https://github.com/opencontainers/runc"; 845 - rev = "baf6536d6259209c3edfa2b22237af82942d3dfa"; 846 - sha256 = "09fm7f1k4lvx8v3crqb0cli1x2brlz8ka7f7qa8d2sb6ln58h7w7"; 847 - }; 848 - } 849 - { 850 - goPackagePath = "github.com/opencontainers/runtime-spec"; 851 - fetch = { 852 - type = "git"; 853 - url = "https://github.com/opencontainers/runtime-spec"; 854 - rev = "d810dbc60d8c5aeeb3d054bd1132fab2121968ce"; 855 - sha256 = "0yqya0wslhv87nlidsmrw2720y3r3jpvqc2sh28y79ciyypxbk38"; 856 - }; 857 - } 858 - { 859 - goPackagePath = "github.com/openshift/api"; 860 - fetch = { 861 - type = "git"; 862 - url = "https://github.com/openshift/api"; 863 - rev = "0d921e363e951d89f583292c60d013c318df64dc"; 864 - sha256 = "171xac4hr665q08mp17fld2zfpp95h9mjws2wikcr0brwq878p3s"; 865 - }; 866 - } 867 - { 868 - goPackagePath = "github.com/patrickmn/go-cache"; 869 - fetch = { 870 - type = "git"; 871 - url = "https://github.com/patrickmn/go-cache"; 872 - rev = "a3647f8e31d79543b2d0f0ae2fe5c379d72cedc0"; 873 - sha256 = "10020inkzrm931r4bixf8wqr9n39wcrb78vfyxmbvjavvw4zybgs"; 874 - }; 875 - } 876 - { 877 - goPackagePath = "github.com/pborman/uuid"; 878 - fetch = { 879 - type = "git"; 880 - url = "https://github.com/pborman/uuid"; 881 - rev = "e790cca94e6cc75c7064b1332e63811d4aae1a53"; 882 - sha256 = "0y1crv4wkly2naki2f68ln9sc8l9skswkc696vr8vc43p4p67wam"; 883 - }; 884 - } 885 - { 886 - goPackagePath = "github.com/pelletier/go-toml"; 887 - fetch = { 888 - type = "git"; 889 - url = "https://github.com/pelletier/go-toml"; 890 - rev = "c01d1270ff3e442a8a57cddc1c92dc1138598194"; 891 - sha256 = "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy"; 892 - }; 893 - } 894 - { 895 - goPackagePath = "github.com/petar/GoLLRB"; 896 - fetch = { 897 - type = "git"; 898 - url = "https://github.com/petar/GoLLRB"; 899 - rev = "53be0d36a84c2a886ca057d34b6aa4468df9ccb4"; 900 - sha256 = "01xp3lcamqkvl91jg6ly202gdsgf64j39rkrcqxi6v4pbrcv7hz0"; 901 - }; 902 - } 903 - { 904 - goPackagePath = "github.com/peterbourgon/diskv"; 905 - fetch = { 906 - type = "git"; 907 - url = "https://github.com/peterbourgon/diskv"; 908 - rev = "5f041e8faa004a95c88a202771f4cc3e991971e6"; 909 - sha256 = "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b"; 910 - }; 911 - } 912 - { 913 - goPackagePath = "github.com/philhofer/fwd"; 914 - fetch = { 915 - type = "git"; 916 - url = "https://github.com/philhofer/fwd"; 917 - rev = "bb6d471dc95d4fe11e432687f8b70ff496cf3136"; 918 - sha256 = "1pg84khadh79v42y8sjsdgfb54vw2kzv7hpapxkifgj0yvcp30g2"; 919 - }; 920 - } 921 - { 922 - goPackagePath = "github.com/pierrec/lz4"; 923 - fetch = { 924 - type = "git"; 925 - url = "https://github.com/pierrec/lz4"; 926 - rev = "1958fd8fff7f115e79725b1288e0b878b3e06b00"; 927 - sha256 = "1c4xi40bvcp91a3lw9nw1hylvdmb51hviwrqv5f6zj1sswkv24ps"; 928 - }; 929 - } 930 - { 931 - goPackagePath = "github.com/pkg/errors"; 932 - fetch = { 933 - type = "git"; 934 - url = "https://github.com/pkg/errors"; 935 - rev = "645ef00459ed84a119197bfb8d8205042c6df63d"; 936 - sha256 = "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5"; 937 - }; 938 - } 939 - { 940 - goPackagePath = "github.com/pmezard/go-difflib"; 941 - fetch = { 942 - type = "git"; 943 - url = "https://github.com/pmezard/go-difflib"; 944 - rev = "792786c7400a136282c1664665ae0a8db921c6c2"; 945 - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"; 946 - }; 947 - } 948 - { 949 - goPackagePath = "github.com/prometheus/client_golang"; 950 - fetch = { 951 - type = "git"; 952 - url = "https://github.com/prometheus/client_golang"; 953 - rev = "c5b7fccd204277076155f10851dad72b76a49317"; 954 - sha256 = "1xqny3147g12n4j03kxm8s9mvdbs3ln6i56c655mybrn9jjy48kd"; 955 - }; 956 - } 957 - { 958 - goPackagePath = "github.com/prometheus/client_model"; 959 - fetch = { 960 - type = "git"; 961 - url = "https://github.com/prometheus/client_model"; 962 - rev = "99fa1f4be8e564e8a6b613da7fa6f46c9edafc6c"; 963 - sha256 = "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998"; 964 - }; 965 - } 966 - { 967 - goPackagePath = "github.com/prometheus/common"; 968 - fetch = { 969 - type = "git"; 970 - url = "https://github.com/prometheus/common"; 971 - rev = "89d80287644767070914e30199b4d959e491bd3d"; 972 - sha256 = "0nvbjr8nhkyakgjariskl3bvyb18723dzjmmxph6ppf4khi50j0w"; 973 - }; 974 - } 975 - { 976 - goPackagePath = "github.com/prometheus/procfs"; 977 - fetch = { 978 - type = "git"; 979 - url = "https://github.com/prometheus/procfs"; 980 - rev = "7d6f385de8bea29190f15ba9931442a0eaef9af7"; 981 - sha256 = "18cish8yas5r6xhgp8p8n7lg4wh3d4szzirszxra8m7rwy3swxxq"; 982 - }; 983 - } 984 - { 985 - goPackagePath = "github.com/samuel/go-zookeeper"; 986 - fetch = { 987 - type = "git"; 988 - url = "https://github.com/samuel/go-zookeeper"; 989 - rev = "c4fab1ac1bec58281ad0667dc3f0907a9476ac47"; 990 - sha256 = "0i7mxg9hz8ymglq2xcwwswy1pvcr53qd57lzcdlf3d5bjki73a4w"; 991 - }; 992 - } 993 - { 994 - goPackagePath = "github.com/sbinet/go-python"; 995 - fetch = { 996 - type = "git"; 997 - url = "https://github.com/sbinet/go-python"; 998 - rev = "f976f61134dc6f5b4920941eb1b0e7cec7e4ef4c"; 999 - sha256 = "15l7wip7kr1z6v3315m9y0070wmwq447q7gwz6490xwnclrq85kl"; 1000 - }; 1001 - } 1002 - { 1003 - goPackagePath = "github.com/shirou/gopsutil"; 1004 - fetch = { 1005 - type = "git"; 1006 - url = "https://github.com/shirou/gopsutil"; 1007 - rev = "ccc1c1016bc5d10e803189ee43417c50cdde7f1b"; 1008 - sha256 = "0dk7644fc86n0974a00m2w5nbhzcgs1jjnillic90044w7rycg66"; 1009 - }; 1010 - } 1011 - { 1012 - goPackagePath = "github.com/shirou/w32"; 1013 - fetch = { 1014 - type = "git"; 1015 - url = "https://github.com/shirou/w32"; 1016 - rev = "bb4de0191aa41b5507caa14b0650cdbddcd9280b"; 1017 - sha256 = "0xh5vqblhr2c3mlaswawx6nipi4rc2x73rbdvlkakmgi0nnl50m4"; 1018 - }; 1019 - } 1020 - { 1021 - goPackagePath = "github.com/sirupsen/logrus"; 1022 - fetch = { 1023 - type = "git"; 1024 - url = "https://github.com/sirupsen/logrus"; 1025 - rev = "3e01752db0189b9157070a0e1668a620f9a85da2"; 1026 - sha256 = "029irw2lsbqi944gdrbkwdw0m2794sqni4g21gsnmz142hbzds8c"; 1027 - }; 1028 - } 1029 - { 1030 - goPackagePath = "github.com/spf13/afero"; 1031 - fetch = { 1032 - type = "git"; 1033 - url = "https://github.com/spf13/afero"; 1034 - rev = "787d034dfe70e44075ccc060d346146ef53270ad"; 1035 - sha256 = "0138rjiacl71h7kvhzinviwvy6qa2m6rflpv9lgqv15hnjvhwvg1"; 1036 - }; 1037 - } 1038 - { 1039 - goPackagePath = "github.com/spf13/cast"; 1040 - fetch = { 1041 - type = "git"; 1042 - url = "https://github.com/DataDog/cast"; 1043 - rev = "1ee8c8bd14a3d768a7ff681617ed56bc6c204940"; 1044 - sha256 = "0sgqmhicy672250cxgqd8zlni3qlj57r8liyiaq15g9spyhflhl0"; 1045 - }; 1046 - } 1047 - { 1048 - goPackagePath = "github.com/spf13/cobra"; 1049 - fetch = { 1050 - type = "git"; 1051 - url = "https://github.com/spf13/cobra"; 1052 - rev = "ef82de70bb3f60c65fb8eebacbb2d122ef517385"; 1053 - sha256 = "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd"; 1054 - }; 1055 - } 1056 - { 1057 - goPackagePath = "github.com/spf13/jwalterweatherman"; 1058 - fetch = { 1059 - type = "git"; 1060 - url = "https://github.com/spf13/jwalterweatherman"; 1061 - rev = "7c0cea34c8ece3fbeb2b27ab9b59511d360fb394"; 1062 - sha256 = "132p84i20b9s5r6fs597lsa6648vd415ch7c0d018vm8smzqpd0h"; 1063 - }; 1064 - } 1065 - { 1066 - goPackagePath = "github.com/spf13/pflag"; 1067 - fetch = { 1068 - type = "git"; 1069 - url = "https://github.com/spf13/pflag"; 1070 - rev = "583c0c0531f06d5278b7d917446061adc344b5cd"; 1071 - sha256 = "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5"; 1072 - }; 1073 - } 1074 - { 1075 - goPackagePath = "github.com/stretchr/objx"; 1076 - fetch = { 1077 - type = "git"; 1078 - url = "https://github.com/stretchr/objx"; 1079 - rev = "477a77ecc69700c7cdeb1fa9e129548e1c1c393c"; 1080 - sha256 = "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls"; 1081 - }; 1082 - } 1083 - { 1084 - goPackagePath = "github.com/stretchr/testify"; 1085 - fetch = { 1086 - type = "git"; 1087 - url = "https://github.com/stretchr/testify"; 1088 - rev = "f35b8ab0b5a2cef36673838d662e249dd9c94686"; 1089 - sha256 = "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs"; 1090 - }; 1091 - } 1092 - { 1093 - goPackagePath = "github.com/syndtr/gocapability"; 1094 - fetch = { 1095 - type = "git"; 1096 - url = "https://github.com/syndtr/gocapability"; 1097 - rev = "33e07d32887e1e06b7c025f27ce52f62c7990bc0"; 1098 - sha256 = "1x88c0b320b13w7samicf19dqx9rr4dnrh3yglk3cba21nwsp57i"; 1099 - }; 1100 - } 1101 - { 1102 - goPackagePath = "github.com/tinylib/msgp"; 1103 - fetch = { 1104 - type = "git"; 1105 - url = "https://github.com/tinylib/msgp"; 1106 - rev = "af6442a0fcf6e2a1b824f70dd0c734f01e817751"; 1107 - sha256 = "08ha23sn14071ywrgxlyj7r523vzdwx1i83dcp1mqa830glgqaff"; 1108 - }; 1109 - } 1110 - { 1111 - goPackagePath = "github.com/ugorji/go"; 1112 - fetch = { 1113 - type = "git"; 1114 - url = "https://github.com/ugorji/go"; 1115 - rev = "8c0409fcbb70099c748d71f714529204975f6c3f"; 1116 - sha256 = "0z61j0cniq3n5af0q57dbpyfmidihzimrwnysfphfzwyd0ic4rcv"; 1117 - }; 1118 - } 1119 - { 1120 - goPackagePath = "github.com/ulikunitz/xz"; 1121 - fetch = { 1122 - type = "git"; 1123 - url = "https://github.com/ulikunitz/xz"; 1124 - rev = "0c6b41e72360850ca4f98dc341fd999726ea007f"; 1125 - sha256 = "0a6l7sp67ipxim093qh6fvw8knbxj24l7bj5lykcddi5gwfi78n3"; 1126 - }; 1127 - } 1128 - { 1129 - goPackagePath = "github.com/urfave/negroni"; 1130 - fetch = { 1131 - type = "git"; 1132 - url = "https://github.com/urfave/negroni"; 1133 - rev = "5dbbc83f748fc3ad38585842b0aedab546d0ea1e"; 1134 - sha256 = "10w4ygc78hgsryxwmjmz8w51d84bjh7jm8j0xfv4vnpz5gscc8dj"; 1135 - }; 1136 - } 1137 - { 1138 - goPackagePath = "golang.org/x/crypto"; 1139 - fetch = { 1140 - type = "git"; 1141 - url = "https://go.googlesource.com/crypto"; 1142 - rev = "a49355c7e3f8fe157a85be2f77e6e269a0f89602"; 1143 - sha256 = "020q1laxjx5kcmnqy4wmdb63zhb0lyq6wpy40axhswzg2nd21s44"; 1144 - }; 1145 - } 1146 - { 1147 - goPackagePath = "golang.org/x/mobile"; 1148 - fetch = { 1149 - type = "git"; 1150 - url = "https://go.googlesource.com/mobile"; 1151 - rev = "bceb7ef27cc623473a5b664d2a3450576dddff0f"; 1152 - sha256 = "0xky2417wm61j2p5ki3k4237fxyz8f5ds19nak0lm741s3xs2rqx"; 1153 - }; 1154 - } 1155 - { 1156 - goPackagePath = "golang.org/x/net"; 1157 - fetch = { 1158 - type = "git"; 1159 - url = "https://go.googlesource.com/net"; 1160 - rev = "97aa3a539ec716117a9d15a4659a911f50d13c3c"; 1161 - sha256 = "1738bi8l50f0iq0il6h4qy1cgy39yh3q4gh1lwp5y5j7jyy33ccd"; 1162 - }; 1163 - } 1164 - { 1165 - goPackagePath = "golang.org/x/sync"; 1166 - fetch = { 1167 - type = "git"; 1168 - url = "https://go.googlesource.com/sync"; 1169 - rev = "1d60e4601c6fd243af51cc01ddf169918a5407ca"; 1170 - sha256 = "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6"; 1171 - }; 1172 - } 1173 - { 1174 - goPackagePath = "golang.org/x/sys"; 1175 - fetch = { 1176 - type = "git"; 1177 - url = "https://go.googlesource.com/sys"; 1178 - rev = "7138fd3d9dc8335c567ca206f4333fb75eb05d56"; 1179 - sha256 = "09xgxk0d9b88m18sriy4f2l6qavicznxkgsbvjyv56x24r4kmiq0"; 1180 - }; 1181 - } 1182 - { 1183 - goPackagePath = "golang.org/x/text"; 1184 - fetch = { 1185 - type = "git"; 1186 - url = "https://go.googlesource.com/text"; 1187 - rev = "f21a4dfb5e38f5895301dc265a8def02365cc3d0"; 1188 - sha256 = "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19"; 1189 - }; 1190 - } 1191 - { 1192 - goPackagePath = "golang.org/x/time"; 1193 - fetch = { 1194 - type = "git"; 1195 - url = "https://go.googlesource.com/time"; 1196 - rev = "fbb02b2291d28baffd63558aa44b4b56f178d650"; 1197 - sha256 = "0jjqcv6rzihlgg4i797q80g1f6ch5diz2kxqh6488gwkb6nds4h4"; 1198 - }; 1199 - } 1200 - { 1201 - goPackagePath = "google.golang.org/genproto"; 1202 - fetch = { 1203 - type = "git"; 1204 - url = "https://github.com/google/go-genproto"; 1205 - rev = "ff3583edef7de132f219f0efc00e097cabcc0ec0"; 1206 - sha256 = "0bpzxk85fgvznmdf9356nzh8riqhwzcil9r2a955rbfn27lh4lmy"; 1207 - }; 1208 - } 1209 - { 1210 - goPackagePath = "google.golang.org/grpc"; 1211 - fetch = { 1212 - type = "git"; 1213 - url = "https://github.com/grpc/grpc-go"; 1214 - rev = "168a6198bcb0ef175f7dacec0b8691fc141dc9b8"; 1215 - sha256 = "0d8vj372ri55mrqfc0rhjl3albp5ykwfjhda1s5cgm5n40v70pr3"; 1216 - }; 1217 - } 1218 - { 1219 - goPackagePath = "gopkg.in/Knetic/govaluate.v3"; 1220 - fetch = { 1221 - type = "git"; 1222 - url = "https://github.com/Knetic/govaluate"; 1223 - rev = "d216395917cc49052c7c7094cf57f09657ca08a8"; 1224 - sha256 = "1b0sy89hy5d1720i43ikqfcxr4v6p9g9c7rnbif8s6256a7c2rsq"; 1225 - }; 1226 - } 1227 - { 1228 - goPackagePath = "gopkg.in/inf.v0"; 1229 - fetch = { 1230 - type = "git"; 1231 - url = "https://github.com/go-inf/inf"; 1232 - rev = "d2d2541c53f18d2a059457998ce2876cc8e67cbf"; 1233 - sha256 = "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng"; 1234 - }; 1235 - } 1236 - { 1237 - goPackagePath = "gopkg.in/natefinch/lumberjack.v2"; 1238 - fetch = { 1239 - type = "git"; 1240 - url = "https://github.com/natefinch/lumberjack"; 1241 - rev = "a96e63847dc3c67d17befa69c303767e2f84e54f"; 1242 - sha256 = "1l3vlv72b7rfkpy1164kwd3qzrqmmjnb67akzxqp2mlvc66k6p3d"; 1243 - }; 1244 - } 1245 - { 1246 - goPackagePath = "gopkg.in/square/go-jose.v2"; 1247 - fetch = { 1248 - type = "git"; 1249 - url = "https://github.com/square/go-jose"; 1250 - rev = "ef984e69dd356202fd4e4910d4d9c24468bdf0b8"; 1251 - sha256 = "0pxyrygc9mh6yn169rm6i3shax7zmmzps22px6mq3kl87zkk9b8h"; 1252 - }; 1253 - } 1254 - { 1255 - goPackagePath = "gopkg.in/yaml.v2"; 1256 - fetch = { 1257 - type = "git"; 1258 - url = "https://github.com/go-yaml/yaml"; 1259 - rev = "d670f9405373e636a5a2765eea47fac0c9bc91a4"; 1260 - sha256 = "1w1xid51n8v1mydn2m3vgggw8qgpd5a5sr62snsc77d99fpjsrs0"; 1261 - }; 1262 - } 1263 - { 1264 - goPackagePath = "gopkg.in/zorkian/go-datadog-api.v2"; 1265 - fetch = { 1266 - type = "git"; 1267 - url = "https://github.com/zorkian/go-datadog-api"; 1268 - rev = "d7b8b10db6a7eb1c1c2424b10a795a1662e80c9a"; 1269 - sha256 = "069psfvgal6pkwc1s09gdy4mjn4ki4d1zvqnnzn7y15i5llb97kk"; 1270 - }; 1271 - } 1272 - { 1273 - goPackagePath = "k8s.io/api"; 1274 - fetch = { 1275 - type = "git"; 1276 - url = "https://github.com/kubernetes/api"; 1277 - rev = "4e7be11eab3ffcfc1876898b8272df53785a9504"; 1278 - sha256 = "0klwmkvsnim66y8mvcmkqql12fbr5cja4qgjzp36197i6i335b62"; 1279 - }; 1280 - } 1281 - { 1282 - goPackagePath = "k8s.io/apiextensions-apiserver"; 1283 - fetch = { 1284 - type = "git"; 1285 - url = "https://github.com/kubernetes/apiextensions-apiserver"; 1286 - rev = "b499623aa7a31f7c85b37017e068b21206a68e25"; 1287 - sha256 = "1c0z71f0wqkwkc5x730l9gmzibkqk6af4mg5l6ks9lk69cbpxk0a"; 1288 - }; 1289 - } 1290 - { 1291 - goPackagePath = "k8s.io/apimachinery"; 1292 - fetch = { 1293 - type = "git"; 1294 - url = "https://github.com/kubernetes/apimachinery"; 1295 - rev = "def12e63c512da17043b4f0293f52d1006603d9f"; 1296 - sha256 = "0dghch5avwcy3zx5k005hi71i9bl3603pk927xdjr5jlajzwm9xd"; 1297 - }; 1298 - } 1299 - { 1300 - goPackagePath = "k8s.io/apiserver"; 1301 - fetch = { 1302 - type = "git"; 1303 - url = "https://github.com/kubernetes/apiserver"; 1304 - rev = "d296c96c12b7d15d7fb5fea7a05fb165f8fd4014"; 1305 - sha256 = "0a413zpkm8afhh0jab8zrwvd61kvackll85kcdb6gyinw7f6qv7x"; 1306 - }; 1307 - } 1308 - { 1309 - goPackagePath = "k8s.io/client-go"; 1310 - fetch = { 1311 - type = "git"; 1312 - url = "https://github.com/kubernetes/client-go"; 1313 - rev = "f2f85107cac6fe04c30435ca0ac0c3318fd1b94c"; 1314 - sha256 = "153a3q172kmpbp6cq5005dgasdw0x36pg9xz1mfgv966k8rwws74"; 1315 - }; 1316 - } 1317 - { 1318 - goPackagePath = "k8s.io/kube-openapi"; 1319 - fetch = { 1320 - type = "git"; 1321 - url = "https://github.com/kubernetes/kube-openapi"; 1322 - rev = "b742be413d0a6f781c123bed504c8fb39264c57d"; 1323 - sha256 = "13ik6dri0f9fzs8p6987h6n3y2aqjz5cj957826xwkpv4fj2zgq8"; 1324 - }; 1325 - } 1326 - { 1327 - goPackagePath = "k8s.io/kubernetes"; 1328 - fetch = { 1329 - type = "git"; 1330 - url = "https://github.com/kubernetes/kubernetes"; 1331 - rev = "bb9ffb1654d4a729bb4cec18ff088eacc153c239"; 1332 - sha256 = "0c5xpxg7ns5irrr0ydk8n394yp3922i0m61l26qyc183phr32wxi"; 1333 - }; 1334 - } 1335 - { 1336 - goPackagePath = "k8s.io/metrics"; 1337 - fetch = { 1338 - type = "git"; 1339 - url = "https://github.com/kubernetes/metrics"; 1340 - rev = "972ef826b8401c180b89cefc7457daa2d116daa9"; 1341 - sha256 = "0ba9mfy253d4pcqdvialh2shs4d43l0q84pn3569wiib8cisbc68"; 1342 - }; 1343 - } 1344 - { 1345 - goPackagePath = "k8s.io/utils"; 1346 - fetch = { 1347 - type = "git"; 1348 - url = "https://github.com/kubernetes/utils"; 1349 - rev = "cd34563cd63c2bd7c6fe88a73c4dcf34ed8a67cb"; 1350 - sha256 = "1wpqijsvf8s4iqjrrzgbxi3gay6vaglscyq14vxma4iacg8fx1jk"; 1351 - }; 1352 - } 1353 - ]
+14 -12
pkgs/tools/networking/dd-agent/datadog-agent.nix
··· 1 - { lib, fetchFromGitHub, buildGoPackage, makeWrapper, pythonPackages, pkg-config, systemd, hostname, extraTags ? [] }: 1 + { lib, buildGoModule, makeWrapper, fetchFromGitHub, pythonPackages, pkg-config, systemd, hostname, extraTags ? [] }: 2 2 3 3 let 4 4 # keep this in sync with github.com/DataDog/agent-payload dependency 5 - payloadVersion = "4.7.1"; 5 + payloadVersion = "4.78.0"; 6 6 python = pythonPackages.python; 7 + owner = "DataDog"; 8 + repo = "datadog-agent"; 9 + goPackagePath = "github.com/${owner}/${repo}"; 7 10 8 - in buildGoPackage rec { 11 + in buildGoModule rec { 9 12 pname = "datadog-agent"; 10 - version = "6.11.2"; 11 - owner = "DataDog"; 12 - repo = "datadog-agent"; 13 + version = "7.30.2"; 13 14 14 15 src = fetchFromGitHub { 15 16 inherit owner repo; 16 - rev = version; 17 - sha256 = "1dwdiaf357l9c6b2cps5mdyfma3c1mp96zzxg1826fvz3x8ix68z"; 17 + rev = version; 18 + sha256 = "17ahrxhb87sj7f04wg44xv4k9wrlvf04j92ac5936a6maygp01rd"; 18 19 }; 20 + 21 + vendorSha256 = "06ryy501vibc6n14qwg94394c76l060525y6qg261qb748mbi8qi"; 19 22 20 23 subPackages = [ 21 24 "cmd/agent" ··· 24 27 "cmd/py-launcher" 25 28 "cmd/trace-agent" 26 29 ]; 27 - goDeps = ./datadog-agent-deps.nix; 28 - goPackagePath = "github.com/${owner}/${repo}"; 29 30 30 31 31 32 nativeBuildInputs = [ pkg-config makeWrapper ]; 32 33 buildInputs = [ systemd ]; 33 34 PKG_CONFIG_PATH = "${python}/lib/pkgconfig"; 34 - 35 35 36 36 preBuild = let 37 37 ldFlags = lib.concatStringsSep " " [ ··· 43 43 ]; 44 44 in '' 45 45 buildFlagsArray=( "-tags" "ec2 systemd cpython process log secrets ${lib.concatStringsSep " " extraTags}" "-ldflags" "${ldFlags}") 46 + # Keep directories to generate in sync with tasks/go.py 47 + go generate ./pkg/status ./cmd/agent/gui 46 48 ''; 47 49 48 50 # DataDog use paths relative to the agent binary, so fix these. ··· 61 63 cp -R $src/cmd/agent/dist/conf.d $out/share/datadog-agent 62 64 cp -R $src/cmd/agent/dist/{checks,utils,config.py} $out/${python.sitePackages} 63 65 64 - cp -R $src/pkg/status/dist/templates $out/share/datadog-agent 66 + cp -R $src/pkg/status/templates $out/share/datadog-agent 65 67 66 68 wrapProgram "$out/bin/agent" \ 67 69 --set PYTHONPATH "$out/${python.sitePackages}" \
-669
pkgs/tools/networking/dd-agent/datadog-process-agent-deps.nix
··· 1 - # file generated from Gopkg.lock using dep2nix (https://github.com/nixcloud/dep2nix) 2 - [ 3 - { 4 - goPackagePath = "bitbucket.org/ww/goautoneg"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/adjust/goautoneg"; 8 - rev = "d788f35a0315672bc90f50a6145d1252a230ee0d"; 9 - sha256 = "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"; 10 - }; 11 - } 12 - { 13 - goPackagePath = "github.com/DataDog/agent-payload"; 14 - fetch = { 15 - type = "git"; 16 - url = "https://github.com/DataDog/agent-payload"; 17 - rev = "f0521943f60221829c6bb5de1c7f788cd4411372"; 18 - sha256 = "19m3kiwi0g2a0rysjabrb2nkkz7yx632g7s05mylv1x2ixparhrg"; 19 - }; 20 - } 21 - { 22 - goPackagePath = "github.com/DataDog/datadog-agent"; 23 - fetch = { 24 - type = "git"; 25 - url = "https://github.com/DataDog/datadog-agent"; 26 - rev = "d7712d570b91f4f97af9f155ad1c676921d8325d"; 27 - sha256 = "1gi921z79la4hjhm8xhl4jz167200qljvhhsy4blj4vinkgfpm8w"; 28 - }; 29 - } 30 - { 31 - goPackagePath = "github.com/DataDog/datadog-go"; 32 - fetch = { 33 - type = "git"; 34 - url = "https://github.com/DataDog/datadog-go"; 35 - rev = "a9c7a9896c1847c9cc2b068a2ae68e9d74540a5d"; 36 - sha256 = "1m1vpi2s22dqcq0fqhfp3skzkmsbmhzyiw2kh2dw6ii7qimy8zki"; 37 - }; 38 - } 39 - { 40 - goPackagePath = "github.com/DataDog/gopsutil"; 41 - fetch = { 42 - type = "git"; 43 - url = "https://github.com/DataDog/gopsutil"; 44 - rev = "233cd0cf42c26d835ed6f0e46f2103432a88b526"; 45 - sha256 = "0rvxs1jjzv3j834dns28zr25bznarjmpgdy0z6gpimnq5nyicys5"; 46 - }; 47 - } 48 - { 49 - goPackagePath = "github.com/DataDog/viper"; 50 - fetch = { 51 - type = "git"; 52 - url = "https://github.com/DataDog/viper"; 53 - rev = "v1.5.0"; 54 - sha256 = "1sv0xvmfaif7zpfwk0j6qf11hxnfdsb2zfj63b9zx7l0zzhjzh06"; 55 - }; 56 - } 57 - { 58 - goPackagePath = "github.com/DataDog/zstd"; 59 - fetch = { 60 - type = "git"; 61 - url = "https://github.com/DataDog/zstd"; 62 - rev = "2b373cbe6ac0c8e6960bbd18026ceb269eef89f5"; 63 - sha256 = "157kh7w173igxbypknmr8hc8934ykmnb02pkb76k1jwq4sphn8qj"; 64 - }; 65 - } 66 - { 67 - goPackagePath = "github.com/Microsoft/go-winio"; 68 - fetch = { 69 - type = "git"; 70 - url = "https://github.com/Microsoft/go-winio"; 71 - rev = "97e4973ce50b2ff5f09635a57e2b88a037aae829"; 72 - sha256 = "14y1gryr3pb3zy09v2g8dh89m363rfd9sch0wgbabh531hfx72vn"; 73 - }; 74 - } 75 - { 76 - goPackagePath = "github.com/StackExchange/wmi"; 77 - fetch = { 78 - type = "git"; 79 - url = "https://github.com/StackExchange/wmi"; 80 - rev = "5d049714c4a64225c3c79a7cf7d02f7fb5b96338"; 81 - sha256 = "1slw6v1fl8i0hz4db9lph55pbhnrxhqyndq6vm27dgvpj22k29fk"; 82 - }; 83 - } 84 - { 85 - goPackagePath = "github.com/aws/aws-sdk-go"; 86 - fetch = { 87 - type = "git"; 88 - url = "https://github.com/aws/aws-sdk-go"; 89 - rev = "bff41fb23b7550368282029f6478819d6a99ae0f"; 90 - sha256 = "1hcd8f3m2cq02mj9i8c1ynbh3j0iyw14l1wszm0qgs18nsj1rzgn"; 91 - }; 92 - } 93 - { 94 - goPackagePath = "github.com/beorn7/perks"; 95 - fetch = { 96 - type = "git"; 97 - url = "https://github.com/beorn7/perks"; 98 - rev = "3ac7bf7a47d159a033b107610db8a1b6575507a4"; 99 - sha256 = "1qc3l4r818xpvrhshh1sisc5lvl9479qspcfcdbivdyh0apah83r"; 100 - }; 101 - } 102 - { 103 - goPackagePath = "github.com/cenkalti/backoff"; 104 - fetch = { 105 - type = "git"; 106 - url = "https://github.com/cenkalti/backoff"; 107 - rev = "b7325b0f3f1097c6546ea5e83c4a23267e58ad71"; 108 - sha256 = "0vx4ggryxd9w111mf1bi2g51559r8sh99gdqah72k4dfj3vrv19d"; 109 - }; 110 - } 111 - { 112 - goPackagePath = "github.com/cihub/seelog"; 113 - fetch = { 114 - type = "git"; 115 - url = "https://github.com/cihub/seelog"; 116 - rev = "d2c6e5aa9fbfdd1c624e140287063c7730654115"; 117 - sha256 = "0ab9kyrh51x1x71z37pwjsla0qv11a1qv697xafyc4r5nq5hds6p"; 118 - }; 119 - } 120 - { 121 - goPackagePath = "github.com/davecgh/go-spew"; 122 - fetch = { 123 - type = "git"; 124 - url = "https://github.com/davecgh/go-spew"; 125 - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73"; 126 - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y"; 127 - }; 128 - } 129 - { 130 - goPackagePath = "github.com/docker/distribution"; 131 - fetch = { 132 - type = "git"; 133 - url = "https://github.com/docker/distribution"; 134 - rev = "48294d928ced5dd9b378f7fd7c6f5da3ff3f2c89"; 135 - sha256 = "0nj4xd72mik4pj8g065cqb0yjmgpj5ppsqf2k5ibz9f68c39c00b"; 136 - }; 137 - } 138 - { 139 - goPackagePath = "github.com/docker/docker"; 140 - fetch = { 141 - type = "git"; 142 - url = "https://github.com/docker/docker"; 143 - rev = "092cba3727bb9b4a2f0e922cd6c0f93ea270e363"; 144 - sha256 = "0l9kjibnpwcgk844sibxk9ppyqniw9r0np1mzp95f8f461jb0iar"; 145 - }; 146 - } 147 - { 148 - goPackagePath = "github.com/docker/go-connections"; 149 - fetch = { 150 - type = "git"; 151 - url = "https://github.com/docker/go-connections"; 152 - rev = "97c2040d34dfae1d1b1275fa3a78dbdd2f41cf7e"; 153 - sha256 = "11szydahzjz7zia3hr8kplnlxsg9papbvc2mgr1vlwrahxpdx7l7"; 154 - }; 155 - } 156 - { 157 - goPackagePath = "github.com/docker/go-units"; 158 - fetch = { 159 - type = "git"; 160 - url = "https://github.com/docker/go-units"; 161 - rev = "47565b4f722fb6ceae66b95f853feed578a4a51c"; 162 - sha256 = "0npxsb3pp89slwf4a73fxm20hykad8xggij6i6hcd5jy19bjrd93"; 163 - }; 164 - } 165 - { 166 - goPackagePath = "github.com/emicklei/go-restful"; 167 - fetch = { 168 - type = "git"; 169 - url = "https://github.com/emicklei/go-restful"; 170 - rev = "68c9750c36bb8cb433f1b88c807b4b30df4acc40"; 171 - sha256 = "0bc0wd5nipz1x078vpq82acyc7ip0qv1sddl451d7f7bvfms6h67"; 172 - }; 173 - } 174 - { 175 - goPackagePath = "github.com/fsnotify/fsnotify"; 176 - fetch = { 177 - type = "git"; 178 - url = "https://github.com/fsnotify/fsnotify"; 179 - rev = "ccc981bf80385c528a65fbfdd49bf2d8da22aa23"; 180 - sha256 = "0hcrfmiyx27izac3v0ii0qq2kfjvhr9ma1i79hrl6a6y2ayagzz7"; 181 - }; 182 - } 183 - { 184 - goPackagePath = "github.com/ghodss/yaml"; 185 - fetch = { 186 - type = "git"; 187 - url = "https://github.com/ghodss/yaml"; 188 - rev = "73d445a93680fa1a78ae23a5839bad48f32ba1ee"; 189 - sha256 = "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7"; 190 - }; 191 - } 192 - { 193 - goPackagePath = "github.com/go-ini/ini"; 194 - fetch = { 195 - type = "git"; 196 - url = "https://github.com/go-ini/ini"; 197 - rev = "d3de07a94d22b4a0972deb4b96d790c2c0ce8333"; 198 - sha256 = "1lpwqhcfhaa6aighd2lpjfswbb6aw5d5bsmyr0vqaqg6g5kz0ikg"; 199 - }; 200 - } 201 - { 202 - goPackagePath = "github.com/go-ole/go-ole"; 203 - fetch = { 204 - type = "git"; 205 - url = "https://github.com/go-ole/go-ole"; 206 - rev = "7a0fa49edf48165190530c675167e2f319a05268"; 207 - sha256 = "00v6fixm35pj8jyqbj0z3kyv7bhrqa2dr2fgmlc9xqwbf0nayssy"; 208 - }; 209 - } 210 - { 211 - goPackagePath = "github.com/gogo/protobuf"; 212 - fetch = { 213 - type = "git"; 214 - url = "https://github.com/gogo/protobuf"; 215 - rev = "d76fbc1373015ced59b43ac267f28d546b955683"; 216 - sha256 = "051a3imx2m7gpns8cjm1gckif9z6i4ik0svc1i8j7h86800c5rg0"; 217 - }; 218 - } 219 - { 220 - goPackagePath = "github.com/golang/glog"; 221 - fetch = { 222 - type = "git"; 223 - url = "https://github.com/golang/glog"; 224 - rev = "44145f04b68cf362d9c4df2182967c2275eaefed"; 225 - sha256 = "1k7sf6qmpgm0iw81gx2dwggf9di6lgw0n54mni7862hihwfrb5rq"; 226 - }; 227 - } 228 - { 229 - goPackagePath = "github.com/golang/protobuf"; 230 - fetch = { 231 - type = "git"; 232 - url = "https://github.com/golang/protobuf"; 233 - rev = "b4deda0973fb4c70b50d226b1af49f3da59f5265"; 234 - sha256 = "0ya4ha7m20bw048m1159ppqzlvda4x0vdprlbk5sdgmy74h3xcdq"; 235 - }; 236 - } 237 - { 238 - goPackagePath = "github.com/google/gofuzz"; 239 - fetch = { 240 - type = "git"; 241 - url = "https://github.com/google/gofuzz"; 242 - rev = "44d81051d367757e1c7c6a5a86423ece9afcf63c"; 243 - sha256 = "0ivq2sl2fv8x0xxrcys27c42s8yq7irgl7lp6l0im9i7ky63nk0i"; 244 - }; 245 - } 246 - { 247 - goPackagePath = "github.com/googleapis/gnostic"; 248 - fetch = { 249 - type = "git"; 250 - url = "https://github.com/googleapis/gnostic"; 251 - rev = "0c5108395e2debce0d731cf0287ddf7242066aba"; 252 - sha256 = "0jf3cp5clli88gpjf24r6wxbkvngnc1kf59d4cgjczsn2wasvsfc"; 253 - }; 254 - } 255 - { 256 - goPackagePath = "github.com/hashicorp/golang-lru"; 257 - fetch = { 258 - type = "git"; 259 - url = "https://github.com/hashicorp/golang-lru"; 260 - rev = "a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4"; 261 - sha256 = "1z3h4aca31l3qs0inqr5l49vrlycpjm7vq1l9nh1mp0mb2ij0kmp"; 262 - }; 263 - } 264 - { 265 - goPackagePath = "github.com/hashicorp/hcl"; 266 - fetch = { 267 - type = "git"; 268 - url = "https://github.com/hashicorp/hcl"; 269 - rev = "65a6292f0157eff210d03ed1bf6c59b190b8b906"; 270 - sha256 = "00qgmygfa4vgf9v3lpz4vp1ca1hcfcxnjqjrvp6z4jjklc8x4mqf"; 271 - }; 272 - } 273 - { 274 - goPackagePath = "github.com/hectane/go-acl"; 275 - fetch = { 276 - type = "git"; 277 - url = "https://github.com/hectane/go-acl"; 278 - rev = "7f56832555fc229dad908c67d65ed3ce6156b70c"; 279 - sha256 = "17crpqmn51fqcz0j1vi4grwwiaqpvc3zhl102hn5sy7s2lmdf630"; 280 - }; 281 - } 282 - { 283 - goPackagePath = "github.com/howeyc/gopass"; 284 - fetch = { 285 - type = "git"; 286 - url = "https://github.com/howeyc/gopass"; 287 - rev = "bf9dde6d0d2c004a008c27aaee91170c786f6db8"; 288 - sha256 = "1jxzyfnqi0h1fzlsvlkn10bncic803bfhslyijcxk55mgh297g45"; 289 - }; 290 - } 291 - { 292 - goPackagePath = "github.com/imdario/mergo"; 293 - fetch = { 294 - type = "git"; 295 - url = "https://github.com/imdario/mergo"; 296 - rev = "6633656539c1639d9d78127b7d47c622b5d7b6dc"; 297 - sha256 = "1fffbq1l17i0gynmvcxypl7d9h4v81g5vlimiph5bfgf4sp4db7g"; 298 - }; 299 - } 300 - { 301 - goPackagePath = "github.com/iovisor/gobpf"; 302 - fetch = { 303 - type = "git"; 304 - url = "https://github.com/iovisor/gobpf"; 305 - rev = "98ebf56442afb10e1b43145127de3c1777ed7e95"; 306 - sha256 = "0m2aah77b1k2yf31za975mcix5n0jijqkqmhgakip00klihx383k"; 307 - }; 308 - } 309 - { 310 - goPackagePath = "github.com/jmespath/go-jmespath"; 311 - fetch = { 312 - type = "git"; 313 - url = "https://github.com/jmespath/go-jmespath"; 314 - rev = "0b12d6b5"; 315 - sha256 = "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld"; 316 - }; 317 - } 318 - { 319 - goPackagePath = "github.com/json-iterator/go"; 320 - fetch = { 321 - type = "git"; 322 - url = "https://github.com/json-iterator/go"; 323 - rev = "f2b4162afba35581b6d4a50d3b8f34e33c144682"; 324 - sha256 = "0siqfghsm2lkdwinvg8x5gls3p76rq3cdm59c1r4x0b2mdfhnvcd"; 325 - }; 326 - } 327 - { 328 - goPackagePath = "github.com/kardianos/osext"; 329 - fetch = { 330 - type = "git"; 331 - url = "https://github.com/kardianos/osext"; 332 - rev = "ae77be60afb1dcacde03767a8c37337fad28ac14"; 333 - sha256 = "056dkgxrqjj5r18bnc3knlpgdz5p3yvp12y4y978hnsfhwaqvbjz"; 334 - }; 335 - } 336 - { 337 - goPackagePath = "github.com/kubernetes-incubator/custom-metrics-apiserver"; 338 - fetch = { 339 - type = "git"; 340 - url = "https://github.com/kubernetes-incubator/custom-metrics-apiserver"; 341 - rev = "bb8bae16c5550f2aeef3151259a1b36078a0e544"; 342 - sha256 = "1f1n4dh9w2qfs704yw8nhbv50n6f9fxy8ndir96l37lnwd2dvj8p"; 343 - }; 344 - } 345 - { 346 - goPackagePath = "github.com/magiconair/properties"; 347 - fetch = { 348 - type = "git"; 349 - url = "https://github.com/magiconair/properties"; 350 - rev = "c2353362d570a7bfa228149c62842019201cfb71"; 351 - sha256 = "1a10362wv8a8qwb818wygn2z48lgzch940hvpv81hv8gc747ajxn"; 352 - }; 353 - } 354 - { 355 - goPackagePath = "github.com/mailru/easyjson"; 356 - fetch = { 357 - type = "git"; 358 - url = "https://github.com/mailru/easyjson"; 359 - rev = "60711f1a8329503b04e1c88535f419d0bb440bff"; 360 - sha256 = "0234jp6134wkihdpdwq1hvzqblgl5khc1wp6dyi2h0hgh88bhdk1"; 361 - }; 362 - } 363 - { 364 - goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; 365 - fetch = { 366 - type = "git"; 367 - url = "https://github.com/matttproud/golang_protobuf_extensions"; 368 - rev = "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a"; 369 - sha256 = "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"; 370 - }; 371 - } 372 - { 373 - goPackagePath = "github.com/mitchellh/mapstructure"; 374 - fetch = { 375 - type = "git"; 376 - url = "https://github.com/mitchellh/mapstructure"; 377 - rev = "fa473d140ef3c6adf42d6b391fe76707f1f243c8"; 378 - sha256 = "0f06q4fpzg0c370cvmpsl0iq2apl5nkbz5cd3nba5x5ysmshv1lm"; 379 - }; 380 - } 381 - { 382 - goPackagePath = "github.com/modern-go/concurrent"; 383 - fetch = { 384 - type = "git"; 385 - url = "https://github.com/modern-go/concurrent"; 386 - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94"; 387 - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs"; 388 - }; 389 - } 390 - { 391 - goPackagePath = "github.com/modern-go/reflect2"; 392 - fetch = { 393 - type = "git"; 394 - url = "https://github.com/modern-go/reflect2"; 395 - rev = "4b7aa43c6742a2c18fdef89dd197aaae7dac7ccd"; 396 - sha256 = "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49"; 397 - }; 398 - } 399 - { 400 - goPackagePath = "github.com/patrickmn/go-cache"; 401 - fetch = { 402 - type = "git"; 403 - url = "https://github.com/patrickmn/go-cache"; 404 - rev = "a3647f8e31d79543b2d0f0ae2fe5c379d72cedc0"; 405 - sha256 = "10020inkzrm931r4bixf8wqr9n39wcrb78vfyxmbvjavvw4zybgs"; 406 - }; 407 - } 408 - { 409 - goPackagePath = "github.com/pborman/uuid"; 410 - fetch = { 411 - type = "git"; 412 - url = "https://github.com/pborman/uuid"; 413 - rev = "ca53cad383cad2479bbba7f7a1a05797ec1386e4"; 414 - sha256 = "0rcx669bbjkkwdlw81spnra4ffgzd4rbpywnrj3w41m9vq6mk1gn"; 415 - }; 416 - } 417 - { 418 - goPackagePath = "github.com/pelletier/go-toml"; 419 - fetch = { 420 - type = "git"; 421 - url = "https://github.com/pelletier/go-toml"; 422 - rev = "c2dbbc24a97911339e01bda0b8cabdbd8f13b602"; 423 - sha256 = "0v1dsqnk5zmn6ir8jgxijx14s47jvijlqfz3aq435snfrgybd5rz"; 424 - }; 425 - } 426 - { 427 - goPackagePath = "github.com/pkg/errors"; 428 - fetch = { 429 - type = "git"; 430 - url = "https://github.com/pkg/errors"; 431 - rev = "816c9085562cd7ee03e7f8188a1cfd942858cded"; 432 - sha256 = "1ws5crb7c70wdicavl6qr4g03nn6m92zd6wwp9n2ygz5c8rmxh8k"; 433 - }; 434 - } 435 - { 436 - goPackagePath = "github.com/pmezard/go-difflib"; 437 - fetch = { 438 - type = "git"; 439 - url = "https://github.com/pmezard/go-difflib"; 440 - rev = "792786c7400a136282c1664665ae0a8db921c6c2"; 441 - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"; 442 - }; 443 - } 444 - { 445 - goPackagePath = "github.com/prometheus/client_golang"; 446 - fetch = { 447 - type = "git"; 448 - url = "https://github.com/prometheus/client_golang"; 449 - rev = "e7e903064f5e9eb5da98208bae10b475d4db0f8c"; 450 - sha256 = "0mn6x6za7br81vc9s8d58ivylpx5j4xdq72n7kz3aybniif49r3i"; 451 - }; 452 - } 453 - { 454 - goPackagePath = "github.com/prometheus/client_model"; 455 - fetch = { 456 - type = "git"; 457 - url = "https://github.com/prometheus/client_model"; 458 - rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6"; 459 - sha256 = "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"; 460 - }; 461 - } 462 - { 463 - goPackagePath = "github.com/prometheus/common"; 464 - fetch = { 465 - type = "git"; 466 - url = "https://github.com/prometheus/common"; 467 - rev = "13ba4ddd0caa9c28ca7b7bffe1dfa9ed8d5ef207"; 468 - sha256 = "0i6mpcnsawi7f00rfmjfjq8llaplyzq4xrkrawlcgfd762p5hnp8"; 469 - }; 470 - } 471 - { 472 - goPackagePath = "github.com/prometheus/procfs"; 473 - fetch = { 474 - type = "git"; 475 - url = "https://github.com/prometheus/procfs"; 476 - rev = "65c1f6f8f0fc1e2185eb9863a3bc751496404259"; 477 - sha256 = "0jfzmr8642hr04naim1maa3wklxvcxklykri2z7k4ayizc974lkq"; 478 - }; 479 - } 480 - { 481 - goPackagePath = "github.com/shirou/gopsutil"; 482 - fetch = { 483 - type = "git"; 484 - url = "https://github.com/shirou/gopsutil"; 485 - rev = "071446942108a03a13cf0717275ad3bdbcb691b4"; 486 - sha256 = "0ai246kqsfm3xlnp4pp4d197djh6jrbjja832f355zhg3l9fqwfp"; 487 - }; 488 - } 489 - { 490 - goPackagePath = "github.com/shirou/w32"; 491 - fetch = { 492 - type = "git"; 493 - url = "https://github.com/shirou/w32"; 494 - rev = "bb4de0191aa41b5507caa14b0650cdbddcd9280b"; 495 - sha256 = "0xh5vqblhr2c3mlaswawx6nipi4rc2x73rbdvlkakmgi0nnl50m4"; 496 - }; 497 - } 498 - { 499 - goPackagePath = "github.com/spf13/afero"; 500 - fetch = { 501 - type = "git"; 502 - url = "https://github.com/spf13/afero"; 503 - rev = "d40851caa0d747393da1ffb28f7f9d8b4eeffebd"; 504 - sha256 = "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k"; 505 - }; 506 - } 507 - { 508 - goPackagePath = "github.com/spf13/cast"; 509 - fetch = { 510 - type = "git"; 511 - url = "https://github.com/spf13/cast"; 512 - rev = "8965335b8c7107321228e3e3702cab9832751bac"; 513 - sha256 = "177bk7lq40jbgv9p9r80aydpaccfk8ja3a7jjhfwiwk9r1pa4rr2"; 514 - }; 515 - } 516 - { 517 - goPackagePath = "github.com/spf13/jwalterweatherman"; 518 - fetch = { 519 - type = "git"; 520 - url = "https://github.com/spf13/jwalterweatherman"; 521 - rev = "4a4406e478ca629068e7768fc33f3f044173c0a6"; 522 - sha256 = "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8"; 523 - }; 524 - } 525 - { 526 - goPackagePath = "github.com/spf13/pflag"; 527 - fetch = { 528 - type = "git"; 529 - url = "https://github.com/spf13/pflag"; 530 - rev = "583c0c0531f06d5278b7d917446061adc344b5cd"; 531 - sha256 = "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5"; 532 - }; 533 - } 534 - { 535 - goPackagePath = "github.com/stretchr/testify"; 536 - fetch = { 537 - type = "git"; 538 - url = "https://github.com/stretchr/testify"; 539 - rev = "f35b8ab0b5a2cef36673838d662e249dd9c94686"; 540 - sha256 = "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs"; 541 - }; 542 - } 543 - { 544 - goPackagePath = "golang.org/x/crypto"; 545 - fetch = { 546 - type = "git"; 547 - url = "https://go.googlesource.com/crypto"; 548 - rev = "c10c31b5e94b6f7a0283272dc2bb27163dcea24b"; 549 - sha256 = "1a4k61xrwmr99fib2m1rcavbaxihnsmy1bgqhff5hkcv4n7bpsl2"; 550 - }; 551 - } 552 - { 553 - goPackagePath = "golang.org/x/mobile"; 554 - fetch = { 555 - type = "git"; 556 - url = "https://go.googlesource.com/mobile"; 557 - rev = "0ff817254b04da935cce10d2d1270ccf047fbbd7"; 558 - sha256 = "0hzsis106xh3hcydjribcar75va3ghp4hwbj9982h2msi27v54x4"; 559 - }; 560 - } 561 - { 562 - goPackagePath = "golang.org/x/net"; 563 - fetch = { 564 - type = "git"; 565 - url = "https://go.googlesource.com/net"; 566 - rev = "1c05540f6879653db88113bc4a2b70aec4bd491f"; 567 - sha256 = "0h8yqb0vcqgllgydrf9d3rzp83w8wlr8f0nm6r1rwf2qg30pq1pd"; 568 - }; 569 - } 570 - { 571 - goPackagePath = "golang.org/x/sys"; 572 - fetch = { 573 - type = "git"; 574 - url = "https://go.googlesource.com/sys"; 575 - rev = "a9d3bda3a223baa6bba6ef412cb273f0fd163c05"; 576 - sha256 = "1w45zc13xrjzl19s1sx74r5mg3lf2z2nm13wygcdq5r5pyjlhdz9"; 577 - }; 578 - } 579 - { 580 - goPackagePath = "golang.org/x/text"; 581 - fetch = { 582 - type = "git"; 583 - url = "https://go.googlesource.com/text"; 584 - rev = "b19bf474d317b857955b12035d2c5acb57ce8b01"; 585 - sha256 = "0wc8csaafp0ps9jb2hdk8d6xpyw1axhk1np73h0z17x09zk3ylcr"; 586 - }; 587 - } 588 - { 589 - goPackagePath = "golang.org/x/time"; 590 - fetch = { 591 - type = "git"; 592 - url = "https://go.googlesource.com/time"; 593 - rev = "a4bde12657593d5e90d0533a3e4fd95e635124cb"; 594 - sha256 = "07r227rrqgwkchm63dzmdyv5yplbla1vnwkn6qrr940l4psy15aw"; 595 - }; 596 - } 597 - { 598 - goPackagePath = "gopkg.in/inf.v0"; 599 - fetch = { 600 - type = "git"; 601 - url = "https://github.com/go-inf/inf"; 602 - rev = "3887ee99ecf07df5b447e9b00d9c0b2adaa9f3e4"; 603 - sha256 = "0rf3vwyb8aqnac9x9d6ax7z5526c45a16yjm2pvkijr6qgqz8b82"; 604 - }; 605 - } 606 - { 607 - goPackagePath = "gopkg.in/yaml.v2"; 608 - fetch = { 609 - type = "git"; 610 - url = "https://github.com/go-yaml/yaml"; 611 - rev = "d670f9405373e636a5a2765eea47fac0c9bc91a4"; 612 - sha256 = "1w1xid51n8v1mydn2m3vgggw8qgpd5a5sr62snsc77d99fpjsrs0"; 613 - }; 614 - } 615 - { 616 - goPackagePath = "gopkg.in/zorkian/go-datadog-api.v2"; 617 - fetch = { 618 - type = "git"; 619 - url = "https://github.com/zorkian/go-datadog-api"; 620 - rev = "d7b8b10db6a7eb1c1c2424b10a795a1662e80c9a"; 621 - sha256 = "069psfvgal6pkwc1s09gdy4mjn4ki4d1zvqnnzn7y15i5llb97kk"; 622 - }; 623 - } 624 - { 625 - goPackagePath = "k8s.io/api"; 626 - fetch = { 627 - type = "git"; 628 - url = "https://github.com/kubernetes/api"; 629 - rev = "9e5ffd1f1320950b238cfce291b926411f0af722"; 630 - sha256 = "03992x9n9b8w9rlf70wizn7iqk8cbyksxg0sdc1mm5jyzyvgksgf"; 631 - }; 632 - } 633 - { 634 - goPackagePath = "k8s.io/apimachinery"; 635 - fetch = { 636 - type = "git"; 637 - url = "https://github.com/kubernetes/apimachinery"; 638 - rev = "e386b2658ed20923da8cc9250e552f082899a1ee"; 639 - sha256 = "0lgwpsvx0gpnrdnkqc9m96xwkifdq50l7cj9rvh03njws4rbd8jz"; 640 - }; 641 - } 642 - { 643 - goPackagePath = "k8s.io/apiserver"; 644 - fetch = { 645 - type = "git"; 646 - url = "https://github.com/kubernetes/apiserver"; 647 - rev = "2cf66d2375dce045e1e02e1d7b74a0d1e34fedb3"; 648 - sha256 = "0x0am99n25njpbd1x20bhyadpv9w6qqjmspp1ahzpmdwjzrnsagg"; 649 - }; 650 - } 651 - { 652 - goPackagePath = "k8s.io/client-go"; 653 - fetch = { 654 - type = "git"; 655 - url = "https://github.com/kubernetes/client-go"; 656 - rev = "23781f4d6632d88e869066eaebb743857aa1ef9b"; 657 - sha256 = "0cazbcv7j7fgjs00arx3a8f0z0ikybmv16ccy0yg0wp0nbc05r6v"; 658 - }; 659 - } 660 - { 661 - goPackagePath = "k8s.io/metrics"; 662 - fetch = { 663 - type = "git"; 664 - url = "https://github.com/kubernetes/metrics"; 665 - rev = "0d9ea2ac660031c8f2726a735dda29441f396f99"; 666 - sha256 = "0bcsb7s4wlmrja35zvz4s10cf3w7dfn2ckjv6apxd1ykdjxnsk71"; 667 - }; 668 - } 669 - ]
+10 -23
pkgs/tools/networking/dd-agent/datadog-process-agent.nix
··· 1 - { lib, fetchFromGitHub, buildGoPackage }: 2 - 3 - buildGoPackage rec { 1 + { lib, datadog-agent }: 2 + datadog-agent.overrideAttrs (attrs: { 4 3 pname = "datadog-process-agent"; 5 - version = "6.11.1"; 6 - owner = "DataDog"; 7 - repo = "datadog-process-agent"; 8 - 9 - src = fetchFromGitHub { 10 - inherit owner repo; 11 - rev = version; 12 - sha256 = "0fc2flm0pa44mjxvn4fan0mkvg9yyg27w68xdgrnpdifj99kxxjf"; 13 - }; 14 - 15 - goDeps = ./datadog-process-agent-deps.nix; 16 - goPackagePath = "github.com/${owner}/${repo}"; 17 - 18 - meta = with lib; { 19 - description = "Live process collector for the DataDog Agent v6"; 20 - homepage = "https://www.datadoghq.com"; 21 - license = licenses.bsd3; 22 - maintainers = with maintainers; [ domenkozar rvl ]; 23 - }; 24 - } 4 + meta = with lib; 5 + attrs.meta // { 6 + description = "Live process collector for the DataDog Agent v7"; 7 + maintainers = with maintainers; [ domenkozar rvl ]; 8 + }; 9 + subPackages = [ "cmd/process-agent" ]; 10 + postInstall = null; 11 + })
+5 -4
pkgs/tools/networking/dd-agent/integrations-core.nix
··· 41 41 src = pkgs.fetchFromGitHub { 42 42 owner = "DataDog"; 43 43 repo = "integrations-core"; 44 - rev = "7e9bebbb5b79ac30c16814ecefdc8f5c63cb4ea4"; 45 - sha256 = "0yi7dlbd0rkzzl8cag713r86f40vl87aqrj97ral58csnnj7vfzb"; 44 + rev = version; 45 + sha256 = "0424zsnf747s10kfzv5y0m0ac9sgczip78yvghhrc2i089i5z2h4"; 46 46 }; 47 - version = "git-2018-09-18"; 47 + version = "7.30.1"; 48 48 49 49 # Build helper to build a single datadog integration package. 50 50 buildIntegration = { pname, ... }@args: python.pkgs.buildPythonPackage (args // { ··· 65 65 pname = "checks-base"; 66 66 sourceRoot = "datadog_checks_base"; 67 67 propagatedBuildInputs = with python.pkgs; [ 68 - requests protobuf prometheus-client uuid simplejson uptime 68 + requests protobuf prometheus-client simplejson uptime 69 69 ]; 70 70 }; 71 71 ··· 76 76 network = (ps: [ ps.psutil ]); 77 77 nginx = (ps: []); 78 78 postgres = (ps: with ps; [ pg8000 psycopg2 ]); 79 + process = (ps: []); 79 80 }; 80 81 81 82 # All integrations (default + extra):
+2 -2
pkgs/tools/security/pass/extensions/tomb.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pass-tomb"; 5 - version = "1.1"; 5 + version = "1.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "roddhjav"; 9 9 repo = "pass-tomb"; 10 10 rev = "v${version}"; 11 - sha256 = "0wxa673yyzasjlkpd5f3yl5zf7bhsw7h1jbhf6sdjz65bypr2596"; 11 + sha256 = "sha256-kbbMHmYmeyt7HM8YiNhknePm1vUaXWWXPWePKGpbU+o="; 12 12 }; 13 13 14 14 buildInputs = [ tomb ];
+13 -5
pkgs/top-level/all-packages.nix
··· 2001 2001 2002 2002 blink = libsForQt5.callPackage ../applications/networking/instant-messengers/blink { }; 2003 2003 2004 + blitz = callPackage ../development/libraries/blitz { }; 2005 + 2004 2006 blockbook = callPackage ../servers/blockbook { }; 2005 2007 2006 2008 blockhash = callPackage ../tools/graphics/blockhash { }; ··· 23540 23542 inherit (gnome2) libgnomeui GConf; 23541 23543 }; 23542 23544 23543 - corrscope = libsForQt5.callPackage ../applications/video/corrscope { }; 23545 + corrscope = libsForQt5.callPackage ../applications/video/corrscope { 23546 + ffmpeg = ffmpeg-full; 23547 + }; 23544 23548 23545 23549 coreimage = libsForQt5.callPackage ../applications/graphics/coreimage { }; 23546 23550 ··· 23640 23644 }; 23641 23645 datadog-process-agent = callPackage ../tools/networking/dd-agent/datadog-process-agent.nix { }; 23642 23646 datadog-integrations-core = extras: callPackage ../tools/networking/dd-agent/integrations-core.nix { 23643 - python = python27; 23647 + python = python3; 23644 23648 extraIntegrations = extras; 23645 23649 }; 23646 23650 ··· 27999 28003 imlib2 = imlib2-nox; 28000 28004 }; 28001 28005 28002 - watson = callPackage ../applications/office/watson { 28003 - pythonPackages = python3Packages; 28004 - }; 28006 + watson = callPackage ../applications/office/watson { }; 28005 28007 28006 28008 wapiti = callPackage ../tools/security/wapiti { }; 28007 28009 ··· 28999 29001 29000 29002 crawl = callPackage ../games/crawl { }; 29001 29003 29004 + inherit (import ../games/crossfire pkgs) 29005 + crossfire-server crossfire-arch crossfire-maps crossfire-client; 29006 + 29002 29007 crrcsim = callPackage ../games/crrcsim {}; 29003 29008 29004 29009 curseofwar = callPackage ../games/curseofwar { SDL = null; }; ··· 29007 29012 cutemaze = libsForQt5.callPackage ../games/cutemaze {}; 29008 29013 29009 29014 cuyo = callPackage ../games/cuyo { }; 29015 + 29016 + inherit (import ../games/deliantra pkgs) 29017 + deliantra-server deliantra-arch deliantra-maps deliantra-data; 29010 29018 29011 29019 devilutionx = callPackage ../games/devilutionx {}; 29012 29020
+113
pkgs/top-level/perl-packages.nix
··· 392 392 }; 393 393 }; 394 394 395 + AnyEventBDB = buildPerlPackage rec { 396 + pname = "AnyEvent-BDB"; 397 + version = "1.1"; 398 + src = fetchurl { 399 + url = "mirror://cpan/authors/id/M/ML/MLEHMANN/${pname}-${version}.tar.gz"; 400 + sha256 = "93e36010940464626e5f31b9faedd65e12ed8d1abf16ce052febf23f495aefc8"; 401 + }; 402 + buildInputs = [ CanaryStability ]; 403 + propagatedBuildInputs = [ BDB AnyEvent ]; 404 + meta = { 405 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 406 + }; 407 + }; 408 + 395 409 AnyEventCacheDNS = buildPerlModule { 396 410 pname = "AnyEvent-CacheDNS"; 397 411 version = "0.08"; ··· 440 454 propagatedBuildInputs = [ AnyEvent JSONXS ]; 441 455 meta = { 442 456 description = "Communicate with the i3 window manager"; 457 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 458 + }; 459 + }; 460 + 461 + AnyEventIRC = buildPerlPackage rec { 462 + pname = "AnyEvent-IRC"; 463 + version = "0.97"; 464 + src = fetchurl { 465 + url = "mirror://cpan/authors/id/E/EL/ELMEX/${pname}-${version}.tar.gz"; 466 + sha256 = "bfd7cf645c3c8c611471057128611447e20f1adf01516c69624cbd8bc77f5bf0"; 467 + }; 468 + propagatedBuildInputs = [ AnyEvent ObjectEvent commonsense ]; 469 + meta = { 470 + description = "An event based IRC protocol client API"; 443 471 license = with lib.licenses; [ artistic1 gpl1Plus ]; 444 472 }; 445 473 }; ··· 1309 1337 echo "LIB = ${pkgs.db.out}/lib" > config.in 1310 1338 echo "INCLUDE = ${pkgs.db.dev}/include" >> config.in 1311 1339 ''; 1340 + }; 1341 + 1342 + BDB = buildPerlPackage rec { 1343 + pname = "BDB"; 1344 + version = "1.92"; 1345 + src = fetchurl { 1346 + url = "mirror://cpan/authors/id/M/ML/MLEHMANN/${pname}-${version}.tar.gz"; 1347 + sha256 = "a3f2ca9d2baefc1aaa40908b2f9cb9292fda3e7d797e38bbd78eabb9d9daeb6b"; 1348 + }; 1349 + NIX_CFLAGS_COMPILE = "-I${pkgs.db4.dev}/include"; 1350 + NIX_CFLAGS_LINK = "-L${pkgs.db4.out}/lib -ldb"; 1351 + buildInputs = [ pkgs.db4 ]; 1352 + propagatedBuildInputs = [ commonsense ]; 1353 + meta = { 1354 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 1355 + }; 1312 1356 }; 1313 1357 1314 1358 BHooksEndOfScope = buildPerlPackage { ··· 3309 3353 }; 3310 3354 }; 3311 3355 3356 + CompressLZF = buildPerlPackage rec { 3357 + pname = "Compress-LZF"; 3358 + version = "3.8"; 3359 + src = fetchurl { 3360 + url = "mirror://cpan/authors/id/M/ML/MLEHMANN/${pname}-${version}.tar.gz"; 3361 + sha256 = "5d1f5df48ce13b4dee1cc9f278ecdbf8177877b0b98815a4eb3c91c3466716f2"; 3362 + }; 3363 + meta = { 3364 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 3365 + }; 3366 + }; 3367 + 3312 3368 CompressRawBzip2 = buildPerlPackage { 3313 3369 pname = "Compress-Raw-Bzip2"; 3314 3370 version = "2.096"; ··· 3796 3852 buildInputs = [ CanaryStability ]; 3797 3853 meta = { 3798 3854 }; 3855 + }; 3856 + 3857 + CoroEV = buildPerlPackage rec { 3858 + pname = "CoroEV"; 3859 + version = "6.55"; 3860 + src = fetchurl { 3861 + url = "mirror://cpan/authors/id/M/ML/MLEHMANN/Coro-${version}.tar.gz"; 3862 + sha256 = "43d79c027170fcda4ca0ee92734605bc95e122686f5071b94d90764c81ae8a30"; 3863 + }; 3864 + buildInputs = [ CanaryStability ]; 3865 + propagatedBuildInputs = [ AnyEvent Coro EV Guard commonsense ]; 3866 + meta = { 3867 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 3868 + }; 3869 + preConfigure = '' 3870 + cd EV 3871 + ''; 3799 3872 }; 3800 3873 3801 3874 Corona = buildPerlPackage { ··· 5621 5694 }; 5622 5695 }; 5623 5696 5697 + Deliantra = buildPerlPackage rec { 5698 + pname = "Deliantra"; 5699 + version = "2.01"; 5700 + src = fetchurl { 5701 + url = "mirror://cpan/authors/id/M/ML/MLEHMANN/${pname}-${version}.tar.gz"; 5702 + sha256 = "2716d9b1f05627d60942ce0634b9c1a25109b164818285d45b609ae8596e2b17"; 5703 + }; 5704 + propagatedBuildInputs = [ AnyEvent CompressLZF JSONXS commonsense ]; 5705 + meta = { 5706 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 5707 + }; 5708 + }; 5709 + 5624 5710 DevelCaller = buildPerlPackage { 5625 5711 pname = "Devel-Caller"; 5626 5712 version = "2.06"; ··· 6470 6556 src = fetchurl { 6471 6557 url = "mirror://cpan/authors/id/M/MI/MIKEM/DigestMD4/Digest-MD4-1.9.tar.gz"; 6472 6558 sha256 = "19ma1hmvgiznq95ngzvm6v4dfxc9zmi69k8iyfcg6w14lfxi0lb6"; 6559 + }; 6560 + }; 6561 + 6562 + DigestMD5 = buildPerlPackage rec { 6563 + pname = "Digest-MD5"; 6564 + version = "2.55"; 6565 + src = fetchurl { 6566 + url = "mirror://cpan/authors/id/G/GA/GAAS/${pname}-${version}.tar.gz"; 6567 + sha256 = "03b198a2d14425d951e5e50a885d3818c3162c8fe4c21e18d7798a9a179d0e3c"; 6568 + }; 6569 + meta = { 6570 + description = "Perl interface to the MD-5 algorithm"; 6571 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 6473 6572 }; 6474 6573 }; 6475 6574 ··· 16244 16343 }; 16245 16344 meta = { 16246 16345 description = "Per object accessors"; 16346 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 16347 + }; 16348 + }; 16349 + 16350 + ObjectEvent = buildPerlPackage rec { 16351 + pname = "Object-Event"; 16352 + version = "1.23"; 16353 + src = fetchurl { 16354 + url = "mirror://cpan/authors/id/E/EL/ELMEX/${pname}-${version}.tar.gz"; 16355 + sha256 = "ab6bb80508f4fddaf2d51b20ca876aab038582a86b5228e6435411348af53c82"; 16356 + }; 16357 + propagatedBuildInputs = [ AnyEvent commonsense ]; 16358 + meta = { 16359 + description = "A class that provides an event callback interface"; 16247 16360 license = with lib.licenses; [ artistic1 gpl1Plus ]; 16248 16361 }; 16249 16362 };