diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 9835b7654612..14e810f972cd 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -220,3 +220,6 @@
/pkgs/development/compilers/go @kalbasit @Mic92 @zowoq
/pkgs/development/go-modules @kalbasit @Mic92 @zowoq
/pkgs/development/go-packages @kalbasit @Mic92 @zowoq
+
+# Cinnamon
+/pkgs/desktops/cinnamon @mkg20001
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 4e7d4746385c..184089882ec2 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -1162,6 +1162,12 @@
githubId = 37907;
name = "Julian Stecklina";
};
+ bloomvdomino = {
+ name = "Laura Fäßler";
+ email = "0x@ytex.de";
+ github = "bloomvdomino";
+ githubId = 33204710;
+ };
bluescreen303 = {
email = "mathijs@bluescreen303.nl";
github = "bluescreen303";
diff --git a/maintainers/scripts/check-hydra-by-maintainer.nix b/maintainers/scripts/check-hydra-by-maintainer.nix
new file mode 100644
index 000000000000..cecf65ec66dc
--- /dev/null
+++ b/maintainers/scripts/check-hydra-by-maintainer.nix
@@ -0,0 +1,67 @@
+{ maintainer }:
+let
+ pkgs = import ./../../default.nix { };
+ maintainer_ = pkgs.lib.maintainers.${maintainer};
+ packagesWith = cond: return: prefix: set:
+ (pkgs.lib.flatten
+ (pkgs.lib.mapAttrsToList
+ (name: pkg:
+ let
+ result = builtins.tryEval
+ (
+ if pkgs.lib.isDerivation pkg && cond name pkg then
+ # Skip packages whose closure fails on evaluation.
+ # This happens for pkgs like `python27Packages.djangoql`
+ # that have disabled Python pkgs as dependencies.
+ builtins.seq pkg.outPath
+ [ (return "${prefix}${name}") ]
+ else if pkg.recurseForDerivations or false || pkg.recurseForRelease or false
+ # then packagesWith cond return pkg
+ then packagesWith cond return "${name}." pkg
+ else [ ]
+ );
+ in
+ if result.success then result.value
+ else [ ]
+ )
+ set
+ )
+ );
+
+ packages = packagesWith
+ (name: pkg:
+ (
+ if builtins.hasAttr "meta" pkg && builtins.hasAttr "maintainers" pkg.meta
+ then
+ (
+ if builtins.isList pkg.meta.maintainers
+ then builtins.elem maintainer_ pkg.meta.maintainers
+ else maintainer_ == pkg.meta.maintainers
+ )
+ else false
+ )
+ )
+ (name: name)
+ ("")
+ pkgs;
+
+in
+pkgs.stdenv.mkDerivation {
+ name = "nixpkgs-update-script";
+ buildCommand = ''
+ echo ""
+ echo "----------------------------------------------------------------"
+ echo ""
+ echo "nix-shell maintainers/scripts/check-hydra-by-maintainer.nix --argstr maintainer SuperSandro2000"
+ echo ""
+ echo "----------------------------------------------------------------"
+ exit 1
+ '';
+ shellHook = ''
+ unset shellHook # do not contaminate nested shells
+ echo "Please stand by"
+ echo nix-shell -p hydra-check --run "hydra-check ${builtins.concatStringsSep " " packages}"
+ nix-shell -p hydra-check --run "hydra-check ${builtins.concatStringsSep " " packages}"
+ exit $?
+ '';
+}
diff --git a/nixos/doc/manual/release-notes/rl-2103.xml b/nixos/doc/manual/release-notes/rl-2103.xml
index 432de831cb67..05daca1d710c 100644
--- a/nixos/doc/manual/release-notes/rl-2103.xml
+++ b/nixos/doc/manual/release-notes/rl-2103.xml
@@ -286,6 +286,16 @@
= true;
+
+
+ The services.tor module has a new exhaustively typed option following RFC 0042; backward compatibility with old options has been preserved when aliasing was possible.
+ The corresponding systemd service has been hardened,
+ but there is a chance that the service still requires more permissions,
+ so please report any related trouble on the bugtracker.
+ Onion services v3 are now supported in .
+ A new option as been introduced for allowing connections on all the TCP ports configured.
+
+
The options services.slurm.dbdserver.storagePass
@@ -309,6 +319,14 @@
Based on , existing installations will continue to work.
+
+
+ fish-foreign-env is now an alias for the
+ fishPlugins.foreign-env package, in which the fish
+ functions have been relocated to the
+ vendor_functions.d directory to be loaded automatically.
+
+
The prometheus json exporter is now managed by the prometheus community. Together with additional features
diff --git a/nixos/modules/hardware/opentabletdriver.nix b/nixos/modules/hardware/opentabletdriver.nix
index b759bcf034ee..0f34d903f68b 100644
--- a/nixos/modules/hardware/opentabletdriver.nix
+++ b/nixos/modules/hardware/opentabletdriver.nix
@@ -24,6 +24,15 @@ in
'';
};
+ package = mkOption {
+ type = types.package;
+ default = pkgs.opentabletdriver;
+ defaultText = "pkgs.opentabletdriver";
+ description = ''
+ OpenTabletDriver derivation to use.
+ '';
+ };
+
daemon = {
enable = mkOption {
default = true;
@@ -37,9 +46,9 @@ in
};
config = mkIf cfg.enable {
- environment.systemPackages = with pkgs; [ opentabletdriver ];
+ environment.systemPackages = [ cfg.package ];
- services.udev.packages = with pkgs; [ opentabletdriver ];
+ services.udev.packages = [ cfg.package ];
boot.blacklistedKernelModules = cfg.blacklistedKernelModules;
@@ -50,7 +59,7 @@ in
serviceConfig = {
Type = "simple";
- ExecStart = "${opentabletdriver}/bin/otd-daemon -c ${opentabletdriver}/lib/OpenTabletDriver/Configurations";
+ ExecStart = "${cfg.package}/bin/otd-daemon -c ${cfg.package}/lib/OpenTabletDriver/Configurations";
Restart = "on-failure";
};
};
diff --git a/nixos/modules/installer/cd-dvd/system-tarball-fuloong2f.nix b/nixos/modules/installer/cd-dvd/system-tarball-fuloong2f.nix
index 6d4ba96dba0c..8159576a62ac 100644
--- a/nixos/modules/installer/cd-dvd/system-tarball-fuloong2f.nix
+++ b/nixos/modules/installer/cd-dvd/system-tarball-fuloong2f.nix
@@ -104,7 +104,7 @@ in
'';
# Some more help text.
- services.mingetty.helpLine =
+ services.getty.helpLine =
''
Log in as "root" with an empty password. ${
diff --git a/nixos/modules/installer/cd-dvd/system-tarball-sheevaplug.nix b/nixos/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
index 0e67ae7de698..95579f3ca06d 100644
--- a/nixos/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
+++ b/nixos/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
@@ -122,7 +122,7 @@ in
device = "/dev/something";
};
- services.mingetty = {
+ services.getty = {
# Some more help text.
helpLine = ''
Log in as "root" with an empty password. ${
diff --git a/nixos/modules/misc/documentation.nix b/nixos/modules/misc/documentation.nix
index fe0263f158f4..d81d6c6cb9b8 100644
--- a/nixos/modules/misc/documentation.nix
+++ b/nixos/modules/misc/documentation.nix
@@ -261,7 +261,7 @@ in
++ optionals cfg.doc.enable ([ manual.manualHTML nixos-help ]
++ optionals config.services.xserver.enable [ pkgs.nixos-icons ]);
- services.mingetty.helpLine = mkIf cfg.doc.enable (
+ services.getty.helpLine = mkIf cfg.doc.enable (
"\nRun 'nixos-help' for the NixOS manual."
);
})
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 5041f2ace227..8fd5d4519fdd 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -852,7 +852,7 @@
./services/torrent/peerflix.nix
./services/torrent/rtorrent.nix
./services/torrent/transmission.nix
- ./services/ttys/agetty.nix
+ ./services/ttys/getty.nix
./services/ttys/gpm.nix
./services/ttys/kmscon.nix
./services/wayland/cage.nix
diff --git a/nixos/modules/profiles/installation-device.nix b/nixos/modules/profiles/installation-device.nix
index e68ea1b08776..7dc493fb495d 100644
--- a/nixos/modules/profiles/installation-device.nix
+++ b/nixos/modules/profiles/installation-device.nix
@@ -45,10 +45,10 @@ with lib;
};
# Automatically log in at the virtual consoles.
- services.mingetty.autologinUser = "nixos";
+ services.getty.autologinUser = "nixos";
# Some more help text.
- services.mingetty.helpLine = ''
+ services.getty.helpLine = ''
The "nixos" and "root" accounts have empty passwords.
An ssh daemon is running. You then must set a password
diff --git a/nixos/modules/programs/fish.nix b/nixos/modules/programs/fish.nix
index 50d1077dd410..34a0dc6a2df3 100644
--- a/nixos/modules/programs/fish.nix
+++ b/nixos/modules/programs/fish.nix
@@ -112,7 +112,7 @@ in
environment.etc."fish/nixos-env-preinit.fish".text = ''
# This happens before $__fish_datadir/config.fish sets fish_function_path, so it is currently
# unset. We set it and then completely erase it, leaving its configuration to $__fish_datadir/config.fish
- set fish_function_path ${pkgs.fish-foreign-env}/share/fish-foreign-env/functions $__fish_datadir/functions
+ set fish_function_path ${pkgs.fishPlugins.foreign-env}/share/fish/vendor_functions.d $__fish_datadir/functions
# source the NixOS environment config
if [ -z "$__NIXOS_SET_ENVIRONMENT_DONE" ]
@@ -128,7 +128,7 @@ in
# if we haven't sourced the general config, do it
if not set -q __fish_nixos_general_config_sourced
- set fish_function_path ${pkgs.fish-foreign-env}/share/fish-foreign-env/functions $fish_function_path
+ set --prepend fish_function_path ${pkgs.fishPlugins.foreign-env}/share/fish/vendor_functions.d
fenv source /etc/fish/foreign-env/shellInit > /dev/null
set -e fish_function_path[1]
@@ -142,7 +142,7 @@ in
# if we haven't sourced the login config, do it
status --is-login; and not set -q __fish_nixos_login_config_sourced
and begin
- set fish_function_path ${pkgs.fish-foreign-env}/share/fish-foreign-env/functions $fish_function_path
+ set --prepend fish_function_path ${pkgs.fishPlugins.foreign-env}/share/fish/vendor_functions.d
fenv source /etc/fish/foreign-env/loginShellInit > /dev/null
set -e fish_function_path[1]
@@ -158,7 +158,7 @@ in
and begin
${fishAliases}
- set fish_function_path ${pkgs.fish-foreign-env}/share/fish-foreign-env/functions $fish_function_path
+ set --prepend fish_function_path ${pkgs.fishPlugins.foreign-env}/share/fish/vendor_functions.d
fenv source /etc/fish/foreign-env/interactiveShellInit > /dev/null
set -e fish_function_path[1]
diff --git a/nixos/modules/services/development/hoogle.nix b/nixos/modules/services/development/hoogle.nix
index cbf13f027de2..a661e3acae3e 100644
--- a/nixos/modules/services/development/hoogle.nix
+++ b/nixos/modules/services/development/hoogle.nix
@@ -49,6 +49,11 @@ in {
default = "https://hoogle.haskell.org";
};
+ host = mkOption {
+ type = types.str;
+ description = "Set the host to bind on.";
+ default = "127.0.0.1";
+ };
};
config = mkIf cfg.enable {
@@ -59,7 +64,7 @@ in {
serviceConfig = {
Restart = "always";
- ExecStart = ''${hoogleEnv}/bin/hoogle server --local --port ${toString cfg.port} --home ${cfg.home}'';
+ ExecStart = ''${hoogleEnv}/bin/hoogle server --local --port ${toString cfg.port} --home ${cfg.home} --host ${cfg.host}'';
DynamicUser = true;
diff --git a/nixos/modules/services/mail/mailman.nix b/nixos/modules/services/mail/mailman.nix
index bf19da32324a..832b496f31c9 100644
--- a/nixos/modules/services/mail/mailman.nix
+++ b/nixos/modules/services/mail/mailman.nix
@@ -367,7 +367,7 @@ in {
mailman-web-setup = {
description = "Prepare mailman-web files and database";
- before = [ "uwsgi.service" "mailman-uwsgi.service" ];
+ before = [ "mailman-uwsgi.service" ];
requiredBy = [ "mailman-uwsgi.service" ];
restartTriggers = [ config.environment.etc."mailman3/settings.py".source ];
script = ''
diff --git a/nixos/modules/services/networking/privoxy.nix b/nixos/modules/services/networking/privoxy.nix
index e3b34cb0c616..7caae3282032 100644
--- a/nixos/modules/services/networking/privoxy.nix
+++ b/nixos/modules/services/networking/privoxy.nix
@@ -16,7 +16,7 @@ let
${concatMapStrings (f: "actionsfile ${f}\n") cfg.actionsFiles}
${concatMapStrings (f: "filterfile ${f}\n") cfg.filterFiles}
'' + optionalString cfg.enableTor ''
- forward-socks4a / ${config.services.tor.client.socksListenAddressFaster} .
+ forward-socks5t / 127.0.0.1:9063 .
toggle 1
enable-remote-toggle 0
enable-edit-actions 0
@@ -123,6 +123,11 @@ in
serviceConfig.ProtectSystem = "full";
};
+ services.tor.settings.SOCKSPort = mkIf cfg.enableTor [
+ # Route HTTP traffic over a faster port (without IsolateDestAddr).
+ { addr = "127.0.0.1"; port = 9063; IsolateDestAddr = false; }
+ ];
+
};
meta.maintainers = with lib.maintainers; [ rnhmjoj ];
diff --git a/nixos/modules/services/security/tor.nix b/nixos/modules/services/security/tor.nix
index 1cceee065b1b..390dcfccfec3 100644
--- a/nixos/modules/services/security/tor.nix
+++ b/nixos/modules/services/security/tor.nix
@@ -1,297 +1,300 @@
{ config, lib, pkgs, ... }:
+with builtins;
with lib;
let
cfg = config.services.tor;
- torDirectory = "/var/lib/tor";
- torRunDirectory = "/run/tor";
-
- opt = name: value: optionalString (value != null) "${name} ${value}";
- optint = name: value: optionalString (value != null && value != 0) "${name} ${toString value}";
-
- isolationOptions = {
- type = types.listOf (types.enum [
- "IsolateClientAddr"
- "IsolateSOCKSAuth"
- "IsolateClientProtocol"
- "IsolateDestPort"
- "IsolateDestAddr"
+ stateDir = "/var/lib/tor";
+ runDir = "/run/tor";
+ descriptionGeneric = option: ''
+ See torrc manual.
+ '';
+ bindsPrivilegedPort =
+ any (p0:
+ let p1 = if p0 ? "port" then p0.port else p0; in
+ if p1 == "auto" then false
+ else let p2 = if isInt p1 then p1 else toInt p1; in
+ p1 != null && 0 < p2 && p2 < 1024)
+ (flatten [
+ cfg.settings.ORPort
+ cfg.settings.DirPort
+ cfg.settings.DNSPort
+ cfg.settings.ExtORPort
+ cfg.settings.HTTPTunnelPort
+ cfg.settings.NATDPort
+ cfg.settings.SOCKSPort
+ cfg.settings.TransPort
]);
+ optionBool = optionName: mkOption {
+ type = with types; nullOr bool;
+ default = null;
+ description = descriptionGeneric optionName;
+ };
+ optionInt = optionName: mkOption {
+ type = with types; nullOr int;
+ default = null;
+ description = descriptionGeneric optionName;
+ };
+ optionString = optionName: mkOption {
+ type = with types; nullOr str;
+ default = null;
+ description = descriptionGeneric optionName;
+ };
+ optionStrings = optionName: mkOption {
+ type = with types; listOf str;
default = [];
- example = [
- "IsolateClientAddr"
- "IsolateSOCKSAuth"
- "IsolateClientProtocol"
- "IsolateDestPort"
- "IsolateDestAddr"
+ description = descriptionGeneric optionName;
+ };
+ optionAddress = mkOption {
+ type = with types; nullOr str;
+ default = null;
+ example = "0.0.0.0";
+ description = ''
+ IPv4 or IPv6 (if between brackets) address.
+ '';
+ };
+ optionUnix = mkOption {
+ type = with types; nullOr path;
+ default = null;
+ description = ''
+ Unix domain socket path to use.
+ '';
+ };
+ optionPort = mkOption {
+ type = with types; nullOr (oneOf [port (enum ["auto"])]);
+ default = null;
+ };
+ optionPorts = optionName: mkOption {
+ type = with types; listOf port;
+ default = [];
+ description = descriptionGeneric optionName;
+ };
+ optionIsolablePort = with types; oneOf [
+ port (enum ["auto"])
+ (submodule ({config, ...}: {
+ options = {
+ addr = optionAddress;
+ port = optionPort;
+ flags = optionFlags;
+ SessionGroup = mkOption { type = nullOr int; default = null; };
+ } // genAttrs isolateFlags (name: mkOption { type = types.bool; default = false; });
+ config = {
+ flags = filter (name: config.${name} == true) isolateFlags ++
+ optional (config.SessionGroup != null) "SessionGroup=${toString config.SessionGroup}";
+ };
+ }))
+ ];
+ optionIsolablePorts = optionName: mkOption {
+ default = [];
+ type = with types; either optionIsolablePort (listOf optionIsolablePort);
+ description = descriptionGeneric optionName;
+ };
+ isolateFlags = [
+ "IsolateClientAddr"
+ "IsolateClientProtocol"
+ "IsolateDestAddr"
+ "IsolateDestPort"
+ "IsolateSOCKSAuth"
+ "KeepAliveIsolateSOCKSAuth"
+ ];
+ optionSOCKSPort = doConfig: let
+ flags = [
+ "CacheDNS" "CacheIPv4DNS" "CacheIPv6DNS" "GroupWritable" "IPv6Traffic"
+ "NoDNSRequest" "NoIPv4Traffic" "NoOnionTraffic" "OnionTrafficOnly"
+ "PreferIPv6" "PreferIPv6Automap" "PreferSOCKSNoAuth" "UseDNSCache"
+ "UseIPv4Cache" "UseIPv6Cache" "WorldWritable"
+ ] ++ isolateFlags;
+ in with types; oneOf [
+ port (submodule ({config, ...}: {
+ options = {
+ unix = optionUnix;
+ addr = optionAddress;
+ port = optionPort;
+ flags = optionFlags;
+ SessionGroup = mkOption { type = nullOr int; default = null; };
+ } // genAttrs flags (name: mkOption { type = types.bool; default = false; });
+ config = mkIf doConfig { # Only add flags in SOCKSPort to avoid duplicates
+ flags = filter (name: config.${name} == true) flags ++
+ optional (config.SessionGroup != null) "SessionGroup=${toString config.SessionGroup}";
+ };
+ }))
];
- description = "Tor isolation options";
+ optionFlags = mkOption {
+ type = with types; listOf str;
+ default = [];
+ };
+ optionORPort = optionName: mkOption {
+ default = [];
+ example = 443;
+ type = with types; oneOf [port (enum ["auto"]) (listOf (oneOf [
+ port
+ (enum ["auto"])
+ (submodule ({config, ...}:
+ let flags = [ "IPv4Only" "IPv6Only" "NoAdvertise" "NoListen" ];
+ in {
+ options = {
+ addr = optionAddress;
+ port = optionPort;
+ flags = optionFlags;
+ } // genAttrs flags (name: mkOption { type = types.bool; default = false; });
+ config = {
+ flags = filter (name: config.${name} == true) flags;
+ };
+ }))
+ ]))];
+ description = descriptionGeneric optionName;
+ };
+ optionBandwith = optionName: mkOption {
+ type = with types; nullOr (either int str);
+ default = null;
+ description = descriptionGeneric optionName;
+ };
+ optionPath = optionName: mkOption {
+ type = with types; nullOr path;
+ default = null;
+ description = descriptionGeneric optionName;
};
-
- torRc = ''
- User tor
- DataDirectory ${torDirectory}
- ${optionalString cfg.enableGeoIP ''
- GeoIPFile ${cfg.package.geoip}/share/tor/geoip
- GeoIPv6File ${cfg.package.geoip}/share/tor/geoip6
- ''}
-
- ${optint "ControlPort" cfg.controlPort}
- ${optionalString cfg.controlSocket.enable "ControlPort unix:${torRunDirectory}/control GroupWritable RelaxDirModeCheck"}
- ''
- # Client connection config
- + optionalString cfg.client.enable ''
- SOCKSPort ${cfg.client.socksListenAddress} ${toString cfg.client.socksIsolationOptions}
- SOCKSPort ${cfg.client.socksListenAddressFaster}
- ${opt "SocksPolicy" cfg.client.socksPolicy}
-
- ${optionalString cfg.client.transparentProxy.enable ''
- TransPort ${cfg.client.transparentProxy.listenAddress} ${toString cfg.client.transparentProxy.isolationOptions}
- ''}
-
- ${optionalString cfg.client.dns.enable ''
- DNSPort ${cfg.client.dns.listenAddress} ${toString cfg.client.dns.isolationOptions}
- AutomapHostsOnResolve 1
- AutomapHostsSuffixes ${concatStringsSep "," cfg.client.dns.automapHostsSuffixes}
- ''}
- ''
- # Explicitly disable the SOCKS server if the client is disabled. In
- # particular, this makes non-anonymous hidden services possible.
- + optionalString (! cfg.client.enable) ''
- SOCKSPort 0
- ''
- # Relay config
- + optionalString cfg.relay.enable ''
- ORPort ${toString cfg.relay.port}
- ${opt "Address" cfg.relay.address}
- ${opt "Nickname" cfg.relay.nickname}
- ${opt "ContactInfo" cfg.relay.contactInfo}
-
- ${optint "RelayBandwidthRate" cfg.relay.bandwidthRate}
- ${optint "RelayBandwidthBurst" cfg.relay.bandwidthBurst}
- ${opt "AccountingMax" cfg.relay.accountingMax}
- ${opt "AccountingStart" cfg.relay.accountingStart}
-
- ${if (cfg.relay.role == "exit") then
- opt "ExitPolicy" cfg.relay.exitPolicy
- else
- "ExitPolicy reject *:*"}
-
- ${optionalString (elem cfg.relay.role ["bridge" "private-bridge"]) ''
- BridgeRelay 1
- ServerTransportPlugin ${concatStringsSep "," cfg.relay.bridgeTransports} exec ${pkgs.obfs4}/bin/obfs4proxy managed
- ExtORPort auto
- ${optionalString (cfg.relay.role == "private-bridge") ''
- ExtraInfoStatistics 0
- PublishServerDescriptor 0
- ''}
- ''}
- ''
- # Hidden services
- + concatStrings (flip mapAttrsToList cfg.hiddenServices (n: v: ''
- HiddenServiceDir ${torDirectory}/onion/${v.name}
- ${optionalString (v.version != null) "HiddenServiceVersion ${toString v.version}"}
- ${flip concatMapStrings v.map (p: ''
- HiddenServicePort ${toString p.port} ${p.destination}
- '')}
- ${optionalString (v.authorizeClient != null) ''
- HiddenServiceAuthorizeClient ${v.authorizeClient.authType} ${concatStringsSep "," v.authorizeClient.clientNames}
- ''}
- ''))
- + cfg.extraConfig;
-
- torRcFile = pkgs.writeText "torrc" torRc;
-
+ mkValueString = k: v:
+ if v == null then ""
+ else if isBool v then
+ (if v then "1" else "0")
+ else if v ? "unix" && v.unix != null then
+ "unix:"+v.unix +
+ optionalString (v ? "flags") (" " + concatStringsSep " " v.flags)
+ else if v ? "port" && v.port != null then
+ optionalString (v ? "addr" && v.addr != null) "${v.addr}:" +
+ toString v.port +
+ optionalString (v ? "flags") (" " + concatStringsSep " " v.flags)
+ else if k == "ServerTransportPlugin" then
+ optionalString (v.transports != []) "${concatStringsSep "," v.transports} exec ${v.exec}"
+ else if k == "HidServAuth" then
+ concatMapStringsSep "\n${k} " (settings: settings.onion + " " settings.auth) v
+ else generators.mkValueStringDefault {} v;
+ genTorrc = settings:
+ generators.toKeyValue {
+ listsAsDuplicateKeys = true;
+ mkKeyValue = k: generators.mkKeyValueDefault { mkValueString = mkValueString k; } " " k;
+ }
+ (lib.mapAttrs (k: v:
+ # Not necesssary, but prettier rendering
+ if elem k [ "AutomapHostsSuffixes" "DirPolicy" "ExitPolicy" "SocksPolicy" ]
+ && v != []
+ then concatStringsSep "," v
+ else v)
+ (lib.filterAttrs (k: v: !(v == null || v == ""))
+ settings));
+ torrc = pkgs.writeText "torrc" (
+ genTorrc cfg.settings +
+ concatStrings (mapAttrsToList (name: onion:
+ "HiddenServiceDir ${onion.path}\n" +
+ genTorrc onion.settings) cfg.relay.onionServices)
+ );
in
{
imports = [
- (mkRemovedOptionModule [ "services" "tor" "client" "privoxy" "enable" ] ''
- Use services.privoxy.enable and services.privoxy.enableTor instead.
- '')
- (mkRenamedOptionModule [ "services" "tor" "relay" "portSpec" ] [ "services" "tor" "relay" "port" ])
+ (mkRenamedOptionModule [ "services" "tor" "client" "dns" "automapHostsSuffixes" ] [ "services" "tor" "settings" "AutomapHostsSuffixes" ])
+ (mkRemovedOptionModule [ "services" "tor" "client" "dns" "isolationOptions" ] "Use services.tor.settings.DNSPort instead.")
+ (mkRemovedOptionModule [ "services" "tor" "client" "dns" "listenAddress" ] "Use services.tor.settings.DNSPort instead.")
+ (mkRemovedOptionModule [ "services" "tor" "client" "privoxy" "enable" ] "Use services.privoxy.enable and services.privoxy.enableTor instead.")
+ (mkRemovedOptionModule [ "services" "tor" "client" "socksIsolationOptions" ] "Use services.tor.settings.SOCKSPort instead.")
+ (mkRemovedOptionModule [ "services" "tor" "client" "socksListenAddressFaster" ] "Use services.tor.settings.SOCKSPort instead.")
+ (mkRenamedOptionModule [ "services" "tor" "client" "socksPolicy" ] [ "services" "tor" "settings" "SocksPolicy" ])
+ (mkRemovedOptionModule [ "services" "tor" "client" "transparentProxy" "isolationOptions" ] "Use services.tor.settings.TransPort instead.")
+ (mkRemovedOptionModule [ "services" "tor" "client" "transparentProxy" "listenAddress" ] "Use services.tor.settings.TransPort instead.")
+ (mkRenamedOptionModule [ "services" "tor" "controlPort" ] [ "services" "tor" "settings" "ControlPort" ])
+ (mkRemovedOptionModule [ "services" "tor" "extraConfig" ] "Plese use services.tor.settings instead.")
+ (mkRenamedOptionModule [ "services" "tor" "hiddenServices" ] [ "services" "tor" "relay" "onionServices" ])
+ (mkRenamedOptionModule [ "services" "tor" "relay" "accountingMax" ] [ "services" "tor" "settings" "AccountingMax" ])
+ (mkRenamedOptionModule [ "services" "tor" "relay" "accountingStart" ] [ "services" "tor" "settings" "AccountingStart" ])
+ (mkRenamedOptionModule [ "services" "tor" "relay" "address" ] [ "services" "tor" "settings" "Address" ])
+ (mkRenamedOptionModule [ "services" "tor" "relay" "bandwidthBurst" ] [ "services" "tor" "settings" "BandwidthBurst" ])
+ (mkRenamedOptionModule [ "services" "tor" "relay" "bandwidthRate" ] [ "services" "tor" "settings" "BandwidthRate" ])
+ (mkRenamedOptionModule [ "services" "tor" "relay" "bridgeTransports" ] [ "services" "tor" "settings" "ServerTransportPlugin" "transports" ])
+ (mkRenamedOptionModule [ "services" "tor" "relay" "contactInfo" ] [ "services" "tor" "settings" "ContactInfo" ])
+ (mkRenamedOptionModule [ "services" "tor" "relay" "exitPolicy" ] [ "services" "tor" "settings" "ExitPolicy" ])
(mkRemovedOptionModule [ "services" "tor" "relay" "isBridge" ] "Use services.tor.relay.role instead.")
(mkRemovedOptionModule [ "services" "tor" "relay" "isExit" ] "Use services.tor.relay.role instead.")
+ (mkRenamedOptionModule [ "services" "tor" "relay" "nickname" ] [ "services" "tor" "settings" "Nickname" ])
+ (mkRenamedOptionModule [ "services" "tor" "relay" "port" ] [ "services" "tor" "settings" "ORPort" ])
+ (mkRenamedOptionModule [ "services" "tor" "relay" "portSpec" ] [ "services" "tor" "settings" "ORPort" ])
];
options = {
services.tor = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = ''
- Enable the Tor daemon. By default, the daemon is run without
- relay, exit, bridge or client connectivity.
- '';
- };
+ enable = mkEnableOption ''Tor daemon.
+ By default, the daemon is run without
+ relay, exit, bridge or client connectivity'';
+
+ openFirewall = mkEnableOption "opening of the relay port(s) in the firewall";
package = mkOption {
type = types.package;
default = pkgs.tor;
defaultText = "pkgs.tor";
example = literalExample "pkgs.tor";
- description = ''
- Tor package to use
- '';
+ description = "Tor package to use.";
};
- enableGeoIP = mkOption {
- type = types.bool;
- default = true;
- description = ''
- Whenever to configure Tor daemon to use GeoIP databases.
+ enableGeoIP = mkEnableOption ''use of GeoIP databases.
+ Disabling this will disable by-country statistics for bridges and relays
+ and some client and third-party software functionality'' // { default = true; };
- Disabling this will disable by-country statistics for
- bridges and relays and some client and third-party software
- functionality.
- '';
- };
-
- extraConfig = mkOption {
- type = types.lines;
- default = "";
- description = ''
- Extra configuration. Contents will be added verbatim to the
- configuration file at the end.
- '';
- };
-
- controlPort = mkOption {
- type = types.nullOr (types.either types.int types.str);
- default = null;
- example = 9051;
- description = ''
- If set, Tor will accept connections on the specified port
- and allow them to control the tor process.
- '';
- };
-
- controlSocket = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = ''
- Whether to enable Tor control socket. Control socket is created
- in ${torRunDirectory}/control
- '';
- };
- };
+ controlSocket.enable = mkEnableOption ''control socket,
+ created in ${runDir}/control'';
client = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = ''
- Whether to enable Tor daemon to route application
- connections. You might want to disable this if you plan
- running a dedicated Tor relay.
- '';
- };
+ enable = mkEnableOption ''the routing of application connections.
+ You might want to disable this if you plan running a dedicated Tor relay'';
+
+ transparentProxy.enable = mkEnableOption "transparent proxy";
+ dns.enable = mkEnableOption "DNS resolver";
socksListenAddress = mkOption {
- type = types.str;
- default = "127.0.0.1:9050";
- example = "192.168.0.1:9100";
+ type = optionSOCKSPort false;
+ default = {addr = "127.0.0.1"; port = 9050; IsolateDestAddr = true;};
+ example = {addr = "192.168.0.1"; port = 9090; IsolateDestAddr = true;};
description = ''
Bind to this address to listen for connections from
- Socks-speaking applications. Provides strong circuit
- isolation, separate circuit per IP address.
+ Socks-speaking applications.
'';
};
- socksListenAddressFaster = mkOption {
- type = types.str;
- default = "127.0.0.1:9063";
- example = "192.168.0.1:9101";
- description = ''
- Bind to this address to listen for connections from
- Socks-speaking applications. Same as
- but uses weaker
- circuit isolation to provide performance suitable for a
- web browser.
- '';
- };
-
- socksPolicy = mkOption {
- type = types.nullOr types.str;
- default = null;
- example = "accept 192.168.0.0/16, reject *";
- description = ''
- Entry policies to allow/deny SOCKS requests based on IP
- address. First entry that matches wins. If no SocksPolicy
- is set, we accept all (and only) requests from
- .
- '';
- };
-
- socksIsolationOptions = mkOption (isolationOptions // {
- default = ["IsolateDestAddr"];
- });
-
- transparentProxy = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = "Whether to enable tor transparent proxy";
- };
-
- listenAddress = mkOption {
- type = types.str;
- default = "127.0.0.1:9040";
- example = "192.168.0.1:9040";
- description = ''
- Bind transparent proxy to this address.
- '';
- };
-
- isolationOptions = mkOption isolationOptions;
- };
-
- dns = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = "Whether to enable tor dns resolver";
- };
-
- listenAddress = mkOption {
- type = types.str;
- default = "127.0.0.1:9053";
- example = "192.168.0.1:9053";
- description = ''
- Bind tor dns to this address.
- '';
- };
-
- isolationOptions = mkOption isolationOptions;
-
- automapHostsSuffixes = mkOption {
- type = types.listOf types.str;
- default = [".onion" ".exit"];
- example = [".onion"];
- description = "List of suffixes to use with automapHostsOnResolve";
+ onionServices = mkOption {
+ description = descriptionGeneric "HiddenServiceDir";
+ default = {};
+ example = {
+ "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" = {
+ clientAuthorizations = ["/run/keys/tor/alice.prv.x25519"];
+ };
};
+ type = types.attrsOf (types.submodule ({name, config, ...}: {
+ options.clientAuthorizations = mkOption {
+ description = ''
+ Clients' authorizations for a v3 onion service,
+ as a list of files containing each one private key, in the format:
+ descriptor:x25519:<base32-private-key>
+ '' + descriptionGeneric "_client_authorization";
+ type = with types; listOf path;
+ default = [];
+ example = ["/run/keys/tor/alice.prv.x25519"];
+ };
+ }));
};
};
relay = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = ''
- Whether to enable relaying TOR traffic for others.
+ enable = mkEnableOption ''relaying of Tor traffic for others.
- See
- for details.
+ See
+ for details.
- Setting this to true requires setting
-
- and
-
- options.
- '';
- };
+ Setting this to true requires setting
+
+ and
+
+ options'';
role = mkOption {
type = types.enum [ "exit" "relay" "bridge" "private-bridge" ];
@@ -310,13 +313,13 @@ in
Running an exit relay may expose you to abuse
complaints. See
-
+
for more info.
You can specify which services Tor users may access via
- your exit relay using option.
+ your exit relay using option.
@@ -369,15 +372,14 @@ in
WARNING: THE FOLLOWING PARAGRAPH IS NOT LEGAL ADVICE.
- Consult with your lawer when in doubt.
+ Consult with your lawyer when in doubt.
This role should be safe to use in most situations
(unless the act of forwarding traffic for others is
a punishable offence under your local laws, which
- would be pretty insane as it would make ISP
- illegal).
+ would be pretty insane as it would make ISP illegal).
@@ -404,7 +406,7 @@ in
Use this if you want to run a private bridge, for
- example because you'll give out your bridge address
+ example because you'll give out your bridge addr
manually to your friends.
@@ -426,269 +428,393 @@ in
'';
};
- bridgeTransports = mkOption {
- type = types.listOf types.str;
- default = ["obfs4"];
- example = ["obfs2" "obfs3" "obfs4" "scramblesuit"];
- description = "List of pluggable transports";
- };
-
- nickname = mkOption {
- type = types.str;
- default = "anonymous";
- description = ''
- A unique handle for your TOR relay.
- '';
- };
-
- contactInfo = mkOption {
- type = types.nullOr types.str;
- default = null;
- example = "admin@relay.com";
- description = ''
- Contact information for the relay owner (e.g. a mail
- address and GPG key ID).
- '';
- };
-
- accountingMax = mkOption {
- type = types.nullOr types.str;
- default = null;
- example = "450 GBytes";
- description = ''
- Specify maximum bandwidth allowed during an accounting period. This
- allows you to limit overall tor bandwidth over some time period.
- See the AccountingMax option by looking at the
- tor manual tor
- 1 for more.
-
- Note this limit applies individually to upload and
- download; if you specify "500 GBytes"
- here, then you may transfer up to 1 TBytes of overall
- bandwidth (500 GB upload, 500 GB download).
- '';
- };
-
- accountingStart = mkOption {
- type = types.nullOr types.str;
- default = null;
- example = "month 1 1:00";
- description = ''
- Specify length of an accounting period. This allows you to limit
- overall tor bandwidth over some time period. See the
- AccountingStart option by looking at the tor
- manual tor
- 1 for more.
- '';
- };
-
- bandwidthRate = mkOption {
- type = types.nullOr types.int;
- default = null;
- example = 100;
- description = ''
- Specify this to limit the bandwidth usage of relayed (server)
- traffic. Your own traffic is still unthrottled. Units: bytes/second.
- '';
- };
-
- bandwidthBurst = mkOption {
- type = types.nullOr types.int;
- default = cfg.relay.bandwidthRate;
- example = 200;
- description = ''
- Specify this to allow bursts of the bandwidth usage of relayed (server)
- traffic. The average usage will still be as specified in relayBandwidthRate.
- Your own traffic is still unthrottled. Units: bytes/second.
- '';
- };
-
- address = mkOption {
- type = types.nullOr types.str;
- default = null;
- example = "noname.example.com";
- description = ''
- The IP address or full DNS name for advertised address of your relay.
- Leave unset and Tor will guess.
- '';
- };
-
- port = mkOption {
- type = types.either types.int types.str;
- example = 143;
- description = ''
- What port to advertise for Tor connections. This corresponds to the
- ORPort section in the Tor manual; see
- tor
- 1 for more details.
-
- At a minimum, you should just specify the port for the
- relay to listen on; a common one like 143, 22, 80, or 443
- to help Tor users who may have very restrictive port-based
- firewalls.
- '';
- };
-
- exitPolicy = mkOption {
- type = types.nullOr types.str;
- default = null;
- example = "accept *:6660-6667,reject *:*";
- description = ''
- A comma-separated list of exit policies. They're
- considered first to last, and the first match wins. If you
- want to _replace_ the default exit policy, end this with
- either a reject *:* or an accept *:*. Otherwise, you're
- _augmenting_ (prepending to) the default exit policy.
- Leave commented to just use the default, which is
- available in the man page or at
- .
-
- Look at
-
- for issues you might encounter if you use the default
- exit policy.
-
- If certain IPs and ports are blocked externally, e.g. by
- your firewall, you should update your exit policy to
- reflect this -- otherwise Tor users will be told that
- those destinations are down.
- '';
+ onionServices = mkOption {
+ description = descriptionGeneric "HiddenServiceDir";
+ default = {};
+ example = {
+ "example.org/www" = {
+ map = [ 80 ];
+ authorizedClients = [
+ "descriptor:x25519:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
+ ];
+ };
+ };
+ type = types.attrsOf (types.submodule ({name, config, ...}: {
+ options.path = mkOption {
+ type = types.path;
+ description = ''
+ Path where to store the data files of the hidden service.
+ If the is null
+ this defaults to ${stateDir}/onion/$onion,
+ otherwise to ${runDir}/onion/$onion.
+ '';
+ };
+ options.secretKey = mkOption {
+ type = with types; nullOr path;
+ default = null;
+ example = "/run/keys/tor/onion/expyuzz4wqqyqhjn/hs_ed25519_secret_key";
+ description = ''
+ Secret key of the onion service.
+ If null, Tor reuses any preexisting secret key (in )
+ or generates a new one.
+ The associated public key and hostname are deterministically regenerated
+ from this file if they do not exist.
+ '';
+ };
+ options.authorizeClient = mkOption {
+ description = descriptionGeneric "HiddenServiceAuthorizeClient";
+ default = null;
+ type = types.nullOr (types.submodule ({...}: {
+ options = {
+ authType = mkOption {
+ type = types.enum [ "basic" "stealth" ];
+ description = ''
+ Either "basic" for a general-purpose authorization protocol
+ or "stealth" for a less scalable protocol
+ that also hides service activity from unauthorized clients.
+ '';
+ };
+ clientNames = mkOption {
+ type = with types; nonEmptyListOf (strMatching "[A-Za-z0-9+-_]+");
+ description = ''
+ Only clients that are listed here are authorized to access the hidden service.
+ Generated authorization data can be found in ${stateDir}/onion/$name/hostname.
+ Clients need to put this authorization data in their configuration file using
+ .
+ '';
+ };
+ };
+ }));
+ };
+ options.authorizedClients = mkOption {
+ description = ''
+ Authorized clients for a v3 onion service,
+ as a list of public key, in the format:
+ descriptor:x25519:<base32-public-key>
+ '' + descriptionGeneric "_client_authorization";
+ type = with types; listOf str;
+ default = [];
+ example = ["descriptor:x25519:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"];
+ };
+ options.map = mkOption {
+ description = descriptionGeneric "HiddenServicePort";
+ type = with types; listOf (oneOf [
+ port (submodule ({...}: {
+ options = {
+ port = optionPort;
+ target = mkOption {
+ default = null;
+ type = nullOr (submodule ({...}: {
+ options = {
+ unix = optionUnix;
+ addr = optionAddress;
+ port = optionPort;
+ };
+ }));
+ };
+ };
+ }))
+ ]);
+ apply = map (v: if isInt v then {port=v; target=null;} else v);
+ };
+ options.version = mkOption {
+ description = descriptionGeneric "HiddenServiceVersion";
+ type = with types; nullOr (enum [2 3]);
+ default = null;
+ };
+ options.settings = mkOption {
+ description = ''
+ Settings of the onion service.
+ '' + descriptionGeneric "_hidden_service_options";
+ default = {};
+ type = types.submodule {
+ freeformType = with types;
+ (attrsOf (nullOr (oneOf [str int bool (listOf str)]))) // {
+ description = "settings option";
+ };
+ options.HiddenServiceAllowUnknownPorts = optionBool "HiddenServiceAllowUnknownPorts";
+ options.HiddenServiceDirGroupReadable = optionBool "HiddenServiceDirGroupReadable";
+ options.HiddenServiceExportCircuitID = mkOption {
+ description = descriptionGeneric "HiddenServiceExportCircuitID";
+ type = with types; nullOr (enum ["haproxy"]);
+ default = null;
+ };
+ options.HiddenServiceMaxStreams = mkOption {
+ description = descriptionGeneric "HiddenServiceMaxStreams";
+ type = with types; nullOr (ints.between 0 65535);
+ default = null;
+ };
+ options.HiddenServiceMaxStreamsCloseCircuit = optionBool "HiddenServiceMaxStreamsCloseCircuit";
+ options.HiddenServiceNumIntroductionPoints = mkOption {
+ description = descriptionGeneric "HiddenServiceNumIntroductionPoints";
+ type = with types; nullOr (ints.between 0 20);
+ default = null;
+ };
+ options.HiddenServiceSingleHopMode = optionBool "HiddenServiceSingleHopMode";
+ options.RendPostPeriod = optionString "RendPostPeriod";
+ };
+ };
+ config = {
+ path = mkDefault ((if config.secretKey == null then stateDir else runDir) + "/onion/${name}");
+ settings.HiddenServiceVersion = config.version;
+ settings.HiddenServiceAuthorizeClient =
+ if config.authorizeClient != null then
+ config.authorizeClient.authType + " " +
+ concatStringsSep "," config.authorizeClient.clientNames
+ else null;
+ settings.HiddenServicePort = map (p: mkValueString "" p.port + " " + mkValueString "" p.target) config.map;
+ };
+ }));
};
};
- hiddenServices = mkOption {
+ settings = mkOption {
description = ''
- A set of static hidden services that terminate their Tor
- circuits at this node.
-
- Every element in this set declares a virtual onion host.
-
- You can specify your onion address by putting corresponding
- private key to an appropriate place in ${torDirectory}.
-
- For services without private keys in ${torDirectory} Tor
- daemon will generate random key pairs (which implies random
- onion addresses) on restart. The latter could take a while,
- please be patient.
-
-
- Hidden services can be useful even if you don't intend to
- actually hide them, since they can
- also be seen as a kind of NAT traversal mechanism.
-
- E.g. the example will make your sshd, whatever runs on
- "8080" and your mail server available from anywhere where
- the Tor network is available (which, with the help from
- bridges, is pretty much everywhere), even if both client
- and server machines are behind NAT you have no control
- over.
-
+ See torrc manual
+ for documentation.
'';
default = {};
- example = literalExample ''
- { "my-hidden-service-example".map = [
- { port = 22; } # map ssh port to this machine's ssh
- { port = 80; toPort = 8080; } # map http port to whatever runs on 8080
- { port = "sip"; toHost = "mail.example.com"; toPort = "imap"; } # because we can
- ];
- }
- '';
- type = types.attrsOf (types.submodule ({name, ...}: {
- options = {
-
- name = mkOption {
- type = types.str;
- description = ''
- Name of this tor hidden service.
-
- This is purely descriptive.
-
- After restarting Tor daemon you should be able to
- find your .onion address in
- ${torDirectory}/onion/$name/hostname.
- '';
- };
-
- map = mkOption {
- default = [];
- description = "Port mapping for this hidden service.";
- type = types.listOf (types.submodule ({config, ...}: {
- options = {
-
- port = mkOption {
- type = types.either types.int types.str;
- example = 80;
- description = ''
- Hidden service port to "bind to".
- '';
- };
-
- destination = mkOption {
- internal = true;
- type = types.str;
- description = "Forward these connections where?";
- };
-
- toHost = mkOption {
- type = types.str;
- default = "127.0.0.1";
- description = "Mapping destination host.";
- };
-
- toPort = mkOption {
- type = types.either types.int types.str;
- example = 8080;
- description = "Mapping destination port.";
- };
-
- };
-
- config = {
- toPort = mkDefault config.port;
- destination = mkDefault "${config.toHost}:${toString config.toPort}";
- };
- }));
- };
-
- authorizeClient = mkOption {
- default = null;
- description = "If configured, the hidden service is accessible for authorized clients only.";
- type = types.nullOr (types.submodule ({...}: {
-
- options = {
-
- authType = mkOption {
- type = types.enum [ "basic" "stealth" ];
- description = ''
- Either "basic" for a general-purpose authorization protocol
- or "stealth" for a less scalable protocol
- that also hides service activity from unauthorized clients.
- '';
- };
-
- clientNames = mkOption {
- type = types.nonEmptyListOf (types.strMatching "[A-Za-z0-9+-_]+");
- description = ''
- Only clients that are listed here are authorized to access the hidden service.
- Generated authorization data can be found in ${torDirectory}/onion/$name/hostname.
- Clients need to put this authorization data in their configuration file using HidServAuth.
- '';
- };
- };
- }));
- };
-
- version = mkOption {
- default = null;
- description = "Rendezvous service descriptor version to publish for the hidden service. Currently, versions 2 and 3 are supported. (Default: 2)";
- type = types.nullOr (types.enum [ 2 3 ]);
- };
+ type = types.submodule {
+ freeformType = with types;
+ (attrsOf (nullOr (oneOf [str int bool (listOf str)]))) // {
+ description = "settings option";
+ };
+ options.Address = optionString "Address";
+ options.AssumeReachable = optionBool "AssumeReachable";
+ options.AccountingMax = optionBandwith "AccountingMax";
+ options.AccountingStart = optionString "AccountingStart";
+ options.AuthDirHasIPv6Connectivity = optionBool "AuthDirHasIPv6Connectivity";
+ options.AuthDirListBadExits = optionBool "AuthDirListBadExits";
+ options.AuthDirPinKeys = optionBool "AuthDirPinKeys";
+ options.AuthDirSharedRandomness = optionBool "AuthDirSharedRandomness";
+ options.AuthDirTestEd25519LinkKeys = optionBool "AuthDirTestEd25519LinkKeys";
+ options.AuthoritativeDirectory = optionBool "AuthoritativeDirectory";
+ options.AutomapHostsOnResolve = optionBool "AutomapHostsOnResolve";
+ options.AutomapHostsSuffixes = optionStrings "AutomapHostsSuffixes" // {
+ default = [".onion" ".exit"];
+ example = [".onion"];
};
-
- config = {
- name = mkDefault name;
+ options.BandwidthBurst = optionBandwith "BandwidthBurst";
+ options.BandwidthRate = optionBandwith "BandwidthRate";
+ options.BridgeAuthoritativeDir = optionBool "BridgeAuthoritativeDir";
+ options.BridgeRecordUsageByCountry = optionBool "BridgeRecordUsageByCountry";
+ options.BridgeRelay = optionBool "BridgeRelay" // { default = false; };
+ options.CacheDirectory = optionPath "CacheDirectory";
+ options.CacheDirectoryGroupReadable = optionBool "CacheDirectoryGroupReadable"; # default is null and like "auto"
+ options.CellStatistics = optionBool "CellStatistics";
+ options.ClientAutoIPv6ORPort = optionBool "ClientAutoIPv6ORPort";
+ options.ClientDNSRejectInternalAddresses = optionBool "ClientDNSRejectInternalAddresses";
+ options.ClientOnionAuthDir = mkOption {
+ description = descriptionGeneric "ClientOnionAuthDir";
+ default = null;
+ type = with types; nullOr path;
};
- }));
+ options.ClientPreferIPv6DirPort = optionBool "ClientPreferIPv6DirPort"; # default is null and like "auto"
+ options.ClientPreferIPv6ORPort = optionBool "ClientPreferIPv6ORPort"; # default is null and like "auto"
+ options.ClientRejectInternalAddresses = optionBool "ClientRejectInternalAddresses";
+ options.ClientUseIPv4 = optionBool "ClientUseIPv4";
+ options.ClientUseIPv6 = optionBool "ClientUseIPv6";
+ options.ConnDirectionStatistics = optionBool "ConnDirectionStatistics";
+ options.ConstrainedSockets = optionBool "ConstrainedSockets";
+ options.ContactInfo = optionString "ContactInfo";
+ options.ControlPort = mkOption rec {
+ description = descriptionGeneric "ControlPort";
+ default = [];
+ example = [{port = 9051;}];
+ type = with types; oneOf [port (enum ["auto"]) (listOf (oneOf [
+ port (enum ["auto"]) (submodule ({config, ...}: let
+ flags = ["GroupWritable" "RelaxDirModeCheck" "WorldWritable"];
+ in {
+ options = {
+ unix = optionUnix;
+ flags = optionFlags;
+ addr = optionAddress;
+ port = optionPort;
+ } // genAttrs flags (name: mkOption { type = types.bool; default = false; });
+ config = {
+ flags = filter (name: config.${name} == true) flags;
+ };
+ }))
+ ]))];
+ };
+ options.ControlPortFileGroupReadable= optionBool "ControlPortFileGroupReadable";
+ options.ControlPortWriteToFile = optionPath "ControlPortWriteToFile";
+ options.ControlSocket = optionPath "ControlSocket";
+ options.ControlSocketsGroupWritable = optionBool "ControlSocketsGroupWritable";
+ options.CookieAuthFile = optionPath "CookieAuthFile";
+ options.CookieAuthFileGroupReadable = optionBool "CookieAuthFileGroupReadable";
+ options.CookieAuthentication = optionBool "CookieAuthentication";
+ options.DataDirectory = optionPath "DataDirectory" // { default = stateDir; };
+ options.DataDirectoryGroupReadable = optionBool "DataDirectoryGroupReadable";
+ options.DirPortFrontPage = optionPath "DirPortFrontPage";
+ options.DirAllowPrivateAddresses = optionBool "DirAllowPrivateAddresses";
+ options.DormantCanceledByStartup = optionBool "DormantCanceledByStartup";
+ options.DormantOnFirstStartup = optionBool "DormantOnFirstStartup";
+ options.DormantTimeoutDisabledByIdleStreams = optionBool "DormantTimeoutDisabledByIdleStreams";
+ options.DirCache = optionBool "DirCache";
+ options.DirPolicy = mkOption {
+ description = descriptionGeneric "DirPolicy";
+ type = with types; listOf str;
+ default = [];
+ example = ["accept *:*"];
+ };
+ options.DirPort = optionORPort "DirPort";
+ options.DirReqStatistics = optionBool "DirReqStatistics";
+ options.DisableAllSwap = optionBool "DisableAllSwap";
+ options.DisableDebuggerAttachment = optionBool "DisableDebuggerAttachment";
+ options.DisableNetwork = optionBool "DisableNetwork";
+ options.DisableOOSCheck = optionBool "DisableOOSCheck";
+ options.DNSPort = optionIsolablePorts "DNSPort";
+ options.DoSCircuitCreationEnabled = optionBool "DoSCircuitCreationEnabled";
+ options.DoSConnectionEnabled = optionBool "DoSConnectionEnabled"; # default is null and like "auto"
+ options.DoSRefuseSingleHopClientRendezvous = optionBool "DoSRefuseSingleHopClientRendezvous";
+ options.DownloadExtraInfo = optionBool "DownloadExtraInfo";
+ options.EnforceDistinctSubnets = optionBool "EnforceDistinctSubnets";
+ options.EntryStatistics = optionBool "EntryStatistics";
+ options.ExitPolicy = optionStrings "ExitPolicy" // {
+ default = ["reject *:*"];
+ example = ["accept *:*"];
+ };
+ options.ExitPolicyRejectLocalInterfaces = optionBool "ExitPolicyRejectLocalInterfaces";
+ options.ExitPolicyRejectPrivate = optionBool "ExitPolicyRejectPrivate";
+ options.ExitPortStatistics = optionBool "ExitPortStatistics";
+ options.ExitRelay = optionBool "ExitRelay"; # default is null and like "auto"
+ options.ExtORPort = mkOption {
+ description = descriptionGeneric "ExtORPort";
+ default = null;
+ type = with types; nullOr (oneOf [
+ port (enum ["auto"]) (submodule ({...}: {
+ options = {
+ addr = optionAddress;
+ port = optionPort;
+ };
+ }))
+ ]);
+ apply = p: if isInt p || isString p then { port = p; } else p;
+ };
+ options.ExtORPortCookieAuthFile = optionPath "ExtORPortCookieAuthFile";
+ options.ExtORPortCookieAuthFileGroupReadable = optionBool "ExtORPortCookieAuthFileGroupReadable";
+ options.ExtendAllowPrivateAddresses = optionBool "ExtendAllowPrivateAddresses";
+ options.ExtraInfoStatistics = optionBool "ExtraInfoStatistics";
+ options.FascistFirewall = optionBool "FascistFirewall";
+ options.FetchDirInfoEarly = optionBool "FetchDirInfoEarly";
+ options.FetchDirInfoExtraEarly = optionBool "FetchDirInfoExtraEarly";
+ options.FetchHidServDescriptors = optionBool "FetchHidServDescriptors";
+ options.FetchServerDescriptors = optionBool "FetchServerDescriptors";
+ options.FetchUselessDescriptors = optionBool "FetchUselessDescriptors";
+ options.ReachableAddresses = optionStrings "ReachableAddresses";
+ options.ReachableDirAddresses = optionStrings "ReachableDirAddresses";
+ options.ReachableORAddresses = optionStrings "ReachableORAddresses";
+ options.GeoIPFile = optionPath "GeoIPFile";
+ options.GeoIPv6File = optionPath "GeoIPv6File";
+ options.GuardfractionFile = optionPath "GuardfractionFile";
+ options.HidServAuth = mkOption {
+ description = descriptionGeneric "HidServAuth";
+ default = [];
+ type = with types; listOf (oneOf [
+ (submodule {
+ options = {
+ onion = mkOption {
+ type = strMatching "[a-z2-7]{16}(\\.onion)?";
+ description = "Onion address.";
+ example = "xxxxxxxxxxxxxxxx.onion";
+ };
+ auth = mkOption {
+ type = strMatching "[A-Za-z0-9+/]{22}";
+ description = "Authentication cookie.";
+ };
+ };
+ })
+ ]);
+ };
+ options.HiddenServiceNonAnonymousMode = optionBool "HiddenServiceNonAnonymousMode";
+ options.HiddenServiceStatistics = optionBool "HiddenServiceStatistics";
+ options.HSLayer2Nodes = optionStrings "HSLayer2Nodes";
+ options.HSLayer3Nodes = optionStrings "HSLayer3Nodes";
+ options.HTTPTunnelPort = optionIsolablePorts "HTTPTunnelPort";
+ options.IPv6Exit = optionBool "IPv6Exit";
+ options.KeyDirectory = optionPath "KeyDirectory";
+ options.KeyDirectoryGroupReadable = optionBool "KeyDirectoryGroupReadable";
+ options.LogMessageDomains = optionBool "LogMessageDomains";
+ options.LongLivedPorts = optionPorts "LongLivedPorts";
+ options.MainloopStats = optionBool "MainloopStats";
+ options.MaxAdvertisedBandwidth = optionBandwith "MaxAdvertisedBandwidth";
+ options.MaxCircuitDirtiness = optionInt "MaxCircuitDirtiness";
+ options.MaxClientCircuitsPending = optionInt "MaxClientCircuitsPending";
+ options.NATDPort = optionIsolablePorts "NATDPort";
+ options.NewCircuitPeriod = optionInt "NewCircuitPeriod";
+ options.Nickname = optionString "Nickname";
+ options.ORPort = optionORPort "ORPort";
+ options.OfflineMasterKey = optionBool "OfflineMasterKey";
+ options.OptimisticData = optionBool "OptimisticData"; # default is null and like "auto"
+ options.PaddingStatistics = optionBool "PaddingStatistics";
+ options.PerConnBWBurst = optionBandwith "PerConnBWBurst";
+ options.PerConnBWRate = optionBandwith "PerConnBWRate";
+ options.PidFile = optionPath "PidFile";
+ options.ProtocolWarnings = optionBool "ProtocolWarnings";
+ options.PublishHidServDescriptors = optionBool "PublishHidServDescriptors";
+ options.PublishServerDescriptor = mkOption {
+ description = descriptionGeneric "PublishServerDescriptor";
+ type = with types; nullOr (enum [false true 0 1 "0" "1" "v3" "bridge"]);
+ default = null;
+ };
+ options.ReducedExitPolicy = optionBool "ReducedExitPolicy";
+ options.RefuseUnknownExits = optionBool "RefuseUnknownExits"; # default is null and like "auto"
+ options.RejectPlaintextPorts = optionPorts "RejectPlaintextPorts";
+ options.RelayBandwidthBurst = optionBandwith "RelayBandwidthBurst";
+ options.RelayBandwidthRate = optionBandwith "RelayBandwidthRate";
+ #options.RunAsDaemon
+ options.Sandbox = optionBool "Sandbox";
+ options.ServerDNSAllowBrokenConfig = optionBool "ServerDNSAllowBrokenConfig";
+ options.ServerDNSAllowNonRFC953Hostnames = optionBool "ServerDNSAllowNonRFC953Hostnames";
+ options.ServerDNSDetectHijacking = optionBool "ServerDNSDetectHijacking";
+ options.ServerDNSRandomizeCase = optionBool "ServerDNSRandomizeCase";
+ options.ServerDNSResolvConfFile = optionPath "ServerDNSResolvConfFile";
+ options.ServerDNSSearchDomains = optionBool "ServerDNSSearchDomains";
+ options.ServerTransportPlugin = mkOption {
+ description = descriptionGeneric "ServerTransportPlugin";
+ default = null;
+ type = with types; nullOr (submodule ({...}: {
+ options = {
+ transports = mkOption {
+ description = "List of pluggable transports.";
+ type = listOf str;
+ example = ["obfs2" "obfs3" "obfs4" "scramblesuit"];
+ };
+ exec = mkOption {
+ type = types.str;
+ description = "Command of pluggable transport.";
+ };
+ };
+ }));
+ };
+ options.SocksPolicy = optionStrings "SocksPolicy" // {
+ example = ["accept *:*"];
+ };
+ options.SOCKSPort = mkOption {
+ description = descriptionGeneric "SOCKSPort";
+ default = if cfg.settings.HiddenServiceNonAnonymousMode == true then [{port = 0;}] else [];
+ example = [{port = 9090;}];
+ type = types.listOf (optionSOCKSPort true);
+ };
+ options.TestingTorNetwork = optionBool "TestingTorNetwork";
+ options.TransPort = optionIsolablePorts "TransPort";
+ options.TransProxyType = mkOption {
+ description = descriptionGeneric "TransProxyType";
+ type = with types; nullOr (enum ["default" "TPROXY" "ipfw" "pf-divert"]);
+ default = null;
+ };
+ #options.TruncateLogFile
+ options.UnixSocksGroupWritable = optionBool "UnixSocksGroupWritable";
+ options.UseDefaultFallbackDirs = optionBool "UseDefaultFallbackDirs";
+ options.UseMicrodescriptors = optionBool "UseMicrodescriptors";
+ options.V3AuthUseLegacyKey = optionBool "V3AuthUseLegacyKey";
+ options.V3AuthoritativeDirectory = optionBool "V3AuthoritativeDirectory";
+ options.VersioningAuthoritativeDirectory = optionBool "VersioningAuthoritativeDirectory";
+ options.VirtualAddrNetworkIPv4 = optionString "VirtualAddrNetworkIPv4";
+ options.VirtualAddrNetworkIPv6 = optionString "VirtualAddrNetworkIPv6";
+ options.WarnPlaintextPorts = optionPorts "WarnPlaintextPorts";
+ };
};
};
};
@@ -696,79 +822,216 @@ in
config = mkIf cfg.enable {
# Not sure if `cfg.relay.role == "private-bridge"` helps as tor
# sends a lot of stats
- warnings = optional (cfg.relay.enable && cfg.hiddenServices != {})
+ warnings = optional (cfg.settings.BridgeRelay &&
+ flatten (mapAttrsToList (n: o: o.map) cfg.relay.onionServices) != [])
''
Running Tor hidden services on a public relay makes the
presence of hidden services visible through simple statistical
analysis of publicly available data.
+ See https://trac.torproject.org/projects/tor/ticket/8742
You can safely ignore this warning if you don't intend to
actually hide your hidden services. In either case, you can
always create a container/VM with a separate Tor daemon instance.
- '';
+ '' ++
+ flatten (mapAttrsToList (n: o:
+ optional (o.settings.HiddenServiceVersion == 2) [
+ (optional (o.settings.HiddenServiceExportCircuitID != null) ''
+ HiddenServiceExportCircuitID is used in the HiddenService: ${n}
+ but this option is only for v3 hidden services.
+ '')
+ ] ++
+ optional (o.settings.HiddenServiceVersion != 2) [
+ (optional (o.settings.HiddenServiceAuthorizeClient != null) ''
+ HiddenServiceAuthorizeClient is used in the HiddenService: ${n}
+ but this option is only for v2 hidden services.
+ '')
+ (optional (o.settings.RendPostPeriod != null) ''
+ RendPostPeriod is used in the HiddenService: ${n}
+ but this option is only for v2 hidden services.
+ '')
+ ]
+ ) cfg.relay.onionServices);
users.groups.tor.gid = config.ids.gids.tor;
users.users.tor =
{ description = "Tor Daemon User";
createHome = true;
- home = torDirectory;
+ home = stateDir;
group = "tor";
uid = config.ids.uids.tor;
};
- # We have to do this instead of using RuntimeDirectory option in
- # the service below because systemd has no way to set owners of
- # RuntimeDirectory and putting this into the service below
- # requires that service to relax it's sandbox since this needs
- # writable /run
- systemd.services.tor-init =
- { description = "Tor Daemon Init";
- wantedBy = [ "tor.service" ];
- script = ''
- install -m 0700 -o tor -g tor -d ${torDirectory} ${torDirectory}/onion
- install -m 0750 -o tor -g tor -d ${torRunDirectory}
- '';
- serviceConfig = {
- Type = "oneshot";
- RemainAfterExit = true;
- };
- };
-
- systemd.services.tor =
- { description = "Tor Daemon";
- path = [ pkgs.tor ];
-
- wantedBy = [ "multi-user.target" ];
- after = [ "tor-init.service" "network.target" ];
- restartTriggers = [ torRcFile ];
-
- serviceConfig =
- { Type = "simple";
- # Translated from the upstream contrib/dist/tor.service.in
- ExecStartPre = "${cfg.package}/bin/tor -f ${torRcFile} --verify-config";
- ExecStart = "${cfg.package}/bin/tor -f ${torRcFile}";
- ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
- KillSignal = "SIGINT";
- TimeoutSec = 30;
- Restart = "on-failure";
- LimitNOFILE = 32768;
-
- # Hardening
- # this seems to unshare /run despite what systemd.exec(5) says
- PrivateTmp = mkIf (!cfg.controlSocket.enable) "yes";
- PrivateDevices = "yes";
- ProtectHome = "yes";
- ProtectSystem = "strict";
- InaccessiblePaths = "/home";
- ReadOnlyPaths = "/";
- ReadWritePaths = [ torDirectory torRunDirectory ];
- NoNewPrivileges = "yes";
-
- # tor.service.in has this in, but this line it fails to spawn a namespace when using hidden services
- #CapabilityBoundingSet = "CAP_SETUID CAP_SETGID CAP_NET_BIND_SERVICE";
- };
+ services.tor.settings = mkMerge [
+ (mkIf cfg.enableGeoIP {
+ GeoIPFile = "${cfg.package.geoip}/share/tor/geoip";
+ GeoIPv6File = "${cfg.package.geoip}/share/tor/geoip6";
+ })
+ (mkIf cfg.controlSocket.enable {
+ ControlPort = [ { unix = runDir + "/control"; GroupWritable=true; RelaxDirModeCheck=true; } ];
+ })
+ (mkIf cfg.relay.enable (
+ optionalAttrs (cfg.relay.role != "exit") {
+ ExitPolicy = mkForce ["reject *:*"];
+ } //
+ optionalAttrs (elem cfg.relay.role ["bridge" "private-bridge"]) {
+ BridgeRelay = true;
+ ExtORPort.port = mkDefault "auto";
+ ServerTransportPlugin.transports = mkDefault ["obfs4"];
+ ServerTransportPlugin.exec = mkDefault "${pkgs.obfs4}/bin/obfs4proxy managed";
+ } // optionalAttrs (cfg.relay.role == "private-bridge") {
+ ExtraInfoStatistics = false;
+ PublishServerDescriptor = false;
+ }
+ ))
+ (mkIf (!cfg.relay.enable) {
+ # Avoid surprises when leaving ORPort/DirPort configurations in cfg.settings,
+ # because it would still enable Tor as a relay,
+ # which can trigger all sort of problems when not carefully done,
+ # like the blocklisting of the machine's IP addresses
+ # by some hosting providers...
+ DirPort = mkForce [];
+ ORPort = mkForce [];
+ PublishServerDescriptor = mkForce false;
+ })
+ (mkIf cfg.client.enable (
+ { SOCKSPort = [ cfg.client.socksListenAddress ];
+ } // optionalAttrs cfg.client.transparentProxy.enable {
+ TransPort = [{ addr = "127.0.0.1"; port = 9040; }];
+ } // optionalAttrs cfg.client.dns.enable {
+ DNSPort = [{ addr = "127.0.0.1"; port = 9053; }];
+ AutomapHostsOnResolve = true;
+ } // optionalAttrs (flatten (mapAttrsToList (n: o: o.clientAuthorizations) cfg.client.onionServices) != []) {
+ ClientOnionAuthDir = runDir + "/ClientOnionAuthDir";
+ }
+ ))
+ ];
+
+ networking.firewall = mkIf cfg.openFirewall {
+ allowedTCPPorts =
+ concatMap (o: optional (isInt o && o > 0 || o ? "port" && isInt o.port && o.port > 0) o.port)
+ (flatten [
+ cfg.settings.ORPort
+ cfg.settings.DirPort
+ ]);
+ };
+
+ systemd.services.tor = {
+ description = "Tor Daemon";
+ path = [ pkgs.tor ];
+
+ wantedBy = [ "multi-user.target" ];
+ after = [ "network.target" ];
+ restartTriggers = [ torrc ];
+
+ serviceConfig = {
+ Type = "simple";
+ User = "tor";
+ Group = "tor";
+ ExecStartPre = [
+ "${cfg.package}/bin/tor -f ${torrc} --verify-config"
+ # DOC: Appendix G of https://spec.torproject.org/rend-spec-v3
+ ("+" + pkgs.writeShellScript "ExecStartPre" (concatStringsSep "\n" (flatten (["set -eu"] ++
+ mapAttrsToList (name: onion:
+ optional (onion.authorizedClients != []) ''
+ rm -rf ${escapeShellArg onion.path}/authorized_clients
+ install -d -o tor -g tor -m 0700 ${escapeShellArg onion.path} ${escapeShellArg onion.path}/authorized_clients
+ '' ++
+ imap0 (i: pubKey: ''
+ echo ${pubKey} |
+ install -o tor -g tor -m 0400 /dev/stdin ${escapeShellArg onion.path}/authorized_clients/${toString i}.auth
+ '') onion.authorizedClients ++
+ optional (onion.secretKey != null) ''
+ install -d -o tor -g tor -m 0700 ${escapeShellArg onion.path}
+ key="$(cut -f1 -d: ${escapeShellArg onion.secretKey})"
+ case "$key" in
+ ("== ed25519v"*"-secret")
+ install -o tor -g tor -m 0400 ${escapeShellArg onion.secretKey} ${escapeShellArg onion.path}/hs_ed25519_secret_key;;
+ (*) echo >&2 "NixOS does not (yet) support secret key type for onion: ${name}"; exit 1;;
+ esac
+ ''
+ ) cfg.relay.onionServices ++
+ mapAttrsToList (name: onion: imap0 (i: prvKeyPath:
+ let hostname = removeSuffix ".onion" name; in ''
+ printf "%s:" ${escapeShellArg hostname} | cat - ${escapeShellArg prvKeyPath} |
+ install -o tor -g tor -m 0700 /dev/stdin \
+ ${runDir}/ClientOnionAuthDir/${escapeShellArg hostname}.${toString i}.auth_private
+ '') onion.clientAuthorizations)
+ cfg.client.onionServices
+ ))))
+ ];
+ ExecStart = "${cfg.package}/bin/tor -f ${torrc}";
+ ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
+ KillSignal = "SIGINT";
+ TimeoutSec = 30;
+ Restart = "on-failure";
+ LimitNOFILE = 32768;
+ RuntimeDirectory = [
+ # g+x allows access to the control socket
+ "tor"
+ "tor/root"
+ # g+x can't be removed in ExecStart=, but will be removed by Tor
+ "tor/ClientOnionAuthDir"
+ ];
+ RuntimeDirectoryMode = "0710";
+ StateDirectoryMode = "0700";
+ StateDirectory = [
+ "tor"
+ "tor/onion"
+ ] ++
+ flatten (mapAttrsToList (name: onion:
+ optional (onion.secretKey == null) "tor/onion/${name}"
+ ) cfg.relay.onionServices);
+ # The following options are only to optimize:
+ # systemd-analyze security tor
+ RootDirectory = runDir + "/root";
+ RootDirectoryStartOnly = true;
+ #InaccessiblePaths = [ "-+${runDir}/root" ];
+ UMask = "0066";
+ BindPaths = [ stateDir ];
+ BindReadOnlyPaths = [ storeDir "/etc" ];
+ AmbientCapabilities = [""] ++ lib.optional bindsPrivilegedPort "CAP_NET_BIND_SERVICE";
+ CapabilityBoundingSet = [""] ++ lib.optional bindsPrivilegedPort "CAP_NET_BIND_SERVICE";
+ # ProtectClock= adds DeviceAllow=char-rtc r
+ DeviceAllow = "";
+ LockPersonality = true;
+ MemoryDenyWriteExecute = true;
+ NoNewPrivileges = true;
+ PrivateDevices = true;
+ PrivateMounts = true;
+ PrivateNetwork = mkDefault false;
+ PrivateTmp = true;
+ # Tor cannot currently bind privileged port when PrivateUsers=true,
+ # see https://gitlab.torproject.org/legacy/trac/-/issues/20930
+ PrivateUsers = !bindsPrivilegedPort;
+ ProtectClock = true;
+ ProtectControlGroups = true;
+ ProtectHome = true;
+ ProtectHostname = true;
+ ProtectKernelLogs = true;
+ ProtectKernelModules = true;
+ ProtectKernelTunables = true;
+ ProtectSystem = "strict";
+ RemoveIPC = true;
+ RestrictAddressFamilies = [ "AF_UNIX" "AF_INET" "AF_INET6" ];
+ RestrictNamespaces = true;
+ RestrictRealtime = true;
+ RestrictSUIDSGID = true;
+ # See also the finer but experimental option settings.Sandbox
+ SystemCallFilter = [
+ "@system-service"
+ # Groups in @system-service which do not contain a syscall listed by:
+ # perf stat -x, 2>perf.log -e 'syscalls:sys_enter_*' tor
+ # in tests, and seem likely not necessary for tor.
+ "~@aio" "~@chown" "~@keyring" "~@memlock" "~@resources" "~@setuid" "~@timer"
+ ];
+ SystemCallArchitectures = "native";
+ SystemCallErrorNumber = "EPERM";
};
+ };
environment.systemPackages = [ cfg.package ];
};
+
+ meta.maintainers = with lib.maintainers; [ julm ];
}
diff --git a/nixos/modules/services/ttys/agetty.nix b/nixos/modules/services/ttys/getty.nix
similarity index 82%
rename from nixos/modules/services/ttys/agetty.nix
rename to nixos/modules/services/ttys/getty.nix
index d07746be2377..68ab81837772 100644
--- a/nixos/modules/services/ttys/agetty.nix
+++ b/nixos/modules/services/ttys/getty.nix
@@ -4,7 +4,7 @@ with lib;
let
- autologinArg = optionalString (config.services.mingetty.autologinUser != null) "--autologin ${config.services.mingetty.autologinUser}";
+ autologinArg = optionalString (config.services.getty.autologinUser != null) "--autologin ${config.services.getty.autologinUser}";
gettyCmd = extraArgs: "@${pkgs.util-linux}/sbin/agetty agetty --login-program ${pkgs.shadow}/bin/login ${autologinArg} ${extraArgs}";
in
@@ -13,9 +13,13 @@ in
###### interface
+ imports = [
+ (mkRenamedOptionModule [ "services" "mingetty" ] [ "services" "getty" ])
+ ];
+
options = {
- services.mingetty = {
+ services.getty = {
autologinUser = mkOption {
type = types.nullOr types.str;
@@ -29,7 +33,7 @@ in
greetingLine = mkOption {
type = types.str;
description = ''
- Welcome line printed by mingetty.
+ Welcome line printed by agetty.
The default shows current NixOS version label, machine type and tty.
'';
};
@@ -38,7 +42,7 @@ in
type = types.lines;
default = "";
description = ''
- Help line printed by mingetty below the welcome line.
+ Help line printed by agetty below the welcome line.
Used by the installation CD to give some hints on
how to proceed.
'';
@@ -65,7 +69,7 @@ in
config = {
# Note: this is set here rather than up there so that changing
# nixos.label would not rebuild manual pages
- services.mingetty.greetingLine = mkDefault ''<<< Welcome to NixOS ${config.system.nixos.label} (\m) - \l >>>'';
+ services.getty.greetingLine = mkDefault ''<<< Welcome to NixOS ${config.system.nixos.label} (\m) - \l >>>'';
systemd.services."getty@" =
{ serviceConfig.ExecStart = [
@@ -76,7 +80,7 @@ in
};
systemd.services."serial-getty@" =
- let speeds = concatStringsSep "," (map toString config.services.mingetty.serialSpeed); in
+ let speeds = concatStringsSep "," (map toString config.services.getty.serialSpeed); in
{ serviceConfig.ExecStart = [
"" # override upstream default with an empty ExecStart
(gettyCmd "%I ${speeds} $TERM")
@@ -106,8 +110,8 @@ in
{ # Friendly greeting on the virtual consoles.
source = pkgs.writeText "issue" ''
- [1;32m${config.services.mingetty.greetingLine}[0m
- ${config.services.mingetty.helpLine}
+ [1;32m${config.services.getty.greetingLine}[0m
+ ${config.services.getty.helpLine}
'';
};
diff --git a/nixos/modules/services/web-apps/nextcloud.xml b/nixos/modules/services/web-apps/nextcloud.xml
index 02e4dba28610..f71c8df6c6d4 100644
--- a/nixos/modules/services/web-apps/nextcloud.xml
+++ b/nixos/modules/services/web-apps/nextcloud.xml
@@ -10,6 +10,10 @@
services.nextcloud. A
desktop client is packaged at pkgs.nextcloud-client.
+
+ The current default by NixOS is nextcloud20 which is also the latest
+ major version available.
+
Basic usage
@@ -210,7 +214,7 @@
nextcloud17 = generic {
version = "17.0.x";
sha256 = "0000000000000000000000000000000000000000000000000000";
- insecure = true;
+ eol = true;
};
}
diff --git a/nixos/modules/services/web-servers/nginx/default.nix b/nixos/modules/services/web-servers/nginx/default.nix
index 62671e9d7484..7fcd61880ea8 100644
--- a/nixos/modules/services/web-servers/nginx/default.nix
+++ b/nixos/modules/services/web-servers/nginx/default.nix
@@ -27,6 +27,33 @@ let
) cfg.virtualHosts;
enableIPv6 = config.networking.enableIPv6;
+ defaultFastcgiParams = {
+ SCRIPT_FILENAME = "$document_root$fastcgi_script_name";
+ QUERY_STRING = "$query_string";
+ REQUEST_METHOD = "$request_method";
+ CONTENT_TYPE = "$content_type";
+ CONTENT_LENGTH = "$content_length";
+
+ SCRIPT_NAME = "$fastcgi_script_name";
+ REQUEST_URI = "$request_uri";
+ DOCUMENT_URI = "$document_uri";
+ DOCUMENT_ROOT = "$document_root";
+ SERVER_PROTOCOL = "$server_protocol";
+ REQUEST_SCHEME = "$scheme";
+ HTTPS = "$https if_not_empty";
+
+ GATEWAY_INTERFACE = "CGI/1.1";
+ SERVER_SOFTWARE = "nginx/$nginx_version";
+
+ REMOTE_ADDR = "$remote_addr";
+ REMOTE_PORT = "$remote_port";
+ SERVER_ADDR = "$server_addr";
+ SERVER_PORT = "$server_port";
+ SERVER_NAME = "$server_name";
+
+ REDIRECT_STATUS = "200";
+ };
+
recommendedProxyConfig = pkgs.writeText "nginx-recommended-proxy-headers.conf" ''
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
@@ -283,6 +310,10 @@ let
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
''}
+ ${concatStringsSep "\n"
+ (mapAttrsToList (n: v: ''fastcgi_param ${n} "${v}";'')
+ (optionalAttrs (config.fastcgiParams != {})
+ (defaultFastcgiParams // config.fastcgiParams)))}
${optionalString (config.index != null) "index ${config.index};"}
${optionalString (config.tryFiles != null) "try_files ${config.tryFiles};"}
${optionalString (config.root != null) "root ${config.root};"}
diff --git a/nixos/modules/services/web-servers/nginx/location-options.nix b/nixos/modules/services/web-servers/nginx/location-options.nix
index f2fc07255725..5a7f5188b6cf 100644
--- a/nixos/modules/services/web-servers/nginx/location-options.nix
+++ b/nixos/modules/services/web-servers/nginx/location-options.nix
@@ -101,6 +101,16 @@ with lib;
'';
};
+ fastcgiParams = mkOption {
+ type = types.attrsOf types.str;
+ default = {};
+ description = ''
+ FastCGI parameters to override. Unlike in the Nginx
+ configuration file, overriding only some default parameters
+ won't unset the default values for other parameters.
+ '';
+ };
+
extraConfig = mkOption {
type = types.lines;
default = "";
diff --git a/nixos/modules/virtualisation/lxc-container.nix b/nixos/modules/virtualisation/lxc-container.nix
index d49364840187..e47bd59dc016 100644
--- a/nixos/modules/virtualisation/lxc-container.nix
+++ b/nixos/modules/virtualisation/lxc-container.nix
@@ -11,7 +11,7 @@ with lib;
users.users.root.initialHashedPassword = mkOverride 150 "";
# Some more help text.
- services.mingetty.helpLine =
+ services.getty.helpLine =
''
Log in as "root" with an empty password.
diff --git a/nixos/tests/docker-tools.nix b/nixos/tests/docker-tools.nix
index 8402ba68b720..369ef94f9fad 100644
--- a/nixos/tests/docker-tools.nix
+++ b/nixos/tests/docker-tools.nix
@@ -247,5 +247,12 @@ import ./make-test-python.nix ({ pkgs, ... }: {
).strip()
== "${if pkgs.system == "aarch64-linux" then "amd64" else "arm64"}"
)
+
+ with subtest("buildLayeredImage doesn't dereference /nix/store symlink layers"):
+ docker.succeed(
+ "docker load --input='${examples.layeredStoreSymlink}'",
+ "docker run --rm ${examples.layeredStoreSymlink.imageName} bash -c 'test -L ${examples.layeredStoreSymlink.passthru.symlink}'",
+ "docker rmi ${examples.layeredStoreSymlink.imageName}",
+ )
'';
})
diff --git a/nixos/tests/login.nix b/nixos/tests/login.nix
index d36c1a91be43..ce11e1f942ab 100644
--- a/nixos/tests/login.nix
+++ b/nixos/tests/login.nix
@@ -50,7 +50,7 @@ import ./make-test-python.nix ({ pkgs, latestKernel ? false, ... }:
with subtest("Virtual console logout"):
machine.send_chars("exit\n")
machine.wait_until_fails("pgrep -u alice bash")
- machine.screenshot("mingetty")
+ machine.screenshot("getty")
with subtest("Check whether ctrl-alt-delete works"):
machine.send_key("ctrl-alt-delete")
diff --git a/nixos/tests/postgresql-wal-receiver.nix b/nixos/tests/postgresql-wal-receiver.nix
index 432b46234f9c..0e8b3bfd6c34 100644
--- a/nixos/tests/postgresql-wal-receiver.nix
+++ b/nixos/tests/postgresql-wal-receiver.nix
@@ -1,11 +1,19 @@
+{ system ? builtins.currentSystem,
+ config ? {},
+ pkgs ? import ../.. { inherit system config; }
+}:
+
+with import ../lib/testing-python.nix { inherit system pkgs; };
+
let
+ lib = pkgs.lib;
+
# Makes a test for a PostgreSQL package, given by name and looked up from `pkgs`.
makePostgresqlWalReceiverTest = postgresqlPackage:
{
name = postgresqlPackage;
value =
- import ./make-test-python.nix ({ pkgs, lib, ... }: let
-
+ let
pkg = pkgs."${postgresqlPackage}";
postgresqlDataDir = "/var/lib/postgresql/${pkg.psqlSchema}";
replicationUser = "wal_receiver_user";
@@ -19,7 +27,7 @@ let
then pkgs.writeTextDir "recovery.signal" ""
else pkgs.writeTextDir "recovery.conf" "restore_command = 'cp ${walBackupDir}/%f %p'";
- in {
+ in makeTest {
name = "postgresql-wal-receiver-${postgresqlPackage}";
meta.maintainers = with lib.maintainers; [ pacien ];
@@ -104,7 +112,7 @@ let
"test $(sudo -u postgres psql --pset='pager=off' --tuples-only --command='select count(distinct val) from dummy;') -eq 100"
)
'';
- });
+ };
};
# Maps the generic function over all attributes of PostgreSQL packages
diff --git a/nixos/tests/tor.nix b/nixos/tests/tor.nix
index ad07231557c3..c061f59226cf 100644
--- a/nixos/tests/tor.nix
+++ b/nixos/tests/tor.nix
@@ -17,7 +17,7 @@ rec {
environment.systemPackages = with pkgs; [ netcat ];
services.tor.enable = true;
services.tor.client.enable = true;
- services.tor.controlPort = 9051;
+ services.tor.settings.ControlPort = 9051;
};
testScript = ''
diff --git a/pkgs/applications/audio/ecasound/default.nix b/pkgs/applications/audio/ecasound/default.nix
index adb6f6b74274..505e5a604ca2 100644
--- a/pkgs/applications/audio/ecasound/default.nix
+++ b/pkgs/applications/audio/ecasound/default.nix
@@ -1,5 +1,6 @@
{ stdenv
, fetchurl
+, pkg-config
, alsaLib
, audiofile
, libjack2
@@ -9,9 +10,14 @@
, libsndfile
, lilv
, lv2
+, ncurses
+, readline
}:
-# TODO: fix readline, ncurses, lilv, liblo, liboil and python. See configure log.
+# TODO: fix python. See configure log.
+# fix -Dnullptr=0 cludge below.
+# The error is
+# /nix/store/*-lilv-0.24.10/include/lilv-0/lilv/lilvmm.hpp:272:53: error: 'nullptr' was not declared in this scope
stdenv.mkDerivation rec {
pname = "ecasound";
@@ -22,7 +28,34 @@ stdenv.mkDerivation rec {
sha256 = "1m7njfjdb7sqf0lhgc4swihgdr4snkg8v02wcly08wb5ar2fr2s6";
};
- buildInputs = [ alsaLib audiofile libjack2 liblo liboil libsamplerate libsndfile lilv lv2 ];
+ nativeBuildInputs = [
+ pkg-config
+ ];
+
+ buildInputs = [
+ alsaLib
+ audiofile
+ libjack2
+ liblo
+ liboil
+ libsamplerate
+ libsndfile
+ lilv
+ lv2
+ ncurses
+ readline
+ ];
+
+ strictDeps = true;
+
+ configureFlags = "--enable-liblilv --with-extra-cppflags=-Dnullptr=0";
+
+ postPatch = ''
+ sed -i -e '
+ s@^#include @#include @
+ s@^#include @#include @
+ ' ecasound/eca-curses.cpp
+ '';
meta = {
description = "Software package designed for multitrack audio processing";
diff --git a/pkgs/applications/audio/mopidy/local.nix b/pkgs/applications/audio/mopidy/local.nix
index 6cbb8424d35d..de748ea7b325 100644
--- a/pkgs/applications/audio/mopidy/local.nix
+++ b/pkgs/applications/audio/mopidy/local.nix
@@ -1,6 +1,7 @@
{ lib
, mopidy
, python3Packages
+, fetchpatch
}:
python3Packages.buildPythonApplication rec {
@@ -21,6 +22,14 @@ python3Packages.buildPythonApplication rec {
python3Packages.pytestCheckHook
];
+ patches = [
+ # Fix tests for Mopidy≥3.1.0. Remove with the next release.
+ (fetchpatch {
+ url = "https://github.com/mopidy/mopidy-local/commit/f1d7598d3a9587f0823acb97ecb615f4f4817fd2.patch";
+ sha256 = "193kd5zwsr0qpp2y8icdy13vqpglmjdm7x1rw5hliwyq18a34vjp";
+ })
+ ];
+
meta = with lib; {
homepage = "https://github.com/mopidy/mopidy-local";
description = "Mopidy extension for playing music from your local music archive";
diff --git a/pkgs/applications/audio/mopidy/mopidy.nix b/pkgs/applications/audio/mopidy/mopidy.nix
index f2f3734ec2ee..6f7ee0c857ae 100644
--- a/pkgs/applications/audio/mopidy/mopidy.nix
+++ b/pkgs/applications/audio/mopidy/mopidy.nix
@@ -4,13 +4,13 @@
pythonPackages.buildPythonApplication rec {
pname = "mopidy";
- version = "3.0.2";
+ version = "3.1.1";
src = fetchFromGitHub {
owner = "mopidy";
repo = "mopidy";
rev = "v${version}";
- sha256 = "1n9lpgq0p112cjgsrc1cd6mnffk56y36g2c5skk9cqzw27qrkd15";
+ sha256 = "14m80z9spi2vhfs2bbff7ky80mr6bksl4550y17hwd7zpkid60za";
};
nativeBuildInputs = [ wrapGAppsHook ];
diff --git a/pkgs/applications/audio/mopidy/soundcloud.nix b/pkgs/applications/audio/mopidy/soundcloud.nix
index 8002feb0f901..fb2e9474b1fa 100644
--- a/pkgs/applications/audio/mopidy/soundcloud.nix
+++ b/pkgs/applications/audio/mopidy/soundcloud.nix
@@ -2,13 +2,13 @@
pythonPackages.buildPythonApplication rec {
pname = "mopidy-soundcloud";
- version = "2.1.0";
+ version = "3.0.1";
src = fetchFromGitHub {
owner = "mopidy";
repo = "mopidy-soundcloud";
rev = "v${version}";
- sha256 = "131qdm9i0j3ayff0js11qcmbjv50ws5s6iiqr6x5b66ymjl4scfv";
+ sha256 = "18wiiv4rca9vibvnc27f3q4apf8n61kbp7mdbm2pmz86qwmd47pa";
};
propagatedBuildInputs = [ mopidy ];
diff --git a/pkgs/applications/audio/mp3gain/default.nix b/pkgs/applications/audio/mp3gain/default.nix
index 9bf0b5b8f64c..4502acfa1131 100644
--- a/pkgs/applications/audio/mp3gain/default.nix
+++ b/pkgs/applications/audio/mp3gain/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation {
description = "Lossless mp3 normalizer with statistical analysis";
homepage = "http://mp3gain.sourceforge.net/";
license = licenses.lgpl21;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ devhell ];
};
}
diff --git a/pkgs/applications/audio/picard/default.nix b/pkgs/applications/audio/picard/default.nix
index 17d68c1e5dda..69debfa2ea88 100644
--- a/pkgs/applications/audio/picard/default.nix
+++ b/pkgs/applications/audio/picard/default.nix
@@ -12,13 +12,13 @@ let
;
in pythonPackages.buildPythonApplication rec {
pname = "picard";
- version = "2.5.5";
+ version = "2.5.6";
src = fetchFromGitHub {
owner = "metabrainz";
repo = pname;
rev = "release-${version}";
- sha256 = "0i97cfnfgg4g13ms8x3bq279s4r7jckxxrv3sdz7dxpcn6gkw35s";
+ sha256 = "1mkbg44bm642mlpfxsdlw947var6a3sf9m6c897b4n0742hsdkbc";
};
nativeBuildInputs = [ gettext qt5.wrapQtAppsHook qt5.qtbase ]
diff --git a/pkgs/applications/audio/spotify-tui/default.nix b/pkgs/applications/audio/spotify-tui/default.nix
index a2001996c988..4eb6288e4ee7 100644
--- a/pkgs/applications/audio/spotify-tui/default.nix
+++ b/pkgs/applications/audio/spotify-tui/default.nix
@@ -1,27 +1,34 @@
-{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, python3, libxcb, AppKit, Security }:
+{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles, pkgconfig, openssl, python3, libxcb, AppKit, Security }:
rustPlatform.buildRustPackage rec {
pname = "spotify-tui";
- version = "0.22.0";
+ version = "0.23.0";
src = fetchFromGitHub {
owner = "Rigellute";
repo = "spotify-tui";
rev = "v${version}";
- sha256 = "0w1y37qh9n3936d59hvqzjz2878x2nwxqxc4s7mp4f9xqcfl0c5r";
+ sha256 = "082y5m2vglzx9kdc2088zynz0njcnljnb0y170igmlsxq9wkrgg2";
};
- cargoSha256 = "1ri054p08si95x1gh2bkh4fk50ja79c5izzjnkvs0yhfj1wzbghi";
+ cargoSha256 = "100c7x603qyhav3p24clwfal4ngh0258x9lqsi84kcj4wq2f3i8f";
- nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkgconfig python3 ];
+ nativeBuildInputs = [ installShellFiles ] ++ stdenv.lib.optionals stdenv.isLinux [ pkgconfig python3 ];
buildInputs = [ ]
++ stdenv.lib.optionals stdenv.isLinux [ openssl libxcb ]
++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Security ];
+ postInstall = ''
+ for shell in bash fish zsh; do
+ $out/bin/spt --completions $shell > spt.$shell
+ installShellCompletion spt.$shell
+ done
+ '';
+
meta = with stdenv.lib; {
description = "Spotify for the terminal written in Rust";
homepage = "https://github.com/Rigellute/spotify-tui";
- changelog = "https://github.com/Rigellute/spotify-tui/releases/tag/v${version}";
+ changelog = "https://github.com/Rigellute/spotify-tui/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ jwijenbergh ];
};
diff --git a/pkgs/applications/audio/sublime-music/default.nix b/pkgs/applications/audio/sublime-music/default.nix
index 7e3c1b9164f1..1f74998166fb 100644
--- a/pkgs/applications/audio/sublime-music/default.nix
+++ b/pkgs/applications/audio/sublime-music/default.nix
@@ -1,5 +1,4 @@
{ lib, python3Packages, gobject-introspection, gtk3, pango, wrapGAppsHook
-
, chromecastSupport ? false
, serverSupport ? false
, keyringSupport ? true
@@ -51,6 +50,10 @@ python3Packages.buildPythonApplication rec {
# https://github.com/NixOS/nixpkgs/issues/56943
strictDeps = false;
+ # no tests
+ doCheck = false;
+ pythonImportsCheck = [ "sublime" ];
+
meta = with lib; {
description = "GTK3 Subsonic/Airsonic client";
homepage = "https://sublimemusic.app/";
diff --git a/pkgs/applications/audio/sunvox/default.nix b/pkgs/applications/audio/sunvox/default.nix
index 2cd48806f7d0..1b3b476d7037 100644
--- a/pkgs/applications/audio/sunvox/default.nix
+++ b/pkgs/applications/audio/sunvox/default.nix
@@ -13,11 +13,11 @@ let
in
stdenv.mkDerivation rec {
pname = "SunVox";
- version = "1.9.5d";
+ version = "1.9.6c";
src = fetchurl {
url = "http://www.warmplace.ru/soft/sunvox/sunvox-${version}.zip";
- sha256 = "04f7psm0lvc09nw7d2wp0sncf37bym2v7hhxp4v8c8gdgayj7k8m";
+ sha256 = "0lqzr68n2c6aifw2vbyars91wn1chmgb9xfdk463g4vjqiava3ih";
};
buildInputs = [ unzip ];
diff --git a/pkgs/applications/editors/moe/default.nix b/pkgs/applications/editors/moe/default.nix
index 060abda33d0d..d6dbe1006528 100644
--- a/pkgs/applications/editors/moe/default.nix
+++ b/pkgs/applications/editors/moe/default.nix
@@ -1,16 +1,16 @@
-{ stdenv, fetchurl
-, lzip, ncurses
+{ stdenv
+, fetchurl
+, ncurses
+, lzip
}:
-with stdenv.lib;
stdenv.mkDerivation rec {
-
pname = "moe";
- version = "1.10";
+ version = "1.11";
src = fetchurl {
url = "mirror://gnu/moe/${pname}-${version}.tar.lz";
- sha256 = "0fymywdiy9xqppcmvgs7mf7d3gfrky3jp5jkxs2l3v93asml9zcc";
+ sha256 = "sha256-DvvLz1pKjZZlQcbLCZugq2QWeANm286C2f+ZWoWl4vk=";
};
prePatch = ''
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ lzip ];
buildInputs = [ ncurses ];
- meta = {
+ meta = with stdenv.lib; {
description = "A small, 8-bit clean editor";
longDescription = ''
GNU moe is a powerful, 8-bit clean, console text editor for ISO-8859 and
diff --git a/pkgs/applications/editors/thonny/default.nix b/pkgs/applications/editors/thonny/default.nix
index 0f05bf23c071..0808bf82390e 100644
--- a/pkgs/applications/editors/thonny/default.nix
+++ b/pkgs/applications/editors/thonny/default.nix
@@ -4,13 +4,13 @@ with python3.pkgs;
buildPythonApplication rec {
pname = "thonny";
- version = "3.3.1";
+ version = "3.3.2";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
- sha256 = "0nk4kx6apmnd6fyd9zw77yprjzgjf7micvcws2i2sci0d9fff34c";
+ sha256 = "1pzy7v48x4ip8v6aqm8hl5ywx7xiqbsfypxxifih8gnlangp1n8y";
};
propagatedBuildInputs = with python3.pkgs; [
diff --git a/pkgs/applications/editors/vscode/vscodium.nix b/pkgs/applications/editors/vscode/vscodium.nix
index 018cd710753c..c3d8c4ee46c5 100644
--- a/pkgs/applications/editors/vscode/vscodium.nix
+++ b/pkgs/applications/editors/vscode/vscodium.nix
@@ -5,7 +5,7 @@ let
plat = {
x86_64-linux = "linux-x64";
- x86_64-darwin = "darwin";
+ x86_64-darwin = "darwin-x64";
aarch64-linux = "linux-arm64";
armv7l-linux = "linux-armhf";
}.${system};
diff --git a/pkgs/applications/graphics/digikam/default.nix b/pkgs/applications/graphics/digikam/default.nix
index 8196d8008f79..fcd871bf5ab3 100644
--- a/pkgs/applications/graphics/digikam/default.nix
+++ b/pkgs/applications/graphics/digikam/default.nix
@@ -114,6 +114,7 @@ mkDerivation rec {
"-DENABLE_INTERNALMYSQL=1"
"-DENABLE_MEDIAPLAYER=1"
"-DENABLE_QWEBENGINE=on"
+ "-DENABLE_APPSTYLES=on"
];
dontWrapGApps = true;
diff --git a/pkgs/applications/graphics/monado/default.nix b/pkgs/applications/graphics/monado/default.nix
new file mode 100644
index 000000000000..61343b3b1b46
--- /dev/null
+++ b/pkgs/applications/graphics/monado/default.nix
@@ -0,0 +1,101 @@
+{ stdenv
+, fetchFromGitLab
+, fetchpatch
+, cmake
+, pkg-config
+, python3
+, SDL2
+, dbus
+, eigen
+, ffmpeg
+, glslang
+, hidapi
+, libGL
+, libXau
+, libXdmcp
+, libXrandr
+, libffi
+# , librealsense
+, libsurvive
+, libusb1
+, libuvc
+, libv4l
+, libxcb
+, opencv4
+, openhmd
+, udev
+, vulkan-headers
+, vulkan-loader
+, wayland
+, wayland-protocols
+, zlib
+}:
+
+stdenv.mkDerivation rec {
+ pname = "monado";
+ version = "0.4.1";
+
+ src = fetchFromGitLab {
+ domain = "gitlab.freedesktop.org";
+ owner = pname;
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "114aif79dqyn2qg07mkv6lzmqn15k6fdcii818rdf5g4bp7zzzgm";
+ };
+
+ patches = [
+ # fix libsurvive autodetection, drop with the next version update
+ (fetchpatch {
+ url = "https://gitlab.freedesktop.org/monado/monado/-/commit/345e9eab56e2de9e8b07cf72c2a67cf2ebd01e62.patch";
+ sha256 = "17c110an6sxc8rn7dfz30rfkbayg64w68licicwc8cqabi6cgrm3";
+ })
+ ];
+
+ nativeBuildInputs = [ cmake pkg-config python3 ];
+
+ buildInputs = [
+ SDL2
+ dbus
+ eigen
+ ffmpeg
+ glslang
+ hidapi
+ libGL
+ libXau
+ libXdmcp
+ libXrandr
+ libffi
+ # librealsense.dev - see below
+ libsurvive
+ libusb1
+ libuvc
+ libv4l
+ libxcb
+ opencv4
+ openhmd
+ udev
+ vulkan-headers
+ vulkan-loader
+ wayland
+ wayland-protocols
+ zlib
+ ];
+
+ # realsense is disabled, the build ends with the following error:
+ #
+ # CMake Error in src/xrt/drivers/CMakeLists.txt:
+ # Imported target "realsense2::realsense2" includes non-existent path
+ # "/nix/store/2v95aps14hj3jy4ryp86vl7yymv10mh0-librealsense-2.41.0/include"
+ # in its INTERFACE_INCLUDE_DIRECTORIES.
+ #
+ # for some reason cmake is trying to use ${librealsense}/include
+ # instead of ${librealsense.dev}/include as an include directory
+
+ meta = with stdenv.lib; {
+ description = "Open source XR runtime";
+ homepage = "https://monado.freedesktop.org/";
+ license = licenses.boost;
+ maintainers = with maintainers; [ prusnak ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/1password/default.nix b/pkgs/applications/misc/1password/default.nix
index 34b9b21f57d5..e6a55421a916 100644
--- a/pkgs/applications/misc/1password/default.nix
+++ b/pkgs/applications/misc/1password/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "1password";
- version = "1.7.0";
+ version = "1.8.0";
src =
if stdenv.isLinux then fetchzip {
url = {
@@ -10,13 +10,13 @@ stdenv.mkDerivation rec {
"x86_64-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_amd64_v${version}.zip";
}.${stdenv.hostPlatform.system};
sha256 = {
- "i686-linux" = "0fvi9pfcm6pfy628q2lg62bkikrgsisynrk3kkjisb9ldcyjgabw";
- "x86_64-linux" = "1iskhls8g8w2zhk79gprz4vzrmm7r7fq87gwgd4xmj5md4nkzran";
+ "i686-linux" = "teoxscan+EZ76Q0sfKT6nt1w/LSsmDoiN2oh+NGO/4A=";
+ "x86_64-linux" = "nRK2GSwhQe5OgcAdR1fg0vUp3fzEkhwU/teIwsEEemw=";
}.${stdenv.hostPlatform.system};
stripRoot = false;
} else fetchurl {
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_darwin_amd64_v${version}.pkg";
- sha256 = "0x6s26zgjryzmcg9qxmv5s2vml06q96yqbapasjfxqc3l205lnnn";
+ sha256 = "0pycia75vdfh6gxfd2hr32cxrryfxydid804n0v76l2fpr9v9v3d";
};
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ xar cpio ];
diff --git a/pkgs/applications/misc/dasel/default.nix b/pkgs/applications/misc/dasel/default.nix
index 7bb61a3addde..c8f7016435ef 100644
--- a/pkgs/applications/misc/dasel/default.nix
+++ b/pkgs/applications/misc/dasel/default.nix
@@ -5,13 +5,13 @@
buildGoModule rec {
pname = "dasel";
- version = "1.12.0";
+ version = "1.12.2";
src = fetchFromGitHub {
owner = "TomWright";
repo = pname;
rev = "v${version}";
- sha256 = "69igz0Q7pT0f6PsbZWHcwUiTKRTTzj7r5E6E5ExUoJo=";
+ sha256 = "/WB/SsOih0N5P4cUAD6zkCajplzZ/Jez0H80+CG08rc=";
};
vendorSha256 = "BdX4DO77mIf/+aBdkNVFUzClsIml1UMcgvikDbbdgcY=";
diff --git a/pkgs/applications/misc/dfilemanager/default.nix b/pkgs/applications/misc/dfilemanager/default.nix
index e7750cf7978e..e9a50e88b23c 100644
--- a/pkgs/applications/misc/dfilemanager/default.nix
+++ b/pkgs/applications/misc/dfilemanager/default.nix
@@ -1,13 +1,14 @@
-{ stdenv, fetchgit, cmake, file, qtbase, qttools, solid }:
+{ stdenv, mkDerivation, fetchFromGitHub, cmake, file, qtbase, qttools, solid }:
-stdenv.mkDerivation {
+mkDerivation {
pname = "dfilemanager";
- version = "git-2016-01-10";
+ version = "git-2020-09-04";
- src = fetchgit {
- url = "git://git.code.sf.net/p/dfilemanager/code";
- rev = "2c5078b05e0ad74c037366be1ab3e6a03492bde4";
- sha256 = "1qwhnlcc2j8sr1f3v63sxs3m7q7w1xy6c2jqsnznjgm23b5h3hxd";
+ src = fetchFromGitHub {
+ owner = "probonopd";
+ repo = "dfilemanager";
+ rev = "c592d643d76942dc2c2ccb6e4bfdf53f5e805e48";
+ sha256 = "7hIgaWjjOck5i4QbeVeQK7yrjK4yDoAZ5qY9RhM5ABY=";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/applications/misc/gpsbabel/default.nix b/pkgs/applications/misc/gpsbabel/default.nix
index 70862bb61e79..a95ffbbb59aa 100644
--- a/pkgs/applications/misc/gpsbabel/default.nix
+++ b/pkgs/applications/misc/gpsbabel/default.nix
@@ -1,14 +1,14 @@
-{ lib, stdenv, fetchFromGitHub, fetchpatch, zlib, which, IOKit, qtbase, libusb-compat-0_1 }:
+{ lib, stdenv, fetchFromGitHub, fetchpatch, libusb1, qtbase, zlib, IOKit, which, expat }:
stdenv.mkDerivation rec {
pname = "gpsbabel";
- version = "1.6.0";
+ version = "1.7.0";
src = fetchFromGitHub {
owner = "gpsbabel";
repo = "gpsbabel";
rev = "gpsbabel_${lib.replaceStrings ["."] ["_"] version}";
- sha256 = "0q17jhmaf7z5lld2ff7h6jb3v1yz8hbwd2rmaq2dsamc53dls8iw";
+ sha256 = "010g0vd2f5knpq5p7qfnl31kv3r8m5sjdsafcinbj5gh02j2nzpy";
};
patches = [
@@ -18,9 +18,11 @@ stdenv.mkDerivation rec {
})
];
- buildInputs = [ zlib qtbase which libusb-compat-0_1 ]
+ buildInputs = [ libusb1 qtbase zlib ]
++ lib.optionals stdenv.isDarwin [ IOKit ];
+ checkInputs = [ expat.dev which ]; # Avoid ./testo.d/kml.test: line 74: which: command not found. Skipping KML validation phase.
+
/* FIXME: Building the documentation, with "make doc", requires this:
[ libxml2 libxslt perl docbook_xml_dtd_412 docbook_xsl fop ]
@@ -41,6 +43,8 @@ stdenv.mkDerivation rec {
patchShebangs testo
substituteInPlace testo \
--replace "-x /usr/bin/hexdump" ""
+
+ rm -v testo.d/alantrl.test
''
# The raymarine and gtm tests fail on i686 despite -ffloat-store.
+ lib.optionalString stdenv.isi686 "rm -v testo.d/raymarine.test testo.d/gtm.test;"
diff --git a/pkgs/applications/misc/jekyll/full/Gemfile b/pkgs/applications/misc/jekyll/full/Gemfile
index 8e7499bad61a..2e72350f7e5e 100644
--- a/pkgs/applications/misc/jekyll/full/Gemfile
+++ b/pkgs/applications/misc/jekyll/full/Gemfile
@@ -14,6 +14,7 @@ gem "jekyll-coffeescript"
gem "jekyll-feed", "~> 0.9"
gem "jekyll-gist"
gem "jekyll-paginate"
+gem "jekyll-polyglot"
gem "jekyll-redirect-from"
gem "kramdown-syntax-coderay"
gem "mime-types", "~> 3.0"
diff --git a/pkgs/applications/misc/jekyll/full/Gemfile.lock b/pkgs/applications/misc/jekyll/full/Gemfile.lock
index c4e759289d12..969909ca6d0a 100644
--- a/pkgs/applications/misc/jekyll/full/Gemfile.lock
+++ b/pkgs/applications/misc/jekyll/full/Gemfile.lock
@@ -64,6 +64,8 @@ GEM
html-pipeline (~> 2.3)
jekyll (>= 3.7, < 5.0)
jekyll-paginate (1.1.0)
+ jekyll-polyglot (1.3.3)
+ jekyll (>= 3.0)
jekyll-redirect-from (0.16.0)
jekyll (>= 3.3, < 5.0)
jekyll-sass-converter (2.1.0)
@@ -140,6 +142,7 @@ DEPENDENCIES
jekyll-gist
jekyll-mentions
jekyll-paginate
+ jekyll-polyglot
jekyll-redirect-from
jekyll-seo-tag
jekyll-sitemap
diff --git a/pkgs/applications/misc/jekyll/full/gemset.nix b/pkgs/applications/misc/jekyll/full/gemset.nix
index c21d705fd267..bfbe428c861d 100644
--- a/pkgs/applications/misc/jekyll/full/gemset.nix
+++ b/pkgs/applications/misc/jekyll/full/gemset.nix
@@ -297,6 +297,17 @@
};
version = "1.1.0";
};
+ jekyll-polyglot = {
+ dependencies = ["jekyll"];
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "4ad9140733250b65bc1ffab84650c588d036d23129e82f0349d31e56f1fe10a8";
+ type = "gem";
+ };
+ version = "1.3.3";
+ };
jekyll-redirect-from = {
dependencies = ["jekyll"];
groups = ["default"];
@@ -723,4 +734,4 @@
};
version = "2.4.2";
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/applications/misc/josm/default.nix b/pkgs/applications/misc/josm/default.nix
index eab2519ad08e..30e7882b60b7 100644
--- a/pkgs/applications/misc/josm/default.nix
+++ b/pkgs/applications/misc/josm/default.nix
@@ -1,20 +1,20 @@
{ stdenv, fetchurl, fetchsvn, makeWrapper, unzip, jre, libXxf86vm }:
let
pname = "josm";
- version = "17329";
+ version = "17428";
srcs = {
jar = fetchurl {
url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar";
- sha256 = "0hra146akadqz9acj1xa2vzrmipfzf8li7sgsmk169xr991y653k";
+ sha256 = "0fhnq0836jp72br808hhw1ki70zc9wqcwfhnizb8pzjvs4wgx36w";
};
macosx = fetchurl {
url = "https://josm.openstreetmap.de/download/macosx/josm-macosx-${version}.zip";
- sha256 = "0i09jnfqbcirmic9vayrp78lnyk4mfh7ax3v3cs8kyqhk930pscf";
+ sha256 = "126yy6y7mkpqzkrkqkzzn3mwnl1yjkmd5k895k7mmk2inmcsvqgm";
};
pkg = fetchsvn {
url = "https://josm.openstreetmap.de/svn/trunk/native/linux/tested";
rev = version;
- sha256 = "0ybjca6dhnbwl3xqwrc91c444fzs1zrlnz7qr3l79s1vll9r4qd1";
+ sha256 = "198kq490y5wzxz0a5prb9anykq6dzg0imxfkchsas233inbzggql";
};
};
in
diff --git a/pkgs/applications/misc/llpp/default.nix b/pkgs/applications/misc/llpp/default.nix
index c16322ad84fa..8b3dfa35ff40 100644
--- a/pkgs/applications/misc/llpp/default.nix
+++ b/pkgs/applications/misc/llpp/default.nix
@@ -51,7 +51,7 @@ stdenv.mkDerivation rec {
homepage = "https://repo.or.cz/w/llpp.git";
description = "A MuPDF based PDF pager written in OCaml";
platforms = platforms.linux;
- maintainers = with maintainers; [ pSub enzime ];
+ maintainers = with maintainers; [ pSub ];
license = licenses.gpl3;
};
}
diff --git a/pkgs/applications/misc/merkaartor/default.nix b/pkgs/applications/misc/merkaartor/default.nix
index 79ee45b4c1c4..e73805f67b3a 100644
--- a/pkgs/applications/misc/merkaartor/default.nix
+++ b/pkgs/applications/misc/merkaartor/default.nix
@@ -1,18 +1,25 @@
-{ stdenv, fetchFromGitHub, makeWrapper, qmake, pkgconfig, boost, gdal, proj
-, qtbase, qtsvg, qtwebview, qtwebkit }:
+{ mkDerivation, lib, fetchFromGitHub, qmake, pkgconfig, fetchpatch
+, boost, gdal, proj, qtbase, qtsvg, qtwebview, qtwebkit }:
-stdenv.mkDerivation rec {
+mkDerivation rec {
pname = "merkaartor";
- version = "unstable-2019-11-12";
+ version = "0.18.4";
src = fetchFromGitHub {
owner = "openstreetmap";
repo = "merkaartor";
- rev = "29b3388680a03f1daac0037a2b504ea710da879a";
- sha256 = "0h3d3srzl06p2ajq911j05zr4vkl88qij18plydx45yqmvyvh0xz";
+ rev = version;
+ sha256 = "vwO4/a7YF9KbpxcFGTFCdG6SfwEyhISlEtcA+rMebUA=";
};
- nativeBuildInputs = [ makeWrapper qmake pkgconfig ];
+ patches = [
+ (fetchpatch {
+ url = "https://github.com/openstreetmap/merkaartor/commit/e72553a7ea2c7ba0634cc3afcd27a9f7cfef089c.patch";
+ sha256 = "NAisplnS3xHSlRpX+fH15NpbaD+uM57OCsTYGKlIR7U=";
+ })
+ ];
+
+ nativeBuildInputs = [ qmake pkgconfig ];
buildInputs = [ boost gdal proj qtbase qtsvg qtwebview qtwebkit ];
@@ -20,12 +27,7 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H";
- postInstall = ''
- wrapProgram $out/bin/merkaartor \
- --set QT_QPA_PLATFORM_PLUGIN_PATH ${qtbase.bin}/lib/qt-*/plugins/platforms
- '';
-
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "OpenStreetMap editor";
homepage = "http://merkaartor.be/";
license = licenses.gpl2Plus;
diff --git a/pkgs/applications/misc/pgmodeler/default.nix b/pkgs/applications/misc/pgmodeler/default.nix
index 7532c6e9bc91..a690e72d3e78 100644
--- a/pkgs/applications/misc/pgmodeler/default.nix
+++ b/pkgs/applications/misc/pgmodeler/default.nix
@@ -1,21 +1,26 @@
-{ stdenv, lib, fetchFromGitHub, pkgconfig, qmake, mkDerivation,
- qtsvg,
- libxml2, postgresql }:
+{ stdenv
+, lib
+, fetchFromGitHub
+, pkg-config
+, qmake
+, mkDerivation
+, qtsvg
+, libxml2
+, postgresql
+}:
mkDerivation rec {
pname = "pgmodeler";
- version = "0.9.2";
+ version = "0.9.3";
src = fetchFromGitHub {
owner = "pgmodeler";
repo = "pgmodeler";
rev = "v${version}";
- sha256 = "1wkvg20krfwkziz7skgmwlinx07jm5nl3455payg5brv69zf60kl";
+ sha256 = "1bci5x418dbnkny7hn0b5q5lxyajrgl3frv41ji0hcw9vivrds2g";
};
- enableParallelBuilding = true;
-
- nativeBuildInputs = [ pkgconfig qmake ];
+ nativeBuildInputs = [ pkg-config qmake ];
qmakeFlags = [ "pgmodeler.pro" "CONFIG+=release" ];
# todo: libpq would suffice here. Unfortunately this won't work, if one uses only postgresql.lib here.
@@ -23,7 +28,6 @@ mkDerivation rec {
meta = with stdenv.lib; {
description = "A database modeling tool for PostgreSQL";
- longDescription = ''pgModeler (PostgreSQL Database Modeler) is an open source database modeling tool designed for PostgreSQL.'';
homepage = "https://pgmodeler.io/";
license = licenses.gpl3;
maintainers = [ maintainers.esclear ];
diff --git a/pkgs/applications/misc/synergy/default.nix b/pkgs/applications/misc/synergy/default.nix
index b0722e18eeaa..3b1d04f3d38b 100644
--- a/pkgs/applications/misc/synergy/default.nix
+++ b/pkgs/applications/misc/synergy/default.nix
@@ -82,7 +82,7 @@ stdenv.mkDerivation rec {
description = "Share one mouse and keyboard between multiple computers";
homepage = "http://synergy-project.org/";
license = licenses.gpl2;
- maintainers = with maintainers; [ enzime ];
+ maintainers = with maintainers; [ ];
platforms = platforms.all;
};
}
diff --git a/pkgs/applications/misc/taskwarrior-tui/default.nix b/pkgs/applications/misc/taskwarrior-tui/default.nix
new file mode 100644
index 000000000000..682bc920a0e6
--- /dev/null
+++ b/pkgs/applications/misc/taskwarrior-tui/default.nix
@@ -0,0 +1,28 @@
+{ stdenv
+, rustPlatform
+, fetchFromGitHub
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "taskwarrior-tui";
+ version = "0.9.5";
+
+ src = fetchFromGitHub {
+ owner = "kdheepak";
+ repo = "taskwarrior-tui";
+ rev = "v${version}";
+ sha256 = "1348ypjphm5f46civbrcxbbahwwl2j47z1hg8ndq1cg2bh5wb8kg";
+ };
+
+ # Because there's a test that requires terminal access
+ doCheck = false;
+
+ cargoSha256 = "11zpy3whzir9mlbvf0jyscqwj9z44a6s5i1bc2cnxyciqy9b57md";
+
+ meta = with stdenv.lib; {
+ description = "A terminal user interface for taskwarrior ";
+ homepage = "https://github.com/kdheepak/taskwarrior-tui";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ matthiasbeyer ];
+ };
+}
diff --git a/pkgs/applications/misc/zathura/wrapper.nix b/pkgs/applications/misc/zathura/wrapper.nix
index 7cd52e0c74f1..60e3bb9fd535 100644
--- a/pkgs/applications/misc/zathura/wrapper.nix
+++ b/pkgs/applications/misc/zathura/wrapper.nix
@@ -7,10 +7,19 @@ symlinkJoin {
buildInputs = [ makeWrapper ];
- postBuild = ''
+ postBuild = let
+ fishCompletion = "share/fish/vendor_completions.d/zathura.fish";
+ in ''
makeWrapper ${zathura_core.bin}/bin/zathura $out/bin/zathura \
--prefix PATH ":" "${lib.makeBinPath [ file ]}" \
--add-flags --plugins-dir="$out/lib/zathura"
+
+ # zathura fish completion references the zathura_core derivation to
+ # check for supported plugins which live in the wrapper derivation,
+ # so we need to fix the path to reference $out instead.
+ rm "$out/${fishCompletion}"
+ substitute "${zathura_core.out}/${fishCompletion}" "$out/${fishCompletion}" \
+ --replace "${zathura_core.out}" "$out"
'';
meta = with lib; {
diff --git a/pkgs/applications/networking/Sylk/default.nix b/pkgs/applications/networking/Sylk/default.nix
index 9f5378d761aa..7391ad4c688c 100644
--- a/pkgs/applications/networking/Sylk/default.nix
+++ b/pkgs/applications/networking/Sylk/default.nix
@@ -2,7 +2,7 @@
let
pname = "Sylk";
- version = "2.9.3";
+ version = "2.9.4";
in
appimageTools.wrapType2 rec {
@@ -10,7 +10,7 @@ appimageTools.wrapType2 rec {
src = fetchurl {
url = "http://download.ag-projects.com/Sylk/Sylk-${version}-x86_64.AppImage";
- hash = "sha256-JH/TUGAYZTIb/L926CoYb5yzPtbOKVmnWRmHO6DxDyY=";
+ hash = "sha256-LnJ8Pd+AHIrHrYpIx+rxnFKZ1uh2viDHC5TaU1BL62s=";
};
profile = ''
diff --git a/pkgs/applications/networking/apache-directory-studio/default.nix b/pkgs/applications/networking/apache-directory-studio/default.nix
index 141bbe654b7a..94359bdd2271 100644
--- a/pkgs/applications/networking/apache-directory-studio/default.nix
+++ b/pkgs/applications/networking/apache-directory-studio/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, jdk14, makeWrapper, autoPatchelfHook, makeDesktopItem, glib, libsecret }:
+{ stdenv, fetchurl, jdk, makeWrapper, autoPatchelfHook, makeDesktopItem, glib, libsecret }:
let
desktopItem = makeDesktopItem {
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
makeWrapper "$dest/ApacheDirectoryStudio" \
"$out/bin/ApacheDirectoryStudio" \
- --prefix PATH : "${jdk14}/bin"
+ --prefix PATH : "${jdk}/bin"
install -D icon.xpm "$out/share/pixmaps/apache-directory-studio.xpm"
install -D -t "$out/share/applications" ${desktopItem}/share/applications/*
'';
diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json
index 5be89852b389..f4387ebe640d 100644
--- a/pkgs/applications/networking/browsers/chromium/upstream-info.json
+++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json
@@ -1,8 +1,8 @@
{
"stable": {
- "version": "87.0.4280.88",
- "sha256": "1h09g9b2zxad85vd146ymvg3w2kpngpi78yig3dn1vrmhwr4aiiy",
- "sha256bin64": "0n3fm6wf8zfkv135d50xl8xxrnng3q55vyxkck1da8jyvh18bijb",
+ "version": "87.0.4280.141",
+ "sha256": "0x9k809m36pfirnw2vnr9pk93nxdbgrvna0xf1rs3q91zkbr2x8l",
+ "sha256bin64": "0wq3yi0qyxzcid390w5rh4xjq92fjajvlifjl70g6sqnbk6vgvdp",
"deps": {
"gn": {
"version": "2020-09-09",
@@ -13,7 +13,7 @@
},
"chromedriver": {
"version": "87.0.4280.88",
- "sha256_linux": "11plh2hs2zpa14ymlbnj92pa58krl28yw4c0s55wk8qsxvzvl02m",
+ "sha256_linux": "1insh1imi25sj4hdkbll5rzwnag8wvfxv4ckshpq8akl8r13p6lj",
"sha256_darwin": "048hsqp6575r980m769lzznvxypmfcwn89f1d3ik751ymzmb5r78"
}
},
diff --git a/pkgs/applications/networking/cluster/minikube/default.nix b/pkgs/applications/networking/cluster/minikube/default.nix
index bd71f2f5c5ba..080cfc167dab 100644
--- a/pkgs/applications/networking/cluster/minikube/default.nix
+++ b/pkgs/applications/networking/cluster/minikube/default.nix
@@ -11,9 +11,9 @@
buildGoModule rec {
pname = "minikube";
- version = "1.15.1";
+ version = "1.16.0";
- vendorSha256 = "1xkk4f8qjqx5x878iniclni3jm2f7ka47va756vc3vk8p5s6vpdk";
+ vendorSha256 = "0nc2f9h77h24f0nvai5wvgmf1gh09dqfwrb6d5qghmq03a459san";
doCheck = false;
@@ -21,7 +21,7 @@ buildGoModule rec {
owner = "kubernetes";
repo = "minikube";
rev = "v${version}";
- sha256 = "03knkc8z3vri73j1aa9ry6p1rxql3d75kphd429x5am856mpnn6g";
+ sha256 = "00dn8yy7mna0j8rdcnxbgnd5vkjdkqij8akgqhvbd32kxpqss890";
};
nativeBuildInputs = [ go-bindata installShellFiles pkg-config which ];
diff --git a/pkgs/applications/networking/cluster/terraform-compliance/default.nix b/pkgs/applications/networking/cluster/terraform-compliance/default.nix
index 6205b3bf5fe5..5f71f8d70cb6 100644
--- a/pkgs/applications/networking/cluster/terraform-compliance/default.nix
+++ b/pkgs/applications/networking/cluster/terraform-compliance/default.nix
@@ -54,7 +54,7 @@ buildPythonApplication rec {
meta = with lib; {
description = "BDD test framework for terraform";
- homepage = https://github.com/eerkunt/terraform-compliance;
+ homepage = "https://github.com/eerkunt/terraform-compliance";
license = licenses.mit;
maintainers = with maintainers; [ kalbasit ];
};
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index 6052f6882bc4..b9f15e21f323 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -137,8 +137,8 @@ let
];
in rec {
terraform_0_12 = pluggable (generic {
- version = "0.12.29";
- sha256 = "18i7vkvnvfybwzhww8d84cyh93xfbwswcnwfrgvcny1qwm8rsaj8";
+ version = "0.12.30";
+ sha256 = "0mv2nsy2ygb1kgkw98xckihcdqxpzhdmks5p2gi2l7wb7lx51yz2";
patches = [
./provider-path.patch
(fetchpatch {
@@ -150,16 +150,16 @@ in rec {
});
terraform_0_13 = pluggable (generic {
- version = "0.13.5";
- sha256 = "1fnydzm5h65pdy2gkq403sllx05cvpldkdzdpcy124ywljb4x9d8";
+ version = "0.13.6";
+ sha256 = "04vas8i894ssfhncdvljdvmvj2qzfrcs20zcv71l1wmnnv9ibs6l";
patches = [ ./provider-path.patch ];
passthru = { inherit plugins; };
});
terraform_0_14 = pluggable (generic {
- version = "0.14.3";
- sha256 = "0w2j1phjv989bspbyvkhr25bdz1zjch3zggwk2lgjyk77mdw5h20";
- vendorSha256 = "03dg703pw3h98vfvi2mnd2lw0mv6hlhvmc1l7ngrqdyv54cmihnp";
+ version = "0.14.4";
+ sha256 = "0kjbx1gshp1lvhnjfigfzza0sbl3m6d9qb3in7q5vc6kdkiplb66";
+ vendorSha256 = "10vb6gsw7mha99lvx3lbgd80vf0imcqyc0va0y64f6wzaw557n7v";
patches = [ ./provider-path.patch ];
passthru = { inherit plugins; };
});
diff --git a/pkgs/applications/networking/cluster/waypoint/default.nix b/pkgs/applications/networking/cluster/waypoint/default.nix
index 9623d5af2f4b..32a4aa373a49 100644
--- a/pkgs/applications/networking/cluster/waypoint/default.nix
+++ b/pkgs/applications/networking/cluster/waypoint/default.nix
@@ -2,17 +2,17 @@
buildGoModule rec {
pname = "waypoint";
- version = "0.1.5";
+ version = "0.2.0";
src = fetchFromGitHub {
owner = "hashicorp";
repo = pname;
rev = "v${version}";
- sha256 = "115cak87kpfjckqgn8ws09z1w8x8l9bch9xrm29k4r0zi71xparn";
+ sha256 = "sha256-iGR2N1ZYA5G9K2cpfrwWRhSEfehRshx157ot1yq15AY=";
};
deleteVendor = true;
- vendorSha256 = "1xdari6841jp6lpjwydv19v3wafj17hmnwsa2b55iw6dysm4yxdr";
+ vendorSha256 = "sha256-ArebHOjP3zvpASVAoaPXpSbrG/jq+Jbx7+EaQ1uHSVY=";
subPackages = ["."];
diff --git a/pkgs/applications/networking/flexget/default.nix b/pkgs/applications/networking/flexget/default.nix
index 8ef1a6904415..f91d89e5ab13 100644
--- a/pkgs/applications/networking/flexget/default.nix
+++ b/pkgs/applications/networking/flexget/default.nix
@@ -2,11 +2,11 @@
python3Packages.buildPythonApplication rec {
pname = "FlexGet";
- version = "3.1.91";
+ version = "3.1.95";
src = python3Packages.fetchPypi {
inherit pname version;
- sha256 = "5d6668dd9721b60738ea44c616fcdee6210f7ef52b461eb13b77091caef4a832";
+ sha256 = "5dc80828713c0ece57c6e86a2bad41bbdf34ec41a0ea4da71adfb43784d85120";
};
postPatch = ''
diff --git a/pkgs/applications/networking/mailreaders/mmh/default.nix b/pkgs/applications/networking/mailreaders/mmh/default.nix
index 7d6254ed13cc..6bd977bd319b 100644
--- a/pkgs/applications/networking/mailreaders/mmh/default.nix
+++ b/pkgs/applications/networking/mailreaders/mmh/default.nix
@@ -10,6 +10,11 @@ in stdenv.mkDerivation rec {
sha256 = "1q97p4g3f1q2m567i2dbx7mm7ixw3g91ww2rymwj42cxk9iyizhv";
};
+ postPatch = ''
+ substituteInPlace sbr/Makefile.in \
+ --replace "ar " "${stdenv.cc.targetPrefix}ar "
+ '';
+
buildInputs = [ ncurses ];
nativeBuildInputs = [ autoreconfHook flex ];
diff --git a/pkgs/applications/networking/p2p/tribler/default.nix b/pkgs/applications/networking/p2p/tribler/default.nix
index d30697a4df00..83f517e625a4 100644
--- a/pkgs/applications/networking/p2p/tribler/default.nix
+++ b/pkgs/applications/networking/p2p/tribler/default.nix
@@ -19,40 +19,41 @@ stdenv.mkDerivation rec {
python3Packages.python
];
- pythonPath = [
- python3Packages.libtorrent-rasterbar
- python3Packages.twisted
- python3Packages.netifaces
- python3Packages.pycrypto
- python3Packages.pyasn1
- python3Packages.requests
- python3Packages.m2crypto
- python3Packages.pyqt5
- python3Packages.chardet
- python3Packages.cherrypy
- python3Packages.cryptography
- python3Packages.libnacl
- python3Packages.configobj
- python3Packages.decorator
- python3Packages.feedparser
- python3Packages.service-identity
- python3Packages.psutil
- python3Packages.pillow
- python3Packages.networkx
- python3Packages.pony
- python3Packages.lz4
- python3Packages.pyqtgraph
+ pythonPath = with python3Packages; [
+ libtorrent-rasterbar
+ twisted
+ netifaces
+ pycrypto
+ pyasn1
+ requests
+ m2crypto
+ pyqt5
+ chardet
+ cherrypy
+ cryptography
+ libnacl
+ configobj
+ decorator
+ feedparser
+ service-identity
+ psutil
+ pillow
+ networkx
+ pony
+ lz4
+ pyqtgraph
# there is a BTC feature, but it requires some unclear version of
# bitcoinlib, so this doesn't work right now.
- # python3Packages.bitcoinlib
+ # bitcoinlib
];
postPatch = ''
${stdenv.lib.optionalString enablePlayer ''
substituteInPlace "./TriblerGUI/vlc.py" --replace "ctypes.CDLL(p)" "ctypes.CDLL('${libvlc}/lib/libvlc.so')"
- substituteInPlace "./TriblerGUI/widgets/videoplayerpage.py" --replace "if vlc and vlc.plugin_path" "if vlc"
- substituteInPlace "./TriblerGUI/widgets/videoplayerpage.py" --replace "os.environ['VLC_PLUGIN_PATH'] = vlc.plugin_path" "os.environ['VLC_PLUGIN_PATH'] = '${libvlc}/lib/vlc/plugins'"
+ substituteInPlace "./TriblerGUI/widgets/videoplayerpage.py" \
+ --replace "if vlc and vlc.plugin_path" "if vlc" \
+ --replace "os.environ['VLC_PLUGIN_PATH'] = vlc.plugin_path" "os.environ['VLC_PLUGIN_PATH'] = '${libvlc}/lib/vlc/plugins'"
''}
'';
diff --git a/pkgs/applications/networking/remote/teamviewer/default.nix b/pkgs/applications/networking/remote/teamviewer/default.nix
index 9c3ed826a2d5..c556ce35b2de 100644
--- a/pkgs/applications/networking/remote/teamviewer/default.nix
+++ b/pkgs/applications/networking/remote/teamviewer/default.nix
@@ -38,6 +38,13 @@ mkDerivation rec {
ln -s /var/log/teamviewer $out/share/teamviewer/logfiles
ln -s ${xdg_utils}/bin $out/share/teamviewer/tv_bin/xdg-utils
+ for i in 16 20 24 32 48 256; do
+ size=$i"x"$i
+
+ mkdir -p $out/share/icons/hicolor/$size/apps
+ ln -s $out/share/teamviewer/tv_bin/desktop/teamviewer_$i.png $out/share/icons/hicolor/$size/apps/TeamViewer.png
+ done;
+
sed -i "s,/opt/teamviewer,$out/share/teamviewer,g" $out/share/teamviewer/tv_bin/desktop/com.teamviewer.*.desktop
substituteInPlace $out/share/teamviewer/tv_bin/script/tvw_aux \
@@ -50,6 +57,7 @@ mkDerivation rec {
wrapProgram $out/share/teamviewer/tv_bin/TeamViewer --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libXrandr libX11 ]}"
wrapProgram $out/share/teamviewer/tv_bin/TeamViewer_Desktop --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [libXrandr libX11 libXext libXdamage libXtst libSM libXfixes ]}"
+ wrapQtApp $out/share/teamviewer/tv_bin/script/teamviewer
wrapQtApp $out/bin/teamviewer
'';
diff --git a/pkgs/applications/networking/remote/waypipe/default.nix b/pkgs/applications/networking/remote/waypipe/default.nix
index 2c91d6496a0e..d32535198263 100644
--- a/pkgs/applications/networking/remote/waypipe/default.nix
+++ b/pkgs/applications/networking/remote/waypipe/default.nix
@@ -6,14 +6,14 @@
stdenv.mkDerivation rec {
pname = "waypipe-unstable";
- version = "0.7.1";
+ version = "0.7.2";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "mstoeckl";
repo = "waypipe";
rev = "v${version}";
- sha256 = "00skyxmbssfxksb8wlqdr8gajpysadirjcn230fd5gaf5msvllx7";
+ sha256 = "sha256-LtfrSEwZikOXp/fdyJ/+EylRx19zdsHMkrl1eEf1/aY=";
};
postPatch = ''
diff --git a/pkgs/applications/networking/seafile-client/default.nix b/pkgs/applications/networking/seafile-client/default.nix
index 83f15b54fa76..fb0c0a18ac5f 100644
--- a/pkgs/applications/networking/seafile-client/default.nix
+++ b/pkgs/applications/networking/seafile-client/default.nix
@@ -4,13 +4,13 @@
mkDerivation rec {
pname = "seafile-client";
- version = "7.0.10";
+ version = "8.0.1";
src = fetchFromGitHub {
owner = "haiwen";
repo = "seafile-client";
- rev = "v${version}";
- sha256 = "082v1qbysrqb7m0lk56fpx8n403fjxbvbj0svm4mkjl6mzs2cv22";
+ rev = "b4b944921c7efef13a93d693c45c997943899dec";
+ sha256 = "2vV+6ZXjVg81JVLfWeD0UK+RdmpBxBU2Ozx790WFSyw=";
};
nativeBuildInputs = [ pkgconfig cmake ];
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index 84b571a20f0c..c6767f2e0ae1 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -3,17 +3,17 @@
let
common = { stname, target, postInstall ? "" }:
buildGoModule rec {
- version = "1.12.0";
+ version = "1.12.1";
name = "${stname}-${version}";
src = fetchFromGitHub {
owner = "syncthing";
repo = "syncthing";
rev = "v${version}";
- sha256 = "09kqc66pnklhmlcn66c5zydnvy2mfs2hqzd1465ydww8bbgcncss";
+ sha256 = "1jyqkprb9ps8xc86qnf140wbx5kvshyihxxgym409kfks6dk3cq5";
};
- vendorSha256 = "1jw0k1wm9mfsa2yr2fi2j8mrlykrlcwfnii07rafv9dnnwabs022";
+ vendorSha256 = "1xlkc47wfhsf6gzq9sgimlzqnrqdsjgc1zzfkjp3xzbbv5ay7wca";
doCheck = false;
diff --git a/pkgs/applications/radio/soundmodem/default.nix b/pkgs/applications/radio/soundmodem/default.nix
new file mode 100644
index 000000000000..d7410f928094
--- /dev/null
+++ b/pkgs/applications/radio/soundmodem/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, pkg-config, alsaLib, audiofile, gtk2, libxml2 }:
+
+stdenv.mkDerivation rec {
+ name = "soundmodem";
+ version = "0.20";
+
+ src = fetchurl {
+ url = "https://archive.org/download/${name}-${version}/${name}-${version}.tar.gz";
+ sha256 = "156l3wjnh5rcisxb42kcmlf74swf679v4xnj09zy5j74rd4h721z";
+ };
+
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ alsaLib audiofile gtk2 libxml2 ];
+
+ patches = [ ./matFix.patch ];
+
+ doCheck = true;
+
+ meta = with stdenv.lib; {
+ description = "Audio based modem for ham radio supporting ax.25";
+ longDescription = ''
+ This software allows a standard PC soundcard to be used as a packet radio "modem". The whole processing is done on the main processor CPU.
+ Unlike previous packet radio modem software, this new release offers several new benefits:
+ - Now uses standard operating system sound drivers (OSS/Free under Linux, /dev/audio under Solaris and DirectSound under Windows), thus runs on all soundcards for which drivers for the desired operating system are available.
+ - No fixed relationship between bitrate, sampling rate, and modem parameters. Modems may be parametrized, and multiple modems may even run on the same audio channel!
+ - Usermode solution allows the use of MMX, VIS, Floating point and other media instruction sets to speed up computation.
+ - Cross platform builds from a single source code provides ubiquitous availability.
+ '';
+ #homepage = "http://gna.org/projects/soundmodem"; # official, but "Connection refused"
+ homepage = "http://soundmodem.vk4msl.id.au/";
+ downloadPage = "https://archive.org/download/${name}-${version}/${name}-${version}.tar.gz";
+ license = licenses.gpl2Only;
+ maintainers = with maintainers; [ ymarkus ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/radio/soundmodem/matFix.patch b/pkgs/applications/radio/soundmodem/matFix.patch
new file mode 100644
index 000000000000..55436cda3d41
--- /dev/null
+++ b/pkgs/applications/radio/soundmodem/matFix.patch
@@ -0,0 +1,11 @@
+--- a/matlib/mat.hh 2003-01-06 23:47:26.000000000 +0100
++++ b/matlib/mat.copy.hh 2021-01-06 10:05:34.332415179 +0100
+@@ -91,7 +91,7 @@
+ memcpy(c, r, d1 * d3 * sizeof(c[0]));
+ }
+
+-template void mdet(const T *c, unsigned int d)
++template int mdet(const T *c, unsigned int d)
+ {
+ T *c2;
+ unsigned int i, j, k, l;
diff --git a/pkgs/applications/science/astronomy/phd2/default.nix b/pkgs/applications/science/astronomy/phd2/default.nix
index 98afba77c4f0..7ddad3852277 100644
--- a/pkgs/applications/science/astronomy/phd2/default.nix
+++ b/pkgs/applications/science/astronomy/phd2/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, pkg-config, cmake, gtk3,
- wxGTK30-gtk3, curl, gettext, glib, indilib, libnova }:
+{ stdenv, fetchFromGitHub, pkg-config, cmake, gtk3, wxGTK30-gtk3,
+ curl, gettext, glib, indilib, libnova, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "phd2";
@@ -12,13 +12,18 @@ stdenv.mkDerivation rec {
sha256 = "1ih7m9lilh12xbhmwm9kkicaqy72mi3firl6df7m5x38n2zj3zm4";
};
- nativeBuildInputs = [ cmake pkg-config ];
+ nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];
buildInputs = [ gtk3 wxGTK30-gtk3 curl gettext glib indilib libnova ];
cmakeFlags = [
"-DOPENSOURCE_ONLY=1"
];
+ # Fix broken wrapped name scheme by moving wrapped binary to where wrapper expects it
+ postFixup = ''
+ mv $out/bin/.phd2.bin-wrapped $out/bin/.phd2-wrapped.bin
+ '';
+
meta = with stdenv.lib; {
homepage = "https://openphdguiding.org/";
description = "Telescope auto-guidance application";
diff --git a/pkgs/applications/science/biology/last/default.nix b/pkgs/applications/science/biology/last/default.nix
index 0976e5a10802..6db7ae55da84 100644
--- a/pkgs/applications/science/biology/last/default.nix
+++ b/pkgs/applications/science/biology/last/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "last";
- version = "1145";
+ version = "1170";
src = fetchurl {
url = "http://last.cbrc.jp/last-${version}.zip";
- sha256 = "0g54nmxxrirgid1i1k5i6rf7vnjpk9548sy06yqb4fj7vdzqgq99";
+ sha256 = "sha256-hBuG6QGXtBrvNrtaZU+i8gxu2ZQw+srFRkbuWoL5JHc=";
};
nativeBuildInputs = [ unzip ];
diff --git a/pkgs/applications/science/biology/raxml/default.nix b/pkgs/applications/science/biology/raxml/default.nix
index 5c7353af9315..a77505c1b3f8 100644
--- a/pkgs/applications/science/biology/raxml/default.nix
+++ b/pkgs/applications/science/biology/raxml/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
sha256 = "1jqjzhch0rips0vp04prvb8vmc20c5pdmsqn8knadcf91yy859fh";
};
- buildInputs = if mpi then [ pkgs.openmpi ] else [];
+ buildInputs = stdenv.lib.optionals mpi [ pkgs.openmpi ];
# TODO darwin, AVX and AVX2 makefile targets
buildPhase = if mpi then ''
diff --git a/pkgs/applications/science/biology/varscan/default.nix b/pkgs/applications/science/biology/varscan/default.nix
index e97c8f14451f..2c395650e175 100644
--- a/pkgs/applications/science/biology/varscan/default.nix
+++ b/pkgs/applications/science/biology/varscan/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "varscan";
- version = "2.4.2";
+ version = "2.4.4";
src = fetchurl {
- url = "https://github.com/dkoboldt/varscan/releases/download/${version}/VarScan.v${version}.jar";
- sha256 = "0cfhshinyqgwc6i7zf8lhbfybyly2x5anrz824zyvdhzz5i69zrl";
+ url = "https://github.com/dkoboldt/varscan/raw/master/VarScan.v${version}.jar";
+ sha256 = "sha256-+yO3KrZ2+1qJvQIJHCtsmv8hC5a+4E2d7mrvTYtygU0=";
};
buildInputs = [ jre makeWrapper ];
diff --git a/pkgs/applications/science/electronics/magic-vlsi/default.nix b/pkgs/applications/science/electronics/magic-vlsi/default.nix
index 6667f2be9c3d..d6c9011efa68 100644
--- a/pkgs/applications/science/electronics/magic-vlsi/default.nix
+++ b/pkgs/applications/science/electronics/magic-vlsi/default.nix
@@ -1,19 +1,37 @@
-{ stdenv, fetchurl
-, m4, tcsh, libX11, tcl, tk
-, cairo, ncurses, mesa_glu, python3
+{ stdenv
+, fetchurl
+, python3
+, m4
+, cairo
+, libX11
+, mesa_glu
+, ncurses
+, tcl
+, tcsh
+, tk
}:
stdenv.mkDerivation rec {
pname = "magic-vlsi";
- version = "8.3.80";
+ version = "8.3.109";
src = fetchurl {
url = "http://opencircuitdesign.com/magic/archive/magic-${version}.tgz";
- sha256 = "0a5x4sh5xsr79pqbgv6221jc4fvaxkg2pvrdhy1cs4bmsc1sbm9j";
+ sha256 = "sha256-ZK4OF5XwjW1OJmOVUFqLklfpM10eIwCILygqIyjRbEQ=";
};
- buildInputs = [ m4 tcsh libX11 tcl tk cairo ncurses mesa_glu ];
nativeBuildInputs = [ python3 ];
+ buildInputs = [
+ cairo
+ libX11
+ m4
+ mesa_glu
+ ncurses
+ tcl
+ tcsh
+ tk
+ ];
+
enableParallelBuilding = true;
configureFlags = [
@@ -37,6 +55,6 @@ stdenv.mkDerivation rec {
description = "VLSI layout tool written in Tcl";
homepage = "http://opencircuitdesign.com/magic/";
license = licenses.mit;
- maintainers = with maintainers; [ anna328p thoughtpolice ];
+ maintainers = with maintainers; [ anna328p thoughtpolice AndersonTorres ];
};
}
diff --git a/pkgs/applications/science/logic/lean/default.nix b/pkgs/applications/science/logic/lean/default.nix
index 0ed3a544c773..f5b7ccd76b17 100644
--- a/pkgs/applications/science/logic/lean/default.nix
+++ b/pkgs/applications/science/logic/lean/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "lean";
- version = "3.23.0";
+ version = "3.24.0";
src = fetchFromGitHub {
owner = "leanprover-community";
repo = "lean";
rev = "v${version}";
- sha256 = "09mklc1p6ms1jayg2f89hqfmhca3h5744lli936l38ypn1d00sxx";
+ sha256 = "npzBuZ37KrUYwC0TglryVTqui/3/t1ma1Zjpnty0d7c=";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/applications/science/math/sage/patches/sympy-1.7-update.patch b/pkgs/applications/science/math/sage/patches/sympy-1.7-update.patch
new file mode 100644
index 000000000000..1d21622a2354
--- /dev/null
+++ b/pkgs/applications/science/math/sage/patches/sympy-1.7-update.patch
@@ -0,0 +1,25 @@
+diff --git a/src/sage/interfaces/sympy.py b/src/sage/interfaces/sympy.py
+index cc35a42a9f..6e577d5d8d 100644
+--- a/src/sage/interfaces/sympy.py
++++ b/src/sage/interfaces/sympy.py
+@@ -397,7 +397,7 @@ def _sympysage_rf(self):
+ sage: from sympy import Symbol, rf
+ sage: _ = var('x, y')
+ sage: rfxy = rf(Symbol('x'), Symbol('y'))
+- sage: assert rising_factorial(x,y)._sympy_() == rfxy.rewrite('gamma')
++ sage: assert rising_factorial(x,y)._sympy_() == rfxy.rewrite('gamma', piecewise=False)
+ sage: assert rising_factorial(x,y) == rfxy._sage_()
+ """
+ from sage.arith.all import rising_factorial
+diff --git a/src/sage/symbolic/expression.pyx b/src/sage/symbolic/expression.pyx
+index 7c18ec1efa..c2619ac42d 100644
+--- a/src/sage/symbolic/expression.pyx
++++ b/src/sage/symbolic/expression.pyx
+@@ -955,6 +955,6 @@ cdef class Expression(CommutativeRingElement):
+ sage: unicode_art(13 - I)
+ 13 - ⅈ
+ sage: unicode_art(1.3 - I)
+- 1.3 - 1.0⋅ⅈ
++ 1.3 - ⅈ
+ sage: unicode_art(cos(I))
+ cosh(1)
diff --git a/pkgs/applications/science/math/sage/sage-src.nix b/pkgs/applications/science/math/sage/sage-src.nix
index 8948621a025a..b8fb41596607 100644
--- a/pkgs/applications/science/math/sage/sage-src.nix
+++ b/pkgs/applications/science/math/sage/sage-src.nix
@@ -103,6 +103,9 @@ stdenv.mkDerivation rec {
# adapt sage's Image class to pillow 8.0.1 (https://trac.sagemath.org/ticket/30971)
./patches/pillow-update.patch
+
+ # fix test output with sympy 1.7 (https://trac.sagemath.org/ticket/30985)
+ ./patches/sympy-1.7-update.patch
];
patches = nixPatches ++ bugfixPatches ++ packageUpgradePatches;
diff --git a/pkgs/applications/terminal-emulators/germinal/default.nix b/pkgs/applications/terminal-emulators/germinal/default.nix
new file mode 100644
index 000000000000..b44e48fafae9
--- /dev/null
+++ b/pkgs/applications/terminal-emulators/germinal/default.nix
@@ -0,0 +1,55 @@
+{ stdenv
+, fetchFromGitHub
+, autoreconfHook
+, pkg-config
+, appstream-glib
+, dbus
+, pango
+, pcre2
+, tmux
+, vte
+, wrapGAppsHook
+}:
+
+stdenv.mkDerivation rec {
+ pname = "germinal";
+ version = "26";
+
+ src = fetchFromGitHub {
+ owner = "Keruspe";
+ repo = "Germinal";
+ rev = "v${version}";
+ sha256 = "sha256-HUi+skF4bJj5CY2cNTOC4tl7jhvpXYKqBx2rqKzjlo0=";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook ];
+ buildInputs = [
+ appstream-glib
+ dbus
+ pango
+ pcre2
+ vte
+ ];
+
+ configureFlags = [
+ "--with-dbusservicesdir=${placeholder "out"}/etc/dbus-1/system-services/"
+ ];
+
+ dontWrapGApps = true;
+
+ fixupPhase = ''
+ runHook preFixup
+ wrapProgram $out/bin/germinal \
+ --prefix PATH ":" "${stdenv.lib.makeBinPath [ tmux ]}" \
+ "''${gappsWrapperArgs[@]}"
+ runHook postFixup
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A minimal terminal emulator";
+ homepage = "https://github.com/Keruspe/Germinal";
+ license = with licenses; gpl3Plus;
+ platforms = with platforms; unix;
+ maintainers = with maintainers; [ AndersonTorres ];
+ };
+}
diff --git a/pkgs/applications/terminal-emulators/tilda/default.nix b/pkgs/applications/terminal-emulators/tilda/default.nix
index 0a672b039f6b..560a47a9cdb8 100644
--- a/pkgs/applications/terminal-emulators/tilda/default.nix
+++ b/pkgs/applications/terminal-emulators/tilda/default.nix
@@ -1,23 +1,35 @@
-{ stdenv, fetchFromGitHub, pkgconfig
-, autoreconfHook, gettext, expat, pcre2
-, libconfuse, vte, gtk
-, makeWrapper }:
+{ stdenv
+, fetchFromGitHub
+, autoreconfHook
+, pkg-config
+, expat
+, gettext
+, gtk
+, libconfuse
+, pcre2
+, vte
+, makeWrapper
+}:
-with stdenv.lib;
stdenv.mkDerivation rec {
-
pname = "tilda";
- version = "1.5.2";
+ version = "1.5.4";
src = fetchFromGitHub {
owner = "lanoxx";
repo = "tilda";
rev = "${pname}-${version}";
- sha256 = "0psq0f4s0s92bba6wwcf6b0j7i59b76svqxhvpavwv53yvhmmamn";
+ sha256 = "sha256-uDx28jmjNUyzJbgTJiHbjI9U5mYb9bnfl/9AjbxNUWA=";
};
- nativeBuildInputs = [ autoreconfHook makeWrapper pkgconfig ];
- buildInputs = [ gettext pcre2 libconfuse vte gtk ];
+ nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ];
+ buildInputs = [
+ gettext
+ gtk
+ libconfuse
+ pcre2
+ vte
+ ];
LD_LIBRARY_PATH = "${expat.out}/lib"; # ugly hack for xgettext to work during build
@@ -30,10 +42,10 @@ stdenv.mkDerivation rec {
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
'';
- meta = {
+ meta = with stdenv.lib; {
description = "A Gtk based drop down terminal for Linux and Unix";
homepage = "https://github.com/lanoxx/tilda/";
- license = licenses.gpl3;
+ license = licenses.gpl3Plus;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};
diff --git a/pkgs/applications/version-management/dvc/default.nix b/pkgs/applications/version-management/dvc/default.nix
index b9ac8b139cbb..ac1659cccf8b 100644
--- a/pkgs/applications/version-management/dvc/default.nix
+++ b/pkgs/applications/version-management/dvc/default.nix
@@ -41,7 +41,7 @@ buildPythonApplication rec {
distro
appdirs
]
- ++ lib.optional enableGoogle google_cloud_storage
+ ++ lib.optional enableGoogle google-cloud-storage
++ lib.optional enableAWS boto3
++ lib.optional enableAzure azure-storage-blob
++ lib.optional enableSSH paramiko;
diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix
index 46b27e95c798..2b0efdf69046 100644
--- a/pkgs/applications/version-management/git-and-tools/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/default.nix
@@ -172,6 +172,8 @@ let
inherit (darwin.apple_sdk.frameworks) Security;
};
+ git-when-merged = callPackage ./git-when-merged { };
+
git-workspace = callPackage ./git-workspace {
inherit (darwin.apple_sdk.frameworks) Security;
};
diff --git a/pkgs/applications/version-management/git-and-tools/delta/default.nix b/pkgs/applications/version-management/git-and-tools/delta/default.nix
index e3862a81b427..465de2d1d2be 100644
--- a/pkgs/applications/version-management/git-and-tools/delta/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/delta/default.nix
@@ -9,16 +9,16 @@
rustPlatform.buildRustPackage rec {
pname = "delta";
- version = "0.5.0";
+ version = "0.5.1";
src = fetchFromGitHub {
owner = "dandavison";
repo = pname;
rev = version;
- sha256 = "134dhkk6ckhk6pb2hmfy1q2hkb8d1fkhbshw9qzbnp0qwbv3wgqj";
+ sha256 = "17cmwkha25hwsvnjcp388zd9kwacfq7adjp0sjw59y0vyr1maf22";
};
- cargoSha256 = "0633g8jyhmhs33cdspa46gvmnzl2jfwxylmjfhsvbxznzygb4dw3";
+ cargoSha256 = "1bji818cmkl0286a4qcnfiwibnqd5q5fvzmzgk5cabrdwaag2ia5";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/applications/version-management/git-and-tools/git-when-merged/default.nix b/pkgs/applications/version-management/git-and-tools/git-when-merged/default.nix
new file mode 100644
index 000000000000..8eee1469819d
--- /dev/null
+++ b/pkgs/applications/version-management/git-and-tools/git-when-merged/default.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchFromGitHub, python3 }:
+
+stdenv.mkDerivation rec {
+ pname = "git-when-merged";
+ version = "1.2.0";
+
+ src = fetchFromGitHub {
+ owner = "mhagger";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0sw98gmsnd4iki9fx455jga9m80bxvvfgys8i1r2fc7d5whc2qa6";
+ };
+
+ buildInputs = [ python3 ];
+
+ installPhase = ''
+ install -D --target-directory $out/bin/ bin/git-when-merged
+ '';
+
+ meta = with stdenv.lib; {
+ description =
+ "Helps you figure out when and why a commit was merged into a branch";
+ longDescription = ''
+ If you use standard Git workflows, then you create a feature
+ branch for each feature that you are working on. When the feature
+ is complete, you merge it into your master branch. You might even
+ have sub-feature branches that are merged into a feature branch
+ before the latter is merged.
+
+ In such a workflow, the first-parent history of master consists
+ mainly of merges of feature branches into the mainline. git
+ when-merged can be used to ask, "When (and why) was commit C
+ merged into the current branch?"
+ '';
+ homepage = "https://github.com/mhagger/git-when-merged";
+ license = licenses.gpl2Only;
+ platforms = python3.meta.platforms;
+ maintainers = with maintainers; [ DamienCassou ];
+ };
+}
diff --git a/pkgs/applications/version-management/git-and-tools/lab/default.nix b/pkgs/applications/version-management/git-and-tools/lab/default.nix
index 3459f5099c97..437529cd73ad 100644
--- a/pkgs/applications/version-management/git-and-tools/lab/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/lab/default.nix
@@ -1,32 +1,32 @@
-{ lib, buildGoModule, fetchFromGitHub, makeWrapper, xdg_utils }:
+{ lib, buildGoModule, fetchFromGitHub, makeWrapper, xdg_utils, installShellFiles, git }:
buildGoModule rec {
pname = "lab";
- version = "0.17.2";
+ version = "0.18.0";
src = fetchFromGitHub {
owner = "zaquestion";
repo = "lab";
rev = "v${version}";
- sha256 = "0zkwvmzgj7h8lc8jkg2a81392b28c8hkwqzj6dds6q4asbmymx5c";
+ sha256 = "1vl5ylix4h6z1vrdslv9qphgb6yqpqd4r54jzk5kd6zgrnf9c2zc";
};
subPackages = [ "." ];
- vendorSha256 = "1lrmafvv5zfn9kc0p8g5vdz351n1zbaqwhwk861fxys0rdpqskyc";
+ vendorSha256 = "07zl5xhzgrgr5skba6cds5nal58pllf10gak0ap62j1k9gk2ych2";
doCheck = false;
- buildInputs = [ makeWrapper ];
+ nativeBuildInputs = [ makeWrapper installShellFiles ];
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
postInstall = ''
- mkdir -p "$out/share/bash-completion/completions" "$out/share/zsh/site-functions"
- export LAB_CORE_HOST=a LAB_CORE_USER=b LAB_CORE_TOKEN=c
- $out/bin/lab completion bash > $out/share/bash-completion/completions/lab
- $out/bin/lab completion zsh > $out/share/zsh/site-functions/_lab
- wrapProgram $out/bin/lab --prefix PATH ":" "${lib.makeBinPath [ xdg_utils ]}";
+ wrapProgram $out/bin/lab --prefix PATH ":" "${lib.makeBinPath [ git xdg_utils ]}";
+ for shell in bash fish zsh; do
+ $out/bin/lab completion $shell > lab.$shell
+ installShellCompletion lab.$shell
+ done
'';
meta = with lib; {
diff --git a/pkgs/applications/version-management/git-and-tools/radicle-upstream/default.nix b/pkgs/applications/version-management/git-and-tools/radicle-upstream/default.nix
index f7b6aa153140..9f0949aef529 100644
--- a/pkgs/applications/version-management/git-and-tools/radicle-upstream/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/radicle-upstream/default.nix
@@ -2,12 +2,12 @@
let
pname = "radicle-upstream";
- version = "0.1.5";
+ version = "0.1.6";
name = "${pname}-${version}";
src = fetchurl {
url = "https://releases.radicle.xyz/radicle-upstream-${version}.AppImage";
- sha256 = "1q5p6bvzi5awxd9a3xvvdhy26bz0dx8drb1z0zzqdvqqcxxyydq7";
+ sha256 = "1s299rxala6gqj69j5q4d4n5wfdk2zsb4r9qrhml0m79b4f79yar";
};
contents = appimageTools.extractType2 { inherit name src; };
diff --git a/pkgs/applications/version-management/git-repo/default.nix b/pkgs/applications/version-management/git-repo/default.nix
index db18e765b009..56e4f30d9279 100644
--- a/pkgs/applications/version-management/git-repo/default.nix
+++ b/pkgs/applications/version-management/git-repo/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
pname = "git-repo";
- version = "2.10";
+ version = "2.11";
src = fetchFromGitHub {
owner = "android";
repo = "tools_repo";
rev = "v${version}";
- sha256 = "0jd28281wys2iy7pbyyrzkzrkzq9ms7p9pbj6j2fha6bg1bh7rkz";
+ sha256 = "sha256-eb35yNsE0F+xPA1j7Czag1aOZO4cr6OeRsBlCrQwCRk=";
};
patches = [ ./import-ssl-module.patch ];
diff --git a/pkgs/applications/version-management/sourcehut/builds.nix b/pkgs/applications/version-management/sourcehut/builds.nix
index e5fc7c338604..493402bd2b13 100644
--- a/pkgs/applications/version-management/sourcehut/builds.nix
+++ b/pkgs/applications/version-management/sourcehut/builds.nix
@@ -45,6 +45,8 @@ in buildPythonPackage rec {
cp ${buildWorker "${src}/worker"}/bin/worker $out/bin/builds.sr.ht-worker
'';
+ dontUseSetuptoolsCheck = true;
+
meta = with stdenv.lib; {
homepage = "https://git.sr.ht/~sircmpwn/builds.sr.ht";
description = "Continuous integration service for the sr.ht network";
diff --git a/pkgs/applications/version-management/sourcehut/dispatch.nix b/pkgs/applications/version-management/sourcehut/dispatch.nix
index fa557ce78aa2..552b643951d0 100644
--- a/pkgs/applications/version-management/sourcehut/dispatch.nix
+++ b/pkgs/applications/version-management/sourcehut/dispatch.nix
@@ -24,6 +24,8 @@ buildPythonPackage rec {
export PKGVER=${version}
'';
+ dontUseSetuptoolsCheck = true;
+
meta = with stdenv.lib; {
homepage = "https://dispatch.sr.ht/~sircmpwn/dispatch.sr.ht";
description = "Task dispatcher and service integration tool for the sr.ht network";
diff --git a/pkgs/applications/version-management/sourcehut/git.nix b/pkgs/applications/version-management/sourcehut/git.nix
index 3611ad93e17e..46870dab413a 100644
--- a/pkgs/applications/version-management/sourcehut/git.nix
+++ b/pkgs/applications/version-management/sourcehut/git.nix
@@ -67,6 +67,8 @@ in buildPythonPackage rec {
cp ${buildAPI "${src}/api"}/bin/api $out/bin/gitsrht-api
'';
+ dontUseSetuptoolsCheck = true;
+
meta = with stdenv.lib; {
homepage = "https://git.sr.ht/~sircmpwn/git.sr.ht";
description = "Git repository hosting service for the sr.ht network";
diff --git a/pkgs/applications/version-management/sourcehut/hg.nix b/pkgs/applications/version-management/sourcehut/hg.nix
index 73c9dfeb71e2..81c51324eb9c 100644
--- a/pkgs/applications/version-management/sourcehut/hg.nix
+++ b/pkgs/applications/version-management/sourcehut/hg.nix
@@ -25,6 +25,8 @@ buildPythonPackage rec {
export PKGVER=${version}
'';
+ dontUseSetuptoolsCheck = true;
+
meta = with stdenv.lib; {
homepage = "https://git.sr.ht/~sircmpwn/hg.sr.ht";
description = "Mercurial repository hosting service for the sr.ht network";
diff --git a/pkgs/applications/version-management/sourcehut/hub.nix b/pkgs/applications/version-management/sourcehut/hub.nix
index 5c9736564c39..b3cf8f0a9fb1 100644
--- a/pkgs/applications/version-management/sourcehut/hub.nix
+++ b/pkgs/applications/version-management/sourcehut/hub.nix
@@ -22,6 +22,8 @@ buildPythonPackage rec {
export PKGVER=${version}
'';
+ dontUseSetuptoolsCheck = true;
+
meta = with stdenv.lib; {
homepage = "https://git.sr.ht/~sircmpwn/hub.sr.ht";
description = "Project hub service for the sr.ht network";
diff --git a/pkgs/applications/version-management/sourcehut/lists.nix b/pkgs/applications/version-management/sourcehut/lists.nix
index 880dc60f0b3a..d15aada60166 100644
--- a/pkgs/applications/version-management/sourcehut/lists.nix
+++ b/pkgs/applications/version-management/sourcehut/lists.nix
@@ -26,6 +26,8 @@ buildPythonPackage rec {
export PKGVER=${version}
'';
+ dontUseSetuptoolsCheck = true;
+
meta = with stdenv.lib; {
homepage = "https://git.sr.ht/~sircmpwn/lists.sr.ht";
description = "Mailing list service for the sr.ht network";
diff --git a/pkgs/applications/version-management/sourcehut/man.nix b/pkgs/applications/version-management/sourcehut/man.nix
index 8072c74d2d0f..9f00180ff186 100644
--- a/pkgs/applications/version-management/sourcehut/man.nix
+++ b/pkgs/applications/version-management/sourcehut/man.nix
@@ -23,6 +23,8 @@ buildPythonPackage rec {
export PKGVER=${version}
'';
+ dontUseSetuptoolsCheck = true;
+
meta = with stdenv.lib; {
homepage = "https://git.sr.ht/~sircmpwn/man.sr.ht";
description = "Wiki service for the sr.ht network";
diff --git a/pkgs/applications/version-management/sourcehut/meta.nix b/pkgs/applications/version-management/sourcehut/meta.nix
index 6cbae6715172..8887bdbb9564 100644
--- a/pkgs/applications/version-management/sourcehut/meta.nix
+++ b/pkgs/applications/version-management/sourcehut/meta.nix
@@ -48,6 +48,8 @@ in buildPythonPackage rec {
cp ${buildAPI "${src}/api"}/bin/api $out/bin/metasrht-api
'';
+ dontUseSetuptoolsCheck = true;
+
meta = with stdenv.lib; {
homepage = "https://git.sr.ht/~sircmpwn/meta.sr.ht";
description = "Account management service for the sr.ht network";
diff --git a/pkgs/applications/version-management/sourcehut/paste.nix b/pkgs/applications/version-management/sourcehut/paste.nix
index a2fdaa05efca..e5bb5b379d14 100644
--- a/pkgs/applications/version-management/sourcehut/paste.nix
+++ b/pkgs/applications/version-management/sourcehut/paste.nix
@@ -23,6 +23,8 @@ buildPythonPackage rec {
export PKGVER=${version}
'';
+ dontUseSetuptoolsCheck = true;
+
meta = with stdenv.lib; {
homepage = "https://git.sr.ht/~sircmpwn/paste.sr.ht";
description = "Ad-hoc text file hosting service for the sr.ht network";
diff --git a/pkgs/applications/video/droidcam/default.nix b/pkgs/applications/video/droidcam/default.nix
new file mode 100644
index 000000000000..dc6c0d330eb2
--- /dev/null
+++ b/pkgs/applications/video/droidcam/default.nix
@@ -0,0 +1,58 @@
+{ stdenv, fetchFromGitHub
+, ffmpeg, libjpeg_turbo, gtk3, alsaLib, speex, libusbmuxd, libappindicator-gtk3
+, pkg-config
+}:
+
+stdenv.mkDerivation rec {
+ pname = "droidcam";
+ version = "1.6";
+
+ src = fetchFromGitHub {
+ owner = "aramg";
+ repo = "droidcam";
+ rev = "v${version}";
+ sha256 = "sha256-3RmEmLNUbwIh+yr7vtYZnMwbzfmtW3mz5u4Ohau9OLU=";
+ };
+
+ nativeBuildInputs = [
+ pkg-config
+ ];
+
+ buildInputs = [
+ ffmpeg
+ libjpeg_turbo
+ gtk3
+ alsaLib
+ speex
+ libusbmuxd
+ libappindicator-gtk3
+ ];
+
+ postPatch = ''
+ substituteInPlace linux/src/droidcam.c \
+ --replace "/opt/droidcam-icon.png" "$out/share/icons/hicolor/droidcam.png"
+ '';
+
+ preBuild = ''
+ cd linux
+ makeFlagsArray+=("JPEG=$(pkg-config --libs --cflags libturbojpeg)")
+ makeFlagsArray+=("USBMUXD=$(pkg-config --libs --cflags libusbmuxd-2.0)")
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ install -Dt $out/bin droidcam droidcam-cli
+ install -D icon2.png $out/share/icons/hicolor/droidcam.png
+
+ runHook postInstall
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Linux client for DroidCam app";
+ homepage = "https://github.com/aramg/droidcam";
+ license = licenses.gpl2Only;
+ maintainers = [ maintainers.suhr ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/video/gnomecast/default.nix b/pkgs/applications/video/gnomecast/default.nix
index e4814e40c1fd..486159135055 100644
--- a/pkgs/applications/video/gnomecast/default.nix
+++ b/pkgs/applications/video/gnomecast/default.nix
@@ -1,4 +1,4 @@
-{ lib, python3Packages, gtk3, gobject-introspection, ffmpeg_3, wrapGAppsHook }:
+{ stdenv, lib, python3Packages, gtk3, gobject-introspection, ffmpeg_3, wrapGAppsHook }:
with python3Packages;
buildPythonApplication rec {
@@ -24,5 +24,6 @@ buildPythonApplication rec {
description = "A native Linux GUI for Chromecasting local files";
homepage = "https://github.com/keredson/gnomecast";
license = with licenses; [ gpl3 ];
+ broken = stdenv.isDarwin;
};
}
diff --git a/pkgs/applications/video/jellyfin-mpv-shim/default.nix b/pkgs/applications/video/jellyfin-mpv-shim/default.nix
index 825aac4dad29..475b04c58620 100644
--- a/pkgs/applications/video/jellyfin-mpv-shim/default.nix
+++ b/pkgs/applications/video/jellyfin-mpv-shim/default.nix
@@ -53,6 +53,10 @@ buildPythonApplication rec {
pywebview
];
+ # no tests
+ doCheck = false;
+ pythonImportsCheck = [ "jellyfin_mpv_shim" ];
+
meta = with stdenv.lib; {
homepage = "https://github.com/iwalton3/jellyfin-mpv-shim";
description = "Allows casting of videos to MPV via the jellyfin mobile and web app";
diff --git a/pkgs/applications/video/mpc-qt/default.nix b/pkgs/applications/video/mpc-qt/default.nix
index d9de3eb699d4..d9d02ce792dc 100644
--- a/pkgs/applications/video/mpc-qt/default.nix
+++ b/pkgs/applications/video/mpc-qt/default.nix
@@ -29,6 +29,7 @@ mkDerivation rec {
homepage = "https://gitlab.com/mpc-qt/mpc-qt";
license = licenses.gpl2;
platforms = platforms.unix;
+ broken = stdenv.isDarwin;
maintainers = with maintainers; [ romildo ];
};
}
diff --git a/pkgs/applications/video/plex-mpv-shim/default.nix b/pkgs/applications/video/plex-mpv-shim/default.nix
index e25c101b5dfb..5006bf8ddaa4 100644
--- a/pkgs/applications/video/plex-mpv-shim/default.nix
+++ b/pkgs/applications/video/plex-mpv-shim/default.nix
@@ -13,6 +13,9 @@ buildPythonApplication rec {
propagatedBuildInputs = [ mpv requests python-mpv-jsonipc ];
+ # does not contain tests
+ doCheck = false;
+
meta = with stdenv.lib; {
homepage = "https://github.com/iwalton3/plex-mpv-shim";
description = "Allows casting of videos to MPV via the Plex mobile and web app";
diff --git a/pkgs/applications/video/qmplay2/default.nix b/pkgs/applications/video/qmplay2/default.nix
index b7f7f8c53023..a873c9e72ea7 100644
--- a/pkgs/applications/video/qmplay2/default.nix
+++ b/pkgs/applications/video/qmplay2/default.nix
@@ -22,7 +22,7 @@
let
pname = "qmplay2";
- version = "20.07.04";
+ version = "20.12.16";
in stdenv.mkDerivation {
inherit pname version;
@@ -30,7 +30,7 @@ in stdenv.mkDerivation {
owner = "zaps166";
repo = "QMPlay2";
rev = version;
- sha256 = "sha256-sUDucxSvsdD2C2FSVrrXeHdNdrjECtJSXVr106OdHzA=";
+ sha256 = "sha256-+XXlQI9MyENioYmzqbbZYQ6kaMATBjPrPaErR2Vqhus=";
fetchSubmodules = true;
};
diff --git a/pkgs/applications/video/streamlink-twitch-gui/bin.nix b/pkgs/applications/video/streamlink-twitch-gui/bin.nix
index 1c955a36f34a..1c88e3324b97 100644
--- a/pkgs/applications/video/streamlink-twitch-gui/bin.nix
+++ b/pkgs/applications/video/streamlink-twitch-gui/bin.nix
@@ -1,8 +1,29 @@
-{ autoPatchelfHook, fetchurl, lib, makeDesktopItem, makeWrapper, stdenv, wrapGAppsHook
-, at-spi2-core, atk, alsaLib, cairo, cups, dbus, expat, gcc-unwrapped
-, gdk-pixbuf, glib, pango, gtk3-x11, libudev0-shim, libuuid, nss, nspr, xorg
-, streamlink }:
-
+{ autoPatchelfHook
+, fetchurl
+, lib
+, makeDesktopItem
+, makeWrapper
+, stdenv
+, wrapGAppsHook
+, at-spi2-core
+, atk
+, alsaLib
+, cairo
+, cups
+, dbus
+, expat
+, gcc-unwrapped
+, gdk-pixbuf
+, glib
+, pango
+, gtk3-x11
+, libudev0-shim
+, libuuid
+, nss
+, nspr
+, xorg
+, streamlink
+}:
let
basename = "streamlink-twitch-gui";
runtimeLibs = lib.makeLibraryPath [ libudev0-shim ];
@@ -16,16 +37,16 @@ let
in
stdenv.mkDerivation rec {
pname = "${basename}-bin";
- version = "1.10.0";
+ version = "1.11.0";
src = fetchurl {
url = "https://github.com/streamlink/${basename}/releases/download/v${version}/${basename}-v${version}-${arch}.tar.gz";
sha256 =
if arch == "linux64"
then
- "17s9zbzj4pgz9mxxwjbp3788afkddc9s3p7xp28y5084z9wwzph2"
+ "0y96nziavvpdvrpn58p6a175kaa8cgadp19rnbm250x9cypn1d9y"
else
- "1pww05hr48m6v0g1sz48g1c7p615lig3s12l21xgyz4gkjzmjy22";
+ "0sfmhqf55w7wavqy4idsqpkf5p7l8sapjxap6xvyzpz4z5z6xr7y";
};
nativeBuildInputs = with xorg; [
diff --git a/pkgs/applications/video/streamlink/default.nix b/pkgs/applications/video/streamlink/default.nix
index 4c8800c918e2..97607f939fdd 100644
--- a/pkgs/applications/video/streamlink/default.nix
+++ b/pkgs/applications/video/streamlink/default.nix
@@ -1,21 +1,42 @@
-{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg_3 }:
+{ lib
+, pythonPackages
+, fetchFromGitHub
+, rtmpdump
+, ffmpeg_3
+}:
pythonPackages.buildPythonApplication rec {
- version = "1.5.0";
pname = "streamlink";
+ version = "2.0.0";
+ disabled = pythonPackages.pythonOlder "3.5.0";
src = fetchFromGitHub {
owner = "streamlink";
repo = "streamlink";
rev = version;
- sha256 = "00pishpyim3mcvr9njcbfhj79j85b5xhkslk3mspc2csqknw4k61";
+ sha256 = "+W9Nu5Ze08r7IlUZOkkVOz582E1Bbj0a3qIQHwxSmj8=";
};
- checkInputs = with pythonPackages; [ pytest mock requests-mock freezegun ];
+ checkInputs = with pythonPackages; [
+ pytest
+ mock
+ requests-mock
+ freezegun
+ ];
- propagatedBuildInputs = (with pythonPackages; [ pycryptodome requests iso-639 iso3166 websocket_client isodate ]) ++ [ rtmpdump ffmpeg_3 ];
+ propagatedBuildInputs = (with pythonPackages; [
+ pycryptodome
+ requests
+ iso-639
+ iso3166
+ websocket_client
+ isodate
+ ]) ++ [
+ rtmpdump
+ ffmpeg_3
+ ];
- meta = with stdenv.lib; {
+ meta = with lib; {
homepage = "https://github.com/streamlink/streamlink";
description = "CLI for extracting streams from various websites to video player of your choosing";
longDescription = ''
@@ -27,6 +48,6 @@ pythonPackages.buildPythonApplication rec {
'';
license = licenses.bsd2;
platforms = platforms.linux ++ platforms.darwin;
- maintainers = with maintainers; [ dezgeg zraexy enzime ];
+ maintainers = with maintainers; [ dezgeg zraexy ];
};
}
diff --git a/pkgs/applications/video/tartube/default.nix b/pkgs/applications/video/tartube/default.nix
index 23ee76eb4693..36375d9ecc06 100644
--- a/pkgs/applications/video/tartube/default.nix
+++ b/pkgs/applications/video/tartube/default.nix
@@ -10,17 +10,18 @@
, wrapGAppsHook
, youtube-dl
, glib
+, ffmpeg
}:
python3Packages.buildPythonApplication rec {
pname = "tartube";
- version = "2.1.0";
+ version = "2.3.042";
src = fetchFromGitHub {
owner = "axcore";
repo = "tartube";
rev = "v${version}";
- sha256 = "1klqjwqm29y2f6nc8gn222ykfvb5d64z1w2kifw9bq5bv0np9bda";
+ sha256 = "117q4s2b2js3204506qv3kjcsy3amcf0mpwj6q0ixs1256ilkxwj";
};
nativeBuildInputs = [
@@ -37,6 +38,7 @@ python3Packages.buildPythonApplication rec {
requests
feedparser
playsound
+ ffmpeg
];
buildInputs = [
@@ -48,7 +50,7 @@ python3Packages.buildPythonApplication rec {
];
postPatch = ''
- sed -i "/^\s*install_requires/s/, 'gi'\|'gi', \|'gi'//" setup.py
+ sed -i "/^\s*install_requires/s/, 'pgi'\|'pgi', \|'pgi'//" setup.py
'';
postInstall = ''
diff --git a/pkgs/applications/window-managers/icewm/default.nix b/pkgs/applications/window-managers/icewm/default.nix
index b86e598a4d08..f07bc873b7ad 100644
--- a/pkgs/applications/window-managers/icewm/default.nix
+++ b/pkgs/applications/window-managers/icewm/default.nix
@@ -1,30 +1,86 @@
-{ stdenv, fetchFromGitHub, cmake, gettext, perl, asciidoc
-, libjpeg, libtiff, libungif, libpng, imlib, expat
-, freetype, fontconfig, pkgconfig, gdk-pixbuf, gdk-pixbuf-xlib, glib
-, mkfontdir, libX11, libXft, libXext, libXinerama
-, libXrandr, libICE, libSM, libXpm, libXdmcp, libxcb
-, libpthreadstubs, pcre, libXdamage, libXcomposite, libXfixes
-, libsndfile, fribidi }:
+{ stdenv
+, fetchFromGitHub
+, cmake
+, pkg-config
+, perl
+, asciidoc
+, expat
+, fontconfig
+, freetype
+, fribidi
+, gdk-pixbuf
+, gdk-pixbuf-xlib
+, gettext
+, glib
+, imlib2
+, libICE
+, libSM
+, libX11
+, libXcomposite
+, libXdamage
+, libXdmcp
+, libXext
+, libXfixes
+, libXft
+, libXinerama
+, libXpm
+, libXrandr
+, libjpeg
+, libpng
+, libpthreadstubs
+, libsndfile
+, libtiff
+, libungif
+, libxcb
+, mkfontdir
+, pcre
+}:
-with stdenv.lib;
stdenv.mkDerivation rec {
pname = "icewm";
- version = "1.9.2";
+ version = "2.0.0";
src = fetchFromGitHub {
owner = "bbidulock";
repo = pname;
rev = version;
- sha256 = "16a9ikknjmhrrlc5r6z2ilkjj5vzyfk4ypwab39mg7vcmd7jzc41";
+ sha256 = "sha256-WdRAWAQEf9c66MVrLAs5VgBDK5r4JKM2GrjAV4cuGfA=";
};
- nativeBuildInputs = [ cmake pkgconfig perl asciidoc ];
+ nativeBuildInputs = [ cmake pkg-config perl asciidoc ];
buildInputs = [
- gettext libjpeg libtiff libungif libpng imlib expat freetype fontconfig
- gdk-pixbuf gdk-pixbuf-xlib glib mkfontdir libX11 libXft libXext libXinerama
- libXrandr libICE libSM libXpm libXdmcp libxcb libpthreadstubs pcre
- libsndfile fribidi libXdamage libXcomposite libXfixes ];
+ expat
+ fontconfig
+ freetype
+ fribidi
+ gdk-pixbuf
+ gdk-pixbuf-xlib
+ gettext
+ glib
+ imlib2
+ libICE
+ libSM
+ libX11
+ libXcomposite
+ libXdamage
+ libXdmcp
+ libXext
+ libXfixes
+ libXft
+ libXinerama
+ libXpm
+ libXrandr
+ libjpeg
+ libpng
+ libpthreadstubs
+ libsndfile
+ libtiff
+ libungif
+ libxcb
+ mkfontdir
+ pcre
+ ];
cmakeFlags = [ "-DPREFIX=$out" "-DCFGDIR=/etc/icewm" ];
@@ -33,11 +89,20 @@ stdenv.mkDerivation rec {
cp -r ../lib/themes/{gtk2,Natural,nice,nice2,warp3,warp4,yellowmotif} $out/share/icewm/themes/
'';
- meta = {
+ meta = with stdenv.lib; {
description = "A simple, lightweight X window manager";
longDescription = ''
- IceWM is a window manager for the X Window System. The goal of
- IceWM is speed, simplicity, and not getting in the user's way.
+ IceWM is a window manager for the X Window System. The goal of IceWM is
+ speed, simplicity, and not getting in the user’s way. It comes with a
+ taskbar with pager, global and per-window keybindings and a dynamic menu
+ system. Application windows can be managed by keyboard and mouse. Windows
+ can be iconified to the taskbar, to the tray, to the desktop or be made
+ hidden. They are controllable by a quick switch window (Alt+Tab) and in a
+ window list. A handful of configurable focus models are
+ menu-selectable. Setups with multiple monitors are supported by RandR and
+ Xinerama. IceWM is very configurable, themeable and well documented. It
+ includes an optional external background wallpaper manager with
+ transparency support, a simple session manager and a system tray.
'';
homepage = "https://www.ice-wm.org/";
license = licenses.lgpl2;
diff --git a/pkgs/applications/window-managers/pekwm/default.nix b/pkgs/applications/window-managers/pekwm/default.nix
index da2c11c873b1..dce727ee29b3 100644
--- a/pkgs/applications/window-managers/pekwm/default.nix
+++ b/pkgs/applications/window-managers/pekwm/default.nix
@@ -1,20 +1,37 @@
-{ stdenv, fetchurl, pkgconfig
-, libpng, libjpeg
-, libXext, libXft, libXpm, libXrandr, libXinerama }:
+{ stdenv
+, fetchFromGitHub
+, pkg-config
+, cmake
+, libXext
+, libXft
+, libXinerama
+, libXpm
+, libXrandr
+, libjpeg
+, libpng
+}:
stdenv.mkDerivation rec {
-
pname = "pekwm";
- version = "0.1.17";
+ version = "0.1.18";
- src = fetchurl {
- url = "https://www.pekwm.org/projects/pekwm/files/${pname}-${version}.tar.bz2";
- sha256 = "003x6bxj1lb2ljxz3v414bn0rdl6z68c0r185fxwgs1qkyzx67wa";
+ src = fetchFromGitHub {
+ owner = "pekdon";
+ repo = "pekwm";
+ rev = "release-${version}";
+ sha256 = "sha256-R1XDEk097ycMI3R4SjUEJv37CiMaDCQMvg7N8haN0MM=";
};
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ libpng libjpeg
- libXext libXft libXpm libXrandr libXinerama ];
+ nativeBuildInputs = [ pkg-config cmake ];
+ buildInputs = [
+ libXext
+ libXft
+ libXinerama
+ libXpm
+ libXrandr
+ libjpeg
+ libpng
+ ];
meta = with stdenv.lib; {
description = "A lightweight window manager";
@@ -24,7 +41,7 @@ stdenv.mkDerivation rec {
longer resembles aewm++ at all. It has a much expanded
feature-set, including window grouping (similar to ion, pwm, or
fluxbox), autoproperties, xinerama, keygrabber that supports
- keychains, and much more.
+ keychains, and much more.
- Lightweight and Unobtrusive, a window manager shouldn't be
noticed.
- Very configurable, we all work and think in different ways.
@@ -33,7 +50,7 @@ stdenv.mkDerivation rec {
- Chainable Keygrabber, usability for everyone.
'';
homepage = "http://www.pekwm.org";
- license = licenses.gpl2;
+ license = licenses.gpl2Plus;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};
diff --git a/pkgs/applications/window-managers/picom/default.nix b/pkgs/applications/window-managers/picom/default.nix
index 064e555f3a5b..4287dd2db020 100644
--- a/pkgs/applications/window-managers/picom/default.nix
+++ b/pkgs/applications/window-managers/picom/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitHub, pkgconfig, uthash, asciidoc, docbook_xml_dtd_45
+{ stdenv, lib, fetchFromGitHub, pkg-config, uthash, asciidoc, docbook_xml_dtd_45
, docbook_xsl, libxslt, libxml2, makeWrapper, meson, ninja
, xorgproto, libxcb ,xcbutilrenderutil, xcbutilimage, pixman, libev
, dbus, libconfig, libdrm, libGL, pcre, libX11
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
meson ninja
- pkgconfig
+ pkg-config
uthash
asciidoc
docbook_xml_dtd_45
@@ -35,10 +35,10 @@ stdenv.mkDerivation rec {
libxdg_basedir
];
- NIX_CFLAGS_COMPILE = "-fno-strict-aliasing";
+ mesonBuildType = "release";
mesonFlags = [
- "-Dbuild_docs=true"
+ "-Dwith_docs=true"
];
installFlags = [ "PREFIX=$(out)" ];
@@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
'';
license = licenses.mit;
homepage = "https://github.com/yshui/picom";
- maintainers = with maintainers; [ ertes enzime twey ];
+ maintainers = with maintainers; [ ertes twey thiagokokada ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/build-support/docker/examples.nix b/pkgs/build-support/docker/examples.nix
index 85ddeb257405..86375a40baa0 100644
--- a/pkgs/build-support/docker/examples.nix
+++ b/pkgs/build-support/docker/examples.nix
@@ -416,4 +416,15 @@ rec {
contents = crossPkgs.hello;
};
+ # layered image where a store path is itself a symlink
+ layeredStoreSymlink =
+ let
+ target = pkgs.writeTextDir "dir/target" "Content doesn't matter.";
+ symlink = pkgs.runCommandNoCC "symlink" {} "ln -s ${target} $out";
+ in
+ pkgs.dockerTools.buildLayeredImage {
+ name = "layeredstoresymlink";
+ tag = "latest";
+ contents = [ pkgs.bash symlink ];
+ } // { passthru = { inherit symlink; }; };
}
diff --git a/pkgs/build-support/docker/stream_layered_image.py b/pkgs/build-support/docker/stream_layered_image.py
index cbae0f723f92..e35bd0b0e8c0 100644
--- a/pkgs/build-support/docker/stream_layered_image.py
+++ b/pkgs/build-support/docker/stream_layered_image.py
@@ -83,7 +83,11 @@ def archive_paths_to(obj, paths, mtime):
for path in paths:
path = pathlib.Path(path)
- files = itertools.chain([path], path.rglob("*"))
+ if path.is_symlink():
+ files = [path]
+ else:
+ files = itertools.chain([path], path.rglob("*"))
+
for filename in sorted(files):
ti = append_root(tar.gettarinfo(filename))
diff --git a/pkgs/data/fonts/iosevka/bin.nix b/pkgs/data/fonts/iosevka/bin.nix
index fbae89bcf013..b86460a50fd0 100644
--- a/pkgs/data/fonts/iosevka/bin.nix
+++ b/pkgs/data/fonts/iosevka/bin.nix
@@ -10,7 +10,7 @@ let
(builtins.attrNames (builtins.removeAttrs variantHashes [ "iosevka" ]));
in stdenv.mkDerivation rec {
pname = "${name}-bin";
- version = "4.2.0";
+ version = "4.3.0";
src = fetchurl {
url = "https://github.com/be5invis/Iosevka/releases/download/v${version}/ttc-${name}-${version}.zip";
diff --git a/pkgs/data/fonts/iosevka/variants.nix b/pkgs/data/fonts/iosevka/variants.nix
index 5cb0b53114d1..d86f1ea3cfdc 100644
--- a/pkgs/data/fonts/iosevka/variants.nix
+++ b/pkgs/data/fonts/iosevka/variants.nix
@@ -1,24 +1,24 @@
# This file was autogenerated. DO NOT EDIT!
{
- iosevka = "1s9nyq8gjmmah5rpflffl0wi0klnlsvzmy7b39vnpp2sp6ng9mv3";
- iosevka-aile = "0x2ccjnmi9hqms5jkfnkn30y9gd3adiwjvn9gzq8d6a563h61fik";
- iosevka-curly = "03n0f9nzjywb5q3w59ck5sq500ks5xxlgf9dpncr3c7i2dawss41";
- iosevka-curly-slab = "09qnd2vzl4v59c0d534mj06zxwa3rdwrhkwy191v6p79lfxp482x";
- iosevka-etoile = "0j3ah72dmk7fzcln9755y3xnzn7343lfrg95kb3xmqm2zyg0mbrw";
- iosevka-slab = "0prnm3nh8rgn6jivfj2fw7x12m8qqam8xnl45ip5ck4348piypx3";
- iosevka-sparkle = "1y180rwrxrvwd98hk1d07y0vs8h5rj7ipkhsqlv60h82pigxhl4a";
- iosevka-ss01 = "04q9vby5q9ylvv2myl3h2xfyq3s594wnwj0b956pivwwamhp0g3v";
- iosevka-ss02 = "14d5i88ls8zfbis5s7z95dcrpxqyqr2wzx90c5a4xpcdjd4n7fgg";
- iosevka-ss03 = "1zqqq11rcjmifc4qf5p2xcqhqp5ca2pgvzv8xirr6mq4knrvxrpq";
- iosevka-ss04 = "1xnnqyvyrz820dzfyjj84v3j1q8krykmwxw5xml4v7kk79agc7vk";
- iosevka-ss05 = "07w78jw23hxwzx65ampwzv691p12n0pvk8vnw2mnnspflirpm62r";
- iosevka-ss06 = "11brqklhk3sfhqyavyi5rggsn3286n404gphmh0frz65wj3k8lc6";
- iosevka-ss07 = "037vaxpgdpa6p9nmqcsa1mi7pn94300cd71kbr9lw8mql9wc2y9n";
- iosevka-ss08 = "0ga1bwb2d1rizr0910bcqabcj819dcd0bxp7cwbxnzq6i7ca4hj1";
- iosevka-ss09 = "1khjhn0lfpk8g1yx3558w6kkj0pd5b7kxbf0z97w1nvah3d5v50m";
- iosevka-ss10 = "0zp5173799vacssj0lsj3ck82b03qyk9cyfwa3j7xa2dhplrjfp2";
- iosevka-ss11 = "124a3i7iy9z7adxcb8yw3795gk52cw7ngsim8qjhrhcd2bjr0jvg";
- iosevka-ss12 = "1rd61ry3ihw311c926wjl9sc71bz0ligya07m7km1905dhlhirsv";
- iosevka-ss13 = "0jm3djc4rlzk22jn3syv4mwd0fz82z4lnyk3dkq815yyw6vmqkz0";
- iosevka-ss14 = "1a9a1bvzsbprmxfh19m78s82rfmxng4sambz6m4gd9mm14kjjp5r";
+ iosevka = "1m4qkn1abj6a9famy5cvnl9xk7690mglpj358xg01fnkmrm8ayzf";
+ iosevka-aile = "0ry949kdnxlahg9a2qn758klb9yvv2wniwadb4hj2xz65zzfyv7i";
+ iosevka-curly = "08ac8xprk3sq8lvgxlxp1z19bx0ndr7ga17kzxlqd4r96qjgab0p";
+ iosevka-curly-slab = "1zmihfk32clp4ajywg9w6pbq3dh068s9d4bxzpgvicsfvbl04irk";
+ iosevka-etoile = "09bk4myxg51m9xfyrljxm4r7gq1361x2yzlik99qp5anpxflf2jf";
+ iosevka-slab = "10x6wwcicwy7rawrg563l5qfbp6vsaim82q3ifd6zqxxc71m33yd";
+ iosevka-sparkle = "1f59j1cs11gabrk3m78bay96jpwz7lfc8z34ns9kx4bd43w0xnkx";
+ iosevka-ss01 = "1kvsgghqc04mdqmbn2c98yqr062lav6aqawbdk1nsqyzihb09wq3";
+ iosevka-ss02 = "06ri8ihinz6bd6swrxf500j1hfl8y9dfm7hjgm3hpdch4fcrhrnz";
+ iosevka-ss03 = "110bwfikcxyr8s6p5l29wiyyfhnfv5p2bjlqrzs46pzpyj9g4730";
+ iosevka-ss04 = "064nq0zphsik097ynv71p7007w0ysld1a0phfxmc0199s8qdahid";
+ iosevka-ss05 = "0c99yp2fxsmx6pwqdlr217rh5khk79fnl8i35a19wf0z3sm4kcna";
+ iosevka-ss06 = "0wfxcryhfwcqb2gd227qyiv1a3vzxig79bkp20cpb215w1hn6hkw";
+ iosevka-ss07 = "141qpwbjy34v088a29fmj7nipvdxwh4l99wwyaq5ycbgj8743k93";
+ iosevka-ss08 = "08yihjqp1fc6l1in9jk8dnlf9fwqahqv76di4xy9vk1dhgi1bd09";
+ iosevka-ss09 = "01ad5dif3hwd2yf3y3sa58acqbps5kyivbxmsdqwpl5cvl2f9i83";
+ iosevka-ss10 = "0aljyqqxw4mijkwzbq8hcpmpxm34ylp9pfcvisca2k7dspg17n2l";
+ iosevka-ss11 = "1cz8ri184mdj6q67rdasbg7fjbhla2vj85lrkhy2avk515av2c2g";
+ iosevka-ss12 = "0hif6sgk7r2d235sghaf9nqn7qr58rgj43ipc0pr5lykaraqi7md";
+ iosevka-ss13 = "1wrzn9m2vvnc2sfh3wqgmr5ci3mpi0fmbzlvkf0j2hspkfy4d8iw";
+ iosevka-ss14 = "1d71qbbd2b6nqdaxns70m3qm9qr03l5ld84fqlfcsmxdsnlhhx3k";
}
diff --git a/pkgs/data/icons/kora-icon-theme/default.nix b/pkgs/data/icons/kora-icon-theme/default.nix
new file mode 100644
index 000000000000..cd5f9f758792
--- /dev/null
+++ b/pkgs/data/icons/kora-icon-theme/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchFromGitHub , gtk3, breeze-icons, gnome-icon-theme, hicolor-icon-theme }:
+
+stdenv.mkDerivation rec {
+ pname = "kora-icon-theme";
+ version = "1.3.4";
+
+ src = fetchFromGitHub {
+ owner = "bikass";
+ repo = "kora";
+ rev = "v${version}";
+ sha256 = "01s7zhwwbdqgksjvfvn7kqijxzzc7734f707yk8y7anshq0518x3";
+ };
+
+ nativeBuildInputs = [
+ gtk3
+ ];
+
+ propagatedBuildInputs = [
+ breeze-icons
+ gnome-icon-theme
+ hicolor-icon-theme
+ ];
+
+ dontDropIconThemeCache = true;
+
+ installPhase = ''
+ mkdir -p $out/share/icons
+ mv kora* $out/share/icons/
+
+ for theme in $out/share/icons/*; do
+ gtk-update-icon-cache $theme
+ done
+ '';
+
+ meta = with stdenv.lib; {
+ description = "An SVG icon theme in four variants";
+ homepage = "https://github.com/bikass/kora";
+ license = with licenses; [ gpl3Only ];
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ bloomvdomino ];
+ };
+}
diff --git a/pkgs/data/themes/marwaita-manjaro/default.nix b/pkgs/data/themes/marwaita-manjaro/default.nix
index 6750c0119968..27b503b842df 100644
--- a/pkgs/data/themes/marwaita-manjaro/default.nix
+++ b/pkgs/data/themes/marwaita-manjaro/default.nix
@@ -8,13 +8,13 @@
stdenv.mkDerivation rec {
pname = "marwaita-manjaro";
- version = "1.6";
+ version = "1.8";
src = fetchFromGitHub {
owner = "darkomarko42";
repo = pname;
rev = version;
- sha256 = "133b9ri1yhvwrm9fm648mq0xnbr9mccy6yar7d390n4659j09v3s";
+ sha256 = "0zxj20inwdfxhsc7cq6b3ijkxmrhnrwvbmyb1lw4vfjs4p4wrws0";
};
buildInputs = [
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Manjaro Style (green version) of Marwaita GTK theme";
homepage = "https://www.pling.com/p/1351213/";
- license = licenses.gpl3;
+ license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
diff --git a/pkgs/desktops/cinnamon/cinnamon-desktop/default.nix b/pkgs/desktops/cinnamon/cinnamon-desktop/default.nix
index 00ea002f746b..71eb54ea2023 100644
--- a/pkgs/desktops/cinnamon/cinnamon-desktop/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-desktop/default.nix
@@ -17,13 +17,13 @@
stdenv.mkDerivation rec {
pname = "cinnamon-desktop";
- version = "4.8.0";
+ version = "4.6.4";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "1369iig7w0x45sr9yd4a5xxqrwsfwq90hlnknarhz62h5hpykjwi";
+ sha256 = "08z5hgc6dwdp9fczm75axwh8q9665iz4y2lxp92xp62r3k0v9fvd";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/desktops/cinnamon/cinnamon-menus/default.nix b/pkgs/desktops/cinnamon/cinnamon-menus/default.nix
index 0e84302f6c6c..9edc13687079 100644
--- a/pkgs/desktops/cinnamon/cinnamon-menus/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-menus/default.nix
@@ -10,13 +10,13 @@
stdenv.mkDerivation rec {
pname = "cinnamon-menus";
- version = "4.8.1";
+ version = "4.6.1";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "1fsiq8q8b65skxbg1bsishygnw2zg8kr0d09rassqjdimd4yfi1y";
+ sha256 = "1qdaql4mknhzvl2qi1pyw4c820lqb7lg07gblh0wzfk4f7h8hddx";
};
buildInputs = [
diff --git a/pkgs/desktops/cinnamon/cinnamon-session/default.nix b/pkgs/desktops/cinnamon/cinnamon-session/default.nix
index 02082f64ed3c..4e9c09f4d735 100644
--- a/pkgs/desktops/cinnamon/cinnamon-session/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-session/default.nix
@@ -27,13 +27,13 @@
stdenv.mkDerivation rec {
pname = "cinnamon-session";
- version = "4.8.0";
+ version = "4.6.2";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "0sbfd1d4kjiccaq9s36r2cvdcmvd1x2087nkfgl32gwxakqi3g4n";
+ sha256 = "133vpgs0dqr16pvx5wyxhfcargn9wl14z0q99m2pn93hf6zycmsv";
};
patches = [
diff --git a/pkgs/desktops/cinnamon/cinnamon-translations/default.nix b/pkgs/desktops/cinnamon/cinnamon-translations/default.nix
index 8e29aa9fcc72..142c586d8d64 100644
--- a/pkgs/desktops/cinnamon/cinnamon-translations/default.nix
+++ b/pkgs/desktops/cinnamon/cinnamon-translations/default.nix
@@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "cinnamon-translations";
- version = "4.8.0";
+ version = "4.6.2";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
- sha256 = "1j3azjwin89z5v6nphx0wsa35p224h2gps50kcq9gwankkfcf3q1";
+ sha256 = "0zaghha62ibhg3rir6mrfy1z3v7p7v83b6glhmj9s51nxd86fyv6";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix b/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
index 8f2ec6f85dd4..67d433a8209f 100644
--- a/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
+++ b/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
@@ -38,6 +38,12 @@ stdenv.mkDerivation rec {
url = "https://gitlab.gnome.org/GNOME/gnome-calendar/-/commit/8be361b6ce8f0f8053e1609decbdbdc164ec8448.patch";
sha256 = "Ue0pWwcbYyCZPHPPoR0dXW5n948/AZ3wVDMTIZDOnyE=";
})
+
+ # https://gitlab.gnome.org/GNOME/gnome-calendar/-/merge_requests/84
+ (fetchpatch {
+ url = "https://gitlab.gnome.org/GNOME/gnome-calendar/-/merge_requests/84.patch";
+ sha256 = "czG3uIHl3tBnjDUvCOPm8IRp2o7yZYCb0/jWtv3uzIY=";
+ })
];
passthru = {
diff --git a/pkgs/desktops/gnome-3/extensions/material-shell/default.nix b/pkgs/desktops/gnome-3/extensions/material-shell/default.nix
index 1b8341a281f8..e7931fc4fc06 100644
--- a/pkgs/desktops/gnome-3/extensions/material-shell/default.nix
+++ b/pkgs/desktops/gnome-3/extensions/material-shell/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "gnome-shell-extension-material-shell";
- version = "10";
+ version = "12";
src = fetchFromGitHub {
owner = "material-shell";
repo = "material-shell";
rev = version;
- sha256 = "18d813n8s7ns8xp75zmlna7a8mi23rn9yqps51xvdd0sdgn72a1c";
+ sha256 = "0ikrh70drwr0pqjcdz7l1ky8xllpnk7myprjd4s61nqkx9j2iz44";
};
# This package has a Makefile, but it's used for building a zip for
diff --git a/pkgs/development/compilers/flutter/default.nix b/pkgs/development/compilers/flutter/default.nix
index baab0583fb0c..3eea7f596b6b 100644
--- a/pkgs/development/compilers/flutter/default.nix
+++ b/pkgs/development/compilers/flutter/default.nix
@@ -1,5 +1,4 @@
{ callPackage, dart }:
-
let
dart_stable = dart.override { version = "2.10.0"; };
dart_beta = dart.override { version = "2.10.0"; };
@@ -8,7 +7,8 @@ let
getPatches = dir:
let files = builtins.attrNames (builtins.readDir dir);
in map (f: dir + ("/" + f)) files;
-in {
+in
+{
mkFlutter = mkFlutter;
stable = mkFlutter rec {
pname = "flutter";
diff --git a/pkgs/development/compilers/flutter/flutter.nix b/pkgs/development/compilers/flutter/flutter.nix
index 7fda2d616f3e..b7769e88af39 100644
--- a/pkgs/development/compilers/flutter/flutter.nix
+++ b/pkgs/development/compilers/flutter/flutter.nix
@@ -1,10 +1,36 @@
-{ channel, pname, version, sha256Hash, patches, dart
-, filename ? "flutter_linux_${version}-${channel}.tar.xz"}:
-
-{ bash, buildFHSUserEnv, cacert, coreutils, git, makeWrapper, runCommand, stdenv
-, fetchurl, alsaLib, dbus, expat, libpulseaudio, libuuid, libX11, libxcb
-, libXcomposite, libXcursor, libXdamage, libXfixes, libGL, nspr, nss, systemd }:
+{ channel
+, pname
+, version
+, sha256Hash
+, patches
+, dart
+, filename ? "flutter_linux_${version}-${channel}.tar.xz"
+}:
+{ bash
+, buildFHSUserEnv
+, cacert
+, coreutils
+, git
+, runCommand
+, stdenv
+, fetchurl
+, alsaLib
+, dbus
+, expat
+, libpulseaudio
+, libuuid
+, libX11
+, libxcb
+, libXcomposite
+, libXcursor
+, libXdamage
+, libXfixes
+, libGL
+, nspr
+, nss
+, systemd
+}:
let
drvName = "flutter-${channel}-${version}";
flutter = stdenv.mkDerivation {
@@ -16,7 +42,7 @@ let
sha256 = sha256Hash;
};
- buildInputs = [ makeWrapper git ];
+ buildInputs = [ git ];
inherit patches;
@@ -31,28 +57,27 @@ let
SNAPSHOT_PATH="$FLUTTER_ROOT/bin/cache/flutter_tools.snapshot"
STAMP_PATH="$FLUTTER_ROOT/bin/cache/flutter_tools.stamp"
SCRIPT_PATH="$FLUTTER_TOOLS_DIR/bin/flutter_tools.dart"
- DART_SDK_PATH="$FLUTTER_ROOT/bin/cache/dart-sdk"
-
- DART="$DART_SDK_PATH/bin/dart"
- PUB="$DART_SDK_PATH/bin/pub"
+ DART_SDK_PATH="${dart}"
HOME=../.. # required for pub upgrade --offline, ~/.pub-cache
# path is relative otherwise it's replaced by /build/flutter
- (cd "$FLUTTER_TOOLS_DIR" && "$PUB" upgrade --offline)
+ (cd "$FLUTTER_TOOLS_DIR" && ${dart}/bin/pub upgrade --offline)
local revision="$(cd "$FLUTTER_ROOT"; git rev-parse HEAD)"
- "$DART" --snapshot="$SNAPSHOT_PATH" --packages="$FLUTTER_TOOLS_DIR/.packages" "$SCRIPT_PATH"
+ ${dart}/bin/dart --snapshot="$SNAPSHOT_PATH" --packages="$FLUTTER_TOOLS_DIR/.packages" "$SCRIPT_PATH"
echo "$revision" > "$STAMP_PATH"
echo -n "${version}" > version
- rm -rf bin/cache/{artifacts,downloads}
+ rm -rf bin/cache/{artifacts,dart-sdk,downloads}
rm -f bin/cache/*.stamp
'';
installPhase = ''
mkdir -p $out
cp -r . $out
+ mkdir -p $out/bin/cache/
+ ln -sf ${dart} $out/bin/cache/dart-sdk
'';
};
@@ -100,7 +125,9 @@ let
];
};
-in runCommand drvName {
+in
+runCommand drvName
+{
startScript = ''
#!${bash}/bin/bash
export PUB_CACHE=''${PUB_CACHE:-"$HOME/.pub-cache"}
@@ -126,8 +153,4 @@ in runCommand drvName {
echo -n "$startScript" > $out/bin/${pname}
chmod +x $out/bin/${pname}
-
- mkdir -p $out/bin/cache/dart-sdk/
- cp -r ${dart}/* $out/bin/cache/dart-sdk/
- ln $out/bin/cache/dart-sdk/bin/dart $out/bin/dart
''
diff --git a/pkgs/development/compilers/glslang/default.nix b/pkgs/development/compilers/glslang/default.nix
index 3b0084e3aeed..3fb9e107356a 100644
--- a/pkgs/development/compilers/glslang/default.nix
+++ b/pkgs/development/compilers/glslang/default.nix
@@ -1,4 +1,5 @@
-{ stdenv, fetchFromGitHub
+{ stdenv
+, fetchFromGitHub
, bison
, cmake
, jq
@@ -10,7 +11,7 @@
}:
# glslang requires custom versions of spirv-tools and spirb-headers.
# The exact versions are taken from:
-# https://github.com/KhronosGroup/glslang/blob/master/known_good.json
+# https://github.com/KhronosGroup/glslang/blob/${version}/known_good.json
let
localSpirv-tools = if argSpirv-tools == null
@@ -18,8 +19,8 @@ let
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-Tools";
- rev = "fd8e130510a6b002b28eee5885a9505040a9bdc9";
- sha256 = "00b7xgyrcb2qq63pp3cnw5q1xqx2d9rfn65lai6n6r89s1vh3vg6";
+ rev = "b27b1afd12d05bf238ac7368bb49de73cd620a8e";
+ sha256 = "0v26ws6qx23jn4dcpsq6rqmdxgyxpl5pcvfm90wb3nz6iqbqx294";
};
})
else argSpirv-tools;
@@ -29,8 +30,8 @@ let
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-Headers";
- rev = "f8bf11a0253a32375c32cad92c841237b96696c0";
- sha256 = "1znwjy02dl9rshqzl87rqsv9mfczw7gvwfhcirbl81idahgp4p6l";
+ rev = "f027d53ded7e230e008d37c8b47ede7cd308e19d";
+ sha256 = "12gp2mqcar6jj57jw9isfr62yn72kmvdcl0zga4gvrlyfhnf582q";
};
})
else argSpirv-headers;
@@ -38,13 +39,13 @@ in
stdenv.mkDerivation rec {
pname = "glslang";
- version = "8.13.3743";
+ version = "11.1.0";
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "glslang";
rev = version;
- sha256 = "0d20wfpp2fmbnz1hnsjr9xc62lxpj86ik2qyviqbni0pqj212cry";
+ sha256 = "1j81pghy7whyr8ygk7lx6g6qph61rky7fkkc8xp87c7n695a48rw";
};
# These get set at all-packages, keep onto them for child drvs
@@ -74,7 +75,7 @@ stdenv.mkDerivation rec {
inherit (src.meta) homepage;
description = "Khronos reference front-end for GLSL and ESSL";
license = licenses.asl20;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = [ maintainers.ralith ];
};
}
diff --git a/pkgs/development/compilers/openjdk/14.nix b/pkgs/development/compilers/openjdk/14.nix
new file mode 100644
index 000000000000..e851a5bf4b90
--- /dev/null
+++ b/pkgs/development/compilers/openjdk/14.nix
@@ -0,0 +1,157 @@
+{ stdenv, lib, fetchurl, bash, pkg-config, autoconf, cpio, file, which, unzip
+, zip, perl, cups, freetype, alsaLib, libjpeg, giflib, libpng, zlib, lcms2
+, libX11, libICE, libXrender, libXext, libXt, libXtst, libXi, libXinerama
+, libXcursor, libXrandr, fontconfig, openjdk14-bootstrap
+, setJavaClassPath
+, headless ? false
+, enableJavaFX ? openjfx.meta.available, openjfx
+, enableGnome2 ? true, gtk3, gnome_vfs, glib, GConf
+}:
+
+let
+ major = "14";
+ update = ".0.2";
+ build = "-ga";
+
+ openjdk = stdenv.mkDerivation rec {
+ pname = "openjdk" + lib.optionalString headless "-headless";
+ version = "${major}${update}${build}";
+
+ src = fetchurl {
+ url = "https://hg.openjdk.java.net/jdk-updates/jdk${major}u/archive/jdk-${version}.tar.gz";
+ sha256 = "1s1pc6ihzf0awp4hbaqfxmbica0hnrg8nr7s0yd2hfn7nan8xmf3";
+ };
+
+ nativeBuildInputs = [ pkg-config autoconf ];
+ buildInputs = [
+ cpio file which unzip zip perl zlib cups freetype alsaLib libjpeg giflib
+ libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst
+ libXi libXinerama libXcursor libXrandr fontconfig openjdk14-bootstrap
+ ] ++ lib.optionals (!headless && enableGnome2) [
+ gtk3 gnome_vfs GConf glib
+ ];
+
+ patches = [
+ ./fix-java-home-jdk10.patch
+ ./read-truststore-from-env-jdk10.patch
+ ./currency-date-range-jdk10.patch
+ ./increase-javadoc-heap-jdk13.patch
+ # -Wformat etc. are stricter in newer gccs, per
+ # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79677
+ # so grab the work-around from
+ # https://src.fedoraproject.org/rpms/java-openjdk/pull-request/24
+ (fetchurl {
+ url = "https://src.fedoraproject.org/rpms/java-openjdk/raw/06c001c7d87f2e9fe4fedeef2d993bcd5d7afa2a/f/rh1673833-remove_removal_of_wformat_during_test_compilation.patch";
+ sha256 = "082lmc30x64x583vqq00c8y0wqih3y4r0mp1c4bqq36l22qv6b6r";
+ })
+ ] ++ lib.optionals (!headless && enableGnome2) [
+ ./swing-use-gtk-jdk13.patch
+ ];
+
+ prePatch = ''
+ chmod +x configure
+ patchShebangs --build configure
+ '';
+
+ configureFlags = [
+ "--with-boot-jdk=${openjdk14-bootstrap.home}"
+ "--enable-unlimited-crypto"
+ "--with-native-debug-symbols=internal"
+ "--with-libjpeg=system"
+ "--with-giflib=system"
+ "--with-libpng=system"
+ "--with-zlib=system"
+ "--with-lcms=system"
+ "--with-stdc++lib=dynamic"
+ ] ++ lib.optional stdenv.isx86_64 "--with-jvm-features=zgc"
+ ++ lib.optional headless "--enable-headless-only"
+ ++ lib.optional (!headless && enableJavaFX) "--with-import-modules=${openjfx}";
+
+ separateDebugInfo = true;
+
+ NIX_CFLAGS_COMPILE = "-Wno-error";
+
+ NIX_LDFLAGS = toString (lib.optionals (!headless) [
+ "-lfontconfig" "-lcups" "-lXinerama" "-lXrandr" "-lmagic"
+ ] ++ lib.optionals (!headless && enableGnome2) [
+ "-lgtk-3" "-lgio-2.0" "-lgnomevfs-2" "-lgconf-2"
+ ]);
+
+ buildFlags = [ "all" ];
+
+ installPhase = ''
+ mkdir -p $out/lib
+
+ mv build/*/images/jdk $out/lib/openjdk
+
+ # Remove some broken manpages.
+ rm -rf $out/lib/openjdk/man/ja*
+
+ # Mirror some stuff in top-level.
+ mkdir -p $out/share
+ ln -s $out/lib/openjdk/include $out/include
+ ln -s $out/lib/openjdk/man $out/share/man
+ ln -s $out/lib/openjdk/lib/src.zip $out/lib/src.zip
+
+ # jni.h expects jni_md.h to be in the header search path.
+ ln -s $out/include/linux/*_md.h $out/include/
+
+ # Remove crap from the installation.
+ rm -rf $out/lib/openjdk/demo
+ ${lib.optionalString headless ''
+ rm $out/lib/openjdk/lib/{libjsound,libfontmanager}.so
+ ''}
+
+ ln -s $out/lib/openjdk/bin $out/bin
+ '';
+
+ preFixup = ''
+ # Propagate the setJavaClassPath setup hook so that any package
+ # that depends on the JDK has $CLASSPATH set up properly.
+ mkdir -p $out/nix-support
+ #TODO or printWords? cf https://github.com/NixOS/nixpkgs/pull/27427#issuecomment-317293040
+ echo -n "${setJavaClassPath}" > $out/nix-support/propagated-build-inputs
+
+ # Set JAVA_HOME automatically.
+ mkdir -p $out/nix-support
+ cat < $out/nix-support/setup-hook
+ if [ -z "\''${JAVA_HOME-}" ]; then export JAVA_HOME=$out/lib/openjdk; fi
+ EOF
+ '';
+
+ postFixup = ''
+ # Build the set of output library directories to rpath against
+ LIBDIRS=""
+ for output in $outputs; do
+ if [ "$output" = debug ]; then continue; fi
+ LIBDIRS="$(find $(eval echo \$$output) -name \*.so\* -exec dirname {} \+ | sort | uniq | tr '\n' ':'):$LIBDIRS"
+ done
+ # Add the local library paths to remove dependencies on the bootstrap
+ for output in $outputs; do
+ if [ "$output" = debug ]; then continue; fi
+ OUTPUTDIR=$(eval echo \$$output)
+ BINLIBS=$(find $OUTPUTDIR/bin/ -type f; find $OUTPUTDIR -name \*.so\*)
+ echo "$BINLIBS" | while read i; do
+ patchelf --set-rpath "$LIBDIRS:$(patchelf --print-rpath "$i")" "$i" || true
+ patchelf --shrink-rpath "$i" || true
+ done
+ done
+ '';
+
+ disallowedReferences = [ openjdk14-bootstrap ];
+
+ meta = with stdenv.lib; {
+ homepage = "https://openjdk.java.net/";
+ license = licenses.gpl2;
+ description = "The open-source Java Development Kit";
+ maintainers = with maintainers; [ edwtjo ];
+ platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" "armv7l-linux" "armv6l-linux" ];
+ };
+
+ passthru = {
+ architecture = "";
+ home = "${openjdk}/lib/openjdk";
+ inherit gtk3;
+ };
+ };
+in openjdk
diff --git a/pkgs/development/compilers/openjdk/darwin/default.nix b/pkgs/development/compilers/openjdk/darwin/default.nix
index c6498cb45302..f10ede2506ae 100644
--- a/pkgs/development/compilers/openjdk/darwin/default.nix
+++ b/pkgs/development/compilers/openjdk/darwin/default.nix
@@ -7,11 +7,11 @@ let
};
jdk = stdenv.mkDerivation rec {
- name = "zulu14.28.21-ca-jdk14.0.1";
+ name = "zulu15.28.51-ca-jdk15.0.1";
src = fetchurl {
url = "https://cdn.azul.com/zulu/bin/${name}-macosx_x64.tar.gz";
- sha256 = "1pc0y3fxhlf42a51qbdha1fabci61yzq70kk5c1rzk0ai78d92q8";
+ sha256 = "0h738pbnwcn7pjp0qyryzazqj5nw5sy2f8l0ycl39crm9ia6akvh";
curlOpts = "-H Referer:https://www.azul.com/downloads/zulu/";
};
diff --git a/pkgs/development/compilers/openjdk/default.nix b/pkgs/development/compilers/openjdk/default.nix
index 1dcd3e23e6fa..ec0042809c66 100644
--- a/pkgs/development/compilers/openjdk/default.nix
+++ b/pkgs/development/compilers/openjdk/default.nix
@@ -1,7 +1,7 @@
-{ stdenv, lib, fetchurl, bash, pkgconfig, autoconf, cpio, file, which, unzip
+{ stdenv, lib, fetchurl, bash, pkg-config, autoconf, cpio, file, which, unzip
, zip, perl, cups, freetype, alsaLib, libjpeg, giflib, libpng, zlib, lcms2
, libX11, libICE, libXrender, libXext, libXt, libXtst, libXi, libXinerama
-, libXcursor, libXrandr, fontconfig, openjdk14-bootstrap
+, libXcursor, libXrandr, fontconfig, openjdk15-bootstrap
, setJavaClassPath
, headless ? false
, enableJavaFX ? openjfx.meta.available, openjfx
@@ -9,8 +9,8 @@
}:
let
- major = "14";
- update = ".0.2";
+ major = "15";
+ update = ".0.1";
build = "-ga";
openjdk = stdenv.mkDerivation rec {
@@ -18,15 +18,15 @@ let
version = "${major}${update}${build}";
src = fetchurl {
- url = "http://hg.openjdk.java.net/jdk-updates/jdk${major}u/archive/jdk-${version}.tar.gz";
- sha256 = "1s1pc6ihzf0awp4hbaqfxmbica0hnrg8nr7s0yd2hfn7nan8xmf3";
+ url = "https://hg.openjdk.java.net/jdk-updates/jdk${major}u/archive/jdk-${version}.tar.gz";
+ sha256 = "1h8n5figc9q0k9p8b0qggyhvqagvxanfih1lj5j492c74cd1mx1l";
};
- nativeBuildInputs = [ pkgconfig autoconf ];
+ nativeBuildInputs = [ pkg-config autoconf ];
buildInputs = [
cpio file which unzip zip perl zlib cups freetype alsaLib libjpeg giflib
libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst
- libXi libXinerama libXcursor libXrandr fontconfig openjdk14-bootstrap
+ libXi libXinerama libXcursor libXrandr fontconfig openjdk15-bootstrap
] ++ lib.optionals (!headless && enableGnome2) [
gtk3 gnome_vfs GConf glib
];
@@ -54,7 +54,7 @@ let
'';
configureFlags = [
- "--with-boot-jdk=${openjdk14-bootstrap.home}"
+ "--with-boot-jdk=${openjdk15-bootstrap.home}"
"--enable-unlimited-crypto"
"--with-native-debug-symbols=internal"
"--with-libjpeg=system"
@@ -138,10 +138,10 @@ let
done
'';
- disallowedReferences = [ openjdk14-bootstrap ];
+ disallowedReferences = [ openjdk15-bootstrap ];
meta = with stdenv.lib; {
- homepage = "http://openjdk.java.net/";
+ homepage = "https://openjdk.java.net/";
license = licenses.gpl2;
description = "The open-source Java Development Kit";
maintainers = with maintainers; [ edwtjo ];
diff --git a/pkgs/development/compilers/openjdk/openjfx/14.nix b/pkgs/development/compilers/openjdk/openjfx/15.nix
similarity index 89%
rename from pkgs/development/compilers/openjdk/openjfx/14.nix
rename to pkgs/development/compilers/openjdk/openjfx/15.nix
index 51512c5afcaf..f406a3959fd1 100644
--- a/pkgs/development/compilers/openjdk/openjfx/14.nix
+++ b/pkgs/development/compilers/openjdk/openjfx/15.nix
@@ -3,9 +3,9 @@
, ffmpeg_3, python, ruby }:
let
- major = "14";
- update = "";
- build = "-ga";
+ major = "15";
+ update = ".0.1";
+ build = "+1";
repover = "${major}${update}${build}";
gradle_ = (gradleGen.override {
java = openjdk11_headless;
@@ -18,7 +18,7 @@ let
owner = "openjdk";
repo = "jfx";
rev = repover;
- sha256 = "16aj15xksc266gv3y42m0g277pfvp71901lrngndcnpr7i2zshnr";
+ sha256 = "019glq8rhn6amy3n5jc17vi2wpf1pxpmmywvyz1ga8n09w7xscq1";
};
buildInputs = [ gtk2 gtk3 libXtst libXxf86vm glib alsaLib ffmpeg_3 ];
@@ -64,8 +64,10 @@ let
outputHashMode = "recursive";
# Downloaded AWT jars differ by platform.
outputHash = {
- x86_64-linux = "077zss95iq6iskx7ghz1c57ymydpzj0wm7r1pkznw99l9xwvdmqi";
- i686-linux = "03gglr2sh77cyg16qw9g45ji33dg7i93s5s30hz3mh420g112qa0";
+ x86_64-linux = "0hmyr5nnjgwyw3fcwqf0crqg9lny27jfirycg3xmkzbcrwqd6qkw";
+ # The build-time dependencies don't currently build for i686, so no
+ # reason to fetch this one correctly either...
+ i686-linux = "0000000000000000000000000000000000000000000000000000";
}.${stdenv.system} or (throw "Unsupported platform");
};
diff --git a/pkgs/development/compilers/reason/default.nix b/pkgs/development/compilers/reason/default.nix
index 4c0e9c298519..435813ee5e7a 100644
--- a/pkgs/development/compilers/reason/default.nix
+++ b/pkgs/development/compilers/reason/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, makeWrapper, fetchFromGitHub, ocaml, findlib, dune
+{ stdenv, makeWrapper, fetchFromGitHub, ocaml, findlib, dune_2
, fix, menhir, merlin-extend, ppx_tools_versioned, utop, cppo
}:
@@ -17,13 +17,12 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ menhir merlin-extend ppx_tools_versioned ];
- buildInputs = [ ocaml findlib dune cppo fix utop menhir ];
+ buildInputs = [ ocaml findlib dune_2 cppo fix utop menhir ];
buildFlags = [ "build" ]; # do not "make tests" before reason lib is installed
- inherit (dune) installPhase;
-
- postInstall = ''
+ installPhase = ''
+ dune install --prefix=$out --libdir=$OCAMLFIND_DESTDIR
wrapProgram $out/bin/rtop \
--prefix PATH : "${utop}/bin" \
--prefix CAML_LD_LIBRARY_PATH : "$CAML_LD_LIBRARY_PATH" \
diff --git a/pkgs/development/compilers/rust/rls/default.nix b/pkgs/development/compilers/rust/rls/default.nix
index 06b1b9b1e648..7534a52fe0f0 100644
--- a/pkgs/development/compilers/rust/rls/default.nix
+++ b/pkgs/development/compilers/rust/rls/default.nix
@@ -39,9 +39,9 @@ rustPlatform.buildRustPackage {
$out/bin/rls --version
'';
- RUST_SRC_PATH = rustPlatform.rustcSrc;
+ RUST_SRC_PATH = rustPlatform.rustLibSrc;
postInstall = ''
- wrapProgram $out/bin/rls --set-default RUST_SRC_PATH ${rustPlatform.rustcSrc}
+ wrapProgram $out/bin/rls --set-default RUST_SRC_PATH ${rustPlatform.rustLibSrc}
'';
meta = with stdenv.lib; {
diff --git a/pkgs/development/interpreters/clojure/default.nix b/pkgs/development/interpreters/clojure/default.nix
index f12645ec2b62..06e18c96ac38 100644
--- a/pkgs/development/interpreters/clojure/default.nix
+++ b/pkgs/development/interpreters/clojure/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "clojure";
- version = "1.10.1.727";
+ version = "1.10.1.763";
src = fetchurl {
url = "https://download.clojure.org/install/clojure-tools-${version}.tar.gz";
- sha256 = "1mnxvy4n7g72vcwhvrgr0xqri3p9d9w76c8a78kphhmd8lq0m92q";
+ sha256 = "042d5bk59wv145fvjrk72g4hvaq7j2p4a2d1pg13b433qfkchgia";
};
nativeBuildInputs = [
@@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
offers a software transactional memory system and reactive Agent
system that ensure clean, correct, multithreaded designs.
'';
- maintainers = with maintainers; [ jlesquembre ];
+ maintainers = with maintainers; [ jlesquembre thiagokokada ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/development/interpreters/python/cpython/default.nix b/pkgs/development/interpreters/python/cpython/default.nix
index 2394e0e259e5..f18fe181a7b0 100644
--- a/pkgs/development/interpreters/python/cpython/default.nix
+++ b/pkgs/development/interpreters/python/cpython/default.nix
@@ -35,7 +35,7 @@
, rebuildBytecode ? true
, stripBytecode ? false
, includeSiteCustomize ? true
-, static ? false
+, static ? stdenv.hostPlatform.isStatic
# Not using optimizations on Darwin
# configure: error: llvm-profdata is required for a --enable-optimizations build but could not be found.
, enableOptimizations ? (!stdenv.isDarwin)
diff --git a/pkgs/development/libraries/aws-c-cal/default.nix b/pkgs/development/libraries/aws-c-cal/default.nix
new file mode 100644
index 000000000000..057aad447d5e
--- /dev/null
+++ b/pkgs/development/libraries/aws-c-cal/default.nix
@@ -0,0 +1,30 @@
+{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common, openssl, Security }:
+
+stdenv.mkDerivation rec {
+ pname = "aws-c-cal";
+ version = "0.4.5";
+
+ src = fetchFromGitHub {
+ owner = "awslabs";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "04acra1mnzw9q7jycs5966akfbgnx96hkrq90nq0dhw8pvarlyv6";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ buildInputs = [ aws-c-common openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
+
+ cmakeFlags = [
+ "-DBUILD_SHARED_LIBS=ON"
+ "-DCMAKE_MODULE_PATH=${aws-c-common}/lib/cmake"
+ ];
+
+ meta = with lib; {
+ description = "AWS Crypto Abstraction Layer ";
+ homepage = "https://github.com/awslabs/aws-c-cal";
+ license = licenses.asl20;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ orivej ];
+ };
+}
diff --git a/pkgs/development/libraries/aws-c-common/default.nix b/pkgs/development/libraries/aws-c-common/default.nix
index b028813558f5..5473867a6ad0 100644
--- a/pkgs/development/libraries/aws-c-common/default.nix
+++ b/pkgs/development/libraries/aws-c-common/default.nix
@@ -2,17 +2,21 @@
stdenv.mkDerivation rec {
pname = "aws-c-common";
- version = "0.3.11";
+ version = "0.4.63";
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
- sha256 = "0a7hi4crnc3j1j39qcnd44zqdfwzw1xghcf80marx5vdf1qdzy6p";
+ sha256 = "16bc6fn1gq3nqcrzgpi2kjphq7xkkr73aljakrg89ysm6hyzyim9";
};
nativeBuildInputs = [ cmake ];
+ cmakeFlags = [
+ "-DBUILD_SHARED_LIBS=ON"
+ ];
+
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin
"-Wno-nullability-extension -Wno-typedef-redefinition";
diff --git a/pkgs/development/libraries/aws-c-event-stream/default.nix b/pkgs/development/libraries/aws-c-event-stream/default.nix
index ca3203e3a6ab..4cfabc77bb2c 100644
--- a/pkgs/development/libraries/aws-c-event-stream/default.nix
+++ b/pkgs/development/libraries/aws-c-event-stream/default.nix
@@ -1,19 +1,20 @@
-{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common, aws-checksums, libexecinfo }:
+{ lib, stdenv, fetchFromGitHub, cmake, aws-c-cal, aws-c-common, aws-c-io, aws-checksums, s2n, libexecinfo }:
stdenv.mkDerivation rec {
pname = "aws-c-event-stream";
- version = "0.1.1";
+ version = "0.2.6";
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
- sha256 = "0anjynfghk3inysy21wqvhxha33xsswh3lm8pr7nx7cpj6cmr37m";
+ sha256 = "1hbri4dv924ph3cxkmwkl4kdca4dvhc9qda60rdzs6355l76k23n";
};
nativeBuildInputs = [ cmake ];
- buildInputs = [ aws-c-common aws-checksums ] ++ lib.optional stdenv.hostPlatform.isMusl libexecinfo;
+ buildInputs = [ aws-c-cal aws-c-common aws-c-io aws-checksums s2n ]
+ ++ lib.optional stdenv.hostPlatform.isMusl libexecinfo;
cmakeFlags = [
"-DBUILD_SHARED_LIBS:BOOL=ON"
diff --git a/pkgs/development/libraries/aws-c-io/default.nix b/pkgs/development/libraries/aws-c-io/default.nix
new file mode 100644
index 000000000000..eda87ba2c534
--- /dev/null
+++ b/pkgs/development/libraries/aws-c-io/default.nix
@@ -0,0 +1,32 @@
+{ lib, stdenv, fetchFromGitHub, cmake, aws-c-cal, aws-c-common, s2n }:
+
+stdenv.mkDerivation rec {
+ pname = "aws-c-io";
+ version = "0.7.0";
+
+ src = fetchFromGitHub {
+ owner = "awslabs";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0wagc1205r57llqd39wqjasq3bgc8h1mfdqk4r5lcrnn4jbpcill";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ buildInputs = [ aws-c-cal aws-c-common s2n ];
+
+ cmakeFlags = [
+ "-DBUILD_SHARED_LIBS=ON"
+ "-DCMAKE_MODULE_PATH=${aws-c-common}/lib/cmake"
+ ];
+
+ NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-Wno-error";
+
+ meta = with lib; {
+ description = "AWS SDK for C module for IO and TLS";
+ homepage = "https://github.com/awslabs/aws-c-io";
+ license = licenses.asl20;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ orivej ];
+ };
+}
diff --git a/pkgs/development/libraries/aws-checksums/default.nix b/pkgs/development/libraries/aws-checksums/default.nix
index d4ba15e52db4..bf50401a213e 100644
--- a/pkgs/development/libraries/aws-checksums/default.nix
+++ b/pkgs/development/libraries/aws-checksums/default.nix
@@ -1,19 +1,24 @@
-{ lib, stdenv, fetchFromGitHub, cmake }:
+{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common }:
stdenv.mkDerivation rec {
pname = "aws-checksums";
- version = "0.1.7";
+ version = "0.1.10";
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
- sha256 = "0am1hfzqir44zcx6y6c7jw74qvbsav8ppr9dahpdh3ac95cjf38a";
+ sha256 = "1f9scl5734pgjlsixspwljrrlndzhllwlfygdcr1gx5p0za08zjb";
};
nativeBuildInputs = [ cmake ];
- cmakeFlags = [ "-DBUILD_SHARED_LIBS:BOOL=ON" ];
+ buildInputs = [ aws-c-common ];
+
+ cmakeFlags = [
+ "-DBUILD_SHARED_LIBS=ON"
+ "-DCMAKE_MODULE_PATH=${aws-c-common}/lib/cmake"
+ ];
meta = with lib; {
description = "HW accelerated CRC32c and CRC32";
diff --git a/pkgs/development/libraries/aws-sdk-cpp/cmake-dirs.patch b/pkgs/development/libraries/aws-sdk-cpp/cmake-dirs.patch
index 6e4cad9e73cf..b2f12e77025c 100644
--- a/pkgs/development/libraries/aws-sdk-cpp/cmake-dirs.patch
+++ b/pkgs/development/libraries/aws-sdk-cpp/cmake-dirs.patch
@@ -1,15 +1,5 @@
-diff --git a/cmake/AWSSDKConfig.cmake b/cmake/AWSSDKConfig.cmake
-index e87252123e..5457bd5910 100644
--- a/cmake/AWSSDKConfig.cmake
+++ b/cmake/AWSSDKConfig.cmake
-@@ -82,6 +82,7 @@ if (AWSSDK_ROOT_DIR)
- )
- else()
- find_file(AWSSDK_CORE_HEADER_FILE Aws.h
-+ "/${AWSSDK_INSTALL_INCLUDEDIR}/aws/core"
- "/usr/${AWSSDK_INSTALL_INCLUDEDIR}/aws/core"
- "/usr/local/${AWSSDK_INSTALL_INCLUDEDIR}/aws/core"
- "C:/Progra~1/AWSSDK/${AWSSDK_INSTALL_INCLUDEDIR}/aws/core"
@@ -97,14 +98,18 @@ if (NOT AWSSDK_CORE_HEADER_FILE)
message(FATAL_ERROR "AWS SDK for C++ is missing, please install it first")
endif()
diff --git a/pkgs/development/libraries/aws-sdk-cpp/default.nix b/pkgs/development/libraries/aws-sdk-cpp/default.nix
index 94827743bf3d..fc3f7896dbee 100644
--- a/pkgs/development/libraries/aws-sdk-cpp/default.nix
+++ b/pkgs/development/libraries/aws-sdk-cpp/default.nix
@@ -1,5 +1,5 @@
-{ lib, stdenv, fetchFromGitHub, cmake, curl, openssl, zlib, fetchpatch
-, aws-c-common, aws-c-event-stream, aws-checksums
+{ lib, stdenv, fetchFromGitHub, cmake, curl, openssl, s2n, zlib
+, aws-c-cal, aws-c-common, aws-c-event-stream, aws-c-io, aws-checksums
, CoreAudio, AudioToolbox
, # Allow building a limited set of APIs, e.g. ["s3" "ec2"].
apis ? ["*"]
@@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "aws-sdk-cpp";
- version = "1.7.90";
+ version = "1.8.113";
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-sdk-cpp";
rev = version;
- sha256 = "0zpqi612qmm0n53crxiisv0vdif43ymg13kafy6vv43j2wmh66ga";
+ sha256 = "0y784cjrxgrin3ck5f2lk0riyy9kv928kcb9y0gzka65imgma48c";
};
# FIXME: might be nice to put different APIs in different outputs
@@ -25,8 +25,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake curl ];
buildInputs = [
- curl openssl zlib
- aws-c-common aws-c-event-stream aws-checksums
+ curl openssl s2n zlib
+ aws-c-cal aws-c-common aws-c-event-stream aws-c-io aws-checksums
] ++ lib.optionals (stdenv.isDarwin &&
((builtins.elem "text-to-speech" apis) ||
(builtins.elem "*" apis)))
@@ -59,10 +59,6 @@ stdenv.mkDerivation rec {
__darwinAllowLocalNetworking = true;
patches = [
- (fetchpatch {
- url = "https://github.com/aws/aws-sdk-cpp/commit/42991ab549087c81cb630e5d3d2413e8a9cf8a97.patch";
- sha256 = "0myq5cm3lvl5r56hg0sc0zyn1clbkd9ys0wr95ghw6bhwpvfv8gr";
- })
./cmake-dirs.patch
];
diff --git a/pkgs/development/libraries/cdo/default.nix b/pkgs/development/libraries/cdo/default.nix
index f582be81e86e..10e145b34ea2 100644
--- a/pkgs/development/libraries/cdo/default.nix
+++ b/pkgs/development/libraries/cdo/default.nix
@@ -1,7 +1,10 @@
{ stdenv, fetchurl, curl, hdf5, netcdf
-, enable_cdi_lib ? false # build, install and link to a CDI library [default=no]
-, enable_all_static ? false # build a completely statically linked CDO binary [default=no]
-, enable_cxx ? false # Use CXX as default compiler [default=no]
+, # build, install and link to a CDI library [default=no]
+ enable_cdi_lib ? false
+, # build a completely statically linked CDO binary
+ enable_all_static ? stdenv.hostPlatform.isStatic
+, # Use CXX as default compiler [default=no]
+ enable_cxx ? false
}:
stdenv.mkDerivation rec {
diff --git a/pkgs/development/libraries/crc32c/default.nix b/pkgs/development/libraries/crc32c/default.nix
index b9c12b1889c2..c10d218ea42c 100644
--- a/pkgs/development/libraries/crc32c/default.nix
+++ b/pkgs/development/libraries/crc32c/default.nix
@@ -1,5 +1,6 @@
{ stdenv, lib, fetchFromGitHub, cmake, gflags
-, staticOnly ? false }:
+, staticOnly ? stdenv.hostPlatform.isStatic
+}:
stdenv.mkDerivation rec {
pname = "crc32c";
diff --git a/pkgs/development/libraries/ffmpeg-full/default.nix b/pkgs/development/libraries/ffmpeg-full/default.nix
index a2f5e366e008..f428290e8039 100644
--- a/pkgs/development/libraries/ffmpeg-full/default.nix
+++ b/pkgs/development/libraries/ffmpeg-full/default.nix
@@ -111,6 +111,7 @@
, opensslExtlib ? false, openssl ? null
, libpulseaudio ? null # Pulseaudio input support
, rav1e ? null # AV1 encoder (focused on speed and safety)
+, svt-av1 ? null # AV1 encoder/decoder (focused on speed and correctness)
, rtmpdump ? null # RTMP[E] support
#, libquvi ? null # Quvi input support
, samba ? null # Samba protocol
@@ -250,6 +251,11 @@ stdenv.mkDerivation rec {
sha256 = "sha256-dqpmpDFETTuWHWolMoLaubU4BeDEuQaBNA0wmzL1f8o=";
name = "fix_libsrt.patch";
})
+ # Patch ffmpeg for svt-av1 until version 4.4
+ (fetchpatch {
+ url = "https://raw.githubusercontent.com/AOMediaCodec/SVT-AV1/v0.8.4/ffmpeg_plugin/0001-Add-ability-for-ffmpeg-to-run-svt-av1.patch";
+ sha256 = "1p4g8skr5gjw5h1648j7qrks81zx49lrnx9g0p81qgnrvxc2wwx0";
+ })
];
prePatch = ''
@@ -393,6 +399,7 @@ stdenv.mkDerivation rec {
(enableFeature (libpulseaudio != null) "libpulse")
#(enableFeature quvi "libquvi")
(enableFeature (rav1e != null) "librav1e")
+ (enableFeature (svt-av1 != null) "libsvtav1")
(enableFeature (rtmpdump != null) "librtmp")
#(enableFeature (schroedinger != null) "libschroedinger")
(enableFeature (SDL2 != null) "sdl2")
@@ -429,7 +436,7 @@ stdenv.mkDerivation rec {
bzip2 celt dav1d fontconfig freetype frei0r fribidi game-music-emu gnutls gsm
libjack2 ladspaH lame libaom libass libbluray libbs2b libcaca libdc1394 libmodplug libmysofa
libogg libopus librsvg libssh libtheora libvdpau libvorbis libvpx libwebp libX11
- libxcb libXv libXext lzma openal openjpeg libpulseaudio rav1e rtmpdump opencore-amr
+ libxcb libXv libXext lzma openal openjpeg libpulseaudio rav1e svt-av1 rtmpdump opencore-amr
samba SDL2 soxr speex srt vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore
zeromq4 zlib
] ++ optionals openglExtlib [ libGL libGLU ]
diff --git a/pkgs/development/libraries/flatbuffers/default.nix b/pkgs/development/libraries/flatbuffers/default.nix
index 6f19c15945cc..0b96a91e45fa 100644
--- a/pkgs/development/libraries/flatbuffers/default.nix
+++ b/pkgs/development/libraries/flatbuffers/default.nix
@@ -10,6 +10,21 @@ stdenv.mkDerivation rec {
rev = "v${version}";
sha256 = "0f7xd66vc1lzjbn7jzd5kyqrgxpsfxi4zc7iymhb5xrwyxipjl1g";
};
+ patches = [
+ (fetchpatch {
+ # Fixed a compilation error with GCC 10.0 to 11.0. June 1, 2020.
+ # Should be included in the next release after 1.12.0
+ url = "https://github.com/google/flatbuffers/commit/988164f6e1675bbea9c852e2d6001baf4d1fcf59.patch";
+ sha256 = "0d8c2bywqmkhdi0a41cry85wy4j58pl0vd6h5xpfqm3fr8w0mi9s";
+ excludes = [ "src/idl_gen_cpp.cpp" ];
+ })
+ (fetchpatch {
+ # Fixed a compilation error with GCC 10.0 to 11.0. July 6, 2020.
+ # Should be included in the next release after 1.12.0
+ url = "https://github.com/google/flatbuffers/pull/6020/commits/44c7a4cf439b0a298720b5a448bcc243a882b0c9.patch";
+ sha256 = "126xwkvnlc4ignjhxv9jygfd9j6kr1jx39hyk0ddpcmvzfqsccf4";
+ })
+ ];
preConfigure = stdenv.lib.optional stdenv.buildPlatform.isDarwin ''
rm BUILD
@@ -19,10 +34,12 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DFLATBUFFERS_BUILD_TESTS=${if doCheck then "ON" else "OFF"}" ];
- doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
+ # tests fail to compile
+ doCheck = false;
+ # doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
checkTarget = "test";
- meta = {
+ meta = with stdenv.lib; {
description = "Memory Efficient Serialization Library";
longDescription = ''
FlatBuffers is an efficient cross platform serialization library for
@@ -30,9 +47,9 @@ stdenv.mkDerivation rec {
access serialized data without unpacking/parsing it first, while still
having great forwards/backwards compatibility.
'';
- maintainers = [ stdenv.lib.maintainers.teh ];
- license = stdenv.lib.licenses.asl20;
- platforms = stdenv.lib.platforms.unix;
+ maintainers = [ maintainers.teh ];
+ license = licenses.asl20;
+ platforms = platforms.unix;
homepage = "https://google.github.io/flatbuffers/";
};
}
diff --git a/pkgs/development/libraries/gsm/default.nix b/pkgs/development/libraries/gsm/default.nix
index 30cffa89938d..7214aa6f6b9c 100644
--- a/pkgs/development/libraries/gsm/default.nix
+++ b/pkgs/development/libraries/gsm/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl
-, staticSupport ? false # Compile statically (support for packages that look for the static object)
+, # Compile statically (support for packages that look for the static object)
+ staticSupport ? stdenv.hostPlatform.isStatic
}:
let
diff --git a/pkgs/development/libraries/lensfun/default.nix b/pkgs/development/libraries/lensfun/default.nix
index 830facc56720..addcb5b5a4fa 100644
--- a/pkgs/development/libraries/lensfun/default.nix
+++ b/pkgs/development/libraries/lensfun/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
platforms = platforms.linux ++ platforms.darwin;
- maintainers = with maintainers; [ enzime ];
+ maintainers = with maintainers; [ ];
license = stdenv.lib.licenses.lgpl3;
description = "An opensource database of photographic lenses and their characteristics";
homepage = "http://lensfun.sourceforge.net/";
diff --git a/pkgs/development/libraries/libev/default.nix b/pkgs/development/libraries/libev/default.nix
index 1ea0615dc234..9f950ebb09c0 100644
--- a/pkgs/development/libraries/libev/default.nix
+++ b/pkgs/development/libraries/libev/default.nix
@@ -1,4 +1,7 @@
-{ stdenv, fetchurl, static ? false }:
+{ stdenv, fetchurl
+, # Note: -static hasn’t work on darwin
+ static ? with stdenv.hostPlatform; isStatic && !isDarwin
+}:
# Note: this package is used for bootstrapping fetchurl, and thus
# cannot use fetchpatch! All mutable patches (generated by GitHub or
diff --git a/pkgs/development/libraries/librealsense/default.nix b/pkgs/development/libraries/librealsense/default.nix
index 2ceb2125dbc9..9a2ea6d033e4 100644
--- a/pkgs/development/libraries/librealsense/default.nix
+++ b/pkgs/development/libraries/librealsense/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, config, lib, fetchFromGitHub, cmake, libusb1, ninja, pkgconfig, gcc
+{ stdenv, config, lib, fetchFromGitHub, cmake, libusb1, ninja, pkg-config, gcc
, cudaSupport ? config.cudaSupport or false, cudatoolkit
, enablePython ? false, pythonPackages ? null }:
@@ -7,7 +7,7 @@ assert enablePython -> pythonPackages != null;
stdenv.mkDerivation rec {
pname = "librealsense";
- version = "2.40.0";
+ version = "2.41.0";
outputs = [ "out" "dev" ];
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
owner = "IntelRealSense";
repo = pname;
rev = "v${version}";
- sha256 = "KZNriNDxRKR14KFJrAbzZLfSQ3iiZ8PKC80fVh0AQls=";
+ sha256 = "0ngv9fgja72vg7hq1aiwpa7x4dhniawhpd8mqm85pqkjxiph8s1k";
};
buildInputs = [
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
cmake
ninja
- pkgconfig
+ pkg-config
];
cmakeFlags = [
diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/default.nix
index fdd762fef072..d67342eebc11 100644
--- a/pkgs/development/libraries/libressl/default.nix
+++ b/pkgs/development/libraries/libressl/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, fetchurl, lib, cmake, cacert, fetchpatch, buildShared ? true }:
+{ stdenv, fetchurl, lib, cmake, cacert, fetchpatch
+, buildShared ? !stdenv.hostPlatform.isStatic
+}:
let
diff --git a/pkgs/development/libraries/libstrophe/default.nix b/pkgs/development/libraries/libstrophe/default.nix
index 428e23f33f51..0c7828c954f2 100644
--- a/pkgs/development/libraries/libstrophe/default.nix
+++ b/pkgs/development/libraries/libstrophe/default.nix
@@ -1,17 +1,26 @@
-{ stdenv, fetchFromGitHub, automake, autoconf, libtool, openssl, expat, pkgconfig, check }:
+{ stdenv
+, fetchFromGitHub
+, pkg-config
+, automake
+, autoconf
+, libtool
+, openssl
+, expat
+, check
+}:
stdenv.mkDerivation rec {
pname = "libstrophe";
- version = "0.10.0";
+ version = "0.10.1";
src = fetchFromGitHub {
owner = "strophe";
repo = pname;
rev = version;
- sha256 = "1hizw695fw0cy88h1dpl9pvniapml2zw9yvxck8xvxbqfz54jwja";
+ sha256 = "sha256-6byg7hE0DN/cbf9NHpK/2DhXZyuelYAp+SA7vVUgo4U=";
};
- nativeBuildInputs = [ automake autoconf pkgconfig libtool check ];
+ nativeBuildInputs = [ automake autoconf pkg-config libtool check ];
buildInputs = [ openssl expat ];
dontDisableStatic = true;
@@ -20,7 +29,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- meta = {
+ meta = with stdenv.lib; {
description = "A simple, lightweight C library for writing XMPP clients";
longDescription = ''
libstrophe is a lightweight XMPP client library written in C. It has
@@ -28,8 +37,8 @@ stdenv.mkDerivation rec {
runs well on both Linux, Unix, and Windows based platforms.
'';
homepage = "https://strophe.im/libstrophe/";
- license = with stdenv.lib.licenses; [ gpl3 mit ];
- platforms = stdenv.lib.platforms.unix;
- maintainers = with stdenv.lib.maintainers; [ devhell flosse ];
+ license = with licenses; [ gpl3 mit ];
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ devhell flosse ];
};
}
diff --git a/pkgs/development/libraries/libsurvive/default.nix b/pkgs/development/libraries/libsurvive/default.nix
new file mode 100644
index 000000000000..7f326112b2ff
--- /dev/null
+++ b/pkgs/development/libraries/libsurvive/default.nix
@@ -0,0 +1,40 @@
+{ stdenv
+, fetchFromGitHub
+, cmake
+, pkg-config
+, freeglut
+, liblapack
+, libusb1
+, openblas
+, zlib
+}:
+
+stdenv.mkDerivation rec {
+ pname = "libsurvive";
+ version = "0.3";
+
+ src = fetchFromGitHub {
+ owner = "cntools";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0m21fnq8pfw2pcvqfgjws531zmalda423q9i65v4qzm8sdb54hl4";
+ };
+
+ nativeBuildInputs = [ cmake pkg-config ];
+
+ buildInputs = [
+ freeglut
+ liblapack
+ libusb1
+ openblas
+ zlib
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Open Source Lighthouse Tracking System";
+ homepage = "https://github.com/cntools/libsurvive";
+ license = licenses.mit;
+ maintainers = with maintainers; [ prusnak ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/libraries/libuvc/default.nix b/pkgs/development/libraries/libuvc/default.nix
new file mode 100644
index 000000000000..e2956a99432d
--- /dev/null
+++ b/pkgs/development/libraries/libuvc/default.nix
@@ -0,0 +1,30 @@
+{ stdenv
+, fetchFromGitHub
+, cmake
+, pkg-config
+, libusb1
+}:
+
+stdenv.mkDerivation rec {
+ pname = "libuvc";
+ version = "unstable-2020-11-29";
+
+ src = fetchFromGitHub {
+ owner = pname;
+ repo = pname;
+ rev = "5cddef71b17d41f7e98875a840c50d9704c3d2b2";
+ sha256 = "0kranb0x1k5qad8rwxnn1w9963sbfj2cfzdgpfmlivb04544m2j7";
+ };
+
+ nativeBuildInputs = [ cmake pkg-config ];
+
+ buildInputs = [ libusb1 ];
+
+ meta = with stdenv.lib; {
+ homepage = "https://ken.tossell.net/libuvc/";
+ description = "Cross-platform library for USB video devices";
+ platforms = platforms.linux;
+ license = licenses.lgpl21Plus;
+ maintainers = with maintainers; [ prusnak ];
+ };
+}
diff --git a/pkgs/development/libraries/libvmaf/default.nix b/pkgs/development/libraries/libvmaf/default.nix
index 9f7e84558f7d..293cb21bb5d6 100644
--- a/pkgs/development/libraries/libvmaf/default.nix
+++ b/pkgs/development/libraries/libvmaf/default.nix
@@ -2,24 +2,28 @@
stdenv.mkDerivation rec {
pname = "libvmaf";
- version = "1.5.3";
+ version = "2.1.0";
src = fetchFromGitHub {
owner = "netflix";
repo = "vmaf";
rev = "v${version}";
- sha256 = "0x3l3g0hgrrjh3ygmxr1pd3rd5589s07c7id35nvj76ch5b7gy63";
+ sha256 = "0gh4zwz975x9kvqdmzs45f96rk99apay57jc68rc8c2xm7gfis58";
};
sourceRoot = "source/libvmaf";
nativeBuildInputs = [ meson ninja nasm ];
+
+ mesonFlags = [ "-Denable_avx512=true" ];
+
outputs = [ "out" "dev" ];
- doCheck = true;
+ doCheck = false;
meta = with stdenv.lib; {
homepage = "https://github.com/Netflix/vmaf";
description = "Perceptual video quality assessment based on multi-method fusion (VMAF)";
+ changelog = "https://github.com/Netflix/vmaf/blob/v${version}/CHANGELOG.md";
platforms = platforms.unix;
license = licenses.bsd2Patent;
maintainers = [ maintainers.cfsmp3 maintainers.marsam ];
diff --git a/pkgs/development/libraries/mp4v2/default.nix b/pkgs/development/libraries/mp4v2/default.nix
index 3a036fcf6fbf..3b8efadcfd19 100644
--- a/pkgs/development/libraries/mp4v2/default.nix
+++ b/pkgs/development/libraries/mp4v2/default.nix
@@ -19,6 +19,9 @@ stdenv.mkDerivation rec {
url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/libmp4v2-c++11.patch?id=203f5a72bc97ffe089b424c47b07dd9eaea35713";
sha256 = "0sbn0il7lmk77yrjyb4f0a3z3h8gsmdkscvz5n9hmrrrhrwf672w";
})
+ ] ++ stdenv.lib.optionals stdenv.cc.isClang [
+ # unbreak build with Clang≥6 (C++14 by default). Based on https://reviews.freebsd.org/rP458678
+ ./fix-build-clang.patch
];
NIX_CFLAGS_COMPILE = [ "-Wno-error=narrowing" ];
diff --git a/pkgs/development/libraries/mp4v2/fix-build-clang.patch b/pkgs/development/libraries/mp4v2/fix-build-clang.patch
new file mode 100644
index 000000000000..5d99f1951f7a
--- /dev/null
+++ b/pkgs/development/libraries/mp4v2/fix-build-clang.patch
@@ -0,0 +1,13 @@
+diff --git a/src/mp4.cpp b/src/mp4.cpp
+index c2a7238..9bb3e38 100644
+--- a/src/mp4.cpp
++++ b/src/mp4.cpp
+@@ -870,7 +870,7 @@ MP4FileHandle MP4ReadProvider( const char* fileName, const MP4FileProvider* file
+ }
+
+ catch (...) {
+- return MP4_INVALID_TRACK_ID;
++ return NULL;
+ }
+ }
+
diff --git a/pkgs/development/libraries/nghttp2/default.nix b/pkgs/development/libraries/nghttp2/default.nix
index c9ccf63f8895..7bcdf8feb302 100644
--- a/pkgs/development/libraries/nghttp2/default.nix
+++ b/pkgs/development/libraries/nghttp2/default.nix
@@ -8,7 +8,7 @@
, enableAsioLib ? false, boost ? null
, enableGetAssets ? false, libxml2 ? null
, enableJemalloc ? false, jemalloc ? null
-, enableApp ? !stdenv.hostPlatform.isWindows
+, enableApp ? with stdenv.hostPlatform; !isWindows && !isStatic
, enablePython ? false, python ? null, cython ? null, ncurses ? null, setuptools ? null
}:
diff --git a/pkgs/development/libraries/ngt/default.nix b/pkgs/development/libraries/ngt/default.nix
index beedfe521dff..7d766eb5d879 100644
--- a/pkgs/development/libraries/ngt/default.nix
+++ b/pkgs/development/libraries/ngt/default.nix
@@ -1,8 +1,13 @@
-{ stdenv, fetchFromGitHub, cmake, llvmPackages, enableAVX ? false }:
+{ stdenv
+, fetchFromGitHub
+, cmake
+, llvmPackages
+, enableAVX ? stdenv.hostPlatform.avxSupport
+}:
+
stdenv.mkDerivation rec {
pname = "NGT";
version = "v1.12.3-alpha";
- nativeBuildInputs = [ cmake ];
src = fetchFromGitHub {
owner = "yahoojapan";
@@ -11,8 +16,10 @@ stdenv.mkDerivation rec {
sha256 = "sha256-nu0MJNpaenOB4+evoSVLKmPIuZXVj1Rm9x53+TfhezY=";
};
+ nativeBuildInputs = [ cmake ];
buildInputs = [ llvmPackages.openmp ];
- NIX_ENFORCE_NO_NATIVE=! enableAVX;
+
+ NIX_ENFORCE_NO_NATIVE = ! enableAVX;
__AVX2__ = if enableAVX then 1 else 0;
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/openhmd/default.nix b/pkgs/development/libraries/openhmd/default.nix
index 66656a142342..ab1b9b7b1ddc 100644
--- a/pkgs/development/libraries/openhmd/default.nix
+++ b/pkgs/development/libraries/openhmd/default.nix
@@ -1,45 +1,52 @@
-{ lib, stdenv, fetchFromGitHub, pkgconfig, cmake, hidapi
-, withExamples ? true, SDL2 ? null, libGL ? null, glew ? null
+{ stdenv
+, fetchFromGitHub
+, cmake
+, pkg-config
+, hidapi
+, SDL2
+, libGL
+, glew
+, withExamples ? true
}:
-with lib;
+let examplesOnOff = if withExamples then "ON" else "OFF"; in
-let onoff = if withExamples then "ON" else "OFF"; in
-
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "openhmd";
- version = "0.3.0-rc1-20181218";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "OpenHMD";
repo = "OpenHMD";
- rev = "80d51bea575a5bf71bb3a0b9683b80ac3146596a";
- sha256 = "09011vnlsn238r5vbb1ab57x888ljaa34xibrnfbm5bl9417ii4z";
+ rev = version;
+ sha256 = "1hkpdl4zgycag5k8njvqpx01apxmm8m8pvhlsxgxpqiqy9a38ccg";
};
- nativeBuildInputs = [ pkgconfig cmake ];
+ nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
hidapi
- ] ++ optionals withExamples [
- SDL2 libGL glew
+ ] ++ stdenv.lib.optionals withExamples [
+ SDL2
+ glew
+ libGL
];
cmakeFlags = [
"-DBUILD_BOTH_STATIC_SHARED_LIBS=ON"
- "-DOPENHMD_EXAMPLE_SIMPLE=${onoff}"
- "-DOPENHMD_EXAMPLE_SDL=${onoff}"
+ "-DOPENHMD_EXAMPLE_SIMPLE=${examplesOnOff}"
+ "-DOPENHMD_EXAMPLE_SDL=${examplesOnOff}"
"-DOpenGL_GL_PREFERENCE=GLVND"
];
- postInstall = optionalString withExamples ''
+ postInstall = stdenv.lib.optionalString withExamples ''
mkdir -p $out/bin
install -D examples/simple/simple $out/bin/openhmd-example-simple
install -D examples/opengl/openglexample $out/bin/openhmd-example-opengl
'';
- meta = {
- homepage = "http://www.openhmd.net";
+ meta = with stdenv.lib; {
+ homepage = "http://www.openhmd.net"; # https does not work
description = "Library API and drivers immersive technology";
longDescription = ''
OpenHMD is a very simple FLOSS C library and a set of drivers
@@ -48,7 +55,7 @@ stdenv.mkDerivation {
Oculus Rift, HTC Vive, Windows Mixed Reality, and etc.
'';
license = licenses.boost;
- maintainers = [ maintainers.oxij ];
+ maintainers = with maintainers; [ oxij ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/qt-5/5.14/default.nix b/pkgs/development/libraries/qt-5/5.14/default.nix
index 3eefd23fde73..926510293b5d 100644
--- a/pkgs/development/libraries/qt-5/5.14/default.nix
+++ b/pkgs/development/libraries/qt-5/5.14/default.nix
@@ -87,6 +87,22 @@ let
stripLen = 1;
extraPrefix = "src/3rdparty/";
})
+ # Fix build with GCC 10 (part 1): https://code.qt.io/cgit/qt/qtwebengine-chromium.git/commit/?id=fad3e27b
+ (fetchpatch {
+ name = "qtwebengine-gcc10-part1.patch";
+ url = "https://code.qt.io/cgit/qt/qtwebengine-chromium.git/patch/?id=fad3e27bfb50d1e23a07577f087a826b5e00bb1d";
+ sha256 = "0c55j9zww8jyif6wl7jy1qqidgw9fdhiyfjgzhzi85r716m4pwwd";
+ stripLen = 1;
+ extraPrefix = "src/3rdparty/";
+ })
+ # Fix build with GCC 10 (part 2): https://code.qt.io/cgit/qt/qtwebengine-chromium.git/commit/?id=193c5bed
+ (fetchpatch {
+ name = "qtwebengine-gcc10-part2.patch";
+ url = "https://code.qt.io/cgit/qt/qtwebengine-chromium.git/patch/?id=193c5bed1cff123e21b7e6d12f464d6709ace2e3";
+ sha256 = "1jb6s32ara6l4rbn4h3gg95mzv8sd8dl1zpjaqwywf1w7p8ymk86";
+ stripLen = 1;
+ extraPrefix = "src/3rdparty/";
+ })
]
++ optional stdenv.isDarwin ./qtwebengine-darwin-no-platform-check.patch;
qtwebkit = [
diff --git a/pkgs/development/libraries/rubberband/default.nix b/pkgs/development/libraries/rubberband/default.nix
index 54bb57e2e662..ee9bcea5e52b 100644
--- a/pkgs/development/libraries/rubberband/default.nix
+++ b/pkgs/development/libraries/rubberband/default.nix
@@ -1,27 +1,18 @@
-{ stdenv, fetchurl, fetchpatch, pkgconfig, libsamplerate, libsndfile, fftw
+{ stdenv, fetchurl, pkgconfig, libsamplerate, libsndfile, fftw
, vamp-plugin-sdk, ladspaH }:
stdenv.mkDerivation rec {
pname = "rubberband";
- version = "1.8.2";
+ version = "1.9.0";
src = fetchurl {
url = "https://breakfastquay.com/files/releases/${pname}-${version}.tar.bz2";
- sha256 = "1jn3ys16g4rz8j3yyj5np589lly0zhs3dr9asd0l9dhmf5mx1gl6";
+ sha256 = "4f5b9509364ea876b4052fc390c079a3ad4ab63a2683aad09662fb905c2dc026";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libsamplerate libsndfile fftw vamp-plugin-sdk ladspaH ];
- # https://github.com/breakfastquay/rubberband/issues/17
- # In master, but there hasn't been an official release
- patches = [
- (fetchpatch {
- url = "https://github.com/breakfastquay/rubberband/commit/419a9bcf7066473b0d31e9a8a81fe0b2a8e41fed.patch";
- sha256 = "0drkfb2ahi31g4w1cawgsjjz26wszgg52yn3ih5l2ql1g25dqqn9";
- })
- ];
-
meta = with stdenv.lib; {
description = "High quality software library for audio time-stretching and pitch-shifting";
homepage = "https://breakfastquay.com/rubberband/";
diff --git a/pkgs/development/libraries/s2n/default.nix b/pkgs/development/libraries/s2n/default.nix
new file mode 100644
index 000000000000..3ec66ebf52d1
--- /dev/null
+++ b/pkgs/development/libraries/s2n/default.nix
@@ -0,0 +1,29 @@
+{ lib, stdenv, fetchFromGitHub, cmake, openssl }:
+
+stdenv.mkDerivation rec {
+ pname = "s2n";
+ version = "0.10.23";
+
+ src = fetchFromGitHub {
+ owner = "awslabs";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "063wqpszhfcbxm7a7s6d6kinqd6b6dxij85lk9jjkrslg5fgqbki";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ propagatedBuildInputs = [ openssl ]; # s2n-config has find_dependency(LibCrypto).
+
+ cmakeFlags = [
+ "-DBUILD_SHARED_LIBS=ON"
+ ];
+
+ meta = with lib; {
+ description = "C99 implementation of the TLS/SSL protocols";
+ homepage = "https://github.com/awslabs/s2n";
+ license = licenses.asl20;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ orivej ];
+ };
+}
diff --git a/pkgs/development/libraries/snappy/default.nix b/pkgs/development/libraries/snappy/default.nix
index e626db8efb78..0880df7ef2f0 100644
--- a/pkgs/development/libraries/snappy/default.nix
+++ b/pkgs/development/libraries/snappy/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, fetchFromGitHub, cmake, static ? false }:
+{ stdenv, fetchFromGitHub, cmake
+, static ? stdenv.hostPlatform.isStatic
+}:
stdenv.mkDerivation rec {
pname = "snappy";
diff --git a/pkgs/development/libraries/sundials/default.nix b/pkgs/development/libraries/sundials/default.nix
index 2e1fd527e9a7..a17b300d6be5 100644
--- a/pkgs/development/libraries/sundials/default.nix
+++ b/pkgs/development/libraries/sundials/default.nix
@@ -1,6 +1,7 @@
{ stdenv
, cmake
, fetchurl
+, fetchpatch
, python
, blas
, lapack
@@ -12,7 +13,25 @@
stdenv.mkDerivation rec {
pname = "sundials";
- version = "5.3.0";
+ version = "5.6.1";
+
+ outputs = [ "out" "examples" ];
+
+ src = fetchurl {
+ url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
+ sha256 = "Frd5mex+fyFXqh0Eyh3kojccqBUOBW0klR0MWJZvKoM=";
+ };
+
+ patches = [
+ # Fixing an upstream regression in treating cmake prefix directories:
+ # https://github.com/LLNL/sundials/pull/58
+ (fetchpatch {
+ url = "https://github.com/LLNL/sundials/commit/dd32ff9baa05618f36e44aadb420bbae4236ea1e.patch";
+ sha256 = "kToAuma+2iHFyL1v/l29F3+nug4AdK5cPG6IcXv2afc=";
+ })
+ ];
+
+ nativeBuildInputs = [ cmake ];
buildInputs = [
python
@@ -31,36 +50,24 @@ stdenv.mkDerivation rec {
suitesparse
];
- nativeBuildInputs = [ cmake ];
-
- src = fetchurl {
- url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
- sha256 = "19xwi7pz35s2nqgldm6r0jl2k0bs36zhbpnmmzc56s1n3bhzgpw8";
- };
-
- patches = [
- (fetchurl {
- # https://github.com/LLNL/sundials/pull/19
- url = "https://github.com/LLNL/sundials/commit/1350421eab6c5ab479de5eccf6af2dcad1eddf30.patch";
- sha256 = "0g67lixp9m85fqpb9rzz1hl1z8ibdg0ldwq5z6flj5zl8a7cw52l";
- })
- ];
-
cmakeFlags = [
- "-DEXAMPLES_INSTALL_PATH=${placeholder "out"}/share/examples"
+ "-DEXAMPLES_INSTALL_PATH=${placeholder "examples"}/share/examples"
] ++ stdenv.lib.optionals (lapackSupport) [
- "-DLAPACK_ENABLE=ON"
+ "-DENABLE_LAPACK=ON"
"-DLAPACK_LIBRARIES=${lapack}/lib/liblapack${stdenv.hostPlatform.extensions.sharedLibrary}"
] ++ stdenv.lib.optionals (kluSupport) [
- "-DKLU_ENABLE=ON"
+ "-DENABLE_KLU=ON"
"-DKLU_INCLUDE_DIR=${suitesparse.dev}/include"
"-DKLU_LIBRARY_DIR=${suitesparse}/lib"
- ] ++ stdenv.lib.optionals (lapackSupport && !lapack.isILP64) [
- # Use the correct index type according to lapack which is supposed to be
- # the same index type compatible with blas, thanks to the assertion of
- # buildInputs
- "-DSUNDIALS_INDEX_TYPE=int32_t"
- ]
+ ] ++ [(
+ # Use the correct index type according to lapack and blas used. They are
+ # already supposed to be compatible but we check both for extra safety. 64
+ # should be the default but we prefer to be explicit, for extra safety.
+ if blas.isILP64 then
+ "-DSUNDIALS_INDEX_SIZE=64"
+ else
+ "-DSUNDIALS_INDEX_SIZE=32"
+ )]
;
doCheck = true;
diff --git a/pkgs/development/misc/resholve/README.md b/pkgs/development/misc/resholve/README.md
new file mode 100644
index 000000000000..ddba7fc14934
--- /dev/null
+++ b/pkgs/development/misc/resholve/README.md
@@ -0,0 +1,138 @@
+# Using resholve's Nix API
+
+resholve converts bare executable references in shell scripts to absolute
+paths. This will hopefully make its way into the Nixpkgs manual soon, but
+until then I'll outline how to use the `resholvePackage` function.
+
+> Fair warning: resholve does *not* aspire to resolving all valid Shell
+> scripts. It depends on the OSH/Oil parser, which aims to support most (but
+> not all) Bash, and aims to be a ~90% sort of solution.
+
+Let's start with a simple example from one of my own projects:
+
+```nix
+{ stdenv, lib, resholvePackage, fetchFromGitHub, bashup-events44, bashInteractive_5, doCheck ? true, shellcheck }:
+
+resholvePackage rec {
+ pname = "shellswain";
+ version = "unreleased";
+
+ src = fetchFromGitHub {
+ # ...
+ };
+
+ solutions = {
+ profile = {
+ # the only *required* arguments
+ scripts = [ "bin/shellswain.bash" ];
+ interpreter = "none";
+ inputs = [ bashup-events44 ];
+ };
+ };
+
+ makeFlags = [ "prefix=${placeholder "out"}" ];
+
+ inherit doCheck;
+ checkInputs = [ shellcheck ];
+
+ # ...
+}
+```
+
+I'll focus on the `solutions` attribute, since this is the only part
+that differs from other derivations.
+
+Each "solution" (k=v pair)
+describes one resholve invocation. For most shell packages, one
+invocation will probably be enough. resholve will make you be very
+explicit about your script's dependencies, and it may also need your
+help sorting out some references or problems that it can't safely
+handle on its own.
+
+If you have more than one script, and your scripts need conflicting
+directives, you can specify more than one solution to resolve the
+scripts separately, but still produce a single package.
+
+Let's take a closer look:
+
+```nix
+ solutions = {
+ # each solution has a short name; this is what you'd use to
+ # override the settings of this solution, and it may also show up
+ # in (some) error messages.
+ profile = {
+ # specify one or more $out-relative script paths (unlike many
+ # builders, resholve will modify the output files during fixup
+ # to correctly resolve scripts that source within the package)
+ scripts = [ "bin/shellswain.bash" ];
+ # "none" for no shebang, "${bash}/bin/bash" for bash, etc.
+ interpreter = "none";
+ # packages resholve should resolve executables from
+ inputs = [ bashup-events44 ];
+ };
+ };
+```
+
+resholve has a (growing) number of options for handling more complex
+scripts. I won't cover these in excruciating detail here. You can find
+more information about these in `man resholve` via `nixpkgs.resholve`.
+
+Instead, we'll look at the general form of the solutions attrset:
+
+```nix
+solutions = {
+ shortname = {
+ # required
+ # $out-relative paths to try resolving
+ scripts = [ "bin/shunit2" ];
+ # packages to resolve executables from
+ inputs = [ coreutils gnused gnugrep findutils ];
+ # path for shebang, or 'none' to omit shebang
+ interpreter = "${bash}/bin/bash";
+
+ # optional
+ fake = { fake directives };
+ fix = { fix directives };
+ keep = { keep directives };
+ # file to inject before first code-line of script
+ prologue = file;
+ # file to inject after last code-line of script
+ epilogue = file;
+ # extra command-line flags passed to resholve; generally this API
+ # should align with what resholve supports, but flags may help if
+ # you need to override the version of resholve.
+ flags = [ ];
+ };
+};
+```
+
+The main way you'll adjust how resholve handles your scripts are the
+fake, fix, and keep directives. The manpage covers their purpose and
+how to format them on the command-line, so I'll focus on how you'll
+need to translate them into Nix types.
+
+```nix
+# --fake 'f:setUp;tearDown builtin:setopt source:/etc/bashrc'
+fake = {
+ function = [ "setUp" "tearDown" ];
+ builtin = [ "setopt" ];
+ source = [ "/etc/bashrc" ];
+};
+
+# --fix 'aliases xargs:ls $GIT:gix'
+fix = {
+ # all single-word directives use `true` as value
+ aliases = true;
+ xargs = [ "ls" ];
+ "$GIT" = [ "gix" ];
+};
+
+# --keep 'which:git;ls .:$HOME $LS:exa /etc/bashrc ~/.bashrc'
+keep = {
+ which = [ "git" "ls" ];
+ "." = [ "$HOME" ];
+ "$LS" = [ "exa" ];
+ "/etc/bashrc" = true;
+ "~/.bashrc" = true;
+};
+```
diff --git a/pkgs/development/misc/resholve/default.nix b/pkgs/development/misc/resholve/default.nix
new file mode 100644
index 000000000000..7b5a79dd221a
--- /dev/null
+++ b/pkgs/development/misc/resholve/default.nix
@@ -0,0 +1,9 @@
+{ callPackage
+, doCheck ? true
+}:
+
+rec {
+ resholve = callPackage ./resholve.nix { inherit doCheck; };
+ resholvePackage =
+ callPackage ./resholve-package.nix { inherit resholve; };
+}
diff --git a/pkgs/development/misc/resholve/deps.nix b/pkgs/development/misc/resholve/deps.nix
new file mode 100644
index 000000000000..9be283e49335
--- /dev/null
+++ b/pkgs/development/misc/resholve/deps.nix
@@ -0,0 +1,120 @@
+{ stdenv
+, python27Packages
+, fetchFromGitHub
+, makeWrapper
+, # re2c deps
+ autoreconfHook
+, # py-yajl deps
+ git
+, # oil deps
+ readline
+, cmark
+, file
+, glibcLocales
+, oilPatches ? [ ]
+}:
+
+/*
+Notes on specific dependencies:
+- if/when python2.7 is removed from nixpkgs, this may need to figure
+ out how to build oil's vendored python2
+- I'm not sure if glibcLocales is worth the addition here. It's to fix
+ a libc test oil runs. My oil fork just disabled the libc tests, but
+ I haven't quite decided if that's the right long-term call, so I
+ didn't add a patch for it here yet.
+*/
+
+rec {
+ # had to add this as well; 1.3 causes a break here; sticking
+ # to oil's official 1.0.3 dep for now.
+ re2c = stdenv.mkDerivation rec {
+ pname = "re2c";
+ version = "1.0.3";
+ sourceRoot = "${src.name}/re2c";
+ src = fetchFromGitHub {
+ owner = "skvadrik";
+ repo = "re2c";
+ rev = version;
+ sha256 = "0grx7nl9fwcn880v5ssjljhcb9c5p2a6xpwil7zxpmv0rwnr3yqi";
+ };
+ nativeBuildInputs = [ autoreconfHook ];
+ preCheck = ''
+ patchShebangs run_tests.sh
+ '';
+ };
+
+ py-yajl = python27Packages.buildPythonPackage rec {
+ pname = "oil-pyyajl-unstable";
+ version = "2019-12-05";
+ src = fetchFromGitHub {
+ owner = "oilshell";
+ repo = "py-yajl";
+ rev = "eb561e9aea6e88095d66abcc3990f2ee1f5339df";
+ sha256 = "17hcgb7r7cy8r1pwbdh8di0nvykdswlqj73c85k6z8m0filj3hbh";
+ fetchSubmodules = true;
+ };
+ # just for submodule IIRC
+ nativeBuildInputs = [ git ];
+ };
+
+ # resholve's primary dependency is this developer build of the oil shell.
+ oildev = python27Packages.buildPythonPackage rec {
+ pname = "oildev-unstable";
+ version = "2020-03-31";
+
+ src = fetchFromGitHub {
+ owner = "oilshell";
+ repo = "oil";
+ rev = "ea80cdad7ae1152a25bd2a30b87fe3c2ad32394a";
+ sha256 = "0pxn0f8qbdman4gppx93zwml7s5byqfw560n079v68qjgzh2brq2";
+
+ /*
+ It's not critical to drop most of these; the primary target is
+ the vendored fork of Python-2.7.13, which is ~ 55M and over 3200
+ files, dozens of which get interpreter script patches in fixup.
+ */
+ extraPostFetch = ''
+ rm -rf Python-2.7.13 benchmarks metrics py-yajl rfc gold web testdata services demo devtools cpp
+ '';
+ };
+
+ # TODO: not sure why I'm having to set this for nix-build...
+ # can anyone tell if I'm doing something wrong?
+ SOURCE_DATE_EPOCH = 315532800;
+
+ # These aren't, strictly speaking, nix/nixpkgs specific, but I've
+ # had hell upstreaming them. Pulling from resholve source and
+ # passing in from resholve.nix
+ patches = oilPatches;
+
+ buildInputs = [ readline cmark py-yajl ];
+
+ nativeBuildInputs = [ re2c file makeWrapper ];
+
+ propagatedBuildInputs = with python27Packages; [ six typing ];
+
+ doCheck = true;
+
+ preBuild = ''
+ build/dev.sh all
+ '';
+
+ postPatch = ''
+ patchShebangs asdl build core doctools frontend native oil_lang
+ '';
+
+ _NIX_SHELL_LIBCMARK = "${cmark}/lib/libcmark${stdenv.hostPlatform.extensions.sharedLibrary}";
+
+ # See earlier note on glibcLocales
+ LOCALE_ARCHIVE = stdenv.lib.optionalString (stdenv.buildPlatform.libc == "glibc") "${glibcLocales}/lib/locale/locale-archive";
+
+ meta = {
+ description = "A new unix shell";
+ homepage = "https://www.oilshell.org/";
+ license = with stdenv.lib.licenses; [
+ psfl # Includes a portion of the python interpreter and standard library
+ asl20 # Licence for Oil itself
+ ];
+ };
+ };
+}
diff --git a/pkgs/development/misc/resholve/resholve-package.nix b/pkgs/development/misc/resholve/resholve-package.nix
new file mode 100644
index 000000000000..cc971196a4f8
--- /dev/null
+++ b/pkgs/development/misc/resholve/resholve-package.nix
@@ -0,0 +1,97 @@
+{ stdenv, lib, resholve }:
+
+{ pname
+, src
+, version
+, passthru ? { }
+, solutions
+, ...
+}@attrs:
+let
+ inherit stdenv;
+ /* These functions break up the work of partially validating the
+ * 'solutions' attrset and massaging it into env/cli args.
+ *
+ * Note: some of the left-most args do not *have* to be passed as
+ * deep as they are, but I've done so to provide more error context
+ */
+
+ # for brevity / line length
+ spaces = l: builtins.concatStringsSep " " l;
+ semicolons = l: builtins.concatStringsSep ";" l;
+
+ /* Throw a fit with dotted attr path context */
+ nope = path: msg:
+ throw "${builtins.concatStringsSep "." path}: ${msg}";
+
+ /* Special-case directive value representations by type */
+ makeDirective = solution: env: name: val:
+ if builtins.isInt val then builtins.toString val
+ else if builtins.isString val then name
+ else if true == val then name
+ else if false == val then "" # omit!
+ else if null == val then "" # omit!
+ else if builtins.isList val then "${name}:${semicolons val}"
+ else nope [ solution env name ] "unexpected type: ${builtins.typeOf val}";
+
+ /* Build fake/fix/keep directives from Nix types */
+ makeDirectives = solution: env: val:
+ lib.mapAttrsToList (makeDirective solution env) val;
+
+ /* Special-case value representation by type/name */
+ makeEnvVal = solution: env: val:
+ if env == "inputs" then lib.makeBinPath val
+ else if builtins.isString val then val
+ else if builtins.isList val then spaces val
+ else if builtins.isAttrs val then spaces (makeDirectives solution env val)
+ else nope [ solution env ] "unexpected type: ${builtins.typeOf val}";
+
+ /* Shell-format each env value */
+ shellEnv = solution: env: value:
+ lib.escapeShellArg (makeEnvVal solution env value);
+
+ /* Build a single ENV=val pair */
+ makeEnv = solution: env: value:
+ "RESHOLVE_${lib.toUpper env}=${shellEnv solution env value}";
+
+ /* Discard attrs claimed by makeArgs */
+ removeCliArgs = value:
+ removeAttrs value [ "scripts" "flags" ];
+
+ /* Verify required arguments are present */
+ validateSolution = { scripts, inputs, interpreter, ... }: true;
+
+ /* Pull out specific solution keys to build ENV=val pairs */
+ makeEnvs = solution: value:
+ spaces (lib.mapAttrsToList (makeEnv solution) (removeCliArgs value));
+
+ /* Pull out specific solution keys to build CLI argstring */
+ makeArgs = { flags ? [ ], scripts, ... }:
+ spaces (flags ++ scripts);
+
+ /* Build a single resholve invocation */
+ makeInvocation = solution: value:
+ if validateSolution value then
+ "${makeEnvs solution value} resholve --overwrite ${makeArgs value}"
+ else throw "invalid solution"; # shouldn't trigger for now
+
+ /* Build resholve invocation for each solution. */
+ makeCommands = solutions:
+ lib.mapAttrsToList makeInvocation solutions;
+
+ self = (stdenv.mkDerivation ((removeAttrs attrs [ "solutions" ])
+ // {
+ inherit pname version src;
+ buildInputs = [ resholve ];
+
+ # enable below for verbose debug info if needed
+ # supports default python.logging levels
+ # LOGLEVEL="INFO";
+ preFixup = ''
+ pushd "$out"
+ ${builtins.concatStringsSep "\n" (makeCommands solutions)}
+ popd
+ '';
+ }));
+in
+lib.extendDerivation true passthru self
diff --git a/pkgs/development/misc/resholve/resholve.nix b/pkgs/development/misc/resholve/resholve.nix
new file mode 100644
index 000000000000..2d1880f704cf
--- /dev/null
+++ b/pkgs/development/misc/resholve/resholve.nix
@@ -0,0 +1,74 @@
+{ stdenv
+, callPackage
+, python27Packages
+, installShellFiles
+, fetchFromGitHub
+, file
+, findutils
+, gettext
+, bats
+, bash
+, doCheck ? true
+}:
+let
+ version = "0.4.0";
+ rSrc = fetchFromGitHub {
+ owner = "abathur";
+ repo = "resholve";
+ rev = "v${version}";
+ hash = "sha256-wfxcX3wMZqoi5bWjXYRa21UDDJmTDfE+21p4mL2IJog=";
+ };
+ deps = callPackage ./deps.nix {
+ /*
+ resholve needs to patch Oil, but trying to avoid adding
+ them all *to* nixpkgs, since they aren't specific to
+ nix/nixpkgs.
+ */
+ oilPatches = [
+ "${rSrc}/0001-add_setup_py.patch"
+ "${rSrc}/0002-add_MANIFEST_in.patch"
+ "${rSrc}/0003-fix_codegen_shebang.patch"
+ "${rSrc}/0004-disable-internal-py-yajl-for-nix-built.patch"
+ ];
+ };
+in
+python27Packages.buildPythonApplication {
+ pname = "resholve";
+ inherit version;
+ src = rSrc;
+ format = "other";
+
+ nativeBuildInputs = [ installShellFiles ];
+
+ propagatedBuildInputs = [ deps.oildev python27Packages.ConfigArgParse ];
+
+ patchPhase = ''
+ for file in resholve; do
+ substituteInPlace $file --subst-var-by version ${version}
+ done
+ '';
+
+ installPhase = ''
+ install -Dm755 resholve $out/bin/resholve
+ installManPage resholve.1
+ '';
+
+ inherit doCheck;
+ checkInputs = [ bats ];
+ RESHOLVE_PATH = "${stdenv.lib.makeBinPath [ file findutils gettext ]}";
+
+ checkPhase = ''
+ # explicit interpreter for test suite
+ export INTERP="${bash}/bin/bash" PATH="$out/bin:$PATH"
+ patchShebangs .
+ ./test.sh
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Resolve external shell-script dependencies";
+ homepage = "https://github.com/abathur/resholve";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ abathur ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 8f5c140d9254..38fc84d55230 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -3550,13 +3550,13 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@netlify/build-8.0.0" = {
+ "@netlify/build-8.0.1" = {
name = "_at_netlify_slash_build";
packageName = "@netlify/build";
- version = "8.0.0";
+ version = "8.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/build/-/build-8.0.0.tgz";
- sha512 = "yF9kmeMEn5qPc6D62AyuzaFD/L+TDvZH5+0zw5NpXs5caUysBDolV/rxQa4KTVCaPBBqx044/J69byMuoH5zpQ==";
+ url = "https://registry.npmjs.org/@netlify/build/-/build-8.0.1.tgz";
+ sha512 = "DOBUR4x0GEmi4hD8LagJfPCtxnaAtjRTJgZdTx9lFngC2OHY+xIwGZ3Ilct1b3vbAcl0SzHA+HZ4xrG2V/EWdw==";
};
};
"@netlify/cache-utils-1.0.6" = {
@@ -3577,22 +3577,22 @@ let
sha512 = "Z7yzbx5qCX2I5RLlNyo0MMQ6GKJc8o5Nej9yspCavjqgYlUS7VJfbeE67WNxC26FXwDUqq00zJ0MrCS0Un1YOw==";
};
};
- "@netlify/config-2.4.2" = {
+ "@netlify/config-2.4.3" = {
name = "_at_netlify_slash_config";
packageName = "@netlify/config";
- version = "2.4.2";
+ version = "2.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/config/-/config-2.4.2.tgz";
- sha512 = "EODBhSJHBpN4IhL68881uF0jutc5xkodgRP1mq3bPpNidLJjfcxltFSnT3TjtZmRxcCwFdl+XMqJzvcI3UKf4A==";
+ url = "https://registry.npmjs.org/@netlify/config/-/config-2.4.3.tgz";
+ sha512 = "Uz7Oo3tJP2VTgNgsJtRlwAhO5jTozkpNMCKALb814ssJKx7nE/4QvNxJPCQNBDXY9BSeXVIPfy0vMfshxatL+g==";
};
};
- "@netlify/functions-utils-1.3.3" = {
+ "@netlify/functions-utils-1.3.4" = {
name = "_at_netlify_slash_functions-utils";
packageName = "@netlify/functions-utils";
- version = "1.3.3";
+ version = "1.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.3.tgz";
- sha512 = "cZhdSzyQkd6ZVUxL7mcOlLq2u2+JUzKfxmAjwMLwFAZKqc0YL8dWXP2C4Fe1I0g9u7fe6yAgDGigAkMnIgAYtw==";
+ url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.4.tgz";
+ sha512 = "AkVd03D6K7Uwli+t5xTMm5c1jn1HRFY3YgslLV91huHI++3CjOsGpsnDfhoN2kj1aN8OLqliTOvs4PQHC2dKpw==";
};
};
"@netlify/git-utils-1.0.6" = {
@@ -3694,6 +3694,15 @@ let
sha512 = "7Fatc5OoRZ7V2tusx1CBWIdk9hXrr0JWoW547wsmopCkCl5O4TaLxw12CgfW6EQsjaufSnuQddzvnx5y1b5gGQ==";
};
};
+ "@netlify/zip-it-and-ship-it-2.0.0" = {
+ name = "_at_netlify_slash_zip-it-and-ship-it";
+ packageName = "@netlify/zip-it-and-ship-it";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-2.0.0.tgz";
+ sha512 = "DQQldFTRmEPHpvvKxAKLNk/RqVIfzZGsBcbmruy3zupPG2W+pGHnQUSMNXrUZmMkqekDh0nCHf8MfG0EakRqGg==";
+ };
+ };
"@node-red/editor-api-1.2.6" = {
name = "_at_node-red_slash_editor-api";
packageName = "@node-red/editor-api";
@@ -4756,15 +4765,6 @@ let
sha512 = "MjmH7GvFT4TW8xFdIeFS3wqIX646y5tACdxkTO+khbHvS3ZcVJL6vkAHLw2wqPmkhwCfWHoNsp15VYNwW6JEJA==";
};
};
- "@rollup/plugin-commonjs-13.0.2" = {
- name = "_at_rollup_slash_plugin-commonjs";
- packageName = "@rollup/plugin-commonjs";
- version = "13.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-13.0.2.tgz";
- sha512 = "9JXf2k8xqvMYfqmhgtB6eCgMN9fbxwF1XDF3mGKJc6pkAmt0jnsqurxQ0tC1akQKNSXCm7c3unQxa3zuxtZ7mQ==";
- };
- };
"@rollup/plugin-commonjs-15.1.0" = {
name = "_at_rollup_slash_plugin-commonjs";
packageName = "@rollup/plugin-commonjs";
@@ -4774,6 +4774,15 @@ let
sha512 = "xCQqz4z/o0h2syQ7d9LskIMvBSH4PX5PjYdpSSvgS+pQik3WahkQVNWg3D8XJeYjZoVWnIUQYDghuEMRGrmQYQ==";
};
};
+ "@rollup/plugin-commonjs-17.0.0" = {
+ name = "_at_rollup_slash_plugin-commonjs";
+ packageName = "@rollup/plugin-commonjs";
+ version = "17.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-17.0.0.tgz";
+ sha512 = "/omBIJG1nHQc+bgkYDuLpb/V08QyutP9amOrJRUSlYJZP+b/68gM//D8sxJe3Yry2QnYIr3QjR3x4AlxJEN3GA==";
+ };
+ };
"@rollup/plugin-inject-4.0.2" = {
name = "_at_rollup_slash_plugin-inject";
packageName = "@rollup/plugin-inject";
@@ -4792,13 +4801,13 @@ let
sha512 = "yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==";
};
};
- "@rollup/plugin-node-resolve-8.4.0" = {
+ "@rollup/plugin-node-resolve-11.0.1" = {
name = "_at_rollup_slash_plugin-node-resolve";
packageName = "@rollup/plugin-node-resolve";
- version = "8.4.0";
+ version = "11.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-8.4.0.tgz";
- sha512 = "LFqKdRLn0ShtQyf6SBYO69bGE1upV6wUhBX0vFOUnLAyzx5cwp8svA0eHUnu8+YU57XOkrMtfG63QOpQx25pHQ==";
+ url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.0.1.tgz";
+ sha512 = "ltlsj/4Bhwwhb+Nb5xCz/6vieuEj2/BAkkqVIKmZwC7pIdl8srmgmglE4S0jFlZa32K4qvdQ6NHdmpRKD/LwoQ==";
};
};
"@rollup/plugin-node-resolve-9.0.0" = {
@@ -4972,13 +4981,13 @@ let
sha512 = "aI/cpGVUhWbJUR8QDMtPue28EU4ViG/L4/XKuZDfAN2uNQv3NRjwEFIBi/cxyfQnMTYVtMLe9wDjuwzOT4ENzA==";
};
};
- "@serverless/utils-2.1.0" = {
+ "@serverless/utils-2.2.0" = {
name = "_at_serverless_slash_utils";
packageName = "@serverless/utils";
- version = "2.1.0";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils/-/utils-2.1.0.tgz";
- sha512 = "3DJqUrBaFPam8XT2GZIErjJzKC4sm4XEmjiAxur7B2oAwSvH2rqSwBXUuG1O7azcVueQFcKzmSJTfNhsmaFguA==";
+ url = "https://registry.npmjs.org/@serverless/utils/-/utils-2.2.0.tgz";
+ sha512 = "0TqmLwH9r2GAewvz9mhZ+TSyQBoE9ANuB4nNhn6lJvVUgzlzji3aqeFbAuDt+Z60ZkaIDNipU/J5Vf2Lo/QTQQ==";
};
};
"@serverless/utils-china-1.0.12" = {
@@ -6214,6 +6223,15 @@ let
sha512 = "ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w==";
};
};
+ "@types/mocha-8.2.0" = {
+ name = "_at_types_slash_mocha";
+ packageName = "@types/mocha";
+ version = "8.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/mocha/-/mocha-8.2.0.tgz";
+ sha512 = "/Sge3BymXo4lKc31C8OINJgXLaw+7vL1/L1pGiBNpGrBiT8FQiaFpSYV0uhTaG4y78vcMBTMFsWaHDvuD+xGzQ==";
+ };
+ };
"@types/multer-1.4.4" = {
name = "_at_types_slash_multer";
packageName = "@types/multer";
@@ -6250,31 +6268,31 @@ let
sha512 = "vwX+/ija9xKc/z9VqMCdbf4WYcMTGsI0I/L/6shIF3qXURxZOhPQlPRHtjTpiNhAwn0paMJzlOQqw6mAGEQnTA==";
};
};
- "@types/node-12.19.11" = {
+ "@types/node-12.12.70" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "12.19.11";
+ version = "12.12.70";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-12.19.11.tgz";
- sha512 = "bwVfNTFZOrGXyiQ6t4B9sZerMSShWNsGRw8tC5DY1qImUNczS9SjT4G6PnzjCnxsu5Ubj6xjL2lgwddkxtQl5w==";
+ url = "https://registry.npmjs.org/@types/node/-/node-12.12.70.tgz";
+ sha512 = "i5y7HTbvhonZQE+GnUM2rz1Bi8QkzxdQmEv1LKOv4nWyaQk/gdeiTApuQR3PDJHX7WomAbpx2wlWSEpxXGZ/UQ==";
};
};
- "@types/node-12.7.12" = {
+ "@types/node-12.19.12" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "12.7.12";
+ version = "12.19.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-12.7.12.tgz";
- sha512 = "KPYGmfD0/b1eXurQ59fXD1GBzhSQfz6/lKBxkaHX9dKTzjXbK68Zt7yGUxUsCS1jeTy/8aL+d9JEr+S54mpkWQ==";
+ url = "https://registry.npmjs.org/@types/node/-/node-12.19.12.tgz";
+ sha512 = "UwfL2uIU9arX/+/PRcIkT08/iBadGN2z6ExOROA2Dh5mAuWTBj6iJbQX4nekiV5H8cTrEG569LeX+HRco9Cbxw==";
};
};
- "@types/node-13.13.38" = {
+ "@types/node-13.13.39" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "13.13.38";
+ version = "13.13.39";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-13.13.38.tgz";
- sha512 = "oxo8j9doh7ab9NwDA9bCeFfjHRF/uzk+fTljCy8lMjZ3YzZGAXNDKhTE3Byso/oy32UTUQIXB3HCVHu3d2T3xg==";
+ url = "https://registry.npmjs.org/@types/node/-/node-13.13.39.tgz";
+ sha512 = "wct+WgRTTkBm2R3vbrFOqyZM5w0g+D8KnhstG9463CJBVC3UVZHMToge7iMBR1vDl/I+NWFHUeK9X+JcF0rWKw==";
};
};
"@types/node-14.11.1" = {
@@ -6286,13 +6304,13 @@ let
sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw==";
};
};
- "@types/node-14.14.19" = {
+ "@types/node-14.14.20" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.14.19";
+ version = "14.14.20";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.14.19.tgz";
- sha512 = "4nhBPStMK04rruRVtVc6cDqhu7S9GZai0fpXgPXrFpcPX6Xul8xnrjSdGB4KPBVYG/R5+fXWdCM8qBoiULWGPQ==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.14.20.tgz";
+ sha512 = "Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A==";
};
};
"@types/node-6.14.13" = {
@@ -6745,13 +6763,13 @@ let
sha512 = "HrCIVMLjE1MOozVoD86622S7aunluLb2PJdPfb3nYiEtohm8mIB/vyv0Fd37AdeMFrTUQXEunw78YloMA3Qilg==";
};
};
- "@typescript-eslint/eslint-plugin-3.10.1" = {
+ "@typescript-eslint/eslint-plugin-4.12.0" = {
name = "_at_typescript-eslint_slash_eslint-plugin";
packageName = "@typescript-eslint/eslint-plugin";
- version = "3.10.1";
+ version = "4.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.10.1.tgz";
- sha512 = "PQg0emRtzZFWq6PxBcdxRH3QIQiyFO3WCVpRL3fgj5oQS3CDs3AeAKfv4DxNhzn8ITdNJGJ4D3Qw8eAJf3lXeQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.12.0.tgz";
+ sha512 = "wHKj6q8s70sO5i39H2g1gtpCXCvjVszzj6FFygneNFyIAxRvNSVz9GML7XpqrB9t7hNutXw+MHnLN/Ih6uyB8Q==";
};
};
"@typescript-eslint/experimental-utils-3.10.1" = {
@@ -6763,6 +6781,15 @@ let
sha512 = "DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==";
};
};
+ "@typescript-eslint/experimental-utils-4.12.0" = {
+ name = "_at_typescript-eslint_slash_experimental-utils";
+ packageName = "@typescript-eslint/experimental-utils";
+ version = "4.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.12.0.tgz";
+ sha512 = "MpXZXUAvHt99c9ScXijx7i061o5HEjXltO+sbYfZAAHxv3XankQkPaNi5myy0Yh0Tyea3Hdq1pi7Vsh0GJb0fA==";
+ };
+ };
"@typescript-eslint/parser-3.10.1" = {
name = "_at_typescript-eslint_slash_parser";
packageName = "@typescript-eslint/parser";
@@ -6772,6 +6799,24 @@ let
sha512 = "Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==";
};
};
+ "@typescript-eslint/parser-4.12.0" = {
+ name = "_at_typescript-eslint_slash_parser";
+ packageName = "@typescript-eslint/parser";
+ version = "4.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.12.0.tgz";
+ sha512 = "9XxVADAo9vlfjfoxnjboBTxYOiNY93/QuvcPgsiKvHxW6tOZx1W4TvkIQ2jB3k5M0pbFP5FlXihLK49TjZXhuQ==";
+ };
+ };
+ "@typescript-eslint/scope-manager-4.12.0" = {
+ name = "_at_typescript-eslint_slash_scope-manager";
+ packageName = "@typescript-eslint/scope-manager";
+ version = "4.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.12.0.tgz";
+ sha512 = "QVf9oCSVLte/8jvOsxmgBdOaoe2J0wtEmBr13Yz0rkBNkl5D8bfnf6G4Vhox9qqMIoG7QQoVwd2eG9DM/ge4Qg==";
+ };
+ };
"@typescript-eslint/types-3.10.1" = {
name = "_at_typescript-eslint_slash_types";
packageName = "@typescript-eslint/types";
@@ -6781,6 +6826,15 @@ let
sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==";
};
};
+ "@typescript-eslint/types-4.12.0" = {
+ name = "_at_typescript-eslint_slash_types";
+ packageName = "@typescript-eslint/types";
+ version = "4.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.12.0.tgz";
+ sha512 = "N2RhGeheVLGtyy+CxRmxdsniB7sMSCfsnbh8K/+RUIXYYq3Ub5+sukRCjVE80QerrUBvuEvs4fDhz5AW/pcL6g==";
+ };
+ };
"@typescript-eslint/typescript-estree-2.34.0" = {
name = "_at_typescript-eslint_slash_typescript-estree";
packageName = "@typescript-eslint/typescript-estree";
@@ -6799,6 +6853,15 @@ let
sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==";
};
};
+ "@typescript-eslint/typescript-estree-4.12.0" = {
+ name = "_at_typescript-eslint_slash_typescript-estree";
+ packageName = "@typescript-eslint/typescript-estree";
+ version = "4.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.12.0.tgz";
+ sha512 = "gZkFcmmp/CnzqD2RKMich2/FjBTsYopjiwJCroxqHZIY11IIoN0l5lKqcgoAPKHt33H2mAkSfvzj8i44Jm7F4w==";
+ };
+ };
"@typescript-eslint/visitor-keys-3.10.1" = {
name = "_at_typescript-eslint_slash_visitor-keys";
packageName = "@typescript-eslint/visitor-keys";
@@ -6808,6 +6871,15 @@ let
sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==";
};
};
+ "@typescript-eslint/visitor-keys-4.12.0" = {
+ name = "_at_typescript-eslint_slash_visitor-keys";
+ packageName = "@typescript-eslint/visitor-keys";
+ version = "4.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.12.0.tgz";
+ sha512 = "hVpsLARbDh4B9TKYz5cLbcdMIOAoBYgFPCSP9FFS/liSF+b33gVNq8JHY3QGhHNVz85hObvL7BEYLlgx553WCw==";
+ };
+ };
"@uifabric/foundation-7.9.20" = {
name = "_at_uifabric_slash_foundation";
packageName = "@uifabric/foundation";
@@ -10084,13 +10156,13 @@ let
sha512 = "gpuo6xOyF4D5DE5WvyqZdPA3NGhiT6Qf07l7DCB0wwDEsLvDIbCr6j9S5aj5Ch96dLace5tXVzWBZkxU/c5ohw==";
};
};
- "async-lock-1.2.6" = {
+ "async-lock-1.2.8" = {
name = "async-lock";
packageName = "async-lock";
- version = "1.2.6";
+ version = "1.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/async-lock/-/async-lock-1.2.6.tgz";
- sha512 = "gobUp/bRWL/uJsxi4ZK7NM770s5d2Tx5Hl7uxFIcN6yTz1Kvy2RCSKEvzhLsjAAnYaNa8lDvcjy9ybM6lXFjIg==";
+ url = "https://registry.npmjs.org/async-lock/-/async-lock-1.2.8.tgz";
+ sha512 = "G+26B2jc0Gw0EG/WN2M6IczuGepBsfR1+DtqLnyFSH4p2C668qkOCtEkGNVEaaNAVlYwEMazy1+/jnLxltBkIQ==";
};
};
"async-mutex-0.1.4" = {
@@ -10327,13 +10399,13 @@ let
sha512 = "+KBkqH7t/XE91Fqn8eyJeNIWsnhSWL8bSUqFD7TfE3FN07MTlC0nprGYp+2WfcYNz5i8Bus1vY2DHNVhtTImnw==";
};
};
- "aws-sdk-2.820.0" = {
+ "aws-sdk-2.821.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.820.0";
+ version = "2.821.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.820.0.tgz";
- sha512 = "OwGHxprG4KX5QC+vc77Xl7RCkJdwwKYPB7Gw3odNlMfdljedw7ICBylsMSBEwi/YjwaPryKPevHdOJAHbTKvQg==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.821.0.tgz";
+ sha512 = "UtUlURMzmns1Wq8uAdJcyKsm/nW7iRYgTQEONQIpud0xwtjpPPR1pBFB0RSNZuYnZxcWboo807+jxq+LjaBEKA==";
};
};
"aws-sign2-0.6.0" = {
@@ -12865,13 +12937,13 @@ let
sha1 = "69fdf13ad9d91222baee109945faadc431534f86";
};
};
- "bufferutil-4.0.2" = {
+ "bufferutil-4.0.3" = {
name = "bufferutil";
packageName = "bufferutil";
- version = "4.0.2";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.2.tgz";
- sha512 = "AtnG3W6M8B2n4xDQ5R+70EXvOpnXsFYg/AK2yTZd+HQ/oxAdz+GI+DvjmhBw3L0ole+LJ0ngqY4JMbDzkfNzhA==";
+ url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.3.tgz";
+ sha512 = "yEYTwGndELGvfXsImMBLop58eaGW+YdONi1fNjTINSY98tmMmFijBG6WXgdkfuLNt4imzQNtIE+eBp1PVpMCSw==";
};
};
"bufferview-1.0.1" = {
@@ -13441,13 +13513,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001171" = {
+ "caniuse-lite-1.0.30001173" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001171";
+ version = "1.0.30001173";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001171.tgz";
- sha512 = "5Alrh8TTYPG9IH4UkRqEBZoEToWRLvPbSQokvzSz0lii8/FOWKG4keO1HoYfPWs8IF/NH/dyNPg1cmJGvV3Zlg==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001173.tgz";
+ sha512 = "R3aqmjrICdGCTAnSXtNyvWYMK3YtV5jwudbq0T7nN9k4kmE4CBuwPqyJ+KBzepSTh0huivV2gLbSMEzTTmfeYw==";
};
};
"canvas-2.6.1" = {
@@ -16024,13 +16096,13 @@ let
sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
};
};
- "constructs-3.2.90" = {
+ "constructs-3.2.94" = {
name = "constructs";
packageName = "constructs";
- version = "3.2.90";
+ version = "3.2.94";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-3.2.90.tgz";
- sha512 = "Hi0MN1NQOrqVUXE2YGQ0GL6LLPW7R9WP1QYOXvI2OW0wX43zd5sDT0D8PE116EKF8nRAFQenUPlD2EdgxoHPDg==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-3.2.94.tgz";
+ sha512 = "yK4FKT+hONiC0ebCM0Ln3xuLPF4WPyZSQ8Sl/ZOTTFUI+/csBBxGy7TkY2ZVTbOi7MCHUatZgW2ANsYRaaxoOQ==";
};
};
"consume-http-header-1.0.0" = {
@@ -16511,22 +16583,22 @@ let
sha512 = "vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==";
};
};
- "core-js-3.8.1" = {
+ "core-js-3.8.2" = {
name = "core-js";
packageName = "core-js";
- version = "3.8.1";
+ version = "3.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.8.1.tgz";
- sha512 = "9Id2xHY1W7m8hCl8NkhQn5CufmF/WuR30BTRewvCXc1aZd3kMECwNZ69ndLbekKfakw9Rf2Xyc+QR6E7Gg+obg==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.8.2.tgz";
+ sha512 = "FfApuSRgrR6G5s58casCBd9M2k+4ikuu4wbW6pJyYU7bd9zvFc9qf7vr5xmrZOhT9nn+8uwlH1oRR9jTnFoA3A==";
};
};
- "core-js-compat-3.8.1" = {
+ "core-js-compat-3.8.2" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.8.1";
+ version = "3.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.1.tgz";
- sha512 = "a16TLmy9NVD1rkjUGbwuyWkiDoN0FDpAwrfLONvHFQx0D9k7J9y0srwMT8QP/Z6HE3MIFaVynEeYwZwPX1o5RQ==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.2.tgz";
+ sha512 = "LO8uL9lOIyRRrQmZxHZFl1RV+ZbcsAkFWTktn5SmH40WgLtSNYN4m4W2v9ONT147PxBY/XrRhrWq8TlvObyUjQ==";
};
};
"core-util-is-1.0.2" = {
@@ -18203,6 +18275,15 @@ let
sha512 = "jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==";
};
};
+ "dayjs-1.10.1" = {
+ name = "dayjs";
+ packageName = "dayjs";
+ version = "1.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dayjs/-/dayjs-1.10.1.tgz";
+ sha512 = "2xg7JrHQeLBQFkvTumLoy62x1siyeocc98QwjtURgvRqOPYmAkMUdmSjrOA+MlmL6QMQn5MUhDf6rNZNuPc1LQ==";
+ };
+ };
"dayjs-1.8.36" = {
name = "dayjs";
packageName = "dayjs";
@@ -18212,15 +18293,6 @@ let
sha512 = "3VmRXEtw7RZKAf+4Tv1Ym9AGeo8r8+CjDi26x+7SYQil1UqtqdaokhzoEJohqlzt0m5kacJSDhJQkG/LWhpRBw==";
};
};
- "dayjs-1.9.8" = {
- name = "dayjs";
- packageName = "dayjs";
- version = "1.9.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/dayjs/-/dayjs-1.9.8.tgz";
- sha512 = "F42qBtJRa30FKF7XDnOQyNUTsaxDkuaZRj/i7BejSHC34LlLfPoIU4aeopvWfM+m1dJ6/DHKAWLg2ur+pLgq1w==";
- };
- };
"deasync-0.1.20" = {
name = "deasync";
packageName = "deasync";
@@ -19013,6 +19085,15 @@ let
sha512 = "OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ==";
};
};
+ "denque-1.5.0" = {
+ name = "denque";
+ packageName = "denque";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/denque/-/denque-1.5.0.tgz";
+ sha512 = "CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ==";
+ };
+ };
"dep-graph-1.1.0" = {
name = "dep-graph";
packageName = "dep-graph";
@@ -20417,13 +20498,13 @@ let
sha512 = "dldq3ZfFtgVTJMLjOe+/3sROTzALlL9E34V4/sDtUd/KlBSS0s6U1/+WPE1B4sj9CXHJpL1M6rhNJnc9Wbal9w==";
};
};
- "electron-to-chromium-1.3.633" = {
+ "electron-to-chromium-1.3.634" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.633";
+ version = "1.3.634";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.633.tgz";
- sha512 = "bsVCsONiVX1abkWdH7KtpuDAhsQ3N3bjPYhROSAXE78roJKet0Y5wznA14JE9pzbwSZmSMAW6KiKYf1RvbTJkA==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.634.tgz";
+ sha512 = "QPrWNYeE/A0xRvl/QP3E0nkaEvYUvH3gM04ZWYtIa6QlSpEetRlRI1xvQ7hiMIySHHEV+mwDSX8Kj4YZY6ZQAw==";
};
};
"electrum-client-git://github.com/janoside/electrum-client" = {
@@ -20743,13 +20824,22 @@ let
sha512 = "b4Q85dFkGw+TqgytGPrGgACRUhsdKc9S9ErRAXpPGy/CXKs4tYoHDkvIRdsseAF7NjfVwjRFIn6KTnbw7LwJZg==";
};
};
- "engine.io-4.0.5" = {
+ "engine.io-3.5.0" = {
name = "engine.io";
packageName = "engine.io";
- version = "4.0.5";
+ version = "3.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io/-/engine.io-4.0.5.tgz";
- sha512 = "Ri+whTNr2PKklxQkfbGjwEo+kCBUM4Qxk4wtLqLrhH+b1up2NFL9g9pjYWiCV/oazwB0rArnvF/ZmZN2ab5Hpg==";
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-3.5.0.tgz";
+ sha512 = "21HlvPUKaitDGE4GXNtQ7PLP0Sz4aWLddMPw2VTyFz1FVZqu/kZsJUO8WNpKuE/OCL7nkfRaOui2ZCJloGznGA==";
+ };
+ };
+ "engine.io-4.0.6" = {
+ name = "engine.io";
+ packageName = "engine.io";
+ version = "4.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-4.0.6.tgz";
+ sha512 = "rf7HAVZpcRrcKEKddgIzYUnwg0g5HE1RvJaTLwkcfJmce4g+po8aMuE6vxzp6JwlK8FEq/vi0KWN6tA585DjaA==";
};
};
"engine.io-client-1.3.1" = {
@@ -20770,6 +20860,15 @@ let
sha512 = "iU4CRr38Fecj8HoZEnFtm2EiKGbYZcPn3cHxqNGl/tmdWRf60KhK+9vE0JeSjgnlS/0oynEfLgKbT9ALpim0sQ==";
};
};
+ "engine.io-client-3.5.0" = {
+ name = "engine.io-client";
+ packageName = "engine.io-client";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.0.tgz";
+ sha512 = "12wPRfMrugVw/DNyJk34GQ5vIVArEcVMXWugQGGuw2XxUSztFNmJggZmv8IZlLyEdnpO1QB9LkcjeWewO2vxtA==";
+ };
+ };
"engine.io-parser-1.0.6" = {
name = "engine.io-parser";
packageName = "engine.io-parser";
@@ -21463,13 +21562,13 @@ let
sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ==";
};
};
- "eslint-plugin-vue-7.4.0" = {
+ "eslint-plugin-vue-7.4.1" = {
name = "eslint-plugin-vue";
packageName = "eslint-plugin-vue";
- version = "7.4.0";
+ version = "7.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.4.0.tgz";
- sha512 = "bYJV3nHSGV5IL40Ti1231vlY8I2DzjDHYyDjRv9Z1koEI7qyV2RR3+uKMafHdOioXYH9W3e1+iwe4wy7FIBNCQ==";
+ url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.4.1.tgz";
+ sha512 = "W/xPNHYIkGJphLUM2UIYYGKbRw3BcDoMIPY9lu1TTa2YLiZoxurddfnmOP+UOVywxb5vi438ejzwvKdZqydtIw==";
};
};
"eslint-scope-3.7.3" = {
@@ -24533,6 +24632,15 @@ let
sha512 = "bTLYHSeC0UH/EFXS9KqWnXuOl/wHK5Z/d+ghd5AsFMYN7wIGkUCOJyzy88+wJKkZPGON8u4Z9f6U4FdgURE9qA==";
};
};
+ "fsevents-2.3.1" = {
+ name = "fsevents";
+ packageName = "fsevents";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.1.tgz";
+ sha512 = "YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw==";
+ };
+ };
"fstream-0.1.31" = {
name = "fstream";
packageName = "fstream";
@@ -31015,6 +31123,15 @@ let
sha1 = "6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30";
};
};
+ "js-yaml-4.0.0" = {
+ name = "js-yaml";
+ packageName = "js-yaml";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz";
+ sha512 = "pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==";
+ };
+ };
"js2xmlparser-4.0.1" = {
name = "js2xmlparser";
packageName = "js2xmlparser";
@@ -31168,13 +31285,13 @@ let
sha512 = "1FFGV+JmwyljCNjc9bkW40MIQXvPgNxq+V3zx8/0+FM51S/0O5EvTa/413LX8fzB8sWH0G42NqFa+8k3k9s2hw==";
};
};
- "jsii-srcmak-0.1.176" = {
+ "jsii-srcmak-0.1.180" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.176";
+ version = "0.1.180";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.176.tgz";
- sha512 = "lX2NuqUceoVVjr0Grm5DRYRyFIDv3cLK6zpAghCu4ZBUlQj8m1ZiOOTu7MUj0yAHi+6WMqP6DP7Q6aT34vo0dw==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.180.tgz";
+ sha512 = "U9CmoEM6A7ZhIT66N8r9flPKUsNnkCu5iWkzH9k6sdNwbiEC5KT4MdJUfJ42L1AbX1BXwhmQtFyj7QvKdGI44g==";
};
};
"json-bigint-0.2.3" = {
@@ -31456,13 +31573,13 @@ let
sha512 = "W9Lq347r8tA1DfMvAGn9QNcgYm4Wm7Yc+k8e6vezpMnRT+NHbtlxgNBXRVjXe9YM6eTn6+p/MKOlV/aABJcSnQ==";
};
};
- "json2jsii-0.1.168" = {
+ "json2jsii-0.1.172" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.1.168";
+ version = "0.1.172";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.168.tgz";
- sha512 = "ny9avMgMo4zNUnMagHhP2gp+1QTQjQuryO31s0579BwWrlXVTLlmxl/1A9+Bem6QNXqM6VFDEl4iesyD10ypoQ==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.172.tgz";
+ sha512 = "X78nchCnnN0M3x6byBMhR9X5fz5BETDxFmAE149WUpMn0Dh6Dg3c7H9FbQkRV1MVaqC0sLJHGIeO++hfgYpa7w==";
};
};
"json3-3.2.6" = {
@@ -37586,13 +37703,13 @@ let
sha512 = "nU7mOEuaXiQIB/EgTIjYZJ7g8KqMm2D8l4qp+DqA4jxWOb/tnb1KEoqp+tlbdQIDIAiC1i7j7X/3yHDFXLxr9g==";
};
};
- "muxrpc-6.5.1" = {
+ "muxrpc-6.5.2" = {
name = "muxrpc";
packageName = "muxrpc";
- version = "6.5.1";
+ version = "6.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/muxrpc/-/muxrpc-6.5.1.tgz";
- sha512 = "QTHNncZlsEcBOOYqpCx/QeVLJYaov6Y1LCEDun0xu81zAJGKymiMd5TB/qzA+dm9o1K3axwdGOqPR3fzrDyGRw==";
+ url = "https://registry.npmjs.org/muxrpc/-/muxrpc-6.5.2.tgz";
+ sha512 = "fgYhBfzevyUbwsB8YBlrnmzZOGxWv6OiAUNKQYwPLqbophsZ+GT8STKrCVHCYNjUx6btxFA5+BJPUCFMecyaSA==";
};
};
"muxrpc-usage-2.1.0" = {
@@ -38163,22 +38280,13 @@ let
sha512 = "x+VqJ+yop05OUpeaT4fhz/NAvJQFjtNhW1s+/i6oP/EZS6/+B0u+qCANF8uP9u3UJcmWvlJmrRoDhj62Xvtwug==";
};
};
- "netlify-5.0.2" = {
+ "netlify-6.0.9" = {
name = "netlify";
packageName = "netlify";
- version = "5.0.2";
+ version = "6.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify/-/netlify-5.0.2.tgz";
- sha512 = "xAbxN/7D3l8vp0KT2FpVqSm72LAukRaJpM2liKylJl1La54s8uLgILL6eUUCKsWrEGTiI1o8w/ApqKrIQdeNOg==";
- };
- };
- "netlify-6.0.7" = {
- name = "netlify";
- packageName = "netlify";
- version = "6.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/netlify/-/netlify-6.0.7.tgz";
- sha512 = "FvCOaS3HLSeE+AwQvJVQd16UeZn6PYSnbCqEA94vhqIkFyjSOs3oyO0/C0zK8FgKGGZQxO98BTbj4/NKpPdAPg==";
+ url = "https://registry.npmjs.org/netlify/-/netlify-6.0.9.tgz";
+ sha512 = "izoELW+kE5ClHX85f5EExRo42H3hXESwSr69EJdCuDQlTP3JR09xQgZcWL5t7FNdkfBj7Kdhf62tk02TN4+YzA==";
};
};
"netlify-plugin-deploy-preview-commenting-0.0.1-alpha.16" = {
@@ -38830,13 +38938,13 @@ let
sha512 = "j1g/VtSCI2tBrBnCD+u8iSo9tH0nvn70k1O1SxkHk3+qx7tHUyOKQc7wNc4rUs9J1PkGngUC3qEDd5cL7Z/klg==";
};
};
- "node-releases-1.1.67" = {
+ "node-releases-1.1.69" = {
name = "node-releases";
packageName = "node-releases";
- version = "1.1.67";
+ version = "1.1.69";
src = fetchurl {
- url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.67.tgz";
- sha512 = "V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==";
+ url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.69.tgz";
+ sha512 = "DGIjo79VDEyAnRlfSqYTsy+yoHd2IOjJiKUozD2MV2D85Vso6Bug56mb9tT/fY5Urt0iqk01H7x+llAruDR2zA==";
};
};
"node-source-walk-4.2.0" = {
@@ -41342,13 +41450,13 @@ let
sha512 = "+4S+qBUdqD57ka5MDd6nAYGBPril5eyLpbga2y0kPyYhrKvjb8CYTP9r40WLbSxgT/qEGmvgWOrvQe+FYtCI7w==";
};
};
- "packet-stream-codec-1.1.2" = {
+ "packet-stream-codec-1.1.3" = {
name = "packet-stream-codec";
packageName = "packet-stream-codec";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/packet-stream-codec/-/packet-stream-codec-1.1.2.tgz";
- sha1 = "79b302fc144cdfbb4ab6feba7040e6a5d99c79c7";
+ url = "https://registry.npmjs.org/packet-stream-codec/-/packet-stream-codec-1.1.3.tgz";
+ sha512 = "LUL4NK7sz01jdSUdCu3z1LyphCiFdQaFouaEDsAWmJpzS0lbeNfvZoX4bi1Tm1ilzheK5VAoD96QskDCZQr+jA==";
};
};
"pacote-11.1.0" = {
@@ -42359,13 +42467,13 @@ let
sha512 = "4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==";
};
};
- "peek-readable-3.1.0" = {
+ "peek-readable-3.1.1" = {
name = "peek-readable";
packageName = "peek-readable";
- version = "3.1.0";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/peek-readable/-/peek-readable-3.1.0.tgz";
- sha512 = "KGuODSTV6hcgdZvDrIDBUkN0utcAVj1LL7FfGbM0viKTtCHmtZcuEJ+lGqsp0fTFkGqesdtemV2yUSMeyy3ddA==";
+ url = "https://registry.npmjs.org/peek-readable/-/peek-readable-3.1.1.tgz";
+ sha512 = "QHJag0oYYPVkx6rVPEgCLEUMo6VRYbV3GUrqy00lxXJBEIw9LhPCP5MQI6mEfahJO9KYUP8W8qD8kC0V9RyZFQ==";
};
};
"peek-stream-1.1.3" = {
@@ -47904,13 +48012,13 @@ let
sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==";
};
};
- "rollup-2.35.1" = {
+ "rollup-2.36.0" = {
name = "rollup";
packageName = "rollup";
- version = "2.35.1";
+ version = "2.36.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.35.1.tgz";
- sha512 = "q5KxEyWpprAIcainhVy6HfRttD9kutQpHbeqDTWnqAFNJotiojetK6uqmcydNMymBEtC4I8bCYR+J3mTMqeaUA==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.36.0.tgz";
+ sha512 = "L38QyQK77bkJy9nPyeydnHFK6xMofqumh4scTV2d4RG4EFq6pGdxnn67dVHFUDJ9J0PSEQx8zn1FiVS5TydsKg==";
};
};
"rollup-plugin-babel-4.4.0" = {
@@ -48534,13 +48642,13 @@ let
sha512 = "sDtmZDpibGH2ixj3FOmsC3Z/b08eaB2/KAvy2oSp4qvcGdhatBSfb1RdVpwjQl5c3J83WbBo1HSZ7DBtMu43lA==";
};
};
- "secret-stack-6.3.1" = {
+ "secret-stack-6.3.2" = {
name = "secret-stack";
packageName = "secret-stack";
- version = "6.3.1";
+ version = "6.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/secret-stack/-/secret-stack-6.3.1.tgz";
- sha512 = "SyYRGgjxq8lbQyqdIbaNfteZ77B3Bd2TH+k5WpI6gHjTCOKZZmD8aiat+bUfhjsiqf0LMQauRH3KD6vIMdDPLg==";
+ url = "https://registry.npmjs.org/secret-stack/-/secret-stack-6.3.2.tgz";
+ sha512 = "D46+4LWwsM1LnO4dg6FM/MfGmMk9uYsIcDElqyNeImBnyUueKi2xz10CHF9iSAtSUGReQDV4SCVUiVrPnaKnsA==";
};
};
"secure-compare-3.0.1" = {
@@ -50109,13 +50217,22 @@ let
sha512 = "2A892lrj0GcgR/9Qk81EaY2gYhCBxurV0PfmmESO6p27QPrUK1J3zdns+5QPqvUYK2q657nSj0guoIil9+7eFg==";
};
};
- "socket.io-3.0.4" = {
+ "socket.io-2.4.0" = {
name = "socket.io";
packageName = "socket.io";
- version = "3.0.4";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-3.0.4.tgz";
- sha512 = "Vj1jUoO75WGc9txWd311ZJJqS9Dr8QtNJJ7gk2r7dcM/yGe9sit7qOijQl3GAwhpBOz/W8CwkD7R6yob07nLbA==";
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-2.4.0.tgz";
+ sha512 = "9UPJ1UTvKayuQfVv2IQ3k7tCQC/fboDyIK62i99dAQIyHKaBsNdTpwHLgKJ6guRWxRtC9H+138UwpaGuQO9uWQ==";
+ };
+ };
+ "socket.io-3.0.5" = {
+ name = "socket.io";
+ packageName = "socket.io";
+ version = "3.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-3.0.5.tgz";
+ sha512 = "5yWQ43P/4IttmPCGKDQ3CVocBiJWGpibyhYJxgUhf69EHMzmK8XW0DkmHIoYdLmZaVZJyiEkUqpeC7rSCIqekw==";
};
};
"socket.io-adapter-0.2.0" = {
@@ -50163,13 +50280,13 @@ let
sha512 = "cEQQf24gET3rfhxZ2jJ5xzAOo/xhZwK+mOqtGRg5IowZsMgwvHwnf/mCRapAAkadhM26y+iydgwsXGObBB5ZdA==";
};
};
- "socket.io-client-2.3.1" = {
+ "socket.io-client-2.4.0" = {
name = "socket.io-client";
packageName = "socket.io-client";
- version = "2.3.1";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.3.1.tgz";
- sha512 = "YXmXn3pA8abPOY//JtYxou95Ihvzmg8U6kQyolArkIyLd0pgVhrfor/iMsox8cn07WCOOvvuJ6XKegzIucPutQ==";
+ url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.4.0.tgz";
+ sha512 = "M6xhnKQHuuZd4Ba9vltCLT9oa+YvTsP8j9NcEiLElfIg8KeYPyhWOes6x4t+LTAC8enQbE/995AdTem2uNyKKQ==";
};
};
"socket.io-parser-2.1.2" = {
@@ -50208,13 +50325,13 @@ let
sha512 = "11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A==";
};
};
- "socket.io-parser-4.0.2" = {
+ "socket.io-parser-4.0.3" = {
name = "socket.io-parser";
packageName = "socket.io-parser";
- version = "4.0.2";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.2.tgz";
- sha512 = "Bs3IYHDivwf+bAAuW/8xwJgIiBNtlvnjYRc4PbXgniLmcP1BrakBoq/QhO24rgtgW7VZ7uAaswRGxutUnlAK7g==";
+ url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.3.tgz";
+ sha512 = "m4ybFiP4UYVORRt7jcdqf8UWx+ywVdAqqsJyruXxAdD3Sv6MDemijWij34mOWdMJ55bEdIb9jACBhxUgNK6sxw==";
};
};
"sockjs-0.3.20" = {
@@ -51261,13 +51378,13 @@ let
sha512 = "/QX6+DJkghqq1ZTbgYpOvaI+gx2O7ee1TRUM9yiOlVjh1XAQBevcBj0zO+W3TsNllX86urqBrySd/AEfFfUpIw==";
};
};
- "ssb-ref-2.14.2" = {
+ "ssb-ref-2.14.3" = {
name = "ssb-ref";
packageName = "ssb-ref";
- version = "2.14.2";
+ version = "2.14.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-ref/-/ssb-ref-2.14.2.tgz";
- sha512 = "pPkwNX/Rrr0bV/8d8dC/f+T/LcKA9ZF1SGHrUuVpoqo8iE3gLMu0Zz5TRoUReXKW6+ehNzUzIjcpYTw+wWeZkA==";
+ url = "https://registry.npmjs.org/ssb-ref/-/ssb-ref-2.14.3.tgz";
+ sha512 = "XhzVmezsUJLlKxTfWlicxhiPRTEYHfJLskYQNRSnw4USqgo9LVx53+MJAhdZOYpZTW2jINR0TeetWs9M27gcbA==";
};
};
"ssb-replicate-1.3.2" = {
@@ -52566,13 +52683,13 @@ let
sha1 = "0fdedc68e91addcfcb2e6be9c262581a6e8c28aa";
};
};
- "strtok3-6.0.4" = {
+ "strtok3-6.0.6" = {
name = "strtok3";
packageName = "strtok3";
- version = "6.0.4";
+ version = "6.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/strtok3/-/strtok3-6.0.4.tgz";
- sha512 = "rqWMKwsbN9APU47bQTMEYTPcwdpKDtmf1jVhHzNW2cL1WqAxaM9iBb9t5P2fj+RV2YsErUWgQzHD5JwV0uCTEQ==";
+ url = "https://registry.npmjs.org/strtok3/-/strtok3-6.0.6.tgz";
+ sha512 = "fVxvAEKDwHFfbQO1yKxKBPfkWZyBr0Zf20UQ/mblbkAQe5h0Xdd2jDb3Mh7yRZd7LSItJ9JWgQWelpEmVoBe2g==";
};
};
"structured-source-3.0.2" = {
@@ -53151,13 +53268,13 @@ let
sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
};
};
- "systeminformation-4.33.5" = {
+ "systeminformation-4.34.2" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "4.33.5";
+ version = "4.34.2";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.33.5.tgz";
- sha512 = "LxsyvCB4uYqzjEQUH5cNt8TCNZsEc5oHV5LfT96huYAj3w9U0TGQtg7CiTWYzU4aBnBAejXWct6O0nlZhzzaqQ==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.34.2.tgz";
+ sha512 = "1LynQMla38gIjzyupKBnBLIo4B0TQf3vdhs2bjKPtN02EymuSWpoAM1KX/6+gtFLVmn91MfllE3wSVGQcVTHDw==";
};
};
"table-3.8.3" = {
@@ -53196,13 +53313,13 @@ let
sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==";
};
};
- "table-6.0.6" = {
+ "table-6.0.7" = {
name = "table";
packageName = "table";
- version = "6.0.6";
+ version = "6.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/table/-/table-6.0.6.tgz";
- sha512 = "OInCtPmDNieVBkVFi6C8RwU2S2H0h8mF3e3TQK4nreaUNCpooQUkI+A/KuEkm5FawfhWIfNqG+qfelVVR+V00g==";
+ url = "https://registry.npmjs.org/table/-/table-6.0.7.tgz";
+ sha512 = "rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==";
};
};
"table-layout-0.4.5" = {
@@ -55069,13 +55186,13 @@ let
sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==";
};
};
- "tsutils-3.17.1" = {
+ "tsutils-3.18.0" = {
name = "tsutils";
packageName = "tsutils";
- version = "3.17.1";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz";
- sha512 = "kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==";
+ url = "https://registry.npmjs.org/tsutils/-/tsutils-3.18.0.tgz";
+ sha512 = "D9Tu8nE3E7D1Bsf/V29oMHceMf+gnVO+pDguk/A5YRo1cLpkiQ48ZnbbS57pvvHeY+OIeNQx1vf4ASPlEtRpcA==";
};
};
"ttf2woff-2.0.2" = {
@@ -56960,13 +57077,13 @@ let
sha1 = "8bb871a4741e085c70487ca7acdbd7d6d36029eb";
};
};
- "utf-8-validate-5.0.3" = {
+ "utf-8-validate-5.0.4" = {
name = "utf-8-validate";
packageName = "utf-8-validate";
- version = "5.0.3";
+ version = "5.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.3.tgz";
- sha512 = "jtJM6fpGv8C1SoH4PtG22pGto6x+Y8uPprW0tw3//gGFhDDTiuksgradgFN6yRayDP4SyZZa6ZMGHLIa17+M8A==";
+ url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.4.tgz";
+ sha512 = "MEF05cPSq3AwJ2C7B7sHAA6i53vONoZbMGX8My5auEVm6W+dJ2Jd/TZPyGJ5CH42V2XtbI5FD28HeHeqlPzZ3Q==";
};
};
"utf7-1.0.2" = {
@@ -58247,15 +58364,6 @@ let
sha512 = "dKQXRYNUY6BHALQJBJlyZyv9oWlYpbJ2vVoQNNVNPLAYQ3hzNp4zy+iSo7zGx1BPXByArJQDWTKLQh8dz3dnNw==";
};
};
- "vscode-jsonrpc-6.0.0-next.7" = {
- name = "vscode-jsonrpc";
- packageName = "vscode-jsonrpc";
- version = "6.0.0-next.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0-next.7.tgz";
- sha512 = "1nG+6cuTtpzmXe7yYfO9GCkYlyV6Ai+jDnwidHiT2T7zhc+bJM+VTtc0T/CdTlDyTNTqIcCj0V1nD4TcVjJ7Ug==";
- };
- };
"vscode-languageclient-4.0.1" = {
name = "vscode-languageclient";
packageName = "vscode-languageclient";
@@ -58265,13 +58373,13 @@ let
sha512 = "0fuBZj9pMkeJ8OMyIvSGeRaRVhUaJt+yeFxi7a3sz/AbrngQdcxOovMXPgKuieoBSBKS05gXPS88BsWpJZfBkA==";
};
};
- "vscode-languageclient-7.0.0-next.12" = {
+ "vscode-languageclient-7.0.0" = {
name = "vscode-languageclient";
packageName = "vscode-languageclient";
- version = "7.0.0-next.12";
+ version = "7.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-7.0.0-next.12.tgz";
- sha512 = "OrzvOvhS5o26C0KctTJC7hkwh3avCwkVhllzy42AqwpIUZ3p2aVqkSG2uVxaeodq8ThBb3TLgtg50vxyWs6FEg==";
+ url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-7.0.0.tgz";
+ sha512 = "P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==";
};
};
"vscode-languageserver-3.5.1" = {
@@ -58382,15 +58490,6 @@ let
sha512 = "sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==";
};
};
- "vscode-languageserver-protocol-3.16.0-next.10" = {
- name = "vscode-languageserver-protocol";
- packageName = "vscode-languageserver-protocol";
- version = "3.16.0-next.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0-next.10.tgz";
- sha512 = "YRTctHUZvts0Z1xXKNYU0ha0o+Tlgtwr+6O8OmDquM086N8exiSKBMwMC+Ra1QtIE+1mfW43Wxsme2FnMkAS9A==";
- };
- };
"vscode-languageserver-protocol-3.16.0-next.2" = {
name = "vscode-languageserver-protocol";
packageName = "vscode-languageserver-protocol";
@@ -58490,15 +58589,6 @@ let
sha512 = "QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q==";
};
};
- "vscode-languageserver-types-3.16.0-next.4" = {
- name = "vscode-languageserver-types";
- packageName = "vscode-languageserver-types";
- version = "3.16.0-next.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0-next.4.tgz";
- sha512 = "NlKJyGcET/ZBCCLBYIPaGo2c37R03bPYeWXozUtnjyye7+9dhlbMSODyoG2INcQf8zFmB4qhm2UOJjgYEgPCNA==";
- };
- };
"vscode-languageserver-types-3.5.0" = {
name = "vscode-languageserver-types";
packageName = "vscode-languageserver-types";
@@ -58598,13 +58688,13 @@ let
sha512 = "8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==";
};
};
- "vscode-uri-3.0.1" = {
+ "vscode-uri-3.0.2" = {
name = "vscode-uri";
packageName = "vscode-uri";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.1.tgz";
- sha512 = "LnMgm97uZM2JDjX/vKbbCk+phm++Ih31e5Ao3lqokawhDRocp2ZAVMRiIhPZx6fS5Sqnquyhxh8ABn9TWCvHoA==";
+ url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.2.tgz";
+ sha512 = "jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==";
};
};
"vstream-0.1.0" = {
@@ -60507,13 +60597,13 @@ let
sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==";
};
};
- "y18n-3.2.1" = {
+ "y18n-3.2.2" = {
name = "y18n";
packageName = "y18n";
- version = "3.2.1";
+ version = "3.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz";
- sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41";
+ url = "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz";
+ sha512 = "uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==";
};
};
"y18n-4.0.1" = {
@@ -61515,7 +61605,7 @@ in
sources."append-buffer-1.0.2"
sources."argparse-1.0.10"
sources."asciidoctor.js-1.5.9"
- sources."async-lock-1.2.6"
+ sources."async-lock-1.2.8"
sources."balanced-match-1.0.0"
sources."base64-js-0.0.2"
sources."bl-4.0.3"
@@ -62007,7 +62097,7 @@ in
sources."@types/estree-0.0.45"
sources."@types/json-schema-7.0.6"
sources."@types/json5-0.0.29"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/parse-json-4.0.0"
sources."@types/source-list-map-0.1.2"
sources."@types/tapable-1.0.6"
@@ -62058,7 +62148,7 @@ in
sources."browserslist-4.16.0"
sources."buffer-from-1.1.1"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001171"
+ sources."caniuse-lite-1.0.30001173"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.4.3"
@@ -62079,7 +62169,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.3.633"
+ sources."electron-to-chromium-1.3.634"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enhanced-resolve-4.3.0"
@@ -62180,7 +62270,7 @@ in
sources."mute-stream-0.0.8"
sources."neo-async-2.6.2"
sources."node-emoji-1.10.0"
- sources."node-releases-1.1.67"
+ sources."node-releases-1.1.69"
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."object-assign-4.1.1"
@@ -62674,7 +62764,7 @@ in
sources."@types/long-4.0.1"
sources."@types/mime-2.0.3"
sources."@types/minimatch-3.0.3"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
(sources."@types/node-fetch-2.5.7" // {
dependencies = [
sources."form-data-3.0.0"
@@ -62924,7 +63014,7 @@ in
];
})
sources."camelcase-4.1.0"
- sources."caniuse-lite-1.0.30001171"
+ sources."caniuse-lite-1.0.30001173"
(sources."capital-case-1.0.4" // {
dependencies = [
sources."tslib-2.0.3"
@@ -63055,8 +63145,8 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- sources."core-js-3.8.1"
- (sources."core-js-compat-3.8.1" // {
+ sources."core-js-3.8.2"
+ (sources."core-js-compat-3.8.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -63152,7 +63242,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.633"
+ sources."electron-to-chromium-1.3.634"
sources."elegant-spinner-1.0.1"
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
@@ -63655,7 +63745,7 @@ in
sources."is-wsl-2.2.0"
];
})
- sources."node-releases-1.1.67"
+ sources."node-releases-1.1.69"
(sources."nodemon-1.19.4" // {
dependencies = [
sources."debug-3.2.7"
@@ -64477,10 +64567,10 @@ in
alloy = nodeEnv.buildNodePackage {
name = "alloy";
packageName = "alloy";
- version = "1.15.3";
+ version = "1.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/alloy/-/alloy-1.15.3.tgz";
- sha512 = "RYp9vX+/ojXMCpxMOsZu9e4X5+k3Nlq3vW4gdMkIVXIlk7hfvNcBfAYMeq3ao68cyYQFLJWVkFY0DlQfn0hQhQ==";
+ url = "https://registry.npmjs.org/alloy/-/alloy-1.15.4.tgz";
+ sha512 = "bBFO/imgikyrGd6urHfiZDmceZzAMfWeAmt5Fd9du5B+rv6IIJsDZMrTcalKUhwL6NdM0mBwkFcLmQvjm8UMOw==";
};
dependencies = [
sources."@babel/code-frame-7.12.11"
@@ -64616,7 +64706,7 @@ in
dependencies = [
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.3"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -65635,7 +65725,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-13.13.38"
+ sources."@types/node-13.13.39"
sources."addr-to-ip-port-1.5.1"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -66068,7 +66158,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.29.3"
- sources."constructs-3.2.90"
+ sources."constructs-3.2.94"
sources."date-format-3.0.0"
sources."debug-4.3.2"
sources."decamelize-4.0.0"
@@ -66144,13 +66234,13 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.176" // {
+ (sources."jsii-srcmak-0.1.180" // {
dependencies = [
sources."fs-extra-9.0.1"
];
})
sources."json-schema-0.2.5"
- sources."json2jsii-0.1.168"
+ sources."json2jsii-0.1.172"
(sources."jsonfile-6.1.0" // {
dependencies = [
sources."universalify-2.0.0"
@@ -66250,7 +66340,7 @@ in
};
dependencies = [
sources."@jsii/spec-1.16.0"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/readline-sync-1.4.3"
sources."@types/uuid-8.3.0"
sources."@types/yoga-layout-1.9.2"
@@ -66285,7 +66375,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.29.3"
- sources."constructs-3.2.90"
+ sources."constructs-3.2.94"
sources."date-format-3.0.0"
sources."debug-4.3.2"
sources."decamelize-1.2.0"
@@ -66404,7 +66494,7 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.176" // {
+ (sources."jsii-srcmak-0.1.180" // {
dependencies = [
sources."fs-extra-9.0.1"
(sources."jsonfile-6.1.0" // {
@@ -66724,14 +66814,15 @@ in
coc-eslint = nodeEnv.buildNodePackage {
name = "coc-eslint";
packageName = "coc-eslint";
- version = "1.3.2";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-eslint/-/coc-eslint-1.3.2.tgz";
- sha512 = "4eKNFSYkwo2elYrtxRdQbe9HuSLVBYk5uBVHt7VPvEjysAGAZZJ8sUha8gl32mWbSrbbbrbIP1SfOomVJPQeNQ==";
+ url = "https://registry.npmjs.org/coc-eslint/-/coc-eslint-1.4.1.tgz";
+ sha512 = "dqzn4vqmEqIlzwpFxG6AnhXUwDSTMLsg2d4RDwHDhh1yioukSFR+turQxsq9fssuWeV208y54kb/AzmOIji9jA==";
};
buildInputs = globalBuildInputs;
meta = {
- description = "eslint extension for coc";
+ description = "Eslint extension for coc.nvim";
+ homepage = "https://github.com/neoclide/coc-eslint#readme";
license = "MIT";
};
production = true;
@@ -66769,7 +66860,7 @@ in
sources."node-fetch-2.6.1"
sources."tslib-2.0.3"
sources."vscode-languageserver-textdocument-1.0.1"
- sources."vscode-uri-3.0.1"
+ sources."vscode-uri-3.0.2"
sources."which-2.0.2"
];
buildInputs = globalBuildInputs;
@@ -67206,7 +67297,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
- sources."caniuse-lite-1.0.30001171"
+ sources."caniuse-lite-1.0.30001173"
sources."capture-stack-trace-1.0.1"
sources."ccount-1.1.0"
sources."chalk-2.4.2"
@@ -67263,7 +67354,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.8.1"
+ sources."core-js-3.8.2"
sources."cosmiconfig-3.1.0"
sources."create-error-class-3.0.2"
(sources."cross-spawn-6.0.5" // {
@@ -67303,7 +67394,7 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.3.633"
+ sources."electron-to-chromium-1.3.634"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."entities-1.1.2"
@@ -67992,7 +68083,7 @@ in
sources."tsutils-2.29.0"
];
})
- sources."tsutils-3.17.1"
+ sources."tsutils-3.18.0"
sources."type-check-0.3.2"
sources."type-fest-0.8.1"
sources."typescript-3.9.7"
@@ -68057,7 +68148,7 @@ in
sources."x-is-string-0.1.0"
sources."xdg-basedir-3.0.0"
sources."xtend-4.0.2"
- sources."y18n-3.2.1"
+ sources."y18n-3.2.2"
sources."yallist-4.0.0"
(sources."yargs-11.1.1" // {
dependencies = [
@@ -68144,10 +68235,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.25.0";
+ version = "0.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.25.0.tgz";
- sha512 = "+Diufwhz7JMJlbdNuwkcfcWnGXS5neoJlSW897kI0zfYL9H0R+fJXwiEYy0/f2UWn2eO1pjy0svqyXlacyvAoQ==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.26.0.tgz";
+ sha512 = "Wn0m/IImB9BryAUhH5WTSqrkWh2tamuMVyMzxUmH1EW71TJKOavfV2DAmSNYSkGCD/H9icUbMIiSwyMI9JVYOw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -68268,7 +68359,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001171"
+ sources."caniuse-lite-1.0.30001173"
(sources."chalk-4.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -68306,7 +68397,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.633"
+ sources."electron-to-chromium-1.3.634"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -68401,7 +68492,7 @@ in
];
})
sources."ms-2.1.2"
- sources."node-releases-1.1.67"
+ sources."node-releases-1.1.69"
(sources."normalize-package-data-3.0.0" // {
dependencies = [
sources."semver-7.3.4"
@@ -68500,7 +68591,7 @@ in
sources."sugarss-2.0.0"
sources."supports-color-5.5.0"
sources."svg-tags-1.0.0"
- sources."table-6.0.6"
+ sources."table-6.0.7"
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
sources."trim-newlines-3.0.0"
@@ -68728,7 +68819,7 @@ in
sources."enquirer-2.3.6"
sources."escape-string-regexp-1.0.5"
sources."eslint-7.17.0"
- sources."eslint-plugin-vue-7.4.0"
+ sources."eslint-plugin-vue-7.4.1"
sources."eslint-scope-5.1.1"
(sources."eslint-utils-2.1.0" // {
dependencies = [
@@ -68820,7 +68911,7 @@ in
sources."strip-ansi-6.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.0.6" // {
+ (sources."table-6.0.7" // {
dependencies = [
sources."ajv-7.0.3"
sources."json-schema-traverse-1.0.0"
@@ -69558,7 +69649,7 @@ in
sources."strip-final-newline-2.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
- sources."systeminformation-4.33.5"
+ sources."systeminformation-4.34.2"
sources."term-size-2.2.1"
sources."through-2.3.8"
sources."tmp-0.2.1"
@@ -69645,7 +69736,7 @@ in
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.3"
sources."@types/minimist-1.2.1"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/normalize-package-data-2.4.0"
sources."aggregate-error-3.1.0"
sources."ansi-styles-3.2.1"
@@ -70016,7 +70107,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -71096,7 +71187,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.4"
@@ -71291,7 +71382,7 @@ in
sources."@types/http-cache-semantics-4.0.0"
sources."@types/keyv-3.1.1"
sources."@types/minimist-1.2.1"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/normalize-package-data-2.4.0"
sources."@types/responselike-1.0.0"
sources."@types/yoga-layout-1.9.2"
@@ -73204,7 +73295,7 @@ in
sources."ws-7.4.2"
sources."xmlhttprequest-ssl-1.5.5"
sources."xtend-4.0.2"
- sources."y18n-3.2.1"
+ sources."y18n-3.2.2"
sources."yallist-4.0.0"
(sources."yargs-7.1.1" // {
dependencies = [
@@ -73374,7 +73465,7 @@ in
sources."strip-ansi-6.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.0.6" // {
+ (sources."table-6.0.7" // {
dependencies = [
sources."ajv-7.0.3"
sources."json-schema-traverse-1.0.0"
@@ -73533,7 +73624,7 @@ in
sources."strip-ansi-6.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.0.6" // {
+ (sources."table-6.0.7" // {
dependencies = [
sources."ajv-7.0.3"
sources."json-schema-traverse-1.0.0"
@@ -74256,7 +74347,7 @@ in
})
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001171"
+ sources."caniuse-lite-1.0.30001173"
sources."capture-stack-trace-1.0.1"
sources."caseless-0.12.0"
(sources."chalk-4.1.0" // {
@@ -74385,8 +74476,8 @@ in
sources."slash-3.0.0"
];
})
- sources."core-js-3.8.1"
- (sources."core-js-compat-3.8.1" // {
+ sources."core-js-3.8.2"
+ (sources."core-js-compat-3.8.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -74448,7 +74539,7 @@ in
sources."dag-map-1.0.2"
sources."dashdash-1.14.1"
sources."dateformat-3.0.3"
- sources."dayjs-1.9.8"
+ sources."dayjs-1.10.1"
sources."debug-4.3.2"
sources."debuglog-1.0.1"
sources."decache-4.4.0"
@@ -74533,7 +74624,7 @@ in
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.633"
+ sources."electron-to-chromium-1.3.634"
(sources."elliptic-6.5.3" // {
dependencies = [
sources."bn.js-4.11.9"
@@ -75167,7 +75258,7 @@ in
sources."punycode-1.4.1"
];
})
- sources."node-releases-1.1.67"
+ sources."node-releases-1.1.69"
sources."nopt-5.0.0"
sources."normalize-path-3.0.0"
sources."normalize-url-3.3.0"
@@ -77061,7 +77152,7 @@ in
(sources."@grpc/grpc-js-1.1.8" // {
dependencies = [
sources."@grpc/proto-loader-0.6.0-pre9"
- sources."@types/node-12.19.11"
+ sources."@types/node-12.19.12"
sources."semver-6.3.0"
];
})
@@ -77091,7 +77182,7 @@ in
sources."@szmarczak/http-timer-1.1.2"
sources."@types/duplexify-3.6.0"
sources."@types/long-4.0.1"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."JSONStream-1.3.5"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -77653,7 +77744,7 @@ in
sources."promise-breaker-5.0.0"
(sources."protobufjs-6.10.2" // {
dependencies = [
- sources."@types/node-13.13.38"
+ sources."@types/node-13.13.39"
];
})
sources."proxy-addr-2.0.6"
@@ -77881,10 +77972,10 @@ in
fixjson = nodeEnv.buildNodePackage {
name = "fixjson";
packageName = "fixjson";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/fixjson/-/fixjson-1.1.1.tgz";
- sha512 = "cKclzjy4yv7Byu/v7hW4a4hwNgrINI/g2K/d3dtcMScdtY8BwBApb1gGBTLppuRaQpfdM/z0xj+5l8xcVKCm8w==";
+ url = "https://registry.npmjs.org/fixjson/-/fixjson-1.1.2.tgz";
+ sha512 = "NptKAXT3UrePy8JfK6ww/yiwqjVipouoEYUucKVpLNOiOWsrZ7XtcG3iUWpb3yGUoaN7OEafsd3cEGFMIjoXUQ==";
};
dependencies = [
sources."ansi-regex-5.0.0"
@@ -78538,7 +78629,7 @@ in
sources."wordwrap-0.0.3"
sources."wrap-ansi-2.1.0"
sources."wrappy-1.0.2"
- sources."y18n-3.2.1"
+ sources."y18n-3.2.2"
sources."yargs-3.32.0"
];
buildInputs = globalBuildInputs;
@@ -78701,7 +78792,7 @@ in
sources."multiserver-3.7.0"
sources."multiserver-address-1.0.1"
sources."multiserver-scopes-1.0.0"
- sources."muxrpc-6.5.1"
+ sources."muxrpc-6.5.2"
sources."nearley-2.20.1"
sources."node-gyp-build-4.2.3"
sources."node-polyglot-1.0.0"
@@ -78709,7 +78800,7 @@ in
sources."options-0.0.6"
sources."os-homedir-1.0.2"
sources."packet-stream-2.0.5"
- sources."packet-stream-codec-1.1.2"
+ sources."packet-stream-codec-1.1.3"
sources."pako-1.0.11"
sources."private-box-0.3.1"
sources."progress-1.1.8"
@@ -78805,7 +78896,7 @@ in
})
sources."ssb-msgs-5.2.0"
sources."ssb-pull-requests-1.0.0"
- sources."ssb-ref-2.14.2"
+ sources."ssb-ref-2.14.3"
(sources."stream-to-pull-stream-1.7.3" // {
dependencies = [
sources."looper-3.0.0"
@@ -79215,7 +79306,7 @@ in
sources."@nodelib/fs.walk-1.2.6"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.1"
sources."aggregate-error-3.1.0"
@@ -80106,7 +80197,7 @@ in
sources."supports-color-7.2.0"
];
})
- sources."systeminformation-4.33.5"
+ sources."systeminformation-4.34.2"
sources."term-canvas-0.0.5"
sources."type-fest-0.11.0"
sources."wordwrap-0.0.3"
@@ -80579,7 +80670,7 @@ in
sources."wrap-ansi-2.1.0"
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
- sources."y18n-3.2.1"
+ sources."y18n-3.2.2"
sources."yargs-7.1.1"
sources."yargs-parser-5.0.0-security.0"
];
@@ -80933,7 +81024,7 @@ in
sources."which-1.3.1"
sources."which-module-1.0.0"
sources."wrap-ansi-2.1.0"
- sources."y18n-3.2.1"
+ sources."y18n-3.2.2"
sources."yargs-7.1.1"
sources."yargs-parser-5.0.0-security.0"
];
@@ -82454,7 +82545,7 @@ in
sources."wrappy-1.0.2"
sources."xmldom-0.4.0"
sources."xpath-0.0.32"
- sources."y18n-3.2.1"
+ sources."y18n-3.2.2"
sources."yallist-4.0.0"
sources."yargs-6.6.0"
sources."yargs-parser-4.2.1"
@@ -82647,7 +82738,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.820.0" // {
+ (sources."aws-sdk-2.821.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-3.3.2"
@@ -83371,20 +83462,18 @@ in
js-yaml = nodeEnv.buildNodePackage {
name = "js-yaml";
packageName = "js-yaml";
- version = "3.14.1";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz";
- sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==";
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz";
+ sha512 = "pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==";
};
dependencies = [
- sources."argparse-1.0.10"
- sources."esprima-4.0.1"
- sources."sprintf-js-1.0.3"
+ sources."argparse-2.0.1"
];
buildInputs = globalBuildInputs;
meta = {
description = "YAML 1.2 parser and serializer";
- homepage = https://github.com/nodeca/js-yaml;
+ homepage = "https://github.com/nodeca/js-yaml#readme";
license = "MIT";
};
production = true;
@@ -83870,19 +83959,16 @@ in
sources."ansi-styles-4.3.0"
sources."anymatch-3.1.1"
sources."arraybuffer.slice-0.0.7"
- sources."async-limiter-1.0.1"
sources."backo2-1.0.2"
sources."balanced-match-1.0.0"
sources."base64-arraybuffer-0.1.4"
sources."base64id-2.0.0"
- sources."better-assert-1.0.2"
sources."binary-extensions-2.1.0"
sources."blob-0.0.5"
sources."body-parser-1.19.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."bytes-3.1.0"
- sources."callsite-1.0.0"
sources."camelcase-5.3.1"
sources."chokidar-3.4.3"
sources."cliui-6.0.0"
@@ -83890,12 +83976,12 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."component-bind-1.0.0"
- sources."component-emitter-1.2.1"
+ sources."component-emitter-1.3.0"
sources."component-inherit-0.0.3"
sources."concat-map-0.0.1"
sources."connect-3.7.0"
sources."content-type-1.0.4"
- sources."cookie-0.3.1"
+ sources."cookie-0.4.1"
sources."custom-event-1.0.1"
sources."date-format-3.0.0"
sources."debug-2.6.9"
@@ -83906,19 +83992,15 @@ in
sources."ee-first-1.1.1"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
- (sources."engine.io-3.4.2" // {
+ (sources."engine.io-3.5.0" // {
dependencies = [
sources."debug-4.1.1"
sources."ms-2.1.3"
];
})
- (sources."engine.io-client-3.4.4" // {
+ (sources."engine.io-client-3.5.0" // {
dependencies = [
- sources."component-emitter-1.3.0"
sources."debug-3.1.0"
- sources."parseqs-0.0.6"
- sources."parseuri-0.0.6"
- sources."ws-6.1.4"
];
})
sources."engine.io-parser-2.2.1"
@@ -83970,14 +84052,13 @@ in
sources."ms-2.0.0"
sources."negotiator-0.6.2"
sources."normalize-path-3.0.0"
- sources."object-component-0.0.3"
sources."on-finished-2.3.0"
sources."once-1.4.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
- sources."parseqs-0.0.5"
- sources."parseuri-0.0.5"
+ sources."parseqs-0.0.6"
+ sources."parseuri-0.0.6"
sources."parseurl-1.3.3"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
@@ -83995,29 +84076,22 @@ in
sources."safer-buffer-2.1.2"
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.1"
- (sources."socket.io-2.3.0" // {
+ (sources."socket.io-2.4.0" // {
dependencies = [
sources."debug-4.1.1"
sources."ms-2.1.3"
];
})
sources."socket.io-adapter-1.1.2"
- (sources."socket.io-client-2.3.0" // {
+ (sources."socket.io-client-2.4.0" // {
dependencies = [
- sources."base64-arraybuffer-0.1.5"
- sources."debug-4.1.1"
- sources."ms-2.1.3"
- (sources."socket.io-parser-3.3.1" // {
- dependencies = [
- sources."component-emitter-1.3.0"
- sources."debug-3.1.0"
- sources."ms-2.0.0"
- ];
- })
+ sources."debug-3.1.0"
+ sources."socket.io-parser-3.3.1"
];
})
(sources."socket.io-parser-3.4.1" // {
dependencies = [
+ sources."component-emitter-1.2.1"
sources."debug-4.1.1"
sources."ms-2.1.3"
];
@@ -84388,7 +84462,7 @@ in
sources."wrap-ansi-2.1.0"
sources."wrappy-1.0.2"
sources."xml-name-validator-2.0.1"
- sources."y18n-3.2.1"
+ sources."y18n-3.2.2"
(sources."yargs-12.0.4" // {
dependencies = [
sources."ansi-regex-3.0.0"
@@ -84560,7 +84634,7 @@ in
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.3"
sources."@types/minimist-1.2.1"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/normalize-package-data-2.4.0"
sources."@zkochan/cmd-shim-3.1.0"
sources."JSONStream-1.3.5"
@@ -85869,7 +85943,6 @@ in
sources."assert-plus-1.0.0"
sources."assign-symbols-1.0.0"
sources."async-each-1.0.3"
- sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
sources."aws-sign2-0.7.0"
@@ -85884,7 +85957,6 @@ in
sources."base64-arraybuffer-0.1.4"
sources."base64id-2.0.0"
sources."bcrypt-pbkdf-1.0.2"
- sources."better-assert-1.0.2"
sources."binary-extensions-1.13.1"
sources."bindings-1.5.0"
sources."blob-0.0.5"
@@ -85896,7 +85968,6 @@ in
sources."isobject-3.0.1"
];
})
- sources."callsite-1.0.0"
sources."caseless-0.12.0"
sources."chokidar-1.7.0"
(sources."class-utils-0.3.6" // {
@@ -85943,19 +86014,16 @@ in
sources."ee-first-1.1.1"
sources."emoji-regex-6.1.1"
sources."encodeurl-1.0.2"
- (sources."engine.io-3.4.2" // {
+ (sources."engine.io-3.5.0" // {
dependencies = [
- sources."cookie-0.3.1"
+ sources."cookie-0.4.1"
sources."debug-4.1.1"
sources."ms-2.1.3"
];
})
- (sources."engine.io-client-3.4.4" // {
+ (sources."engine.io-client-3.5.0" // {
dependencies = [
sources."debug-3.1.0"
- sources."parseqs-0.0.6"
- sources."parseuri-0.0.6"
- sources."ws-6.1.4"
];
})
sources."engine.io-parser-2.2.1"
@@ -86100,7 +86168,6 @@ in
sources."negotiator-0.6.2"
sources."normalize-path-2.1.1"
sources."oauth-sign-0.9.0"
- sources."object-component-0.0.3"
(sources."object-copy-0.1.0" // {
dependencies = [
sources."define-property-0.2.5"
@@ -86127,8 +86194,8 @@ in
sources."on-finished-2.3.0"
sources."opn-5.5.0"
sources."parse-glob-3.0.4"
- sources."parseqs-0.0.5"
- sources."parseuri-0.0.5"
+ sources."parseqs-0.0.6"
+ sources."parseuri-0.0.6"
sources."parseurl-1.3.3"
sources."pascalcase-0.1.1"
sources."path-is-absolute-1.0.1"
@@ -86253,27 +86320,18 @@ in
];
})
sources."snapdragon-util-3.0.1"
- (sources."socket.io-2.3.0" // {
+ (sources."socket.io-2.4.0" // {
dependencies = [
sources."debug-4.1.1"
sources."ms-2.1.3"
];
})
sources."socket.io-adapter-1.1.2"
- (sources."socket.io-client-2.3.0" // {
+ (sources."socket.io-client-2.4.0" // {
dependencies = [
- sources."base64-arraybuffer-0.1.5"
- sources."component-emitter-1.2.1"
- sources."debug-4.1.1"
+ sources."debug-3.1.0"
sources."isarray-2.0.1"
- sources."ms-2.1.3"
- (sources."socket.io-parser-3.3.1" // {
- dependencies = [
- sources."component-emitter-1.3.0"
- sources."debug-3.1.0"
- sources."ms-2.0.0"
- ];
- })
+ sources."socket.io-parser-3.3.1"
];
})
(sources."socket.io-parser-3.4.1" // {
@@ -86486,7 +86544,7 @@ in
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-schema-7.0.6"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/normalize-package-data-2.4.0"
sources."@types/resolve-0.0.8"
sources."@types/yargs-15.0.12"
@@ -86656,7 +86714,7 @@ in
sources."cached-path-relative-1.0.2"
sources."call-bind-1.0.0"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001171"
+ sources."caniuse-lite-1.0.30001173"
sources."capture-exit-2.0.0"
sources."caseless-0.12.0"
(sources."chalk-3.0.0" // {
@@ -86729,7 +86787,7 @@ in
})
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.8.1" // {
+ (sources."core-js-compat-3.8.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -86780,7 +86838,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.3.633"
+ sources."electron-to-chromium-1.3.634"
(sources."elliptic-6.5.3" // {
dependencies = [
sources."bn.js-4.11.9"
@@ -86875,7 +86933,7 @@ in
sources."fs-constants-1.0.0"
sources."fs-write-stream-atomic-1.0.10"
sources."fs.realpath-1.0.0"
- sources."fsevents-2.2.1"
+ sources."fsevents-2.3.1"
sources."function-bind-1.1.1"
sources."gensync-1.0.0-beta.2"
sources."get-assigned-identifiers-1.2.0"
@@ -87090,7 +87148,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.67"
+ sources."node-releases-1.1.69"
sources."normalize-package-data-2.5.0"
sources."normalize-path-3.0.0"
sources."npm-run-path-2.0.2"
@@ -87979,7 +88037,7 @@ in
};
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/yauzl-2.9.1"
sources."agent-base-5.1.1"
sources."ansi-styles-4.3.0"
@@ -88659,10 +88717,10 @@ in
netlify-cli = nodeEnv.buildNodePackage {
name = "netlify-cli";
packageName = "netlify-cli";
- version = "2.69.11";
+ version = "2.70.0";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-2.69.11.tgz";
- sha512 = "d6yj11oi+4lzS2dkXYGmhzYlU90S+2utjnrkwD2DdIPGuLLax0XISZ7TMdTPdPuhRF7o0Z9U0GcMMd/0VH3ukQ==";
+ url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-2.70.0.tgz";
+ sha512 = "VET5LUeZP2TX+xBXYQdiKkVyQfeW+HkeL7pRE2fGOi14fLE3BYSjjdmnCHDX83hgYniHIxKJBH/52zkyQ+m+2Q==";
};
dependencies = [
sources."@babel/code-frame-7.12.11"
@@ -88779,22 +88837,27 @@ in
sources."@dabh/diagnostics-2.0.2"
sources."@jest/types-24.9.0"
sources."@mrmlnc/readdir-enhanced-2.2.1"
- (sources."@netlify/build-8.0.0" // {
+ (sources."@netlify/build-8.0.1" // {
dependencies = [
+ sources."@netlify/zip-it-and-ship-it-2.0.0"
sources."ansi-styles-4.3.0"
sources."chalk-3.0.0"
sources."resolve-2.0.0-next.2"
];
})
sources."@netlify/cache-utils-1.0.6"
- (sources."@netlify/config-2.4.2" // {
+ (sources."@netlify/config-2.4.3" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-3.0.0"
- sources."netlify-5.0.2"
];
})
- sources."@netlify/functions-utils-1.3.3"
+ (sources."@netlify/functions-utils-1.3.4" // {
+ dependencies = [
+ sources."@netlify/zip-it-and-ship-it-2.0.0"
+ sources."resolve-2.0.0-next.2"
+ ];
+ })
(sources."@netlify/git-utils-1.0.6" // {
dependencies = [
sources."braces-3.0.2"
@@ -88804,7 +88867,7 @@ in
sources."to-regex-range-5.0.1"
];
})
- sources."@netlify/open-api-0.18.1"
+ sources."@netlify/open-api-1.0.0"
sources."@netlify/plugin-edge-handlers-1.10.0"
sources."@netlify/plugins-list-2.2.0"
sources."@netlify/run-utils-1.0.5"
@@ -88837,9 +88900,13 @@ in
})
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."has-flag-3.0.0"
+ sources."has-flag-4.0.0"
sources."strip-ansi-5.2.0"
- sources."supports-color-5.5.0"
+ (sources."supports-color-5.5.0" // {
+ dependencies = [
+ sources."has-flag-3.0.0"
+ ];
+ })
];
})
(sources."@oclif/command-1.8.0" // {
@@ -88913,7 +88980,6 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."fs-extra-7.0.1"
- sources."has-flag-3.0.0"
sources."indent-string-3.2.0"
sources."is-wsl-1.1.0"
sources."semver-5.7.1"
@@ -89001,7 +89067,7 @@ in
sources."@types/istanbul-reports-1.1.2"
sources."@types/minimatch-3.0.3"
sources."@types/mkdirp-0.5.2"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/node-fetch-2.5.7"
sources."@types/normalize-package-data-2.4.0"
sources."@types/parse5-5.0.3"
@@ -89043,10 +89109,9 @@ in
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
- sources."argparse-1.0.10"
+ sources."argparse-2.0.1"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
@@ -89069,7 +89134,7 @@ in
sources."at-least-node-1.0.0"
sources."atob-2.1.2"
sources."atob-lite-2.0.0"
- (sources."aws-sdk-2.820.0" // {
+ (sources."aws-sdk-2.821.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -89088,18 +89153,11 @@ in
sources."base64-js-1.5.1"
sources."before-after-hook-2.1.0"
sources."binary-extensions-2.1.0"
- (sources."bl-0.8.2" // {
- dependencies = [
- sources."isarray-0.0.1"
- sources."readable-stream-1.0.34"
- sources."string_decoder-0.10.31"
- ];
- })
+ sources."bl-4.0.3"
sources."bn.js-5.1.3"
(sources."body-parser-1.19.0" // {
dependencies = [
sources."debug-2.6.9"
- sources."qs-6.7.0"
sources."raw-body-2.4.0"
];
})
@@ -89146,7 +89204,7 @@ in
sources."call-bind-1.0.0"
sources."call-me-maybe-1.0.1"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001171"
+ sources."caniuse-lite-1.0.30001173"
sources."cardinal-2.1.1"
sources."caw-2.0.1"
sources."ccount-1.1.0"
@@ -89156,7 +89214,6 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."escape-string-regexp-1.0.5"
- sources."has-flag-3.0.0"
sources."supports-color-5.5.0"
];
})
@@ -89201,9 +89258,12 @@ in
dependencies = [
sources."ansi-escapes-4.3.1"
sources."ansi-styles-4.3.0"
+ sources."argparse-1.0.10"
sources."chalk-4.1.0"
sources."clean-stack-3.0.1"
sources."extract-stack-2.0.0"
+ sources."has-flag-4.0.0"
+ sources."js-yaml-3.14.1"
sources."supports-hyperlinks-2.1.0"
sources."tslib-2.0.3"
sources."type-fest-0.11.0"
@@ -89236,7 +89296,6 @@ in
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
sources."concat-map-0.0.1"
@@ -89244,7 +89303,6 @@ in
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
(sources."concordance-4.0.0" // {
@@ -89253,12 +89311,7 @@ in
];
})
sources."config-chain-1.1.12"
- (sources."configstore-5.0.1" // {
- dependencies = [
- sources."crypto-random-string-2.0.0"
- sources."unique-string-2.0.0"
- ];
- })
+ sources."configstore-5.0.1"
(sources."content-disposition-0.5.3" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -89279,10 +89332,9 @@ in
sources."readable-stream-2.3.7"
sources."readdirp-2.2.1"
sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
- (sources."core-js-compat-3.8.1" // {
+ (sources."core-js-compat-3.8.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -89310,7 +89362,7 @@ in
];
})
sources."crypto-browserify-3.12.0"
- sources."crypto-random-string-1.0.0"
+ sources."crypto-random-string-2.0.0"
sources."cyclist-1.0.1"
sources."date-time-2.1.0"
(sources."debug-4.3.2" // {
@@ -89337,7 +89389,6 @@ in
sources."file-type-5.2.0"
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
sources."tar-stream-1.6.2"
];
})
@@ -89423,7 +89474,7 @@ in
})
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.633"
+ sources."electron-to-chromium-1.3.634"
sources."elf-cam-0.1.1"
(sources."elliptic-6.5.3" // {
dependencies = [
@@ -89490,7 +89541,6 @@ in
dependencies = [
sources."cookie-0.4.0"
sources."debug-2.6.9"
- sources."qs-6.7.0"
sources."safe-buffer-5.1.2"
];
})
@@ -89560,7 +89610,6 @@ in
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
sources."from2-array-0.0.4"
@@ -89636,7 +89685,7 @@ in
sources."ansi-regex-0.2.1"
];
})
- sources."has-flag-4.0.0"
+ sources."has-flag-3.0.0"
(sources."has-glob-1.0.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -89787,7 +89836,7 @@ in
sources."jmespath-0.15.0"
sources."js-string-escape-1.0.1"
sources."js-tokens-4.0.0"
- sources."js-yaml-3.14.1"
+ sources."js-yaml-4.0.0"
sources."jsesc-2.5.2"
sources."json-buffer-3.0.0"
sources."json-parse-better-errors-1.0.2"
@@ -89810,7 +89859,6 @@ in
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
(sources."level-blobs-0.1.7" // {
@@ -89846,6 +89894,7 @@ in
})
(sources."levelup-0.18.6" // {
dependencies = [
+ sources."bl-0.8.2"
sources."isarray-0.0.1"
sources."prr-0.0.0"
sources."readable-stream-1.0.34"
@@ -89972,24 +90021,30 @@ in
sources."natural-orderby-2.0.3"
sources."negotiator-0.6.2"
sources."nested-error-stacks-2.1.0"
- (sources."netlify-6.0.7" // {
+ (sources."netlify-6.0.9" // {
dependencies = [
- sources."@netlify/open-api-1.0.0"
+ sources."@netlify/zip-it-and-ship-it-2.0.0"
+ sources."qs-6.9.4"
+ sources."resolve-2.0.0-next.2"
];
})
sources."netlify-plugin-deploy-preview-commenting-0.0.1-alpha.16"
(sources."netlify-redirect-parser-2.5.0" // {
dependencies = [
sources."@netlify/config-0.11.11"
+ sources."@netlify/open-api-0.18.1"
sources."ansi-styles-4.3.0"
+ sources."argparse-1.0.10"
sources."chalk-3.0.0"
+ sources."js-yaml-3.14.1"
sources."netlify-4.9.0"
+ sources."qs-6.9.4"
];
})
sources."netlify-redirector-0.2.1"
sources."nice-try-1.0.5"
sources."node-fetch-2.6.1"
- sources."node-releases-1.1.67"
+ sources."node-releases-1.1.69"
sources."node-source-walk-4.2.0"
sources."noop2-2.0.0"
(sources."normalize-package-data-2.5.0" // {
@@ -90084,7 +90139,6 @@ in
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
sources."parse-asn1-5.1.6"
@@ -90114,7 +90168,6 @@ in
sources."posix-character-classes-0.1.1"
(sources."postcss-7.0.35" // {
dependencies = [
- sources."has-flag-3.0.0"
sources."source-map-0.6.1"
sources."supports-color-6.1.0"
];
@@ -90147,7 +90200,7 @@ in
sources."pump-3.0.0"
sources."punycode-1.3.2"
sources."pupa-2.1.1"
- sources."qs-6.9.4"
+ sources."qs-6.7.0"
sources."query-string-5.1.1"
sources."querystring-0.2.0"
sources."random-bytes-1.0.0"
@@ -90207,7 +90260,7 @@ in
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
sources."ripemd160-2.0.2"
- sources."rollup-2.35.1"
+ sources."rollup-2.36.0"
sources."rollup-plugin-node-builtins-2.1.2"
sources."rollup-plugin-terser-7.0.2"
sources."run-async-2.4.1"
@@ -90342,7 +90395,11 @@ in
sources."strict-uri-encode-1.1.0"
sources."string-range-1.2.2"
sources."string-width-4.2.0"
- sources."string_decoder-1.3.0"
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."stringify-entities-3.1.0"
(sources."strip-ansi-6.0.0" // {
dependencies = [
@@ -90360,7 +90417,11 @@ in
sources."escape-string-regexp-1.0.5"
];
})
- sources."supports-color-7.2.0"
+ (sources."supports-color-7.2.0" // {
+ dependencies = [
+ sources."has-flag-4.0.0"
+ ];
+ })
(sources."supports-hyperlinks-1.0.1" // {
dependencies = [
sources."has-flag-2.0.0"
@@ -90371,15 +90432,13 @@ in
})
];
})
- (sources."tar-stream-2.2.0" // {
- dependencies = [
- sources."bl-4.0.3"
- ];
- })
+ sources."tar-stream-2.2.0"
sources."temp-dir-1.0.0"
(sources."tempy-0.3.0" // {
dependencies = [
+ sources."crypto-random-string-1.0.0"
sources."type-fest-0.3.1"
+ sources."unique-string-1.0.0"
];
})
sources."term-size-2.2.1"
@@ -90394,7 +90453,6 @@ in
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
sources."through2-filter-3.0.0"
@@ -90425,7 +90483,7 @@ in
sources."triple-beam-1.3.0"
sources."trough-1.0.5"
sources."tslib-1.14.1"
- sources."tsutils-3.17.1"
+ sources."tsutils-3.18.0"
sources."tunnel-agent-0.6.0"
sources."type-check-0.3.2"
sources."type-fest-0.8.1"
@@ -90446,7 +90504,7 @@ in
})
sources."union-value-1.0.1"
sources."uniq-1.0.1"
- sources."unique-string-1.0.0"
+ sources."unique-string-2.0.0"
sources."unist-util-is-4.0.4"
sources."unist-util-stringify-position-2.0.3"
sources."unist-util-visit-2.0.3"
@@ -90519,7 +90577,6 @@ in
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
sources."word-wrap-1.2.3"
@@ -90998,7 +91055,7 @@ in
})
sources."xmldom-0.1.31"
sources."xtend-4.0.2"
- sources."y18n-3.2.1"
+ sources."y18n-3.2.2"
sources."yargs-3.32.0"
];
buildInputs = globalBuildInputs;
@@ -91998,7 +92055,7 @@ in
sources."@types/http-cache-semantics-4.0.0"
sources."@types/keyv-3.1.1"
sources."@types/minimist-1.2.1"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/normalize-package-data-2.4.0"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -93294,7 +93351,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001171"
+ sources."caniuse-lite-1.0.30001173"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -93321,7 +93378,7 @@ in
sources."convert-source-map-1.7.0"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.8.1" // {
+ (sources."core-js-compat-3.8.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -93429,7 +93486,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.633"
+ sources."electron-to-chromium-1.3.634"
(sources."elliptic-6.5.3" // {
dependencies = [
sources."bn.js-4.11.9"
@@ -93684,7 +93741,7 @@ in
sources."punycode-1.4.1"
];
})
- sources."node-releases-1.1.67"
+ sources."node-releases-1.1.69"
sources."normalize-path-3.0.0"
sources."normalize-url-3.3.0"
sources."nth-check-1.0.2"
@@ -94941,7 +94998,6 @@ in
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
sources."async-2.6.3"
- sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
@@ -94953,7 +95009,6 @@ in
sources."basic-auth-2.0.1"
sources."bcrypt-pbkdf-1.0.2"
sources."bencode-0.7.0"
- sources."better-assert-1.0.2"
sources."bitfield-0.1.0"
sources."bittorrent-dht-6.4.2"
(sources."bittorrent-tracker-7.7.0" // {
@@ -94978,7 +95033,6 @@ in
sources."buffer-fill-1.0.0"
sources."buffer-from-1.1.1"
sources."bytes-3.1.0"
- sources."callsite-1.0.0"
sources."caseless-0.12.0"
sources."chrome-dgram-3.0.6"
sources."chrome-dns-1.0.1"
@@ -94986,7 +95040,7 @@ in
sources."combined-stream-1.0.8"
sources."compact2string-1.4.1"
sources."component-bind-1.0.0"
- sources."component-emitter-1.2.1"
+ sources."component-emitter-1.3.0"
sources."component-inherit-0.0.3"
(sources."compress-commons-2.1.1" // {
dependencies = [
@@ -95017,20 +95071,16 @@ in
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- (sources."engine.io-3.4.2" // {
+ (sources."engine.io-3.5.0" // {
dependencies = [
- sources."cookie-0.3.1"
+ sources."cookie-0.4.1"
sources."debug-4.1.1"
sources."ms-2.1.3"
];
})
- (sources."engine.io-client-3.4.4" // {
+ (sources."engine.io-client-3.5.0" // {
dependencies = [
- sources."component-emitter-1.3.0"
sources."debug-3.1.0"
- sources."parseqs-0.0.6"
- sources."parseuri-0.0.6"
- sources."ws-6.1.4"
];
})
sources."engine.io-parser-2.2.1"
@@ -95140,7 +95190,6 @@ in
sources."negotiator-0.6.2"
sources."normalize-path-3.0.0"
sources."oauth-sign-0.9.0"
- sources."object-component-0.0.3"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -95151,8 +95200,8 @@ in
];
})
sources."parse-torrent-file-2.1.4"
- sources."parseqs-0.0.5"
- sources."parseuri-0.0.5"
+ sources."parseqs-0.0.6"
+ sources."parseuri-0.0.6"
sources."parseurl-1.3.3"
sources."path-is-absolute-1.0.1"
sources."path-to-regexp-0.1.7"
@@ -95215,30 +95264,23 @@ in
sources."ws-2.3.1"
];
})
- (sources."socket.io-2.3.0" // {
+ (sources."socket.io-2.4.0" // {
dependencies = [
sources."debug-4.1.1"
sources."ms-2.1.3"
];
})
sources."socket.io-adapter-1.1.2"
- (sources."socket.io-client-2.3.0" // {
+ (sources."socket.io-client-2.4.0" // {
dependencies = [
- sources."base64-arraybuffer-0.1.5"
- sources."debug-4.1.1"
+ sources."debug-3.1.0"
sources."isarray-2.0.1"
- sources."ms-2.1.3"
- (sources."socket.io-parser-3.3.1" // {
- dependencies = [
- sources."component-emitter-1.3.0"
- sources."debug-3.1.0"
- sources."ms-2.0.0"
- ];
- })
+ sources."socket.io-parser-3.3.1"
];
})
(sources."socket.io-parser-3.4.1" // {
dependencies = [
+ sources."component-emitter-1.2.1"
sources."debug-4.1.1"
sources."isarray-2.0.1"
sources."ms-2.1.3"
@@ -95557,7 +95599,7 @@ in
sources."statuses-1.5.0"
sources."string_decoder-0.10.31"
sources."supports-color-7.2.0"
- sources."systeminformation-4.33.5"
+ sources."systeminformation-4.34.2"
sources."thunkify-2.1.2"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.0"
@@ -95592,10 +95634,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "5.14.1";
+ version = "5.14.3";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-5.14.1.tgz";
- sha512 = "zxdmGEMcvJq5JU4lb3s48xbDnT9C7PHk/aOO7kefgA2LklOuEakRx2sKyGyWRykyQMtOS7h1rD4kdCWsOrh6Hg==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-5.14.3.tgz";
+ sha512 = "PFjHFWCsHgaNCpOwOAgN6H71PA8td8PnwSE1ArXz//OyfdfIwws1s23XLmokhHcnE3JsBSiIR3NOW8JZ5QcxlQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -96147,10 +96189,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.98";
+ version = "1.1.99";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.98.tgz";
- sha512 = "zDynNde59nDGs58/FpOSndAAxbFTq0x3/RUHng+rN2Ir3Y9CUnYg1vH29q4RnMlwCT/ERrQbmOTxBeD9edUBvQ==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.99.tgz";
+ sha512 = "DAfK8uVLGF1nuBeFvEXhvApCecuHEpe8ncjnFW/WsBBIQ5JOsjjpwlUDvTutNjkoH9QCTqvg72g6ip9PdWFL/w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -96710,7 +96752,7 @@ in
sources."@emotion/unitless-0.7.5"
sources."@exodus/schemasafe-1.0.0-rc.3"
sources."@redocly/react-dropdown-aria-2.0.11"
- sources."@types/node-13.13.38"
+ sources."@types/node-13.13.39"
sources."ajv-5.5.2"
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
@@ -96768,7 +96810,7 @@ in
sources."color-name-1.1.3"
sources."console-browserify-1.2.0"
sources."constants-browserify-1.0.0"
- sources."core-js-3.8.1"
+ sources."core-js-3.8.2"
sources."core-util-is-1.0.2"
(sources."create-ecdh-4.0.4" // {
dependencies = [
@@ -97039,10 +97081,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "2.35.1";
+ version = "2.36.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.35.1.tgz";
- sha512 = "q5KxEyWpprAIcainhVy6HfRttD9kutQpHbeqDTWnqAFNJotiojetK6uqmcydNMymBEtC4I8bCYR+J3mTMqeaUA==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.36.0.tgz";
+ sha512 = "L38QyQK77bkJy9nPyeydnHFK6xMofqumh4scTV2d4RG4EFq6pGdxnn67dVHFUDJ9J0PSEQx8zn1FiVS5TydsKg==";
};
dependencies = [
sources."fsevents-2.1.3"
@@ -97070,34 +97112,37 @@ in
sources."chalk-2.4.2"
];
})
- sources."@eslint/eslintrc-0.2.2"
- sources."@rollup/plugin-commonjs-13.0.2"
- sources."@rollup/plugin-node-resolve-8.4.0"
- sources."@rollup/pluginutils-3.1.0"
- sources."@types/eslint-visitor-keys-1.0.0"
+ (sources."@eslint/eslintrc-0.2.2" // {
+ dependencies = [
+ sources."ignore-4.0.6"
+ ];
+ })
+ sources."@nodelib/fs.scandir-2.1.4"
+ sources."@nodelib/fs.stat-2.0.4"
+ sources."@nodelib/fs.walk-1.2.6"
+ sources."@rollup/plugin-commonjs-17.0.0"
+ sources."@rollup/plugin-node-resolve-11.0.1"
+ (sources."@rollup/pluginutils-3.1.0" // {
+ dependencies = [
+ sources."estree-walker-1.0.1"
+ ];
+ })
sources."@types/estree-0.0.39"
sources."@types/glob-7.1.3"
sources."@types/json-schema-7.0.6"
sources."@types/minimatch-3.0.3"
- sources."@types/mocha-7.0.2"
- sources."@types/node-12.7.12"
+ sources."@types/mocha-8.2.0"
+ sources."@types/node-12.12.70"
sources."@types/node-fetch-2.5.7"
sources."@types/resolve-1.17.1"
sources."@types/vscode-1.52.0"
- (sources."@typescript-eslint/eslint-plugin-3.10.1" // {
- dependencies = [
- sources."semver-7.3.4"
- ];
- })
- sources."@typescript-eslint/experimental-utils-3.10.1"
- sources."@typescript-eslint/parser-3.10.1"
- sources."@typescript-eslint/types-3.10.1"
- (sources."@typescript-eslint/typescript-estree-3.10.1" // {
- dependencies = [
- sources."semver-7.3.4"
- ];
- })
- sources."@typescript-eslint/visitor-keys-3.10.1"
+ sources."@typescript-eslint/eslint-plugin-4.12.0"
+ sources."@typescript-eslint/experimental-utils-4.12.0"
+ sources."@typescript-eslint/parser-4.12.0"
+ sources."@typescript-eslint/scope-manager-4.12.0"
+ sources."@typescript-eslint/types-4.12.0"
+ sources."@typescript-eslint/typescript-estree-4.12.0"
+ sources."@typescript-eslint/visitor-keys-4.12.0"
sources."@ungap/promise-all-settled-1.1.2"
sources."acorn-7.4.1"
sources."acorn-jsx-5.3.1"
@@ -97108,6 +97153,7 @@ in
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.1"
sources."argparse-1.0.10"
+ sources."array-union-2.1.0"
sources."astral-regex-2.0.0"
sources."asynckit-0.4.0"
sources."azure-devops-node-api-7.2.0"
@@ -97154,12 +97200,12 @@ in
sources."css-what-4.0.0"
sources."debug-4.3.2"
sources."decamelize-1.2.0"
- sources."deep-freeze-0.0.1"
sources."deep-is-0.1.3"
sources."deepmerge-4.2.2"
sources."delayed-stream-1.0.0"
sources."denodeify-1.2.1"
sources."diff-4.0.2"
+ sources."dir-glob-3.0.1"
sources."doctrine-3.0.0"
sources."dom-serializer-1.2.0"
sources."domelementtype-2.1.0"
@@ -97180,14 +97226,21 @@ in
sources."escape-string-regexp-1.0.5"
(sources."eslint-7.17.0" // {
dependencies = [
- sources."eslint-visitor-keys-2.0.0"
- sources."semver-7.3.4"
+ sources."ignore-4.0.6"
];
})
sources."eslint-scope-5.1.1"
- sources."eslint-utils-2.1.0"
- sources."eslint-visitor-keys-1.3.0"
- sources."espree-7.3.1"
+ (sources."eslint-utils-2.1.0" // {
+ dependencies = [
+ sources."eslint-visitor-keys-1.3.0"
+ ];
+ })
+ sources."eslint-visitor-keys-2.0.0"
+ (sources."espree-7.3.1" // {
+ dependencies = [
+ sources."eslint-visitor-keys-1.3.0"
+ ];
+ })
sources."esprima-4.0.1"
(sources."esquery-1.3.1" // {
dependencies = [
@@ -97200,11 +97253,13 @@ in
];
})
sources."estraverse-4.3.0"
- sources."estree-walker-1.0.1"
+ sources."estree-walker-2.0.2"
sources."esutils-2.0.3"
sources."fast-deep-equal-3.1.3"
+ sources."fast-glob-3.2.4"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
+ sources."fastq-1.10.0"
sources."fd-slicer-1.1.0"
sources."file-entry-cache-6.0.0"
sources."fill-range-7.0.1"
@@ -97221,6 +97276,7 @@ in
sources."glob-7.1.6"
sources."glob-parent-5.1.1"
sources."globals-12.4.0"
+ sources."globby-11.0.1"
sources."growl-1.10.5"
sources."has-1.0.3"
sources."has-flag-3.0.0"
@@ -97237,7 +97293,7 @@ in
sources."debug-3.2.7"
];
})
- sources."ignore-4.0.6"
+ sources."ignore-5.1.8"
sources."import-fresh-3.3.0"
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
@@ -97270,6 +97326,8 @@ in
];
})
sources."mdurl-1.0.1"
+ sources."merge2-1.4.1"
+ sources."micromatch-4.0.2"
sources."mime-1.6.0"
sources."mime-db-1.45.0"
sources."mime-types-2.1.28"
@@ -97311,6 +97369,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
sources."path-parse-1.0.6"
+ sources."path-type-4.0.0"
sources."pend-1.2.0"
sources."picomatch-2.2.2"
sources."prelude-ls-1.2.1"
@@ -97326,15 +97385,18 @@ in
sources."require-main-filename-2.0.0"
sources."resolve-1.19.0"
sources."resolve-from-4.0.0"
+ sources."reusify-1.0.4"
sources."rimraf-3.0.2"
- sources."rollup-2.35.1"
+ sources."rollup-2.36.0"
+ sources."run-parallel-1.1.10"
sources."safe-buffer-5.2.1"
- sources."semver-6.3.0"
+ sources."semver-7.3.4"
sources."serialize-javascript-5.0.1"
sources."set-blocking-2.0.0"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."sigmund-1.0.1"
+ sources."slash-3.0.0"
(sources."slice-ansi-4.0.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -97348,7 +97410,7 @@ in
sources."strip-ansi-6.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.0.6" // {
+ (sources."table-6.0.7" // {
dependencies = [
sources."ajv-7.0.3"
sources."json-schema-traverse-1.0.0"
@@ -97358,7 +97420,7 @@ in
sources."tmp-0.0.29"
sources."to-regex-range-5.0.1"
sources."tslib-2.0.3"
- (sources."tsutils-3.17.1" // {
+ (sources."tsutils-3.18.0" // {
dependencies = [
sources."tslib-1.14.1"
];
@@ -97367,7 +97429,7 @@ in
sources."type-check-0.4.0"
sources."type-fest-0.8.1"
sources."typed-rest-client-1.2.0"
- sources."typescript-3.9.7"
+ sources."typescript-4.1.3"
sources."typescript-formatter-7.2.2"
sources."uc.micro-1.0.6"
sources."underscore-1.8.3"
@@ -97381,10 +97443,10 @@ in
sources."semver-5.7.1"
];
})
- sources."vscode-jsonrpc-6.0.0-next.7"
- sources."vscode-languageclient-7.0.0-next.12"
- sources."vscode-languageserver-protocol-3.16.0-next.10"
- sources."vscode-languageserver-types-3.16.0-next.4"
+ sources."vscode-jsonrpc-6.0.0"
+ sources."vscode-languageclient-7.0.0"
+ sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-languageserver-types-3.16.0"
(sources."vscode-test-1.4.1" // {
dependencies = [
sources."rimraf-2.7.1"
@@ -97809,8 +97871,10 @@ in
];
})
sources."@serverless/template-1.1.4"
- (sources."@serverless/utils-2.1.0" // {
+ (sources."@serverless/utils-2.2.0" // {
dependencies = [
+ sources."argparse-2.0.1"
+ sources."js-yaml-4.0.0"
sources."write-file-atomic-3.0.3"
];
})
@@ -97824,7 +97888,7 @@ in
sources."@types/keyv-3.1.1"
sources."@types/lodash-4.14.167"
sources."@types/long-4.0.1"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/request-2.48.5"
sources."@types/request-promise-native-1.0.17"
sources."@types/responselike-1.0.0"
@@ -97881,7 +97945,7 @@ in
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.820.0" // {
+ (sources."aws-sdk-2.821.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -98014,7 +98078,7 @@ in
];
})
sources."dashdash-1.14.1"
- sources."dayjs-1.9.8"
+ sources."dayjs-1.10.1"
sources."debug-3.1.0"
sources."decode-uri-component-0.2.0"
sources."decompress-4.2.1"
@@ -98037,7 +98101,7 @@ in
sources."deferred-0.7.11"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
- sources."denque-1.4.1"
+ sources."denque-1.5.0"
sources."detect-libc-1.0.3"
sources."diagnostics-1.1.1"
sources."dijkstrajs-1.0.1"
@@ -98077,11 +98141,7 @@ in
sources."emoji-regex-8.0.0"
sources."enabled-1.0.2"
sources."end-of-stream-1.4.4"
- (sources."engine.io-client-3.4.4" // {
- dependencies = [
- sources."ws-6.1.4"
- ];
- })
+ sources."engine.io-client-3.5.0"
sources."engine.io-parser-2.2.1"
sources."env-variable-0.0.6"
sources."es5-ext-0.10.53"
@@ -98396,7 +98456,7 @@ in
sources."promise-queue-2.2.5"
(sources."protobufjs-6.10.2" // {
dependencies = [
- sources."@types/node-13.13.38"
+ sources."@types/node-13.13.39"
sources."long-4.0.0"
];
})
@@ -98455,7 +98515,7 @@ in
sources."simple-swizzle-0.2.2"
sources."slash-3.0.0"
sources."snappy-6.3.5"
- sources."socket.io-client-2.3.1"
+ sources."socket.io-client-2.4.0"
(sources."socket.io-parser-3.3.1" // {
dependencies = [
sources."isarray-2.0.1"
@@ -99294,7 +99354,7 @@ in
sources."@types/http-cache-semantics-4.0.0"
sources."@types/js-yaml-3.12.5"
sources."@types/keyv-3.1.1"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/responselike-1.0.0"
sources."@types/semver-5.5.0"
sources."@yarnpkg/lockfile-1.1.0"
@@ -99874,32 +99934,32 @@ in
"socket.io" = nodeEnv.buildNodePackage {
name = "socket.io";
packageName = "socket.io";
- version = "3.0.4";
+ version = "3.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-3.0.4.tgz";
- sha512 = "Vj1jUoO75WGc9txWd311ZJJqS9Dr8QtNJJ7gk2r7dcM/yGe9sit7qOijQl3GAwhpBOz/W8CwkD7R6yob07nLbA==";
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-3.0.5.tgz";
+ sha512 = "5yWQ43P/4IttmPCGKDQ3CVocBiJWGpibyhYJxgUhf69EHMzmK8XW0DkmHIoYdLmZaVZJyiEkUqpeC7rSCIqekw==";
};
dependencies = [
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.0"
sources."@types/cors-2.8.9"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."accepts-1.3.7"
sources."base64-arraybuffer-0.1.4"
sources."base64id-2.0.0"
sources."component-emitter-1.3.0"
sources."cookie-0.4.1"
sources."cors-2.8.5"
- sources."debug-4.1.1"
- sources."engine.io-4.0.5"
+ sources."debug-4.3.2"
+ sources."engine.io-4.0.6"
sources."engine.io-parser-4.0.2"
sources."mime-db-1.45.0"
sources."mime-types-2.1.28"
- sources."ms-2.1.3"
+ sources."ms-2.1.2"
sources."negotiator-0.6.2"
sources."object-assign-4.1.1"
sources."socket.io-adapter-2.0.3"
- sources."socket.io-parser-4.0.2"
+ sources."socket.io-parser-4.0.3"
sources."vary-1.1.2"
sources."ws-7.4.2"
];
@@ -100461,7 +100521,7 @@ in
sources."multiserver-address-1.0.1"
sources."multiserver-scopes-1.0.0"
sources."mutexify-1.3.1"
- sources."muxrpc-6.5.1"
+ sources."muxrpc-6.5.2"
sources."muxrpc-usage-2.1.0"
sources."muxrpc-validation-3.0.2"
sources."muxrpcli-3.1.2"
@@ -100530,7 +100590,7 @@ in
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
sources."packet-stream-2.0.5"
- sources."packet-stream-codec-1.1.2"
+ sources."packet-stream-codec-1.1.3"
sources."parse-entities-1.2.2"
sources."parse-glob-3.0.4"
sources."pascalcase-0.1.1"
@@ -100696,7 +100756,7 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."secret-handshake-1.1.20"
- sources."secret-stack-6.3.1"
+ sources."secret-stack-6.3.2"
sources."semver-5.7.1"
sources."separator-escape-0.0.1"
(sources."set-value-2.0.1" // {
@@ -100783,7 +100843,7 @@ in
})
sources."ssb-plugins-1.0.0"
sources."ssb-query-2.4.5"
- sources."ssb-ref-2.14.2"
+ sources."ssb-ref-2.14.3"
sources."ssb-replicate-1.3.2"
sources."ssb-unix-socket-1.0.0"
sources."ssb-validate-4.1.3"
@@ -100994,7 +101054,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.820.0" // {
+ (sources."aws-sdk-2.821.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -101018,7 +101078,6 @@ in
sources."base64url-3.0.1"
sources."basic-auth-1.1.0"
sources."bcrypt-pbkdf-1.0.2"
- sources."better-assert-1.0.2"
sources."bindings-1.2.1"
sources."blob-0.0.5"
sources."bluebird-2.11.0"
@@ -101039,7 +101098,6 @@ in
sources."busboy-0.2.14"
sources."bytebuffer-3.5.5"
sources."bytes-3.1.0"
- sources."callsite-1.0.0"
sources."camelcase-1.2.1"
sources."caseless-0.11.0"
sources."center-align-0.1.3"
@@ -101054,7 +101112,7 @@ in
sources."combined-stream-1.0.8"
sources."commander-2.20.3"
sources."component-bind-1.0.0"
- sources."component-emitter-1.2.1"
+ sources."component-emitter-1.3.0"
sources."component-inherit-0.0.3"
sources."compressible-2.0.18"
(sources."compression-1.7.4" // {
@@ -101130,21 +101188,18 @@ in
sources."ejs-0.8.8"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- (sources."engine.io-3.4.2" // {
+ (sources."engine.io-3.5.0" // {
dependencies = [
- sources."cookie-0.3.1"
+ sources."cookie-0.4.1"
sources."debug-4.1.1"
sources."ws-7.4.2"
];
})
- (sources."engine.io-client-3.4.4" // {
+ (sources."engine.io-client-3.5.0" // {
dependencies = [
- sources."component-emitter-1.3.0"
sources."debug-3.1.0"
sources."ms-2.0.0"
- sources."parseqs-0.0.6"
- sources."parseuri-0.0.6"
- sources."ws-6.1.4"
+ sources."ws-7.4.2"
];
})
sources."engine.io-parser-2.2.1"
@@ -101381,7 +101436,6 @@ in
sources."oauth-0.9.15"
sources."oauth-sign-0.8.2"
sources."object-assign-4.1.1"
- sources."object-component-0.0.3"
sources."object-hash-0.3.0"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
@@ -101397,8 +101451,8 @@ in
sources."p-locate-3.0.0"
sources."p-try-2.2.0"
sources."parse-json-2.2.0"
- sources."parseqs-0.0.5"
- sources."parseuri-0.0.5"
+ sources."parseqs-0.0.6"
+ sources."parseuri-0.0.6"
sources."parseurl-1.3.3"
sources."passport-0.3.2"
sources."passport-oauth2-1.5.0"
@@ -101526,28 +101580,23 @@ in
sources."signal-exit-3.0.3"
sources."slash-1.0.0"
sources."sntp-1.0.9"
- (sources."socket.io-2.3.0" // {
+ (sources."socket.io-2.4.0" // {
dependencies = [
sources."debug-4.1.1"
];
})
sources."socket.io-adapter-1.1.2"
- (sources."socket.io-client-2.3.0" // {
+ (sources."socket.io-client-2.4.0" // {
dependencies = [
- sources."base64-arraybuffer-0.1.5"
- sources."debug-4.1.1"
+ sources."debug-3.1.0"
sources."isarray-2.0.1"
sources."ms-2.0.0"
- (sources."socket.io-parser-3.3.1" // {
- dependencies = [
- sources."component-emitter-1.3.0"
- sources."debug-3.1.0"
- ];
- })
+ sources."socket.io-parser-3.3.1"
];
})
(sources."socket.io-parser-3.4.1" // {
dependencies = [
+ sources."component-emitter-1.2.1"
sources."debug-4.1.1"
sources."isarray-2.0.1"
];
@@ -101736,7 +101785,7 @@ in
sources."os-locale-1.4.0"
sources."string-width-1.0.2"
sources."which-module-1.0.0"
- sources."y18n-3.2.1"
+ sources."y18n-3.2.2"
sources."yargs-parser-4.2.1"
];
})
@@ -101825,7 +101874,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001171"
+ sources."caniuse-lite-1.0.30001173"
(sources."chalk-4.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -101863,7 +101912,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.633"
+ sources."electron-to-chromium-1.3.634"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -101957,7 +102006,7 @@ in
];
})
sources."ms-2.1.2"
- sources."node-releases-1.1.67"
+ sources."node-releases-1.1.69"
(sources."normalize-package-data-3.0.0" // {
dependencies = [
sources."semver-7.3.4"
@@ -102054,7 +102103,7 @@ in
sources."sugarss-2.0.0"
sources."supports-color-5.5.0"
sources."svg-tags-1.0.0"
- sources."table-6.0.6"
+ sources."table-6.0.7"
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
sources."trim-newlines-3.0.0"
@@ -103909,10 +103958,10 @@ in
textlint-rule-stop-words = nodeEnv.buildNodePackage {
name = "textlint-rule-stop-words";
packageName = "textlint-rule-stop-words";
- version = "2.0.7";
+ version = "2.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint-rule-stop-words/-/textlint-rule-stop-words-2.0.7.tgz";
- sha512 = "wBG1K2HfmQaHEjxMddRB9canjBbX6xaztVB5d0cgOBVj9NTvPVWf4z9OuTfYUEmIt84wAvQ6XxsIA9YTJ+N5Fg==";
+ url = "https://registry.npmjs.org/textlint-rule-stop-words/-/textlint-rule-stop-words-2.0.8.tgz";
+ sha512 = "D945uyFkeMo6KJhMJaFTEHudP+Jkl00rLOQKRibV1zl933muR6NXqz+uXAvitPAEWH20kwQA40E0Cd1t8nJQ1w==";
};
dependencies = [
sources."@textlint/ast-node-types-4.3.5"
@@ -104066,7 +104115,7 @@ in
sources."@types/debug-4.1.5"
sources."@types/http-cache-semantics-4.0.0"
sources."@types/keyv-3.1.1"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -104142,7 +104191,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.8.1"
+ sources."core-js-3.8.2"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -104365,7 +104414,7 @@ in
sources."parseurl-1.3.3"
sources."path-is-absolute-1.0.1"
sources."path-to-regexp-0.1.7"
- sources."peek-readable-3.1.0"
+ sources."peek-readable-3.1.1"
sources."performance-now-2.1.0"
sources."pify-4.0.1"
sources."precond-0.2.3"
@@ -104450,7 +104499,7 @@ in
sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
sources."strip-outer-1.0.1"
- sources."strtok3-6.0.4"
+ sources."strtok3-6.0.6"
sources."supports-color-7.2.0"
sources."tar-4.4.13"
sources."tlds-1.208.0"
@@ -105035,7 +105084,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.0"
sources."@types/cors-2.8.9"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.0"
@@ -105095,11 +105144,11 @@ in
sources."enabled-2.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- (sources."engine.io-4.0.5" // {
+ (sources."engine.io-4.0.6" // {
dependencies = [
sources."cookie-0.4.1"
- sources."debug-4.1.1"
- sources."ms-2.1.3"
+ sources."debug-4.3.2"
+ sources."ms-2.1.2"
];
})
sources."engine.io-parser-4.0.2"
@@ -105240,17 +105289,17 @@ in
sources."signals-1.0.0"
sources."simple-swizzle-0.2.2"
sources."snapsvg-0.5.1"
- (sources."socket.io-3.0.4" // {
+ (sources."socket.io-3.0.5" // {
dependencies = [
- sources."debug-4.1.1"
- sources."ms-2.1.3"
+ sources."debug-4.3.2"
+ sources."ms-2.1.2"
];
})
sources."socket.io-adapter-2.0.3"
- (sources."socket.io-parser-4.0.2" // {
+ (sources."socket.io-parser-4.0.3" // {
dependencies = [
- sources."debug-4.1.1"
- sources."ms-2.1.3"
+ sources."debug-4.3.2"
+ sources."ms-2.1.2"
];
})
sources."stack-trace-0.0.10"
@@ -106836,7 +106885,7 @@ in
sources."@starptech/rehype-webparser-0.10.0"
sources."@starptech/webparser-0.10.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/unist-2.0.3"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -107111,7 +107160,7 @@ in
sources."format-0.2.2"
sources."fragment-cache-0.2.1"
sources."fs.realpath-1.0.0"
- sources."fsevents-2.2.1"
+ sources."fsevents-2.3.1"
sources."function-bind-1.1.1"
sources."functional-red-black-tree-1.0.1"
sources."get-caller-file-1.0.3"
@@ -107725,7 +107774,7 @@ in
sources."x-is-string-0.1.0"
sources."xdg-basedir-3.0.0"
sources."xtend-4.0.2"
- sources."y18n-3.2.1"
+ sources."y18n-3.2.2"
sources."yallist-2.1.2"
(sources."yargs-11.1.1" // {
dependencies = [
@@ -107782,7 +107831,7 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.3"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/yauzl-2.9.1"
sources."JSONSelect-0.2.1"
sources."acorn-7.4.1"
@@ -108698,7 +108747,7 @@ in
sources."@types/eslint-scope-3.7.0"
sources."@types/estree-0.0.45"
sources."@types/json-schema-7.0.6"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@webassemblyjs/ast-1.9.1"
sources."@webassemblyjs/floating-point-hex-parser-1.9.1"
sources."@webassemblyjs/helper-api-error-1.9.1"
@@ -108724,11 +108773,11 @@ in
sources."ajv-keywords-3.5.2"
sources."browserslist-4.16.0"
sources."buffer-from-1.1.1"
- sources."caniuse-lite-1.0.30001171"
+ sources."caniuse-lite-1.0.30001173"
sources."chrome-trace-event-1.0.2"
sources."colorette-1.2.1"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.3.633"
+ sources."electron-to-chromium-1.3.634"
sources."enhanced-resolve-5.4.1"
sources."escalade-3.1.1"
sources."eslint-scope-5.1.1"
@@ -108754,7 +108803,7 @@ in
sources."mime-db-1.45.0"
sources."mime-types-2.1.28"
sources."neo-async-2.6.2"
- sources."node-releases-1.1.67"
+ sources."node-releases-1.1.69"
sources."p-limit-3.1.0"
sources."p-locate-5.0.0"
sources."path-exists-4.0.0"
@@ -108867,7 +108916,7 @@ in
dependencies = [
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.3"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."accepts-1.3.7"
sources."ajv-6.12.6"
sources."ajv-errors-1.0.1"
@@ -109528,7 +109577,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-13.13.38"
+ sources."@types/node-13.13.39"
sources."addr-to-ip-port-1.5.1"
sources."airplay-js-0.3.0"
sources."balanced-match-1.0.0"
@@ -109576,7 +109625,7 @@ in
sources."buffer-fill-1.0.0"
sources."buffer-from-1.1.1"
sources."buffer-indexof-1.1.1"
- sources."bufferutil-4.0.2"
+ sources."bufferutil-4.0.3"
(sources."castv2-0.1.10" // {
dependencies = [
sources."debug-4.3.2"
@@ -109791,7 +109840,7 @@ in
];
})
sources."ut_pex-2.0.1"
- sources."utf-8-validate-5.0.3"
+ sources."utf-8-validate-5.0.4"
sources."util-deprecate-1.0.2"
sources."utp-native-2.2.2"
sources."videostream-3.2.2"
@@ -109961,7 +110010,7 @@ in
sources."@sindresorhus/is-0.7.0"
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.3"
- sources."@types/node-14.14.19"
+ sources."@types/node-14.14.20"
sources."@types/normalize-package-data-2.4.0"
sources."JSONStream-1.3.5"
sources."aggregate-error-3.1.0"
@@ -110087,7 +110136,7 @@ in
sources."config-chain-1.1.12"
sources."configstore-3.1.5"
sources."copy-descriptor-0.1.1"
- sources."core-js-3.8.1"
+ sources."core-js-3.8.2"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
diff --git a/pkgs/development/ocaml-modules/bap/default.nix b/pkgs/development/ocaml-modules/bap/default.nix
index 66b1dd67a9f2..e860ad13d405 100644
--- a/pkgs/development/ocaml-modules/bap/default.nix
+++ b/pkgs/development/ocaml-modules/bap/default.nix
@@ -2,6 +2,7 @@
, ocaml, findlib, ocamlbuild, ocaml_oasis,
bitstring, camlzip, cmdliner, core_kernel, ezjsonm, fileutils, ocaml_lwt, ocamlgraph, ocurl, re, uri, zarith, piqi, piqi-ocaml, uuidm, llvm, frontc, ounit, ppx_jane, parsexp,
utop, libxml2,
+ ppx_bitstring,
ppx_tools_versioned,
which, makeWrapper, writeText
, z3
@@ -40,7 +41,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ which makeWrapper ];
buildInputs = [ ocaml findlib ocamlbuild ocaml_oasis
- llvm ppx_tools_versioned
+ llvm ppx_bitstring ppx_tools_versioned
z3
utop libxml2 ];
@@ -63,6 +64,10 @@ stdenv.mkDerivation rec {
patches = [ ./dont-add-curses.patch ];
+ preConfigure = ''
+ substituteInPlace oasis/elf --replace bitstring.ppx ppx_bitstring
+ '';
+
configureFlags = [ "--enable-everything ${disableIda}" "--with-llvm-config=${llvm}/bin/llvm-config" ];
BAPBUILDFLAGS = "-j $(NIX_BUILD_CORES)";
diff --git a/pkgs/development/ocaml-modules/bisect_ppx-ocamlbuild/default.nix b/pkgs/development/ocaml-modules/bisect_ppx-ocamlbuild/default.nix
deleted file mode 100644
index 6a98267d89a5..000000000000
--- a/pkgs/development/ocaml-modules/bisect_ppx-ocamlbuild/default.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-{ buildDunePackage, bisect_ppx, ocamlbuild }:
-
-buildDunePackage {
- minimumOCamlVersion = "4.02";
- inherit (bisect_ppx) version src meta;
- pname = "bisect_ppx-ocamlbuild";
- propagatedBuildInputs = [ ocamlbuild ];
-}
diff --git a/pkgs/development/ocaml-modules/bisect_ppx/default.nix b/pkgs/development/ocaml-modules/bisect_ppx/default.nix
index ce52c427cd07..eba010819949 100644
--- a/pkgs/development/ocaml-modules/bisect_ppx/default.nix
+++ b/pkgs/development/ocaml-modules/bisect_ppx/default.nix
@@ -1,24 +1,27 @@
-{ stdenv, fetchFromGitHub, buildDunePackage, ocaml-migrate-parsetree, ppx_tools_versioned }:
+{ lib, fetchFromGitHub, buildDunePackage, cmdliner, ocaml-migrate-parsetree, ppx_tools_versioned }:
buildDunePackage rec {
pname = "bisect_ppx";
- version = "1.4.0";
+ version = "2.5.0";
+
+ useDune2 = true;
src = fetchFromGitHub {
owner = "aantron";
repo = "bisect_ppx";
rev = version;
- sha256 = "1plhm4pvrhpapz5zaks194ji1fgzmp13y942g10pbn9m7kgkqg4h";
+ sha256 = "0w2qd1myvh333jvkf8hgrqzl8ns4xgfggk4frf1ij3jyc7qc0868";
};
buildInputs = [
+ cmdliner
ocaml-migrate-parsetree
ppx_tools_versioned
];
meta = {
description = "Code coverage for OCaml";
- license = stdenv.lib.licenses.mpl20;
+ license = lib.licenses.mit;
homepage = "https://github.com/aantron/bisect_ppx";
};
}
diff --git a/pkgs/development/ocaml-modules/bitstring/default.nix b/pkgs/development/ocaml-modules/bitstring/default.nix
index 386503039e05..583017d9ddec 100644
--- a/pkgs/development/ocaml-modules/bitstring/default.nix
+++ b/pkgs/development/ocaml-modules/bitstring/default.nix
@@ -1,20 +1,21 @@
-{ stdenv, fetchFromGitHub, buildDunePackage, ppx_tools_versioned, ounit }:
+{ lib, fetchFromGitHub, buildDunePackage, stdlib-shims }:
buildDunePackage rec {
pname = "bitstring";
- version = "3.1.1";
+ version = "4.0.1";
+
+ useDune2 = true;
src = fetchFromGitHub {
owner = "xguerin";
repo = pname;
rev = "v${version}";
- sha256 = "1ys8xx174jf8v5sm0lbxvzhdlcs5p0fhy1gvf58gad2g4gvgpvxc";
+ sha256 = "1z7jmgljvp52lvn3ml2cp6gssxqp4sikwyjf6ym97cycbcw0fjjm";
};
- buildInputs = [ ppx_tools_versioned ounit ];
- doCheck = true;
+ propagatedBuildInputs = [ stdlib-shims ];
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "This library adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml";
homepage = "https://github.com/xguerin/bitstring";
license = licenses.lgpl21Plus;
diff --git a/pkgs/development/ocaml-modules/bitstring/ppx.nix b/pkgs/development/ocaml-modules/bitstring/ppx.nix
new file mode 100644
index 000000000000..ee0a8c51f732
--- /dev/null
+++ b/pkgs/development/ocaml-modules/bitstring/ppx.nix
@@ -0,0 +1,18 @@
+{ lib, buildDunePackage, ocaml
+, bitstring, ppxlib
+, ounit
+}:
+
+buildDunePackage rec {
+ pname = "ppx_bitstring";
+ inherit (bitstring) version useDune2 src;
+
+ buildInputs = [ bitstring ppxlib ];
+
+ doCheck = lib.versionAtLeast ocaml.version "4.08";
+ checkInputs = [ ounit ];
+
+ meta = bitstring.meta // {
+ description = "Bitstrings and bitstring matching for OCaml - PPX extension";
+ };
+}
diff --git a/pkgs/development/ocaml-modules/eliom/default.nix b/pkgs/development/ocaml-modules/eliom/default.nix
index de2955e57c92..5d3c53100449 100644
--- a/pkgs/development/ocaml-modules/eliom/default.nix
+++ b/pkgs/development/ocaml-modules/eliom/default.nix
@@ -1,6 +1,7 @@
{ stdenv, fetchzip, which, ocsigen_server, ocaml,
lwt_react,
opaline, ppx_deriving, findlib
+, ppx_tools_versioned
, js_of_ocaml-ocamlbuild, js_of_ocaml-ppx, js_of_ocaml-ppx_deriving_json
, js_of_ocaml-lwt
, js_of_ocaml-tyxml
@@ -22,6 +23,7 @@ stdenv.mkDerivation rec
};
buildInputs = [ ocaml which findlib js_of_ocaml-ocamlbuild js_of_ocaml-ppx_deriving_json opaline
+ ppx_tools_versioned
];
propagatedBuildInputs = [
diff --git a/pkgs/development/ocaml-modules/lambda-term/default.nix b/pkgs/development/ocaml-modules/lambda-term/default.nix
index f02ff4d29962..0d5babad0428 100644
--- a/pkgs/development/ocaml-modules/lambda-term/default.nix
+++ b/pkgs/development/ocaml-modules/lambda-term/default.nix
@@ -1,16 +1,19 @@
-{ stdenv, fetchurl, libev, buildDunePackage, zed, lwt_log, lwt_react }:
+{ lib, fetchFromGitHub, buildDunePackage, zed, lwt_log, lwt_react, mew_vi }:
buildDunePackage rec {
pname = "lambda-term";
- version = "2.0.3";
+ version = "3.1.0";
- src = fetchurl {
- url = "https://github.com/ocaml-community/lambda-term/releases/download/${version}/lambda-term-${version}.tbz";
- sha256 = "1n1b3ffj41a1lm2315hh870yj9h8gg8g9jcxha6dr3xx8r84np3v";
+ useDune2 = true;
+
+ src = fetchFromGitHub {
+ owner = "ocaml-community";
+ repo = pname;
+ rev = version;
+ sha256 = "1k0ykiz0vhpyyj9fkss29ajas4fh1xh449j702xkvayqipzj1mkg";
};
- buildInputs = [ libev ];
- propagatedBuildInputs = [ zed lwt_log lwt_react ];
+ propagatedBuildInputs = [ zed lwt_log lwt_react mew_vi ];
meta = { description = "Terminal manipulation library for OCaml";
longDescription = ''
@@ -28,10 +31,10 @@ buildDunePackage rec {
console applications.
'';
- homepage = "https://github.com/diml/lambda-term";
- license = stdenv.lib.licenses.bsd3;
+ inherit (src.meta) homepage;
+ license = lib.licenses.bsd3;
maintainers = [
- stdenv.lib.maintainers.gal_bolle
+ lib.maintainers.gal_bolle
];
};
}
diff --git a/pkgs/development/ocaml-modules/lwt/ppx.nix b/pkgs/development/ocaml-modules/lwt/ppx.nix
index f2707064f2af..2df17844d1a0 100644
--- a/pkgs/development/ocaml-modules/lwt/ppx.nix
+++ b/pkgs/development/ocaml-modules/lwt/ppx.nix
@@ -1,8 +1,12 @@
-{ fetchzip, buildDunePackage, lwt, ppx_tools_versioned }:
+{ fetchzip, buildDunePackage, lwt, ppxlib }:
buildDunePackage {
pname = "lwt_ppx";
- version = "2.0.1";
+ version = "2.0.2";
+
+ useDune2 = true;
+
+ minimumOCamlVersion = "4.04";
src = fetchzip {
# `lwt_ppx` has a different release cycle than Lwt, but it's included in
@@ -12,12 +16,11 @@ buildDunePackage {
#
# This is particularly useful for overriding Lwt without breaking `lwt_ppx`,
# as new Lwt releases may contain broken `lwt_ppx` code.
- url = "https://github.com/ocsigen/lwt/archive/5.2.0.tar.gz";
- sha256 = "1znw8ckwdmqsnrcgar4g33zgr659l4l904bllrz69bbwdnfmz2x3";
+ url = "https://github.com/ocsigen/lwt/archive/5.4.0.tar.gz";
+ sha256 = "1ay1zgadnw19r9hl2awfjr22n37l7rzxd9v73pjbahavwm2ay65d";
};
-
- propagatedBuildInputs = [ lwt ppx_tools_versioned ];
+ propagatedBuildInputs = [ lwt ppxlib ];
meta = {
description = "Ppx syntax extension for Lwt";
diff --git a/pkgs/development/ocaml-modules/mew/default.nix b/pkgs/development/ocaml-modules/mew/default.nix
new file mode 100644
index 000000000000..819bb020050c
--- /dev/null
+++ b/pkgs/development/ocaml-modules/mew/default.nix
@@ -0,0 +1,27 @@
+{ lib, buildDunePackage, fetchFromGitHub
+, result, trie
+}:
+
+buildDunePackage rec {
+ pname = "mew";
+ version = "0.1.0";
+
+ useDune2 = true;
+
+ src = fetchFromGitHub {
+ owner = "kandu";
+ repo = pname;
+ rev = version;
+ sha256 = "0417xsghj92v3xa5q4dk4nzf2r4mylrx2fd18i7cg3nzja65nia2";
+ };
+
+ propagatedBuildInputs = [ result trie ];
+
+ meta = {
+ inherit (src.meta) homepage;
+ license = lib.licenses.mit;
+ description = "Modal Editing Witch";
+ maintainers = [ lib.maintainers.vbgl ];
+ };
+
+}
diff --git a/pkgs/development/ocaml-modules/mew_vi/default.nix b/pkgs/development/ocaml-modules/mew_vi/default.nix
new file mode 100644
index 000000000000..39228585fe3c
--- /dev/null
+++ b/pkgs/development/ocaml-modules/mew_vi/default.nix
@@ -0,0 +1,27 @@
+{ lib, buildDunePackage, fetchFromGitHub
+, mew, react
+}:
+
+buildDunePackage rec {
+ pname = "mew_vi";
+ version = "0.5.0";
+
+ useDune2 = true;
+
+ src = fetchFromGitHub {
+ owner = "kandu";
+ repo = pname;
+ rev = version;
+ sha256 = "0lihbf822k5zasl60w5mhwmdkljlq49c9saayrws7g4qc1j353r8";
+ };
+
+ propagatedBuildInputs = [ mew react ];
+
+ meta = {
+ inherit (src.meta) homepage;
+ license = lib.licenses.mit;
+ description = "Modal Editing Witch, VI interpreter";
+ maintainers = [ lib.maintainers.vbgl ];
+ };
+
+}
diff --git a/pkgs/development/ocaml-modules/mirage-crypto/default.nix b/pkgs/development/ocaml-modules/mirage-crypto/default.nix
index f963e8e15d08..c2ede31dd3f1 100644
--- a/pkgs/development/ocaml-modules/mirage-crypto/default.nix
+++ b/pkgs/development/ocaml-modules/mirage-crypto/default.nix
@@ -4,11 +4,11 @@ buildDunePackage rec {
minimumOCamlVersion = "4.08";
pname = "mirage-crypto";
- version = "0.8.7";
+ version = "0.8.8";
src = fetchurl {
url = "https://github.com/mirage/mirage-crypto/releases/download/v${version}/mirage-crypto-v${version}.tbz";
- sha256 = "1gx86h6kk39zq3kvl854jc2ap2755paalp1f7iv8r9js2xnbxfxy";
+ sha256 = "19czylfyakckfzzcbqgv9ygl243wix7ak8zkbdcb9hcl2k2shswb";
};
useDune2 = true;
diff --git a/pkgs/development/ocaml-modules/mirage-crypto/rng-async.nix b/pkgs/development/ocaml-modules/mirage-crypto/rng-async.nix
new file mode 100644
index 000000000000..e8c8dd06eab5
--- /dev/null
+++ b/pkgs/development/ocaml-modules/mirage-crypto/rng-async.nix
@@ -0,0 +1,25 @@
+{ lib, buildDunePackage
+, mirage-crypto, mirage-crypto-rng
+, dune-configurator, async, logs
+}:
+
+buildDunePackage {
+ pname = "mirage-crypto-rng-async";
+
+ inherit (mirage-crypto) useDune2 version minimumOCamlVersion src;
+
+ nativeBuildInputs = [
+ dune-configurator
+ ];
+
+ propagatedBuildInputs = [
+ async
+ logs
+ mirage-crypto
+ mirage-crypto-rng
+ ];
+
+ meta = mirage-crypto.meta // {
+ description = "Feed the entropy source in an Async-friendly way";
+ };
+}
diff --git a/pkgs/development/ocaml-modules/mirage-crypto/rng-mirage.nix b/pkgs/development/ocaml-modules/mirage-crypto/rng-mirage.nix
index 473704d7ea22..5152d3c8ecde 100644
--- a/pkgs/development/ocaml-modules/mirage-crypto/rng-mirage.nix
+++ b/pkgs/development/ocaml-modules/mirage-crypto/rng-mirage.nix
@@ -1,5 +1,7 @@
{ buildDunePackage, mirage-crypto-rng, duration, cstruct, mirage-runtime
-, mirage-time, mirage-clock, mirage-unix, mirage-time-unix, mirage-clock-unix }:
+, mirage-time, mirage-clock, mirage-unix, mirage-time-unix, mirage-clock-unix
+, logs, lwt
+}:
buildDunePackage {
pname = "mirage-crypto-rng-mirage";
@@ -10,7 +12,7 @@ buildDunePackage {
checkInputs = [ mirage-unix mirage-clock-unix mirage-time-unix ];
propagatedBuildInputs = [ duration cstruct mirage-crypto-rng mirage-runtime
- mirage-time mirage-clock ];
+ mirage-time mirage-clock logs lwt ];
meta = mirage-crypto-rng.meta // {
description = "Entropy collection for a cryptographically secure PRNG";
diff --git a/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix b/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix
index 958c088cd6a2..5200c13d89fd 100644
--- a/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix
+++ b/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix
@@ -4,6 +4,8 @@ buildDunePackage rec {
pname = "ppx_tools_versioned";
version = "5.4.0";
+ useDune2 = true;
+
src = fetchFromGitHub {
owner = "ocaml-ppx";
repo = pname;
diff --git a/pkgs/development/ocaml-modules/trie/default.nix b/pkgs/development/ocaml-modules/trie/default.nix
new file mode 100644
index 000000000000..935f71a5e224
--- /dev/null
+++ b/pkgs/development/ocaml-modules/trie/default.nix
@@ -0,0 +1,23 @@
+{ lib, buildDunePackage, fetchFromGitHub }:
+
+buildDunePackage rec {
+ pname = "trie";
+ version = "1.0.0";
+
+ useDune2 = true;
+
+ src = fetchFromGitHub {
+ owner = "kandu";
+ repo = pname;
+ rev = version;
+ sha256 = "0s7p9swjqjsqddylmgid6cv263ggq7pmb734z4k84yfcrgb6kg4g";
+ };
+
+ meta = {
+ inherit (src.meta) homepage;
+ license = lib.licenses.mit;
+ description = "Strict impure trie tree";
+ maintainers = [ lib.maintainers.vbgl ];
+ };
+
+}
diff --git a/pkgs/development/python-modules/aiosqlite/default.nix b/pkgs/development/python-modules/aiosqlite/default.nix
index e616a5363477..44cae12cba52 100644
--- a/pkgs/development/python-modules/aiosqlite/default.nix
+++ b/pkgs/development/python-modules/aiosqlite/default.nix
@@ -1,32 +1,31 @@
{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, setuptools
, aiounittest
+, buildPythonPackage
+, fetchPypi
, isPy27
-, pytest
+, pytestCheckHook
+, typing-extensions
}:
buildPythonPackage rec {
pname = "aiosqlite";
- version = "0.12.0";
+ version = "0.16.0";
disabled = isPy27;
- src = fetchFromGitHub {
- owner = "jreese";
- repo = pname;
- rev = "v${version}";
- sha256 = "090vdv210zfry0bms5b3lmm06yhiyjb8ga96996cqs611l7c2a2j";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1a0fjmlvadyzsml10g5p1qif7192k0swy5zwjp8v48y5zc3yy56h";
};
- buildInputs = [
- setuptools
- ];
-
checkInputs = [
aiounittest
+ pytestCheckHook
+ typing-extensions
];
+ # tests are not pick-up automatically by the hook
+ pytestFlagsArray = [ "aiosqlite/tests/*.py" ];
+
meta = with lib; {
description = "Asyncio bridge to the standard sqlite3 module";
homepage = "https://github.com/jreese/aiosqlite";
diff --git a/pkgs/development/python-modules/asyncio-dgram/default.nix b/pkgs/development/python-modules/asyncio-dgram/default.nix
new file mode 100644
index 000000000000..9edc215abcf7
--- /dev/null
+++ b/pkgs/development/python-modules/asyncio-dgram/default.nix
@@ -0,0 +1,33 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "asyncio-dgram";
+ version = "1.1.1";
+
+ src = fetchFromGitHub {
+ owner = "jsbronder";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1zkmjvq47zw2fsbnzhr5mh9rsazx0z1f8m528ash25jrxsza5crm";
+ };
+
+ checkInputs = [
+ pytestCheckHook
+ pytest-asyncio
+ ];
+
+ disabledTests = [ "test_protocol_pause_resume" ];
+ pythonImportsCheck = [ "asyncio_dgram" ];
+
+ meta = with lib; {
+ description = "Python support for higher level Datagram";
+ homepage = "https://github.com/jsbronder/asyncio-dgram";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/asyncwhois/default.nix b/pkgs/development/python-modules/asyncwhois/default.nix
index ba8f212d2f34..a6ec6049ca2d 100644
--- a/pkgs/development/python-modules/asyncwhois/default.nix
+++ b/pkgs/development/python-modules/asyncwhois/default.nix
@@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "asyncwhois";
- version = "0.2.0";
+ version = "0.2.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "0rdmg59jzzfz59b3ckg5187lc0wk9r0pzp9x09nq3xs21mcwqjxz";
+ sha256 = "59ed35fbe646491b6c3e1dcf6db9b4870c3d44c6c023a1c3badd6226551d7b7e";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/audio-metadata/default.nix b/pkgs/development/python-modules/audio-metadata/default.nix
index 1adee4403b9b..fc3adf2534e7 100644
--- a/pkgs/development/python-modules/audio-metadata/default.nix
+++ b/pkgs/development/python-modules/audio-metadata/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, fetchPypi, pythonOlder
+{ lib, buildPythonPackage, fetchPypi
, attrs
, bidict
, bitstruct
@@ -18,9 +18,7 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace setup.py \
- --replace "bidict>=0.17,<0.18" "bidict" \
- --replace "more-itertools>=4.0,<8.0" "more-itertools" \
- --replace "pendulum>=2.0,<=3.0,!=2.0.5,!=2.1.0" "pendulum>=2.0,<=3.0"
+ --replace "'attrs>=18.2,<19.4'" "'attrs'"
'';
propagatedBuildInputs = [
@@ -35,8 +33,6 @@ buildPythonPackage rec {
# No tests
doCheck = false;
- disabled = pythonOlder "3.6";
-
meta = with lib; {
homepage = "https://github.com/thebigmunch/audio-metadata";
description = "A library for reading and, in the future, writing metadata from audio files";
diff --git a/pkgs/development/python-modules/avea/default.nix b/pkgs/development/python-modules/avea/default.nix
new file mode 100644
index 000000000000..10674ca667df
--- /dev/null
+++ b/pkgs/development/python-modules/avea/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, bluepy
+}:
+
+buildPythonPackage rec {
+ pname = "avea";
+ version = "1.5.1";
+
+ src = fetchFromGitHub {
+ owner = "k0rventen";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "13s21dnhbh10dd60xq2cklp5jyv46rpl3nivn1imcswp02930ihz";
+ };
+
+ propagatedBuildInputs = [
+ bluepy
+ ];
+
+ # no tests are present
+ doCheck = false;
+ pythonImportsCheck = [ "avea" ];
+
+ meta = with lib; {
+ description = "Python module for interacting with Elgato's Avea bulb";
+ homepage = "https://github.com/k0rventen/avea";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/backports-datetime-fromisoformat/default.nix b/pkgs/development/python-modules/backports-datetime-fromisoformat/default.nix
new file mode 100644
index 000000000000..7db161b86110
--- /dev/null
+++ b/pkgs/development/python-modules/backports-datetime-fromisoformat/default.nix
@@ -0,0 +1,23 @@
+{ lib, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+ pname = "backports-datetime-fromisoformat";
+ version = "1.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0p0gyhfqq6gssf3prsy0pcfq5w0wx2w3pcjqbwx3imvc92ls4xwm";
+ };
+
+ # no tests in pypi package
+ doCheck = false;
+
+ pythonImportsCheck = [ "backports.datetime_fromisoformat" ];
+
+ meta = with lib; {
+ description = "Backport of Python 3.7's datetime.fromisoformat";
+ homepage = "https://github.com/movermeyer/backports.datetime_fromisoformat";
+ license = licenses.mit;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/bitbox02/default.nix b/pkgs/development/python-modules/bitbox02/default.nix
new file mode 100644
index 000000000000..e9cf4b36a49c
--- /dev/null
+++ b/pkgs/development/python-modules/bitbox02/default.nix
@@ -0,0 +1,24 @@
+{ lib, buildPythonPackage, fetchPypi, base58, ecdsa, hidapi, noiseprotocol, protobuf, semver, typing-extensions }:
+
+buildPythonPackage rec {
+ pname = "bitbox02";
+ version = "5.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0hnjjjarr4q22wh03zyyqfhsizzsvg46030kks3qkzbsv29vqqh5";
+ };
+
+ propagatedBuildInputs = [ base58 ecdsa hidapi noiseprotocol protobuf semver typing-extensions ];
+
+ # does not contain tests
+ doCheck = false;
+ pythonImportsCheck = [ "bitbox02" ];
+
+ meta = with lib; {
+ description = "Firmware code of the BitBox02 hardware wallet";
+ homepage = "https://github.com/digitalbitbox/bitbox02-firmware/";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/bluepy/default.nix b/pkgs/development/python-modules/bluepy/default.nix
index 8d247b41d277..a26cdb9dd356 100644
--- a/pkgs/development/python-modules/bluepy/default.nix
+++ b/pkgs/development/python-modules/bluepy/default.nix
@@ -29,7 +29,7 @@ buildPythonPackage rec {
description = "Python interface to Bluetooth LE on Linux";
homepage = "https://github.com/IanHarvey/bluepy";
maintainers = with maintainers; [ georgewhewell ];
+ platforms = platforms.linux;
license = licenses.gpl2;
};
-
}
diff --git a/pkgs/development/python-modules/boto3/default.nix b/pkgs/development/python-modules/boto3/default.nix
index 597f512b51d0..f08501e2a0bc 100644
--- a/pkgs/development/python-modules/boto3/default.nix
+++ b/pkgs/development/python-modules/boto3/default.nix
@@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
- version = "1.16.47"; # N.B: if you change this, change botocore too
+ version = "1.16.49"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-BXlrpsZfeSFOphvsrlEm1ckk7tihGHS8VTbWEd6rvkc=";
+ sha256 = "sha256-Tcj3YQmJHZFriUIJhl9Nlo5kqv+kySFH/wJ89NVXrGw=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
diff --git a/pkgs/development/python-modules/botocore/default.nix b/pkgs/development/python-modules/botocore/default.nix
index 5f2d15e97a8a..877e52d3a371 100644
--- a/pkgs/development/python-modules/botocore/default.nix
+++ b/pkgs/development/python-modules/botocore/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "botocore";
- version = "1.19.47"; # N.B: if you change this, change boto3 and awscli to a matching version
+ version = "1.19.49"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-FVhKhtbLH5TqeF6NPJj67/jd0BBTVuHBBhGNmsEvqJE=";
+ sha256 = "sha256-7sxhHtOG3sjkfKCH9F5lwTN5RsS1szr3EyXvmkmucN0=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/cfn-lint/default.nix b/pkgs/development/python-modules/cfn-lint/default.nix
index 0a27f8222c0f..f55042c58d23 100644
--- a/pkgs/development/python-modules/cfn-lint/default.nix
+++ b/pkgs/development/python-modules/cfn-lint/default.nix
@@ -59,6 +59,12 @@ buildPythonPackage rec {
'';
disabledTests = [
+ # These tests depend on the current date, for example because of issues like this.
+ # This makes it possible for them to succeed on hydra and then begin to fail without
+ # any code changes.
+ # https://github.com/aws-cloudformation/cfn-python-lint/issues/1705
+ # See also: https://github.com/NixOS/nixpkgs/issues/108076
+ "TestQuickStartTemplates"
# requires git directory
"test_update_docs"
];
diff --git a/pkgs/development/python-modules/cherrypy/default.nix b/pkgs/development/python-modules/cherrypy/default.nix
index f23d06001922..3e9f75795e49 100644
--- a/pkgs/development/python-modules/cherrypy/default.nix
+++ b/pkgs/development/python-modules/cherrypy/default.nix
@@ -45,6 +45,8 @@ buildPythonPackage rec {
"--deselect=cherrypy/test/test_bus.py::BusMethodTests::test_block"}
'';
+ __darwinAllowLocalNetworking = true;
+
meta = with stdenv.lib; {
homepage = "https://www.cherrypy.org";
description = "A pythonic, object-oriented HTTP framework";
diff --git a/pkgs/development/python-modules/cirq/default.nix b/pkgs/development/python-modules/cirq/default.nix
index 537ffdbaf958..ebc0eb51df43 100644
--- a/pkgs/development/python-modules/cirq/default.nix
+++ b/pkgs/development/python-modules/cirq/default.nix
@@ -5,7 +5,7 @@
, fetchFromGitHub
, fetchpatch
, freezegun
-, google_api_core
+, google-api-core
, matplotlib
, networkx
, numpy
@@ -54,7 +54,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
freezegun
- google_api_core
+ google-api-core
numpy
matplotlib
networkx
diff --git a/pkgs/development/python-modules/coronavirus/default.nix b/pkgs/development/python-modules/coronavirus/default.nix
new file mode 100644
index 000000000000..ddf87816b8f7
--- /dev/null
+++ b/pkgs/development/python-modules/coronavirus/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, aiohttp
+}:
+
+buildPythonPackage rec {
+ pname = "coronavirus";
+ version = "1.1.1";
+
+ src = fetchFromGitHub {
+ owner = "nabucasa";
+ repo = pname;
+ rev = version;
+ sha256 = "0mx6ifp8irj3669c67hs9r79k8gar6j4aq7d4ji21pllyhyahdwm";
+ };
+
+ propagatedBuildInputs = [
+ aiohttp
+ ];
+
+ # no tests are present
+ doCheck = false;
+ pythonImportsCheck = [ "coronavirus" ];
+
+ meta = with lib; {
+ description = "Python client for getting Corona virus info";
+ homepage = "https://github.com/nabucasa/coronavirus";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/croniter/default.nix b/pkgs/development/python-modules/croniter/default.nix
index a8ae75746880..308070355790 100644
--- a/pkgs/development/python-modules/croniter/default.nix
+++ b/pkgs/development/python-modules/croniter/default.nix
@@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "croniter";
- version = "0.3.36";
+ version = "0.3.37";
src = fetchPypi {
inherit pname version;
- sha256 = "9d3098e50f7edc7480470455d42f09c501fa1bb7e2fc113526ec6e90b068f32c";
+ sha256 = "12ced475dfc107bf7c6c1440af031f34be14cd97bbbfaf0f62221a9c11e86404";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/demjson/default.nix b/pkgs/development/python-modules/demjson/default.nix
index 58f2012aea71..9cd39c34ea04 100644
--- a/pkgs/development/python-modules/demjson/default.nix
+++ b/pkgs/development/python-modules/demjson/default.nix
@@ -10,6 +10,9 @@ buildPythonPackage rec {
sha256 = "0ygbddpnvp5lby6mr5kz60la3hkvwwzv3wwb3z0w9ngxl0w21pii";
};
+ doCheck = false;
+ pythonImportsCheck = [ "demjson" ];
+
meta = with stdenv.lib; {
description = "Encoder/decoder and lint/validator for JSON (JavaScript Object Notation)";
homepage = "https://github.com/dmeranda/demjson";
diff --git a/pkgs/development/python-modules/django/3.nix b/pkgs/development/python-modules/django/3.nix
index c3644d6946fd..77dcb48235a8 100644
--- a/pkgs/development/python-modules/django/3.nix
+++ b/pkgs/development/python-modules/django/3.nix
@@ -13,13 +13,13 @@
buildPythonPackage rec {
pname = "Django";
- version = "3.1.4";
+ version = "3.1.5";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "edb10b5c45e7e9c0fb1dc00b76ec7449aca258a39ffd613dbd078c51d19c9f03";
+ sha256 = "2d78425ba74c7a1a74b196058b261b9733a8570782f4e2828974777ccca7edf7";
};
patches = stdenv.lib.optional withGdal
diff --git a/pkgs/development/python-modules/elementpath/default.nix b/pkgs/development/python-modules/elementpath/default.nix
index 9b9597c98bef..270405263127 100644
--- a/pkgs/development/python-modules/elementpath/default.nix
+++ b/pkgs/development/python-modules/elementpath/default.nix
@@ -1,7 +1,7 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy27 }:
buildPythonPackage rec {
- version = "2.0.4";
+ version = "2.1.0";
pname = "elementpath";
disabled = isPy27; # uses incompatible class syntax
@@ -9,7 +9,7 @@ buildPythonPackage rec {
owner = "sissaschool";
repo = "elementpath";
rev = "v${version}";
- sha256 = "0812il5xn7cq0qa0vmkszrvprakfpyxmilk7s918l9kavdy4al8x";
+ sha256 = "17a0gcwmv87kikirgkgr305f5c7wz34hf7djssx4xbk9lfq9m2lg";
};
# avoid circular dependency with xmlschema which directly depends on this
diff --git a/pkgs/development/python-modules/fastapi/default.nix b/pkgs/development/python-modules/fastapi/default.nix
index 32ebd6a0307d..dadfc41c68bc 100644
--- a/pkgs/development/python-modules/fastapi/default.nix
+++ b/pkgs/development/python-modules/fastapi/default.nix
@@ -1,61 +1,58 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
-, uvicorn
-, starlette
, pydantic
-, isPy3k
-, pytest
-, pytestcov
-, pyjwt
-, passlib
+, starlette
+, pytestCheckHook
+, pytest-asyncio
, aiosqlite
-, peewee
+, databases
, flask
+, httpx
+, passlib
+, peewee
+, python-jose
+, sqlalchemy
}:
buildPythonPackage rec {
pname = "fastapi";
- version = "0.55.1";
+ version = "0.63.0";
format = "flit";
- disabled = !isPy3k;
src = fetchFromGitHub {
owner = "tiangolo";
repo = "fastapi";
rev = version;
- sha256 = "1515nhwari48v0angyl5z3cfpvwn4al2nvqh0cjd9xgxzvm310s8";
+ sha256 = "0l3imrcs42pqf9d6k8c1q15k5sqcnapl5zk71xl52mrxhz49lgpi";
};
postPatch = ''
substituteInPlace pyproject.toml \
- --replace "starlette ==0.13.2" "starlette"
+ --replace "starlette ==0.13.6" "starlette"
'';
propagatedBuildInputs = [
- uvicorn
starlette
pydantic
];
checkInputs = [
- pytest
- pytestcov
- pyjwt
- passlib
aiosqlite
- peewee
+ databases
flask
+ httpx
+ passlib
+ peewee
+ python-jose
+ pytestCheckHook
+ pytest-asyncio
+ sqlalchemy
];
- # test_default_response_class.py: requires orjson, which requires rust toolchain
- # test_custom_response/test_tutorial001b.py: requires orjson
- # tests/test_tutorial/test_sql_databases/test_testing_databases.py: just broken, don't know why
- checkPhase = ''
- pytest --ignore=tests/test_default_response_class.py \
- --ignore=tests/test_tutorial/test_custom_response/test_tutorial001b.py \
- --ignore=tests/test_tutorial/test_sql_databases/test_testing_databases.py
- '';
+ # disabled tests require orjson which requires rust nightly
+ pytestFlagsArray = [ "--ignore=tests/test_default_response_class.py" ];
+ disabledTests = [ "test_get_custom_response" ];
meta = with lib; {
homepage = "https://github.com/tiangolo/fastapi";
diff --git a/pkgs/development/python-modules/fastdiff/default.nix b/pkgs/development/python-modules/fastdiff/default.nix
new file mode 100644
index 000000000000..b3e27d7a5e81
--- /dev/null
+++ b/pkgs/development/python-modules/fastdiff/default.nix
@@ -0,0 +1,30 @@
+{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pytest-benchmark, wasmer }:
+
+buildPythonPackage rec {
+ pname = "fastdiff";
+ version = "0.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1ai95vjchl4396zjl1b69xfqvn9kn1y7c40d9l0qxdss0pcx6fk2";
+ };
+
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace 'pytest-runner' ""
+ '';
+
+ propagatedBuildInputs = [ wasmer ];
+
+ checkInputs = [ pytestCheckHook pytest-benchmark ];
+
+ pythonImportsCheck = [ "fastdiff" ];
+ disabledTests = [ "test_native" ];
+
+ meta = with lib; {
+ description = "A fast native implementation of diff algorithm with a pure Python fallback";
+ homepage = "https://github.com/syrusakbary/fastdiff";
+ license = licenses.mit;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/fixerio/default.nix b/pkgs/development/python-modules/fixerio/default.nix
new file mode 100644
index 000000000000..786681df1c83
--- /dev/null
+++ b/pkgs/development/python-modules/fixerio/default.nix
@@ -0,0 +1,45 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, requests
+, pytestCheckHook
+, httpretty
+}:
+
+buildPythonPackage rec {
+ pname = "fixerio";
+ version = "0.1.1";
+
+ src = fetchFromGitHub {
+ owner = "amatellanes";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1k9ss5jc7sbpkjd2774vbmvljny0wm2lrc8155ha8yk2048jsaxk";
+ };
+
+ postPatch = ''
+ substituteInPlace setup.py --replace "requests==2.10.0" "requests"
+ '';
+
+ propagatedBuildInputs = [
+ requests
+ ];
+
+ checkInputs = [
+ httpretty
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [ "fixerio" ];
+
+ meta = with lib; {
+ description = "Python client for Fixer.io";
+ longDescription = ''
+ Fixer.io is a free JSON API for current and historical foreign
+ exchange rates published by the European Central Bank.
+ '';
+ homepage = "https://github.com/amatellanes/fixerio";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/flask-socketio/default.nix b/pkgs/development/python-modules/flask-socketio/default.nix
index 80f6edb79d35..496676600fc9 100644
--- a/pkgs/development/python-modules/flask-socketio/default.nix
+++ b/pkgs/development/python-modules/flask-socketio/default.nix
@@ -1,18 +1,21 @@
{ lib
, buildPythonPackage
-, fetchPypi
-, flask
-, python-socketio
, coverage
+, fetchFromGitHub
+, flask
+, pytestCheckHook
+, python-socketio
}:
buildPythonPackage rec {
pname = "Flask-SocketIO";
- version = "4.3.2";
+ version = "5.0.1";
- src = fetchPypi {
- inherit pname version;
- sha256 = "37001b3507f2fa5d1c8d9c8e211dd88da6c5286ff0ebce16f27cb1b467d25d68";
+ src = fetchFromGitHub {
+ owner = "miguelgrinberg";
+ repo = "Flask-SocketIO";
+ rev = "v${version}";
+ sha256 = "01zf6cy95pgc4flgn0740z2my90l7rxwliahp6rb2xbp7rh32cng";
};
propagatedBuildInputs = [
@@ -20,9 +23,12 @@ buildPythonPackage rec {
python-socketio
];
- checkInputs = [ coverage ];
- # tests only on github, but lates release there is not tagged
- doCheck = false;
+ checkInputs = [
+ coverage
+ pytestCheckHook
+ ];
+
+ pythonImportsCheck = [ "flask_socketio" ];
meta = with lib; {
description = "Socket.IO integration for Flask applications";
diff --git a/pkgs/development/python-modules/glances-api/default.nix b/pkgs/development/python-modules/glances-api/default.nix
new file mode 100644
index 000000000000..23e152c300f3
--- /dev/null
+++ b/pkgs/development/python-modules/glances-api/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, aiohttp
+, async-timeout
+}:
+
+buildPythonPackage rec {
+ pname = "glances-api";
+ version = "0.2.0";
+
+ src = fetchFromGitHub {
+ owner = "home-assistant-ecosystem";
+ repo = "python-glances-api";
+ rev = version;
+ sha256 = "0rgv77n0lvr7d3vk4qc8svipxafmm6s4lfxrl976hsygrhaqidch";
+ };
+
+ propagatedBuildInputs = [
+ aiohttp
+ async-timeout
+ ];
+
+ # no tests are present
+ doCheck = false;
+ pythonImportsCheck = [ "glances_api" ];
+
+ meta = with lib; {
+ description = "Python Wrapper for interacting with the Volkszahler API";
+ homepage = "https://github.com/home-assistant-ecosystem/python-glances-api";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_api_core/default.nix b/pkgs/development/python-modules/google-api-core/default.nix
similarity index 52%
rename from pkgs/development/python-modules/google_api_core/default.nix
rename to pkgs/development/python-modules/google-api-core/default.nix
index efe74d478848..6715590dc329 100644
--- a/pkgs/development/python-modules/google_api_core/default.nix
+++ b/pkgs/development/python-modules/google-api-core/default.nix
@@ -1,27 +1,44 @@
-{ lib, buildPythonPackage, fetchPypi, pythonOlder, google_auth, protobuf
-, googleapis_common_protos, requests, grpcio, mock, pytest, pytest-asyncio, pytestCheckHook }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, google-auth
+, googleapis_common_protos
+, grpcio
+, protobuf
+, pytz
+, requests
+, mock
+, pytest
+, pytest-asyncio
+, pytestCheckHook
+}:
buildPythonPackage rec {
pname = "google-api-core";
- version = "1.23.0";
- disabled = pythonOlder "3.5";
+ version = "1.24.1";
src = fetchPypi {
inherit pname version;
- sha256 = "1bb3c485c38eacded8d685b1759968f6cf47dd9432922d34edb90359eaa391e2";
+ sha256 = "0sflnpgsvk2h1cr1m3mgxx6pzz55xw7sk4y4qdimhs5jdm2fw78g";
};
- propagatedBuildInputs =
- [ googleapis_common_protos protobuf google_auth requests grpcio ];
+ propagatedBuildInputs = [
+ googleapis_common_protos
+ google-auth
+ grpcio
+ protobuf
+ pytz
+ requests
+ ];
- checkInputs = [ google_auth mock protobuf pytest-asyncio pytestCheckHook ];
+ checkInputs = [ mock pytest-asyncio pytestCheckHook ];
# prevent google directory from shadowing google imports
preCheck = ''
rm -r google
'';
- pythonImportsCheck = [ "google.auth" "google.protobuf" "google.api" ];
+ pythonImportsCheck = [ "google.api_core" ];
meta = with lib; {
description = "Core Library for Google Client Libraries";
@@ -33,6 +50,6 @@ buildPythonPackage rec {
changelog =
"https://github.com/googleapis/python-api-core/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/google-api-python-client/default.nix b/pkgs/development/python-modules/google-api-python-client/default.nix
index b14276b0a1a2..2f6508c062f7 100644
--- a/pkgs/development/python-modules/google-api-python-client/default.nix
+++ b/pkgs/development/python-modules/google-api-python-client/default.nix
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi
-, google_auth, google-auth-httplib2, google_api_core
+, google-auth, google-auth-httplib2, google-api-core
, httplib2, six, uritemplate, oauth2client }:
buildPythonPackage rec {
@@ -15,7 +15,7 @@ buildPythonPackage rec {
doCheck = false;
propagatedBuildInputs = [
- google_auth google-auth-httplib2 google_api_core
+ google-auth google-auth-httplib2 google-api-core
httplib2 six uritemplate oauth2client
];
diff --git a/pkgs/development/python-modules/google_apputils/default.nix b/pkgs/development/python-modules/google-apputils/default.nix
similarity index 81%
rename from pkgs/development/python-modules/google_apputils/default.nix
rename to pkgs/development/python-modules/google-apputils/default.nix
index c7b386623ef8..b679be9dbf78 100644
--- a/pkgs/development/python-modules/google_apputils/default.nix
+++ b/pkgs/development/python-modules/google-apputils/default.nix
@@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
+, isPy3k
, pytz
, gflags
, dateutil
@@ -11,10 +12,11 @@
buildPythonPackage rec {
pname = "google-apputils";
version = "0.4.2";
+ disabled = isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "47959d0651c32102c10ad919b8a0ffe0ae85f44b8457ddcf2bdc0358fb03dc29";
+ sha256 = "0afw0gxmh0yw5g7xsmw49gs8bbp0zyhbh6fr1b0h48f3a439v5a7";
};
preConfigure = ''
@@ -34,6 +36,6 @@ buildPythonPackage rec {
description = "Google Application Utilities for Python";
homepage = "https://github.com/google/google-apputils";
license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
-
}
diff --git a/pkgs/development/python-modules/google-auth-httplib2/default.nix b/pkgs/development/python-modules/google-auth-httplib2/default.nix
index ff5aa3b2bac7..bb7836ef85d1 100644
--- a/pkgs/development/python-modules/google-auth-httplib2/default.nix
+++ b/pkgs/development/python-modules/google-auth-httplib2/default.nix
@@ -3,13 +3,11 @@
, buildPythonPackage
, fetchPypi
, flask
-, mock
-, six
-, pytest
-, pytest-localserver
-, google_auth
+, google-auth
, httplib2
-
+, mock
+, pytestCheckHook
+, pytest-localserver
}:
buildPythonPackage rec {
@@ -18,28 +16,25 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "8d092cc60fb16517b12057ec0bba9185a96e3b7169d86ae12eae98e645b7bc39";
+ sha256 = "0fdwnx2yd65f5vhnmn39f4xnxac5j6x0pv2p42qifrdi1z32q2cd";
};
- checkInputs = [
- flask mock six pytest pytest-localserver
- ];
-
propagatedBuildInputs = [
- google_auth httplib2
+ google-auth
+ httplib2
];
- checkPhase = ''
- py.test
- '';
+ checkInputs = [
+ flask
+ mock
+ pytestCheckHook
+ pytest-localserver
+ ];
- # ImportError: No module named google.auth
- doCheck = isPy3k;
-
- meta = {
+ meta = with lib; {
description = "Google Authentication Library: httplib2 transport";
homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2";
- license = lib.licenses.asl20;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
-
}
diff --git a/pkgs/development/python-modules/google-auth-oauthlib/default.nix b/pkgs/development/python-modules/google-auth-oauthlib/default.nix
index bdea58de8999..7fa7200fbbe5 100644
--- a/pkgs/development/python-modules/google-auth-oauthlib/default.nix
+++ b/pkgs/development/python-modules/google-auth-oauthlib/default.nix
@@ -1,44 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
-, pythonOlder
-, isPy3k
, click
, mock
-, pytest
-, futures
-, google_auth
+, pytestCheckHook
+, google-auth
, requests_oauthlib
}:
buildPythonPackage rec {
pname = "google-auth-oauthlib";
version = "0.4.2";
- disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "65b65bc39ad8cab15039b35e5898455d3d66296d0584d96fe0e79d67d04c51d9";
+ sha256 = "1nai9k86g7g7w1pxk105dllncgax8nc5hpmk758b3jnqkb1mpdk5";
};
- checkInputs = [
- click mock pytest
- ] ++ lib.optionals (!isPy3k) [ futures ];
-
propagatedBuildInputs = [
- google_auth requests_oauthlib
+ google-auth
+ requests_oauthlib
];
- doCheck = isPy3k;
- checkPhase = ''
- rm -fr tests/__pycache__/ google
- py.test
- '';
+ checkInputs = [
+ click
+ mock
+ pytestCheckHook
+ ];
meta = with lib; {
description = "Google Authentication Library: oauthlib integration";
homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib";
license = licenses.asl20;
- maintainers = with maintainers; [ terlar ];
+ maintainers = with maintainers; [ SuperSandro2000 terlar ];
};
}
diff --git a/pkgs/development/python-modules/google-auth/default.nix b/pkgs/development/python-modules/google-auth/default.nix
new file mode 100644
index 000000000000..abfe3754ccef
--- /dev/null
+++ b/pkgs/development/python-modules/google-auth/default.nix
@@ -0,0 +1,54 @@
+{ stdenv
+, buildPythonPackage
+, fetchpatch
+, fetchPypi
+, pytestCheckHook
+, cachetools
+, flask
+, freezegun
+, mock
+, oauth2client
+, pyasn1-modules
+, pytest-localserver
+, responses
+, rsa
+}:
+
+buildPythonPackage rec {
+ pname = "google-auth";
+ version = "1.24.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0bmdqkyv8k8n6s8dss4zpbcq1cdxwicpb42kwybd02ia85mh43hb";
+ };
+
+ propagatedBuildInputs = [ pyasn1-modules cachetools rsa ];
+
+ checkInputs = [
+ flask
+ freezegun
+ mock
+ oauth2client
+ pytestCheckHook
+ pytest-localserver
+ responses
+ ];
+
+ pythonImportsCheck = [
+ "google.auth"
+ "google.oauth2"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Auth Python Library";
+ longDescription = ''
+ This library simplifies using Google’s various server-to-server
+ authentication mechanisms to access Google APIs.
+ '';
+ homepage = "https://github.com/googleapis/google-auth-library-python";
+ changelog = "https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-access-context-manager/default.nix b/pkgs/development/python-modules/google-cloud-access-context-manager/default.nix
index 01f7bc9ce33e..3f614258a8fb 100644
--- a/pkgs/development/python-modules/google-cloud-access-context-manager/default.nix
+++ b/pkgs/development/python-modules/google-cloud-access-context-manager/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, fetchPypi, pythonOlder, google_api_core }:
+{ lib, buildPythonPackage, fetchPypi, pythonOlder, google-api-core }:
buildPythonPackage rec {
pname = "google-cloud-access-context-manager";
@@ -9,19 +9,19 @@ buildPythonPackage rec {
sha256 = "1qy7wv1xn7g3x5z0vvv0pwmxhin4hw2m9fs9iklnghy00vg37v0b";
};
- disabled = pythonOlder "3.5";
-
- propagatedBuildInputs = [ google_api_core ];
+ propagatedBuildInputs = [ google-api-core ];
# No tests in repo
doCheck = false;
- pythonImportsCheck = [ "google.identity.accesscontextmanager" ];
+ pythonImportsCheck = [
+ "google.identity.accesscontextmanager"
+ ];
meta = with lib; {
description = "Protobufs for Google Access Context Manager.";
homepage = "https://github.com/googleapis/python-access-context-manager";
license = licenses.asl20;
- maintainers = with maintainers; [ austinbutler ];
+ maintainers = with maintainers; [ austinbutler SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/google-cloud-asset/default.nix b/pkgs/development/python-modules/google-cloud-asset/default.nix
new file mode 100644
index 000000000000..d9baa821fa1e
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-asset/default.nix
@@ -0,0 +1,54 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, grpc_google_iam_v1
+, google-api-core
+, google-cloud-access-context-manager
+, google-cloud-org-policy
+, google-cloud-os-config
+, google-cloud-testutils
+, libcst
+, proto-plus
+, pytest
+, pytest-asyncio
+, pytestCheckHook
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-asset";
+ version = "2.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "05q0yaw6b553qmzylr45zin17h8mvi8yyyxhbv3cxa7f0ahviw8w";
+ };
+
+ propagatedBuildInputs = [
+ grpc_google_iam_v1
+ google-api-core
+ google-cloud-access-context-manager
+ google-cloud-org-policy
+ google-cloud-os-config
+ libcst
+ proto-plus
+ ];
+
+ checkInputs = [ google-cloud-testutils mock pytest-asyncio pytestCheckHook ];
+
+ pythonImportsCheck = [
+ "google.cloud.asset"
+ "google.cloud.asset_v1"
+ "google.cloud.asset_v1p1beta1"
+ "google.cloud.asset_v1p2beta1"
+ "google.cloud.asset_v1p4beta1"
+ "google.cloud.asset_v1p5beta1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Python Client for Google Cloud Asset API";
+ homepage = "https://github.com/googleapis/python-asset";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-automl/default.nix b/pkgs/development/python-modules/google-cloud-automl/default.nix
new file mode 100644
index 000000000000..ce2a9e116cd8
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-automl/default.nix
@@ -0,0 +1,59 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, libcst
+, google-api-core
+, google-cloud-storage
+, google-cloud-testutils
+, pandas
+, proto-plus
+, pytest-asyncio
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-automl";
+ version = "2.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "520dfe2ee04d28f3088c9c582fa2a534fc272647d5e2e59acc903c0152e61696";
+ };
+
+ propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+
+ checkInputs = [
+ google-cloud-storage
+ google-cloud-testutils
+ mock
+ pandas
+ pytest-asyncio
+ pytestCheckHook
+ ];
+
+ preCheck = ''
+ # do not shadow imports
+ rm -r google
+ # requires credentials
+ rm tests/system/gapic/v1beta1/test_system_tables_client_v1.py
+ '';
+
+ disabledTests = [
+ # requires credentials
+ "test_prediction_client_client_info"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.automl"
+ "google.cloud.automl_v1"
+ "google.cloud.automl_v1beta1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Cloud AutoML API client library";
+ homepage = "https://github.com/googleapis/python-automl";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix b/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix
new file mode 100644
index 000000000000..fde46ab7f12d
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix
@@ -0,0 +1,35 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, libcst
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-bigquery-datatransfer";
+ version = "3.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0hmsqvs2srmqcwmli48vd5vw829zax3pwj63fsxig6sdhjlf6j7j";
+ };
+
+ propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ pythonImportsCheck = [
+ "google.cloud.bigquery_datatransfer"
+ "google.cloud.bigquery_datatransfer_v1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "BigQuery Data Transfer API client library";
+ homepage = "https://github.com/googleapis/python-bigquery-datatransfer";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-bigquery/default.nix b/pkgs/development/python-modules/google-cloud-bigquery/default.nix
new file mode 100644
index 000000000000..7206ee43af31
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-bigquery/default.nix
@@ -0,0 +1,58 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, freezegun
+, google-cloud-core
+, google-cloud-testutils
+, google-resumable-media
+, grpcio
+, ipython
+, mock
+, pandas
+, proto-plus
+, pyarrow
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-bigquery";
+ version = "2.6.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1vs4im0fixmszh6p77icys9g7fymwmkfc6va0ng9kpjv1h6gv68z";
+ };
+
+ propagatedBuildInputs = [
+ google-resumable-media
+ google-cloud-core
+ proto-plus
+ pyarrow
+ ];
+
+ checkInputs = [
+ freezegun
+ google-cloud-testutils
+ ipython
+ mock
+ pandas
+ pytestCheckHook
+ ];
+
+ # prevent google directory from shadowing google imports
+ preCheck = ''
+ rm -r google
+ '';
+
+ pythonImportsCheck = [
+ "google.cloud.bigquery"
+ "google.cloud.bigquery_v2"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google BigQuery API client library";
+ homepage = "https://github.com/googleapis/python-bigquery";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_cloud_bigtable/default.nix b/pkgs/development/python-modules/google-cloud-bigtable/default.nix
similarity index 84%
rename from pkgs/development/python-modules/google_cloud_bigtable/default.nix
rename to pkgs/development/python-modules/google-cloud-bigtable/default.nix
index bd12aa592d50..032a30bb2423 100644
--- a/pkgs/development/python-modules/google_cloud_bigtable/default.nix
+++ b/pkgs/development/python-modules/google-cloud-bigtable/default.nix
@@ -2,8 +2,8 @@
, buildPythonPackage
, fetchPypi
, grpc_google_iam_v1
-, google_api_core
-, google_cloud_core
+, google-api-core
+, google-cloud-core
, pytest
, mock
}:
@@ -18,7 +18,7 @@ buildPythonPackage rec {
};
checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ grpc_google_iam_v1 google_api_core google_cloud_core ];
+ propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core google-cloud-core ];
checkPhase = ''
rm -r google
diff --git a/pkgs/development/python-modules/google-cloud-container/default.nix b/pkgs/development/python-modules/google-cloud-container/default.nix
new file mode 100644
index 000000000000..011bb7b1967e
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-container/default.nix
@@ -0,0 +1,43 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, grpc_google_iam_v1
+, libcst
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-container";
+ version = "2.3.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "04f9mx1wxy3l9dvzvvr579fnjp1fdqhgplv5y2gl7h2mvn281k8d";
+ };
+
+ propagatedBuildInputs = [ google-api-core grpc_google_iam_v1 libcst proto-plus ];
+
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ disabledTests = [
+ # requires credentials
+ "test_list_clusters"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.container"
+ "google.cloud.container_v1"
+ "google.cloud.container_v1beta1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Container Engine API client library";
+ homepage = "https://github.com/googleapis/python-container";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_cloud_core/default.nix b/pkgs/development/python-modules/google-cloud-core/default.nix
similarity index 53%
rename from pkgs/development/python-modules/google_cloud_core/default.nix
rename to pkgs/development/python-modules/google-cloud-core/default.nix
index 1ad08ea05af4..c22c56a1ba49 100644
--- a/pkgs/development/python-modules/google_cloud_core/default.nix
+++ b/pkgs/development/python-modules/google-cloud-core/default.nix
@@ -1,31 +1,38 @@
-{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytestCheckHook, python
-, google_api_core, grpcio, mock }:
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pythonOlder
+, pytestCheckHook
+, python
+, google-api-core
+, grpcio
+, mock
+}:
buildPythonPackage rec {
pname = "google-cloud-core";
- version = "1.4.3";
+ version = "1.5.0";
src = fetchPypi {
inherit pname version;
- sha256 = "21afb70c1b0bce8eeb8abb5dca63c5fd37fc8aea18f4b6d60e803bd3d27e6b80";
+ sha256 = "01liq4nrd2g3ingg8v0ly4c86db8agnr9h1fiz219c7fz0as0xqj";
};
- disabled = pythonOlder "3.5";
+ propagatedBuildInputs = [ google-api-core ];
- propagatedBuildInputs = [ google_api_core grpcio ];
- checkInputs = [ google_api_core mock pytestCheckHook ];
-
- pythonImportsCheck = [ "google.cloud" ];
+ checkInputs = [ mock pytestCheckHook ];
# prevent google directory from shadowing google imports
preCheck = ''
rm -r google
'';
+ pythonImportsCheck = [ "google.cloud" ];
+
meta = with stdenv.lib; {
description = "API Client library for Google Cloud: Core Helpers";
homepage = "https://github.com/googleapis/python-cloud-core";
license = licenses.asl20;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/google-cloud-dataproc/default.nix b/pkgs/development/python-modules/google-cloud-dataproc/default.nix
new file mode 100644
index 000000000000..f99b2c382fc6
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-dataproc/default.nix
@@ -0,0 +1,42 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, mock
+, libcst
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-dataproc";
+ version = "2.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "07rv2kgbaqkbd71k5i2zn9kcxasfzkkyai8jnbszhkf92k0lmi41";
+ };
+
+ propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ disabledTests = [
+ # requires credentials
+ "test_list_clusters"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.dataproc"
+ "google.cloud.dataproc_v1"
+ "google.cloud.dataproc_v1beta2"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Dataproc API client library";
+ homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-datastore/default.nix b/pkgs/development/python-modules/google-cloud-datastore/default.nix
new file mode 100644
index 000000000000..5daa2cdd81eb
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-datastore/default.nix
@@ -0,0 +1,46 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, google-cloud-core
+, libcst
+, proto-plus
+, mock
+, pytestCheckHook
+, pytest-asyncio
+, google-cloud-testutils
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-datastore";
+ version = "2.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1yyk9ix1jms5q4kk76cfxzy42wzzyl5qladdswjy5l0pg6iypr8i";
+ };
+
+ propagatedBuildInputs = [ google-api-core google-cloud-core libcst proto-plus ];
+
+ checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
+
+ preCheck = ''
+ # directory shadows imports
+ rm -r google
+ # requires credentials
+ rm tests/system/test_system.py
+ '';
+
+ pythonImportsCheck = [
+ "google.cloud.datastore"
+ "google.cloud.datastore_admin_v1"
+ "google.cloud.datastore_v1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Datastore API client library";
+ homepage = "https://github.com/googleapis/python-datastore";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-dlp/default.nix b/pkgs/development/python-modules/google-cloud-dlp/default.nix
new file mode 100644
index 000000000000..e02805c40762
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-dlp/default.nix
@@ -0,0 +1,42 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, google-cloud-testutils
+, libcst
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-dlp";
+ version = "3.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "09rnzpdlycr1wv8agcfx05v1prn35ylphsbr07486zqdkh5wjk8p";
+ };
+
+ propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+
+ checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
+
+ disabledTests = [
+ # requires credentials
+ "test_inspect_content"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.dlp"
+ "google.cloud.dlp_v2"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Cloud Data Loss Prevention (DLP) API API client library";
+ homepage = "https://github.com/googleapis/python-dlp";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-dns/default.nix b/pkgs/development/python-modules/google-cloud-dns/default.nix
new file mode 100644
index 000000000000..b6777fccec02
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-dns/default.nix
@@ -0,0 +1,41 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, google-cloud-core
+, pytestCheckHook
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-dns";
+ version = "0.32.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "01l6pvfic0vxcvd97ckbxyc7ccr9vb9ln4lyhpp3amdmcy0far3j";
+ };
+
+ propagatedBuildInputs = [ google-api-core google-cloud-core ];
+
+ checkInputs = [ mock pytestCheckHook ];
+
+ preCheck = ''
+ # don#t shadow python imports
+ rm -r google
+ '';
+
+ disabledTests = [
+ # requires credentials
+ "test_quota"
+ ];
+
+ pythonImportsCheck = [ "google.cloud.dns" ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud DNS API client library";
+ homepage = "https://github.com/googleapis/python-dns";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_cloud_error_reporting/default.nix b/pkgs/development/python-modules/google-cloud-error-reporting/default.nix
similarity index 53%
rename from pkgs/development/python-modules/google_cloud_error_reporting/default.nix
rename to pkgs/development/python-modules/google-cloud-error-reporting/default.nix
index 19f90275ae99..cdd54a291243 100644
--- a/pkgs/development/python-modules/google_cloud_error_reporting/default.nix
+++ b/pkgs/development/python-modules/google-cloud-error-reporting/default.nix
@@ -1,6 +1,14 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
-, google_cloud_logging, google_cloud_testutils, libcst, mock, proto-plus
-, pytest-asyncio }:
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, google-cloud-logging
+, google-cloud-testutils
+, libcst
+, mock
+, proto-plus
+, pytest-asyncio
+}:
buildPythonPackage rec {
pname = "google-cloud-error-reporting";
@@ -11,13 +19,16 @@ buildPythonPackage rec {
sha256 = "2fd6fe25343f7017c22e2733a0358c64b3171edc1669d0c8a1e1f07f86a048c4";
};
- disabled = pythonOlder "3.6";
+ propagatedBuildInputs = [ google-cloud-logging libcst proto-plus ];
- checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ];
- propagatedBuildInputs = [ google_cloud_logging libcst proto-plus ];
+ checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
+
+ disabledTests = [
+ # require credentials
+ "test_report_error_event"
+ "test_report_exception"
+ ];
- # Disable tests that require credentials
- disabledTests = [ "test_report_error_event" "test_report_exception" ];
# prevent google directory from shadowing google imports
preCheck = ''
rm -r google
@@ -27,6 +38,6 @@ buildPythonPackage rec {
description = "Stackdriver Error Reporting API client library";
homepage = "https://github.com/googleapis/python-error-reporting";
license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/google-cloud-firestore/default.nix b/pkgs/development/python-modules/google-cloud-firestore/default.nix
new file mode 100644
index 000000000000..1de3ea11b37d
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-firestore/default.nix
@@ -0,0 +1,64 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, aiounittest
+, google-api-core
+, google-cloud-testutils
+, google-cloud-core
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-firestore";
+ version = "2.0.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1q5s2gpkibnjxal9zrz02jfnazf7rxk0bi0ln5a3di6i47kjnga9";
+ };
+
+ propagatedBuildInputs = [
+ google-api-core
+ google-cloud-core
+ proto-plus
+ ];
+
+ checkInputs = [
+ aiounittest
+ google-cloud-testutils
+ mock
+ pytestCheckHook
+ pytest-asyncio
+ ];
+
+ preCheck = ''
+ # do not shadow imports
+ rm -r google
+ '';
+
+ pytestFlagsArray = [
+ # tests are broken
+ "--ignore=tests/system/test_system.py"
+ "--ignore=tests/system/test_system_async.py"
+ ];
+
+ disabledTests = [
+ # requires credentials
+ "test_collections"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.firestore_v1"
+ "google.cloud.firestore_admin_v1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Firestore API client library";
+ homepage = "https://github.com/googleapis/python-firestore";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-iam/default.nix b/pkgs/development/python-modules/google-cloud-iam/default.nix
index 9d6120629380..f96940f4e67f 100644
--- a/pkgs/development/python-modules/google-cloud-iam/default.nix
+++ b/pkgs/development/python-modules/google-cloud-iam/default.nix
@@ -1,5 +1,14 @@
-{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
-, google_api_core, libcst, mock, proto-plus, pytest-asyncio }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, pythonOlder
+, google-api-core
+, libcst
+, mock
+, proto-plus
+, pytest-asyncio
+}:
buildPythonPackage rec {
pname = "google-cloud-iam";
@@ -10,13 +19,19 @@ buildPythonPackage rec {
sha256 = "1zxsx5avs8njiyw32zvsx2yblmmiwxy771x334hbgmy0aqms4lak";
};
- propagatedBuildInputs = [ google_api_core libcst proto-plus ];
+ propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+ pythonImportsCheck = [
+ "google.cloud.iam_credentials"
+ "google.cloud.iam_credentials_v1"
+ ];
+
meta = with lib; {
- description = "Google Cloud IAM API client library";
+ description = "IAM Service Account Credentials API client library";
homepage = "https://github.com/googleapis/python-iam";
license = licenses.asl20;
- maintainers = with maintainers; [ austinbutler ];
+ maintainers = with maintainers; [ austinbutler SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/google-cloud-iot/default.nix b/pkgs/development/python-modules/google-cloud-iot/default.nix
new file mode 100644
index 000000000000..7e8a224256d1
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-iot/default.nix
@@ -0,0 +1,42 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, grpc_google_iam_v1
+, google-api-core
+, libcst
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-iot";
+ version = "2.0.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "08spn5g0s386x21dgwb46na8aknbwq5d1sn8bh6kayk9fjfbxwla";
+ };
+
+ propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ];
+
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ disabledTests = [
+ # requires credentials
+ "test_list_device_registries"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.iot"
+ "google.cloud.iot_v1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Cloud IoT API API client library";
+ homepage = "https://github.com/googleapis/python-iot";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_cloud_kms/default.nix b/pkgs/development/python-modules/google-cloud-kms/default.nix
similarity index 60%
rename from pkgs/development/python-modules/google_cloud_kms/default.nix
rename to pkgs/development/python-modules/google-cloud-kms/default.nix
index a4d2439fb49c..49f088478ee0 100644
--- a/pkgs/development/python-modules/google_cloud_kms/default.nix
+++ b/pkgs/development/python-modules/google-cloud-kms/default.nix
@@ -1,5 +1,13 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
-, grpc_google_iam_v1, google_api_core, libcst, mock, proto-plus, pytest-asyncio
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, grpc_google_iam_v1
+, google-api-core
+, libcst
+, mock
+, proto-plus
+, pytest-asyncio
}:
buildPythonPackage rec {
@@ -11,19 +19,22 @@ buildPythonPackage rec {
sha256 = "0f3k2ixp1zsgydpvkj75bs2mb805389snyw30hn41c38qq5ksdga";
};
- disabled = pythonOlder "3.6";
+ propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ];
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
- propagatedBuildInputs =
- [ grpc_google_iam_v1 google_api_core libcst proto-plus ];
# Disable tests that need credentials
disabledTests = [ "test_list_global_key_rings" ];
+ pythonImportsCheck = [
+ "google.cloud.kms"
+ "google.cloud.kms_v1"
+ ];
+
meta = with stdenv.lib; {
description = "Cloud Key Management Service (KMS) API API client library";
homepage = "https://github.com/googleapis/python-kms";
license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/google-cloud-language/default.nix b/pkgs/development/python-modules/google-cloud-language/default.nix
new file mode 100644
index 000000000000..2074b1edb1d6
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-language/default.nix
@@ -0,0 +1,37 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, libcst
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-language";
+ version = "2.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "123vqfrn7pyn3ia7cmhx8bgafd4gxxlmhf33s3vgspyjck6sprxb";
+ };
+
+ propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ pythonImportsCheck = [
+ "google.cloud.language"
+ "google.cloud.language_v1"
+ "google.cloud.language_v1beta2"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Natural Language API client library";
+ homepage = "https://github.com/googleapis/python-language";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-logging/default.nix b/pkgs/development/python-modules/google-cloud-logging/default.nix
new file mode 100644
index 000000000000..dba00274021f
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-logging/default.nix
@@ -0,0 +1,59 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, django
+, flask
+, google-api-core
+, google-cloud-core
+, google-cloud-testutils
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+, webapp2
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-logging";
+ version = "2.0.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0s09vs4rnq4637j8zw7grv3f4j7njqprm744b1knzldj91rg0vmi";
+ };
+
+ propagatedBuildInputs = [ google-api-core google-cloud-core proto-plus ];
+
+ checkInputs = [
+ django
+ flask
+ google-cloud-testutils
+ mock
+ pytestCheckHook
+ pytest-asyncio
+ ];
+
+ disabledTests = [
+ # requires credentials
+ "test_write_log_entries"
+ ];
+
+ preCheck = ''
+ # prevent google directory from shadowing google imports
+ rm -r google
+ # requires credentials
+ rm tests/system/test_system.py tests/unit/test__gapic.py
+ '';
+
+ pythonImortsCheck = [
+ "google.cloud.logging"
+ "google.cloud.logging_v2"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Stackdriver Logging API client library";
+ homepage = "https://github.com/googleapis/python-logging";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-monitoring/default.nix b/pkgs/development/python-modules/google-cloud-monitoring/default.nix
new file mode 100644
index 000000000000..10d7264c5606
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-monitoring/default.nix
@@ -0,0 +1,42 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, google-cloud-testutils
+, libcst
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-monitoring";
+ version = "2.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "07r0y995fin6cbnqlhmd38fv3pfhhqyw04l7nr38sldrd82gmsqx";
+ };
+
+ propagatedBuildInputs = [ libcst google-api-core proto-plus ];
+
+ checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
+
+ disabledTests = [
+ # requires credentials
+ "test_list_monitored_resource_descriptors"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.monitoring"
+ "google.cloud.monitoring_v3"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Stackdriver Monitoring API client library";
+ homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-org-policy/default.nix b/pkgs/development/python-modules/google-cloud-org-policy/default.nix
index 39cc0dc9c24b..10ee559b8f0b 100644
--- a/pkgs/development/python-modules/google-cloud-org-policy/default.nix
+++ b/pkgs/development/python-modules/google-cloud-org-policy/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, fetchPypi, pythonOlder, google_api_core }:
+{ lib, buildPythonPackage, fetchPypi, pythonOlder, google-api-core }:
buildPythonPackage rec {
pname = "google-cloud-org-policy";
@@ -9,9 +9,7 @@ buildPythonPackage rec {
sha256 = "0ncgcnbvmgqph54yh2pjx2hh82gnkhsrw5yirp4wlf7jclh6j9xh";
};
- disabled = pythonOlder "3.5";
-
- propagatedBuildInputs = [ google_api_core ];
+ propagatedBuildInputs = [ google-api-core ];
# No tests in repo
doCheck = false;
@@ -22,6 +20,6 @@ buildPythonPackage rec {
description = "Protobufs for Google Cloud Organization Policy.";
homepage = "https://github.com/googleapis/python-org-policy";
license = licenses.asl20;
- maintainers = with maintainers; [ austinbutler ];
+ maintainers = with maintainers; [ austinbutler SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/google-cloud-os-config/default.nix b/pkgs/development/python-modules/google-cloud-os-config/default.nix
new file mode 100644
index 000000000000..94d8d4738f5c
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-os-config/default.nix
@@ -0,0 +1,29 @@
+{ lib, buildPythonPackage, fetchPypi, google-api-core, libcst, mock, proto-plus, pytestCheckHook, pytest-asyncio }:
+
+buildPythonPackage rec {
+ pname = "google-cloud-os-config";
+ version = "1.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "07zvagy9hwaccwvg1xad5nkalgkria0maa5yxiwqf1yk9f7gbyq1";
+ };
+
+ propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ pythonImportsCheck = [ "google.cloud.osconfig" ];
+
+ disabledTests = [
+ "test_patch_deployment"
+ "test_patch_job"
+ ];
+
+ meta = with lib; {
+ description = "Google Cloud OS Config API client library";
+ homepage = "https://github.com/googleapis/python-os-config";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-pubsub/default.nix b/pkgs/development/python-modules/google-cloud-pubsub/default.nix
new file mode 100644
index 000000000000..e946f74ed3b2
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-pubsub/default.nix
@@ -0,0 +1,42 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, google-api-core
+, google-cloud-testutils
+, grpc_google_iam_v1
+, libcst
+, mock
+, proto-plus
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-pubsub";
+ version = "2.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1rfdbkxbndi00wx9dx733ihp3hmcsk6k23pcjni0ki7m0c4acl5w";
+ };
+
+ propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ];
+
+ checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
+
+ preCheck = ''
+ # prevent google directory from shadowing google imports
+ rm -r google
+ # Tests in pubsub_v1 attempt to contact pubsub.googleapis.com
+ rm -r tests/unit/pubsub_v1
+ '';
+
+ pythonImportsCheck = [ "google.cloud.pubsub" ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Pub/Sub API client library";
+ homepage = "https://pypi.org/project/google-cloud-pubsub";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-redis/default.nix b/pkgs/development/python-modules/google-cloud-redis/default.nix
new file mode 100644
index 000000000000..9408c6642d96
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-redis/default.nix
@@ -0,0 +1,37 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, libcst
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-redis";
+ version = "2.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1f67mr473vzv0qgjm4hycfnrjgiqrsv47vqrynwjy9yrca2130y7";
+ };
+
+ propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ pythonImportsCheck = [
+ "google.cloud.redis"
+ "google.cloud.redis_v1"
+ "google.cloud.redis_v1beta1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Memorystore for Redis API client library";
+ homepage = "https://github.com/googleapis/python-redis";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-resource-manager/default.nix b/pkgs/development/python-modules/google-cloud-resource-manager/default.nix
new file mode 100644
index 000000000000..36e8d0bcc52b
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-resource-manager/default.nix
@@ -0,0 +1,36 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, google-cloud-core
+, google-api-core
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-resource-manager";
+ version = "0.30.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1la643vkf6fm2gapz57cm92xzvmhzgpzv3bb6112yz1cizrvnxrm";
+ };
+
+ propagatedBuildInputs = [ google-api-core google-cloud-core ];
+
+ checkInputs = [ mock pytestCheckHook ];
+
+ # prevent google directory from shadowing google imports
+ preCheck = ''
+ rm -r google
+ '';
+
+ pythonImportsCheck = [ "google.cloud.resource_manager" ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Resource Manager API client library";
+ homepage = "https://github.com/googleapis/python-resource-manager";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_cloud_runtimeconfig/default.nix b/pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix
similarity index 50%
rename from pkgs/development/python-modules/google_cloud_runtimeconfig/default.nix
rename to pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix
index d4fb4c59a18c..c4e569b88ad3 100644
--- a/pkgs/development/python-modules/google_cloud_runtimeconfig/default.nix
+++ b/pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix
@@ -1,5 +1,11 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
-, google_api_core, google_cloud_core, mock }:
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, google-cloud-core
+, mock
+, pytestCheckHook
+}:
buildPythonPackage rec {
pname = "google-cloud-runtimeconfig";
@@ -7,28 +13,27 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "57143ec3c5ed3e0bee590a98857eec06c68aa2eacbce477403226a0d2e85a8ad";
+ sha256 = "1bd8hlp0ssi20ds4gknbxai8mih6xiz8b60ab7p0ngpdqp1kw52p";
};
- disabled = pythonOlder "3.5";
+ propagatedBuildInputs = [ google-api-core google-cloud-core ];
checkInputs = [ mock pytestCheckHook ];
- propagatedBuildInputs = [ google_api_core google_cloud_core ];
- # api_url test broken, fix not yet released
- # https://github.com/googleapis/python-resource-manager/pull/31
# Client tests require credentials
- disabledTests = [ "build_api_url_w_custom_endpoint" "client_options" ];
+ disabledTests = [ "client_options" ];
# prevent google directory from shadowing google imports
preCheck = ''
rm -r google
'';
+ pythonImportsCheck = [ "google.cloud.runtimeconfig" ];
+
meta = with stdenv.lib; {
description = "Google Cloud RuntimeConfig API client library";
homepage = "https://pypi.org/project/google-cloud-runtimeconfig";
license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/google-cloud-secret-manager/default.nix b/pkgs/development/python-modules/google-cloud-secret-manager/default.nix
new file mode 100644
index 000000000000..bb18b72caad6
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-secret-manager/default.nix
@@ -0,0 +1,47 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, grpc_google_iam_v1
+, libcst
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-secret-manager";
+ version = "2.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0c2w8ny3n84faq1mq86f16lzqgqbk1977q2f5qxn5a5ccj8v821g";
+ };
+
+ propagatedBuildInputs = [
+ google-api-core
+ grpc_google_iam_v1
+ libcst
+ proto-plus
+ ];
+
+ checkInputs = [
+ mock
+ pytestCheckHook
+ pytest-asyncio
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.secretmanager"
+ "google.cloud.secretmanager_v1"
+ "google.cloud.secretmanager_v1beta1"
+ ];
+
+ meta = with lib; {
+ description = "Secret Manager API API client library";
+ homepage = "https://github.com/googleapis/python-secret-manager";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ siriobalmelli SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-securitycenter/default.nix b/pkgs/development/python-modules/google-cloud-securitycenter/default.nix
new file mode 100644
index 000000000000..4784dbe44739
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-securitycenter/default.nix
@@ -0,0 +1,39 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, grpc_google_iam_v1
+, google-api-core
+, libcst
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-securitycenter";
+ version = "1.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1lgz6qpsfv4b7p5ff4sdpjpaddxpbazdvlcrqr1i0c0qil2lkm2i";
+ };
+
+ propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ];
+
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ pythonImportsCheck = [
+ "google.cloud.securitycenter"
+ "google.cloud.securitycenter_v1"
+ "google.cloud.securitycenter_v1beta1"
+ "google.cloud.securitycenter_v1p1beta1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Cloud Security Command Center API API client library";
+ homepage = "https://github.com/googleapis/python-securitycenter";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-spanner/default.nix b/pkgs/development/python-modules/google-cloud-spanner/default.nix
new file mode 100644
index 000000000000..2591fd9dc689
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-spanner/default.nix
@@ -0,0 +1,54 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, grpc_google_iam_v1
+, google-cloud-core
+, google-cloud-testutils
+, libcst
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+, sqlparse
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-spanner";
+ version = "2.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0mkkx6l3cbwfwng12zpisbv6m919fkhdb48xk24ayc19193bi86n";
+ };
+
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace '"proto-plus == 1.11.0"' '"proto-plus"'
+ '';
+
+ propagatedBuildInputs = [ google-cloud-core grpc_google_iam_v1 libcst proto-plus sqlparse ];
+
+ checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
+
+ preCheck = ''
+ # prevent google directory from shadowing google imports
+ rm -r google
+ # disable tests which require credentials
+ rm tests/system/test_{system,system_dbapi}.py
+ rm tests/unit/spanner_dbapi/test_{connect,connection,cursor}.py
+ '';
+
+ pythonImportsCheck = [
+ "google.cloud.spanner_admin_database_v1"
+ "google.cloud.spanner_admin_instance_v1"
+ "google.cloud.spanner_dbapi"
+ "google.cloud.spanner_v1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Cloud Spanner API client library";
+ homepage = "https://github.com/googleapis/python-spanner";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-speech/default.nix b/pkgs/development/python-modules/google-cloud-speech/default.nix
new file mode 100644
index 000000000000..a1d6762eafbf
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-speech/default.nix
@@ -0,0 +1,43 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, libcst
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-speech";
+ version = "2.0.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0ch85h5xrb15fcml5v0f30s0niw02k4v8gi7i8a40161yj882hm7";
+ };
+
+ propagatedBuildInputs = [ libcst google-api-core proto-plus ];
+
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ pytestFlagsArray = [
+ # requrire credentials
+ "--ignore=tests/system/gapic/v1/test_system_speech_v1.py"
+ "--ignore=tests/system/gapic/v1p1beta1/test_system_speech_v1p1beta1.py"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.speech"
+ "google.cloud.speech_v1"
+ "google.cloud.speech_v1p1beta1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Speech API client library";
+ homepage = "https://github.com/googleapis/python-speech";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-storage/default.nix b/pkgs/development/python-modules/google-cloud-storage/default.nix
new file mode 100644
index 000000000000..cf869d5c8eff
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-storage/default.nix
@@ -0,0 +1,64 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, google-auth
+, google-cloud-iam
+, google-cloud-core
+, google-cloud-kms
+, google-cloud-testutils
+, google-resumable-media
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-storage";
+ version = "1.35.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "17kal75wmyjpva7g04cb9yg7qbyrgwfn575z4gqijd4gz2r0sp2m";
+ };
+
+ propagatedBuildInputs = [
+ google-auth
+ google-cloud-core
+ google-resumable-media
+ ];
+
+ checkInputs = [
+ google-cloud-iam
+ google-cloud-kms
+ google-cloud-testutils
+ mock
+ pytestCheckHook
+ ];
+
+ # disable tests which require credentials and network access
+ disabledTests = [
+ "create"
+ "download"
+ "get"
+ "post"
+ "test_build_api_url"
+ ];
+
+ pytestFlagsArray = [
+ "--ignore=tests/unit/test_bucket.py"
+ "--ignore=tests/system/test_system.py"
+ ];
+
+ # prevent google directory from shadowing google imports
+ preCheck = ''
+ rm -r google
+ '';
+
+ pythonImportsCheck = [ "google.cloud.storage" ];
+
+ meta = with lib; {
+ description = "Google Cloud Storage API client library";
+ homepage = "https://github.com/googleapis/python-storage";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-tasks/default.nix b/pkgs/development/python-modules/google-cloud-tasks/default.nix
new file mode 100644
index 000000000000..8f86e71daedc
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-tasks/default.nix
@@ -0,0 +1,44 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, grpc_google_iam_v1
+, libcst
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-tasks";
+ version = "2.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1jsf7y88lvln9r08pmx673ibmgw397qmir5drrcfvlmgqvszp7qx";
+ };
+
+ propagatedBuildInputs = [ google-api-core grpc_google_iam_v1 libcst proto-plus ];
+
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ disabledTests = [
+ # requires credentials
+ "test_list_queues"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.tasks"
+ "google.cloud.tasks_v2"
+ "google.cloud.tasks_v2beta2"
+ "google.cloud.tasks_v2beta3"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Cloud Tasks API API client library";
+ homepage = "https://github.com/googleapis/python-tasks";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_cloud_testutils/default.nix b/pkgs/development/python-modules/google-cloud-testutils/default.nix
similarity index 64%
rename from pkgs/development/python-modules/google_cloud_testutils/default.nix
rename to pkgs/development/python-modules/google-cloud-testutils/default.nix
index dfd6354dcc4b..7358c61f59a0 100644
--- a/pkgs/development/python-modules/google_cloud_testutils/default.nix
+++ b/pkgs/development/python-modules/google-cloud-testutils/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi, google_auth, pytest, six }:
+{ stdenv, buildPythonPackage, fetchPypi, google-auth, six }:
buildPythonPackage rec {
pname = "google-cloud-testutils";
@@ -9,15 +9,17 @@ buildPythonPackage rec {
sha256 = "1bn1pz00lxym3vkl6l45b3nydpmfdvmylwggh2lspldrxwx39a0k";
};
- propagatedBuildInputs = [ google_auth six ];
+ propagatedBuildInputs = [ google-auth six ];
- # There are no tests
+ # does not contain tests
doCheck = false;
+ pythonImportsCheck = [ "test_utils" ];
+
meta = with stdenv.lib; {
description = "System test utilities for google-cloud-python";
homepage = "https://github.com/googleapis/python-test-utils";
license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/google-cloud-texttospeech/default.nix b/pkgs/development/python-modules/google-cloud-texttospeech/default.nix
new file mode 100644
index 000000000000..7c8f738f57b7
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-texttospeech/default.nix
@@ -0,0 +1,43 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, google-api-core
+, libcst
+, mock
+, proto-plus
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-texttospeech";
+ version = "2.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "17igfwh34369gkvsbrm46j1ii61i6268wg2g2dl9c65nf9z3kgfb";
+ };
+
+ propagatedBuildInputs = [ libcst google-api-core proto-plus ];
+
+ checkInputs = [ mock pytest-asyncio pytestCheckHook ];
+
+ disabledTests = [
+ # Disable tests that require credentials
+ "test_list_voices"
+ "test_synthesize_speech"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.texttospeech"
+ "google.cloud.texttospeech_v1"
+ "google.cloud.texttospeech_v1beta1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Text-to-Speech API client library";
+ homepage = "https://github.com/googleapis/python-texttospeech";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-trace/default.nix b/pkgs/development/python-modules/google-cloud-trace/default.nix
new file mode 100644
index 000000000000..200f3dc1816a
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-trace/default.nix
@@ -0,0 +1,44 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, google-cloud-core
+, google-cloud-testutils
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-trace";
+ version = "1.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1lvcm4w1l7hiqg64kdscch3f3bq19q9ii49xj4lljn2a4xffxl8v";
+ };
+
+ propagatedBuildInputs = [ google-api-core google-cloud-core proto-plus ];
+
+ checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
+
+ disabledTests = [
+ # require credentials
+ "test_batch_write_spans"
+ "test_list_traces"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.trace"
+ "google.cloud.trace_v1"
+ "google.cloud.trace_v2"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Cloud Trace API client library";
+ homepage = "https://github.com/googleapis/python-trace";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-translate/default.nix b/pkgs/development/python-modules/google-cloud-translate/default.nix
new file mode 100644
index 000000000000..41ec5e76fece
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-translate/default.nix
@@ -0,0 +1,46 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, google-api-core
+, google-cloud-core
+, google-cloud-testutils
+, grpcio
+, libcst
+, mock
+, proto-plus
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-translate";
+ version = "3.0.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1s2gvlzfqd2gsrzaz7yl9q8s1k03dlsjahgg95s017vlcn21d0v1";
+ };
+
+ propagatedBuildInputs = [ google-api-core google-cloud-core libcst proto-plus ];
+
+ checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
+
+ preCheck = ''
+ # prevent shadowing imports
+ rm -r google
+ '';
+
+ pythonImportsCheck = [
+ "google.cloud.translate"
+ "google.cloud.translate_v2"
+ "google.cloud.translate_v3"
+ "google.cloud.translate_v3beta1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Translation API client library";
+ homepage = "https://github.com/googleapis/python-translate";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-videointelligence/default.nix b/pkgs/development/python-modules/google-cloud-videointelligence/default.nix
new file mode 100644
index 000000000000..72a7f42e4f59
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-videointelligence/default.nix
@@ -0,0 +1,45 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, mock
+, google-api-core
+, google-cloud-testutils
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-videointelligence";
+ version = "2.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1yhmizig41ymr2dz0i6ccrwszp0ivyykmq11vqxp82l9ncjima82";
+ };
+
+ propagatedBuildInputs = [ google-api-core proto-plus ];
+
+ checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
+
+ disabledTests = [
+ # require credentials
+ "test_annotate_video"
+ ];
+
+ pythonImportsCheck = [
+ "google.cloud.videointelligence"
+ "google.cloud.videointelligence_v1"
+ "google.cloud.videointelligence_v1beta2"
+ "google.cloud.videointelligence_v1p1beta1"
+ "google.cloud.videointelligence_v1p2beta1"
+ "google.cloud.videointelligence_v1p3beta1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Video Intelligence API client library";
+ homepage = "https://github.com/googleapis/python-videointelligence";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-vision/default.nix b/pkgs/development/python-modules/google-cloud-vision/default.nix
new file mode 100644
index 000000000000..42e0aa61f747
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-vision/default.nix
@@ -0,0 +1,41 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, google-api-core
+, libcst
+, mock
+, proto-plus
+, pytestCheckHook
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-vision";
+ version = "2.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0qbwhapmn5ia853c4nfnz1qiksngvr8j0xxjasrykwhxcsd7s1ka";
+ };
+
+ propagatedBuildInputs = [ libcst google-api-core proto-plus];
+
+ checkInputs = [ mock pytestCheckHook pytest-asyncio ];
+
+ pythonImportsCheck = [
+ "google.cloud.vision"
+ "google.cloud.vision_helpers"
+ "google.cloud.vision_v1"
+ "google.cloud.vision_v1p1beta1"
+ "google.cloud.vision_v1p2beta1"
+ "google.cloud.vision_v1p3beta1"
+ "google.cloud.vision_v1p4beta1"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Cloud Vision API API client library";
+ homepage = "https://github.com/googleapis/python-vision";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix b/pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix
new file mode 100644
index 000000000000..c145bf9837d0
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix
@@ -0,0 +1,36 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pytestCheckHook
+, google-api-core
+, libcst
+, mock
+, proto-plus
+, pytest-asyncio
+}:
+
+buildPythonPackage rec {
+ pname = "google-cloud-websecurityscanner";
+ version = "1.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "14sky9bkl00n65ksig3f6psm31pkmkvlcprlk6s9if470j40zrhx";
+ };
+
+ propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+
+ checkInputs = [ mock pytest-asyncio pytestCheckHook ];
+
+ pythonImportsCheck = [
+ "google.cloud.websecurityscanner_v1alpha"
+ "google.cloud.websecurityscanner_v1beta"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Google Cloud Web Security Scanner API client library";
+ homepage = "https://github.com/googleapis/python-websecurityscanner";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google-crc32c/default.nix b/pkgs/development/python-modules/google-crc32c/default.nix
index fbed406cebce..aaf16d9e7c82 100644
--- a/pkgs/development/python-modules/google-crc32c/default.nix
+++ b/pkgs/development/python-modules/google-crc32c/default.nix
@@ -1,31 +1,31 @@
-{ lib, buildPythonPackage, isPy3k, fetchFromGitHub, cffi, crc32c, pytestCheckHook }:
+{ lib, buildPythonPackage, fetchFromGitHub, cffi, crc32c, pytestCheckHook }:
buildPythonPackage rec {
pname = "google-crc32c";
- version = "1.0.0";
-
- disabled = !isPy3k;
+ version = "1.1.0";
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-crc32c";
rev = "v${version}";
- sha256 = "0n3ggsxmk1fhq0kz6p5rcj4gypfb05i26fcn7lsawakgl7fzxqyl";
+ sha256 = "0vbidg9yrv9k8xvk8rl43lsf4cg3dci4a9k4srwwrchbxivz1gr6";
};
- buildInputs = [ crc32c ];
+ buildInputs = [ crc32c ];
+
propagatedBuildInputs = [ cffi ];
LDFLAGS = "-L${crc32c}/lib";
CFLAGS = "-I${crc32c}/include";
checkInputs = [ pytestCheckHook crc32c ];
+
pythonImportsCheck = [ "google_crc32c" ];
meta = with lib; {
homepage = "https://github.com/googleapis/python-crc32c";
description = "Wrapper the google/crc32c hardware-based implementation of the CRC32C hashing algorithm";
license = with licenses; [ asl20 ];
- maintainers = with maintainers; [ freezeboy ];
+ maintainers = with maintainers; [ freezeboy SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/google-i18n-address/default.nix b/pkgs/development/python-modules/google-i18n-address/default.nix
index 56a77258c8aa..590962590e5f 100644
--- a/pkgs/development/python-modules/google-i18n-address/default.nix
+++ b/pkgs/development/python-modules/google-i18n-address/default.nix
@@ -1,4 +1,4 @@
-{ buildPythonPackage, fetchPypi, lib, requests, pytest, pytestcov, mock }:
+{ buildPythonPackage, fetchPypi, lib, requests, pytestCheckHook, mock }:
buildPythonPackage rec {
pname = "google-i18n-address";
@@ -11,12 +11,12 @@ buildPythonPackage rec {
propagatedBuildInputs = [ requests ];
- checkInputs = [ pytest pytestcov mock ];
+ checkInputs = [ pytestCheckHook mock ];
meta = with lib; {
description = "Google's i18n address data packaged for Python";
homepage = "https://pypi.org/project/google-i18n-address/";
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
license = licenses.bsd3;
};
}
diff --git a/pkgs/development/python-modules/google-music-proto/default.nix b/pkgs/development/python-modules/google-music-proto/default.nix
index 16363192c81b..a883f707bdf1 100644
--- a/pkgs/development/python-modules/google-music-proto/default.nix
+++ b/pkgs/development/python-modules/google-music-proto/default.nix
@@ -1,4 +1,7 @@
-{ lib, buildPythonPackage, fetchPypi, pythonOlder
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pythonOlder
, attrs
, audio-metadata
, importlib-metadata
@@ -10,7 +13,6 @@
buildPythonPackage rec {
pname = "google-music-proto";
version = "2.10.0";
- disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
@@ -20,7 +22,7 @@ buildPythonPackage rec {
postPatch = ''
sed -i -e "/audio-metadata/c\'audio-metadata'," -e "/marshmallow/c\'marshmallow'," setup.py
substituteInPlace setup.py \
- --replace "pendulum>=2.0,<=3.0,!=2.0.5,!=2.1.0" "pendulum>=2.0,<=3.0"
+ --replace "'attrs>=18.2,<19.4'" "'attrs'"
'';
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/google-music-utils/default.nix b/pkgs/development/python-modules/google-music-utils/default.nix
index b7fd2738e048..801b4b78a178 100644
--- a/pkgs/development/python-modules/google-music-utils/default.nix
+++ b/pkgs/development/python-modules/google-music-utils/default.nix
@@ -1,30 +1,35 @@
-{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
-, audio-metadata, multidict, wrapt
-, pytest
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, audio-metadata
+, multidict
+, poetry
+, pytestCheckHook
}:
buildPythonPackage rec {
pname = "google-music-utils";
- version = "2.1.0";
+ version = "2.5.0";
# Pypi tarball doesn't contain tests
src = fetchFromGitHub {
owner = "thebigmunch";
repo = "google-music-utils";
rev = version;
- sha256 = "0fn4zp0gf1wx2x06dbc840qcq21j4p3ajghxp7646w2n6n9gxhh7";
+ sha256 = "0vwbrgakk23fypjspmscz4gllnb3dksv2njy4j4bm8vyr6fwbi5f";
};
+ format = "pyproject";
- propagatedBuildInputs = [
- audio-metadata multidict wrapt
- ];
-
- checkInputs = [ pytest ];
- checkPhase = ''
- pytest
+ postPatch = ''
+ substituteInPlace pyproject.toml \
+ --replace 'multidict = "^4.0"' 'multidict = ">4.0"'
'';
- disabled = pythonOlder "3.6";
+ nativeBuildInputs = [ poetry ];
+
+ propagatedBuildInputs = [ audio-metadata multidict ];
+
+ checkInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://github.com/thebigmunch/google-music-utils";
diff --git a/pkgs/development/python-modules/google-music/default.nix b/pkgs/development/python-modules/google-music/default.nix
index 9d2f0def99b2..e5b42c5310f7 100644
--- a/pkgs/development/python-modules/google-music/default.nix
+++ b/pkgs/development/python-modules/google-music/default.nix
@@ -1,4 +1,6 @@
-{ lib, buildPythonPackage, fetchPypi, pythonOlder
+{ lib
+, buildPythonPackage
+, fetchPypi
, appdirs
, audio-metadata
, google-music-proto
@@ -14,7 +16,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "b79956cc0df86345c74436ae6213b700345403c91d51947288806b174322573b";
+ sha256 = "0fsp491ifsw0i1r98l8xr41m8d00nw9n5bin8k3laqzq1p65d6dp";
};
postPatch = ''
@@ -35,8 +37,6 @@ buildPythonPackage rec {
# No tests
doCheck = false;
- disabled = pythonOlder "3.6";
-
meta = with lib; {
homepage = "https://github.com/thebigmunch/google-music";
description = "A Google Music API wrapper";
diff --git a/pkgs/development/python-modules/google-resumable-media/default.nix b/pkgs/development/python-modules/google-resumable-media/default.nix
new file mode 100644
index 000000000000..531dc1a28603
--- /dev/null
+++ b/pkgs/development/python-modules/google-resumable-media/default.nix
@@ -0,0 +1,46 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, google-auth
+, google-cloud-testutils
+, google-crc32c
+, mock
+, pytestCheckHook
+, pytest-asyncio
+, requests
+}:
+
+buildPythonPackage rec {
+ pname = "google-resumable-media";
+ version = "1.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0hwxdgsqh6933kp4jkv6hwwdcqs7bgjn9j08ga399njv3s9b367f";
+ };
+
+ propagatedBuildInputs = [ google-auth google-crc32c requests ];
+
+ checkInputs = [ google-auth google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
+
+ preCheck = ''
+ # prevent shadowing imports
+ rm -r google
+ # fixture 'authorized_transport' not found
+ rm tests/system/requests/test_upload.py
+ # requires network
+ rm tests/system/requests/test_download.py
+ '';
+
+ pythonImportsCheck = [
+ "google._async_resumable_media"
+ "google.resumable_media"
+ ];
+
+ meta = with lib; {
+ description = "Utilities for Google Media Downloads and Resumable Uploads";
+ homepage = "https://github.com/GoogleCloudPlatform/google-resumable-media-python";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_auth/default.nix b/pkgs/development/python-modules/google_auth/default.nix
deleted file mode 100644
index 3f47a366fba8..000000000000
--- a/pkgs/development/python-modules/google_auth/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ stdenv, buildPythonPackage, fetchpatch, fetchPypi, pythonOlder
-, pytestCheckHook, cachetools, flask, freezegun, mock, oauth2client
-, pyasn1-modules, pytest, pytest-localserver, requests, responses, rsa
-, setuptools, six, urllib3 }:
-
-buildPythonPackage rec {
- pname = "google-auth";
- version = "1.23.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "5176db85f1e7e837a646cd9cede72c3c404ccf2e3373d9ee14b2db88febad440";
- };
-
- disabled = pythonOlder "3.5";
-
- propagatedBuildInputs = [ six pyasn1-modules cachetools rsa setuptools ];
-
- checkInputs = [
- flask
- freezegun
- mock
- oauth2client
- pytestCheckHook
- pytest-localserver
- requests
- responses
- urllib3
- ];
-
- meta = with stdenv.lib; {
- description = "Google Auth Python Library";
- longDescription = ''
- This library simplifies using Google’s various server-to-server
- authentication mechanisms to access Google APIs.
- '';
- homepage = "https://github.com/googleapis/google-auth-library-python";
- changelog =
- "https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md";
- # Documentation: https://googleapis.dev/python/google-auth/latest/index.html
- license = licenses.asl20;
- maintainers = with maintainers; [ ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_asset/default.nix b/pkgs/development/python-modules/google_cloud_asset/default.nix
deleted file mode 100644
index 87b1fdf8fc9d..000000000000
--- a/pkgs/development/python-modules/google_cloud_asset/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, grpc_google_iam_v1
-, google_api_core, google-cloud-access-context-manager, google-cloud-org-policy
-, libcst, proto-plus, pytest, pytest-asyncio, pytestCheckHook, mock }:
-
-buildPythonPackage rec {
- pname = "google-cloud-asset";
- version = "2.2.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "1cf1b8a102eea8cec65eb07bef51dc15c1136cfc8564ea7fc5a39465b8f20017";
- };
-
- disabled = pythonOlder "3.6";
-
- checkInputs = [ mock pytest-asyncio pytestCheckHook ];
- disabledTests = [ "asset_service_transport_auth_adc" ];
- propagatedBuildInputs = [
- grpc_google_iam_v1
- google_api_core
- google-cloud-access-context-manager
- google-cloud-org-policy
- libcst
- proto-plus
- ];
-
- # Remove tests intended to be run in VPC
- preCheck = ''
- rm -rf tests/system
- '';
-
- meta = with stdenv.lib; {
- description = "Python Client for Google Cloud Asset API";
- homepage = "https://github.com/googleapis/python-asset";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_automl/default.nix b/pkgs/development/python-modules/google_cloud_automl/default.nix
deleted file mode 100644
index 3ad8dcb12fb3..000000000000
--- a/pkgs/development/python-modules/google_cloud_automl/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytestCheckHook, libcst
-, google_api_core, google_cloud_storage, google_cloud_testutils, pandas
-, proto-plus, pytest-asyncio, mock }:
-
-buildPythonPackage rec {
- pname = "google-cloud-automl";
- version = "2.1.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "520dfe2ee04d28f3088c9c582fa2a534fc272647d5e2e59acc903c0152e61696";
- };
-
- disabled = pythonOlder "3.6";
-
- checkInputs = [
- google_cloud_storage
- google_cloud_testutils
- mock
- pandas
- pytest-asyncio
- pytestCheckHook
- ];
- propagatedBuildInputs = [ google_api_core libcst proto-plus ];
-
- # ignore tests which need credentials
- disabledTests = [ "test_prediction_client_client_info" ];
- preCheck = ''
- rm -r google
- rm tests/system/gapic/v1beta1/test_system_tables_client_v1.py
- '';
-
- meta = with stdenv.lib; {
- description = "Cloud AutoML API client library";
- homepage = "https://github.com/googleapis/python-automl";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_bigquery/default.nix b/pkgs/development/python-modules/google_cloud_bigquery/default.nix
deleted file mode 100644
index 3255475fbf51..000000000000
--- a/pkgs/development/python-modules/google_cloud_bigquery/default.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder, freezegun
-, google_api_core, google_cloud_core, google_cloud_testutils
-, google_resumable_media, grpcio, ipython, mock, pandas, proto-plus, pyarrow }:
-
-buildPythonPackage rec {
- pname = "google-cloud-bigquery";
- version = "2.6.1";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "1f99fd0c0c5bde999e056a1be666e5d5bbf392f62c9e730dfcbaf6e8408d44ef";
- };
-
- disabled = pythonOlder "3.6";
-
- checkInputs =
- [ freezegun google_cloud_testutils ipython mock pytestCheckHook ];
- propagatedBuildInputs = [
- google_resumable_media
- google_api_core
- google_cloud_core
- pandas
- proto-plus
- pyarrow
- ];
-
- # prevent google directory from shadowing google imports
- # test_magics requires modifying sys.path
- preCheck = ''
- rm -r google
- rm tests/unit/test_magics.py
- '';
-
- # call_api_applying_custom_retry_on_timeout requires credentials
- # to_dataframe_timestamp_out_of_pyarrow_bounds has inconsistent results
- disabledTests = [
- "call_api_applying_custom_retry_on_timeout"
- "to_dataframe_timestamp_out_of_pyarrow_bounds"
- ];
-
- meta = with stdenv.lib; {
- description = "Google BigQuery API client library";
- homepage = "https://pypi.org/project/google-cloud-bigquery";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_bigquery_datatransfer/default.nix b/pkgs/development/python-modules/google_cloud_bigquery_datatransfer/default.nix
deleted file mode 100644
index 8c71ac92c994..000000000000
--- a/pkgs/development/python-modules/google_cloud_bigquery_datatransfer/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, google_api_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-bigquery-datatransfer";
- version = "2.1.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "0cca79f6ee312159ec3f3b7fea218c3dd51408d39c429ecbea037982e91cc827";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ google_api_core ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "BigQuery Data Transfer API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_container/default.nix b/pkgs/development/python-modules/google_cloud_container/default.nix
deleted file mode 100644
index c5415b84ba1f..000000000000
--- a/pkgs/development/python-modules/google_cloud_container/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, google_api_core
-, grpc_google_iam_v1, libcst, mock, proto-plus, pytest, pytest-asyncio }:
-
-buildPythonPackage rec {
- pname = "google-cloud-container";
- version = "2.3.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "0dcd8084dd55c0439ff065d3fb206e2e5c695d3a25effd774b74f8ce43afc911";
- };
-
- disabled = pythonOlder "3.6";
-
- checkInputs = [ mock pytest pytest-asyncio ];
- propagatedBuildInputs =
- [ google_api_core grpc_google_iam_v1 libcst proto-plus ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Google Container Engine API client library";
- homepage = "https://github.com/googleapis/python-container";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_dataproc/default.nix b/pkgs/development/python-modules/google_cloud_dataproc/default.nix
deleted file mode 100644
index b0067d4316da..000000000000
--- a/pkgs/development/python-modules/google_cloud_dataproc/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, google_api_core
-, pytest
-, mock
-, libcst
-, proto-plus
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-dataproc";
- version = "2.2.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "81c44ac114c94df8f5b21245e5e7fc4eabce66b25fc432c3696b62b5de143b1f";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ google_api_core libcst proto-plus ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Google Cloud Dataproc API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_datastore/default.nix b/pkgs/development/python-modules/google_cloud_datastore/default.nix
deleted file mode 100644
index 07c6cd87237f..000000000000
--- a/pkgs/development/python-modules/google_cloud_datastore/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, google_api_core
-, google_cloud_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-datastore";
- version = "2.0.1";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "0ebf3b0bcb483e066dfe73679e019e2d7b8c1652e26984702cf5e3f020592f6a";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ google_api_core google_cloud_core ];
-
- checkPhase = ''
- rm -r google
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Google Cloud Datastore API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_dlp/default.nix b/pkgs/development/python-modules/google_cloud_dlp/default.nix
deleted file mode 100644
index a5a602dbeadb..000000000000
--- a/pkgs/development/python-modules/google_cloud_dlp/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, enum34
-, google_api_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-dlp";
- version = "2.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "112c8a46979eebd60c3651037e62572fed413977ff2811901aa925c7b7ab9a5a";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ enum34 google_api_core ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Cloud Data Loss Prevention (DLP) API API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_dns/default.nix b/pkgs/development/python-modules/google_cloud_dns/default.nix
deleted file mode 100644
index d488b7ad5632..000000000000
--- a/pkgs/development/python-modules/google_cloud_dns/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, google_api_core
-, google_cloud_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-dns";
- version = "0.32.1";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "7264e58067b55535ee859e124bd3da29337698ef6bb293da667d0316ddbe8606";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ google_api_core google_cloud_core ];
-
- checkPhase = ''
- rm -r google
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Google Cloud DNS API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_firestore/default.nix b/pkgs/development/python-modules/google_cloud_firestore/default.nix
deleted file mode 100644
index 4f819bbf9bfa..000000000000
--- a/pkgs/development/python-modules/google_cloud_firestore/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, google_api_core
-, google_cloud_core
-, pytest
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-firestore";
- version = "2.0.1";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "ae1f58d9174a6fb2c9fd2758c6d4fd237fb4f0decc632b80c217bfbceda38eb6";
- };
-
- checkInputs = [ pytest ];
- propagatedBuildInputs = [ google_api_core google_cloud_core ];
-
- # tests were not included with release
- # See issue https://github.com/googleapis/google-cloud-python/issues/6380
- doCheck = false;
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Google Cloud Firestore API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_iot/default.nix b/pkgs/development/python-modules/google_cloud_iot/default.nix
deleted file mode 100644
index 96364cfd7029..000000000000
--- a/pkgs/development/python-modules/google_cloud_iot/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, enum34
-, grpc_google_iam_v1
-, google_api_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-iot";
- version = "2.0.1";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "8af2be9c74697a350d5cc8ead00ae6cb4e85943564f1d782e8060d0d5eb15723";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ enum34 grpc_google_iam_v1 google_api_core ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Cloud IoT API API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- # maintainers = [ maintainers. ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_language/default.nix b/pkgs/development/python-modules/google_cloud_language/default.nix
deleted file mode 100644
index 4f3defb4e4b9..000000000000
--- a/pkgs/development/python-modules/google_cloud_language/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, enum34
-, google_api_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-language";
- version = "2.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "abe7abcd64d25ffdf6d063385869ef8f34a7de421d5676541cd6df63b3c37b88";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ enum34 google_api_core ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Google Cloud Natural Language API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_logging/default.nix b/pkgs/development/python-modules/google_cloud_logging/default.nix
deleted file mode 100644
index 96473edd583b..000000000000
--- a/pkgs/development/python-modules/google_cloud_logging/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder, django
-, flask, google_api_core, google_cloud_core, google_cloud_testutils, mock
-, webapp2 }:
-
-buildPythonPackage rec {
- pname = "google-cloud-logging";
- version = "2.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "c8e4869ec22aa7958ff937c1acbd34d7a2a8a446af9a09ce442f24128eee063c";
- };
-
- disabled = pythonOlder "3.5";
-
- checkInputs =
- [ django flask google_cloud_testutils mock pytestCheckHook webapp2 ];
- propagatedBuildInputs = [ google_api_core google_cloud_core ];
-
- # api_url test broken, fix not yet released
- # https://github.com/googleapis/python-logging/pull/66
- disabledTests =
- [ "test_build_api_url_w_custom_endpoint" "test_write_log_entries" ];
-
- # prevent google directory from shadowing google imports
- # remove system integration tests
- preCheck = ''
- rm -r google
- rm tests/system/test_system.py
- '';
-
- meta = with stdenv.lib; {
- description = "Stackdriver Logging API client library";
- homepage = "https://github.com/googleapis/python-logging";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_monitoring/default.nix b/pkgs/development/python-modules/google_cloud_monitoring/default.nix
deleted file mode 100644
index 99557565e63a..000000000000
--- a/pkgs/development/python-modules/google_cloud_monitoring/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, google_api_core
-, pandas
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-monitoring";
- version = "2.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "1debfa046ab9518d46b68712c03d86d0ddb11d1aad428aed62c6465752f2201f";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ google_api_core pandas ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Stackdriver Monitoring API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_pubsub/default.nix b/pkgs/development/python-modules/google_cloud_pubsub/default.nix
deleted file mode 100644
index b7b810370f98..000000000000
--- a/pkgs/development/python-modules/google_cloud_pubsub/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytestCheckHook
-, google_api_core, google_cloud_testutils, grpc_google_iam_v1, libcst, mock
-, proto-plus, pytest-asyncio }:
-
-buildPythonPackage rec {
- pname = "google-cloud-pubsub";
- version = "2.2.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "bc50a60803f5c409a295ec0e31cdd4acc271611ce3f4963a072036bbfa5ccde5";
- };
-
- disabled = pythonOlder "3.6";
-
- checkInputs = [ google_cloud_testutils mock pytestCheckHook pytest-asyncio ];
- propagatedBuildInputs =
- [ grpc_google_iam_v1 google_api_core libcst proto-plus ];
-
- # prevent google directory from shadowing google imports
- # Tests in pubsub_v1 attempt to contact pubsub.googleapis.com
- preCheck = ''
- rm -r google
- rm -r tests/unit/pubsub_v1
- '';
-
- pythonImportsCheck = [ "google.cloud.pubsub" ];
-
- meta = with stdenv.lib; {
- description = "Google Cloud Pub/Sub API client library";
- homepage = "https://pypi.org/project/google-cloud-pubsub";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_redis/default.nix b/pkgs/development/python-modules/google_cloud_redis/default.nix
deleted file mode 100644
index 3337d9f3c55b..000000000000
--- a/pkgs/development/python-modules/google_cloud_redis/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, enum34
-, google_api_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-redis";
- version = "2.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "c783118462d9272fb9f519ef43b6ce383e99ad631e922a1f06fbef7148aec7b8";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ enum34 google_api_core ];
-
- # requires old version of google-api-core (override)
- preBuild = ''
- sed -i "s/'google-api-core\[grpc\] >= 0.1.0, < 0.2.0dev'/'google-api-core'/g" setup.py
- sed -i "s/google-api-core\[grpc\]<0.2.0dev,>=0.1.0/google-api-core/g" google_cloud_redis.egg-info/requires.txt
- '';
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Google Cloud Memorystore for Redis API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_resource_manager/default.nix b/pkgs/development/python-modules/google_cloud_resource_manager/default.nix
deleted file mode 100644
index 815ecc118f9b..000000000000
--- a/pkgs/development/python-modules/google_cloud_resource_manager/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
-, google_cloud_core, google_api_core, mock, pytest }:
-
-buildPythonPackage rec {
- pname = "google-cloud-resource-manager";
- version = "0.30.3";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "3577bbf38f2c7c2f42306b8dfdeffbb0eedf45aaec947fd513d51937f72046d1";
- };
-
- disabled = pythonOlder "3.5";
-
- checkInputs = [ mock pytestCheckHook ];
- propagatedBuildInputs = [ google_api_core google_cloud_core ];
-
- # api_url test broken, fix not yet released
- # https://github.com/googleapis/python-resource-manager/pull/31
- disabledTests =
- [ "api_url_no_extra_query_param" "api_url_w_custom_endpoint" ];
-
- # prevent google directory from shadowing google imports
- preCheck = ''
- rm -r google
- '';
-
- meta = with stdenv.lib; {
- description = "Google Cloud Resource Manager API client library";
- homepage = "https://github.com/googleapis/python-resource-manager";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_secret_manager/default.nix b/pkgs/development/python-modules/google_cloud_secret_manager/default.nix
deleted file mode 100644
index c744701c7789..000000000000
--- a/pkgs/development/python-modules/google_cloud_secret_manager/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib, buildPythonPackage, fetchPypi
-, grpc_google_iam_v1, google_api_core, libcst, proto-plus
-, pytest, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-secret-manager";
- version = "2.1.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "2f08b49164aca8623b2e4ee07352980b3ffca909ce205c03568e203bbc455c30";
- };
-
- propagatedBuildInputs = [
- google_api_core
- grpc_google_iam_v1
- libcst
- proto-plus
- ];
-
- checkInputs = [
- mock
- pytest
- ];
- checkPhase = ''
- pytest
- '';
-
- meta = with lib; {
- description = "Secret Manager API: Stores, manages, and secures access to application secrets";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = with maintainers; [ siriobalmelli ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_securitycenter/default.nix b/pkgs/development/python-modules/google_cloud_securitycenter/default.nix
deleted file mode 100644
index cad4b0799c28..000000000000
--- a/pkgs/development/python-modules/google_cloud_securitycenter/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, enum34
-, grpc_google_iam_v1
-, google_api_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-securitycenter";
- version = "1.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "45d47a4389f2f19958a9db8e5c2f169c9b9385e74338fef0a4e49160153df7f7";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ enum34 grpc_google_iam_v1 google_api_core ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Cloud Security Command Center API API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_spanner/default.nix b/pkgs/development/python-modules/google_cloud_spanner/default.nix
deleted file mode 100644
index 38bd65aa091d..000000000000
--- a/pkgs/development/python-modules/google_cloud_spanner/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
-, grpc_google_iam_v1, grpcio-gcp, google_api_core, google_cloud_core
-, google_cloud_testutils, mock, pytest }:
-
-buildPythonPackage rec {
- pname = "google-cloud-spanner";
- version = "2.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "edac9d86ea2d8e87c048423f610cd3e5dbb6f9db7f1f9353ff133014689e97c6";
- };
-
- disabled = pythonOlder "3.5";
-
- checkInputs = [ google_cloud_testutils mock pytestCheckHook ];
- propagatedBuildInputs =
- [ grpcio-gcp grpc_google_iam_v1 google_api_core google_cloud_core ];
-
- # prevent google directory from shadowing google imports
- # remove tests that require credentials
- preCheck = ''
- rm -r google
- rm tests/system/test_system.py
- '';
-
- meta = with stdenv.lib; {
- description = "Cloud Spanner API client library";
- homepage = "https://pypi.org/project/google-cloud-spanner";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_speech/default.nix b/pkgs/development/python-modules/google_cloud_speech/default.nix
deleted file mode 100644
index 57b2efb9ebbc..000000000000
--- a/pkgs/development/python-modules/google_cloud_speech/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi
-, google_api_core, pytest, mock }:
-
-buildPythonPackage rec {
- pname = "google-cloud-speech";
- version = "2.0.1";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "a7428190f4c10440148a273eb4c91480470b34180eec422b7325acdc0b2c0832";
- };
-
- propagatedBuildInputs = [ google_api_core ];
- checkInputs = [ pytest mock ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Cloud Speech API enables integration of Google speech recognition into applications.";
- homepage = "https://github.com/googleapis/google-cloud-python/tree/master/speech";
- license = licenses.asl20;
- maintainers = with maintainers; [ ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_storage/default.nix b/pkgs/development/python-modules/google_cloud_storage/default.nix
deleted file mode 100644
index a1b572db11e5..000000000000
--- a/pkgs/development/python-modules/google_cloud_storage/default.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
-, google_api_core, google_auth, google-cloud-iam, google_cloud_core
-, google_cloud_kms, google_cloud_testutils, google_resumable_media, mock
-, requests }:
-
-buildPythonPackage rec {
- pname = "google-cloud-storage";
- version = "1.33.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "900ba027bdee6b97f21cd22d1db3d1a6233ede5de2db4754db860438bdad72d2";
- };
-
- disabled = pythonOlder "3.5";
-
- propagatedBuildInputs = [
- google_api_core
- google_auth
- google_cloud_core
- google_resumable_media
- requests
- ];
- checkInputs = [
- google-cloud-iam
- google_cloud_kms
- google_cloud_testutils
- mock
- pytestCheckHook
- ];
-
- # disable tests which require credentials
- disabledTests = [ "create" "get" "post" "test_build_api_url" ];
-
- # prevent google directory from shadowing google imports
- # remove tests which require credentials
- preCheck = ''
- rm -r google
- rm tests/system/test_system.py tests/unit/test_client.py
- '';
-
- meta = with lib; {
- description = "Google Cloud Storage API client library";
- homepage = "https://github.com/googleapis/python-storage";
- license = licenses.asl20;
- maintainers = with maintainers; [ costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_tasks/default.nix b/pkgs/development/python-modules/google_cloud_tasks/default.nix
deleted file mode 100644
index ca252b2c5edb..000000000000
--- a/pkgs/development/python-modules/google_cloud_tasks/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, enum34
-, grpc_google_iam_v1
-, google_api_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-tasks";
- version = "2.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "a9dd004057fc441eee8c18bb2dc3bb20ba7b85f353d66894c61e42aeb8764e76";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ enum34 grpc_google_iam_v1 google_api_core ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Cloud Tasks API API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_texttospeech/default.nix b/pkgs/development/python-modules/google_cloud_texttospeech/default.nix
deleted file mode 100644
index 32e8fa223a88..000000000000
--- a/pkgs/development/python-modules/google_cloud_texttospeech/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
-, google_api_core, libcst, mock, proto-plus, pytest-asyncio, }:
-
-buildPythonPackage rec {
- pname = "google-cloud-texttospeech";
- version = "2.2.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "cbbd397e72b6189668134f3c8e8c303198188334a4e6a5f77cc90c3220772f9e";
- };
-
- disabled = pythonOlder "3.5";
-
- checkInputs = [ mock pytest-asyncio pytestCheckHook ];
- propagatedBuildInputs = [ google_api_core libcst proto-plus ];
-
- # Disable tests that require credentials
- disabledTests = ["test_synthesize_speech" "test_list_voices"];
-
- meta = with stdenv.lib; {
- description = "Google Cloud Text-to-Speech API client library";
- homepage = "https://github.com/googleapis/python-texttospeech";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_trace/default.nix b/pkgs/development/python-modules/google_cloud_trace/default.nix
deleted file mode 100644
index b0efb65d0d2f..000000000000
--- a/pkgs/development/python-modules/google_cloud_trace/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, google_api_core
-, google_cloud_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-trace";
- version = "1.1.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "1bd1ee5c274a584929913d9118134e01afe106644cb749ccc3111e1a38a96cd3";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ google_api_core google_cloud_core ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Stackdriver Trace API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_translate/default.nix b/pkgs/development/python-modules/google_cloud_translate/default.nix
deleted file mode 100644
index 1049895bda1b..000000000000
--- a/pkgs/development/python-modules/google_cloud_translate/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
-, google_api_core, google_cloud_core, google_cloud_testutils, grpcio, libcst
-, mock, proto-plus, pytest-asyncio }:
-
-buildPythonPackage rec {
- pname = "google-cloud-translate";
- version = "3.0.2";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "6183168465749f007449ef4125356d03cca0114ed49faf7ed64f34ec3edd4fe8";
- };
-
- disabled = pythonOlder "3.6";
-
- # google_cloud_core[grpc] -> grpcio
- propagatedBuildInputs =
- [ google_api_core google_cloud_core grpcio libcst proto-plus ];
-
- checkInputs = [ google_cloud_testutils mock pytest-asyncio pytestCheckHook ];
-
- # test_http.py broken, fix not yet released
- # https://github.com/googleapis/python-translate/pull/69
- disabledTests = [
- "test_build_api_url_w_extra_query_params"
- "test_build_api_url_no_extra_query_params"
- "test_build_api_url_w_custom_endpoint"
- ];
-
- preCheck = ''
- rm -r google
- '';
-
- meta = with stdenv.lib; {
- description = "Google Cloud Translation API client library";
- homepage = "https://github.com/googleapis/python-translate";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_videointelligence/default.nix b/pkgs/development/python-modules/google_cloud_videointelligence/default.nix
deleted file mode 100644
index b823e105b843..000000000000
--- a/pkgs/development/python-modules/google_cloud_videointelligence/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, google_api_core
-, pytest
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-videointelligence";
- version = "2.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "02a91a25b3890a743bde21e03abddf11dcaf7966cc44f09bc8d507f2e28f15fa";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ google_api_core ];
-
- checkPhase = ''
- pytest tests/unit
- '';
-
- meta = with stdenv.lib; {
- description = "Google Cloud Video Intelligence API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_vision/default.nix b/pkgs/development/python-modules/google_cloud_vision/default.nix
deleted file mode 100644
index fd738a522661..000000000000
--- a/pkgs/development/python-modules/google_cloud_vision/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, enum34
-, google_api_core
-, mock
-}:
-
-buildPythonPackage rec {
- pname = "google-cloud-vision";
- version = "2.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "6a067d9a661df2e9b356b2772051decfea1971f8d659c246412a165baf827c61";
- };
-
- checkInputs = [ mock ];
- propagatedBuildInputs = [ enum34 google_api_core ];
-
- # pytest seems to pick up some file which overrides PYTHONPATH
- checkPhase = ''
- cd tests/unit
- python -m unittest discover
- '';
-
- meta = with stdenv.lib; {
- description = "Cloud Vision API API client library";
- homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_cloud_websecurityscanner/default.nix b/pkgs/development/python-modules/google_cloud_websecurityscanner/default.nix
deleted file mode 100644
index 356759f9bcb5..000000000000
--- a/pkgs/development/python-modules/google_cloud_websecurityscanner/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
-, google_api_core, libcst, mock, proto-plus, pytest-asyncio }:
-
-buildPythonPackage rec {
- pname = "google-cloud-websecurityscanner";
- version = "1.0.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "1de60f880487b898b499345f46f7acf38651f5356ebca8673116003a57f25393";
- };
-
- disabled = pythonOlder "3.6";
-
- checkInputs = [ mock pytest-asyncio pytestCheckHook ];
- propagatedBuildInputs = [ google_api_core libcst proto-plus ];
-
- meta = with stdenv.lib; {
- description = "Google Cloud Web Security Scanner API client library";
- homepage = "https://github.com/googleapis/python-websecurityscanner";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/google_resumable_media/default.nix b/pkgs/development/python-modules/google_resumable_media/default.nix
deleted file mode 100644
index 37bfbfc481ba..000000000000
--- a/pkgs/development/python-modules/google_resumable_media/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ lib
-, buildPythonPackage
-, isPy3k
-, fetchPypi
-, six
-, requests
-, setuptools
-, pytest
-, mock
-, crcmod
-, google-crc32c
-}:
-
-buildPythonPackage rec {
- pname = "google-resumable-media";
- version = "1.1.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "dcdab13e95bc534d268f87d5293e482cce5bc86dfce6ca0f2e2e89cbb73ef38c";
- };
-
- checkInputs = [ pytest mock ];
- propagatedBuildInputs = [ requests setuptools six ]
- ++ lib.optional isPy3k google-crc32c
- ++ lib.optional (!isPy3k) crcmod;
-
- checkPhase = ''
- py.test tests/unit
- '';
-
- meta = with lib; {
- description = "Utilities for Google Media Downloads and Resumable Uploads";
- homepage = "https://github.com/GoogleCloudPlatform/google-resumable-media-python";
- license = licenses.asl20;
- maintainers = [ maintainers.costrouc ];
- };
-}
diff --git a/pkgs/development/python-modules/googleapis_common_protos/default.nix b/pkgs/development/python-modules/googleapis_common_protos/default.nix
index 507c3ba229a6..ea49beee30bb 100644
--- a/pkgs/development/python-modules/googleapis_common_protos/default.nix
+++ b/pkgs/development/python-modules/googleapis_common_protos/default.nix
@@ -1,5 +1,10 @@
-{ stdenv, buildPythonPackage, fetchPypi
-, protobuf, pytest, setuptools }:
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, grpc
+, protobuf
+, pytestCheckHook
+}:
buildPythonPackage rec {
pname = "googleapis-common-protos";
@@ -7,18 +12,26 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "560716c807117394da12cecb0a54da5a451b5cf9866f1d37e9a5e2329a665351";
+ sha256 = "0lakcsd35qm5x4visvw6z5f1niasv9a0mjyf2bd98wqi0z41c1sn";
};
- propagatedBuildInputs = [ protobuf setuptools ];
- checkInputs = [ pytest ];
+ propagatedBuildInputs = [ grpc protobuf ];
- doCheck = false; # there are no tests
+ # does not contain tests
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "google.api"
+ "google.logging"
+ "google.longrunning"
+ "google.rpc"
+ "google.type"
+ ];
meta = with stdenv.lib; {
description = "Common protobufs used in Google APIs";
- homepage = "https://github.com/googleapis/googleapis";
+ homepage = "https://github.com/googleapis/python-api-common-protos";
license = licenses.asl20;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/googlemaps/default.nix b/pkgs/development/python-modules/googlemaps/default.nix
index 7e13aedec475..39219000bfdd 100644
--- a/pkgs/development/python-modules/googlemaps/default.nix
+++ b/pkgs/development/python-modules/googlemaps/default.nix
@@ -1,6 +1,11 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub
+{ stdenv
+, buildPythonPackage
+, fetchFromGitHub
, requests
-, responses, pytestCheckHook, pytest, pytestcov, isPy27
+, responses
+, pytestCheckHook
+, pytestcov
+, isPy27
}:
buildPythonPackage rec {
diff --git a/pkgs/development/python-modules/googletrans/default.nix b/pkgs/development/python-modules/googletrans/default.nix
index 06d008200059..32b839ab11c2 100644
--- a/pkgs/development/python-modules/googletrans/default.nix
+++ b/pkgs/development/python-modules/googletrans/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, fetchFromGitHub, requests, pytest, coveralls }:
+{ lib, buildPythonPackage, fetchFromGitHub, requests }:
buildPythonPackage rec {
pname = "googletrans";
@@ -11,17 +11,10 @@ buildPythonPackage rec {
sha256 = "0wzzinn0k9rfv9z1gmfk9l4kljyd4n6kizsjw4wjxv91kfhj92hz";
};
- propagatedBuildInputs = [
- requests
- ];
-
- checkInputs = [ pytest coveralls ];
+ propagatedBuildInputs = [ requests ];
# majority of tests just try to ping Google's Translate API endpoint
doCheck = false;
- checkPhase = ''
- pytest
- '';
pythonImportsCheck = [ "googletrans" ];
diff --git a/pkgs/development/python-modules/graphene/default.nix b/pkgs/development/python-modules/graphene/default.nix
new file mode 100644
index 000000000000..860bb504cf1a
--- /dev/null
+++ b/pkgs/development/python-modules/graphene/default.nix
@@ -0,0 +1,50 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, aniso8601
+, iso8601
+, graphql-core
+, graphql-relay
+, pytestCheckHook
+, pytest-asyncio
+, pytest-benchmark
+, pytest-mock
+, pytz
+, snapshottest
+}:
+
+buildPythonPackage rec {
+ pname = "graphene";
+ version = "3.0.0b6";
+
+ src = fetchFromGitHub {
+ owner = "graphql-python";
+ repo = "graphene";
+ rev = "v${version}";
+ sha256 = "1q6qmyc4jbi9cws4d98x7bgi7gppd09dmzijkb19fwbh4giy938r";
+ };
+
+ propagatedBuildInputs = [
+ aniso8601
+ graphql-core
+ graphql-relay
+ ];
+
+ checkInputs = [
+ pytestCheckHook
+ pytest-asyncio
+ pytest-benchmark
+ pytest-mock
+ pytz
+ snapshottest
+ ];
+
+ pythonImportsCheck = [ "graphene" ];
+
+ meta = with lib; {
+ description = "GraphQL Framework for Python";
+ homepage = "https://github.com/graphql-python/graphene";
+ license = licenses.mit;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/graphql-relay/default.nix b/pkgs/development/python-modules/graphql-relay/default.nix
new file mode 100644
index 000000000000..fa6a9ec60a73
--- /dev/null
+++ b/pkgs/development/python-modules/graphql-relay/default.nix
@@ -0,0 +1,24 @@
+{ lib, buildPythonPackage, fetchPypi, graphql-core, pytestCheckHook }:
+
+buildPythonPackage rec {
+ pname = "graphql-relay";
+ version = "3.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0mjmpf4abrxfyln0ykxq4xa6lp7xwgqr8631qp011hv0nfl6jgxd";
+ };
+
+ propagatedBuildInputs = [ graphql-core ];
+
+ checkInputs = [ pytestCheckHook ];
+
+ pythonImportsCheck = [ "graphql_relay" ];
+
+ meta = with lib; {
+ description = "A library to help construct a graphql-py server supporting react-relay";
+ homepage = "https://github.com/graphql-python/graphql-relay-py/";
+ license = licenses.mit;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/grpcio/default.nix b/pkgs/development/python-modules/grpcio/default.nix
index 55d569c90547..e50f63fe37ac 100644
--- a/pkgs/development/python-modules/grpcio/default.nix
+++ b/pkgs/development/python-modules/grpcio/default.nix
@@ -1,6 +1,18 @@
-{ stdenv, buildPythonPackage, darwin, grpc
-, six, protobuf, enum34, futures, isPy27, pkgconfig
-, cython, c-ares, openssl, zlib }:
+{ stdenv
+, buildPythonPackage
+, darwin
+, grpc
+, six
+, protobuf
+, enum34
+, futures
+, isPy27
+, pkg-config
+, cython
+, c-ares
+, openssl
+, zlib
+}:
buildPythonPackage rec {
inherit (grpc) src version;
@@ -8,12 +20,12 @@ buildPythonPackage rec {
outputs = [ "out" "dev" ];
- nativeBuildInputs = [ cython pkgconfig ]
- ++ stdenv.lib.optional stdenv.isDarwin darwin.cctools;
+ nativeBuildInputs = [ cython pkg-config ]
+ ++ stdenv.lib.optional stdenv.isDarwin darwin.cctools;
buildInputs = [ c-ares openssl zlib ];
propagatedBuildInputs = [ six protobuf ]
- ++ stdenv.lib.optionals (isPy27) [ enum34 futures ];
+ ++ stdenv.lib.optionals (isPy27) [ enum34 futures ];
preBuild = stdenv.lib.optionalString stdenv.isDarwin "unset AR";
@@ -22,10 +34,15 @@ buildPythonPackage rec {
GRPC_PYTHON_BUILD_SYSTEM_ZLIB = 1;
GRPC_PYTHON_BUILD_SYSTEM_CARES = 1;
+ # does not contain any tests
+ doCheck = false;
+
+ pythonImportsCheck = [ "grpc" ];
+
meta = with stdenv.lib; {
description = "HTTP/2-based RPC framework";
license = licenses.asl20;
homepage = "https://grpc.io/grpc/python/";
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/gspread/default.nix b/pkgs/development/python-modules/gspread/default.nix
index 5fd73541dd42..9ad1d0c685dc 100644
--- a/pkgs/development/python-modules/gspread/default.nix
+++ b/pkgs/development/python-modules/gspread/default.nix
@@ -2,7 +2,7 @@
, buildPythonPackage
, fetchPypi
, requests
-, google_auth
+, google-auth
, google-auth-oauthlib
}:
@@ -15,7 +15,7 @@ buildPythonPackage rec {
sha256 = "e04f1a6267b3929fc1600424c5ec83906d439672cafdd61a9d5b916a139f841c";
};
- propagatedBuildInputs = [ requests google_auth google-auth-oauthlib ];
+ propagatedBuildInputs = [ requests google-auth google-auth-oauthlib ];
meta = with stdenv.lib; {
description = "Google Spreadsheets client library";
diff --git a/pkgs/development/python-modules/httpx/default.nix b/pkgs/development/python-modules/httpx/default.nix
index 1f527b47ec08..6e81cc92193c 100644
--- a/pkgs/development/python-modules/httpx/default.nix
+++ b/pkgs/development/python-modules/httpx/default.nix
@@ -56,6 +56,8 @@ buildPythonPackage rec {
"test_sync_proxy_close"
];
+ __darwinAllowLocalNetworking = true;
+
meta = with lib; {
description = "The next generation HTTP client";
homepage = "https://github.com/encode/httpx";
diff --git a/pkgs/development/python-modules/hwi/default.nix b/pkgs/development/python-modules/hwi/default.nix
index 6431791d65e6..7c34235a190b 100644
--- a/pkgs/development/python-modules/hwi/default.nix
+++ b/pkgs/development/python-modules/hwi/default.nix
@@ -1,46 +1,47 @@
{ lib
, buildPythonPackage
-, fetchPypi
-, mnemonic
+, fetchFromGitHub
+, bitbox02
, ecdsa
-, typing-extensions
, hidapi
, libusb1
+, mnemonic
, pyaes
-, trezor
-, btchip
-, ckcc-protocol
+, pythonAtLeast
}:
buildPythonPackage rec {
pname = "hwi";
version = "1.2.1";
+ disabled = pythonAtLeast "3.9";
- src = fetchPypi {
- inherit pname version;
- sha256 = "d0d220a4967d7f106b828b12a98b78c220d609d7cc6c811898e24fcf1a6f04f3";
+ src = fetchFromGitHub {
+ owner = "bitcoin-core";
+ repo = "HWI";
+ rev = version;
+ sha256 = "0fs3152lw7y5l9ssr5as8gd739m9lb7wxpv1vc5m77k5nw7l8ax5";
};
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace "'ecdsa>=0.13.0,<0.14.0'" "'ecdsa'" \
+ --replace "'hidapi>=0.7.99,<0.8.0'" "'hidapi'" \
+ --replace "'mnemonic>=0.18.0,<0.19.0'" "'mnemonic'"
+ '';
+
propagatedBuildInputs = [
- mnemonic
+ bitbox02
ecdsa
- typing-extensions
hidapi
libusb1
+ mnemonic
pyaes
- trezor
- btchip
- ckcc-protocol
];
- patches = [ ./relax-deps.patch ];
-
- # tests are not packaged in the released tarball
+ # tests require to clone quite a few firmwares
doCheck = false;
- pythonImportsCheck = [
- "hwilib"
- ];
+ pythonImportsCheck = [ "hwilib" ];
meta = {
description = "Bitcoin Hardware Wallet Interface";
diff --git a/pkgs/development/python-modules/hwi/relax-deps.patch b/pkgs/development/python-modules/hwi/relax-deps.patch
deleted file mode 100644
index ff6c6b9768f6..000000000000
--- a/pkgs/development/python-modules/hwi/relax-deps.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/setup.py
-+++ b/setup.py
-@@ -98,10 +98,10 @@ package_data = \
- modules = \
- ['hwi', 'hwi-qt']
- install_requires = \
--['ecdsa>=0.13.0,<0.14.0',
-- 'hidapi>=0.7.99,<0.8.0',
-+['ecdsa',
-+ 'hidapi',
- 'libusb1>=1.7,<2.0',
-+ 'mnemonic',
-- 'mnemonic>=0.18.0,<0.19.0',
- 'pyaes>=1.6,<2.0',
- 'typing-extensions>=3.7,<4.0']
-
diff --git a/pkgs/development/python-modules/identify/default.nix b/pkgs/development/python-modules/identify/default.nix
index 833e1e3dd29e..7f2f8c26339a 100644
--- a/pkgs/development/python-modules/identify/default.nix
+++ b/pkgs/development/python-modules/identify/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "identify";
- version = "1.5.10";
+ version = "1.5.11";
src = fetchPypi {
inherit pname version;
- sha256 = "943cd299ac7f5715fcb3f684e2fc1594c1e0f22a90d15398e5888143bd4144b5";
+ sha256 = "b2c71bf9f5c482c389cef816f3a15f1c9d7429ad70f497d4a2e522442d80c6de";
};
# Tests not included in PyPI tarball
diff --git a/pkgs/development/python-modules/keepkey_agent/default.nix b/pkgs/development/python-modules/keepkey_agent/default.nix
index fec2d198fdd9..279cc50d174f 100644
--- a/pkgs/development/python-modules/keepkey_agent/default.nix
+++ b/pkgs/development/python-modules/keepkey_agent/default.nix
@@ -20,6 +20,9 @@ buildPythonPackage rec {
keepkey libagent setuptools wheel
];
+ doCheck = false;
+ pythonImportsChecks = [ "keepkey_agent" ];
+
meta = with stdenv.lib; {
description = "Using KeepKey as hardware-based SSH/PGP agent";
homepage = "https://github.com/romanz/trezor-agent";
diff --git a/pkgs/development/python-modules/kubernetes/default.nix b/pkgs/development/python-modules/kubernetes/default.nix
index 2679c81de0f0..0be1ae0353f8 100644
--- a/pkgs/development/python-modules/kubernetes/default.nix
+++ b/pkgs/development/python-modules/kubernetes/default.nix
@@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchPypi, pythonAtLeast,
- ipaddress, websocket_client, urllib3, pyyaml, requests_oauthlib, python-dateutil, google_auth, adal,
+ ipaddress, websocket_client, urllib3, pyyaml, requests_oauthlib, python-dateutil, google-auth, adal,
isort, pytest, coverage, mock, sphinx, autopep8, pep8, codecov, recommonmark, nose }:
buildPythonPackage rec {
@@ -28,7 +28,7 @@ buildPythonPackage rec {
};
checkInputs = [ isort coverage pytest mock sphinx autopep8 pep8 codecov recommonmark nose ];
- propagatedBuildInputs = [ ipaddress websocket_client urllib3 pyyaml requests_oauthlib python-dateutil google_auth adal ];
+ propagatedBuildInputs = [ ipaddress websocket_client urllib3 pyyaml requests_oauthlib python-dateutil google-auth adal ];
meta = with stdenv.lib; {
description = "Kubernetes python client";
diff --git a/pkgs/development/python-modules/labelbox/default.nix b/pkgs/development/python-modules/labelbox/default.nix
index 0556411ee47e..1efe01092124 100644
--- a/pkgs/development/python-modules/labelbox/default.nix
+++ b/pkgs/development/python-modules/labelbox/default.nix
@@ -8,7 +8,8 @@
, shapely
, ndjson
, backoff
-, google_api_core
+, google-api-core
+, backports-datetime-fromisoformat
}:
buildPythonPackage rec {
@@ -22,12 +23,11 @@ buildPythonPackage rec {
propagatedBuildInputs = [
jinja2 requests pillow rasterio shapely ndjson backoff
- google_api_core
+ google-api-core backports-datetime-fromisoformat
];
# Test cases are not running on pypi or GitHub
doCheck = false;
-
pythonImportsCheck = [ "labelbox" ];
meta = with lib; {
diff --git a/pkgs/development/python-modules/ledger_agent/default.nix b/pkgs/development/python-modules/ledger_agent/default.nix
index 605fbed98a19..2f3404fa921b 100644
--- a/pkgs/development/python-modules/ledger_agent/default.nix
+++ b/pkgs/development/python-modules/ledger_agent/default.nix
@@ -20,6 +20,9 @@ buildPythonPackage rec {
ledgerblue libagent setuptools wheel
];
+ # no tests
+ doCheck = false;
+
meta = with stdenv.lib; {
description = "Using Ledger as hardware-based SSH/PGP agent";
homepage = "https://github.com/romanz/trezor-agent";
diff --git a/pkgs/development/python-modules/libcloud/default.nix b/pkgs/development/python-modules/libcloud/default.nix
index 671de812f272..bda0553b8eee 100644
--- a/pkgs/development/python-modules/libcloud/default.nix
+++ b/pkgs/development/python-modules/libcloud/default.nix
@@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "apache-libcloud";
- version = "3.2.0";
+ version = "3.3.0";
src = fetchPypi {
inherit pname version;
- sha256 = "1b14b1f5f91ceeff5cf228613e76577d7b41e790dccd53a0f647ef816fb5495c";
+ sha256 = "2e3e4d02f9b3197f9119e737bc704fba52f34459d4bc96d8ad8f183d600747ba";
};
checkInputs = [ mock pytest pytestrunner requests-mock ];
diff --git a/pkgs/development/python-modules/liquidctl/default.nix b/pkgs/development/python-modules/liquidctl/default.nix
index 888f09dba95b..97d80fbbbda7 100644
--- a/pkgs/development/python-modules/liquidctl/default.nix
+++ b/pkgs/development/python-modules/liquidctl/default.nix
@@ -27,6 +27,10 @@ buildPythonPackage rec {
smbus-cffi
];
+ # does not contain tests
+ doCheck = false;
+ pythonImportsCheck = [ "liquidctl" ];
+
meta = with lib; {
description = "Cross-platform CLI and Python drivers for AIO liquid coolers and other devices";
homepage = "https://github.com/liquidctl/liquidctl";
diff --git a/pkgs/development/python-modules/lmdb/default.nix b/pkgs/development/python-modules/lmdb/default.nix
index 76cd2acd7435..3dc2fec4b744 100644
--- a/pkgs/development/python-modules/lmdb/default.nix
+++ b/pkgs/development/python-modules/lmdb/default.nix
@@ -1,8 +1,10 @@
{ stdenv
, buildPythonPackage
, fetchPypi
-, pytest
+, pytestCheckHook
, cffi
+, lmdb
+, ludios_wpull
}:
buildPythonPackage rec {
@@ -14,10 +16,13 @@ buildPythonPackage rec {
sha256 = "4136ffdf0aad61da86d1402808029d002a771b2a9ccc9b39c6bcafa7847c21b6";
};
- checkInputs = [ pytest cffi ];
- checkPhase = ''
- py.test
- '';
+ buildInputs = [ lmdb ];
+
+ propogatedBuildInputs = [ ludios_wpull ];
+
+ checkInputs = [ cffi pytestCheckHook ];
+
+ LMDB_FORCE_SYSTEM=1;
meta = with stdenv.lib; {
description = "Universal Python binding for the LMDB 'Lightning' Database";
@@ -25,5 +30,4 @@ buildPythonPackage rec {
license = licenses.openldap;
maintainers = with maintainers; [ copumpkin ivan ];
};
-
}
diff --git a/pkgs/development/python-modules/marionette-harness/mozdevice.nix b/pkgs/development/python-modules/marionette-harness/mozdevice.nix
index 03187c00bef9..56c8fc5254d2 100644
--- a/pkgs/development/python-modules/marionette-harness/mozdevice.nix
+++ b/pkgs/development/python-modules/marionette-harness/mozdevice.nix
@@ -12,9 +12,8 @@ buildPythonPackage rec {
format = "wheel";
src = fetchPypi {
- inherit pname version;
+ inherit pname version format;
sha256 = "1n7l3drdh3rm3320v98c9hhh37ljk9l861hyw18psca7jdd717n5";
- format = "wheel";
};
propagatedBuildInputs = [ mozlog moznetwork mozprocess ];
diff --git a/pkgs/development/python-modules/mpd2/default.nix b/pkgs/development/python-modules/mpd2/default.nix
index 3573c7987c59..5503ec2e139d 100644
--- a/pkgs/development/python-modules/mpd2/default.nix
+++ b/pkgs/development/python-modules/mpd2/default.nix
@@ -14,7 +14,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "772fa6861273bb9f363a97987c2c45ca3965eb770570f1f02566efec9c89fc5f";
+ sha256 = "0fxssbmnv44m03shjyvbqslc69b0160702j2s0flgvdxjggrnbjj";
};
buildInputs = [ mock ];
diff --git a/pkgs/development/python-modules/nitime/default.nix b/pkgs/development/python-modules/nitime/default.nix
index 8fa40465c10d..68eeab46afc4 100644
--- a/pkgs/development/python-modules/nitime/default.nix
+++ b/pkgs/development/python-modules/nitime/default.nix
@@ -2,7 +2,7 @@
, buildPythonPackage
, python
, fetchPypi
-, pytest
+, pytestCheckHook
, cython
, numpy
, scipy
@@ -21,11 +21,11 @@ buildPythonPackage rec {
sha256 = "0hb3x5196z2zaawb8s7lhja0vd3n983ncaynqfl9qg315x9ax7i6";
};
- checkInputs = [ pytest ];
buildInputs = [ cython ];
+
propagatedBuildInputs = [ numpy scipy matplotlib networkx nibabel ];
- checkPhase = "pytest nitime/tests";
+ checkInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://nipy.org/nitime";
diff --git a/pkgs/development/python-modules/noiseprotocol/default.nix b/pkgs/development/python-modules/noiseprotocol/default.nix
new file mode 100644
index 000000000000..76ed1b1fc2a0
--- /dev/null
+++ b/pkgs/development/python-modules/noiseprotocol/default.nix
@@ -0,0 +1,26 @@
+{ lib, buildPythonPackage, fetchFromGitHub, cryptography, pytestCheckHook }:
+
+buildPythonPackage rec {
+ pname = "noiseprotocol";
+ version = "0.3.1";
+
+ src = fetchFromGitHub {
+ owner = "plizonczyk";
+ repo = "noiseprotocol";
+ rev = "v${version}";
+ sha256 = "1mk0rqpjifdv3v1cjwkdnjbrfmzzjm9f3qqs1r8vii4j2wvhm6am";
+ };
+
+ propagatedBuildInputs = [ cryptography ];
+
+ checkInputs = [ pytestCheckHook ];
+
+ pythonImportsCheck = [ "noise" ];
+
+ meta = with lib; {
+ description = "Noise Protocol Framework";
+ homepage = "https://github.com/plizonczyk/noiseprotocol/";
+ license = licenses.mit;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/orm/default.nix b/pkgs/development/python-modules/orm/default.nix
index dece359b0c0f..872a54076125 100644
--- a/pkgs/development/python-modules/orm/default.nix
+++ b/pkgs/development/python-modules/orm/default.nix
@@ -4,8 +4,9 @@
, databases
, typesystem
, aiosqlite
-, pytest
+, pytestCheckHook
, pytestcov
+, typing-extensions
}:
buildPythonPackage rec {
@@ -26,13 +27,12 @@ buildPythonPackage rec {
checkInputs = [
aiosqlite
- pytest
+ pytestCheckHook
pytestcov
+ typing-extensions
];
- checkPhase = ''
- PYTHONPATH=$PYTHONPATH:. pytest
- '';
+ pythonImportsCheck = [ "orm" ];
meta = with lib; {
description = "An async ORM";
diff --git a/pkgs/development/python-modules/pgpy/default.nix b/pkgs/development/python-modules/pgpy/default.nix
index 9067817a3ba9..2c527d87d186 100644
--- a/pkgs/development/python-modules/pgpy/default.nix
+++ b/pkgs/development/python-modules/pgpy/default.nix
@@ -1,7 +1,6 @@
{ lib, isPy3k, fetchFromGitHub, buildPythonPackage
, six, enum34, pyasn1, cryptography, singledispatch
-, fetchPypi
-, gpgme, flake8, pytest, pytestcov, pep8-naming, pytest-ordering }:
+, fetchPypi, pytestCheckHook }:
buildPythonPackage rec {
pname = "pgpy";
@@ -22,17 +21,10 @@ buildPythonPackage rec {
] ++ lib.optional (!isPy3k) enum34;
checkInputs = [
- gpgme
- flake8
- pytest
- pytestcov
- pep8-naming
- pytest-ordering
+ pytestCheckHook
];
- checkPhase = ''
- pytest
- '';
+ disabledTests = [ "test_sign_string" "test_verify_string" ];
meta = with lib; {
homepage = "https://github.com/SecurityInnovation/PGPy";
diff --git a/pkgs/development/python-modules/pkgconfig/default.nix b/pkgs/development/python-modules/pkgconfig/default.nix
index 05f13e8878a3..1b03f720fbcd 100644
--- a/pkgs/development/python-modules/pkgconfig/default.nix
+++ b/pkgs/development/python-modules/pkgconfig/default.nix
@@ -1,10 +1,10 @@
-{ lib, buildPythonPackage, fetchPypi, nose, pkgconfig }:
+{ lib, buildPythonPackage, fetchPypi, pkg-config }:
buildPythonPackage rec {
pname = "pkgconfig";
version = "1.5.1";
- inherit (pkgconfig)
+ inherit (pkg-config)
setupHooks
wrapperName
suffixSalt
@@ -17,19 +17,18 @@ buildPythonPackage rec {
sha256 = "97bfe3d981bab675d5ea3ef259045d7919c93897db7d3b59d4e8593cba8d354f";
};
- checkInputs = [ nose ];
- nativeBuildInputs = [ pkgconfig ];
+ propagatedNativeBuildInputs = [ pkg-config ];
- checkPhase = ''
- nosetests
- '';
+ doCheck = false;
patches = [ ./executable.patch ];
postPatch = ''
- substituteInPlace pkgconfig/pkgconfig.py --replace 'PKG_CONFIG_EXE = "pkg-config"' 'PKG_CONFIG_EXE = "${pkgconfig}/bin/${pkgconfig.targetPrefix}pkg-config"'
+ substituteInPlace pkgconfig/pkgconfig.py --replace 'PKG_CONFIG_EXE = "pkg-config"' 'PKG_CONFIG_EXE = "${pkg-config}/bin/${pkg-config.targetPrefix}pkg-config"'
'';
+ pythonImportsCheck = [ "pkgconfig" ];
+
meta = with lib; {
description = "Interface Python with pkg-config";
homepage = "https://github.com/matze/pkgconfig";
diff --git a/pkgs/development/python-modules/poster3/default.nix b/pkgs/development/python-modules/poster3/default.nix
index 269995717aa4..09e8055bdd91 100644
--- a/pkgs/development/python-modules/poster3/default.nix
+++ b/pkgs/development/python-modules/poster3/default.nix
@@ -15,8 +15,7 @@ buildPythonPackage rec {
disabled = !isPy3k;
src = fetchPypi {
- inherit pname version;
- format = "wheel";
+ inherit pname version format;
python = "py3";
sha256 = "1b27d7d63e3191e5d7238631fc828e4493590e94dcea034e386c079d853cce14";
};
diff --git a/pkgs/development/python-modules/proto-plus/default.nix b/pkgs/development/python-modules/proto-plus/default.nix
index 4a36b625298d..71949d0d4e09 100644
--- a/pkgs/development/python-modules/proto-plus/default.nix
+++ b/pkgs/development/python-modules/proto-plus/default.nix
@@ -3,28 +3,31 @@
, fetchPypi
, isPy3k
, protobuf
-, google_api_core
+, googleapis_common_protos
, pytestCheckHook
+, pytz
}:
buildPythonPackage rec {
pname = "proto-plus";
- version = "1.11.0";
+ version = "1.13.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "416a0f13987789333cd8760a0ee998f8eccd6d7165ee9f283d64ca2de3e8774d";
+ sha256 = "1i5jjnwpd288378h37zads08h695iwmhxm0sxbr3ln6aax97rdb1";
};
propagatedBuildInputs = [ protobuf ];
- checkInputs = [ pytestCheckHook google_api_core ];
+ checkInputs = [ pytestCheckHook pytz googleapis_common_protos ];
+
+ pythonImportsCheck = [ "proto" ];
meta = with stdenv.lib; {
description = "Beautiful, idiomatic protocol buffers in Python";
homepage = "https://github.com/googleapis/proto-plus-python";
license = licenses.asl20;
- maintainers = [ maintainers.ruuda ];
+ maintainers = with maintainers; [ ruuda SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/protobuf/default.nix b/pkgs/development/python-modules/protobuf/default.nix
index ab95eeb51f91..4925c3dfd02f 100644
--- a/pkgs/development/python-modules/protobuf/default.nix
+++ b/pkgs/development/python-modules/protobuf/default.nix
@@ -1,6 +1,18 @@
-{ buildPackages, stdenv, fetchpatch, python, buildPythonPackage, isPy37
-, protobuf, google_apputils, pyext, libcxx, isPy27
-, disabled, doCheck ? true }:
+{ buildPackages
+, stdenv
+, fetchpatch
+, python
+, buildPythonPackage
+, isPy37
+, protobuf
+, google-apputils
+, six
+, pyext
+, libcxx
+, isPy27
+, disabled
+, doCheck ? true
+}:
with stdenv.lib;
@@ -17,9 +29,9 @@ buildPythonPackage {
outputs = [ "out" "dev" ];
- propagatedBuildInputs = [ google_apputils ];
- propagatedNativeBuildInputs = [ buildPackages.protobuf ]; # For protoc.
- nativeBuildInputs = [ google_apputils pyext ];
+ propagatedBuildInputs = [ six ] ++ optionals isPy27 [ google-apputils ];
+ propagatedNativeBuildInputs = [ buildPackages.protobuf ]; # For protoc.
+ nativeBuildInputs = [ pyext ] ++ optionals isPy27 [ google-apputils ];
buildInputs = [ protobuf ];
patches = optional (isPy37 && (versionOlder protobuf.version "3.6.1.2"))
diff --git a/pkgs/development/python-modules/pyatv/default.nix b/pkgs/development/python-modules/pyatv/default.nix
index 647866b143fb..cbb61b21b10d 100644
--- a/pkgs/development/python-modules/pyatv/default.nix
+++ b/pkgs/development/python-modules/pyatv/default.nix
@@ -46,6 +46,8 @@ buildPythonPackage rec {
pytestCheckHook
];
+ __darwinAllowLocalNetworking = true;
+
meta = with stdenv.lib; {
description = "A python client library for the Apple TV";
homepage = "https://github.com/postlund/pyatv";
diff --git a/pkgs/development/python-modules/pycapnp/default.nix b/pkgs/development/python-modules/pycapnp/default.nix
index 1997021ce010..0d8dc6b53d89 100644
--- a/pkgs/development/python-modules/pycapnp/default.nix
+++ b/pkgs/development/python-modules/pycapnp/default.nix
@@ -1,34 +1,35 @@
{ stdenv
, buildPythonPackage
-, fetchPypi
, capnproto
, cython
+, fetchFromGitHub
+, isPy27
, isPyPy
-, isPy3k
+, pkgconfig
}:
buildPythonPackage rec {
pname = "pycapnp";
version = "1.0.0";
- disabled = isPyPy || isPy3k;
+ disabled = isPyPy || isPy27;
- src = fetchPypi {
- inherit pname version;
- sha256 = "9f6fcca349ebf2ec04ca7eacb076aea3e4fcdc010ac33c98b54f0a19d4e5d3e0";
+ src = fetchFromGitHub {
+ owner = "capnproto";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1n6dq2fbagi3wvrpkyb7wx4y15nkm2grln4y75hrqgmnli8ggi9v";
};
- buildInputs = [ capnproto cython ];
+ buildInputs = [ capnproto cython pkgconfig ];
- # import setuptools as soon as possible, to minimize monkeypatching mayhem.
- postConfigure = ''
- sed -i '3iimport setuptools' setup.py
- '';
+ # Tests disabled due to dependency on jinja and various other libraries.
+ doCheck = false;
+
+ pythonImportsCheck = [ "capnp" ];
meta = with stdenv.lib; {
- maintainers = with maintainers; [ cstrahan ];
+ maintainers = with maintainers; [ cstrahan lukeadams ];
license = licenses.bsd2;
- homepage = "http://jparyani.github.io/pycapnp/index.html";
- broken = true; # 2018-04-11
+ homepage = "https://capnproto.github.io/pycapnp/";
};
-
}
diff --git a/pkgs/development/python-modules/pyeverlights/default.nix b/pkgs/development/python-modules/pyeverlights/default.nix
new file mode 100644
index 000000000000..00b9f8fb0154
--- /dev/null
+++ b/pkgs/development/python-modules/pyeverlights/default.nix
@@ -0,0 +1,30 @@
+{ lib
+, aiohttp
+, buildPythonPackage
+, fetchFromGitHub
+}:
+
+buildPythonPackage rec {
+ pname = "pyeverlights";
+ version = "0.1.0";
+
+ src = fetchFromGitHub {
+ owner = "joncar";
+ repo = pname;
+ rev = version;
+ sha256 = "16xpq933j8yydq78fnf4f7ivyw5a45ix4mfycpmm91aj549p6pm0";
+ };
+
+ propagatedBuildInputs = [ aiohttp ];
+
+ # no tests are present
+ doCheck = false;
+ pythonImportsCheck = [ "pyeverlights" ];
+
+ meta = with lib; {
+ description = "Python module for interfacing with an EverLights control box";
+ homepage = "https://github.com/joncar/pyeverlights";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/pygal/default.nix b/pkgs/development/python-modules/pygal/default.nix
index b02b60434252..617f5fa3fd58 100644
--- a/pkgs/development/python-modules/pygal/default.nix
+++ b/pkgs/development/python-modules/pygal/default.nix
@@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
+, fetchpatch
, isPyPy
, flask
, pyquery
@@ -16,12 +17,20 @@ buildPythonPackage rec {
pname = "pygal";
version = "2.4.0";
- doCheck = !isPyPy; # one check fails with pypy
+ doCheck = !isPyPy; # one check fails with pypy
src = fetchPypi {
inherit pname version;
sha256 = "9204f05380b02a8a32f9bf99d310b51aa2a932cba5b369f7a4dc3705f0a4ce83";
};
+ patches = [
+ # Fixes compatibility with latest pytest. October 12, 2020.
+ # Should be included in the next release after 2.4.0
+ (fetchpatch {
+ url = "https://github.com/Kozea/pygal/commit/19e5399be18a054b3b293f4a8a2777d2df4f9c18.patch";
+ sha256 = "1j0hpcvd2mhi449wmlr0ml9gw4cakqk3av1j79bi2qy86dyrss2l";
+ })
+ ];
buildInputs = [
flask
@@ -51,7 +60,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Sexy and simple python charting";
homepage = "http://www.pygal.org";
- license = licenses.lgpl3;
+ license = licenses.lgpl3Plus;
maintainers = with maintainers; [ sjourdois ];
};
diff --git a/pkgs/development/python-modules/pygobject/default.nix b/pkgs/development/python-modules/pygobject/default.nix
index a7b25e57a336..0b72561e870b 100644
--- a/pkgs/development/python-modules/pygobject/default.nix
+++ b/pkgs/development/python-modules/pygobject/default.nix
@@ -1,9 +1,10 @@
-{ stdenv, fetchurl, python, buildPythonPackage, pkgconfig, glib, isPy3k }:
+{ stdenv, fetchurl, python, buildPythonPackage, pkgconfig, glib, isPy3k, pythonAtLeast }:
buildPythonPackage rec {
pname = "pygobject";
version = "2.28.7";
format = "other";
+ disabled = pythonAtLeast "3.9";
src = fetchurl {
url = "mirror://gnome/sources/pygobject/2.28/${pname}-${version}.tar.xz";
diff --git a/pkgs/development/python-modules/pylast/default.nix b/pkgs/development/python-modules/pylast/default.nix
index 12fac476f633..3faf8d70fdf1 100644
--- a/pkgs/development/python-modules/pylast/default.nix
+++ b/pkgs/development/python-modules/pylast/default.nix
@@ -4,13 +4,13 @@
buildPythonPackage rec {
pname = "pylast";
- version = "4.0.0";
+ version = "4.1.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "8ec555d6c4c1b474e9b3c96c3786abd38303a1a5716d928b0f3cfdcb4499b093";
+ sha256 = "ad084aec1bf7e307bc42d7cc1a003851f5bee1ad24fb697a9fdc300bbfe63932";
};
nativeBuildInputs = [ setuptools_scm ];
diff --git a/pkgs/development/python-modules/pymodbus/default.nix b/pkgs/development/python-modules/pymodbus/default.nix
new file mode 100644
index 000000000000..76f2e9a9338b
--- /dev/null
+++ b/pkgs/development/python-modules/pymodbus/default.nix
@@ -0,0 +1,59 @@
+{ lib
+, asynctest
+, buildPythonPackage
+, fetchFromGitHub
+, mock
+, pyserial
+, pyserial-asyncio
+, pytestCheckHook
+, pythonOlder
+, redis
+, sqlalchemy
+, tornado
+, twisted
+}:
+
+buildPythonPackage rec {
+ pname = "pymodbus";
+ version = "2.4.0";
+
+ src = fetchFromGitHub {
+ owner = "riptideio";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0x0dv02shcc2yxxm9kvcbhip111sna74dvcfssxdzzy967vnq76v";
+ };
+
+ # Twisted asynchronous version is not supported due to a missing dependency
+ propagatedBuildInputs = [
+ pyserial
+ pyserial-asyncio
+ tornado
+ ];
+
+ checkInputs = [
+ asynctest
+ mock
+ pyserial-asyncio
+ pytestCheckHook
+ redis
+ sqlalchemy
+ tornado
+ twisted
+ ];
+
+ pythonImportsCheck = [ "pymodbus" ];
+
+ meta = with lib; {
+ description = "Python implementation of the Modbus protocol";
+ longDescription = ''
+ Pymodbus is a full Modbus protocol implementation using twisted,
+ torndo or asyncio for its asynchronous communications core. It can
+ also be used without any third party dependencies if a more
+ lightweight project is needed.
+ '';
+ homepage = "https://github.com/riptideio/pymodbus";
+ license = with licenses; [ bsd3 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/pyppeteer/default.nix b/pkgs/development/python-modules/pyppeteer/default.nix
index 09d2415f8e0a..a15f7aadb88c 100644
--- a/pkgs/development/python-modules/pyppeteer/default.nix
+++ b/pkgs/development/python-modules/pyppeteer/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "pyppeteer";
- version = "0.2.2";
+ version = "0.2.4";
src = fetchPypi {
inherit pname version;
- sha256 = "1s92izan7s3iffc85wpwi1qv9brcq0rlfqyi84wmpmg1dxk64g0m";
+ sha256 = "d1bcc61575ff788249d3bcaee696d856fa1153401a5428cb7376d826dd68dd9b";
};
# tests want to write to /homeless-shelter
diff --git a/pkgs/development/python-modules/pytest-snapshot/default.nix b/pkgs/development/python-modules/pytest-snapshot/default.nix
new file mode 100644
index 000000000000..42f399bb67f9
--- /dev/null
+++ b/pkgs/development/python-modules/pytest-snapshot/default.nix
@@ -0,0 +1,26 @@
+{ lib, buildPythonPackage, fetchPypi, packaging, pytest, setuptools-scm }:
+
+buildPythonPackage rec {
+ pname = "pytest-snapshot";
+ version = "0.4.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1p33fcplfykwf5mdwg25n8hjgzxpx8w1iprjnfzibpxclfrxmy5i";
+ };
+
+ nativeBuildInputs = [ setuptools-scm ];
+
+ propagatedBuildInputs = [ packaging pytest ];
+
+ # pypi does not contain tests and GitHub archive is not supported because setuptools-scm can't detect the version
+ doCheck = false;
+ pythonImportsCheck = [ "pytest_snapshot" ];
+
+ meta = with lib; {
+ description = "A plugin to enable snapshot testing with pytest";
+ homepage = "https://github.com/joseph-roitman/pytest-snapshot/";
+ license = licenses.mit;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix
index a74ee0455f2f..ecbdb73abc06 100644
--- a/pkgs/development/python-modules/python-engineio/default.nix
+++ b/pkgs/development/python-modules/python-engineio/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub
+{ stdenv
+, buildPythonPackage
+, fetchFromGitHub
, aiohttp
, eventlet
, iana-etc
@@ -14,19 +16,15 @@
buildPythonPackage rec {
pname = "python-engineio";
- version = "3.13.2";
+ version = "4.0.0";
src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = "python-engineio";
rev = "v${version}";
- sha256 = "1hn5nnxp7y2dpf52vrwdxza2sqmzj8admcnwgjkmcxk65s2dhvy1";
+ sha256 = "00x9pmmnl1yd59wd96ivkiqh4n5nphl8cwk43hf4nqr0icgsyhar";
};
- propagatedBuildInputs = [
- six
- ];
-
checkInputs = [
aiohttp
eventlet
@@ -47,11 +45,16 @@ buildPythonPackage rec {
# somehow effective log level does not change?
disabledTests = [ "test_logger" ];
+ pythonImportsCheck = [ "engineio" ];
meta = with stdenv.lib; {
- description = "Engine.IO server";
+ description = "Python based Engine.IO client and server";
+ longDescription = ''
+ Engine.IO is a lightweight transport protocol that enables real-time
+ bidirectional event-based communication between clients and a server.
+ '';
homepage = "https://github.com/miguelgrinberg/python-engineio/";
- license = licenses.mit;
- maintainers = [ maintainers.mic92 ];
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ mic92 ];
};
}
diff --git a/pkgs/development/python-modules/python-socketio/default.nix b/pkgs/development/python-modules/python-socketio/default.nix
index cfa260205715..64386e83f694 100644
--- a/pkgs/development/python-modules/python-socketio/default.nix
+++ b/pkgs/development/python-modules/python-socketio/default.nix
@@ -1,33 +1,43 @@
-{ lib
+{ stdenv
+, bidict
, buildPythonPackage
-, fetchPypi
-, six
-, python-engineio
+, fetchFromGitHub
, mock
+, pytestCheckHook
+, python-engineio
}:
buildPythonPackage rec {
pname = "python-socketio";
- version = "4.6.1";
+ version = "5.0.4";
- src = fetchPypi {
- inherit pname version;
- sha256 = "cd1f5aa492c1eb2be77838e837a495f117e17f686029ebc03d62c09e33f4fa10";
+ src = fetchFromGitHub {
+ owner = "miguelgrinberg";
+ repo = "python-socketio";
+ rev = "v${version}";
+ sha256 = "0mpqr53mrdzk9ki24y1inpsfvjlvm7pvxf8q4d52m80i5pcd5v5q";
};
propagatedBuildInputs = [
- six
+ bidict
python-engineio
];
- checkInputs = [ mock ];
- # tests only on github, but latest github release not tagged
- doCheck = false;
+ checkInputs = [
+ mock
+ pytestCheckHook
+ ];
- meta = with lib; {
- description = "Socket.IO server";
- homepage = "https://github.com/miguelgrinberg/python-socketio/";
- license = licenses.mit;
- maintainers = [ maintainers.mic92 ];
+ pythonImportsCheck = [ "socketio" ];
+
+ meta = with stdenv.lib; {
+ description = "Python Socket.IO server and client";
+ longDescription = ''
+ Socket.IO is a lightweight transport protocol that enables real-time
+ bidirectional event-based communication between clients and a server.
+ '';
+ homepage = "https://github.com/miguelgrinberg/python-engineio/";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ mic92 ];
};
}
diff --git a/pkgs/development/python-modules/pythonix/default.nix b/pkgs/development/python-modules/pythonix/default.nix
index 6ed150d12398..4ed0fb79127e 100644
--- a/pkgs/development/python-modules/pythonix/default.nix
+++ b/pkgs/development/python-modules/pythonix/default.nix
@@ -1,23 +1,31 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub, ninja, boost, meson, pkgconfig, nix, isPy3k }:
+{ stdenv, buildPythonPackage, fetchFromGitHub, ninja, boost, meson, pkg-config, nix, isPy3k, python }:
buildPythonPackage rec {
pname = "pythonix";
- version = "0.1.6";
+ version = "0.1.7";
format = "other";
src = fetchFromGitHub {
owner = "Mic92";
repo = "pythonix";
rev = "v${version}";
- sha256 = "1qzcrpn333hsgn6fj1m1s3cvaf0ny8qpygamcrazqv57xmwyr8h5";
+ sha256 = "1wxqv3i4bva2qq9mx670bcx0g0irjn68fvk28dwvhay9ndwcspqf";
};
disabled = !isPy3k;
- nativeBuildInputs = [ meson ninja pkgconfig ];
+ nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ nix boost ];
+ postInstall = ''
+ # This is typically set by pipInstallHook/eggInstallHook,
+ # so we have to do so manually when using meson
+ export PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH
+ '';
+
+ pythonImportsCheck = [ "nix" ];
+
meta = with stdenv.lib; {
description = ''
Eval nix code from python.
diff --git a/pkgs/development/python-modules/pywilight/default.nix b/pkgs/development/python-modules/pywilight/default.nix
new file mode 100644
index 000000000000..66bdcca4793d
--- /dev/null
+++ b/pkgs/development/python-modules/pywilight/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, ifaddr
+, requests
+}:
+
+buildPythonPackage rec {
+ pname = "pywilight";
+ version = "0.0.65";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1bldhg81lal9mbf55ky3gj2ndlplr0vfjp1bamd0mz5d9icas8nf";
+ };
+
+ propagatedBuildInputs = [
+ ifaddr
+ requests
+ ];
+
+ # no tests are present
+ doCheck = false;
+ pythonImportsCheck = [ "pywilight" ];
+
+ meta = with lib; {
+ description = "Python API for WiLight device";
+ homepage = "https://github.com/leofig-rj/pywilight";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/pywizlight/default.nix b/pkgs/development/python-modules/pywizlight/default.nix
new file mode 100644
index 000000000000..32baa25e52e7
--- /dev/null
+++ b/pkgs/development/python-modules/pywizlight/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, asyncio-dgram
+, click
+}:
+
+buildPythonPackage rec {
+ pname = "pywizlight";
+ version = "0.4.1";
+
+ src = fetchFromGitHub {
+ owner = "sbidy";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0kyhyda28zbni9sjv6kvky6wlhqldl47niddgpbjsv5dlb9xvxns";
+ };
+
+ propagatedBuildInputs = [
+ asyncio-dgram
+ click
+ ];
+
+ # no tests are present
+ doCheck = false;
+ pythonImportsCheck = [ "pywizlight" ];
+
+ meta = with lib; {
+ description = "Python connector for WiZ light bulbs";
+ homepage = "https://github.com/sbidy/pywizlight";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/rfc3986/default.nix b/pkgs/development/python-modules/rfc3986/default.nix
index 3af6d2f022be..859b2cc3e1af 100644
--- a/pkgs/development/python-modules/rfc3986/default.nix
+++ b/pkgs/development/python-modules/rfc3986/default.nix
@@ -1,5 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi,
- pytest }:
+{ stdenv, buildPythonPackage, fetchPypi, idna, pytestCheckHook }:
buildPythonPackage rec {
pname = "rfc3986";
@@ -10,14 +9,14 @@ buildPythonPackage rec {
sha256 = "17dvx15m3r49bmif5zlli8kzjd6bys6psixzbp14sd5367d9h8qi";
};
- checkInputs = [ pytest ];
- checkPhase = ''
- pytest
- '';
+ propagatedBuildInputs = [ idna ];
+
+ checkInputs = [ pytestCheckHook ];
meta = with stdenv.lib; {
+ description = "Validating URI References per RFC 3986";
homepage = "https://rfc3986.readthedocs.org";
license = licenses.asl20;
- description = "Validating URI References per RFC 3986";
+ maintainers = with maintainers; [ SuperSandro2000 ];
};
}
diff --git a/pkgs/development/python-modules/rpy2/default.nix b/pkgs/development/python-modules/rpy2/default.nix
index 055341dfd1d3..0b042288fb75 100644
--- a/pkgs/development/python-modules/rpy2/default.nix
+++ b/pkgs/development/python-modules/rpy2/default.nix
@@ -1,4 +1,5 @@
-{ lib
+{ stdenv
+, lib
, python
, buildPythonPackage
, fetchpatch
@@ -20,30 +21,37 @@
, cffi
, tzlocal
, simplegeneric
-, pytest
+, pytestCheckHook
, extraRPackages ? []
}:
buildPythonPackage rec {
- version = "3.3.6";
+ version = "3.4.1";
pname = "rpy2";
disabled = isPyPy;
src = fetchPypi {
inherit version pname;
- sha256 = "0xvfkxvh01r5ibd5mpisp8bz385hgpn27b988y8v65z7hqr3y1nf";
+ sha256 = "1qnjjlgh6i31z45jykwd29n1336gq678fn9zw7gh0rv5d6sn0hv4";
};
+ patches = [
+ # R_LIBS_SITE is used by the nix r package to point to the installed R libraries.
+ # This patch sets R_LIBS_SITE when rpy2 is imported.
+ ./rpy2-3.x-r-libs-site.patch
+ ];
+
+ postPatch = ''
+ substituteInPlace 'rpy2/rinterface_lib/embedded.py' --replace '@NIX_R_LIBS_SITE@' "$R_LIBS_SITE"
+ substituteInPlace 'requirements.txt' --replace 'pytest' ""
+ '';
+
buildInputs = [
- R
pcre
lzma
bzip2
zlib
icu
-
- # is in the upstream `requires` although it shouldn't be -- this is easier than patching it away
- pytest
] ++ (with rPackages; [
# packages expected by the test framework
ggplot2
@@ -58,23 +66,10 @@ buildPythonPackage rec {
tidyr
]) ++ extraRPackages ++ rWrapper.recommendedPackages;
- checkPhase = ''
- pytest
- '';
-
nativeBuildInputs = [
R # needed at setup time to detect R_HOME (alternatively set R_HOME explicitly)
];
- patches = [
- # R_LIBS_SITE is used by the nix r package to point to the installed R libraries.
- # This patch sets R_LIBS_SITE when rpy2 is imported.
- ./rpy2-3.x-r-libs-site.patch
- ];
- postPatch = ''
- substituteInPlace 'rpy2/rinterface_lib/embedded.py' --replace '@NIX_R_LIBS_SITE@' "$R_LIBS_SITE"
- '';
-
propagatedBuildInputs = [
ipython
jinja2
@@ -86,8 +81,10 @@ buildPythonPackage rec {
simplegeneric
];
+ doCheck = !stdenv.isDarwin;
+
checkInputs = [
- pytest
+ pytestCheckHook
];
meta = {
diff --git a/pkgs/development/python-modules/salmon-mail/default.nix b/pkgs/development/python-modules/salmon-mail/default.nix
index a33bec431d68..187f526b72f4 100644
--- a/pkgs/development/python-modules/salmon-mail/default.nix
+++ b/pkgs/development/python-modules/salmon-mail/default.nix
@@ -20,6 +20,8 @@ buildPythonPackage rec {
# The tests use salmon executable installed by salmon itself so we need to add
# that to PATH
checkPhase = ''
+ # tests fail and pytest is not supported
+ rm tests/server_tests.py
PATH=$out/bin:$PATH python setup.py test
'';
diff --git a/pkgs/development/python-modules/sane/default.nix b/pkgs/development/python-modules/sane/default.nix
index 2359ff0aa7fe..d45c736d8d03 100644
--- a/pkgs/development/python-modules/sane/default.nix
+++ b/pkgs/development/python-modules/sane/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "sane";
- version = "2.8.2";
+ version = "2.9.1";
src = fetchPypi {
inherit version;
pname = "python-sane";
- sha256 = "0sri01h9sld6w7vgfhwp29n5w19g6idz01ba2giwnkd99k1y2iqg";
+ sha256 = "JAmOuDxujhsBEm5q16WwR5wHsBPF0iBQm1VYkv5JJd4=";
};
buildInputs = [
diff --git a/pkgs/development/python-modules/sanic-auth/default.nix b/pkgs/development/python-modules/sanic-auth/default.nix
index 4642b69f7d2e..ec1284af76d3 100644
--- a/pkgs/development/python-modules/sanic-auth/default.nix
+++ b/pkgs/development/python-modules/sanic-auth/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, fetchPypi, pytest, sanic }:
+{ lib, buildPythonPackage, fetchPypi, sanic }:
buildPythonPackage rec {
pname = "Sanic-Auth";
@@ -11,11 +11,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [ sanic ];
- checkInputs = [ pytest ];
+ # all tests fail
+ doCheck = false;
- checkPhase = ''
- pytest tests
- '';
+ pythonImportsCheck = [ "sanic_auth" ];
meta = with lib; {
description = "Simple Authentication for Sanic";
diff --git a/pkgs/development/python-modules/sanic/default.nix b/pkgs/development/python-modules/sanic/default.nix
index aaedaa5ef8c5..f503b0b85561 100644
--- a/pkgs/development/python-modules/sanic/default.nix
+++ b/pkgs/development/python-modules/sanic/default.nix
@@ -36,6 +36,8 @@ buildPythonPackage rec {
"test_zero_downtime" # No "examples.delayed_response.app" module in pypi distribution.
];
+ __darwinAllowLocalNetworking = true;
+
meta = with lib; {
description = "A microframework based on uvloop, httptools, and learnings of flask";
homepage = "http://github.com/channelcat/sanic/";
diff --git a/pkgs/development/python-modules/sentry-sdk/default.nix b/pkgs/development/python-modules/sentry-sdk/default.nix
index 9df9453b2b4d..5f640d44b1ca 100644
--- a/pkgs/development/python-modules/sentry-sdk/default.nix
+++ b/pkgs/development/python-modules/sentry-sdk/default.nix
@@ -42,12 +42,6 @@ buildPythonPackage rec {
propagatedBuildInputs = [ urllib3 certifi ];
- meta = with stdenv.lib; {
- homepage = "https://github.com/getsentry/sentry-python";
- description = "New Python SDK for Sentry.io";
- license = licenses.bsd2;
- maintainers = with maintainers; [ gebner ];
- };
# The Sentry tests need access to `/etc/protocols` (the tests call
# `socket.getprotobyname('tcp')`, which reads from this file). Normally
@@ -57,5 +51,17 @@ buildPythonPackage rec {
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols
export LD_PRELOAD=${libredirect}/lib/libredirect.so
'';
+
postCheck = "unset NIX_REDIRECTS LD_PRELOAD";
+
+ # no tests
+ doCheck = false;
+ pythonImportsCheck = [ "sentry_sdk" ];
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/getsentry/sentry-python";
+ description = "New Python SDK for Sentry.io";
+ license = licenses.bsd2;
+ maintainers = with maintainers; [ gebner ];
+ };
}
diff --git a/pkgs/development/python-modules/smbus-cffi/default.nix b/pkgs/development/python-modules/smbus-cffi/default.nix
index b762730914b5..6715cfd60d95 100644
--- a/pkgs/development/python-modules/smbus-cffi/default.nix
+++ b/pkgs/development/python-modules/smbus-cffi/default.nix
@@ -42,5 +42,6 @@ buildPythonPackage rec {
homepage = "https://github.com/bivab/smbus-cffi";
license = licenses.gpl2;
maintainers = with maintainers; [ mic92 ];
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/development/python-modules/snapshottest/default.nix b/pkgs/development/python-modules/snapshottest/default.nix
new file mode 100644
index 000000000000..b20f9afff9e6
--- /dev/null
+++ b/pkgs/development/python-modules/snapshottest/default.nix
@@ -0,0 +1,33 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, fastdiff
+, six
+, termcolor
+, pytestCheckHook
+, pytest-cov
+, django
+}:
+
+buildPythonPackage rec {
+ pname = "snapshottest";
+ version = "0.6.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0g35ggqw4jd9zmazw55kj6gfjdghv49qx4jw5q231qyqj8fzijmv";
+ };
+
+ propagatedBuildInputs = [ fastdiff six termcolor ];
+
+ checkInputs = [ django pytestCheckHook pytest-cov ];
+
+ pythonImportsCheck = [ "snapshottest" ];
+
+ meta = with lib; {
+ description = "Snapshot testing for pytest, unittest, Django, and Nose";
+ homepage = "https://github.com/syrusakbary/snapshottest";
+ license = licenses.mit;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/sqlite-utils/default.nix b/pkgs/development/python-modules/sqlite-utils/default.nix
index 727a840476a4..99a6369de559 100644
--- a/pkgs/development/python-modules/sqlite-utils/default.nix
+++ b/pkgs/development/python-modules/sqlite-utils/default.nix
@@ -15,12 +15,12 @@
buildPythonPackage rec {
pname = "sqlite-utils";
- version = "3.1.1";
+ version = "3.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "54df73364662ff3c763da3b42b9d27b1771ebfb3361caa255e44e1bf1544015b";
+ sha256 = "83d60e0f0de5e4a367e2ad414dc008c0602e2af35325b09e41c7b2c69808dcc1";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/starlette/default.nix b/pkgs/development/python-modules/starlette/default.nix
index ff8a93d335ea..d802a2300035 100644
--- a/pkgs/development/python-modules/starlette/default.nix
+++ b/pkgs/development/python-modules/starlette/default.nix
@@ -2,25 +2,26 @@
, stdenv
, buildPythonPackage
, fetchFromGitHub
+, isPy27
, aiofiles
, graphene
, itsdangerous
, jinja2
+, python-multipart
, pyyaml
, requests
, ujson
-, python-multipart
-, pytest
-, uvicorn
-, isPy27
-, darwin
-, databases
, aiosqlite
+, databases
+, pytestCheckHook
+, pytest-asyncio
+, pytestcov
+, typing-extensions
+, ApplicationServices
}:
buildPythonPackage rec {
pname = "starlette";
-
version = "0.13.8";
disabled = isPy27;
@@ -36,22 +37,21 @@ buildPythonPackage rec {
graphene
itsdangerous
jinja2
+ python-multipart
pyyaml
requests
ujson
- uvicorn
- python-multipart
- databases
- ] ++ stdenv.lib.optional stdenv.isDarwin [ darwin.apple_sdk.frameworks.ApplicationServices ];
+ ] ++ lib.optional stdenv.isDarwin [ ApplicationServices ];
checkInputs = [
- pytest
aiosqlite
+ databases
+ pytestCheckHook
+ typing-extensions
];
- checkPhase = ''
- pytest --ignore=tests/test_graphql.py
- '';
+ pytestFlagsArray = [ "--ignore=tests/test_graphql.py" ];
+
pythonImportsCheck = [ "starlette" ];
meta = with lib; {
diff --git a/pkgs/development/python-modules/sympy/default.nix b/pkgs/development/python-modules/sympy/default.nix
index 9c3353aa2e74..c935176e0d51 100644
--- a/pkgs/development/python-modules/sympy/default.nix
+++ b/pkgs/development/python-modules/sympy/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "sympy";
- version = "1.6.2";
+ version = "1.7.1";
src = fetchPypi {
inherit pname version;
- sha256 = "1cfadcc80506e4b793f5b088558ca1fcbeaec24cd6fc86f1fdccaa3ee1d48708";
+ sha256 = "sha256-o96SYel1Nbg7uGB7DaLH0DEmZQ+v6isniWV7Ipwkay4=";
};
checkInputs = [ glibcLocales ];
diff --git a/pkgs/development/python-modules/tasklib/default.nix b/pkgs/development/python-modules/tasklib/default.nix
index 319dd98234d2..591f4cdabe96 100644
--- a/pkgs/development/python-modules/tasklib/default.nix
+++ b/pkgs/development/python-modules/tasklib/default.nix
@@ -8,11 +8,11 @@ wsl_stub = writeShellScriptBin "wsl" "true";
in buildPythonPackage rec {
pname = "tasklib";
- version = "2.2.1";
+ version = "2.3.0";
src = fetchPypi {
inherit pname version;
- sha256 = "21525a34469928876b64edf8abf79cf788bb3fa796d4554ba22a68bc1f0693f5";
+ sha256 = "7fe8676acb4559129c4e958be7704c12dccdbae302fff47c5398bc0dd1c9e563";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/tbm-utils/default.nix b/pkgs/development/python-modules/tbm-utils/default.nix
index 2d0efeceda04..bcc5cbbef946 100644
--- a/pkgs/development/python-modules/tbm-utils/default.nix
+++ b/pkgs/development/python-modules/tbm-utils/default.nix
@@ -5,17 +5,15 @@
, pendulum
, pprintpp
, wrapt
-, pythonOlder
}:
buildPythonPackage rec {
pname = "tbm-utils";
version = "2.6.0";
- disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "235748cceeb22c042e32d2fdfd4d710021bac9b938c4f2c35e1fce1cfd58f7ec";
+ sha256 = "1v7pb3yirkhzbv1z5i1qp74vl880f56zvzfj68p08b5jxv64hmr3";
};
propagatedBuildInputs = [ attrs pendulum pprintpp wrapt ];
@@ -24,7 +22,7 @@ buildPythonPackage rec {
# issues with package failing to build from source, but nixpkgs is better
postPatch = ''
substituteInPlace setup.py \
- --replace "pendulum>=2.0,<=3.0,!=2.0.5,!=2.1.0" "pendulum>=2.0,<=3.0"
+ --replace "'attrs>=18.2,<19.4'" "'attrs'"
'';
# No tests in archive.
diff --git a/pkgs/development/python-modules/tensorflow-tensorboard/1/default.nix b/pkgs/development/python-modules/tensorflow-tensorboard/1/default.nix
index 6cc3636b7f30..f58b1a207719 100644
--- a/pkgs/development/python-modules/tensorflow-tensorboard/1/default.nix
+++ b/pkgs/development/python-modules/tensorflow-tensorboard/1/default.nix
@@ -20,8 +20,7 @@ buildPythonPackage rec {
src = fetchPypi ({
pname = "tensorboard";
- inherit version;
- format = "wheel";
+ inherit version format;
} // (if isPy3k then {
python = "py3";
sha256 = "1g62i3nrgp8q9wfsyqqjkkfnsz7x2k018c26kdh527h1yrjjrbac";
diff --git a/pkgs/development/python-modules/tensorflow-tensorboard/2/default.nix b/pkgs/development/python-modules/tensorflow-tensorboard/2/default.nix
index 945896dda018..d0cf7f28f4d6 100644
--- a/pkgs/development/python-modules/tensorflow-tensorboard/2/default.nix
+++ b/pkgs/development/python-modules/tensorflow-tensorboard/2/default.nix
@@ -21,8 +21,7 @@ buildPythonPackage rec {
src = fetchPypi ({
pname = "tensorboard";
- inherit version;
- format = "wheel";
+ inherit version format;
} // (if isPy3k then {
python = "py3";
sha256 = "1wpjdzhjpcdkyaahzd4bl71k4l30z5c55280ndiwj32hw70lxrp6";
diff --git a/pkgs/development/python-modules/trezor_agent/default.nix b/pkgs/development/python-modules/trezor_agent/default.nix
index 82cb14b31cb1..fa9c11e95def 100644
--- a/pkgs/development/python-modules/trezor_agent/default.nix
+++ b/pkgs/development/python-modules/trezor_agent/default.nix
@@ -24,6 +24,9 @@ buildPythonPackage rec {
propagatedBuildInputs = [ setuptools trezor libagent ecdsa ed25519 mnemonic keepkey semver wheel pinentry ];
+ doCheck = false;
+ pythonImportsCheck = [ "libagent" ];
+
meta = with stdenv.lib; {
description = "Using Trezor as hardware SSH agent";
homepage = "https://github.com/romanz/trezor-agent";
diff --git a/pkgs/development/python-modules/trimesh/default.nix b/pkgs/development/python-modules/trimesh/default.nix
index 251d6c3d94dd..b157e32ed876 100644
--- a/pkgs/development/python-modules/trimesh/default.nix
+++ b/pkgs/development/python-modules/trimesh/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "trimesh";
- version = "3.8.19";
+ version = "3.9.1";
src = fetchPypi {
inherit pname version;
- sha256 = "e2ec4fc75bddf46fd494a9c95adc0bf0fe6f667cae242ead99955ad659d6e375";
+ sha256 = "d19cbdb830a17297aa218ba6ce4955fc11b4b553414289cfd71f58f8144cc91f";
};
propagatedBuildInputs = [ numpy ];
diff --git a/pkgs/development/python-modules/typesystem/default.nix b/pkgs/development/python-modules/typesystem/default.nix
index bfaed58b13fb..e993363769a8 100644
--- a/pkgs/development/python-modules/typesystem/default.nix
+++ b/pkgs/development/python-modules/typesystem/default.nix
@@ -2,7 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, isPy27
-, pytest
+, pytestCheckHook
, pytestcov
, jinja2
, pyyaml
@@ -26,14 +26,11 @@ buildPythonPackage rec {
];
checkInputs = [
- pytest
+ pytestCheckHook
pytestcov
];
- # for some reason jinja2 not picking up forms directory (1% of tests)
- checkPhase = ''
- pytest --ignore=tests/test_forms.py
- '';
+ disabledTests = [ "test_to_json_schema_complex_regular_expression" ];
meta = with lib; {
description = "A type system library for Python";
diff --git a/pkgs/development/python-modules/wasmer/default.nix b/pkgs/development/python-modules/wasmer/default.nix
new file mode 100644
index 000000000000..e8307365574c
--- /dev/null
+++ b/pkgs/development/python-modules/wasmer/default.nix
@@ -0,0 +1,73 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+, maturin
+, buildPythonPackage
+, isPy38
+, python
+}:
+let
+ pname = "wasmer";
+ version = "1.0.0-beta1";
+
+ wheel = rustPlatform.buildRustPackage rec {
+ name = "${pname}-${version}-py${python.version}";
+
+ src = fetchFromGitHub {
+ owner = "wasmerio";
+ repo = "wasmer-python";
+ rev = version;
+ sha256 = "0302lcfjlw7nz18nf86z6swhhpp1qnpwcsm2fj4avl22rsv0h78j";
+ };
+
+ cargoSha256 = "0d83dniijjq8rc4fcwj6ja5x4hxh187afnqfd8c9fzb8nx909a0v";
+
+ nativeBuildInputs = [ maturin python ];
+
+ preBuild = ''
+ cd packages/api
+ '';
+
+ buildPhase = ''
+ runHook preBuild
+ maturin build --release --manylinux off --strip
+ runHook postBuild
+ '';
+
+ postBuild = ''
+ cd ../..
+ '';
+
+ doCheck = false;
+
+ installPhase = ''
+ runHook preInstall
+ install -Dm644 -t $out target/wheels/*.whl
+ runHook postInstall
+ '';
+ };
+
+in
+buildPythonPackage rec {
+ inherit pname version;
+ # we can only support one python version because the cargo hash changes with the python version
+ disabled = !isPy38;
+
+ format = "wheel";
+ src = wheel;
+
+ unpackPhase = ''
+ mkdir -p dist
+ cp $src/*.whl dist
+ '';
+
+ pythonImportsCheck = [ "wasmer" ];
+
+ meta = with lib; {
+ description = "Python extension to run WebAssembly binaries";
+ homepage = "https://github.com/wasmerio/wasmer-python";
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ SuperSandro2000 ];
+ };
+}
diff --git a/pkgs/development/python-modules/webthing/default.nix b/pkgs/development/python-modules/webthing/default.nix
new file mode 100644
index 000000000000..92e4ea5a8fb5
--- /dev/null
+++ b/pkgs/development/python-modules/webthing/default.nix
@@ -0,0 +1,40 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, ifaddr
+, jsonschema
+, pyee
+, tornado
+, zeroconf
+}:
+
+buildPythonPackage rec {
+ pname = "webthing";
+ version = "0.15.0";
+
+ src = fetchFromGitHub {
+ owner = "WebThingsIO";
+ repo = "webthing-python";
+ rev = "v${version}";
+ sha256 = "06264rwchy4qmbn7lv7m00qg864y7aw3rngcqqcr9nvaqz4rb0fg";
+ };
+
+ propagatedBuildInputs = [
+ ifaddr
+ jsonschema
+ pyee
+ tornado
+ zeroconf
+ ];
+
+ # no tests are present
+ doCheck = false;
+ pythonImportsCheck = [ "webthing" ];
+
+ meta = with lib; {
+ description = "Python implementation of a Web Thing server";
+ homepage = "https://github.com/WebThingsIO/webthing-python";
+ license = with licenses; [ mpl20 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/python-modules/xlib/default.nix b/pkgs/development/python-modules/xlib/default.nix
index 599abf1974cd..30a30232088e 100644
--- a/pkgs/development/python-modules/xlib/default.nix
+++ b/pkgs/development/python-modules/xlib/default.nix
@@ -12,13 +12,13 @@
buildPythonPackage rec {
pname = "xlib";
- version = "0.28";
+ version = "0.29";
src = fetchFromGitHub {
owner = "python-xlib";
repo = "python-xlib";
rev = version;
- sha256 = "13551vi65034pjf2g7zkw5dyjqcjfyk32a640g5jr055ssf0bjkc";
+ sha256 = "sha256-zOG1QzRa5uN36Ngv8i5s3mq+VIoRzxFj5ltUbKdonJ0=";
};
checkPhase = ''
diff --git a/pkgs/development/python-modules/zeroconf/default.nix b/pkgs/development/python-modules/zeroconf/default.nix
index a8715a2133c3..72d6d48f9779 100644
--- a/pkgs/development/python-modules/zeroconf/default.nix
+++ b/pkgs/development/python-modules/zeroconf/default.nix
@@ -1,4 +1,5 @@
-{ lib
+{ stdenv
+, lib
, buildPythonPackage
, fetchPypi
, ifaddr
@@ -29,7 +30,10 @@ buildPythonPackage rec {
"test_launch_and_close_v4_v6"
"test_launch_and_close_v6_only"
"test_integration_with_listener_ipv6"
+ ] ++ lib.optionals stdenv.isDarwin [
+ "test_lots_of_names"
];
+ __darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "zeroconf" ];
diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix
index 292653d75e51..9eb5ffb52cc2 100644
--- a/pkgs/development/r-modules/default.nix
+++ b/pkgs/development/r-modules/default.nix
@@ -380,6 +380,7 @@ let
rmutil = lib.optionals stdenv.isDarwin [ pkgs.libiconv ];
robustbase = lib.optionals stdenv.isDarwin [ pkgs.libiconv ];
SparseM = lib.optionals stdenv.isDarwin [ pkgs.libiconv ];
+ hexbin = lib.optionals stdenv.isDarwin [ pkgs.libiconv ];
svKomodo = [ pkgs.which ];
nat = [ pkgs.which ];
nat_templatebrains = [ pkgs.which ];
diff --git a/pkgs/development/tools/analysis/tflint/default.nix b/pkgs/development/tools/analysis/tflint/default.nix
index 1011bcb5cc0c..c8bd6223e92b 100644
--- a/pkgs/development/tools/analysis/tflint/default.nix
+++ b/pkgs/development/tools/analysis/tflint/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "tflint";
- version = "0.22.0";
+ version = "0.23.0";
src = fetchFromGitHub {
owner = "terraform-linters";
repo = pname;
rev = "v${version}";
- sha256 = "0wbxlh2lwgdhhw902lqy6p2vh8adfq4yaa507js8an3byy26ls3d";
+ sha256 = "1j6a956cbmsc9fy500sl5z6l7q5sc4fna772v5m10w0hq0vw6sk5";
};
- vendorSha256 = "0yk9xsb0s4kymfb3p14irks6b30b53r0mz7irgcmx9jxz8vyffqg";
+ vendorSha256 = "1x7gxjl98i36vsch6b3w6iqyq6q8mj4x9gylk2fihq50c3qq4mk4";
doCheck = false;
diff --git a/pkgs/development/tools/buildkit/default.nix b/pkgs/development/tools/buildkit/default.nix
index 00a285c67d02..30a013dac11c 100644
--- a/pkgs/development/tools/buildkit/default.nix
+++ b/pkgs/development/tools/buildkit/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
pname = "buildkit";
- version = "0.8.0";
+ version = "0.8.1";
goPackagePath = "github.com/moby/buildkit";
subPackages = [ "cmd/buildctl" ] ++ stdenv.lib.optionals stdenv.isLinux [ "cmd/buildkitd" ];
@@ -11,7 +11,7 @@ buildGoPackage rec {
owner = "moby";
repo = "buildkit";
rev = "v${version}";
- sha256 = "0qcgq93wj77i912xqhwrzkzaqz608ilczfn5kcsrf9jk2m1gnx7m";
+ sha256 = "0lqfz097nyb6q6bn5mmfg6vl1nmgb6k4lmwxc8anza6zp8qh7wif";
};
buildFlagsArray = [ "-ldflags=-s -w -X ${goPackagePath}/version.Version=${version} -X ${goPackagePath}/version.Revision=${src.rev}" ];
diff --git a/pkgs/development/tools/flootty/default.nix b/pkgs/development/tools/flootty/default.nix
index 1baddb52259c..2b8f174f763a 100644
--- a/pkgs/development/tools/flootty/default.nix
+++ b/pkgs/development/tools/flootty/default.nix
@@ -13,6 +13,6 @@ python3Packages.buildPythonApplication rec {
description = "A collaborative terminal. In practice, it's similar to a shared screen or tmux session";
homepage = "https://floobits.com/help/flootty";
license = licenses.asl20;
- maintainers = with maintainers; [ sellout enzime ];
+ maintainers = with maintainers; [ sellout ];
};
}
diff --git a/pkgs/development/tools/kustomize/default.nix b/pkgs/development/tools/kustomize/default.nix
index 79c484586111..4235912c24f0 100644
--- a/pkgs/development/tools/kustomize/default.nix
+++ b/pkgs/development/tools/kustomize/default.nix
@@ -2,9 +2,9 @@
buildGoModule rec {
pname = "kustomize";
- version = "3.8.7";
+ version = "3.9.1";
# rev is the 3.8.7 commit, mainly for kustomize version command output
- rev = "ad092cc7a91c07fdf63a2e4b7f13fa588a39af4f";
+ rev = "7439f1809e5ccd4677ed52be7f98f2ad75122a93";
buildFlagsArray = let t = "sigs.k8s.io/kustomize/api/provenance"; in
''
@@ -17,13 +17,13 @@ buildGoModule rec {
owner = "kubernetes-sigs";
repo = pname;
rev = "kustomize/v${version}";
- sha256 = "1942cyaj6knf8mc3q2vcz6rqqc6lxdd6nikry9m0idk5l1b09x1m";
+ sha256 = "1v8yfiwzg84bpdh3k3h5v2smxx0dymq717r2mh3pjz3nifkg3ilm";
};
# avoid finding test and development commands
sourceRoot = "source/kustomize";
- vendorSha256 = "0y77ykfcbn4l0x85c3hb1lgjpy64kimx3s1qkn38gpmi4lphvkkl";
+ vendorSha256 = "1nixkmyqzq7387rwam0bsa6qjd40k5p15npq0iz1z2k1ws8pvrg6";
meta = with lib; {
description = "Customization of kubernetes YAML configurations";
@@ -34,6 +34,6 @@ buildGoModule rec {
'';
homepage = "https://github.com/kubernetes-sigs/kustomize";
license = licenses.asl20;
- maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime ];
+ maintainers = with maintainers; [ carlosdagos vdemeester periklis zaninime Chili-Man];
};
}
diff --git a/pkgs/development/tools/misc/clojure-lsp/default.nix b/pkgs/development/tools/misc/clojure-lsp/default.nix
index 7f6a4eddcab0..68140904aadf 100644
--- a/pkgs/development/tools/misc/clojure-lsp/default.nix
+++ b/pkgs/development/tools/misc/clojure-lsp/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "clojure-lsp";
- version = "20201228T020543";
+ version = "2021.01.03-00.42.23";
src = fetchurl {
- url = "https://github.com/clojure-lsp/clojure-lsp/releases/download/release-${version}/${pname}.jar";
- sha256 = "0jkpw7dx7976p63c08bp43fiwk6f2h2nxj9vv1zr103hgywpplri";
+ url = "https://github.com/clojure-lsp/clojure-lsp/releases/download/${version}/${pname}.jar";
+ sha256 = "06h69hwm3kl1nr94l43j91pnvkzgnacsg6a6cly4abrg041qhbv3";
};
dontUnpack = true;
@@ -16,9 +16,9 @@ stdenv.mkDerivation rec {
installPhase = ''
install -Dm644 $src $out/share/java/${pname}.jar
makeWrapper ${jre}/bin/java $out/bin/${pname} \
- --add-flags "-jar $out/share/java/${pname}.jar" \
--add-flags "-Xmx2g" \
- --add-flags "-server"
+ --add-flags "-server" \
+ --add-flags "-jar $out/share/java/${pname}.jar"
'';
meta = with stdenv.lib; {
diff --git a/pkgs/development/tools/misc/hydra/default.nix b/pkgs/development/tools/misc/hydra/default.nix
index 7aa1e05a88e4..1636ad6dd71f 100644
--- a/pkgs/development/tools/misc/hydra/default.nix
+++ b/pkgs/development/tools/misc/hydra/default.nix
@@ -9,6 +9,9 @@
rev = "79d34ed7c93af2daf32cf44ee0e3e0768f13f97c";
sha256 = "1lql899430137l6ghnhyz0ivkayy83fdr087ck2wq3gf1jv8pccj";
};
+ patches = [
+ ./hydra-nix-receiveContents.patch
+ ];
nix = nixFlakes;
tests = {
diff --git a/pkgs/development/tools/misc/hydra/hydra-nix-receiveContents.patch b/pkgs/development/tools/misc/hydra/hydra-nix-receiveContents.patch
new file mode 100644
index 000000000000..61957e2190cd
--- /dev/null
+++ b/pkgs/development/tools/misc/hydra/hydra-nix-receiveContents.patch
@@ -0,0 +1,18 @@
+Update for https://github.com/NixOS/nix/commit/faa31f40
+
+--- a/src/hydra-queue-runner/nar-extractor.cc
++++ b/src/hydra-queue-runner/nar-extractor.cc
+@@ -48,9 +48,9 @@
+- void receiveContents(unsigned char * data, size_t len) override
++ void receiveContents(std::string_view data) override
+ {
+ assert(expectedSize);
+ assert(curMember);
+ assert(hashSink);
+- *curMember->fileSize += len;
+- (*hashSink)(data, len);
++ *curMember->fileSize += data.size();
++ (*hashSink)(data);
+ if (curMember->contents) {
+- curMember->contents->append((char *) data, len);
++ curMember->contents->append(data);
diff --git a/pkgs/development/tools/ocaml/utop/default.nix b/pkgs/development/tools/ocaml/utop/default.nix
index ac7cd4f4dbbc..2c4c330b286d 100644
--- a/pkgs/development/tools/ocaml/utop/default.nix
+++ b/pkgs/development/tools/ocaml/utop/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ocaml, findlib, dune
+{ stdenv, fetchurl, ocaml, findlib
, lambdaTerm, cppo, makeWrapper, buildDunePackage
}:
@@ -8,11 +8,13 @@ else
buildDunePackage rec {
pname = "utop";
- version = "2.4.3";
+ version = "2.6.0";
+
+ useDune2 = true;
src = fetchurl {
url = "https://github.com/ocaml-community/utop/releases/download/${version}/utop-${version}.tbz";
- sha256 = "107al0l3x4a5kkjka7glmhsqlm7pwzzc6shspiv5gsjb49pblc2f";
+ sha256 = "17n9igl74xcvj0mzdh2ybda29f2m48a5lj4yf8lrdqr7vg0982jd";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/development/tools/pry/Gemfile.lock b/pkgs/development/tools/pry/Gemfile.lock
index d76845bc05a7..87f7e81fbe3a 100644
--- a/pkgs/development/tools/pry/Gemfile.lock
+++ b/pkgs/development/tools/pry/Gemfile.lock
@@ -1,11 +1,11 @@
GEM
remote: https://rubygems.org/
specs:
- coderay (1.1.2)
- method_source (0.9.2)
- pry (0.12.2)
- coderay (~> 1.1.0)
- method_source (~> 0.9.0)
+ coderay (1.1.3)
+ method_source (1.0.0)
+ pry (0.13.1)
+ coderay (~> 1.1)
+ method_source (~> 1.0)
PLATFORMS
ruby
diff --git a/pkgs/development/tools/pry/gemset.nix b/pkgs/development/tools/pry/gemset.nix
index e779c48aebfc..05e5e1dcfb85 100644
--- a/pkgs/development/tools/pry/gemset.nix
+++ b/pkgs/development/tools/pry/gemset.nix
@@ -4,20 +4,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "15vav4bhcc2x3jmi3izb11l4d9f3xv8hp2fszb7iqmpsccv1pz4y";
+ sha256 = "0jvxqxzply1lwp7ysn94zjhh57vc14mcshw1ygw14ib8lhc00lyw";
type = "gem";
};
- version = "1.1.2";
+ version = "1.1.3";
};
method_source = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pviwzvdqd90gn6y7illcdd9adapw8fczml933p5vl739dkvl3lq";
+ sha256 = "1pnyh44qycnf9mzi1j6fywd5fkskv3x7nmsqrrws0rjn5dd4ayfp";
type = "gem";
};
- version = "0.9.2";
+ version = "1.0.0";
};
pry = {
dependencies = ["coderay" "method_source"];
@@ -25,9 +25,9 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "00rm71x0r1jdycwbs83lf9l6p494m99asakbvqxh8rz7zwnlzg69";
+ sha256 = "0iyw4q4an2wmk8v5rn2ghfy2jaz9vmw2nk8415nnpx2s866934qk";
type = "gem";
};
- version = "0.12.2";
+ version = "0.13.1";
};
}
\ No newline at end of file
diff --git a/pkgs/development/tools/rust/rust-analyzer/default.nix b/pkgs/development/tools/rust/rust-analyzer/default.nix
index a398b7e504df..a031d552253b 100644
--- a/pkgs/development/tools/rust/rust-analyzer/default.nix
+++ b/pkgs/development/tools/rust/rust-analyzer/default.nix
@@ -2,10 +2,10 @@
{
rust-analyzer-unwrapped = callPackage ./generic.nix rec {
- rev = "2020-11-09";
+ rev = "2021-01-04";
version = "unstable-${rev}";
- sha256 = "sha256-SX9dvx2JtYZBxA3+dHQKX/jrjbAMy37/SAybDjlYcSs=";
- cargoSha256 = "sha256-+td+wMmI+MyGz9oPC+SPO2TmAV0+3lOORNY7xf6s3vI=";
+ sha256 = "sha256-VRnmx5SfmdMIVQjixWBSaMioqFUlo9VOIKsPvC5t3t4=";
+ cargoSha256 = "sha256-X63FjFpfwjvQayw4X6Sqfyh4FHsc3flE3OtQpzqowjc=";
};
rust-analyzer = callPackage ./wrapper.nix {} {
diff --git a/pkgs/development/tools/rust/rust-analyzer/update.sh b/pkgs/development/tools/rust/rust-analyzer/update.sh
index f08ea67cf22d..1bd46862692f 100755
--- a/pkgs/development/tools/rust/rust-analyzer/update.sh
+++ b/pkgs/development/tools/rust/rust-analyzer/update.sh
@@ -26,7 +26,7 @@ sha256=$(nix-prefetch -f "$nixpkgs" rust-analyzer-unwrapped.src --rev "$rev")
# Clear cargoSha256 to avoid inconsistency.
sed -e "s#rev = \".*\"#rev = \"$rev\"#" \
-e "s#sha256 = \".*\"#sha256 = \"$sha256\"#" \
- -e "s#cargoSha256 = \".*\"#cargoSha256 = \"\"#" \
+ -e "s#cargoSha256 = \".*\"#cargoSha256 = \"sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\"#" \
--in-place ./default.nix
node_src="$(nix-build "$nixpkgs" -A rust-analyzer.src --no-out-link)/editors/code"
diff --git a/pkgs/development/tools/solarus-quest-editor/default.nix b/pkgs/development/tools/solarus-quest-editor/default.nix
index b76b4fe9809b..159fe3d99eb7 100644
--- a/pkgs/development/tools/solarus-quest-editor/default.nix
+++ b/pkgs/development/tools/solarus-quest-editor/default.nix
@@ -1,7 +1,9 @@
-{ stdenv, fetchFromGitLab, cmake, luajit, SDL2, SDL2_image, SDL2_ttf, physfs
-, openal, libmodplug, libvorbis, solarus, qtbase, qttools, glm }:
+{ lib, mkDerivation, fetchFromGitLab, cmake, luajit
+, SDL2, SDL2_image, SDL2_ttf, physfs, fetchpatch
+, openal, libmodplug, libvorbis, solarus
+, qtbase, qttools, glm }:
-stdenv.mkDerivation rec {
+mkDerivation rec {
pname = "solarus-quest-editor";
version = "1.6.4";
@@ -12,12 +14,19 @@ stdenv.mkDerivation rec {
sha256 = "1qbc2j9kalk7xqk9j27s7wnm5zawiyjs47xqkqphw683idmzmjzn";
};
+ patches = [
+ (fetchpatch {
+ url = "https://gitlab.com/solarus-games/solarus-quest-editor/-/commit/81d5c7f1602cf355684d70a5e3449fefccfc44b8.patch";
+ sha256 = "tVUxkkDp2PcOHGy4dGvUcYj9gF7k4LN21VuxohCw9NE=";
+ })
+ ];
+
nativeBuildInputs = [ cmake ];
buildInputs = [ luajit SDL2 SDL2_image SDL2_ttf physfs openal
libmodplug libvorbis solarus qtbase qttools glm ];
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "The editor for the Zelda-like ARPG game engine, Solarus";
longDescription = ''
Solarus is a game engine for Zelda-like ARPG games written in lua.
diff --git a/pkgs/development/tools/turbogit/default.nix b/pkgs/development/tools/turbogit/default.nix
new file mode 100644
index 000000000000..68bd10683547
--- /dev/null
+++ b/pkgs/development/tools/turbogit/default.nix
@@ -0,0 +1,42 @@
+{ fetchFromGitHub, buildGoModule, lib, installShellFiles }:
+buildGoModule rec {
+ pname = "turbogit";
+ version = "1.2.0";
+
+ src = fetchFromGitHub {
+ owner = "b4nst";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-alVgXnsoC2nmUe6i/l0ttUjoXpKLHr0n/7p6WbIIGBU=";
+ };
+
+ vendorSha256 = "sha256-6fxbxpROYiNw5SYdQAIdy5NfqzOcFfAlJ+vTQyFtink=";
+
+ subPackages = [ "." ];
+
+ nativeBuildInputs = [ installShellFiles ];
+ postInstall = ''
+ # Move turbogit binary to tug
+ ln -s $out/bin/turbogit $out/bin/tug
+
+ # Generate completion files
+ mkdir -p share/completions
+ $out/bin/tug completion bash > share/completions/tug.bash
+ $out/bin/tug completion fish > share/completions/tug.fish
+ $out/bin/tug completion zsh > share/completions/tug.zsh
+
+ installShellCompletion share/completions/tug.{bash,fish,zsh}
+ '';
+
+ meta = with lib; {
+ description = "Keep your git workflow clean without headache.";
+ longDescription = ''
+ turbogit (tug) is a cli tool built to help you deal with your day-to-day git work.
+ turbogit enforces convention (e.g. The Conventional Commits) but tries to keep things simple and invisible for you.
+ turbogit is your friend.
+ '';
+ homepage = "https://b4nst.github.io/turbogit";
+ license = licenses.mit;
+ maintainers = [ maintainers.yusdacra ];
+ };
+}
diff --git a/pkgs/development/web/nodejs/v10.nix b/pkgs/development/web/nodejs/v10.nix
index a1df5ddd741e..fa383e8f0c33 100644
--- a/pkgs/development/web/nodejs/v10.nix
+++ b/pkgs/development/web/nodejs/v10.nix
@@ -8,7 +8,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "10.23.0";
- sha256 = "07vlqr0493a569i0npwgkxk5wa4vc7j68jsivchg08y2slwn0dgx";
+ version = "10.23.1";
+ sha256 = "1ypddif8jc8qrw9n1f8zbpknjcbnjc9xhpm57hc5nqbrmzsidal8";
patches = stdenv.lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
}
diff --git a/pkgs/development/web/nodejs/v12.nix b/pkgs/development/web/nodejs/v12.nix
index 184585f12d43..ab082612c9d4 100644
--- a/pkgs/development/web/nodejs/v12.nix
+++ b/pkgs/development/web/nodejs/v12.nix
@@ -8,7 +8,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "12.20.0";
- sha256 = "12s2vjrlhgap2r12s7rqf0r2wzh9q2r5dkh3ak9fhrgmk9fgvqv1";
+ version = "12.20.1";
+ sha256 = "0lqq6a2byw4qmig98j45gqnl0593xdhx1dr9k7x2nnvhblrfw3p0";
patches = stdenv.lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
}
diff --git a/pkgs/development/web/nodejs/v14.nix b/pkgs/development/web/nodejs/v14.nix
index 14833bb042f4..64439688c166 100644
--- a/pkgs/development/web/nodejs/v14.nix
+++ b/pkgs/development/web/nodejs/v14.nix
@@ -8,7 +8,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "14.15.3";
- sha256 = "1zplrfhsrqblvq2wxf5386wc9hf11k42jaw4mzgwy5dxx6dv3krj";
+ version = "14.15.4";
+ sha256 = "177cxp4fhmglyx035j8smiy1bp5fz6q2phlcl0a2mdbldkvfrdxd";
patches = stdenv.lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
}
diff --git a/pkgs/development/web/nodejs/v15.nix b/pkgs/development/web/nodejs/v15.nix
index 3569ad3a1024..8687336c138d 100644
--- a/pkgs/development/web/nodejs/v15.nix
+++ b/pkgs/development/web/nodejs/v15.nix
@@ -8,6 +8,6 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "15.5.0";
- sha256 = "1wzcypb1kawc6m5q36cd31qjg7ljby8py9qg555m4bqm5gpvvfjg";
+ version = "15.5.1";
+ sha256 = "0qbb4dwgsy1a82ihjxl6r8bj7mwjzb21s720y1rahisd5p69l8ic";
}
diff --git a/pkgs/development/web/woff2/default.nix b/pkgs/development/web/woff2/default.nix
index d770fb627536..aadeb3cd0437 100644
--- a/pkgs/development/web/woff2/default.nix
+++ b/pkgs/development/web/woff2/default.nix
@@ -1,4 +1,6 @@
-{ brotli, cmake, pkgconfig, fetchFromGitHub, stdenv, static ? false }:
+{ brotli, cmake, pkgconfig, fetchFromGitHub, stdenv
+, static ? stdenv.hostPlatform.isStatic
+}:
stdenv.mkDerivation rec {
pname = "woff2";
diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix
index 0d713b1f71e1..af4e819eedab 100644
--- a/pkgs/games/anki/default.nix
+++ b/pkgs/games/anki/default.nix
@@ -196,6 +196,6 @@ buildPythonApplication rec {
license = licenses.agpl3Plus;
broken = stdenv.hostPlatform.isAarch64;
platforms = platforms.mesaPlatforms;
- maintainers = with maintainers; [ oxij Profpatsch enzime ];
+ maintainers = with maintainers; [ oxij Profpatsch ];
};
}
diff --git a/pkgs/games/chiaki/default.nix b/pkgs/games/chiaki/default.nix
index a65dce6bda4a..23ea59d8e758 100644
--- a/pkgs/games/chiaki/default.nix
+++ b/pkgs/games/chiaki/default.nix
@@ -6,6 +6,7 @@
, python3Packages
, ffmpeg
, libopus
+, mkDerivation
, qtbase
, qtmultimedia
, qtsvg
@@ -15,7 +16,7 @@
, qtmacextras
}:
-stdenv.mkDerivation rec {
+mkDerivation rec {
pname = "chiaki";
version = "2.0.1";
diff --git a/pkgs/games/endless-sky/default.nix b/pkgs/games/endless-sky/default.nix
index 76ab6542a7f3..cfcbcde6efd1 100644
--- a/pkgs/games/endless-sky/default.nix
+++ b/pkgs/games/endless-sky/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub
+{ stdenv, fetchFromGitHub, fetchpatch
, SDL2, libpng, libjpeg, glew, openal, scons, libmad
}:
@@ -17,6 +17,15 @@ stdenv.mkDerivation {
sha256 = "1hly68ljm7yv01jfxyr7g6jivhj0igg6xx7vi92zqymick0hlh7a";
};
+ patches = [
+ (fetchpatch {
+ name = "endless-sky-gcc10.patch";
+ url = "https://github.com/endless-sky/endless-sky/commit/bc3cab5992694547f9c6c067b5579ef06224781b.patch";
+ sha256 = "0v3913jyzhh1d81dxv738kcd3xhh7mrl06qnmj7a3ya2xd9pq4dk";
+ })
+ ./fixes.patch
+ ];
+
enableParallelBuilding = true;
buildInputs = [
@@ -25,10 +34,6 @@ stdenv.mkDerivation {
prefixKey = "PREFIX=";
- patches = [
- ./fixes.patch
- ];
-
meta = with stdenv.lib; {
description = "A sandbox-style space exploration game similar to Elite, Escape Velocity, or Star Control";
homepage = "https://endless-sky.github.io/";
diff --git a/pkgs/games/factorio/versions.json b/pkgs/games/factorio/versions.json
index b4c905450355..840913550f77 100644
--- a/pkgs/games/factorio/versions.json
+++ b/pkgs/games/factorio/versions.json
@@ -2,12 +2,12 @@
"x86_64-linux": {
"alpha": {
"experimental": {
- "name": "factorio_alpha_x64-1.1.5.tar.xz",
+ "name": "factorio_alpha_x64-1.1.7.tar.xz",
"needsAuth": true,
- "sha256": "17hm62mhldms41wv0vv2bzg8zg1mg7ga61h3yzw9dfvic661khmp",
+ "sha256": "0wqrs5w5giybq47hfv5wwg7c36351kfsa5x06nvxls2znyl43qv8",
"tarDirectory": "x64",
- "url": "https://factorio.com/get-download/1.1.5/alpha/linux64",
- "version": "1.1.5"
+ "url": "https://factorio.com/get-download/1.1.7/alpha/linux64",
+ "version": "1.1.7"
},
"stable": {
"name": "factorio_alpha_x64-1.0.0.tar.xz",
@@ -38,12 +38,12 @@
},
"headless": {
"experimental": {
- "name": "factorio_headless_x64-1.1.5.tar.xz",
+ "name": "factorio_headless_x64-1.1.7.tar.xz",
"needsAuth": false,
- "sha256": "1s4ajj8kkz1q5rivv2q6c8ii73nxa11g4fs6hic3r43l52n89ml1",
+ "sha256": "1s52p6cvd2v0pmj4gppc2pf8r6bpbzkmwpw8451j3ic58fhjvypr",
"tarDirectory": "x64",
- "url": "https://factorio.com/get-download/1.1.5/headless/linux64",
- "version": "1.1.5"
+ "url": "https://factorio.com/get-download/1.1.7/headless/linux64",
+ "version": "1.1.7"
},
"stable": {
"name": "factorio_headless_x64-1.0.0.tar.xz",
diff --git a/pkgs/games/katago/default.nix b/pkgs/games/katago/default.nix
index 4c63ab09bed2..a9ac9e8ac598 100644
--- a/pkgs/games/katago/default.nix
+++ b/pkgs/games/katago/default.nix
@@ -14,11 +14,12 @@
, ocl-icd ? null
, gperftools ? null
, eigen ? null
-, enableAVX2 ? false
+, enableAVX2 ? stdenv.hostPlatform.avx2Support
, enableBigBoards ? false
, enableCuda ? false
, enableGPU ? true
-, enableTcmalloc ? true}:
+, enableTcmalloc ? true
+}:
assert !enableGPU -> (
eigen != null &&
diff --git a/pkgs/games/mindustry/default.nix b/pkgs/games/mindustry/default.nix
index 6104ac5635c6..731a63f90f93 100644
--- a/pkgs/games/mindustry/default.nix
+++ b/pkgs/games/mindustry/default.nix
@@ -3,7 +3,7 @@
, makeDesktopItem
, fetchFromGitHub
, gradleGen
-, jdk14
+, jdk
, perl
, jre
, alsaLib
@@ -58,7 +58,7 @@ let
'';
# The default one still uses jdk8 (#89731)
- gradle_6 = (gradleGen.override (old: { java = jdk14; })).gradle_6_7;
+ gradle_6 = (gradleGen.override (old: { java = jdk; })).gradle_6_7;
# fake build to pre-download deps into fixed-output derivation
deps = stdenv.mkDerivation {
diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix
index b740f5091fa7..b29463d61ddf 100644
--- a/pkgs/misc/drivers/hplip/default.nix
+++ b/pkgs/misc/drivers/hplip/default.nix
@@ -2,7 +2,7 @@
, pkgconfig
, cups, zlib, libjpeg, libusb1, python3Packages, sane-backends
, dbus, file, ghostscript, usbutils
-, net-snmp, openssl, perl, nettools
+, net-snmp, openssl, perl, nettools, avahi
, bash, coreutils, util-linux
# To remove references to gcc-unwrapped
, removeReferencesTo, qt5
@@ -13,17 +13,17 @@
let
- name = "hplip-${version}";
- version = "3.20.5";
+ pname = "hplip";
+ version = "3.20.11";
src = fetchurl {
- url = "mirror://sourceforge/hplip/${name}.tar.gz";
- sha256 = "004bbd78487b7803cdcf2a96b00de938797227068c4de43ee7ad7d174c4e475a";
+ url = "mirror://sourceforge/hplip/${pname}-${version}.tar.gz";
+ sha256 = "CxZ1s9jnCaEyX+hj9arOO9NxB3mnPq6Gj3su6aVv2xE=";
};
plugin = fetchurl {
- url = "https://developers.hp.com/sites/default/files/${name}-plugin.run";
- sha256 = "ff3dedda3158be64b985efbf636890ddda5b271ae1f1fbd788219e1344a9c2e7";
+ url = "https://developers.hp.com/sites/default/files/${pname}-${version}-plugin.run";
+ sha256 = "r8PoQQFfjdHKySPCFwtDR8Tl6v5Eag9gXpBAp6sCF9Q=";
};
hplipState = substituteAll {
@@ -50,7 +50,7 @@ assert withPlugin -> builtins.elem hplipArch pluginArches
|| throw "HPLIP plugin not supported on ${stdenv.hostPlatform.system}";
python3Packages.buildPythonApplication {
- inherit name src;
+ inherit pname version src;
format = "other";
buildInputs = [
@@ -65,6 +65,7 @@ python3Packages.buildPythonApplication {
openssl
perl
zlib
+ avahi
];
nativeBuildInputs = [
diff --git a/pkgs/misc/drivers/steamcontroller/default.nix b/pkgs/misc/drivers/steamcontroller/default.nix
index ca5607b53072..4877886d500d 100644
--- a/pkgs/misc/drivers/steamcontroller/default.nix
+++ b/pkgs/misc/drivers/steamcontroller/default.nix
@@ -21,10 +21,12 @@ buildPythonApplication {
'';
buildInputs = [ libusb1 ];
- propagatedBuildInputs =
- [ psutil python3Packages.libusb1 ]
+ propagatedBuildInputs = [ psutil python3Packages.libusb1 ]
++ lib.optionals GyroplotSupport [ pyqtgraph pyside ];
+ doCheck = false;
+ pythonImportsCheck = [ "steamcontroller" ];
+
meta = with stdenv.lib; {
description = "A standalone Steam controller driver";
homepage = "https://github.com/ynsta/steamcontroller";
diff --git a/pkgs/misc/seafile-shared/default.nix b/pkgs/misc/seafile-shared/default.nix
index 385f2f3cc133..0d911cd35c1e 100644
--- a/pkgs/misc/seafile-shared/default.nix
+++ b/pkgs/misc/seafile-shared/default.nix
@@ -1,22 +1,38 @@
-{stdenv, fetchFromGitHub, which, autoreconfHook, pkgconfig, vala, python2, curl, libevent, glib, libsearpc, sqlite, intltool, fuse, libuuid }:
+{ stdenv
+, fetchFromGitHub
+, autoreconfHook
+, ccnet
+, curl
+, fuse
+, glib
+, intltool
+, libevent
+, libsearpc
+, libuuid
+, pkg-config
+, python3
+, sqlite
+, vala
+, which
+}:
stdenv.mkDerivation rec {
pname = "seafile-shared";
- version = "7.0.10";
+ version = "8.0.1";
src = fetchFromGitHub {
owner = "haiwen";
repo = "seafile";
- rev = "v${version}";
- sha256 = "0b3297cbagi9x8dnw2gjifmb8dk6vyhg6vfrfsanm1wyx8pgw2jg";
+ rev = "d34499a2aafa024623a4210fe7f663cef13fe9a6";
+ sha256 = "VKoGr3CTDFg3Q0X+MTlwa4BbfLB+28FeTyTJRCq37RA=";
};
nativeBuildInputs = [
autoreconfHook
vala
- pkgconfig
- python2
- python2.pkgs.wrapPython
+ pkg-config
+ python3
+ python3.pkgs.wrapPython
];
buildInputs = [
@@ -30,10 +46,10 @@ stdenv.mkDerivation rec {
configureFlags = [
"--disable-server"
"--disable-console"
+ "--with-python3"
];
- pythonPath = with python2.pkgs; [
- future
+ pythonPath = with python3.pkgs; [
libsearpc
];
diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix
index 33bff019536c..e41427d89e59 100644
--- a/pkgs/misc/tmux-plugins/default.nix
+++ b/pkgs/misc/tmux-plugins/default.nix
@@ -290,6 +290,7 @@ in rec {
onedark-theme = mkDerivation {
pluginName = "onedark-theme";
+ rtpFilePath = "tmux-onedark-theme.tmux";
version = "unstable-2020-06-07";
src = fetchFromGitHub {
owner = "odedlaz";
diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix
index 6e2d0be5a5a9..4f24e88ca9e6 100644
--- a/pkgs/misc/vim-plugins/generated.nix
+++ b/pkgs/misc/vim-plugins/generated.nix
@@ -65,12 +65,12 @@ let
ale = buildVimPluginFrom2Nix {
pname = "ale";
- version = "2020-12-28";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "dense-analysis";
repo = "ale";
- rev = "7fca451cf9a3068efe5e93fcc4b5494d939245fb";
- sha256 = "0428dj8gk781p9mns3q2lhhfmcsav8z3d79ggyb3ldsjnmsc1lds";
+ rev = "7e4c125d38181a0e0d0c7883091e2fe683243ce4";
+ sha256 = "0ngmcdbsqxjc00c1jab0h3dic5q1l781bhih30m5xx8qylqhf4g2";
};
meta.homepage = "https://github.com/dense-analysis/ale/";
};
@@ -209,12 +209,12 @@ let
awesome-vim-colorschemes = buildVimPluginFrom2Nix {
pname = "awesome-vim-colorschemes";
- version = "2020-12-26";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "rafi";
repo = "awesome-vim-colorschemes";
- rev = "e006f28803c4f4f3e69e792ea347ef51623dd442";
- sha256 = "1brsi5xrcza3wp7nkypqkk0imvb2cw0xpzg90llc504h62z5lbic";
+ rev = "ae48abdd39e24e187dac904c14caf6458b76838c";
+ sha256 = "12a31l2ggzihl1m1bjgmpmvw8zlqgvql01ryz1zrrhwmgzk8jk1h";
};
meta.homepage = "https://github.com/rafi/awesome-vim-colorschemes/";
};
@@ -293,12 +293,12 @@ let
brainfuck-vim = buildVimPluginFrom2Nix {
pname = "brainfuck-vim";
- version = "2020-12-31";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "fruit-in";
repo = "brainfuck-vim";
- rev = "2e5480e654221677dbf4652d2dd6d0cd6278a449";
- sha256 = "1ki6gv6v2pff1azif753b80yy48wx9k8knm2maw9bl333563hpm9";
+ rev = "4b85810e1e826dcbb9a38122d4c52e85e470e81a";
+ sha256 = "1q25w1v7kimq0cnjk8afy8ackfshhs25ra8w11l7qra3lrxkwj9b";
};
meta.homepage = "https://github.com/fruit-in/brainfuck-vim/";
};
@@ -449,12 +449,12 @@ let
coc-explorer = buildVimPluginFrom2Nix {
pname = "coc-explorer";
- version = "2020-12-30";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "weirongxu";
repo = "coc-explorer";
- rev = "5c6532d7d3cfe8321df79c82fc47a1bb7145913d";
- sha256 = "1zhhrmjngz50wsw3qqfwfdimbxbczk13pznhhrfsjxg85kk47ahc";
+ rev = "1b88de2322b2f9adad4d5c1739289ed861afc8d0";
+ sha256 = "1xcc2zdgkc72vvnl83c97cyx12mx93ryik9wlyw48clsi02kw6aq";
};
meta.homepage = "https://github.com/weirongxu/coc-explorer/";
};
@@ -497,12 +497,12 @@ let
coc-nvim = buildVimPluginFrom2Nix {
pname = "coc-nvim";
- version = "2020-12-30";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc.nvim";
- rev = "48279de173f6b4accd3aba07cffeb297b7f40f65";
- sha256 = "0fj1l0ckd4sx2jcwpmyj880ay59grrhs8kic0b3ghi7xaj4r4n66";
+ rev = "5b4b18d2ed2b18870034c7ee853164e1274ab158";
+ sha256 = "0bgprss79nbwc3wd8yi0j90prxmh8saxswfpvpp3x8hilvwiyrrq";
};
meta.homepage = "https://github.com/neoclide/coc.nvim/";
};
@@ -582,12 +582,12 @@ let
completion-nvim = buildVimPluginFrom2Nix {
pname = "completion-nvim";
- version = "2020-12-31";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "nvim-lua";
repo = "completion-nvim";
- rev = "6b9db5df1bfc33ed3cad6200980949a3d9c89eca";
- sha256 = "1fnh1399abyfc4r3wzaxh3npjp3dy9jz0hri78v84qqkmymkl9k6";
+ rev = "a31127e97feaef9ef70499b1241d41579d42dba2";
+ sha256 = "17q5z9rkc64yx2fifna6wsw43iinjfwbijmfjlxxkhgwmlg5y9cx";
};
meta.homepage = "https://github.com/nvim-lua/completion-nvim/";
};
@@ -630,12 +630,12 @@ let
conjure = buildVimPluginFrom2Nix {
pname = "conjure";
- version = "2020-12-30";
+ version = "2021-01-03";
src = fetchFromGitHub {
owner = "Olical";
repo = "conjure";
- rev = "ae460466a9343fbf07bdd36b61966693eea8aa6f";
- sha256 = "049gwdwwzk484akhia8b60g8c4xlnyd9nz3q11nwqa4xs5x9zhws";
+ rev = "e966ef58720fa0a2739aa33e9307809925b36597";
+ sha256 = "1baf3r6fmdwn1pbn5sfrrmzi4dxp9a298bajr4sqds05avk4z2dc";
};
meta.homepage = "https://github.com/Olical/conjure/";
};
@@ -654,12 +654,12 @@ let
Coqtail = buildVimPluginFrom2Nix {
pname = "Coqtail";
- version = "2020-12-30";
+ version = "2021-01-03";
src = fetchFromGitHub {
owner = "whonore";
repo = "Coqtail";
- rev = "617b38a2ceda860a89ef27f78bcb12111319c54f";
- sha256 = "0sgkych6w6bdby11zprd2v9wqywwi7pi03sb67dr7qrag9hpk15a";
+ rev = "8c3cced82a5ea8051fbbe2ade25fac557ca976f0";
+ sha256 = "1ayzpwc9bi6x5l5yhmhlfqifizpya9z57f0qdm64diwqvr8lvyb2";
};
meta.homepage = "https://github.com/whonore/Coqtail/";
};
@@ -774,12 +774,12 @@ let
defx-git = buildVimPluginFrom2Nix {
pname = "defx-git";
- version = "2020-12-17";
+ version = "2021-01-01";
src = fetchFromGitHub {
owner = "kristijanhusak";
repo = "defx-git";
- rev = "0f071acdcd1d4585ba0b8462ce66eafdee36f210";
- sha256 = "1lj3glxjqq9x256ckyn57q1xvw915wkyly0pb0kl9jda647s4gif";
+ rev = "324552fc652ed09e14a45485945b2e52eb04cbdc";
+ sha256 = "1imgzbyrpivk601z35wdr6lk0r9vwriy37l4a0c3cmmb87pxkzcf";
};
meta.homepage = "https://github.com/kristijanhusak/defx-git/";
};
@@ -798,12 +798,12 @@ let
defx-nvim = buildVimPluginFrom2Nix {
pname = "defx-nvim";
- version = "2020-12-28";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "Shougo";
repo = "defx.nvim";
- rev = "df165c33ecc5002553593884e309089faf7575bd";
- sha256 = "0zva29hs1xzgyqzhlplmvm63gzc2lj96fxpv4705vbkr0vv9j4hz";
+ rev = "f44e9486509482ae20c785d39be05581c3dbad15";
+ sha256 = "1s1qmn5v3ghy79da03pf805zdg8j5w0ybri3z36fr2y5s9k7mj4d";
};
meta.homepage = "https://github.com/Shougo/defx.nvim/";
};
@@ -858,12 +858,12 @@ let
deol-nvim = buildVimPluginFrom2Nix {
pname = "deol-nvim";
- version = "2020-12-30";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "Shougo";
repo = "deol.nvim";
- rev = "e1db73306d1fa2971f344588751ea739a8cea33d";
- sha256 = "0vxb50f8np30cin7d8ny77fmkvibzafqvwj1pf6596xsmqf7dkr5";
+ rev = "9582a7dc191f3569644092fb0d3b2ad7bf608bca";
+ sha256 = "0kpnzzg1pigjrw8g58iajw8apb7dczapm7jwdh8q5ixhmh31xn6v";
};
meta.homepage = "https://github.com/Shougo/deol.nvim/";
};
@@ -1292,6 +1292,18 @@ let
meta.homepage = "https://github.com/konfekt/fastfold/";
};
+ fern-vim = buildVimPluginFrom2Nix {
+ pname = "fern-vim";
+ version = "2021-01-04";
+ src = fetchFromGitHub {
+ owner = "lambdalisue";
+ repo = "fern.vim";
+ rev = "9783dff6ac69c4e99b78807b08912c4c34100e22";
+ sha256 = "141bifgf06bi43blw6wz7bdsb9l52iqxm9v7b609y49cz71z7n2c";
+ };
+ meta.homepage = "https://github.com/lambdalisue/fern.vim/";
+ };
+
ferret = buildVimPluginFrom2Nix {
pname = "ferret";
version = "2020-12-08";
@@ -1811,12 +1823,12 @@ let
jedi-vim = buildVimPluginFrom2Nix {
pname = "jedi-vim";
- version = "2020-12-26";
+ version = "2021-01-03";
src = fetchFromGitHub {
owner = "davidhalter";
repo = "jedi-vim";
- rev = "3a1c900a2629cba2f63ee2bc32611f8ce28c8bfb";
- sha256 = "1y4n3xvbxjxxapiw9b2rs8q4l65xwmx8djhfr21y97qj8205kcfd";
+ rev = "960eaa8053e5516195966321e06568750b2feb28";
+ sha256 = "1ap9h7a6ybv6yvvszizyhzmgjhxd5xzaw2f6x7wn8dcsk7isy0a5";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/davidhalter/jedi-vim/";
@@ -1944,12 +1956,12 @@ let
lean-vim = buildVimPluginFrom2Nix {
pname = "lean-vim";
- version = "2020-11-01";
+ version = "2021-01-02";
src = fetchFromGitHub {
owner = "leanprover";
repo = "lean.vim";
- rev = "d1b3037680be79f114a87620844117e20ca7efcf";
- sha256 = "0x3cz4is30jsrp7dym4rz4xngv9mimybl4kqnry9x0nkqzn55910";
+ rev = "313fd1e09e7a14352f87d44c82005b6e6316c9bc";
+ sha256 = "0f6jq0hliy4jignjc1d30bsvfkb4xl4nzj900hphbc7l2aw7scqr";
};
meta.homepage = "https://github.com/leanprover/lean.vim/";
};
@@ -2004,12 +2016,12 @@ let
lh-brackets = buildVimPluginFrom2Nix {
pname = "lh-brackets";
- version = "2020-12-30";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "LucHermitte";
repo = "lh-brackets";
- rev = "c9369d9289e18b3143288a9c55d0874d4635cf3a";
- sha256 = "0yxvwkw301v090bj5pfvd3d9axvznjm06c7asfnvaz7y4r9j8y0f";
+ rev = "7af393f8212759aaea2d2721855fb2f46345ba3e";
+ sha256 = "0wzd1q26bd6b6adaxn9vnr0xd2l8sk73av0b35ga3yv9kfr2j4qb";
};
meta.homepage = "https://github.com/LucHermitte/lh-brackets/";
};
@@ -2244,12 +2256,12 @@ let
ncm2-jedi = buildVimPluginFrom2Nix {
pname = "ncm2-jedi";
- version = "2020-08-06";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "ncm2";
repo = "ncm2-jedi";
- rev = "d378d3e80e15368c1714fd6c20dd461dc7db9796";
- sha256 = "0bphij55pjh87wcy0xk9yvgi0w3i0wvhbg71vddq0jn6m3r2gmlf";
+ rev = "f2e9007783b1f543b00d336a94210b4bc76b67e0";
+ sha256 = "1vrrz5zp39xk7c35dz737gfbr8j3yhqmmwmdwrxl5nibjwph4c30";
};
meta.homepage = "https://github.com/ncm2/ncm2-jedi/";
};
@@ -2700,12 +2712,12 @@ let
nvim-dap = buildVimPluginFrom2Nix {
pname = "nvim-dap";
- version = "2020-12-31";
+ version = "2021-01-01";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-dap";
- rev = "f908593bdcb2f2ce7d8225c08caf343b520a1dfe";
- sha256 = "1z78yvavpjs6776x0yr7h3yl4y7wbmm2bmbljsw2kkl8ybbvfdz1";
+ rev = "97f0ef219241ec8379feada8ab46c7da8c69f9ca";
+ sha256 = "10q0fdib4mcbih13f7wknfs99wjqf1flhrj13qwlw0p5sswjz0z3";
};
meta.homepage = "https://github.com/mfussenegger/nvim-dap/";
};
@@ -2724,24 +2736,24 @@ let
nvim-gdb = buildVimPluginFrom2Nix {
pname = "nvim-gdb";
- version = "2020-12-28";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "sakhnik";
repo = "nvim-gdb";
- rev = "5e88c14c2c3ff22b519c7b6a2ef1e35039268bd9";
- sha256 = "0hniyf1a8ihlyv9prg5h40vsh989i7ly7gnsna2sndxybg6zp56z";
+ rev = "1f899535a01ae9fb8c9ca8a6ccff651188fe78d3";
+ sha256 = "1gmyy5l5zy0j59z8rpyablav62zrss4312dpjfr8d6mcxmfa53wd";
};
meta.homepage = "https://github.com/sakhnik/nvim-gdb/";
};
nvim-highlite = buildVimPluginFrom2Nix {
pname = "nvim-highlite";
- version = "2020-12-30";
+ version = "2020-12-31";
src = fetchFromGitHub {
owner = "Iron-E";
repo = "nvim-highlite";
- rev = "495c76dfeaba222873063c536ce24e1b61b6ef68";
- sha256 = "1y9rasnxvwgb32a754sc6l2r05r9c99kq8yvl3q8ksc0npfj8whl";
+ rev = "2fb6dc1b2a702a2f7ddd3dedff04b7fdfe66d9be";
+ sha256 = "0sxyk1g82ycgx5mi21s1jyrqg3qd4cyjrzy6hbwil04kcadqkkc1";
};
meta.homepage = "https://github.com/Iron-E/nvim-highlite/";
};
@@ -2760,28 +2772,40 @@ let
nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig";
- version = "2020-12-30";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lspconfig";
- rev = "a043f8baab1be6fc35107c57b49b339d1e4d025d";
- sha256 = "1x8p02alwh3d6whm8kdzyi9cnb2yp673nws0wmlhxvqn2n6mjnnp";
+ rev = "384e512a640b2b18f3d2c3e9dcb6e870814ed1eb";
+ sha256 = "1fkmnkvpp27azi3g3iqkrhch0a4q6in16cp29zs0dvgrk7iv0cg1";
};
meta.homepage = "https://github.com/neovim/nvim-lspconfig/";
};
nvim-lsputils = buildVimPluginFrom2Nix {
pname = "nvim-lsputils";
- version = "2020-12-29";
+ version = "2020-12-31";
src = fetchFromGitHub {
owner = "RishabhRD";
repo = "nvim-lsputils";
- rev = "99f2d53e0c1d0bca83c98f4a3273d3d99d3cc14c";
- sha256 = "0d1jj96x96ln6l8zz70wj8qgjdx3y9327gv97yl5vap1jdqx44sn";
+ rev = "58cd320e966c2aed5a5ebf8544a310a2341ccd5c";
+ sha256 = "1iv5gxj2vx3w3nx335kn0pnin4ij9xwpid909rp9hlh48vkardjp";
};
meta.homepage = "https://github.com/RishabhRD/nvim-lsputils/";
};
+ nvim-scrollview = buildVimPluginFrom2Nix {
+ pname = "nvim-scrollview";
+ version = "2021-01-05";
+ src = fetchFromGitHub {
+ owner = "dstein64";
+ repo = "nvim-scrollview";
+ rev = "f729b1dd9077f8b1818752adc7416f357c057325";
+ sha256 = "0fdwgzn329y9mdrl98wl4aa14sh4l0my0kch5gszk5b9872zir69";
+ };
+ meta.homepage = "https://github.com/dstein64/nvim-scrollview/";
+ };
+
nvim-terminal-lua = buildVimPluginFrom2Nix {
pname = "nvim-terminal-lua";
version = "2019-10-17";
@@ -2808,12 +2832,12 @@ let
nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter";
- version = "2020-12-30";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter";
- rev = "57ba843d184e30339cff76869a0f5e60a467a047";
- sha256 = "0g2by0qq888dxf4z32gbwj084v1vpr93zxcw26pcd2s3rpp7dnvq";
+ rev = "f2c219cddcaf6d7237bdc957c84ef4cdb9072a89";
+ sha256 = "0b2a9rcbp647z620brcchw83dkdsar3d0j881dr0qcxxf496w9cz";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/";
};
@@ -2824,8 +2848,8 @@ let
src = fetchFromGitHub {
owner = "romgrk";
repo = "nvim-treesitter-context";
- rev = "8b124a6ec7a0fd7a3ab01eedc1de6a8f67345abf";
- sha256 = "0a8vfqxyyl2rqcv592zziq7vf9024ra0xy42sjkrga65m2aa4ql9";
+ rev = "a7773cc3c581fa43cf0b59693ecdc6fc4e79e748";
+ sha256 = "1mxm6b00jmnci4yvd3bs9njf73bjbdwcn10l5bw9180a511aggv1";
};
meta.homepage = "https://github.com/romgrk/nvim-treesitter-context/";
};
@@ -2844,12 +2868,12 @@ let
nvim-treesitter-textobjects = buildVimPluginFrom2Nix {
pname = "nvim-treesitter-textobjects";
- version = "2020-12-27";
+ version = "2021-01-01";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter-textobjects";
- rev = "36e6a52875fbd12245b0cf379be66aab404b50ac";
- sha256 = "10rxqm483z95xzlv14in2qssmlksr0j58mz0bbxnb6wbv2n7qzjh";
+ rev = "065b342db053810ac7a5ee9740b891cfa05c380f";
+ sha256 = "07yl5iin11snw2637860r9zva9yfn7qkljkv0sjfldm73afflds7";
};
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/";
};
@@ -3505,12 +3529,12 @@ let
Spacegray-vim = buildVimPluginFrom2Nix {
pname = "Spacegray-vim";
- version = "2020-12-23";
+ version = "2021-01-02";
src = fetchFromGitHub {
owner = "ackyshake";
repo = "Spacegray.vim";
- rev = "37203c8514d244532a8b17ee2be271c51ca3a7d9";
- sha256 = "1xf0apbdmw0f9v6rz6n363y9fafss33wsk7y5r33ssgbhw2spm9r";
+ rev = "012ff0065eac2c149084d59e1272ec0d740051ab";
+ sha256 = "0y0jlycgsc8ll5gnqmjc9blyn9ynnzrgnp280k49h4lh5b689y5m";
};
meta.homepage = "https://github.com/ackyshake/Spacegray.vim/";
};
@@ -3650,12 +3674,12 @@ let
syntastic = buildVimPluginFrom2Nix {
pname = "syntastic";
- version = "2020-11-06";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "vim-syntastic";
repo = "syntastic";
- rev = "63741646a9e87bbe105674747555aded6f52c490";
- sha256 = "0x1rn76zjig4kdbs719fcpc22mbh2jz93ni8zpzpkn8r186f05s5";
+ rev = "d97a664b9adbd1a0a9cba6c1c3baf071a1059d1e";
+ sha256 = "1azranlzdm1w98ifmczp1zx1w66yrpdi9h3k05v126rwaqkd6bsj";
};
meta.homepage = "https://github.com/vim-syntastic/syntastic/";
};
@@ -3746,12 +3770,12 @@ let
telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope-nvim";
- version = "2020-12-31";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope.nvim";
- rev = "686d560fa50e130801d5bd64493d79f1c65e3f7c";
- sha256 = "0mfvflmy5mhiyqlssbq0g1a4gk91xkf2lnm29qhf4f5hamprk6pk";
+ rev = "f750159203077b00cecdd9f68c254aa70d10f879";
+ sha256 = "01m5ydj56y87b05ppaxr1697f2ncbm28w6njvd3gh0z3nhdmd69n";
};
meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/";
};
@@ -4239,12 +4263,12 @@ let
vim-airline = buildVimPluginFrom2Nix {
pname = "vim-airline";
- version = "2020-12-30";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "vim-airline";
repo = "vim-airline";
- rev = "17bf22e6fb4f8492c95b96538283413bd3c1175a";
- sha256 = "1br9qqwmsfff4kz7yyc9rzf1bk610j766qh1kmifjc52fqrc9nfr";
+ rev = "30bcbb07c3d08703cc26a918b78251e636d7b1fe";
+ sha256 = "0qcg01br8sb67hmsvkg37kahnzz3m3vgs5pivvfypl98a1lgpszm";
};
meta.homepage = "https://github.com/vim-airline/vim-airline/";
};
@@ -4467,12 +4491,12 @@ let
vim-clap = buildVimPluginFrom2Nix {
pname = "vim-clap";
- version = "2020-12-16";
+ version = "2021-01-01";
src = fetchFromGitHub {
owner = "liuchengxu";
repo = "vim-clap";
- rev = "af939a85cc78c9974dcf202a95ff8793755d575d";
- sha256 = "1kcnj0jqbag62gvxrr54hmri5qpskfs0i0l2m8z4ffliixy0mkan";
+ rev = "b9ca65dbcc89dfb2702fb2ab0e98c7119f4e6bbf";
+ sha256 = "0j9xh0yf224fsnm9ksml9m8jfx4m9iji0a6h8q0mk8zglvh6qksc";
};
meta.homepage = "https://github.com/liuchengxu/vim-clap/";
};
@@ -4726,7 +4750,7 @@ let
rev = "d8b545ef138a9ff013f8243f85c79b277b26f5e1";
sha256 = "0c1bxryw4rg4cyql7vfp2gwhkl2d0b8inc6shmgfy7jg4svhzs0w";
};
- meta.homepage = "https://github.com/Konfekt/vim-DetectSpellLang/";
+ meta.homepage = "https://github.com/konfekt/vim-DetectSpellLang/";
};
vim-devicons = buildVimPluginFrom2Nix {
@@ -5043,12 +5067,12 @@ let
vim-floaterm = buildVimPluginFrom2Nix {
pname = "vim-floaterm";
- version = "2020-12-18";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "voldikss";
repo = "vim-floaterm";
- rev = "74d33de5d47923fdd6a3ffc6b71a2d364c5e0103";
- sha256 = "1g654zpw1spsq5nxmymbqk0xv9ql023frahd82isf0rpkykqarcq";
+ rev = "e8f65534e607d8bd82ba2c4a8ada1adc6cb36c96";
+ sha256 = "010zr13y3016zfd6fqmknqg1ld19n9isfbgwl8hqgfrgjh9mn9p3";
};
meta.homepage = "https://github.com/voldikss/vim-floaterm/";
};
@@ -5187,7 +5211,7 @@ let
vim-gnupg = buildVimPluginFrom2Nix {
pname = "vim-gnupg";
- version = "2021-01-03";
+ version = "2020-11-11";
src = fetchFromGitHub {
owner = "jamessan";
repo = "vim-gnupg";
@@ -5199,12 +5223,12 @@ let
vim-go = buildVimPluginFrom2Nix {
pname = "vim-go";
- version = "2020-12-27";
+ version = "2021-01-03";
src = fetchFromGitHub {
owner = "fatih";
repo = "vim-go";
- rev = "9d676ce4128fec22da44b9a5e1eead994f8941e6";
- sha256 = "0a61dkxr4kwcbnnkvz21zihsa458fkn31i962a7xjx332lfrpymz";
+ rev = "706c73bb369d9bab0fadca6b755a7244626f61aa";
+ sha256 = "07rbrk1qah16mi1f7dkp6ixi2kwgimgms23pfqiqjfrqgk304b6d";
};
meta.homepage = "https://github.com/fatih/vim-go/";
};
@@ -5323,8 +5347,8 @@ let
src = fetchFromGitHub {
owner = "RRethy";
repo = "vim-hexokinase";
- rev = "3b432fb273e9b9312592cd37204c886715f0f780";
- sha256 = "0jq703xhlc0sla2aaiqxmj488zmcy7fn5s1a7bxaafljhh6yww15";
+ rev = "a7468f62a70d1da85b3fbe7f540a6dbd7a199536";
+ sha256 = "1vx48gq0skjmcjrxc8qkvjbqdsap50jrh1gyiqmm9s9rqxzsi4hs";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/RRethy/vim-hexokinase/";
@@ -5452,12 +5476,12 @@ let
vim-illuminate = buildVimPluginFrom2Nix {
pname = "vim-illuminate";
- version = "2020-12-30";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "RRethy";
repo = "vim-illuminate";
- rev = "6d4a062345a471f0af2cbe4024d1a0e69fb40da3";
- sha256 = "0n10r2jg0qy0lfanvl605pxgmnqx1s8y4qikr2idjwcv9xpf3sj7";
+ rev = "f52857989c14c2f27d72ffa78d6af906fa436cd1";
+ sha256 = "1sbb3nkd3n3y9r5gs03lmwrmra7j8w8450q444g7b3h5hhx4b92l";
};
meta.homepage = "https://github.com/RRethy/vim-illuminate/";
};
@@ -5548,12 +5572,12 @@ let
vim-javacomplete2 = buildVimPluginFrom2Nix {
pname = "vim-javacomplete2";
- version = "2020-12-29";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "artur-shaik";
repo = "vim-javacomplete2";
- rev = "91592a3613600f65c6985211894fb65f28f389c7";
- sha256 = "1rl6jsc54nkh0jdaxa132qz9sp506wzq5dc7iqnr9ndhyzz8m2n0";
+ rev = "c59ac683bd2fd6164e8ab772ab16c1f4c82130a5";
+ sha256 = "04mk200wbgg007qm3qxzckcz1nxrmvr6da31bf82ilzjf5vwhr52";
};
meta.homepage = "https://github.com/artur-shaik/vim-javacomplete2/";
};
@@ -5825,24 +5849,24 @@ let
vim-lsc = buildVimPluginFrom2Nix {
pname = "vim-lsc";
- version = "2020-12-30";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "natebosch";
repo = "vim-lsc";
- rev = "161e875c388e7b584fabf06539ec81df25bb2c0b";
- sha256 = "0zsm1kvi3j1m1hbis4cjhn8ny8m0z5iwga5zpk692na2nydxlhi6";
+ rev = "9f914a4859d911d8a152ff828ad093198fee8763";
+ sha256 = "0xvzwnfmgix6cz3xzzl9v9aslassnp6jkjpv5q2qngfrf33z8j9j";
};
meta.homepage = "https://github.com/natebosch/vim-lsc/";
};
vim-lsp = buildVimPluginFrom2Nix {
pname = "vim-lsp";
- version = "2020-12-31";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "prabirshrestha";
repo = "vim-lsp";
- rev = "5743ae2110563b6c75ccf4c481c36096f2a4265a";
- sha256 = "0464wfcf3rwgz32mq28i41r9v7sk39p16jgyid1hiab2bmw0s60b";
+ rev = "87cd0e6137e0ebb1c0b451c20ba39f14e1a95f60";
+ sha256 = "0j1948ns6kwhfazcsvpy61w0a1dbpcy6hhvs54v6kil8ffgdcmh6";
};
meta.homepage = "https://github.com/prabirshrestha/vim-lsp/";
};
@@ -6162,12 +6186,12 @@ let
vim-ocaml = buildVimPluginFrom2Nix {
pname = "vim-ocaml";
- version = "2020-10-11";
+ version = "2021-01-01";
src = fetchFromGitHub {
owner = "ocaml";
repo = "vim-ocaml";
- rev = "023a2a464e7a096779d3e541ee7d1dbe61148f6a";
- sha256 = "0wj945n3da9bzcj5n8002m4vrzv9cgk6sqcc7nyc1x34y9452z94";
+ rev = "2a18135901b312e5159f30e26786d657919281a4";
+ sha256 = "00xyj3bzd76cdc60wiw42b4d35nlxshr9xh4n4c6jf1wavm1clfj";
};
meta.homepage = "https://github.com/ocaml/vim-ocaml/";
};
@@ -6244,6 +6268,18 @@ let
meta.homepage = "https://github.com/fcpg/vim-osc52/";
};
+ vim-oscyank = buildVimPluginFrom2Nix {
+ pname = "vim-oscyank";
+ version = "2021-01-05";
+ src = fetchFromGitHub {
+ owner = "ojroques";
+ repo = "vim-oscyank";
+ rev = "755561cd3e4532009dc75c997f8cb0e5f50c9ed7";
+ sha256 = "18vgmmnds5zfnn1v285g4s0yq7zpj9nwkdm1l5rcnx986rdrbgyw";
+ };
+ meta.homepage = "https://github.com/ojroques/vim-oscyank/";
+ };
+
vim-over = buildVimPluginFrom2Nix {
pname = "vim-over";
version = "2020-01-26";
@@ -6342,12 +6378,12 @@ let
vim-pathogen = buildVimPluginFrom2Nix {
pname = "vim-pathogen";
- version = "2020-01-17";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-pathogen";
- rev = "c6bc42404597c718e4a032a98e21e63321cbb05a";
- sha256 = "1scj84vlrn2kavnq2wabhdzhnlkb3w046grv9j3976i5ykjmyiif";
+ rev = "e0a3efbda5ea8e5b181b2b232ef6453c05d07732";
+ sha256 = "1b9v6k0560b7yf2l9v8n23bm27k3akycrv19wfi50havxdjagw1f";
};
meta.homepage = "https://github.com/tpope/vim-pathogen/";
};
@@ -6426,12 +6462,12 @@ let
vim-polyglot = buildVimPluginFrom2Nix {
pname = "vim-polyglot";
- version = "2020-12-30";
+ version = "2021-01-03";
src = fetchFromGitHub {
owner = "sheerun";
repo = "vim-polyglot";
- rev = "0626cc90a21dbd93806e431a4cff640d2d13c765";
- sha256 = "1kz8qj0cmpmvgglbf2201jwiv6kf0kshcxxhii0ipd8gs3rrrbvy";
+ rev = "7bde552a463999897320a1899a6ca4f8806041ea";
+ sha256 = "1rc9dfpl7x2fmqcm954x1syfcl392vsrcgid2pm6p91j3drm78nq";
};
meta.homepage = "https://github.com/sheerun/vim-polyglot/";
};
@@ -6930,12 +6966,12 @@ let
vim-snippets = buildVimPluginFrom2Nix {
pname = "vim-snippets";
- version = "2020-12-26";
+ version = "2021-01-04";
src = fetchFromGitHub {
owner = "honza";
repo = "vim-snippets";
- rev = "275bfd8d6aebabd1140b18656d1bda32ca076dbb";
- sha256 = "0g7nfvp9zqx1as4djajckl8aqv9931qhlnix1x8dnvqik9x4rny7";
+ rev = "6159e8e820656e4370d54ddbf11278bf92794139";
+ sha256 = "1kwdcx429kw39f8fsav3lcnahkbzbdmny1d81pq6c24k1r7hfp1h";
};
meta.homepage = "https://github.com/honza/vim-snippets/";
};
@@ -7147,12 +7183,12 @@ let
vim-test = buildVimPluginFrom2Nix {
pname = "vim-test";
- version = "2020-12-01";
+ version = "2021-01-03";
src = fetchFromGitHub {
owner = "vim-test";
repo = "vim-test";
- rev = "180c8ced850ed288bf7ce9c44c6b4451f995f275";
- sha256 = "0yza1lgilgg1qlpcw4kg5232mylbqjb0gar0l4rjxk6i7xvpxryi";
+ rev = "d170b48bd167ff06ac83d71834135f42bf4dad4a";
+ sha256 = "0pqh5zqn11fv0653zdkiad066clw29amhdqnm5nz1rcx8vmpparq";
};
meta.homepage = "https://github.com/vim-test/vim-test/";
};
@@ -7411,12 +7447,12 @@ let
vim-visual-multi = buildVimPluginFrom2Nix {
pname = "vim-visual-multi";
- version = "2020-12-31";
+ version = "2021-01-01";
src = fetchFromGitHub {
owner = "mg979";
repo = "vim-visual-multi";
- rev = "281907adcd5002010c7f5532fcf2099cb7c4347b";
- sha256 = "10ym95xx905k1hv08dxb4p7l605xhsaqymlwn0flrblrgz9xx6i5";
+ rev = "c27966b82e3ebf39278b53ae600c9763907937d9";
+ sha256 = "15246xx9qixgdw1wff4kka9vcpkirkdbz8j25zhicx3dqvqzzb4c";
};
meta.homepage = "https://github.com/mg979/vim-visual-multi/";
};
@@ -7435,12 +7471,12 @@ let
vim-vsnip = buildVimPluginFrom2Nix {
pname = "vim-vsnip";
- version = "2020-12-19";
+ version = "2021-01-05";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "vim-vsnip";
- rev = "98d98c6e9b7f9706285aea6a93118acccfaad092";
- sha256 = "16zxgqzlgra2c64qv998ipgjgwnq324rcwrkv3mrish8fyb7m8na";
+ rev = "879dc259bb3fbb850473982d64c441c16a4daa38";
+ sha256 = "103mws249r6rxg7mc28fv9avk60arn8jxspddvynd27srvzrbif8";
};
meta.homepage = "https://github.com/hrsh7th/vim-vsnip/";
};
@@ -7675,12 +7711,12 @@ let
vimsence = buildVimPluginFrom2Nix {
pname = "vimsence";
- version = "2020-11-02";
+ version = "2021-01-01";
src = fetchFromGitHub {
owner = "hugolgst";
repo = "vimsence";
- rev = "433875b4a994582a28795f8944af10d935b64322";
- sha256 = "117yxp3bzhrdi03r2d2zr1r2702czkxamdvgcxr62gysdgbz5i9z";
+ rev = "d135a75530d2ad4d034a5a2515136f043ffcecb2";
+ sha256 = "0v0qbqms513c4fcwa69d175ylkzb9n5i93gz1pqlcgnfmzdsfn22";
};
meta.homepage = "https://github.com/hugolgst/vimsence/";
};
@@ -7699,12 +7735,12 @@ let
vimspector = buildVimPluginFrom2Nix {
pname = "vimspector";
- version = "2020-12-23";
+ version = "2021-01-02";
src = fetchFromGitHub {
owner = "puremourning";
repo = "vimspector";
- rev = "41a98026fa0bc29be35fc8392e38b1caabab0a3a";
- sha256 = "14x6fmz7yy377zhgrmcv718bnqyh46c6rrb2f3ypfbbrk0nbd7k6";
+ rev = "65708f55e0a1186c76af9a5a1f14e9157cf588b9";
+ sha256 = "1m16i4s89q5ff9qi79qyq34184cfnfbglnfqxg6zsp8pb8kfpiix";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/puremourning/vimspector/";
@@ -7712,12 +7748,12 @@ let
vimtex = buildVimPluginFrom2Nix {
pname = "vimtex";
- version = "2020-12-30";
+ version = "2021-01-03";
src = fetchFromGitHub {
owner = "lervag";
repo = "vimtex";
- rev = "401bea84b863f34a04b227fa60d2f498d7c9b7fb";
- sha256 = "0ygss9dw64xiixdwhqhsn0y8dzlfl0gd0avjs075mkpzx5qfrsbx";
+ rev = "e5214dd3fe5b2b7f3092d43e58b430032dfebe40";
+ sha256 = "1vni0kyf9cglvsnwgi6nalygj291gb337rdmi0jn0i0x76h0g65p";
};
meta.homepage = "https://github.com/lervag/vimtex/";
};
@@ -7760,12 +7796,12 @@ let
vista-vim = buildVimPluginFrom2Nix {
pname = "vista-vim";
- version = "2020-12-27";
+ version = "2021-01-01";
src = fetchFromGitHub {
owner = "liuchengxu";
repo = "vista.vim";
- rev = "e292c3b75639f320e65009d19d0cdbeabacaee2a";
- sha256 = "1j7m4aiyb9dywh2yl8d4cfb108nn0ivdxmx196y8sq5s8gq279vw";
+ rev = "691fbce5fa1473c64035fba6e3c7b3876a99cb58";
+ sha256 = "0xx06s8syqs3a5b5711zgbjbzqz17pk66vzcazhq08bqgys21alr";
};
meta.homepage = "https://github.com/liuchengxu/vista.vim/";
};
@@ -7880,12 +7916,12 @@ let
yats-vim = buildVimPluginFrom2Nix {
pname = "yats-vim";
- version = "2020-12-06";
+ version = "2021-01-02";
src = fetchFromGitHub {
owner = "HerringtonDarkholme";
repo = "yats.vim";
- rev = "a488d15f535cddd2acc6c8b77c6c4381debcadbf";
- sha256 = "0rxv4hmpw0lcmp99kcgax4yll6m896d5vljv1hb7ycmz1q25ij52";
+ rev = "9039d2421b8fe4c70b743d2c28df935290026dca";
+ sha256 = "1yv46b041340jq4s0471w5l1ryikkczp09rsnxh0piyp7fqmb0qh";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/HerringtonDarkholme/yats.vim/";
@@ -7893,12 +7929,12 @@ let
YouCompleteMe = buildVimPluginFrom2Nix {
pname = "YouCompleteMe";
- version = "2020-12-16";
+ version = "2020-12-31";
src = fetchFromGitHub {
owner = "ycm-core";
repo = "YouCompleteMe";
- rev = "e252f6512f1f4a9a515dfc42401baf30a5fe72c8";
- sha256 = "0f0jrap8ivrywkzc7rwy27p6ssa5kll26df251ipsg1frmc7fmjm";
+ rev = "2434b104065be4590f07ad950d0943b7194f01e6";
+ sha256 = "0hhwqb5w84bi28h27wmisx4mb91xc6jbdh004d5994bl2098yrf8";
fetchSubmodules = true;
};
meta.homepage = "https://github.com/ycm-core/YouCompleteMe/";
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index b1846276276b..17d5dd925eb2 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -644,7 +644,7 @@ self: super: {
libiconv
];
- cargoSha256 = "QUi3GyAsakAtDQkiVA7ez05s5CixqsVSp92svYmcWdQ=";
+ cargoSha256 = "1738hvqzwr4h1bigsqffc6alkzvir8s6f7mr0xyp21qbf5qkxmq2";
};
in ''
ln -s ${maple-bin}/bin/maple $target/bin/maple
diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names
index 35ee65fb2f13..237f7faacf30 100644
--- a/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/pkgs/misc/vim-plugins/vim-plugin-names
@@ -91,6 +91,7 @@ dpelle/vim-LanguageTool
dracula/vim as dracula-vim
drewtempelmeyer/palenight.vim
drmingdrmer/xptemplate
+dstein64/nvim-scrollview@main
dylanaraps/wal.vim
eagletmt/ghcmod-vim
eagletmt/neco-ghc
@@ -257,6 +258,7 @@ kristijanhusak/vim-hybrid-material
kshenoy/vim-signature
kyazdani42/nvim-tree.lua
kyazdani42/nvim-web-devicons
+lambdalisue/fern.vim
lambdalisue/vim-gista
lambdalisue/vim-manpager
lambdalisue/vim-pager
@@ -401,7 +403,8 @@ nvim-treesitter/nvim-treesitter-textobjects
nvim-treesitter/playground
ocaml/vim-ocaml
octol/vim-cpp-enhanced-highlight
-Olical/conjure@main
+ojroques/vim-oscyank@main
+Olical/conjure
OrangeT/vim-csharp
osyo-manga/shabadou.vim
osyo-manga/vim-anzu
diff --git a/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json b/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
index ea91b6d6470e..aba4ba44097a 100644
--- a/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
+++ b/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
@@ -3,24 +3,24 @@
"version": "0.4.0-dev",
"dependencies": {
"node-fetch": "^2.6.1",
- "vscode-languageclient": "7.0.0-next.12",
- "@rollup/plugin-commonjs": "^13.0.2",
- "@rollup/plugin-node-resolve": "^8.4.0",
+ "vscode-languageclient": "7.0.0",
+ "@rollup/plugin-commonjs": "^17.0.0",
+ "@rollup/plugin-node-resolve": "^11.0.0",
"@types/glob": "^7.1.3",
- "@types/mocha": "^7.0.2",
- "@types/node": "~12.7.0",
+ "@types/mocha": "^8.0.4",
+ "@types/node": "~12.12.6",
"@types/node-fetch": "^2.5.7",
- "@types/vscode": "^1.47.1",
- "@typescript-eslint/eslint-plugin": "^3.10.1",
- "@typescript-eslint/parser": "^3.10.1",
- "eslint": "^7.8.0",
+ "@types/vscode": "^1.52.0",
+ "@typescript-eslint/eslint-plugin": "^4.9.0",
+ "@typescript-eslint/parser": "^4.9.0",
+ "eslint": "^7.15.0",
"glob": "^7.1.6",
- "mocha": "^8.1.3",
- "rollup": "^2.26.9",
- "tslib": "^2.0.1",
- "typescript": "^3.9.7",
+ "mocha": "^8.2.1",
+ "rollup": "^2.34.2",
+ "tslib": "^2.0.3",
+ "typescript": "^4.1.2",
"typescript-formatter": "^7.2.2",
- "vsce": "^1.79.5",
- "vscode-test": "^1.4.0"
+ "vsce": "^1.81.1",
+ "vscode-test": "^1.4.1"
}
}
diff --git a/pkgs/os-specific/linux/anbox/default.nix b/pkgs/os-specific/linux/anbox/default.nix
index f7182f24f81e..cf51681a1531 100644
--- a/pkgs/os-specific/linux/anbox/default.nix
+++ b/pkgs/os-specific/linux/anbox/default.nix
@@ -1,24 +1,28 @@
{ stdenv, fetchFromGitHub, fetchurl
, cmake, pkg-config, dbus, makeWrapper
-, gtest
, boost
+, elfutils # for libdw
+, git
+, glib
+, glm
+, gtest
+, libbfd
, libcap
-, systemd
-, mesa
+, libdwarf
, libGL
, libglvnd
-, glib
-, git
-, SDL2
-, SDL2_image
+, lxc
+, mesa
, properties-cpp
, protobuf
, protobufc
-, python
-, lxc
+, python3
+, runtimeShell
+, SDL2
+, SDL2_image
+, systemd
, writeText
, writeScript
-, runtimeShell
}:
let
@@ -45,13 +49,14 @@ in
stdenv.mkDerivation rec {
pname = "anbox";
- version = "unstable-2019-11-15";
+ version = "unstable-2020-11-29";
src = fetchFromGitHub {
owner = pname;
repo = pname;
- rev = "0a49ae08f76de7f886a3dbed4422711c2fa39d10";
- sha256 = "09l56nv9cnyhykclfmvam6bkcxlamwbql6nrz9n022553w92hkjf";
+ rev = "6c10125a7f13908d2cbe56d2d9ab09872755f265";
+ sha256 = "00bqssh4zcs0jj6w07b91719xkrpdw75vpcplwrvlhwsvl55f901";
+ fetchSubmodules = true;
};
nativeBuildInputs = [
@@ -61,13 +66,25 @@ stdenv.mkDerivation rec {
];
buildInputs = [
- dbus boost libcap gtest systemd mesa glib
- SDL2 SDL2_image protobuf protobufc properties-cpp lxc python
+ boost
+ dbus
+ elfutils # libdw
+ glib
+ glm
+ gtest
+ libbfd
+ libcap
+ libdwarf
libGL
+ lxc
+ mesa
+ properties-cpp
+ protobuf protobufc
+ python3
+ SDL2 SDL2_image
+ systemd
];
- NIX_CFLAGS_COMPILE = "-Wno-error=missing-field-initializers";
-
patchPhase = ''
patchShebangs scripts
diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix
index d37fa3c19144..6c559103f492 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
- version = "4.19.164";
+ version = "4.19.165";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1amafhydq934a04pizc5w4h4y4ny982zn33yrz7q0h2d6sskmyp5";
+ sha256 = "1l72wka1dli0jdb91sx4zr13vy0q5l6p37fh6hf093gjn14mdh51";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix
index abe28da81269..28f031431839 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.10.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix
@@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
- version = "5.10.4";
+ version = "5.10.5";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "1v2nbpp21c3fkw23dgrrfznnnlvi0538kj8wrlb2m6g94rn3jklh";
+ sha256 = "1x1fc4cywqnjm514q376d5540zsxmqv95n0lykaphz8qdbhsk49r";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix
index a5db9e7f6d1f..2fc1b6013c14 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
- version = "5.4.86";
+ version = "5.4.87";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "12qf7gza94s4f7smi3dk6i6hqcz0fbc64ghapan57fgpdvybadpb";
+ sha256 = "0cawb7md97i0hz83hf7l4ihn9lyrg8q64j8jam8n9fw45qzfjd3a";
};
} // (args.argsOverride or {}))
diff --git a/pkgs/os-specific/linux/kmod/default.nix b/pkgs/os-specific/linux/kmod/default.nix
index 805b8a32aedd..56fd4c353d92 100644
--- a/pkgs/os-specific/linux/kmod/default.nix
+++ b/pkgs/os-specific/linux/kmod/default.nix
@@ -1,6 +1,7 @@
{ stdenv, lib, fetchurl, autoreconfHook, pkgconfig
, libxslt, xz, elf-header
-, withStatic ? false }:
+, withStatic ? stdenv.hostPlatform.isStatic
+}:
let
systems = [ "/run/current-system/kernel-modules" "/run/booted-system/kernel-modules" "" ];
diff --git a/pkgs/servers/caddy/default.nix b/pkgs/servers/caddy/default.nix
index 1eb33dc32267..d50a94f9d66d 100644
--- a/pkgs/servers/caddy/default.nix
+++ b/pkgs/servers/caddy/default.nix
@@ -2,7 +2,7 @@
buildGoModule rec {
pname = "caddy";
- version = "2.2.1";
+ version = "2.3.0";
subPackages = [ "cmd/caddy" ];
@@ -10,10 +10,10 @@ buildGoModule rec {
owner = "caddyserver";
repo = pname;
rev = "v${version}";
- sha256 = "065kxnyapjk4r07qrr55zs5w72p8rb8mapq3dh9lr1y13b8sgka9";
+ sha256 = "03cbbr8z9g156lgx7pyn1p1i4mh8ayhhhv24r1z3h1vgq6y4ka7r";
};
- vendorSha256 = "1rm7v03v6rf9fdqrrl639z8a46cdzswjp8rdpygcsndqfznn5w7b";
+ vendorSha256 = "0gpzxjiyv7l1nibh1gas4mvinamiyyfgidd8cy4abz95v6z437lp";
passthru.tests = { inherit (nixosTests) caddy; };
diff --git a/pkgs/servers/gotify/source-sha.nix b/pkgs/servers/gotify/source-sha.nix
index 5e3531497d4e..7176070742d5 100644
--- a/pkgs/servers/gotify/source-sha.nix
+++ b/pkgs/servers/gotify/source-sha.nix
@@ -1 +1 @@
-"0d82girrhw9k68f5kcy8d0bl0bnsq651l4bb60xmqrilylp7qgmp"
+"1rb7gmkinp3nwdng3xw2nrim10iw374rwhzlviqgmz87djgajh3l"
diff --git a/pkgs/servers/gotify/version.nix b/pkgs/servers/gotify/version.nix
index 5783e8bd78f3..7dbc45290739 100644
--- a/pkgs/servers/gotify/version.nix
+++ b/pkgs/servers/gotify/version.nix
@@ -1 +1 @@
-"2.0.20"
+"2.0.21"
diff --git a/pkgs/servers/grocy/default.nix b/pkgs/servers/grocy/default.nix
index 2f2772505f6a..3fd7c1c4cf70 100644
--- a/pkgs/servers/grocy/default.nix
+++ b/pkgs/servers/grocy/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "grocy";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchurl {
url = "https://github.com/grocy/grocy/releases/download/v${version}/grocy_${version}.zip";
- sha256 = "sha256-O7DksfA95IHvLJyRrWG8iECcUUDsOtytd78koNZdQzE=";
+ sha256 = "sha256-Yjxv0LcLNtpYs4ntBano9NUxwdWgF5etA/M6hUVzOa8=";
};
nativeBuildInputs = [ unzip ];
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 855e52cdbd84..c60b80e5d7ae 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -64,7 +64,7 @@
"avion" = ps: with ps; [ ]; # missing inputs: avion
"avri" = ps: with ps; [ pycountry ]; # missing inputs: avri-api
"awair" = ps: with ps; [ ]; # missing inputs: python_awair
- "aws" = ps: with ps; [ ]; # missing inputs: aiobotocore
+ "aws" = ps: with ps; [ aiobotocore ];
"axis" = ps: with ps; [ aiohttp-cors paho-mqtt ]; # missing inputs: axis
"azure_devops" = ps: with ps; [ ]; # missing inputs: aioazuredevops
"azure_event_hub" = ps: with ps; [ ]; # missing inputs: azure-eventhub
@@ -137,7 +137,7 @@
"control4" = ps: with ps; [ ]; # missing inputs: pyControl4
"conversation" = ps: with ps; [ aiohttp-cors ];
"coolmaster" = ps: with ps; [ ]; # missing inputs: pycoolmasternet-async
- "coronavirus" = ps: with ps; [ ]; # missing inputs: coronavirus
+ "coronavirus" = ps: with ps; [ coronavirus ];
"counter" = ps: with ps; [ ];
"cover" = ps: with ps; [ ];
"cppm_tracker" = ps: with ps; [ ]; # missing inputs: clearpasspy
@@ -234,7 +234,7 @@
"essent" = ps: with ps; [ ]; # missing inputs: PyEssent
"etherscan" = ps: with ps; [ ]; # missing inputs: python-etherscan-api
"eufy" = ps: with ps; [ ]; # missing inputs: lakeside
- "everlights" = ps: with ps; [ ]; # missing inputs: pyeverlights
+ "everlights" = ps: with ps; [ pyeverlights ];
"evohome" = ps: with ps; [ ]; # missing inputs: evohome-async
"ezviz" = ps: with ps; [ ]; # missing inputs: pyezviz
"facebook" = ps: with ps; [ ];
@@ -256,9 +256,9 @@
"fireservicerota" = ps: with ps; [ ]; # missing inputs: pyfireservicerota
"firmata" = ps: with ps; [ ]; # missing inputs: pymata-express
"fitbit" = ps: with ps; [ aiohttp-cors fitbit ];
- "fixer" = ps: with ps; [ ]; # missing inputs: fixerio
+ "fixer" = ps: with ps; [ fixerio ];
"fleetgo" = ps: with ps; [ ]; # missing inputs: ritassist
- "flexit" = ps: with ps; [ ]; # missing inputs: pyflexit pymodbus
+ "flexit" = ps: with ps; [ pymodbus ]; # missing inputs: pyflexit
"flic" = ps: with ps; [ ]; # missing inputs: pyflic-homeassistant
"flick_electric" = ps: with ps; [ ]; # missing inputs: PyFlick
"flo" = ps: with ps; [ ]; # missing inputs: aioflo
@@ -303,17 +303,17 @@
"github" = ps: with ps; [ PyGithub ];
"gitlab_ci" = ps: with ps; [ python-gitlab ];
"gitter" = ps: with ps; [ ]; # missing inputs: gitterpy
- "glances" = ps: with ps; [ ]; # missing inputs: glances_api
+ "glances" = ps: with ps; [ glances-api ];
"gntp" = ps: with ps; [ gntp ];
"goalfeed" = ps: with ps; [ ]; # missing inputs: pysher
"goalzero" = ps: with ps; [ ]; # missing inputs: goalzero
"gogogate2" = ps: with ps; [ ]; # missing inputs: gogogate2-api
"google" = ps: with ps; [ google_api_python_client httplib2 oauth2client ];
"google_assistant" = ps: with ps; [ aiohttp-cors ];
- "google_cloud" = ps: with ps; [ google_cloud_texttospeech ];
+ "google_cloud" = ps: with ps; [ google-cloud-texttospeech ];
"google_domains" = ps: with ps; [ ];
"google_maps" = ps: with ps; [ ]; # missing inputs: locationsharinglib
- "google_pubsub" = ps: with ps; [ google_cloud_pubsub ];
+ "google_pubsub" = ps: with ps; [ google-cloud-pubsub ];
"google_translate" = ps: with ps; [ gtts ];
"google_travel_time" = ps: with ps; [ googlemaps ];
"google_wifi" = ps: with ps; [ ];
@@ -503,7 +503,7 @@
"mjpeg" = ps: with ps; [ ];
"mobile_app" = ps: with ps; [ pynacl aiohttp-cors emoji hass-nabucasa pillow ];
"mochad" = ps: with ps; [ ]; # missing inputs: pymochad
- "modbus" = ps: with ps; [ ]; # missing inputs: pymodbus
+ "modbus" = ps: with ps; [ pymodbus ];
"modem_callerid" = ps: with ps; [ ]; # missing inputs: basicmodem
"mold_indicator" = ps: with ps; [ ];
"monoprice" = ps: with ps; [ ]; # missing inputs: pymonoprice
@@ -785,7 +785,7 @@
"statistics" = ps: with ps; [ sqlalchemy ];
"statsd" = ps: with ps; [ statsd ];
"steam_online" = ps: with ps; [ ]; # missing inputs: steamodd
- "stiebel_eltron" = ps: with ps; [ ]; # missing inputs: pymodbus pystiebeleltron
+ "stiebel_eltron" = ps: with ps; [ pymodbus ]; # missing inputs: pystiebeleltron
"stookalert" = ps: with ps; [ ]; # missing inputs: stookalert
"stream" = ps: with ps; [ aiohttp-cors av ];
"streamlabswater" = ps: with ps; [ ]; # missing inputs: streamlabswater
@@ -927,7 +927,7 @@
"wemo" = ps: with ps; [ ]; # missing inputs: pywemo
"whois" = ps: with ps; [ python-whois ];
"wiffi" = ps: with ps; [ ]; # missing inputs: wiffi
- "wilight" = ps: with ps; [ ]; # missing inputs: pywilight
+ "wilight" = ps: with ps; [ pywilight ];
"wink" = ps: with ps; [ aiohttp-cors ]; # missing inputs: pubnubsub-handler python-wink
"wirelesstag" = ps: with ps; [ ]; # missing inputs: wirelesstagpy
"withings" = ps: with ps; [ aiohttp-cors ]; # missing inputs: withings-api
diff --git a/pkgs/servers/home-assistant/parse-requirements.py b/pkgs/servers/home-assistant/parse-requirements.py
index 4fa4b8a48ee4..fc0e790bd6f1 100755
--- a/pkgs/servers/home-assistant/parse-requirements.py
+++ b/pkgs/servers/home-assistant/parse-requirements.py
@@ -30,7 +30,7 @@ from urllib.request import urlopen
COMPONENT_PREFIX = "homeassistant.components"
PKG_SET = "python3Packages"
-# If some requirements are matched by multiple python packages,
+# If some requirements are matched by multiple Python packages,
# the following can be used to choose one of them
PKG_PREFERENCES = {
# Use python3Packages.youtube-dl-light instead of python3Packages.youtube-dl
@@ -39,6 +39,7 @@ PKG_PREFERENCES = {
"tensorflow-bin_2": "tensorflow",
"tensorflowWithoutCuda": "tensorflow",
"tensorflow-build_2": "tensorflow",
+ "whois": "python-whois",
}
diff --git a/pkgs/servers/jitsi-videobridge/default.nix b/pkgs/servers/jitsi-videobridge/default.nix
index 37cffa2e9206..09d7af185615 100644
--- a/pkgs/servers/jitsi-videobridge/default.nix
+++ b/pkgs/servers/jitsi-videobridge/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, dpkg, jre_headless, nixosTests }:
+{ stdenv, fetchurl, makeWrapper, dpkg, jre_headless, nixosTests }:
let
pname = "jitsi-videobridge2";
@@ -15,6 +15,8 @@ stdenv.mkDerivation {
unpackCmd = "${dpkg}/bin/dpkg-deb -x $src debcontents";
+ buildInputs = [ makeWrapper ];
+
installPhase = ''
substituteInPlace usr/share/jitsi-videobridge/jvb.sh \
--replace "exec java" "exec ${jre_headless}/bin/java"
@@ -24,6 +26,10 @@ stdenv.mkDerivation {
cp ${./logging.properties-journal} $out/etc/jitsi/videobridge/logging.properties-journal
mv usr/share/jitsi-videobridge/* $out/share/jitsi-videobridge/
ln -s $out/share/jitsi-videobridge/jvb.sh $out/bin/jitsi-videobridge
+
+ # work around https://github.com/jitsi/jitsi-videobridge/issues/1547
+ wrapProgram $out/bin/jitsi-videobridge \
+ --set VIDEOBRIDGE_GC_TYPE G1GC
'';
passthru.tests = {
diff --git a/pkgs/servers/mail/spamassassin/default.nix b/pkgs/servers/mail/spamassassin/default.nix
index c474c501cee8..afdd2ea860d3 100644
--- a/pkgs/servers/mail/spamassassin/default.nix
+++ b/pkgs/servers/mail/spamassassin/default.nix
@@ -2,11 +2,11 @@
perlPackages.buildPerlPackage rec {
pname = "SpamAssassin";
- version = "3.4.3";
+ version = "3.4.4";
src = fetchurl {
url = "mirror://apache/spamassassin/source/Mail-${pname}-${version}.tar.bz2";
- sha256 = "1380cmrgjsyidnznr844c5yr9snz36dw7xchdfryi2s61vjzvf55";
+ sha256 = "0ga5mi2nv2v91kakk9xakkg71rnxnddlzv76ca13vfyd4jgcfasf";
};
buildInputs = [ makeWrapper ] ++ (with perlPackages; [
@@ -37,6 +37,6 @@ perlPackages.buildPerlPackage rec {
description = "Open-Source Spam Filter";
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.unix;
- maintainers = with stdenv.lib.maintainers; [ peti qknight ];
+ maintainers = with stdenv.lib.maintainers; [ peti qknight qyliss ];
};
}
diff --git a/pkgs/servers/nextcloud/default.nix b/pkgs/servers/nextcloud/default.nix
index 8d4b52a01593..a1c38cdbe28d 100644
--- a/pkgs/servers/nextcloud/default.nix
+++ b/pkgs/servers/nextcloud/default.nix
@@ -53,7 +53,7 @@ in {
version = "19.0.6";
sha256 = "sha256-pqqIayE0OyTailtd2zeYi+G1APjv/YHqyO8jCpq7KJg=";
extraVulnerabilities = [
- "Nextcloud 19 is still supported, but CVE-2020-8259 & CVE-2020-8152 are unfixed!"
+ "Nextcloud 19 is still supported, but CVE-2020-8259 & CVE-2020-8152 are unfixed! Please note that both CVEs only affect the file encryption module which is turned off by default. Alternatively, `pkgs.nextcloud20` can be used."
];
};
diff --git a/pkgs/servers/plex/raw.nix b/pkgs/servers/plex/raw.nix
index 9e60e9f37044..3bc3c6956938 100644
--- a/pkgs/servers/plex/raw.nix
+++ b/pkgs/servers/plex/raw.nix
@@ -12,16 +12,16 @@
# server, and the FHS userenv and corresponding NixOS module should
# automatically pick up the changes.
stdenv.mkDerivation rec {
- version = "1.21.1.3795-ee64ab56f";
+ version = "1.21.1.3842-b0c7a97d9";
pname = "plexmediaserver";
# Fetch the source
src = if stdenv.hostPlatform.system == "aarch64-linux" then fetchurl {
url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_arm64.deb";
- sha256 = "1k4ayb5jygi9g78703r1z4y4m0mp66m6jc72zj4zqk4xckzvjf4f";
+ sha256 = "0wq8q9dvdwciazidvh9plxjzngjr6ibg077yksxhy41dv14vkw7s";
} else fetchurl {
url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_amd64.deb";
- sha256 = "0qfc5k9sgi465pgrhv8nbm5p7s4wdpaljj54m2i7hfydva8ws8ci";
+ sha256 = "14pa50kvgi4m5hbw4a0q7y3s4xn9ghvnm4vdim9g18p1khfmwmwp";
};
outputs = [ "out" "basedb" ];
diff --git a/pkgs/servers/slimserver/default.nix b/pkgs/servers/slimserver/default.nix
index 8be2cc15d4a7..d045543813c5 100644
--- a/pkgs/servers/slimserver/default.nix
+++ b/pkgs/servers/slimserver/default.nix
@@ -14,6 +14,7 @@ perlPackages.buildPerlPackage rec {
makeWrapper
perlPackages.perl
perlPackages.AnyEvent
+ perlPackages.ArchiveZip
perlPackages.AudioScan
perlPackages.CarpClan
perlPackages.CGI
diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix
index 00d95430dc85..d3aecf626d21 100644
--- a/pkgs/servers/x11/xorg/default.nix
+++ b/pkgs/servers/x11/xorg/default.nix
@@ -2029,11 +2029,11 @@ lib.makeScope newScope (self: with self; {
}) {};
xf86videonouveau = callPackage ({ stdenv, pkgconfig, fetchurl, xorgproto, libdrm, udev, libpciaccess, xorgserver }: stdenv.mkDerivation {
- name = "xf86-video-nouveau-1.0.15";
+ name = "xf86-video-nouveau-1.0.16";
builder = ./builder.sh;
src = fetchurl {
- url = "mirror://xorg/individual/driver/xf86-video-nouveau-1.0.15.tar.bz2";
- sha256 = "0k0xah72ryjwak4dc4crszxrlkmi9x1s7p3sd4la642n77yi1pmf";
+ url = "mirror://xorg/individual/driver/xf86-video-nouveau-1.0.16.tar.bz2";
+ sha256 = "01mz8gnq7j6bvrqb2ljm3d1wpjhi9p2z2w8zbkdrqmqmcj060h1h";
};
hardeningDisable = [ "bindnow" "relro" ];
nativeBuildInputs = [ pkgconfig ];
@@ -2289,11 +2289,11 @@ lib.makeScope newScope (self: with self; {
}) {};
xf86videovesa = callPackage ({ stdenv, pkgconfig, fetchurl, xorgproto, libpciaccess, xorgserver }: stdenv.mkDerivation {
- name = "xf86-video-vesa-2.4.0";
+ name = "xf86-video-vesa-2.5.0";
builder = ./builder.sh;
src = fetchurl {
- url = "mirror://xorg/individual/driver/xf86-video-vesa-2.4.0.tar.bz2";
- sha256 = "1373vsxn6qh00na0s9c09kf09gj78rzi98zq93id8v5zsya3qi5z";
+ url = "mirror://xorg/individual/driver/xf86-video-vesa-2.5.0.tar.bz2";
+ sha256 = "0nf6ai74c60xk96kgr8q9mx6lrxm5id3765ws4d801irqzrj85hz";
};
hardeningDisable = [ "bindnow" "relro" ];
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix
index ddf0aacdf07d..e31d1ab707c8 100644
--- a/pkgs/servers/x11/xorg/overrides.nix
+++ b/pkgs/servers/x11/xorg/overrides.nix
@@ -74,7 +74,8 @@ self: super:
mkfontdir = self.mkfontscale;
libxcb = super.libxcb.overrideAttrs (attrs: {
- configureFlags = [ "--enable-xkb" "--enable-xinput" ];
+ configureFlags = [ "--enable-xkb" "--enable-xinput" ]
+ ++ stdenv.lib.optional stdenv.hostPlatform.isStatic "--disable-shared";
outputs = [ "out" "dev" "man" "doc" ];
});
@@ -82,15 +83,18 @@ self: super:
outputs = [ "out" "dev" "man" ];
configureFlags = attrs.configureFlags or []
++ malloc0ReturnsNullCrossFlag;
- depsBuildBuild = [ buildPackages.stdenv.cc ];
+ depsBuildBuild = [
+ buildPackages.stdenv.cc
+ ] ++ stdenv.lib.optionals stdenv.hostPlatform.isStatic [
+ (self.buildPackages.stdenv.cc.libc.static or null)
+ ];
preConfigure = ''
sed 's,^as_dummy.*,as_dummy="\$PATH",' -i configure
'';
- postInstall =
- ''
- # Remove useless DocBook XML files.
- rm -rf $out/share/doc
- '';
+ postInstall = ''
+ # Remove useless DocBook XML files.
+ rm -rf $out/share/doc
+ '';
CPP = stdenv.lib.optionalString stdenv.isDarwin "clang -E -";
propagatedBuildInputs = attrs.propagatedBuildInputs or [] ++ [ self.xorgproto ];
});
@@ -138,6 +142,11 @@ self: super:
xdpyinfo = super.xdpyinfo.overrideAttrs (attrs: {
configureFlags = attrs.configureFlags or []
++ malloc0ReturnsNullCrossFlag;
+ preConfigure = attrs.preConfigure or ""
+ # missing transitive dependencies
+ + stdenv.lib.optionalString stdenv.hostPlatform.isStatic ''
+ export NIX_CFLAGS_LINK="$NIX_CFLAGS_LINK -lXau -lXdmcp"
+ '';
});
# Propagate some build inputs because of header file dependencies.
@@ -223,8 +232,9 @@ self: super:
libXi = super.libXi.overrideAttrs (attrs: {
outputs = [ "out" "dev" "man" "doc" ];
propagatedBuildInputs = attrs.propagatedBuildInputs or [] ++ [ self.libXfixes ];
- configureFlags = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
- "xorg_cv_malloc0_returns_null=no";
+ configureFlags = stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
+ "xorg_cv_malloc0_returns_null=no"
+ ] ++ stdenv.lib.optional stdenv.hostPlatform.isStatic "--disable-shared";
});
libXinerama = super.libXinerama.overrideAttrs (attrs: {
@@ -745,6 +755,11 @@ self: super:
xauth = super.xauth.overrideAttrs (attrs: {
doCheck = false; # fails
+ preConfigure = attrs.preConfigure or ""
+ # missing transitive dependencies
+ + stdenv.lib.optionalString stdenv.hostPlatform.isStatic ''
+ export NIX_CFLAGS_LINK="$NIX_CFLAGS_LINK -lxcb -lXau -lXdmcp"
+ '';
});
xcursorthemes = super.xcursorthemes.overrideAttrs (attrs: {
diff --git a/pkgs/servers/x11/xorg/tarballs.list b/pkgs/servers/x11/xorg/tarballs.list
index b169b19740fb..02467ce304b8 100644
--- a/pkgs/servers/x11/xorg/tarballs.list
+++ b/pkgs/servers/x11/xorg/tarballs.list
@@ -105,7 +105,7 @@ mirror://xorg/individual/driver/xf86-video-mach64-6.9.6.tar.bz2
mirror://xorg/individual/driver/xf86-video-mga-2.0.0.tar.bz2
mirror://xorg/individual/driver/xf86-video-neomagic-1.3.0.tar.bz2
mirror://xorg/individual/driver/xf86-video-newport-0.2.4.tar.bz2
-mirror://xorg/individual/driver/xf86-video-nouveau-1.0.15.tar.bz2
+mirror://xorg/individual/driver/xf86-video-nouveau-1.0.16.tar.bz2
mirror://xorg/individual/driver/xf86-video-nv-2.1.21.tar.bz2
mirror://xorg/individual/driver/xf86-video-omap-0.4.5.tar.bz2
mirror://xorg/individual/driver/xf86-video-openchrome-0.6.0.tar.bz2
@@ -125,7 +125,7 @@ mirror://xorg/individual/driver/xf86-video-tga-1.2.2.tar.bz2
mirror://xorg/individual/driver/xf86-video-trident-1.3.8.tar.bz2
mirror://xorg/individual/driver/xf86-video-v4l-0.3.0.tar.bz2
mirror://xorg/individual/driver/xf86-video-vboxvideo-1.0.0.tar.bz2
-mirror://xorg/individual/driver/xf86-video-vesa-2.4.0.tar.bz2
+mirror://xorg/individual/driver/xf86-video-vesa-2.5.0.tar.bz2
mirror://xorg/individual/driver/xf86-video-vmware-13.3.0.tar.bz2
mirror://xorg/individual/driver/xf86-video-voodoo-1.2.5.tar.bz2
mirror://xorg/individual/driver/xf86-video-wsfb-0.4.0.tar.bz2
diff --git a/pkgs/shells/fish/plugins/build-fish-plugin.nix b/pkgs/shells/fish/plugins/build-fish-plugin.nix
new file mode 100644
index 000000000000..e2ec342e5440
--- /dev/null
+++ b/pkgs/shells/fish/plugins/build-fish-plugin.nix
@@ -0,0 +1,77 @@
+{ stdenv, lib, writeShellScriptBin, writeScript, fish }:
+
+let
+ rtpPath = "share/fish";
+
+ mapToFuncPath = v:
+ if lib.isString v
+ then v
+ else "${v}/${rtpPath}/vendor_functions.d";
+
+ fishWithFunctionPath = plugins: let
+ funcPaths = map mapToFuncPath plugins;
+ in writeShellScriptBin "fish" ''
+ ${fish}/bin/fish \
+ --init-command \
+ "set --prepend fish_function_path ${lib.escapeShellArgs funcPaths}" \
+ "$@"
+ '';
+
+in attrs@{
+ pname,
+ version,
+ src,
+
+ name ? "fishplugin-${pname}-${version}",
+ unpackPhase ? "",
+ configurePhase ? ":",
+ buildPhase ? ":",
+ preInstall ? "",
+ postInstall ? "",
+ # name of the subdirectory in which to store the plugin
+ installPath ? lib.getName pname,
+
+ checkInputs ? [],
+ # plugins or paths to add to the function path of the test fish shell
+ checkFunctionPath ? [],
+ # test script to be executed in a fish shell
+ checkPhase ? "",
+ doCheck ? checkPhase != "",
+
+ ...
+}:
+
+stdenv.mkDerivation (attrs // {
+ inherit name;
+ inherit unpackPhase configurePhase buildPhase;
+
+ inherit preInstall postInstall;
+ installPhase = ''
+ runHook preInstall
+
+ (
+ install_vendor_files() {
+ source="$1"
+ target="$out/${rtpPath}/vendor_$2.d"
+
+ [ -d $source ] || return 0
+ mkdir -p $target
+ cp -r $source/*.fish "$target/"
+ }
+
+ install_vendor_files completions completions
+ install_vendor_files functions functions
+ install_vendor_files conf conf
+ install_vendor_files conf.d conf
+ )
+
+ runHook postInstall
+ '';
+
+ inherit doCheck;
+ checkInputs = [ (fishWithFunctionPath checkFunctionPath) ] ++ checkInputs;
+ checkPhase = ''
+ export HOME=$(mktemp -d) # fish wants a writable home
+ fish "${writeScript "${name}-test" checkPhase}"
+ '';
+})
diff --git a/pkgs/shells/fish/plugins/default.nix b/pkgs/shells/fish/plugins/default.nix
new file mode 100644
index 000000000000..e543d49516a8
--- /dev/null
+++ b/pkgs/shells/fish/plugins/default.nix
@@ -0,0 +1,13 @@
+{ lib, newScope }:
+
+lib.makeScope newScope (self: with self; {
+
+ buildFishPlugin = callPackage ./build-fish-plugin.nix { };
+
+ fishtape = callPackage ./fishtape.nix { };
+
+ foreign-env = callPackage ./foreign-env { };
+
+ pure = callPackage ./pure.nix { };
+
+})
diff --git a/pkgs/shells/fish/plugins/fishtape.nix b/pkgs/shells/fish/plugins/fishtape.nix
new file mode 100644
index 000000000000..326ff61c4174
--- /dev/null
+++ b/pkgs/shells/fish/plugins/fishtape.nix
@@ -0,0 +1,32 @@
+{ lib, buildFishPlugin, fetchFromGitHub }:
+
+buildFishPlugin rec {
+ pname = "fishtape";
+ version = "2.1.3";
+
+ src = fetchFromGitHub {
+ owner = "jorgebucaran";
+ repo = "fishtape";
+ rev = version;
+ sha256 = "0dxcyhs2shhgy5xnwcimqja8vqsyk841x486lgq13i3y1h0kp2kd";
+ };
+
+ checkFunctionPath = [ "./" ]; # fishtape is introspective
+ checkPhase = ''
+ rm test/tty.fish # test expects a tty
+ fishtape test/*.fish
+ '';
+
+ preInstall = ''
+ # move the function script in the proper sub-directory
+ mkdir functions
+ mv fishtape.fish functions/
+ '';
+
+ meta = {
+ description = "TAP-based test runner for Fish";
+ homepage = "https://github.com/jorgebucaran/fishtape";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ pacien ];
+ };
+}
diff --git a/pkgs/shells/fish/fish-foreign-env/default.nix b/pkgs/shells/fish/plugins/foreign-env/default.nix
similarity index 66%
rename from pkgs/shells/fish/fish-foreign-env/default.nix
rename to pkgs/shells/fish/plugins/foreign-env/default.nix
index ef157f323923..03435340d179 100644
--- a/pkgs/shells/fish/fish-foreign-env/default.nix
+++ b/pkgs/shells/fish/plugins/foreign-env/default.nix
@@ -1,7 +1,7 @@
-{ stdenv, fetchFromGitHub, gnused, bash, coreutils }:
+{ lib, buildFishPlugin, fetchFromGitHub, gnused, bash, coreutils }:
-stdenv.mkDerivation {
- pname = "fish-foreign-env";
+buildFishPlugin {
+ pname = "foreign-env";
version = "git-20200209";
src = fetchFromGitHub {
@@ -11,18 +11,16 @@ stdenv.mkDerivation {
sha256 = "00xqlyl3lffc5l0viin1nyp819wf81fncqyz87jx8ljjdhilmgbs";
};
- installPhase = ''
- mkdir -p $out/share/fish-foreign-env/functions/
- cp functions/* $out/share/fish-foreign-env/functions/
+ patches = [ ./suppress-harmless-warnings.patch ];
+
+ preInstall = ''
sed -e "s|sed|${gnused}/bin/sed|" \
-e "s|bash|${bash}/bin/bash|" \
-e "s|\| tr|\| ${coreutils}/bin/tr|" \
- -i $out/share/fish-foreign-env/functions/*
+ -i functions/*
'';
- patches = [ ./suppress-harmless-warnings.patch ];
-
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "A foreign environment interface for Fish shell";
license = licenses.mit;
maintainers = with maintainers; [ jgillich ];
diff --git a/pkgs/shells/fish/fish-foreign-env/suppress-harmless-warnings.patch b/pkgs/shells/fish/plugins/foreign-env/suppress-harmless-warnings.patch
similarity index 100%
rename from pkgs/shells/fish/fish-foreign-env/suppress-harmless-warnings.patch
rename to pkgs/shells/fish/plugins/foreign-env/suppress-harmless-warnings.patch
diff --git a/pkgs/shells/fish/plugins/pure.nix b/pkgs/shells/fish/plugins/pure.nix
new file mode 100644
index 000000000000..54af2e0663e8
--- /dev/null
+++ b/pkgs/shells/fish/plugins/pure.nix
@@ -0,0 +1,29 @@
+{ lib, buildFishPlugin, fetchFromGitHub, git, fishtape }:
+
+buildFishPlugin rec {
+ pname = "pure";
+ version = "3.4.2";
+
+ src = fetchFromGitHub {
+ owner = "rafaelrinaldi";
+ repo = "pure";
+ rev = "v${version}";
+ sha256 = "134sz3f98gb6z2vgd5kkm6dd8pka5gijk843c32s616w35y07sga";
+ };
+
+ checkInputs = [ git ];
+ checkFunctionPath = [ fishtape ];
+ checkPhase = ''
+ # https://github.com/rafaelrinaldi/pure/issues/264
+ rm tests/_pure_string_width.test.fish
+
+ fishtape tests/*.test.fish
+ '';
+
+ meta = {
+ description = "Pretty, minimal and fast Fish prompt, ported from zsh";
+ homepage = "https://github.com/rafaelrinaldi/pure";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ pacien ];
+ };
+}
diff --git a/pkgs/shells/tcsh/default.nix b/pkgs/shells/tcsh/default.nix
index 87cbf8c59f36..d6527ef24b5b 100644
--- a/pkgs/shells/tcsh/default.nix
+++ b/pkgs/shells/tcsh/default.nix
@@ -1,10 +1,10 @@
{ stdenv, fetchurl, fetchpatch
-, ncurses }:
+, ncurses
+}:
-with stdenv.lib;
stdenv.mkDerivation rec {
pname = "tcsh";
- version = "6.22.02";
+ version = "6.22.03";
src = fetchurl {
urls = [
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
"ftp://ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/${pname}-${version}.tar.gz"
];
- sha256 = "0nw8prz1n0lmr82wnpyhrzmki630afn7p9cfgr3vl00vr9c72a7d";
+ sha256 = "sha256-viz9ZT0qDH9QbS3RTBIyS6dJvUhAN75t9Eo5c/UiYrc=";
};
buildInputs = [ ncurses ];
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
sha256 = "1qc6ydxhdfizsbkaxhpn3wib8sfphrw10xnnsxx2prvzg9g2zp67";
});
- meta = {
+ meta = with stdenv.lib; {
description = "An enhanced version of the Berkeley UNIX C shell (csh)";
longDescription = ''
tcsh is an enhanced but completely compatible version of the
diff --git a/pkgs/shells/zsh/oh-my-zsh/default.nix b/pkgs/shells/zsh/oh-my-zsh/default.nix
index aabc0c6e05c4..2d13bf8e9255 100644
--- a/pkgs/shells/zsh/oh-my-zsh/default.nix
+++ b/pkgs/shells/zsh/oh-my-zsh/default.nix
@@ -5,15 +5,15 @@
, nix, nixfmt, jq, coreutils, gnused, curl, cacert }:
stdenv.mkDerivation rec {
- version = "2021-01-02";
+ version = "2021-01-05";
pname = "oh-my-zsh";
- rev = "0e833b622ba43d38bd62227244d831f3c0e4a325";
+ rev = "86f805280f6a8cf65d8d0a9380489aae4b72f767";
src = fetchFromGitHub {
inherit rev;
owner = "ohmyzsh";
repo = "ohmyzsh";
- sha256 = "06bmlc8lzqxs37glwmv7j0yk73kccmrdb783kvqldski56004gba";
+ sha256 = "1wf4g1z7fvravsp020xdqvczf4kcw1nh3b22djlsgd97n8qgziaz";
};
installPhase = ''
diff --git a/pkgs/tools/X11/opentabletdriver/default.nix b/pkgs/tools/X11/opentabletdriver/default.nix
index 6f8f9e44cc4a..486cb50b7f39 100644
--- a/pkgs/tools/X11/opentabletdriver/default.nix
+++ b/pkgs/tools/X11/opentabletdriver/default.nix
@@ -2,7 +2,6 @@
, lib
, fetchFromGitHub
, fetchurl
-, makeWrapper
, linkFarmFromDrvs
, dotnet-netcore
, dotnet-sdk
@@ -15,7 +14,9 @@
, libevdev
, libnotify
, udev
+, copyDesktopItems
, makeDesktopItem
+, makeWrapper
, wrapGAppsHook
}:
@@ -39,6 +40,7 @@ stdenv.mkDerivation rec {
dotnet-sdk
dotnetPackages.Nuget
dpkg
+ copyDesktopItems
makeWrapper
wrapGAppsHook
];
@@ -62,6 +64,8 @@ stdenv.mkDerivation rec {
];
configurePhase = ''
+ runHook preConfigure
+
export HOME=$(mktemp -d)
export DOTNET_CLI_TELEMETRY_OPTOUT=1
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
@@ -76,20 +80,25 @@ stdenv.mkDerivation rec {
for project in OpenTabletDriver.{Console,Daemon,UX.Gtk}; do
dotnet restore --source "$PWD/nixos" $project
done
+
+ runHook postConfigure
'';
buildPhase = ''
+ runHook preBuild
+
for project in OpenTabletDriver.{Console,Daemon,UX.Gtk}; do
dotnet build $project \
--no-restore \
--configuration Release \
--framework net5
done
+
+ runHook postBuild
'';
installPhase = ''
- mkdir -p $out/lib/OpenTabletDriver/
- cp -r ./OpenTabletDriver/Configurations/ $out/lib/OpenTabletDriver/
+ runHook preInstall
for project in OpenTabletDriver.{Console,Daemon,UX.Gtk}; do
dotnet publish $project \
@@ -119,11 +128,19 @@ stdenv.mkDerivation rec {
--set DOTNET_ROOT "${dotnet-netcore}" \
--suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeDeps}"
- mkdir -p $out/share/{applications,pixmaps}
+ mkdir -p $out/lib/OpenTabletDriver
+ cp -rv ./OpenTabletDriver/Configurations $out/lib/OpenTabletDriver
+ install -Dm644 $src/OpenTabletDriver.UX/Assets/otd.png -t $out/share/pixmaps
- cp -r $src/OpenTabletDriver.UX/Assets/* $out/share/pixmaps
+ # TODO: Ideally this should be build from OpenTabletDriver/OpenTabletDriver-udev instead
+ dpkg-deb --fsys-tarfile ${debPkg} | tar xf - ./usr/lib/udev/rules.d/30-opentabletdriver.rules
+ install -Dm644 ./usr/lib/udev/rules.d/30-opentabletdriver.rules -t $out/lib/udev/rules.d
- cp -r ${makeDesktopItem {
+ runHook postInstall
+ '';
+
+ desktopItems = [
+ (makeDesktopItem {
desktopName = "OpenTabletDriver";
name = "OpenTabletDriver";
exec = "otd-gui";
@@ -131,13 +148,8 @@ stdenv.mkDerivation rec {
comment = meta.description;
type = "Application";
categories = "Utility;";
- }}/share/applications/* $out/share/applications
-
- # TODO: Ideally this should be build from OpenTabletDriver/OpenTabletDriver-udev instead
- dpkg-deb --fsys-tarfile ${debPkg} | tar xf - ./usr/lib/udev/rules.d/30-opentabletdriver.rules
- mkdir -p $out/lib/udev/rules.d
- cp ./usr/lib/udev/rules.d/* $out/lib/udev/rules.d
- '';
+ })
+ ];
dontWrapGApps = true;
dontStrip = true;
diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix
index 46c5092e1316..b3052cb41b01 100644
--- a/pkgs/tools/admin/awscli/default.nix
+++ b/pkgs/tools/admin/awscli/default.nix
@@ -28,11 +28,11 @@ let
in with py.pkgs; buildPythonApplication rec {
pname = "awscli";
- version = "1.18.207"; # N.B: if you change this, change botocore to a matching version too
+ version = "1.18.209"; # N.B: if you change this, change botocore to a matching version too
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-E6emaaPxIgYk5Zwh3oBHUrbye43/mGjzvVeMx/Re33w=";
+ sha256 = "sha256-Le+vjLdXquZiFPuO9v73vm1/iFDaRCNDjXX719AtAxE=";
};
postPatch = ''
diff --git a/pkgs/tools/admin/fastlane/Gemfile.lock b/pkgs/tools/admin/fastlane/Gemfile.lock
index 1bfce8606532..19305c7d1370 100644
--- a/pkgs/tools/admin/fastlane/Gemfile.lock
+++ b/pkgs/tools/admin/fastlane/Gemfile.lock
@@ -1,75 +1,77 @@
GEM
remote: https://rubygems.org/
specs:
- CFPropertyList (3.0.2)
+ CFPropertyList (3.0.3)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
atomos (0.1.3)
aws-eventstream (1.1.0)
- aws-partitions (1.320.0)
- aws-sdk-core (3.96.1)
+ aws-partitions (1.414.0)
+ aws-sdk-core (3.110.0)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.239.0)
aws-sigv4 (~> 1.1)
jmespath (~> 1.0)
- aws-sdk-kms (1.31.0)
- aws-sdk-core (~> 3, >= 3.71.0)
+ aws-sdk-kms (1.40.0)
+ aws-sdk-core (~> 3, >= 3.109.0)
aws-sigv4 (~> 1.1)
- aws-sdk-s3 (1.66.0)
- aws-sdk-core (~> 3, >= 3.96.1)
+ aws-sdk-s3 (1.87.0)
+ aws-sdk-core (~> 3, >= 3.109.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.1)
- aws-sigv4 (1.1.3)
- aws-eventstream (~> 1.0, >= 1.0.2)
- babosa (1.0.3)
+ aws-sigv4 (1.2.2)
+ aws-eventstream (~> 1, >= 1.0.2)
+ babosa (1.0.4)
claide (1.0.3)
colored (1.2)
colored2 (3.1.2)
commander-fastlane (4.4.6)
highline (~> 1.7.2)
- declarative (0.0.10)
+ declarative (0.0.20)
declarative-option (0.1.0)
- digest-crc (0.5.1)
+ digest-crc (0.6.3)
+ rake (>= 12.0.0, < 14.0.0)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
- dotenv (2.7.5)
- emoji_regex (1.0.1)
- excon (0.73.0)
- faraday (1.0.1)
+ dotenv (2.7.6)
+ emoji_regex (3.2.1)
+ excon (0.78.1)
+ faraday (1.3.0)
+ faraday-net_http (~> 1.0)
multipart-post (>= 1.2, < 3)
- faraday-cookie_jar (0.0.6)
- faraday (>= 0.7.4)
+ ruby2_keywords
+ faraday-cookie_jar (0.0.7)
+ faraday (>= 0.8.0)
http-cookie (~> 1.0.0)
+ faraday-net_http (1.0.0)
faraday_middleware (1.0.0)
faraday (~> 1.0)
- fastimage (2.1.7)
- fastlane (2.148.1)
+ fastimage (2.2.1)
+ fastlane (2.171.0)
CFPropertyList (>= 2.3, < 4.0.0)
addressable (>= 2.3, < 3.0.0)
aws-sdk-s3 (~> 1.0)
- babosa (>= 1.0.2, < 2.0.0)
+ babosa (>= 1.0.3, < 2.0.0)
bundler (>= 1.12.0, < 3.0.0)
colored
commander-fastlane (>= 4.4.6, < 5.0.0)
dotenv (>= 2.1.1, < 3.0.0)
- emoji_regex (>= 0.1, < 2.0)
+ emoji_regex (>= 0.1, < 4.0)
excon (>= 0.71.0, < 1.0.0)
- faraday (>= 0.17, < 2.0)
+ faraday (~> 1.0)
faraday-cookie_jar (~> 0.0.6)
- faraday_middleware (>= 0.13.1, < 2.0)
+ faraday_middleware (~> 1.0)
fastimage (>= 2.1.0, < 3.0.0)
gh_inspector (>= 1.1.2, < 2.0.0)
google-api-client (>= 0.37.0, < 0.39.0)
google-cloud-storage (>= 1.15.0, < 2.0.0)
highline (>= 1.7.2, < 2.0.0)
json (< 3.0.0)
- jwt (~> 2.1.0)
+ jwt (>= 2.1.0, < 3)
mini_magick (>= 4.9.4, < 5.0.0)
- multi_xml (~> 0.5)
multipart-post (~> 2.0.0)
plist (>= 3.1.0, < 4.0.0)
- public_suffix (~> 2.0.0)
- rubyzip (>= 1.3.0, < 2.0.0)
+ rubyzip (>= 2.0.0, < 3.0.0)
security (= 0.1.3)
simctl (~> 1.6.3)
slack-notifier (>= 2.0.0, < 3.0.0)
@@ -93,17 +95,17 @@ GEM
google-cloud-core (1.5.0)
google-cloud-env (~> 1.0)
google-cloud-errors (~> 1.0)
- google-cloud-env (1.3.1)
+ google-cloud-env (1.4.0)
faraday (>= 0.17.3, < 2.0)
- google-cloud-errors (1.0.0)
- google-cloud-storage (1.26.1)
+ google-cloud-errors (1.0.1)
+ google-cloud-storage (1.29.2)
addressable (~> 2.5)
digest-crc (~> 0.4)
google-api-client (~> 0.33)
google-cloud-core (~> 1.2)
googleauth (~> 0.9)
mini_mime (~> 1.0)
- googleauth (0.12.0)
+ googleauth (0.14.0)
faraday (>= 0.17.3, < 2.0)
jwt (>= 1.4, < 3.0)
memoist (~> 0.16)
@@ -115,26 +117,27 @@ GEM
domain_name (~> 0.5)
httpclient (2.8.3)
jmespath (1.4.0)
- json (2.3.0)
- jwt (2.1.0)
+ json (2.5.1)
+ jwt (2.2.2)
memoist (0.16.2)
- mini_magick (4.10.1)
+ mini_magick (4.11.0)
mini_mime (1.0.2)
- multi_json (1.14.1)
- multi_xml (0.6.0)
+ multi_json (1.15.0)
multipart-post (2.0.0)
- nanaimo (0.2.6)
+ nanaimo (0.3.0)
naturally (2.2.0)
- os (1.1.0)
- plist (3.5.0)
- public_suffix (2.0.5)
+ os (1.1.1)
+ plist (3.6.0)
+ public_suffix (4.0.6)
+ rake (13.0.3)
representable (3.0.4)
declarative (< 0.1.0)
declarative-option (< 0.2.0)
uber (< 0.2.0)
retriable (3.1.2)
rouge (2.0.7)
- rubyzip (1.3.0)
+ ruby2_keywords (0.0.2)
+ rubyzip (2.3.0)
security (0.1.3)
signet (0.14.0)
addressable (~> 2.3)
@@ -149,7 +152,7 @@ GEM
terminal-table (1.8.0)
unicode-display_width (~> 1.1, >= 1.1.1)
tty-cursor (0.7.1)
- tty-screen (0.7.1)
+ tty-screen (0.8.1)
tty-spinner (0.9.3)
tty-cursor (~> 0.7)
uber (0.1.0)
@@ -158,15 +161,15 @@ GEM
unf_ext (0.0.7.7)
unicode-display_width (1.7.0)
word_wrap (1.0.0)
- xcodeproj (1.16.0)
+ xcodeproj (1.19.0)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
colored2 (~> 3.1)
- nanaimo (~> 0.2.6)
+ nanaimo (~> 0.3.0)
xcpretty (0.3.0)
rouge (~> 2.0.7)
- xcpretty-travis-formatter (1.0.0)
+ xcpretty-travis-formatter (1.0.1)
xcpretty (~> 0.2, >= 0.0.7)
PLATFORMS
@@ -176,4 +179,4 @@ DEPENDENCIES
fastlane
BUNDLED WITH
- 2.1.4
\ No newline at end of file
+ 2.1.4
diff --git a/pkgs/tools/admin/fastlane/gemset.nix b/pkgs/tools/admin/fastlane/gemset.nix
index e289bc6f17d2..a3c32f7c5dec 100644
--- a/pkgs/tools/admin/fastlane/gemset.nix
+++ b/pkgs/tools/admin/fastlane/gemset.nix
@@ -35,10 +35,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "011ch85shkb3i3w16jymjx19dmxcgb6jrl6dzwqr4bx16ikdyclc";
+ sha256 = "0dy7y0zgc53cz1qiifx74glixkjd96nk8p6qrq1n5cdylnlpng8k";
type = "gem";
};
- version = "1.320.0";
+ version = "1.414.0";
};
aws-sdk-core = {
dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"];
@@ -46,10 +46,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0jdnzynjrpp2jyg8vrbfbaad16k8ni1520xah1z2ckl5779x9fi6";
+ sha256 = "1lrxwi9im4bpdcga6w7bmam7hywy5c2yss09377lyqm89whb4kl4";
type = "gem";
};
- version = "3.96.1";
+ version = "3.110.0";
};
aws-sdk-kms = {
dependencies = ["aws-sdk-core" "aws-sigv4"];
@@ -57,10 +57,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1czxr6yi8p9gma4dwgygp1jn0i289hwa2vw69kzfscgbn118c3mm";
+ sha256 = "1pk76w1w9z4dh1sic08jp1j2rbbmnrfci53a6pkxq0g3y4kkx2g4";
type = "gem";
};
- version = "1.31.0";
+ version = "1.40.0";
};
aws-sdk-s3 = {
dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"];
@@ -68,10 +68,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1x1d1azxwanvm0d7qppw41x5nx2zv0bcz41yk9vqi5lvr7apaq13";
+ sha256 = "0capqhvm08ngq74n33ym0khixkdj342jpikssw57avdmd8g6kaq7";
type = "gem";
};
- version = "1.66.0";
+ version = "1.87.0";
};
aws-sigv4 = {
dependencies = ["aws-eventstream"];
@@ -79,30 +79,30 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0kysxyw1zkvggbmcj4xnscdh15kxli8mx07hv447h74g9x02drsd";
+ sha256 = "1ll9382c1x2hp750cilh01h1cycgyhdr4cmmgx23k94hyyb8chv5";
type = "gem";
};
- version = "1.1.3";
+ version = "1.2.2";
};
babosa = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "10nn9bw63i4awpzn5vrx6kmpx1sg7z8r3fhw9r8bvg9pz2wh489g";
+ sha256 = "16dwqn33kmxkqkv51cwiikdkbrdjfsymlnc0rgbjwilmym8a9phq";
type = "gem";
};
- version = "1.0.3";
+ version = "1.0.4";
};
CFPropertyList = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1825ll26p28swjiw8n3x2pnh5ygsmg83spf82fnzcjn2p87vc5lf";
+ sha256 = "0ia09r8bj3bjhcfiyr3vlk9zx7vahfypbs2lyrxix9x1jx3lfzq4";
type = "gem";
};
- version = "3.0.2";
+ version = "3.0.3";
};
claide = {
groups = ["default"];
@@ -150,10 +150,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0642xvwzzbgi3kp1bg467wma4g3xqrrn0sk369hjam7w579gnv5j";
+ sha256 = "1yczgnqrbls7shrg63y88g7wand2yp9h6sf56c9bdcksn5nds8c0";
type = "gem";
};
- version = "0.0.10";
+ version = "0.0.20";
};
declarative-option = {
groups = ["default"];
@@ -166,14 +166,15 @@
version = "0.1.0";
};
digest-crc = {
+ dependencies = ["rake"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "10f10yhz7rn31pq859jx47dypsfsxcmx8h482xn7aijfr6vn8yv9";
+ sha256 = "118d5p02kdw6a5pi8af12dxma7q3b77zz5q5xjjf5kgp8qh1930a";
type = "gem";
};
- version = "0.5.1";
+ version = "0.6.3";
};
domain_name = {
dependencies = ["unf"];
@@ -191,41 +192,41 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "17hkd62ig9b0czv192kqdfq7gw0a8hgq07yclri6myc8y5lmfin5";
+ sha256 = "0iym172c5337sm1x2ykc2i3f961vj3wdclbyg1x6sxs3irgfsl94";
type = "gem";
};
- version = "2.7.5";
+ version = "2.7.6";
};
emoji_regex = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1jfsv8ik2h1msqf3if1f121pnx3lccp8fqnka9na309mnw3bq532";
+ sha256 = "0qbzlracxw4xwyvrgr0qcl1alk4ijk6pv53ni6f43csi649y3n3s";
type = "gem";
};
- version = "1.0.1";
+ version = "3.2.1";
};
excon = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1zvphy60fwycl6z2h7dpsy9lgyfrh27fj16987p7bl1n4xlqkvmw";
+ sha256 = "16ij8617v3js03yj1zd32mmrf7kpi9l96bid5mpqk30c4mzai55r";
type = "gem";
};
- version = "0.73.0";
+ version = "0.78.1";
};
faraday = {
- dependencies = ["multipart-post"];
+ dependencies = ["faraday-net_http" "multipart-post" "ruby2_keywords"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0wwks9652xwgjm7yszcq5xr960pjypc07ivwzbjzpvy9zh2fw6iq";
+ sha256 = "1hmssd8pj4n7yq4kz834ylkla8ryyvhaap6q9nzymp93m1xq21kz";
type = "gem";
};
- version = "1.0.1";
+ version = "1.3.0";
};
faraday-cookie_jar = {
dependencies = ["faraday" "http-cookie"];
@@ -233,10 +234,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1di4gx6446a6zdkrpj679m5k515i53wvb4yxcsqvy8d8zacxiiv6";
+ sha256 = "00hligx26w9wdnpgsrf0qdnqld4rdccy8ym6027h5m735mpvxjzk";
type = "gem";
};
- version = "0.0.6";
+ version = "0.0.7";
+ };
+ faraday-net_http = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1kk5d1c5nxbmwawl5gcznwiscjz24nz3vdhxrlzvj7748c1qqr6d";
+ type = "gem";
+ };
+ version = "1.0.0";
};
faraday_middleware = {
dependencies = ["faraday"];
@@ -254,21 +265,21 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "06lgsy1zdkhhgd9w1c0nb7v9d38mljwz13n6gi3acbzkhz1sf642";
+ sha256 = "1vqp53s9vgd28f4l17q0vs7xv32y64af0ny3wb1fgg4i534rzg6j";
type = "gem";
};
- version = "2.1.7";
+ version = "2.2.1";
};
fastlane = {
- dependencies = ["CFPropertyList" "addressable" "aws-sdk-s3" "babosa" "colored" "commander-fastlane" "dotenv" "emoji_regex" "excon" "faraday" "faraday-cookie_jar" "faraday_middleware" "fastimage" "gh_inspector" "google-api-client" "google-cloud-storage" "highline" "json" "jwt" "mini_magick" "multi_xml" "multipart-post" "plist" "public_suffix" "rubyzip" "security" "simctl" "slack-notifier" "terminal-notifier" "terminal-table" "tty-screen" "tty-spinner" "word_wrap" "xcodeproj" "xcpretty" "xcpretty-travis-formatter"];
+ dependencies = ["CFPropertyList" "addressable" "aws-sdk-s3" "babosa" "colored" "commander-fastlane" "dotenv" "emoji_regex" "excon" "faraday" "faraday-cookie_jar" "faraday_middleware" "fastimage" "gh_inspector" "google-api-client" "google-cloud-storage" "highline" "json" "jwt" "mini_magick" "multipart-post" "plist" "rubyzip" "security" "simctl" "slack-notifier" "terminal-notifier" "terminal-table" "tty-screen" "tty-spinner" "word_wrap" "xcodeproj" "xcpretty" "xcpretty-travis-formatter"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1jss8cpcngwrmpck6ncijksrfcj5csgljwn2rmqv9gx1azj4mlgv";
+ sha256 = "1h921zfck75f5b50z9jxnhanf8q9d58n122ffnpd1980q5w912rp";
type = "gem";
};
- version = "2.148.1";
+ version = "2.171.0";
};
gh_inspector = {
groups = ["default"];
@@ -308,20 +319,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0rbascsddvwsq827fj4m2daqh0l3ghmdlbbhy48clgaysapaz685";
+ sha256 = "0bjgxyvagy6hjj8yg7fqq24rwdjxb6hx7fdd1bmn4mwd846lci2i";
type = "gem";
};
- version = "1.3.1";
+ version = "1.4.0";
};
google-cloud-errors = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0nl08lhgjvz3g7nsarn9nnsck0k3dg8mwg4awcnklnzpvs62b4ih";
+ sha256 = "1hvs1x39g77hbdqjxmzcl6gq8160pv3kskvzbbch0ww1np6qwm67";
type = "gem";
};
- version = "1.0.0";
+ version = "1.0.1";
};
google-cloud-storage = {
dependencies = ["addressable" "digest-crc" "google-api-client" "google-cloud-core" "googleauth" "mini_mime"];
@@ -329,10 +340,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1wdnd5wisbrlivapdr7bcg8v59hayqz3q5qiqs0628g371lwx30k";
+ sha256 = "0dy5f00jsnd6id7bkc03pl2d6c78rl3lkysdn0f90padys5id1k5";
type = "gem";
};
- version = "1.26.1";
+ version = "1.29.2";
};
googleauth = {
dependencies = ["faraday" "jwt" "memoist" "multi_json" "os" "signet"];
@@ -340,10 +351,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0rsk471ld98pxhvzig3lnw9i13454c9nschvzxvq6vjqnn9ip0yh";
+ sha256 = "0cm60nbmwzf83fzy06f3iyn5a6sw91siw8x9bdvpwwmjsmivana6";
type = "gem";
};
- version = "0.12.0";
+ version = "0.14.0";
};
highline = {
groups = ["default"];
@@ -391,20 +402,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0nrmw2r4nfxlfgprfgki3hjifgrcrs3l5zvm3ca3gb4743yr25mn";
+ sha256 = "0lrirj0gw420kw71bjjlqkqhqbrplla61gbv1jzgsz6bv90qr3ci";
type = "gem";
};
- version = "2.3.0";
+ version = "2.5.1";
};
jwt = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1w0kaqrbl71cq9sbnixc20x5lqah3hs2i93xmhlfdg2y3by7yzky";
+ sha256 = "14ynyq1q483spj20ffl4xayfqx1a8qr761mqjfxczf8lwlap392n";
type = "gem";
};
- version = "2.1.0";
+ version = "2.2.2";
};
memoist = {
groups = ["default"];
@@ -421,10 +432,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0lpq12z70n10c1qshcddd5nib2pkcbkwzvmiqqzj60l01k3x4fg9";
+ sha256 = "1aj604x11d9pksbljh0l38f70b558rhdgji1s9i763hiagvvx2hs";
type = "gem";
};
- version = "4.10.1";
+ version = "4.11.0";
};
mini_mime = {
groups = ["default"];
@@ -441,20 +452,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0xy54mjf7xg41l8qrg1bqri75agdqmxap9z466fjismc1rn2jwfr";
+ sha256 = "0pb1g1y3dsiahavspyzkdy39j4q377009f6ix0bh1ag4nqw43l0z";
type = "gem";
};
- version = "1.14.1";
- };
- multi_xml = {
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0lmd4f401mvravi1i1yq7b2qjjli0yq7dfc4p1nj5nwajp7r6hyj";
- type = "gem";
- };
- version = "0.6.0";
+ version = "1.15.0";
};
multipart-post = {
groups = ["default"];
@@ -471,10 +472,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ajfyaqjw3dzykk612yw8sm21savfqy292hgps8h8l4lvxww1lz6";
+ sha256 = "0xi36h3f7nm8bc2k0b6svpda1lyank2gf872lxjbhw3h95hdrbma";
type = "gem";
};
- version = "0.2.6";
+ version = "0.3.0";
};
naturally = {
groups = ["default"];
@@ -491,30 +492,40 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0xnynckvrn9ailkmkrmkldnpv8hmmbdwxr7c7iz27cl1cpcdd49n";
+ sha256 = "12fli64wz5j9868gpzv5wqsingk1jk457qyqksv9ksmq9b0zpc9x";
type = "gem";
};
- version = "1.1.0";
+ version = "1.1.1";
};
plist = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ra0910xxbhfsmdi0ig36pr3q0khdqzwb5da3wg7y3n8d1sh9ffp";
+ sha256 = "1whhr897z6z6av85x2cipyjk46bwh6s4wx6nbrcd3iifnzvbqs7l";
type = "gem";
};
- version = "3.5.0";
+ version = "3.6.0";
};
public_suffix = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "040jf98jpp6w140ghkhw2hvc1qx41zvywx5gj7r2ylr1148qnj7q";
+ sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9";
type = "gem";
};
- version = "2.0.5";
+ version = "4.0.6";
+ };
+ rake = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1iik52mf9ky4cgs38fp2m8r6skdkq1yz23vh18lk95fhbcxb6a67";
+ type = "gem";
+ };
+ version = "13.0.3";
};
representable = {
dependencies = ["declarative" "declarative-option" "uber"];
@@ -547,15 +558,25 @@
};
version = "2.0.7";
};
+ ruby2_keywords = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "17pcc0wgvh3ikrkr7bm3nx0qhyiqwidd13ij0fa50k7gsbnr2p0l";
+ type = "gem";
+ };
+ version = "0.0.2";
+ };
rubyzip = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1qxc2zxwwipm6kviiar4gfhcakpx1jdcs89v6lvzivn5hq1xk78l";
+ sha256 = "0590m2pr9i209pp5z4mx0nb1961ishdiqb28995hw1nln1d1b5ji";
type = "gem";
};
- version = "1.3.0";
+ version = "2.3.0";
};
security = {
groups = ["default"];
@@ -635,10 +656,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1jwgr2i3wilng3mx851xczmkzllbirmsmr42ik4amqyyvry1yzyf";
+ sha256 = "18jr6s1cg8yb26wzkqa6874q0z93rq0y5aw092kdqazk71y6a235";
type = "gem";
};
- version = "0.7.1";
+ version = "0.8.1";
};
tty-spinner = {
dependencies = ["tty-cursor"];
@@ -708,10 +729,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1bkk8y6lzd86w9yx72hd1nil3fkk5f0v3il9vm554gzpl6dhc2bi";
+ sha256 = "1411j6sfnz0cx4fiw52f0yqx4bgcn8cmpgi3i5rwmmahayyjz2fn";
type = "gem";
};
- version = "1.16.0";
+ version = "1.19.0";
};
xcpretty = {
dependencies = ["rouge"];
@@ -730,9 +751,9 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "15b5c0lxz2blmichfdlabzlbyw5nlh1ci898pxwb661m9bahz3ml";
+ sha256 = "14rg4f70klrs910n7rsgfa4dn8s2qyny55194ax2qyyb2wpk7k5a";
type = "gem";
};
- version = "1.0.0";
+ version = "1.0.1";
};
}
\ No newline at end of file
diff --git a/pkgs/tools/backup/grab-site/default.nix b/pkgs/tools/backup/grab-site/default.nix
index e69823ab45d6..7ef1f110b696 100644
--- a/pkgs/tools/backup/grab-site/default.nix
+++ b/pkgs/tools/backup/grab-site/default.nix
@@ -1,5 +1,4 @@
{ stdenv, python37, fetchFromGitHub }:
-
let
python = python37.override {
self = python;
@@ -8,19 +7,32 @@ let
};
};
-in with python.pkgs; buildPythonApplication rec {
- version = "2.1.19";
- name = "grab-site-${version}";
+in
+with python.pkgs; buildPythonApplication rec {
+ pname = "grab-site";
+ version = "2.2.0";
src = fetchFromGitHub {
rev = version;
owner = "ArchiveTeam";
repo = "grab-site";
- sha256 = "1v1hnhv5knzdl0kj3574ccwlh171vcb7faddp095ycdmiiybalk4";
+ sha256 = "1jxcv9dral6h7vfpfqkp1yif6plj0vspzakymkj8hfl75nh0wpv8";
};
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace '"wpull @ https://github.com/ArchiveTeam/ludios_wpull/tarball/master#egg=wpull-3.0.7"' '"wpull"'
+ '';
+
propagatedBuildInputs = [
- click ludios_wpull manhole lmdb autobahn fb-re2 websockets cchardet
+ click
+ ludios_wpull
+ manhole
+ lmdb
+ autobahn
+ fb-re2
+ websockets
+ cchardet
];
checkPhase = ''
diff --git a/pkgs/tools/backup/s3ql/default.nix b/pkgs/tools/backup/s3ql/default.nix
index 346f8d279646..7e4cc66278cb 100644
--- a/pkgs/tools/backup/s3ql/default.nix
+++ b/pkgs/tools/backup/s3ql/default.nix
@@ -14,7 +14,7 @@ python3Packages.buildPythonApplication rec {
checkInputs = [ which ] ++ (with python3Packages; [ cython pytest ]);
propagatedBuildInputs = with python3Packages; [
sqlite apsw pycrypto requests defusedxml dugong llfuse
- cython pytest pytest-catchlog google_auth google-auth-oauthlib
+ cython pytest pytest-catchlog google-auth google-auth-oauthlib
];
preBuild = ''
diff --git a/pkgs/tools/backup/wal-e/default.nix b/pkgs/tools/backup/wal-e/default.nix
index a6d5b6b48010..b3e9bfd56c0f 100644
--- a/pkgs/tools/backup/wal-e/default.nix
+++ b/pkgs/tools/backup/wal-e/default.nix
@@ -17,7 +17,7 @@ python3Packages.buildPythonApplication rec {
propagatedBuildInputs = (with python3Packages; [
boto
gevent
- google_cloud_storage
+ google-cloud-storage
]) ++ [
postgresql
lzop
diff --git a/pkgs/tools/compression/brotli/default.nix b/pkgs/tools/compression/brotli/default.nix
index f4f0ac41563a..62873569aae1 100644
--- a/pkgs/tools/compression/brotli/default.nix
+++ b/pkgs/tools/compression/brotli/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, fetchFromGitHub, cmake, fetchpatch, staticOnly ? false }:
+{ stdenv, fetchFromGitHub, cmake, fetchpatch
+, staticOnly ? stdenv.hostPlatform.isStatic
+}:
# ?TODO: there's also python lib in there
diff --git a/pkgs/tools/compression/zstd/default.nix b/pkgs/tools/compression/zstd/default.nix
index 913a94e1a003..b7e068330a13 100644
--- a/pkgs/tools/compression/zstd/default.nix
+++ b/pkgs/tools/compression/zstd/default.nix
@@ -2,7 +2,7 @@
, fixDarwinDylibNames
, file
, legacySupport ? false
-, static ? false
+, static ? stdenv.hostPlatform.isStatic
}:
stdenv.mkDerivation rec {
diff --git a/pkgs/tools/filesystems/e2fsprogs/default.nix b/pkgs/tools/filesystems/e2fsprogs/default.nix
index f846bf1f2001..f26a41ce1426 100644
--- a/pkgs/tools/filesystems/e2fsprogs/default.nix
+++ b/pkgs/tools/filesystems/e2fsprogs/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo, shared ? true }:
+{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo
+, shared ? !stdenv.hostPlatform.isStatic
+}:
stdenv.mkDerivation rec {
pname = "e2fsprogs";
diff --git a/pkgs/tools/graphics/fim/default.nix b/pkgs/tools/graphics/fim/default.nix
index 6a3d9a29db37..9a3163951d24 100644
--- a/pkgs/tools/graphics/fim/default.nix
+++ b/pkgs/tools/graphics/fim/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, autoconf, automake, pkgconfig
+{ gcc9Stdenv, fetchurl, autoconf, automake, pkgconfig, lib
, perl, flex, bison, readline, libexif
, x11Support ? true, SDL
, svgSupport ? true, inkscape
@@ -9,7 +9,7 @@
, pngSupport ? true, libpng
}:
-stdenv.mkDerivation rec {
+gcc9Stdenv.mkDerivation rec {
pname = "fim";
version = "0.6";
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoconf automake pkgconfig ];
- buildInputs = with stdenv.lib;
+ buildInputs = with lib;
[ perl flex bison readline libexif ]
++ optional x11Support SDL
++ optional svgSupport inkscape
@@ -35,9 +35,9 @@ stdenv.mkDerivation rec {
++ optional jpegSupport libjpeg
++ optional pngSupport libpng;
- NIX_CFLAGS_COMPILE = stdenv.lib.optionalString x11Support "-lSDL";
+ NIX_CFLAGS_COMPILE = lib.optionalString x11Support "-lSDL";
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "A lightweight, highly customizable and scriptable image viewer";
longDescription = ''
FIM (Fbi IMproved) is a lightweight, console based image viewer that aims
diff --git a/pkgs/tools/graphics/gifsicle/default.nix b/pkgs/tools/graphics/gifsicle/default.nix
index 007ba0f99720..72220fab4803 100644
--- a/pkgs/tools/graphics/gifsicle/default.nix
+++ b/pkgs/tools/graphics/gifsicle/default.nix
@@ -1,4 +1,7 @@
-{ stdenv, fetchurl, xorgproto, libXt, libX11, gifview ? false, static ? false }:
+{ stdenv, fetchurl, xorgproto, libXt, libX11
+, gifview ? false
+, static ? stdenv.hostPlatform.isStatic
+}:
with stdenv.lib;
diff --git a/pkgs/tools/graphics/luxcorerender/default.nix b/pkgs/tools/graphics/luxcorerender/default.nix
index 29aea9d50970..edce992a6037 100644
--- a/pkgs/tools/graphics/luxcorerender/default.nix
+++ b/pkgs/tools/graphics/luxcorerender/default.nix
@@ -4,7 +4,7 @@
, dbus, doxygen, qt5, c-blosc, libGLU, gnome3, dconf, gtk3, pcre
, bison, flex, libpthreadstubs, libX11
, embree2, makeWrapper, gsettings-desktop-schemas, glib
-, withOpenCL ? true , opencl-headers, ocl-icd, opencl-clhpp
+, withOpenCL ? true , opencl-headers, ocl-icd, opencl-clhpp, rocm-opencl-runtime
}:
let
@@ -31,18 +31,18 @@ in stdenv.mkDerivation {
};
nativeBuildInputs = [ cmake flex bison doxygen makeWrapper pkg-config ];
- buildInputs =
- [ embree2 zlib boost_static libjpeg
- libtiff libpng ilmbase freetype openexr openimageio
- tbb qt5.full c-blosc libGLU pcre
- libX11 libpthreadstubs python libXdmcp libxkbcommon
- epoxy at-spi2-core dbus
- # needed for GSETTINGS_SCHEMAS_PATH
- gsettings-desktop-schemas glib gtk3
- # needed for XDG_ICON_DIRS
- gnome3.adwaita-icon-theme
- (stdenv.lib.getLib dconf)
- ] ++ stdenv.lib.optionals withOpenCL [opencl-headers ocl-icd opencl-clhpp];
+ buildInputs = [
+ embree2 zlib boost_static libjpeg
+ libtiff libpng ilmbase freetype openexr openimageio
+ tbb qt5.full c-blosc libGLU pcre
+ libX11 libpthreadstubs python libXdmcp libxkbcommon
+ epoxy at-spi2-core dbus
+ # needed for GSETTINGS_SCHEMAS_PATH
+ gsettings-desktop-schemas glib gtk3
+ # needed for XDG_ICON_DIRS
+ gnome3.adwaita-icon-theme
+ (stdenv.lib.getLib dconf)
+ ] ++ stdenv.lib.optionals withOpenCL [ opencl-headers ocl-icd opencl-clhpp rocm-opencl-runtime ];
cmakeFlags = [
"-DOpenEXR_Iex_INCLUDE_DIR=${openexr.dev}/include/OpenEXR"
@@ -55,7 +55,8 @@ in stdenv.mkDerivation {
"-DEMBREE_LIBRARY=${embree2}/lib/libembree.so"
"-DBoost_PYTHON_LIBRARY_RELEASE=${boost_static}/lib/libboost_python3-mt.so"
] ++ stdenv.lib.optional withOpenCL
- "-DOPENCL_INCLUDE_DIR=${opencl-headers}/include";
+ "-DOPENCL_INCLUDE_DIR=${opencl-headers}/include";
+
preConfigure = ''
NIX_CFLAGS_COMPILE+=" -isystem ${python}/include/python${python.pythonVersion}"
NIX_LDFLAGS+=" -lpython3"
diff --git a/pkgs/tools/inputmethods/evdevremapkeys/default.nix b/pkgs/tools/inputmethods/evdevremapkeys/default.nix
index 0dc6f6739257..d70bf80d1ce2 100644
--- a/pkgs/tools/inputmethods/evdevremapkeys/default.nix
+++ b/pkgs/tools/inputmethods/evdevremapkeys/default.nix
@@ -1,11 +1,8 @@
{ stdenv, fetchFromGitHub, python3Packages }:
-let
- pythonPackages = python3Packages;
-
-in pythonPackages.buildPythonPackage rec {
- name = "${pname}-0.1.0";
+python3Packages.buildPythonPackage rec {
pname = "evdevremapkeys";
+ version = "0.1.0";
src = fetchFromGitHub {
owner = "philipl";
@@ -14,13 +11,18 @@ in pythonPackages.buildPythonPackage rec {
sha256 = "0c9slflakm5jqd8s1zpxm7gmrrk0335m040d7m70hnsak42jvs2f";
};
- propagatedBuildInputs = with pythonPackages; [
+ propagatedBuildInputs = with python3Packages; [
pyyaml
pyxdg
python-daemon
evdev
];
+ # hase no tests
+ doCheck = false;
+
+ pythonImportsCheck = [ "evdevremapkeys" ];
+
meta = with stdenv.lib; {
homepage = "https://github.com/philipl/evdevremapkeys";
description = "Daemon to remap events on linux input devices";
diff --git a/pkgs/tools/misc/foma/default.nix b/pkgs/tools/misc/foma/default.nix
new file mode 100644
index 000000000000..d5fed006173f
--- /dev/null
+++ b/pkgs/tools/misc/foma/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub, zlib, flex, bison, readline }:
+
+stdenv.mkDerivation rec {
+ pname = "foma";
+ version = "0.9.18alpha";
+
+ src = fetchFromGitHub {
+ owner = "mhulden";
+ repo = "foma";
+ rev = "4456a40e81f46e3fe909c5a97a15fcf1d2a3b6c1";
+ sha256 = "188yxj8wahlj2yf93rj1vx549j5cq0085d2jmj3vwzbfjq1mi1f0";
+ };
+
+ sourceRoot = "source/foma";
+
+ nativeBuildInputs = [ flex bison ];
+ buildInputs = [ zlib readline ];
+
+ patchPhase = ''
+ substituteInPlace Makefile \
+ --replace '-ltermcap' ' ' \
+ --replace '/usr/local' '$(out)'
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A multi-purpose finite-state toolkit designed for applications ranging from natural language processing to research in automata theory";
+ homepage = "https://github.com/mhulden/foma";
+ license = licenses.asl20;
+ maintainers = [ maintainers.tckmn ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/tools/misc/fzf/default.nix b/pkgs/tools/misc/fzf/default.nix
index b114ee2373c1..837277a5c858 100644
--- a/pkgs/tools/misc/fzf/default.nix
+++ b/pkgs/tools/misc/fzf/default.nix
@@ -1,20 +1,28 @@
-{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses, perl }:
+{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses, perl, fetchpatch }:
buildGoModule rec {
pname = "fzf";
- version = "0.24.4";
+ version = "0.25.0";
src = fetchFromGitHub {
owner = "junegunn";
repo = pname;
rev = version;
- sha256 = "17k32wr70sp7ag69xww2q9mrgnzakgkjw6la04n3jlhfa5z37dzj";
+ sha256 = "1j5bfxl4w8w3n89p051y8dhxg0py9l98v7r2gkr63bg4lj32faz8";
};
vendorSha256 = "0dd0qm1fxp3jnlrhfaas8fw87cj7rygaac35a9nk3xh2xsk7q35p";
outputs = [ "out" "man" ];
+ patches = [
+ # Fix test failure on go 1.15
+ (fetchpatch {
+ url = "https://github.com/junegunn/fzf/commit/82791f7efccde5b30da0b4d44f10d214ae5c0c0d.patch";
+ sha256 = "1nybsz09h8cnvxjnkmx9c52g8z0x6pvrn230hw1va5a3pvmg01z1";
+ })
+ ];
+
fishHook = writeText "load-fzf-keybindings.fish" "fzf_key_bindings";
buildInputs = [ ncurses ];
@@ -24,7 +32,7 @@ buildGoModule rec {
];
# The vim plugin expects a relative path to the binary; patch it to abspath.
- patchPhase = ''
+ postPatch = ''
sed -i -e "s|expand(':h:h')|'$out'|" plugin/fzf.vim
if ! grep -q $out plugin/fzf.vim; then
diff --git a/pkgs/tools/misc/miniserve/default.nix b/pkgs/tools/misc/miniserve/default.nix
index 3e3c62fd0930..93338ddf27be 100644
--- a/pkgs/tools/misc/miniserve/default.nix
+++ b/pkgs/tools/misc/miniserve/default.nix
@@ -8,16 +8,16 @@
rustPlatform.buildRustPackage rec {
pname = "miniserve";
- version = "0.10.3";
+ version = "0.10.4";
src = fetchFromGitHub {
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
- sha256 = "17m0h0ib7fl0kijagcwdcnvrdcb6z3knix9dl17abg5ivbvkwz8q";
+ sha256 = "0hskb72gnp66vkyxsqnxhjcqgvjj7wbd2nm5wxp94abc5l1fiigv";
};
- cargoSha256 = "0ddc8b9wph4r1qcy24p8yiaq9s2knii0d7dh0w0qnzrn6cmm17dg";
+ cargoSha256 = "0s1gdngpf6gxz2lyapblxxmc6aydg2i9kmrfvngkbmqh4as1a2vl";
nativeBuildInputs = [ pkg-config zlib ];
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
diff --git a/pkgs/tools/misc/vorbisgain/default.nix b/pkgs/tools/misc/vorbisgain/default.nix
index fdb283d4dce9..78e860f216a8 100644
--- a/pkgs/tools/misc/vorbisgain/default.nix
+++ b/pkgs/tools/misc/vorbisgain/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
homepage = "https://sjeng.org/vorbisgain.html";
description = "A utility that corrects the volume of an Ogg Vorbis file to a predefined standardized loudness";
license = licenses.gpl2;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
};
}
diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix
index 0593e935599d..5821bcbe7866 100644
--- a/pkgs/tools/misc/youtube-dl/default.nix
+++ b/pkgs/tools/misc/youtube-dl/default.nix
@@ -63,6 +63,6 @@ buildPythonPackage rec {
'';
license = licenses.publicDomain;
platforms = with platforms; linux ++ darwin;
- maintainers = with maintainers; [ bluescreen303 phreedom AndersonTorres fpletz enzime ma27 zowoq ];
+ maintainers = with maintainers; [ bluescreen303 phreedom AndersonTorres fpletz ma27 zowoq ];
};
}
diff --git a/pkgs/tools/misc/ytree/default.nix b/pkgs/tools/misc/ytree/default.nix
index b8818ba6e5e3..9edd287776b1 100644
--- a/pkgs/tools/misc/ytree/default.nix
+++ b/pkgs/tools/misc/ytree/default.nix
@@ -6,15 +6,16 @@
stdenv.mkDerivation rec {
pname = "ytree";
- version = "2.02";
+ version = "2.03";
src = fetchurl {
url = "https://han.de/~werner/${pname}-${version}.tar.gz";
- sha256 = "1v70l244rc22f20gac1zha1smrhqkag45jn0iwgcyngfdfml3gz5";
+ sha256 = "sha256-WDqnFVLRNH4Oq+OaI2+loXS/Z93piHGFO5/iojO8rvE=";
};
buildInputs = [
- ncurses readline
+ ncurses
+ readline
];
# don't save timestamp, in order to improve reproducibility
diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix
index 82245f4cd26d..6f1c202a91cc 100644
--- a/pkgs/tools/networking/curl/default.nix
+++ b/pkgs/tools/networking/curl/default.nix
@@ -7,7 +7,8 @@
, gnutlsSupport ? false, gnutls ? null
, wolfsslSupport ? false, wolfssl ? null
, scpSupport ? zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin, libssh2 ? null
-, gssSupport ? !stdenv.hostPlatform.isWindows, libkrb5 ? null
+, # a very sad story re static: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=439039
+ gssSupport ? with stdenv.hostPlatform; !isWindows && !isStatic, libkrb5 ? null
, c-aresSupport ? false, c-ares ? null
, brotliSupport ? false, brotli ? null
}:
diff --git a/pkgs/tools/networking/rdrview/default.nix b/pkgs/tools/networking/rdrview/default.nix
new file mode 100644
index 000000000000..628bd9853415
--- /dev/null
+++ b/pkgs/tools/networking/rdrview/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, libxml2, curl, libseccomp }:
+
+stdenv.mkDerivation {
+ name = "rdrview";
+ version = "unstable-2020-12-22";
+
+ src = fetchFromGitHub {
+ owner = "eafer";
+ repo = "rdrview";
+ rev = "7be01fb36a6ab3311a9ad1c8c2c75bf5c1345d93";
+ sha256 = "00hnvrrrkyp5429rzcvabq2z00lp1l8wsqxw4h7qsdms707mjnxs";
+ };
+
+ buildInputs = [ libxml2 curl libseccomp ];
+
+ installPhase = ''
+ install -Dm755 rdrview -t $out/bin
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Command line tool to extract main content from a webpage";
+ homepage = "https://github.com/eafer/rdrview";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ djanatyn ];
+ };
+}
diff --git a/pkgs/tools/networking/tcpdump/default.nix b/pkgs/tools/networking/tcpdump/default.nix
index fd7b203fbbf4..fa555ad4f99c 100644
--- a/pkgs/tools/networking/tcpdump/default.nix
+++ b/pkgs/tools/networking/tcpdump/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libpcap, perl }:
+{ stdenv, fetchurl, libpcap, perl, fetchpatch }:
stdenv.mkDerivation rec {
pname = "tcpdump";
@@ -9,6 +9,14 @@ stdenv.mkDerivation rec {
sha256 = "0434vdcnbqaia672rggjzdn4bb8p8dchz559yiszzdk0sjrprm1c";
};
+ patches = [
+ # Patch for CVE-2020-8037
+ (fetchpatch {
+ url = "https://github.com/the-tcpdump-group/tcpdump/commit/32027e199368dad9508965aae8cd8de5b6ab5231.patch";
+ sha256 = "sha256-bO3aV032ru9+M/9isBRjmH8jTZLKj9Zf9ha2rmOaZwc=";
+ })
+ ];
+
postPatch = ''
patchShebangs tests
'';
diff --git a/pkgs/tools/package-management/nfpm/default.nix b/pkgs/tools/package-management/nfpm/default.nix
index f10b90d0173a..fff774d2aef4 100644
--- a/pkgs/tools/package-management/nfpm/default.nix
+++ b/pkgs/tools/package-management/nfpm/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "nfpm";
- version = "1.10.2";
+ version = "2.2.2";
src = fetchFromGitHub {
owner = "goreleaser";
repo = pname;
rev = "v${version}";
- sha256 = "08qz9zfk19iwf8qfv7vmzvbl8w1vpjrry25w3pxsg93gyjw8v7mi";
+ sha256 = "0qv7xw74hf4fzi7v40fpgjyf01dyz6665dmd2pacpd9n6klnr1h3";
};
- vendorSha256 = "0qnfd47ykb6g28d3mnfncgmkvqd1myx47x563sxx4lcsq542q83n";
+ vendorSha256 = "0mdh4qrafdxlqqh0kl7wil7w3g5p499qi3yiw8znjkd49g85ws3w";
doCheck = false;
diff --git a/pkgs/tools/package-management/nix-update/default.nix b/pkgs/tools/package-management/nix-update/default.nix
index 34f635936124..4d9365677ab7 100644
--- a/pkgs/tools/package-management/nix-update/default.nix
+++ b/pkgs/tools/package-management/nix-update/default.nix
@@ -7,13 +7,13 @@
buildPythonApplication rec {
pname = "nix-update";
- version = "0.3";
+ version = "0.3.1";
src = fetchFromGitHub {
owner = "Mic92";
repo = pname;
rev = version;
- sha256 = "sha256-cMllWFPK6pwqrocjkZKjnELIdtW4tj5Yu6AMw7Zd2JU=";
+ sha256 = "sha256-0icQi1HClLMVDOugKckF2J8tEDeMfmW5kgCItJ9n2eo=";
};
makeWrapperArgs = [
diff --git a/pkgs/tools/package-management/nix/aws-sdk-cpp-TransferManager-ContentEncoding.patch b/pkgs/tools/package-management/nix/aws-sdk-cpp-TransferManager-ContentEncoding.patch
new file mode 100644
index 000000000000..59cc305a60bc
--- /dev/null
+++ b/pkgs/tools/package-management/nix/aws-sdk-cpp-TransferManager-ContentEncoding.patch
@@ -0,0 +1,127 @@
+From 7d58e303159b2fb343af9a1ec4512238efa147c7 Mon Sep 17 00:00:00 2001
+From: Eelco Dolstra
+Date: Mon, 6 Aug 2018 17:15:04 +0200
+Subject: [PATCH] TransferManager: Allow setting a content-encoding for S3 uploads
+
+--- a/aws-cpp-sdk-transfer/include/aws/transfer/TransferHandle.h
++++ b/aws-cpp-sdk-transfer/include/aws/transfer/TransferHandle.h
+@@ -297,6 +297,14 @@ namespace Aws
+ * Content type of the object being transferred
+ */
+ inline void SetContentType(const Aws::String& value) { std::lock_guard locker(m_getterSetterLock); m_contentType = value; }
++ /**
++ * Content encoding of the object being transferred
++ */
++ inline const Aws::String GetContentEncoding() const { std::lock_guard locker(m_getterSetterLock); return m_contentEncoding; }
++ /**
++ * Content type of the object being transferred
++ */
++ inline void SetContentEncoding(const Aws::String& value) { std::lock_guard locker(m_getterSetterLock); m_contentEncoding = value; }
+ /**
+ * In case of an upload, this is the metadata that was placed on the object when it was uploaded.
+ * In the case of a download, this is the object metadata from the GetObject operation.
+@@ -383,6 +391,7 @@ namespace Aws
+ Aws::String m_key;
+ Aws::String m_fileName;
+ Aws::String m_contentType;
++ Aws::String m_contentEncoding;
+ Aws::String m_versionId;
+ Aws::Map m_metadata;
+ TransferStatus m_status;
+--- a/aws-cpp-sdk-transfer/include/aws/transfer/TransferManager.h
++++ b/aws-cpp-sdk-transfer/include/aws/transfer/TransferManager.h
+@@ -154,7 +154,8 @@ namespace Aws
+ const Aws::String& keyName,
+ const Aws::String& contentType,
+ const Aws::Map& metadata,
+- const std::shared_ptr& context = nullptr);
++ const std::shared_ptr& context = nullptr,
++ const Aws::String& contentEncoding = "");
+
+ /**
+ * Downloads the contents of bucketName/keyName in S3 to the file specified by writeToFile. This will perform a GetObject operation.
+@@ -246,7 +247,8 @@ namespace Aws
+ const Aws::Map& metadata,
+ const std::shared_ptr& context,
+- const Aws::String& fileName = "");
++ const Aws::String& fileName = "",
++ const Aws::String& contentEncoding = "");
+
+ /**
+ * Submits the actual task to task schecduler
+@@ -262,7 +264,8 @@ namespace Aws
+ const Aws::String& keyName,
+ const Aws::String& contentType,
+ const Aws::Map& metadata,
+- const std::shared_ptr& context);
++ const std::shared_ptr& context,
++ const Aws::String& contentEncoding);
+
+ /**
+ * Uploads the contents of file, to bucketName/keyName in S3. contentType and metadata will be added to the object. If the object is larger than the configured bufferSize,
+--- a/aws-cpp-sdk-transfer/source/transfer/TransferManager.cpp
++++ b/aws-cpp-sdk-transfer/source/transfer/TransferManager.cpp
+@@ -87,9 +87,10 @@ namespace Aws
+ const Aws::String& bucketName,
+ const Aws::String& keyName, const Aws::String& contentType,
+ const Aws::Map& metadata,
+- const std::shared_ptr& context)
++ const std::shared_ptr& context,
++ const Aws::String& contentEncoding)
+ {
+- return this->DoUploadFile(fileStream, bucketName, keyName, contentType, metadata, context);
++ return this->DoUploadFile(fileStream, bucketName, keyName, contentType, metadata, context, contentEncoding);
+ }
+
+ std::shared_ptr TransferManager::DownloadFile(const Aws::String& bucketName,
+@@ -286,6 +287,9 @@ namespace Aws
+ createMultipartRequest.WithKey(handle->GetKey());
+ createMultipartRequest.WithMetadata(handle->GetMetadata());
+
++ if (handle->GetContentEncoding() != "")
++ createMultipartRequest.WithContentEncoding(handle->GetContentEncoding());
++
+ auto createMultipartResponse = m_transferConfig.s3Client->CreateMultipartUpload(createMultipartRequest);
+ if (createMultipartResponse.IsSuccess())
+ {
+@@ -441,6 +445,9 @@ namespace Aws
+
+ putObjectRequest.SetContentType(handle->GetContentType());
+
++ if (handle->GetContentEncoding() != "")
++ putObjectRequest.SetContentEncoding(handle->GetContentEncoding());
++
+ auto buffer = m_bufferManager.Acquire();
+
+ auto lengthToWrite = (std::min)(m_transferConfig.bufferSize, handle->GetBytesTotalSize());
+@@ -1140,12 +1147,15 @@ namespace Aws
+ const Aws::String& contentType,
+ const Aws::Map& metadata,
+ const std::shared_ptr& context,
+- const Aws::String& fileName)
++ const Aws::String& fileName,
++ const Aws::String& contentEncoding)
+ {
+ auto handle = Aws::MakeShared(CLASS_TAG, bucketName, keyName, 0, fileName);
+ handle->SetContentType(contentType);
+ handle->SetMetadata(metadata);
+ handle->SetContext(context);
++ if (contentEncoding != "")
++ handle->SetContentEncoding(contentEncoding);
+
+ if (!fileStream->good())
+ {
+@@ -1213,9 +1223,10 @@ namespace Aws
+ const Aws::String& keyName,
+ const Aws::String& contentType,
+ const Aws::Map& metadata,
+- const std::shared_ptr& context)
++ const std::shared_ptr& context,
++ const Aws::String& contentEncoding)
+ {
+- auto handle = CreateUploadFileHandle(fileStream.get(), bucketName, keyName, contentType, metadata, context);
++ auto handle = CreateUploadFileHandle(fileStream.get(), bucketName, keyName, contentType, metadata, context, "", contentEncoding);
+ return SubmitUpload(handle, fileStream);
+ }
+
diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix
index 868be79c1a49..d997a0a87d61 100644
--- a/pkgs/tools/package-management/nix/default.nix
+++ b/pkgs/tools/package-management/nix/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchurl, fetchpatch, fetchFromGitHub, callPackage
+{ lib, fetchurl, fetchFromGitHub, fetchpatch, callPackage
, storeDir ? "/nix/store"
, stateDir ? "/nix/var"
, confDir ? "/etc"
@@ -8,7 +8,7 @@
let
common =
- { lib, stdenv, fetchpatch, perl, curl, bzip2, sqlite, openssl ? null, xz
+ { lib, stdenv, perl, curl, bzip2, sqlite, openssl ? null, xz
, bash, coreutils, gzip, gnutar
, pkgconfig, boehmgc, perlPackages, libsodium, brotli, boost, editline, nlohmann_json
, autoreconfHook, autoconf-archive, bison, flex
@@ -23,8 +23,8 @@ common =
, withLibseccomp ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) libseccomp.meta.platforms, libseccomp
, withAWS ? !enableStatic && (stdenv.isLinux || stdenv.isDarwin), aws-sdk-cpp
, enableStatic ? stdenv.hostPlatform.isStatic
- , name, suffix ? "", src, patches ? []
-
+ , name, suffix ? "", src
+ , patches ? [ ]
}:
let
sh = busybox-sandbox-shell;
@@ -60,10 +60,9 @@ common =
apis = ["s3" "transfer"];
customMemoryManagement = false;
}).overrideDerivation (args: {
- patches = args.patches or [] ++ [(fetchpatch {
- url = "https://github.com/edolstra/aws-sdk-cpp/commit/7d58e303159b2fb343af9a1ec4512238efa147c7.patch";
- sha256 = "103phn6kyvs1yc7fibyin3lgxz699qakhw671kl207484im55id1";
- })];
+ patches = args.patches or [] ++ [
+ ./aws-sdk-cpp-TransferManager-ContentEncoding.patch
+ ];
}));
propagatedBuildInputs = [ boehmgc ];
@@ -199,18 +198,25 @@ in rec {
sha256 = "a8a85e55de43d017abbf13036edfb58674ca136691582f17080c1cd12787b7ab";
};
+ patches = [(
+ fetchpatch {
+ url = "https://github.com/NixOS/nix/pull/4316.patch";
+ sha256 = "0bqlm4n9sac9prgr9xlfng92arisp1hiqvc9pfh4fibsppkgdfc5";
+ }
+ )];
+
inherit storeDir stateDir confDir boehmgc;
});
nixUnstable = lib.lowPrio (callPackage common rec {
name = "nix-2.4${suffix}";
- suffix = "pre20201201_5a6ddb3";
+ suffix = "pre20201205_a5d85d0";
src = fetchFromGitHub {
owner = "NixOS";
repo = "nix";
- rev = "5a6ddb3de14a1684af6c793d663764d093fa7846";
- sha256 = "0qhd3nxvqzszzsfvh89xhd239ycqb0kq2n0bzh9br78pcb60vj3g";
+ rev = "a5d85d07faa94cf3518e98273be4bee3d495f06a";
+ sha256 = "0g9jjhh0vs4hjrff5yx88x6sh7rk87ngvni3gnyxajqia957dipg";
};
patches = [
diff --git a/pkgs/tools/security/grype/default.nix b/pkgs/tools/security/grype/default.nix
new file mode 100644
index 000000000000..9786fd416630
--- /dev/null
+++ b/pkgs/tools/security/grype/default.nix
@@ -0,0 +1,35 @@
+{ buildGoModule
+, docker
+, fetchFromGitHub
+, stdenv
+}:
+
+buildGoModule rec {
+ pname = "grype";
+ version = "0.6.1";
+
+ src = fetchFromGitHub {
+ owner = "anchore";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0schq11vckvdj538mnkdzhxl452nrssqrfapab9qc44yxdi1wf8k";
+ };
+
+ vendorSha256 = "0lna7zhsj3wnw83nv0dp93aj869pplb51gqzrkka7vnqp0rjcw50";
+
+ propagatedBuildInputs = [ docker ];
+
+ # tests require a running Docker instance
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Vulnerability scanner for container images and filesystems";
+ longDescription = ''
+ As a vulnerability scanner is grype abale to scan the contents of a container
+ image or filesystem to find known vulnerabilities.
+ '';
+ homepage = "https://github.com/anchore/grype";
+ license = with licenses; [ asl20 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/security/stegseek/default.nix b/pkgs/tools/security/stegseek/default.nix
new file mode 100644
index 000000000000..b3d518a719fa
--- /dev/null
+++ b/pkgs/tools/security/stegseek/default.nix
@@ -0,0 +1,44 @@
+{ stdenv
+, cmake
+, fetchFromGitHub
+, libjpeg
+, libmcrypt
+, libmhash
+, libtool
+, zlib
+}:
+
+stdenv.mkDerivation rec {
+ pname = "stegseek";
+ version = "0.5";
+
+ src = fetchFromGitHub {
+ owner = "RickdeJager";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "19hzr5533b607ihmjj71x682qjr45s75cqxh9zap21z16346ahqn";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ buildInputs = [
+ libjpeg
+ libmcrypt
+ libmhash
+ libtool
+ zlib
+ ];
+
+ doCheck = true;
+
+ meta = with stdenv.lib; {
+ description = "Tool to crack steganography";
+ longDescription = ''
+ Stegseek is a lightning fast steghide cracker that can be
+ used to extract hidden data from files.
+ '';
+ homepage = "https://github.com/RickdeJager/stegseek";
+ license = with licenses; [ gpl2Only ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/security/tor/default.nix b/pkgs/tools/security/tor/default.nix
index 04bf598d132a..e46fd4790a31 100644
--- a/pkgs/tools/security/tor/default.nix
+++ b/pkgs/tools/security/tor/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl, pkgconfig, libevent, openssl, zlib, torsocks
, libseccomp, systemd, libcap, lzma, zstd, scrypt, nixosTests
+, writeShellScript
# for update.nix
, writeScript
@@ -12,7 +13,21 @@
, gnused
, nix
}:
+let
+ tor-client-auth-gen = writeShellScript "tor-client-auth-gen" ''
+ PATH="${stdenv.lib.makeBinPath [coreutils gnugrep openssl]}"
+ pem="$(openssl genpkey -algorithm x25519)"
+ printf private_key=descriptor:x25519:
+ echo "$pem" | grep -v " PRIVATE KEY" |
+ base64 -d | tail --bytes=32 | base32 | tr -d =
+
+ printf public_key=descriptor:x25519:
+ echo "$pem" | openssl pkey -in /dev/stdin -pubout |
+ grep -v " PUBLIC KEY" |
+ base64 -d | tail --bytes=32 | base32 | tr -d =
+ '';
+in
stdenv.mkDerivation rec {
pname = "tor";
version = "0.4.4.6";
@@ -52,6 +67,7 @@ stdenv.mkDerivation rec {
mkdir -p $geoip/share/tor
mv $out/share/tor/geoip{,6} $geoip/share/tor
rm -rf $out/share/tor
+ ln -s ${tor-client-auth-gen} $out/bin/tor-client-auth-gen
'';
passthru = {
diff --git a/pkgs/tools/security/urlhunter/default.nix b/pkgs/tools/security/urlhunter/default.nix
new file mode 100644
index 000000000000..239eabbe8b36
--- /dev/null
+++ b/pkgs/tools/security/urlhunter/default.nix
@@ -0,0 +1,29 @@
+{ buildGoModule
+, fetchFromGitHub
+, stdenv
+}:
+
+buildGoModule rec {
+ pname = "urlhunter";
+ version = "0.1.1";
+
+ src = fetchFromGitHub {
+ owner = "utkusen";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0ph0pwfd8bb5499bsx3bd8sqhn69y00zk32ayc3n61gpcc6rmvn7";
+ };
+
+ vendorSha256 = "165kplaqigis0anafvzfqzwc3jjhsn2mwgf4phb4ck75n3yf85ys";
+
+ meta = with stdenv.lib; {
+ description = "Recon tool that allows searching shortened URLs";
+ longDescription = ''
+ urlhunter is a recon tool that allows searching on URLs that are
+ exposed via shortener services such as bit.ly and goo.gl.
+ '';
+ homepage = "https://github.com/utkusen/urlhunter";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/tools/security/vault/default.nix b/pkgs/tools/security/vault/default.nix
index 4b460e74024b..d1d16a89d460 100644
--- a/pkgs/tools/security/vault/default.nix
+++ b/pkgs/tools/security/vault/default.nix
@@ -2,13 +2,13 @@
buildGoPackage rec {
pname = "vault";
- version = "1.6.0";
+ version = "1.6.1";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "vault";
rev = "v${version}";
- sha256 = "13fasdiijxy87m33wfyd8gylyz556i0bdd7xp706ip2fcckrmz7a";
+ sha256 = "1pgyyl2zgnr3wy4k8c5xsk2s5dpl97xdfq67lpfss7fz1bij8x47";
};
goPackagePath = "github.com/hashicorp/vault";
diff --git a/pkgs/tools/security/vault/vault-bin.nix b/pkgs/tools/security/vault/vault-bin.nix
index 805afe89d31a..01bb80f518a9 100644
--- a/pkgs/tools/security/vault/vault-bin.nix
+++ b/pkgs/tools/security/vault/vault-bin.nix
@@ -1,26 +1,26 @@
{ stdenv, fetchurl, unzip }:
let
- version = "1.6.0";
+ version = "1.6.1";
sources = let
base = "https://releases.hashicorp.com/vault/${version}";
in {
x86_64-linux = fetchurl {
url = "${base}/vault_${version}_linux_amd64.zip";
- sha256 = "0fay6bw31x9kxmc52sh5qp63nfkwji74fbnlx8pj3smz3qnqw143";
+ sha256 = "1la2pylcj9y5gr7hr4aaa49427y3lgxi2phhl46pqmr7an62pkbm";
};
i686-linux = fetchurl {
url = "${base}/vault_${version}_linux_386.zip";
- sha256 = "0bjks9lpgl39cq55c9cyc0glhmyxzs37a2an8ynzza94gv5mgcxa";
+ sha256 = "1a2rhv5bpv43qp74a49msrwr7djzy86irsn73jl0xnkh0k6ijci1";
};
x86_64-darwin = fetchurl {
url = "${base}/vault_${version}_darwin_amd64.zip";
- sha256 = "0hl1k35x78y0hi3y5xjnzby1ygisqjyvdak7s61m9f363nsr1shh";
+ sha256 = "0snswwai2ya26crm3ksifrmbdnajr36v4vamh7g65plg6vzban9a";
};
aarch64-linux = fetchurl {
url = "${base}/vault_${version}_linux_arm64.zip";
- sha256 = "018a5i14x6phhx1axvx0bvqn4ggsimfizs48xbmykgiyfmzkrwgz";
+ sha256 = "0ix99da3xd4z200dgvpfc2h1sfx6l8cipichvfjlj39md45grs89";
};
};
@@ -45,6 +45,6 @@ in stdenv.mkDerivation {
description = "A tool for managing secrets, this binary includes the UI";
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ];
license = licenses.mpl20;
- maintainers = with maintainers; [ offline psyanticy mkaito ];
+ maintainers = with maintainers; [ offline psyanticy mkaito Chili-Man ];
};
}
diff --git a/pkgs/tools/system/clinfo/default.nix b/pkgs/tools/system/clinfo/default.nix
index 9e9b4df80880..7db7386c1111 100644
--- a/pkgs/tools/system/clinfo/default.nix
+++ b/pkgs/tools/system/clinfo/default.nix
@@ -4,16 +4,19 @@ stdenv.mkDerivation rec {
pname = "clinfo";
version = "3.0.20.11.20";
- src = fetchFromGitHub {
- owner = "Oblomov";
- repo = "clinfo";
- rev = version;
- sha256 = "052xfkbmgfpalmhfwn0dj5114x2mzwz29y37qqhhsdpaxsz0y422";
- };
+ src = fetchFromGitHub {
+ owner = "Oblomov";
+ repo = "clinfo";
+ rev = version;
+ sha256 = "052xfkbmgfpalmhfwn0dj5114x2mzwz29y37qqhhsdpaxsz0y422";
+ };
buildInputs = [ ocl-icd opencl-headers ];
- NIX_CFLAGS_COMPILE = [ "-Wno-error=stringop-truncation" ];
+ NIX_CFLAGS_COMPILE = [
+ "-Wno-error=stringop-overflow"
+ "-Wno-error=stringop-truncation"
+ ];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
@@ -21,7 +24,7 @@ stdenv.mkDerivation rec {
description = "Print all known information about all available OpenCL platforms and devices in the system";
homepage = "https://github.com/Oblomov/clinfo";
license = licenses.cc0;
- platforms = platforms.linux;
maintainers = with maintainers; [ athas ];
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/tools/system/consul-template/default.nix b/pkgs/tools/system/consul-template/default.nix
index 69d5cd6bb736..fc388dd7cea4 100644
--- a/pkgs/tools/system/consul-template/default.nix
+++ b/pkgs/tools/system/consul-template/default.nix
@@ -1,24 +1,27 @@
-{ stdenv, buildGoPackage, fetchFromGitHub }:
+{ stdenv, buildGoModule, fetchFromGitHub }:
-buildGoPackage rec {
+buildGoModule rec {
pname = "consul-template";
- version = "0.19.4";
- rev = "v${version}";
-
- goPackagePath = "github.com/hashicorp/consul-template";
+ version = "0.25.1";
src = fetchFromGitHub {
- inherit rev;
owner = "hashicorp";
repo = "consul-template";
- sha256 = "06agjzpax45gw7s9b69cz9w523nx7ksikqcg0z0vipwrp7pwrydd";
+ rev = "v${version}";
+ sha256 = "1205rhv4mizpb1nbc2sry52n7wljcwb8xp7lpazh1r1cldfayr5b";
};
+ vendorSha256 = "0hv4b6k8k7xkzkjgzcm5y8pqyiwyk790a1qw18gjslkwkyw5hjf2";
+
+ # consul-template tests depend on vault and consul services running to
+ # execute tests so we skip them here
+ doCheck = false;
+
meta = with stdenv.lib; {
homepage = "https://github.com/hashicorp/consul-template/";
description = "Generic template rendering and notifications with Consul";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.mpl20;
- maintainers = with maintainers; [ pradeepchhetri ];
+ maintainers = with maintainers; [ cpcloud pradeepchhetri ];
};
}
diff --git a/pkgs/tools/system/gdu/default.nix b/pkgs/tools/system/gdu/default.nix
new file mode 100644
index 000000000000..a0b417726447
--- /dev/null
+++ b/pkgs/tools/system/gdu/default.nix
@@ -0,0 +1,33 @@
+{ stdenv
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+ pname = "gdu";
+ version = "2.1.0";
+
+ src = fetchFromGitHub {
+ owner = "dundee";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0gk36z8xzj7blwzs080fqsz76hn56c89xcsyil6n5cfkbyf85c6i";
+ };
+
+ vendorSha256 = "1jqbsda9bch3awdq816w4jybv7wz9mfflmvs5y2wsa2qnhn9nbyp";
+
+ buildFlagsArray = [ "-ldflags=-s -w -X main.AppVersion=${version}" ];
+
+ meta = with stdenv.lib; {
+ description = "Disk usage analyzer with console interface";
+ longDescription = ''
+ Gdu is intended primarily for SSD disks where it can fully
+ utilize parallel processing. However HDDs work as well, but
+ the performance gain is not so huge.
+ '';
+ homepage = "https://github.com/dundee/gdu";
+ license = with licenses; [ mit ];
+ maintainers = [ maintainers.fab ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/tools/text/mdbook/default.nix b/pkgs/tools/text/mdbook/default.nix
index 8e0350177425..d95f9854d544 100644
--- a/pkgs/tools/text/mdbook/default.nix
+++ b/pkgs/tools/text/mdbook/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "mdbook";
- version = "0.4.4";
+ version = "0.4.5";
src = fetchFromGitHub {
owner = "rust-lang-nursery";
repo = "mdBook";
rev = "v${version}";
- sha256 = "0nqr5a27i91m71fhpycf60q54qplc920y1fmk9hav3pbb9wcc5dl";
+ sha256 = "11v2x0q8pn7hbmznqy872ksr7szyiki9cfhapymjhkf5nwfvcdbb";
};
- cargoSha256 = "1p72iwl9ca7a92nf6wyjjbn0qns0xxb4xrbz2r2nmd83cxs0fplg";
+ cargoSha256 = "1psgqj04hzv7p18h4phsahxg4rj9yz38b8mh111k6l8m4r83kd75";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
diff --git a/pkgs/tools/text/vale/default.nix b/pkgs/tools/text/vale/default.nix
index 11c611710cd2..52a5c9341f85 100644
--- a/pkgs/tools/text/vale/default.nix
+++ b/pkgs/tools/text/vale/default.nix
@@ -2,7 +2,7 @@
buildGoModule rec {
pname = "vale";
- version = "2.6.5";
+ version = "2.6.8";
subPackages = [ "." ];
outputs = [ "out" "data" ];
@@ -11,13 +11,11 @@ buildGoModule rec {
owner = "errata-ai";
repo = "vale";
rev = "v${version}";
- sha256 = "0rvcxlw8xd7sjcsvr6di04l8ml990im2c8yl3hn8054wkp51yb4l";
+ sha256 = "sha256-evvnIM8sd/eHpI2FYOlgjvGn8awTVc1f5QDIYAvhqmk=";
};
vendorSha256 = null;
- doCheck = false;
-
postInstall = ''
mkdir -p $data/share/vale
cp -r styles $data/share/vale
diff --git a/pkgs/tools/video/svt-av1/default.nix b/pkgs/tools/video/svt-av1/default.nix
new file mode 100644
index 000000000000..c3d2de311b1f
--- /dev/null
+++ b/pkgs/tools/video/svt-av1/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, cmake, nasm }:
+
+stdenv.mkDerivation rec {
+ pname = "svt-av1";
+ version = "0.8.6";
+
+ src = fetchFromGitHub {
+ owner = "AOMediaCodec";
+ repo = "SVT-AV1";
+ rev = "v${version}";
+ sha256 = "1wzamg89azi1f93wxvdy7silsgklckc754ca066k33drvyacicyw";
+ };
+
+ nativeBuildInputs = [ cmake nasm ];
+
+ meta = with stdenv.lib; {
+ description = "AV1-compliant encoder/decoder library core";
+ homepage = "https://github.com/AOMediaCodec/SVT-AV1";
+ license = licenses.bsd2;
+ platforms = platforms.unix;
+ broken = stdenv.isAarch64; # undefined reference to `cpuinfo_arm_linux_init'
+ maintainers = with maintainers; [ chiiruno ];
+ };
+}
diff --git a/pkgs/tools/virtualization/shipyard/default.nix b/pkgs/tools/virtualization/shipyard/default.nix
new file mode 100644
index 000000000000..e3017e98a070
--- /dev/null
+++ b/pkgs/tools/virtualization/shipyard/default.nix
@@ -0,0 +1,29 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+ pname = "shipyard";
+ version = "0.1.17";
+
+ src = fetchFromGitHub {
+ rev = "v${version}";
+ owner = "shipyard-run";
+ repo = pname;
+ sha256 = "13cp7qpxchnyxdm26xwdcp557nj16f4h8vlj0p4h79z5g7pcklln";
+ };
+ vendorSha256 = "0gib9s09lz91wawbms9zq4wc5k6bdxfzpxm8q92h0bsjw1bj1hzs";
+
+ buildFlagsArray = [
+ "-ldflags=-s -w -X main.version=${version}"
+ ];
+
+ # Tests require a large variety of tools and resources to run including
+ # Kubernetes, Docker, and GCC.
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Shipyard is a tool for building modern cloud native development environments";
+ homepage = "https://shipyard.run";
+ license = licenses.mpl20;
+ maintainers = with maintainers; [ cpcloud ];
+ };
+}
diff --git a/pkgs/tools/wayland/wtype/default.nix b/pkgs/tools/wayland/wtype/default.nix
index a1c4744318e3..3476f3abcdaa 100644
--- a/pkgs/tools/wayland/wtype/default.nix
+++ b/pkgs/tools/wayland/wtype/default.nix
@@ -10,15 +10,15 @@
, wayland
}:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "wtype";
- version = "2020-09-14";
+ version = "0.3";
src = fetchFromGitHub {
owner = "atx";
repo = "wtype";
- rev = "74071228dea4047157ae82960a2541ecc431e4a1";
- sha256 = "1ncspxpnbwv1vkfmxs58q7aykjb6skaa1pg5sw5h798pss5j80rd";
+ rev = "v${version}";
+ hash = "sha256-8q2PxI3ItR4tsP/KOiSlqnuK4ZSe7OdekheolEFVmys=";
};
nativeBuildInputs = [ meson ninja pkg-config wayland ];
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 4a4277c20729..01c80ea3d804 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -158,6 +158,7 @@ mapAliases ({
firefoxWrapper = firefox; # 2015-09
firestr = throw "firestr has been removed."; # added 2019-12-08
+ fish-foreign-env = fishPlugins.foreign-env; # added 2020-12-29
flameGraph = flamegraph; # added 2018-04-25
flvtool2 = throw "flvtool2 has been removed."; # added 2020-11-03
foldingathome = fahclient; # added 2020-09-03
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index eb27bcc18351..fec582facc63 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -730,6 +730,8 @@ in
foot = callPackage ../applications/terminal-emulators/foot { };
+ germinal = callPackage ../applications/terminal-emulators/germinal { };
+
guake = callPackage ../applications/terminal-emulators/guake { };
havoc = callPackage ../applications/terminal-emulators/havoc { };
@@ -1175,6 +1177,8 @@ in
doona = callPackage ../tools/security/doona { };
+ droidcam = callPackage ../applications/video/droidcam { };
+
ecdsautils = callPackage ../tools/security/ecdsautils { };
sedutil = callPackage ../tools/security/sedutil { };
@@ -2235,6 +2239,8 @@ in
gdrive = callPackage ../applications/networking/gdrive { };
+ gdu = callPackage ../tools/system/gdu { };
+
go-chromecast = callPackage ../applications/video/go-chromecast { };
go-rice = callPackage ../tools/misc/go.rice {};
@@ -2482,6 +2488,8 @@ in
monetdb = callPackage ../servers/sql/monetdb { };
+ monado = callPackage ../applications/graphics/monado {};
+
mons = callPackage ../tools/misc/mons {};
mousetweaks = callPackage ../applications/accessibility/mousetweaks {
@@ -2622,6 +2630,8 @@ in
simdjson = callPackage ../development/libraries/simdjson { };
+ shipyard = callPackage ../tools/virtualization/shipyard { };
+
simg2img = callPackage ../tools/filesystems/simg2img { };
simplenes = callPackage ../misc/emulators/simplenes { };
@@ -2664,6 +2674,8 @@ in
syslogng_incubator = callPackage ../tools/system/syslog-ng-incubator { };
+ svt-av1 = callPackage ../tools/video/svt-av1 { };
+
inherit (callPackages ../servers/rainloop { })
rainloop-community
rainloop-standard;
@@ -4564,6 +4576,8 @@ in
gssdp = callPackage ../development/libraries/gssdp { };
+ grype = callPackage ../tools/security/grype { };
+
gt5 = callPackage ../tools/system/gt5 { };
gtest = callPackage ../development/libraries/gtest { };
@@ -6134,17 +6148,17 @@ in
nomad_0_11 = callPackage ../applications/networking/cluster/nomad/0.11.nix {
buildGoPackage = buildGo114Package;
inherit (linuxPackages) nvidia_x11;
- nvidiaGpuSupport = config.cudaSupport or (!stdenv.isLinux);
+ nvidiaGpuSupport = config.cudaSupport or false;
};
nomad_0_12 = callPackage ../applications/networking/cluster/nomad/0.12.nix {
buildGoPackage = buildGo114Package;
inherit (linuxPackages) nvidia_x11;
- nvidiaGpuSupport = config.cudaSupport or (!stdenv.isLinux);
+ nvidiaGpuSupport = config.cudaSupport or false;
};
nomad_1_0 = callPackage ../applications/networking/cluster/nomad/1.0.nix {
buildGoPackage = buildGo115Package;
inherit (linuxPackages) nvidia_x11;
- nvidiaGpuSupport = config.cudaSupport or (!stdenv.isLinux);
+ nvidiaGpuSupport = config.cudaSupport or false;
};
notable = callPackage ../applications/misc/notable { };
@@ -7012,6 +7026,7 @@ in
rdma-core = callPackage ../os-specific/linux/rdma-core { };
+ rdrview = callPackage ../tools/networking/rdrview {};
real_time_config_quick_scan = callPackage ../applications/audio/real_time_config_quick_scan { };
@@ -7099,6 +7114,9 @@ in
rescuetime = libsForQt5.callPackage ../applications/misc/rescuetime { };
+ inherit (callPackage ../development/misc/resholve { })
+ resholve resholvePackage;
+
reuse = callPackage ../tools/package-management/reuse { };
rewritefs = callPackage ../os-specific/linux/rewritefs { };
@@ -7862,7 +7880,7 @@ in
tikzit = libsForQt5.callPackage ../tools/typesetting/tikzit { };
- tinc_pre = callPackage ../tools/networking/tinc/pre.nix {};
+ tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };
tinycbor = callPackage ../development/libraries/tinycbor { };
@@ -7870,13 +7888,13 @@ in
tinyemu = callPackage ../applications/virtualization/tinyemu { };
- tinyfecvpn = callPackage ../tools/networking/tinyfecvpn {};
+ tinyfecvpn = callPackage ../tools/networking/tinyfecvpn { };
tinyobjloader = callPackage ../development/libraries/tinyobjloader { };
tinyprog = callPackage ../development/tools/misc/tinyprog { };
- tinyproxy = callPackage ../tools/networking/tinyproxy {};
+ tinyproxy = callPackage ../tools/networking/tinyproxy { };
tio = callPackage ../tools/misc/tio { };
@@ -8487,6 +8505,8 @@ in
urjtag = callPackage ../tools/misc/urjtag { };
+ urlhunter = callPackage ../tools/security/urlhunter { };
+
urlwatch = callPackage ../tools/networking/urlwatch { };
valum = callPackage ../development/web/valum { };
@@ -8845,7 +8865,7 @@ in
fish = callPackage ../shells/fish { };
- fish-foreign-env = callPackage ../shells/fish/fish-foreign-env { };
+ fishPlugins = recurseIntoAttrs (callPackage ../shells/fish/plugins { });
ion = callPackage ../shells/ion {
inherit (darwin) Security;
@@ -9699,7 +9719,7 @@ in
openjfx11 = callPackage ../development/compilers/openjdk/openjfx/11.nix { };
- openjfx14 = callPackage ../development/compilers/openjdk/openjfx/14.nix { };
+ openjfx15 = callPackage ../development/compilers/openjdk/openjfx/15.nix { };
openjdk8-bootstrap =
if adoptopenjdk-hotspot-bin-8.meta.available then
@@ -9749,21 +9769,27 @@ in
else
openjdk11.override { headless = true; };
- openjdk14-bootstrap =
- if adoptopenjdk-hotspot-bin-13.meta.available then
- adoptopenjdk-hotspot-bin-13
+ openjdk15-bootstrap =
+ if adoptopenjdk-hotspot-bin-14.meta.available then
+ adoptopenjdk-hotspot-bin-14
else
- /* adoptopenjdk not available for i686, so fall back to our old builds of 12 & 13 for bootstrapping */
- callPackage ../development/compilers/openjdk/13.nix {
+ /* adoptopenjdk not available for i686, so fall back to our old builds of 12, 13, & 14 for bootstrapping */
+ callPackage ../development/compilers/openjdk/14.nix {
openjfx = openjfx11; /* need this despite next line :-( */
enableJavaFX = false;
headless = true;
inherit (gnome2) GConf gnome_vfs;
- openjdk13-bootstrap = callPackage ../development/compilers/openjdk/12.nix {
+ openjdk14-bootstrap = callPackage ../development/compilers/openjdk/13.nix {
openjfx = openjfx11; /* need this despite next line :-( */
enableJavaFX = false;
headless = true;
inherit (gnome2) GConf gnome_vfs;
+ openjdk13-bootstrap = callPackage ../development/compilers/openjdk/12.nix {
+ openjfx = openjfx11; /* need this despite next line :-( */
+ enableJavaFX = false;
+ headless = true;
+ inherit (gnome2) GConf gnome_vfs;
+ };
};
};
@@ -9771,27 +9797,27 @@ in
jdk11_headless = openjdk11_headless;
/* Latest JDK */
- openjdk14 =
+ openjdk15 =
if stdenv.isDarwin then
callPackage ../development/compilers/openjdk/darwin { }
else
callPackage ../development/compilers/openjdk {
- openjfx = openjfx14;
+ openjfx = openjfx15;
inherit (gnome2) GConf gnome_vfs;
};
- openjdk14_headless =
+ openjdk15_headless =
if stdenv.isDarwin then
- openjdk14
+ openjdk15
else
- openjdk14.override { headless = true; };
+ openjdk15.override { headless = true; };
- jdk14 = openjdk14;
- jdk14_headless = openjdk14_headless;
+ jdk15 = openjdk15;
+ jdk15_headless = openjdk15_headless;
/* default JDK */
- jdk = jdk14;
+ jdk = jdk15;
# Since the introduction of the Java Platform Module System in Java 9, Java
# no longer ships a separate JRE package.
@@ -9800,13 +9826,13 @@ in
# 'jre_minimal' to build a bespoke JRE containing only the modules you need.
#
# For a general-purpose system, 'jre' defaults to the full JDK:
- jre = jdk14;
- jre_headless = jdk14_headless;
+ jre = jdk15;
+ jre_headless = jdk15_headless;
jre_minimal = callPackage ../development/compilers/openjdk/jre.nix { };
- openjdk = openjdk14;
- openjdk_headless = openjdk14_headless;
+ openjdk = openjdk15;
+ openjdk_headless = openjdk15_headless;
inherit (callPackages ../development/compilers/graalvm {
gcc = if stdenv.targetPlatform.isDarwin then gcc8 else gcc;
@@ -12354,6 +12380,8 @@ in
ttyd = callPackage ../servers/ttyd { };
+ turbogit = callPackage ../development/tools/turbogit { };
+
tweak = callPackage ../applications/editors/tweak { };
tychus = callPackage ../development/tools/tychus {
@@ -12575,10 +12603,16 @@ in
inherit (darwin.apple_sdk.frameworks) AudioUnit CoreServices;
};
+ aws-c-cal = callPackage ../development/libraries/aws-c-cal {
+ inherit (darwin.apple_sdk.frameworks) Security;
+ };
+
aws-c-common = callPackage ../development/libraries/aws-c-common { };
aws-c-event-stream = callPackage ../development/libraries/aws-c-event-stream { };
+ aws-c-io = callPackage ../development/libraries/aws-c-io { };
+
aws-checksums = callPackage ../development/libraries/aws-checksums { };
aws-sdk-cpp = callPackage ../development/libraries/aws-sdk-cpp {
@@ -13019,6 +13053,7 @@ in
ffmpeg = ffmpeg_4;
ffmpeg-full = callPackage ../development/libraries/ffmpeg-full {
+ svt-av1 = if stdenv.isAarch64 then null else svt-av1;
# The following need to be fixed on Darwin
libjack2 = if stdenv.isDarwin then null else libjack2;
libmodplug = if stdenv.isDarwin then null else libmodplug;
@@ -13607,7 +13642,7 @@ in
hdt = callPackage ../misc/hdt {};
- herqq = libsForQt514.callPackage ../development/libraries/herqq { };
+ herqq = libsForQt5.callPackage ../development/libraries/herqq { };
hidapi = callPackage ../development/libraries/hidapi {
# TODO: remove once `udev` is `systemdMinimal` everywhere.
@@ -14935,6 +14970,8 @@ in
inherit (darwin.apple_sdk.frameworks) ApplicationServices CoreServices;
};
+ libuvc = callPackage ../development/libraries/libuvc { };
+
libv4l = lowPrio (v4l-utils.override {
withUtils = false;
});
@@ -16147,6 +16184,8 @@ in
graphite2 = callPackage ../development/libraries/silgraphite/graphite2.nix {};
+ s2n = callPackage ../development/libraries/s2n { };
+
simavr = callPackage ../development/tools/simavr {
avrgcc = pkgsCross.avr.buildPackages.gcc;
avrlibc = pkgsCross.avr.libcCross;
@@ -16360,6 +16399,8 @@ in
steghide = callPackage ../tools/security/steghide {};
+ stegseek = callPackage ../tools/security/stegseek {};
+
stlport = callPackage ../development/libraries/stlport { };
streamlink = callPackage ../applications/video/streamlink { pythonPackages = python3Packages; };
@@ -19051,6 +19092,8 @@ in
libsmbios = callPackage ../os-specific/linux/libsmbios { };
+ libsurvive = callPackage ../development/libraries/libsurvive { };
+
lm_sensors = callPackage ../os-specific/linux/lm-sensors { };
lockdep = callPackage ../os-specific/linux/lockdep { };
@@ -19970,6 +20013,10 @@ in
kopia = callPackage ../tools/backup/kopia { };
+ kora-icon-theme = callPackage ../data/icons/kora-icon-theme {
+ inherit (kdeFrameworks) breeze-icons;
+ };
+
koreader = callPackage ../applications/misc/koreader {};
lato = callPackage ../data/fonts/lato {};
@@ -20729,7 +20776,7 @@ in
bevelbar = callPackage ../applications/window-managers/bevelbar { };
- bibletime = libsForQt514.callPackage ../applications/misc/bibletime { };
+ bibletime = libsForQt5.callPackage ../applications/misc/bibletime { };
bino3d = libsForQt5.callPackage ../applications/video/bino3d {
glew = glew110;
@@ -21087,7 +21134,7 @@ in
dfasma = libsForQt5.callPackage ../applications/audio/dfasma { };
- dfilemanager = libsForQt514.callPackage ../applications/misc/dfilemanager { };
+ dfilemanager = libsForQt5.callPackage ../applications/misc/dfilemanager { };
dia = callPackage ../applications/graphics/dia {
inherit (pkgs.gnome2) libart_lgpl libgnomeui;
@@ -21919,7 +21966,7 @@ in
manul = callPackage ../development/tools/manul { };
- mindforger = libsForQt514.callPackage ../applications/editors/mindforger { };
+ mindforger = libsForQt5.callPackage ../applications/editors/mindforger { };
mi2ly = callPackage ../applications/audio/mi2ly {};
@@ -22955,8 +23002,7 @@ in
mercurialFull = appendToName "full" (pkgs.mercurial.override { guiSupport = true; });
- # Needs qtwebkit which is broken on qt5.15
- merkaartor = libsForQt514.callPackage ../applications/misc/merkaartor { };
+ merkaartor = libsForQt5.callPackage ../applications/misc/merkaartor { };
meshlab = libsForQt5.callPackage ../applications/graphics/meshlab { };
@@ -23459,7 +23505,7 @@ in
nedit = callPackage ../applications/editors/nedit { };
- ngt = callPackage ../development/libraries/ngt { enableAVX = false; };
+ ngt = callPackage ../development/libraries/ngt { };
nheko = libsForQt5.callPackage ../applications/networking/instant-messengers/nheko { };
@@ -24165,7 +24211,7 @@ in
scribusUnstable = libsForQt5.callPackage ../applications/office/scribus/unstable.nix { };
- seafile-client = libsForQt514.callPackage ../applications/networking/seafile-client { };
+ seafile-client = libsForQt5.callPackage ../applications/networking/seafile-client { };
sent = callPackage ../applications/misc/sent { };
@@ -24550,6 +24596,8 @@ in
taskwarrior = callPackage ../applications/misc/taskwarrior { };
+ taskwarrior-tui = callPackage ../applications/misc/taskwarrior-tui { };
+
dstask = callPackage ../applications/misc/dstask { };
tasksh = callPackage ../applications/misc/tasksh { };
@@ -26446,8 +26494,8 @@ in
};
# solarus and solarus-quest-editor must use the same version of Qt.
- solarus = libsForQt514.callPackage ../games/solarus { };
- solarus-quest-editor = libsForQt514.callPackage ../development/tools/solarus-quest-editor { };
+ solarus = libsForQt5.callPackage ../games/solarus { };
+ solarus-quest-editor = libsForQt5.callPackage ../development/tools/solarus-quest-editor { };
# You still can override by passing more arguments.
space-orbit = callPackage ../games/space-orbit { };
@@ -28004,6 +28052,8 @@ in
fahcontrol = callPackage ../applications/science/misc/foldingathome/control.nix {};
fahviewer = callPackage ../applications/science/misc/foldingathome/viewer.nix {};
+ foma = callPackage ../tools/misc/foma { };
+
foo2zjs = callPackage ../misc/drivers/foo2zjs {};
foomatic-filters = callPackage ../misc/drivers/foomatic-filters {};
@@ -28643,6 +28693,8 @@ in
snscrape = with python3Packages; toPythonApplication snscrape;
+ soundmodem = callPackage ../applications/radio/soundmodem {};
+
soundOfSorting = callPackage ../misc/sound-of-sorting { };
sourceAndTags = callPackage ../misc/source-and-tags {
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index e5d0f60ee5d0..b123658a3ffb 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -117,7 +117,6 @@ let
bin_prot_p4 = callPackage ../development/ocaml-modules/bin_prot { };
bisect_ppx = callPackage ../development/ocaml-modules/bisect_ppx { };
- bisect_ppx-ocamlbuild = callPackage ../development/ocaml-modules/bisect_ppx-ocamlbuild { };
ocaml_cairo = callPackage ../development/ocaml-modules/ocaml-cairo { };
@@ -569,6 +568,10 @@ let
inherit (pkgs) gnuplot;
};
+ mew = callPackage ../development/ocaml-modules/mew { };
+
+ mew_vi = callPackage ../development/ocaml-modules/mew_vi { };
+
mezzo = callPackage ../development/compilers/mezzo { };
minisat = callPackage ../development/ocaml-modules/minisat { };
@@ -601,6 +604,8 @@ let
mirage-crypto-rng = callPackage ../development/ocaml-modules/mirage-crypto/rng.nix { };
+ mirage-crypto-rng-async = callPackage ../development/ocaml-modules/mirage-crypto/rng-async.nix { };
+
mirage-crypto-rng-mirage = callPackage ../development/ocaml-modules/mirage-crypto/rng-mirage.nix { };
mirage-device = callPackage ../development/ocaml-modules/mirage-device { };
@@ -846,6 +851,8 @@ let
posix-types = callPackage ../development/ocaml-modules/posix/types.nix { };
+ ppx_bitstring = callPackage ../development/ocaml-modules/bitstring/ppx.nix { };
+
ppxfind = callPackage ../development/ocaml-modules/ppxfind { };
ppxlib = callPackage ../development/ocaml-modules/ppxlib { };
@@ -1019,6 +1026,8 @@ let
topkg = callPackage ../development/ocaml-modules/topkg { };
+ trie = callPackage ../development/ocaml-modules/trie { };
+
tsdl = callPackage ../development/ocaml-modules/tsdl { };
twt = callPackage ../development/ocaml-modules/twt { };
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 90f41d6edaf4..469f027270f1 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -445,6 +445,8 @@ in {
async_generator = callPackage ../development/python-modules/async_generator { };
+ asyncio-dgram = callPackage ../development/python-modules/asyncio-dgram { };
+
asyncio-throttle = callPackage ../development/python-modules/asyncio-throttle { };
asyncpg = callPackage ../development/python-modules/asyncpg { };
@@ -514,6 +516,8 @@ in {
av = callPackage ../development/python-modules/av { inherit (pkgs) pkgconfig; };
+ avea = callPackage ../development/python-modules/avea { };
+
avro3k = callPackage ../development/python-modules/avro3k { };
avro = callPackage ../development/python-modules/avro { };
@@ -778,6 +782,8 @@ in {
backports_csv = callPackage ../development/python-modules/backports_csv { };
+ backports-datetime-fromisoformat = callPackage ../development/python-modules/backports-datetime-fromisoformat { };
+
backports_functools_lru_cache = callPackage ../development/python-modules/backports_functools_lru_cache { };
backports_lzma = callPackage ../development/python-modules/backports_lzma { };
@@ -888,6 +894,8 @@ in {
bitarray = callPackage ../development/python-modules/bitarray { };
+ bitbox02 = callPackage ../development/python-modules/bitbox02 { };
+
bitbucket_api = callPackage ../development/python-modules/bitbucket-api { };
bitbucket-cli = callPackage ../development/python-modules/bitbucket-cli { };
@@ -1380,6 +1388,8 @@ in {
cornice = callPackage ../development/python-modules/cornice { };
+ coronavirus = callPackage ../development/python-modules/coronavirus { };
+
cot = callPackage ../development/python-modules/cot { };
covCore = callPackage ../development/python-modules/cov-core { };
@@ -2063,6 +2073,8 @@ in {
fastcache = callPackage ../development/python-modules/fastcache { };
+ fastdiff = callPackage ../development/python-modules/fastdiff { };
+
fastdtw = callPackage ../development/python-modules/fastdtw { };
fastecdsa = callPackage ../development/python-modules/fastecdsa { };
@@ -2145,6 +2157,8 @@ in {
fitbit = callPackage ../development/python-modules/fitbit { };
+ fixerio = callPackage ../development/python-modules/fixerio { };
+
fixtures = callPackage ../development/python-modules/fixtures { };
flake8-blind-except = callPackage ../development/python-modules/flake8-blind-except { };
@@ -2466,6 +2480,8 @@ in {
glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28
+ glances-api = callPackage ../development/python-modules/glances-api { };
+
glasgow = callPackage ../development/python-modules/glasgow { };
glob2 = callPackage ../development/python-modules/glob2 { };
@@ -2494,7 +2510,7 @@ in {
goocalendar = callPackage ../development/python-modules/goocalendar { };
- google_api_core = callPackage ../development/python-modules/google_api_core { };
+ google-api-core = callPackage ../development/python-modules/google-api-core { };
google_api_python_client =
let google_api_python_client = callPackage ../development/python-modules/google-api-python-client { };
@@ -2511,9 +2527,9 @@ in {
googleapis_common_protos = callPackage ../development/python-modules/googleapis_common_protos { };
- google_apputils = callPackage ../development/python-modules/google_apputils { };
+ google-apputils = callPackage ../development/python-modules/google-apputils { };
- google_auth = callPackage ../development/python-modules/google_auth { };
+ google-auth = callPackage ../development/python-modules/google-auth { };
google-auth-httplib2 = callPackage ../development/python-modules/google-auth-httplib2 { };
@@ -2521,79 +2537,81 @@ in {
google-cloud-access-context-manager = callPackage ../development/python-modules/google-cloud-access-context-manager { };
- google_cloud_asset = callPackage ../development/python-modules/google_cloud_asset { };
+ google-cloud-asset = callPackage ../development/python-modules/google-cloud-asset { };
- google_cloud_automl = callPackage ../development/python-modules/google_cloud_automl { };
+ google-cloud-automl = callPackage ../development/python-modules/google-cloud-automl { };
- google_cloud_bigquery = callPackage ../development/python-modules/google_cloud_bigquery { };
+ google-cloud-bigquery = callPackage ../development/python-modules/google-cloud-bigquery { };
- google_cloud_bigquery_datatransfer = callPackage ../development/python-modules/google_cloud_bigquery_datatransfer { };
+ google-cloud-bigquery-datatransfer = callPackage ../development/python-modules/google-cloud-bigquery-datatransfer { };
- google_cloud_bigtable = callPackage ../development/python-modules/google_cloud_bigtable { };
+ google-cloud-bigtable = callPackage ../development/python-modules/google-cloud-bigtable { };
- google_cloud_container = callPackage ../development/python-modules/google_cloud_container { };
+ google-cloud-container = callPackage ../development/python-modules/google-cloud-container { };
- google_cloud_core = callPackage ../development/python-modules/google_cloud_core { };
+ google-cloud-core = callPackage ../development/python-modules/google-cloud-core { };
- google_cloud_dataproc = callPackage ../development/python-modules/google_cloud_dataproc { };
+ google-cloud-dataproc = callPackage ../development/python-modules/google-cloud-dataproc { };
- google_cloud_datastore = callPackage ../development/python-modules/google_cloud_datastore { };
+ google-cloud-datastore = callPackage ../development/python-modules/google-cloud-datastore { };
- google_cloud_dlp = callPackage ../development/python-modules/google_cloud_dlp { };
+ google-cloud-dlp = callPackage ../development/python-modules/google-cloud-dlp { };
- google_cloud_dns = callPackage ../development/python-modules/google_cloud_dns { };
+ google-cloud-dns = callPackage ../development/python-modules/google-cloud-dns { };
- google_cloud_error_reporting = callPackage ../development/python-modules/google_cloud_error_reporting { };
+ google-cloud-error-reporting = callPackage ../development/python-modules/google-cloud-error-reporting { };
- google_cloud_firestore = callPackage ../development/python-modules/google_cloud_firestore { };
+ google-cloud-firestore = callPackage ../development/python-modules/google-cloud-firestore { };
google-cloud-iam = callPackage ../development/python-modules/google-cloud-iam { };
- google_cloud_iot = callPackage ../development/python-modules/google_cloud_iot { };
+ google-cloud-iot = callPackage ../development/python-modules/google-cloud-iot { };
- google_cloud_kms = callPackage ../development/python-modules/google_cloud_kms { };
+ google-cloud-kms = callPackage ../development/python-modules/google-cloud-kms { };
- google_cloud_language = callPackage ../development/python-modules/google_cloud_language { };
+ google-cloud-language = callPackage ../development/python-modules/google-cloud-language { };
- google_cloud_logging = callPackage ../development/python-modules/google_cloud_logging { };
+ google-cloud-logging = callPackage ../development/python-modules/google-cloud-logging { };
- google_cloud_monitoring = callPackage ../development/python-modules/google_cloud_monitoring { };
+ google-cloud-monitoring = callPackage ../development/python-modules/google-cloud-monitoring { };
google-cloud-org-policy = callPackage ../development/python-modules/google-cloud-org-policy { };
- google_cloud_pubsub = callPackage ../development/python-modules/google_cloud_pubsub { };
+ google-cloud-os-config = callPackage ../development/python-modules/google-cloud-os-config { };
- google_cloud_redis = callPackage ../development/python-modules/google_cloud_redis { };
+ google-cloud-pubsub = callPackage ../development/python-modules/google-cloud-pubsub { };
- google_cloud_resource_manager = callPackage ../development/python-modules/google_cloud_resource_manager { };
+ google-cloud-redis = callPackage ../development/python-modules/google-cloud-redis { };
- google_cloud_runtimeconfig = callPackage ../development/python-modules/google_cloud_runtimeconfig { };
+ google-cloud-resource-manager = callPackage ../development/python-modules/google-cloud-resource-manager { };
- google_cloud_secret_manager = callPackage ../development/python-modules/google_cloud_secret_manager { };
+ google-cloud-runtimeconfig = callPackage ../development/python-modules/google-cloud-runtimeconfig { };
- google_cloud_securitycenter = callPackage ../development/python-modules/google_cloud_securitycenter { };
+ google-cloud-secret-manager = callPackage ../development/python-modules/google-cloud-secret-manager { };
- google_cloud_spanner = callPackage ../development/python-modules/google_cloud_spanner { };
+ google-cloud-securitycenter = callPackage ../development/python-modules/google-cloud-securitycenter { };
- google_cloud_speech = callPackage ../development/python-modules/google_cloud_speech { };
+ google-cloud-spanner = callPackage ../development/python-modules/google-cloud-spanner { };
- google_cloud_storage = callPackage ../development/python-modules/google_cloud_storage { };
+ google-cloud-speech = callPackage ../development/python-modules/google-cloud-speech { };
- google_cloud_tasks = callPackage ../development/python-modules/google_cloud_tasks { };
+ google-cloud-storage = callPackage ../development/python-modules/google-cloud-storage { };
- google_cloud_testutils = callPackage ../development/python-modules/google_cloud_testutils { };
+ google-cloud-tasks = callPackage ../development/python-modules/google-cloud-tasks { };
- google_cloud_texttospeech = callPackage ../development/python-modules/google_cloud_texttospeech { };
+ google-cloud-testutils = callPackage ../development/python-modules/google-cloud-testutils { };
- google_cloud_trace = callPackage ../development/python-modules/google_cloud_trace { };
+ google-cloud-texttospeech = callPackage ../development/python-modules/google-cloud-texttospeech { };
- google_cloud_translate = callPackage ../development/python-modules/google_cloud_translate { };
+ google-cloud-trace = callPackage ../development/python-modules/google-cloud-trace { };
- google_cloud_videointelligence = callPackage ../development/python-modules/google_cloud_videointelligence { };
+ google-cloud-translate = callPackage ../development/python-modules/google-cloud-translate { };
- google_cloud_vision = callPackage ../development/python-modules/google_cloud_vision { };
+ google-cloud-videointelligence = callPackage ../development/python-modules/google-cloud-videointelligence { };
- google_cloud_websecurityscanner = callPackage ../development/python-modules/google_cloud_websecurityscanner { };
+ google-cloud-vision = callPackage ../development/python-modules/google-cloud-vision { };
+
+ google-cloud-websecurityscanner = callPackage ../development/python-modules/google-cloud-websecurityscanner { };
google-compute-engine = callPackage ../tools/virtualization/google-compute-engine { };
@@ -2613,7 +2631,7 @@ in {
google-pasta = callPackage ../development/python-modules/google-pasta { };
- google_resumable_media = callPackage ../development/python-modules/google_resumable_media { };
+ google-resumable-media = callPackage ../development/python-modules/google-resumable-media { };
googletrans = callPackage ../development/python-modules/googletrans { };
@@ -2655,8 +2673,12 @@ in {
graph_nets = callPackage ../development/python-modules/graph_nets { };
+ graphene = callPackage ../development/python-modules/graphene { };
+
graphql-core = callPackage ../development/python-modules/graphql-core { };
+ graphql-relay = callPackage ../development/python-modules/graphql-relay { };
+
graphql-server-core = callPackage ../development/python-modules/graphql-server-core { };
graph-tool = callPackage ../development/python-modules/graph-tool/2.x.x.nix { inherit (pkgs) pkg-config; };
@@ -3628,7 +3650,9 @@ in {
llvm = pkgs.llvm_9;
}; # llvmlite always requires a specific version of llvm.
- lmdb = callPackage ../development/python-modules/lmdb { };
+ lmdb = callPackage ../development/python-modules/lmdb {
+ inherit (pkgs) lmdb;
+ };
lml = callPackage ../development/python-modules/lml { };
@@ -4233,6 +4257,8 @@ in {
noise = callPackage ../development/python-modules/noise { };
+ noiseprotocol = callPackage ../development/python-modules/noiseprotocol { };
+
nose2 = callPackage ../development/python-modules/nose2 { };
nose = callPackage ../development/python-modules/nose { };
@@ -4713,7 +4739,7 @@ in {
inherit (pkgs.libsForQt5) soqt;
};
- pkgconfig = callPackage ../development/python-modules/pkgconfig { inherit (pkgs) pkgconfig; };
+ pkgconfig = callPackage ../development/python-modules/pkgconfig { inherit (pkgs) pkg-config; };
pkginfo = callPackage ../development/python-modules/pkginfo { };
@@ -5413,6 +5439,8 @@ in {
pymetno = callPackage ../development/python-modules/pymetno { };
+ pymodbus = callPackage ../development/python-modules/pymodbus { };
+
pymongo = callPackage ../development/python-modules/pymongo { };
pympler = callPackage ../development/python-modules/pympler { };
@@ -5486,6 +5514,8 @@ in {
pyopengl = callPackage ../development/python-modules/pyopengl { };
+ pyopengl-accelerate = callPackage ../development/python-modules/pyopengl-accelerate { };
+
pyopenssl = callPackage ../development/python-modules/pyopenssl { };
pyosf = callPackage ../development/python-modules/pyosf { };
@@ -5814,6 +5844,7 @@ in {
pytest-black = callPackage ../development/python-modules/pytest-black { };
+ pytest-cache = self.pytestcache; # added 2021-01-04
pytestcache = callPackage ../development/python-modules/pytestcache { };
pytest-catchlog = callPackage ../development/python-modules/pytest-catchlog { };
@@ -5824,6 +5855,7 @@ in {
pytest-click = callPackage ../development/python-modules/pytest-click { };
+ pytest-cov = self.pytestcov; # self 2021-01-04
pytestcov = callPackage ../development/python-modules/pytest-cov { };
pytest-cram = callPackage ../development/python-modules/pytest-cram { };
@@ -5860,8 +5892,6 @@ in {
pytest-helpers-namespace = callPackage ../development/python-modules/pytest-helpers-namespace { };
- pyopengl-accelerate = callPackage ../development/python-modules/pyopengl-accelerate { };
-
pytest-html = callPackage ../development/python-modules/pytest-html { };
pytest-httpbin = callPackage ../development/python-modules/pytest-httpbin { };
@@ -5889,6 +5919,7 @@ in {
pytest-pep257 = callPackage ../development/python-modules/pytest-pep257 { };
+ pytest-pep8 = self.pytestpep8; # added 2021-01-04
pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10
pytest-pylint = callPackage ../development/python-modules/pytest-pylint { };
@@ -5897,6 +5928,7 @@ in {
pytest-qt = callPackage ../development/python-modules/pytest-qt { };
+ pytest-quickcheck = self.pytestquickcheck;
pytestquickcheck = callPackage ../development/python-modules/pytest-quickcheck { };
pytest-raisesregexp = callPackage ../development/python-modules/pytest-raisesregexp { };
@@ -5913,6 +5945,7 @@ in {
pytest-rerunfailures = callPackage ../development/python-modules/pytest-rerunfailures { };
+ pytest-runner = self.pytestrunner; # added 2021-01-04
pytestrunner = callPackage ../development/python-modules/pytestrunner { };
pytest-sanic = callPackage ../development/python-modules/pytest-sanic { };
@@ -5921,6 +5954,8 @@ in {
pytest-services = callPackage ../development/python-modules/pytest-services { };
+ pytest-snapshot = callPackage ../development/python-modules/pytest-snapshot { };
+
pytest-shutil = callPackage ../development/python-modules/pytest-shutil { };
pytest-socket = callPackage ../development/python-modules/pytest-socket { };
@@ -5949,6 +5984,7 @@ in {
pytest-watch = callPackage ../development/python-modules/pytest-watch { };
+ pytest-xdist = self.pytest_xdist; # added 2021-01-04
pytest_xdist = if isPy27 then
callPackage ../development/python-modules/pytest-xdist/1.nix { }
else
@@ -6025,7 +6061,10 @@ in {
pythonIRClib = callPackage ../development/python-modules/pythonirclib { };
- pythonix = callPackage ../development/python-modules/pythonix { inherit (pkgs) meson pkgconfig; };
+ pythonix = callPackage ../development/python-modules/pythonix {
+ inherit (pkgs) pkg-config;
+ meson = pkgs.meson.override { python3 = self.python; };
+ };
python-jenkins = callPackage ../development/python-modules/python-jenkins { };
@@ -6169,6 +6208,8 @@ in {
python-xmp-toolkit = callPackage ../development/python-modules/python-xmp-toolkit { };
+ pyeverlights = callPackage ../development/python-modules/pyeverlights { };
+
pytimeparse = callPackage ../development/python-modules/pytimeparse { };
pytmx = callPackage ../development/python-modules/pytmx { };
@@ -6263,8 +6304,12 @@ in {
pywick = callPackage ../development/python-modules/pywick { };
+ pywilight = callPackage ../development/python-modules/pywilight { };
+
pywinrm = callPackage ../development/python-modules/pywinrm { };
+ pywizlight = callPackage ../development/python-modules/pywizlight { };
+
pyxattr = let
pyxattr' = callPackage ../development/python-modules/pyxattr { };
pyxattr_2 = pyxattr'.overridePythonAttrs (oldAttrs: rec {
@@ -6808,6 +6853,7 @@ in {
setuptools-rust = callPackage ../development/python-modules/setuptools-rust { };
+ setuptools-scm = self.setuptools_scm; # added 2021-01-04
setuptools_scm = callPackage ../development/python-modules/setuptools_scm { };
setuptools-scm-git-archive = callPackage ../development/python-modules/setuptools-scm-git-archive { };
@@ -6945,6 +6991,8 @@ in {
snapperGUI = callPackage ../development/python-modules/snappergui { };
+ snapshottest = callPackage ../development/python-modules/snapshottest { };
+
sniffio = callPackage ../development/python-modules/sniffio { };
snitun = callPackage ../development/python-modules/snitun { };
@@ -7154,7 +7202,9 @@ in {
stack-data = callPackage ../development/python-modules/stack-data { };
- starlette = callPackage ../development/python-modules/starlette { };
+ starlette = callPackage ../development/python-modules/starlette {
+ inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices;
+ };
staticjinja = callPackage ../development/python-modules/staticjinja { };
@@ -7866,6 +7916,8 @@ in {
wasabi = callPackage ../development/python-modules/wasabi { };
+ wasmer = callPackage ../development/python-modules/wasmer { };
+
watchdog = callPackage ../development/python-modules/watchdog { };
WazeRouteCalculator = callPackage ../development/python-modules/WazeRouteCalculator { };
@@ -7902,6 +7954,8 @@ in {
webtest = callPackage ../development/python-modules/webtest { };
+ webthing = callPackage ../development/python-modules/webthing { };
+
werkzeug = callPackage ../development/python-modules/werkzeug { };
west = callPackage ../development/python-modules/west { };
diff --git a/pkgs/top-level/static.nix b/pkgs/top-level/static.nix
index f1d3ea2a1598..48e4618762a6 100644
--- a/pkgs/top-level/static.nix
+++ b/pkgs/top-level/static.nix
@@ -108,18 +108,11 @@ in {
haskellStaticAdapter;
};
- nghttp2 = super.nghttp2.override {
- enableApp = false;
- };
-
zlib = super.zlib.override {
# Don’t use new stdenv zlib because
# it doesn’t like the --disable-shared flag
stdenv = super.stdenv;
};
- gifsicle = super.gifsicle.override {
- static = true;
- };
openssl = super.openssl_1_1.overrideAttrs (o: {
# OpenSSL doesn't like the `--enable-static` / `--disable-shared` flags.
configureFlags = (removeUnknownConfigureFlags o.configureFlags);
@@ -129,86 +122,13 @@ in {
# --disable-shared flag
stdenv = super.stdenv;
};
- cdo = super.cdo.override {
- enable_all_static = true;
- };
- gsm = super.gsm.override {
- staticSupport = true;
- };
- crc32c = super.crc32c.override {
- staticOnly = true;
- };
perl = super.perl.override {
# Don’t use new stdenv zlib because
# it doesn’t like the --disable-shared flag
stdenv = super.stdenv;
};
- woff2 = super.woff2.override {
- static = true;
- };
- snappy = super.snappy.override {
- static = true;
- };
- libressl = super.libressl.override {
- buildShared = false;
- };
-
- kmod = super.kmod.override {
- withStatic = true;
- };
-
- curl = super.curl.override {
- # a very sad story: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=439039
- gssSupport = false;
- };
-
- e2fsprogs = super.e2fsprogs.override {
- shared = false;
- };
-
- brotli = super.brotli.override {
- staticOnly = true;
- };
-
- zstd = super.zstd.override {
- static = true;
- };
ocaml-ng = self.lib.mapAttrs (_: set:
if set ? overrideScope' then set.overrideScope' ocamlStaticAdapter else set
) super.ocaml-ng;
-
- python27 = super.python27.override { static = true; };
- python36 = super.python36.override { static = true; };
- python37 = super.python37.override { static = true; };
- python38 = super.python38.override { static = true; };
- python39 = super.python39.override { static = true; };
- python3Minimal = super.python3Minimal.override { static = true; };
-
- # Note: -static doesn’t work on darwin
- libev = super.libev.override { static = !super.stdenv.hostPlatform.isDarwin; };
-
- xorg = super.xorg.overrideScope' (xorgself: xorgsuper: {
- libX11 = xorgsuper.libX11.overrideAttrs (attrs: {
- depsBuildBuild = attrs.depsBuildBuild ++ [ (self.buildPackages.stdenv.cc.libc.static or null) ];
- });
- xauth = xorgsuper.xauth.overrideAttrs (attrs: {
- # missing transitive dependencies
- preConfigure = attrs.preConfigure or "" + ''
- export NIX_CFLAGS_LINK="$NIX_CFLAGS_LINK -lxcb -lXau -lXdmcp"
- '';
- });
- xdpyinfo = xorgsuper.xdpyinfo.overrideAttrs (attrs: {
- # missing transitive dependencies
- preConfigure = attrs.preConfigure or "" + ''
- export NIX_CFLAGS_LINK="$NIX_CFLAGS_LINK -lXau -lXdmcp"
- '';
- });
- libxcb = xorgsuper.libxcb.overrideAttrs (attrs: {
- configureFlags = attrs.configureFlags ++ [ "--disable-shared" ];
- });
- libXi= xorgsuper.libXi.overrideAttrs (attrs: {
- configureFlags = attrs.configureFlags ++ [ "--disable-shared" ];
- });
- });
}