diff --git a/doc/overlays.xml b/doc/overlays.xml
index ad31b90299e..cc0aef447d2 100644
--- a/doc/overlays.xml
+++ b/doc/overlays.xml
@@ -17,42 +17,68 @@ if multiple layers override the same package.
Installing overlays
-The list of overlays is determined as follows:
+The list of overlays is determined as follows.
+
+If the overlays argument is not provided explicitly, we look for overlays in a path. The path
+is determined as follows:
First, if an overlays argument to the nixpkgs function itself is given,
- then that is used. This can be passed explicitly when importing nipxkgs, for example
- import <nixpkgs> { overlays = [ overlay1 overlay2 ] }.
+ then that is used.
- On a NixOS system the value of the nixpkgs.overlays option, if present,
- is passed to the system Nixpkgs in this way. Note that this does not affect the overlays for
- non-NixOS operations (e.g. nix-env), which are looked up independently.
+ This can be passed explicitly when importing nipxkgs, for example
+ import <nixpkgs> { overlays = [ overlay1 overlay2 ]; }.
- Otherwise, if the Nix path entry <nixpkgs-overlays> exists and is a
- directory, then the result is the set of overlays found in that directory, ordered lexicographically.
+ Otherwise, if the Nix path entry <nixpkgs-overlays> exists, we look for overlays
+ at that path, as described below.
See the section on NIX_PATH in the Nix manual for more details on how to
set a value for <nixpkgs-overlays>.
- Otherwise, if ~/.config/nixpkgs/overlays/ exists and is a directory, then
- the result is the set of overlays found in that directory, ordered lexicographically.
+ If one of ~/.config/nixpkgs/overlays.nix and
+ ~/.config/nixpkgs/overlays/ exists, then we look for overlays at that path, as
+ described below. It is an error if both exist.
-For the second and third options, overlays are extracted from the given directory as files,
-directories containing a default.nix, or symlinks to one of those.
+If we are looking for overlays at a path, then there are two cases:
+
+
+ If the path is a file, then the file is imported as a Nix expression and used as the list of
+ overlays.
+
-The last option provides a convenient way to install an overlay from a repository,
-by cloning the overlay's repository and adding a symbolic link to it in
-~/.config/nixpkgs/overlays/.
+
+ If the path is a directory, then we take the content of the directory, order it
+ lexicographically, and attempt to interpret each as an overlay by:
+
+
+ Importing the file, if it is a .nix file.
+
+
+ Importing a top-level default.nix file, if it is a directory.
+
+
+
+
+
+
+
+On a NixOS system the value of the nixpkgs.overlays option, if present,
+is passed to the system Nixpkgs directly as an argument. Note that this does not affect the overlays for
+non-NixOS operations (e.g. nix-env), which are looked up independently.
+
+The overlays.nix option therefore provides a convenient way to use the same
+overlays for a NixOS system configuration and user configuration: the same file can be used
+as overlays.nix and imported as the value of nixpkgs.overlays.
diff --git a/doc/stdenv.xml b/doc/stdenv.xml
index e637962fbb7..dac53bc2b80 100644
--- a/doc/stdenv.xml
+++ b/doc/stdenv.xml
@@ -1,3 +1,4 @@
+
@@ -1153,7 +1154,7 @@ makeWrapper $out/bin/foo $wrapperfile --prefix PATH : ${lib.makeBinPath [ hello
-
+
substitute
@@ -1312,7 +1313,7 @@ someVar=$(stripHash $name)
-
+
wrapProgram
@@ -1342,12 +1343,34 @@ someVar=$(stripHash $name)
- GCC wrapper
- Adds the include subdirectory
- of each build input to the NIX_CFLAGS_COMPILE
- environment variable, and the lib and
- lib64 subdirectories to
- NIX_LDFLAGS.
+ CC Wrapper
+
+
+ CC Wrapper wraps a C toolchain for a bunch of miscellaneous purposes.
+ Specifically, a C compiler (GCC or Clang), Binutils (or the CCTools + binutils mashup when targetting Darwin), and a C standard library (glibc or Darwin's libSystem) are all fed in, and dependency finding, hardening (see below), and purity checks for each are handled by CC Wrapper.
+ Packages typically depend on only CC Wrapper, instead of those 3 inputs directly.
+
+
+ Dependency finding is undoubtedly the main task of CC wrapper.
+ It is currently accomplished by collecting directories of host-platform dependencies (i.e. buildInputs and nativeBuildInputs) in environment variables.
+ CC wrapper's setup hook causes any include subdirectory of such a dependency to be added to NIX_CFLAGS_COMPILE, and any lib and lib64 subdirectories to NIX_LDFLAGS.
+ The setup hook itself contains some lengthy comments describing the exact convoluted mechanism by which this is accomplished.
+
+
+ A final task of the setup hook is defining a number of standard environment variables to tell build systems which executables full-fill which purpose.
+ They are defined to just be the base name of the tools, under the assumption that CC Wrapper's binaries will be on the path.
+ Firstly, this helps poorly-written packages, e.g. ones that look for just gcc when CC isn't defined yet clang is to be used.
+ Secondly, this helps packages not get confused when cross-compiling, in which case multiple CC wrappers may be simultaneous in use (targeting different platforms).
+ BUILD_- and TARGET_-prefixed versions of the normal environment variable are defined for the additional CC Wrappers, properly disambiguating them.
+
+
+ A problem with this final task is that CC Wrapper is honest and defines LD as ld.
+ Most packages, however, firstly use the C compiler for linking, secondly use LD anyways, defining it as the C compiler, and thirdly, only so define LD when it is undefined as a fallback.
+ This triple-threat means CC Wrapper will break those packages, as LD is already defined as the actually linker which the package won't override yet doesn't want to use.
+ The workaround is to define, just for the problematic package, LD as the C compiler.
+ A good way to do this would be preConfigure = "LD=$CC".
+
+
diff --git a/lib/maintainers.nix b/lib/maintainers.nix
index 5762982273b..727fd2091c9 100644
--- a/lib/maintainers.nix
+++ b/lib/maintainers.nix
@@ -595,6 +595,7 @@
uwap = "uwap ";
vaibhavsagar = "Vaibhav Sagar ";
vandenoever = "Jos van den Oever ";
+ vanschelven = "Klaas van Schelven ";
vanzef = "Ivan Solyankin ";
vbgl = "Vincent Laporte ";
vbmithr = "Vincent Bernardoff ";
diff --git a/nixos/doc/manual/release-notes/rl-1709.xml b/nixos/doc/manual/release-notes/rl-1709.xml
index a32f9963d1c..0cd9e957188 100644
--- a/nixos/doc/manual/release-notes/rl-1709.xml
+++ b/nixos/doc/manual/release-notes/rl-1709.xml
@@ -196,6 +196,17 @@ rmdir /var/lib/ipfs/.ipfs
is still UTC.
+
+
+ Nixpkgs overlays may now be specified with a file as well as a directory. The
+ value of <nixpkgs-overlays> may be a file, and
+ ~/.config/nixpkgs/overlays.nix can be used instead of the
+ ~/.config/nixpkgs/overalys directory.
+
+
+ See the overlays chapter of the Nixpkgs manual for more details.
+
+
diff --git a/nixos/modules/services/audio/mpd.nix b/nixos/modules/services/audio/mpd.nix
index bd6c316243c..5f379b392ea 100644
--- a/nixos/modules/services/audio/mpd.nix
+++ b/nixos/modules/services/audio/mpd.nix
@@ -10,11 +10,9 @@ let
gid = config.ids.gids.mpd;
cfg = config.services.mpd;
- playlistDir = "${cfg.dataDir}/playlists";
-
mpdConf = pkgs.writeText "mpd.conf" ''
music_directory "${cfg.musicDirectory}"
- playlist_directory "${playlistDir}"
+ playlist_directory "${cfg.playlistDirectory}"
db_file "${cfg.dbFile}"
state_file "${cfg.dataDir}/state"
sticker_file "${cfg.dataDir}/sticker.sql"
@@ -57,11 +55,21 @@ in {
musicDirectory = mkOption {
type = types.path;
default = "${cfg.dataDir}/music";
+ defaultText = ''''${dataDir}/music'';
description = ''
The directory where mpd reads music from.
'';
};
+ playlistDirectory = mkOption {
+ type = types.path;
+ default = "${cfg.dataDir}/playlists";
+ defaultText = ''''${dataDir}/playlists'';
+ description = ''
+ The directory where mpd stores playlists.
+ '';
+ };
+
extraConfig = mkOption {
type = types.lines;
default = "";
@@ -120,6 +128,7 @@ in {
dbFile = mkOption {
type = types.str;
default = "${cfg.dataDir}/tag_cache";
+ defaultText = ''''${dataDir}/tag_cache'';
description = ''
The path to MPD's database.
'';
@@ -153,7 +162,7 @@ in {
preStart = ''
mkdir -p "${cfg.dataDir}" && chown -R ${cfg.user}:${cfg.group} "${cfg.dataDir}"
- mkdir -p "${playlistDir}" && chown -R ${cfg.user}:${cfg.group} "${playlistDir}"
+ mkdir -p "${cfg.playlistDirectory}" && chown -R ${cfg.user}:${cfg.group} "${cfg.playlistDirectory}"
'';
serviceConfig = {
User = "${cfg.user}";
diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix
index 26e689a7c92..54fd4a15ffc 100644
--- a/nixos/release-combined.nix
+++ b/nixos/release-combined.nix
@@ -70,6 +70,7 @@ in rec {
(all nixos.tests.installer.simple)
(all nixos.tests.installer.simpleLabels)
(all nixos.tests.installer.simpleProvided)
+ (all nixos.tests.installer.simpleUefiSystemdBoot)
(all nixos.tests.installer.swraid)
(all nixos.tests.installer.btrfsSimple)
(all nixos.tests.installer.btrfsSubvols)
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index a6afe8a4b72..d1fc3c85e99 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -270,7 +270,7 @@ in {
};
# Simple GPT/UEFI configuration using systemd-boot with 3 partitions: ESP, swap & root filesystem
- simpleUefiGummiboot = makeInstallerTest "simpleUefiGummiboot"
+ simpleUefiSystemdBoot = makeInstallerTest "simpleUefiSystemdBoot"
{ createPartitions =
''
$machine->succeed(
diff --git a/pkgs/applications/altcoins/cryptop/default.nix b/pkgs/applications/altcoins/cryptop/default.nix
index a37ff5639d9..0136ab18cea 100644
--- a/pkgs/applications/altcoins/cryptop/default.nix
+++ b/pkgs/applications/altcoins/cryptop/default.nix
@@ -16,7 +16,7 @@ python2.pkgs.buildPythonApplication rec {
doCheck = false;
meta = {
- homepage = http://github.com/huwwp/cryptop;
+ homepage = https://github.com/huwwp/cryptop;
description = "Command line Cryptocurrency Portfolio";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ bhipple ];
diff --git a/pkgs/applications/audio/amarok/default.nix b/pkgs/applications/audio/amarok/default.nix
index 3b675cd9020..022e33991f9 100644
--- a/pkgs/applications/audio/amarok/default.nix
+++ b/pkgs/applications/audio/amarok/default.nix
@@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
repositories.git = git://anongit.kde.org/amarok.git;
description = "Popular music player for KDE";
license = "GPL";
- homepage = http://amarok.kde.org;
+ homepage = https://amarok.kde.org;
inherit (kdelibs4.meta) platforms;
};
}
diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix
index c447863e149..a1cca6ee162 100644
--- a/pkgs/applications/audio/ardour/default.nix
+++ b/pkgs/applications/audio/ardour/default.nix
@@ -16,7 +16,7 @@ let
# "git describe" when _not_ on an annotated tag(!): MAJOR.MINOR-REV-HASH.
# Version to build.
- tag = "5.10";
+ tag = "5.11";
in
@@ -25,8 +25,8 @@ stdenv.mkDerivation rec {
src = fetchgit {
url = "git://git.ardour.org/ardour/ardour.git";
- rev = "9c629c0c76808cc3e8f05e43bc760f849566dce6";
- sha256 = "062igiaaj18kbismrpzbafyq1ryyqj3lh0ajqqs2s8ms675x33sl";
+ rev = "bd40b9132cbac2d2b79ba0ef480bd41d837f8f71";
+ sha256 = "0xxxjg90jzj5cj364mlhk8srkgaghxif2jj1015bra25pffk41ay";
};
buildInputs =
diff --git a/pkgs/applications/audio/distrho/default.nix b/pkgs/applications/audio/distrho/default.nix
index 5d4e19700d8..9d157833c0d 100644
--- a/pkgs/applications/audio/distrho/default.nix
+++ b/pkgs/applications/audio/distrho/default.nix
@@ -2,12 +2,12 @@
, libxslt, lv2, pkgconfig, premake3, xorg, ladspa-sdk }:
stdenv.mkDerivation rec {
- name = "distrho-ports-unstable-2016-06-26";
+ name = "distrho-ports-unstable-2017-08-04";
src = fetchgit {
url = "https://github.com/DISTRHO/DISTRHO-Ports.git";
- rev = "e3969853ec9ba897c50ac060f0167313e2a18b29";
- sha256 = "0id4p8dlnlv5271yvmyawfr754nzah7xhvjkj633lw5yr3mq707m";
+ rev = "f591a1066cd3929536699bb516caa4b5efd9d025";
+ sha256 = "1qjnmpmwbq2zpwn8v1dmqn3bjp2ykj5p89fkjax7idgpx1cg7pp9";
};
patchPhase = ''
diff --git a/pkgs/applications/audio/ponymix/default.nix b/pkgs/applications/audio/ponymix/default.nix
index ff688f7b3dc..5cfbb7bf5a4 100644
--- a/pkgs/applications/audio/ponymix/default.nix
+++ b/pkgs/applications/audio/ponymix/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "CLI PulseAudio Volume Control";
- homepage = http://github.com/falconindy/ponymix;
+ homepage = https://github.com/falconindy/ponymix;
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ ericsagnes ];
diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix
index ec8bef7deee..31e6476d282 100644
--- a/pkgs/applications/editors/atom/default.nix
+++ b/pkgs/applications/editors/atom/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "atom-${version}";
- version = "1.19.0";
+ version = "1.19.2";
src = fetchurl {
url = "https://github.com/atom/atom/releases/download/v${version}/atom-amd64.deb";
- sha256 = "1gdasqpmbyasd05p5920aw6bf8j58crs51gxjslsgbl1azi4yfh2";
+ sha256 = "0bfhcxhjsa7p35s5dz3zjxm4wc802m3k137p04l9anr3v5hrgqmb";
name = "${name}.deb";
};
diff --git a/pkgs/applications/editors/emacs-modes/erlang/default.nix b/pkgs/applications/editors/emacs-modes/erlang/default.nix
index 496c79543a9..463d7fc7e15 100644
--- a/pkgs/applications/editors/emacs-modes/erlang/default.nix
+++ b/pkgs/applications/editors/emacs-modes/erlang/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
# emacs highlighting */
meta = with stdenv.lib; {
- homepage = http://github.com/erlang/otp;
+ homepage = https://github.com/erlang/otp;
description = "Erlang mode for Emacs";
license = licenses.asl20;
platforms = platforms.unix;
diff --git a/pkgs/applications/editors/emacs-modes/haskell/default.nix b/pkgs/applications/editors/emacs-modes/haskell/default.nix
index 30917a41bd4..6f998300290 100644
--- a/pkgs/applications/editors/emacs-modes/haskell/default.nix
+++ b/pkgs/applications/editors/emacs-modes/haskell/default.nix
@@ -30,7 +30,7 @@ stdenv.mkDerivation {
installCheckTarget = "check";
meta = {
- homepage = http://github.com/haskell/haskell-mode;
+ homepage = https://github.com/haskell/haskell-mode;
description = "Haskell mode for Emacs";
platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/applications/editors/vis/default.nix b/pkgs/applications/editors/vis/default.nix
index 291c7b1b412..eef1746ff38 100644
--- a/pkgs/applications/editors/vis/default.nix
+++ b/pkgs/applications/editors/vis/default.nix
@@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A vim like editor";
- homepage = http://github.com/martanne/vis;
+ homepage = https://github.com/martanne/vis;
license = licenses.isc;
maintainers = with maintainers; [ vrthra ramkromberg ];
platforms = platforms.unix;
diff --git a/pkgs/applications/editors/vscode-with-extensions/default.nix b/pkgs/applications/editors/vscode-with-extensions/default.nix
new file mode 100644
index 00000000000..983acbbac19
--- /dev/null
+++ b/pkgs/applications/editors/vscode-with-extensions/default.nix
@@ -0,0 +1,82 @@
+{ stdenv, lib, fetchurl, runCommand, buildEnv, vscode, which, writeScript
+, vscodeExtensions ? [] }:
+
+/*
+ `vsixExtensions`
+ : A set of vscode extensions to be installed alongside the editor. Here's a an
+ example:
+
+ ~~~
+ vscode-with-extensions.override {
+
+ # When the extension is already available in the default extensions set.
+ vscodeExtensions = with vscodeExtensions; [
+ nix
+ ]
+
+ # Concise version from the vscode market place when not available in the default set.
+ ++ vscodeUtils.extensionsFromVscodeMarketplace [
+ {
+ name = "code-runner";
+ publisher = "formulahendry";
+ version = "0.6.33";
+ sha256 = "166ia73vrcl5c9hm4q1a73qdn56m0jc7flfsk5p5q41na9f10lb0";
+ }
+ ];
+ }
+ ~~~
+
+ This expression should fetch
+ - the *nix* vscode extension from whatever source defined in the
+ default nixpkgs extensions set `vscodeExtensions`.
+
+ - the *code-runner* vscode extension from the marketplace using the
+ following url:
+
+ ~~~
+ https://bbenoist.gallery.vsassets.io/_apis/public/gallery/publisher/bbenoist/extension/nix/1.0.1/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage
+ ~~~
+
+ The original `code` executable will be wrapped so that it uses the set of pre-installed / unpacked
+ extensions as its `--extensions-dir`.
+*/
+
+let
+
+ wrappedPkgVersion = lib.getVersion vscode;
+ wrappedPkgName = lib.removeSuffix "-${wrappedPkgVersion}" vscode.name;
+
+ combinedExtensionsDrv = buildEnv {
+ name = "${wrappedPkgName}-extensions-${wrappedPkgVersion}";
+ paths = vscodeExtensions;
+ };
+
+ wrappedExeName = "code";
+ exeName = wrappedExeName;
+
+ wrapperExeFile = writeScript "${exeName}" ''
+ #!${stdenv.shell}
+ exec ${vscode}/bin/${wrappedExeName} \
+ --extensions-dir "${combinedExtensionsDrv}/share/${wrappedPkgName}/extensions" \
+ "$@"
+ '';
+
+in
+
+# When no extensions are requested, we simply redirect to the original
+# non-wrapped vscode executable.
+runCommand "${wrappedPkgName}-with-extensions-${wrappedPkgVersion}" {
+ buildInputs = [ vscode which ];
+ dontPatchELF = true;
+ dontStrip = true;
+ meta = vscode.meta;
+} ''
+ mkdir -p "$out/bin"
+ ${if [] == vscodeExtensions
+ then ''
+ ln -sT "${vscode}/bin/${wrappedExeName}" "$out/bin/${exeName}"
+ ''
+ else ''
+ ln -sT "${wrapperExeFile}" "$out/bin/${exeName}"
+ ''}
+''
diff --git a/pkgs/applications/editors/vscode/default.nix b/pkgs/applications/editors/vscode/default.nix
index a22f4627c99..5db2a1aaece 100644
--- a/pkgs/applications/editors/vscode/default.nix
+++ b/pkgs/applications/editors/vscode/default.nix
@@ -2,7 +2,7 @@
makeWrapper, libXScrnSaver, libxkbfile }:
let
- version = "1.15.0";
+ version = "1.15.1";
channel = "stable";
plat = {
@@ -12,9 +12,9 @@ let
}.${stdenv.system};
sha256 = {
- "i686-linux" = "1ny4n6xbwvw88fy6k59dd2g4h8z9a9r7m6fbpgs6lwv0a6cill01";
- "x86_64-linux" = "16mm9yks271p81nsp6yhfgdy5b1w7cs12cwn2z919kj0i4i09fk1";
- "x86_64-darwin" = "1dwpnllff72yd8a6gc9xv4j7fxwsjgwjvdss0ld4m6kx17zm43qm";
+ "i686-linux" = "09vvq02bsq6fdb0ibshn97kll43dpfmyq2dahl9gj02jlwardq27";
+ "x86_64-linux" = "1kg25i4kavmgivnk4w3dsbsnn9vncl5d2m0ds93f8qvmxpizwg21";
+ "x86_64-darwin" = "1fgjg7c9appp8v0ir7m2r3a3x4z0gx4na0p3d8j1x4pcs0kqy0qp";
}.${stdenv.system};
archive_fmt = if stdenv.system == "x86_64-darwin" then "zip" else "tar.gz";
diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix
index 48a29e147f0..e31c249bb93 100644
--- a/pkgs/applications/graphics/ImageMagick/default.nix
+++ b/pkgs/applications/graphics/ImageMagick/default.nix
@@ -13,8 +13,8 @@ let
else throw "ImageMagick is not supported on this platform.";
cfg = {
- version = "6.9.9-3";
- sha256 = "1bfg334nxkxhsm6h0hb0vwd9aiz031qa0w8w8hmhdk8m4wawshrg";
+ version = "6.9.9-7";
+ sha256 = "1lwsz9b8clygdppgawv2hsry4aykgmawjlwhg3fj70rndv4a8rw4";
patches = [];
}
# Freeze version on mingw so we don't need to port the patch too often.
diff --git a/pkgs/applications/graphics/pencil/default.nix b/pkgs/applications/graphics/pencil/default.nix
index 5b1f79a6c4f..f7175f9d2b8 100644
--- a/pkgs/applications/graphics/pencil/default.nix
+++ b/pkgs/applications/graphics/pencil/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "GUI prototyping/mockup tool";
- homepage = http://github.com/prikhi/pencil;
+ homepage = https://github.com/prikhi/pencil;
license = licenses.gpl2; # Commercial license is also available
maintainers = with maintainers; [ bjornfor prikhi ];
platforms = platforms.linux;
diff --git a/pkgs/applications/graphics/solvespace/default.nix b/pkgs/applications/graphics/solvespace/default.nix
index 9026fc5d7cb..f8db30675b1 100644
--- a/pkgs/applications/graphics/solvespace/default.nix
+++ b/pkgs/applications/graphics/solvespace/default.nix
@@ -1,19 +1,19 @@
{ stdenv, fetchgit, cmake, pkgconfig, zlib, libpng, cairo, freetype
-, json_c, fontconfig, gtkmm2, pangomm, glew, mesa_glu, xlibs, pcre
+, json_c, fontconfig, gtkmm3, pangomm, glew, mesa_glu, xlibs, pcre
}:
stdenv.mkDerivation rec {
- name = "solvespace-2.3-20170416";
- rev = "b1d87bf284b32e875c8edba592113e691ea10bcd";
+ name = "solvespace-2.3-20170808";
+ rev = "16540b1b2c540a4b44500ac02aaa4493bccfba7e";
src = fetchgit {
url = https://github.com/solvespace/solvespace;
inherit rev;
- sha256 = "160qam04pfrwkh9qskfmjkj01wrjwhl09xi6jjxi009yqg3cff9l";
+ sha256 = "1z10i21xf3yagd984lp1hwasnsizx2s3faq3wdzzjngrikr2zn70";
fetchSubmodules = true;
};
buildInputs = [
cmake pkgconfig zlib libpng cairo freetype
- json_c fontconfig gtkmm2 pangomm glew mesa_glu
+ json_c fontconfig gtkmm3 pangomm glew mesa_glu
xlibs.libpthreadstubs xlibs.libXdmcp pcre
];
enableParallelBuilding = true;
diff --git a/pkgs/applications/misc/milu/default.nix b/pkgs/applications/misc/milu/default.nix
index b8ccbe77cf5..9f98376a51b 100644
--- a/pkgs/applications/misc/milu/default.nix
+++ b/pkgs/applications/misc/milu/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Higher Order Mutation Testing Tool for C and C++ programs";
- homepage = http://github.com/yuejia/Milu;
+ homepage = https://github.com/yuejia/Milu;
license = stdenv.lib.licenses.bsd2;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.vrthra ];
diff --git a/pkgs/applications/misc/opencpn/default.nix b/pkgs/applications/misc/opencpn/default.nix
index 01cebe95954..056649ad3d2 100644
--- a/pkgs/applications/misc/opencpn/default.nix
+++ b/pkgs/applications/misc/opencpn/default.nix
@@ -27,6 +27,6 @@ stdenv.mkDerivation rec {
maintainers = [ stdenv.lib.maintainers.kragniz ];
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.gpl2;
- homepage = http://opencpn.org/;
+ homepage = https://opencpn.org/;
};
}
diff --git a/pkgs/applications/misc/tasksh/default.nix b/pkgs/applications/misc/tasksh/default.nix
index 333ed411941..8c7bd107c8a 100644
--- a/pkgs/applications/misc/tasksh/default.nix
+++ b/pkgs/applications/misc/tasksh/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "tasksh-${version}";
- version = "1.1.0";
+ version = "1.2.0";
enableParallelBuilding = true;
src = fetchurl {
url = "http://taskwarrior.org/download/${name}.tar.gz";
- sha256 = "0900nzfgvhcc106pl68d0v0qszvdc34yi59mw70b34b2gmkwdxzf";
+ sha256 = "1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/applications/misc/tilix/default.nix b/pkgs/applications/misc/tilix/default.nix
index 63b3430cbe3..2128c260b80 100644
--- a/pkgs/applications/misc/tilix/default.nix
+++ b/pkgs/applications/misc/tilix/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
name = "tilix-${version}";
- version = "1.6.1";
+ version = "1.6.4";
src = fetchFromGitHub {
owner = "gnunn1";
repo = "tilix";
rev = "${version}";
- sha256 = "10nw3q6s941dm44bkfryl1xclr1xy1vjr2n8w7g6kfahpcazf8f8";
+ sha256 = "1vqi68jlbbaky1569kd4lr6p02zsiv7v2rfb8j1pzwj7gydblaac";
};
nativeBuildInputs = [
@@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
preFixup = ''
substituteInPlace $out/share/applications/com.gexperts.Tilix.desktop \
--replace "Exec=tilix" "Exec=$out/bin/tilix"
+ sed -i '/^DBusActivatable=/d' $out/share/applications/com.gexperts.Tilix.desktop
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
index 2d076828694..cba850e33d5 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
@@ -1,955 +1,955 @@
{
- version = "55.0.1";
+ version = "55.0.2";
sources = [
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ach/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ach/firefox-55.0.2.tar.bz2";
locale = "ach";
arch = "linux-x86_64";
- sha512 = "c991a8c53d1f415253a66fdf337e082a3cb75f30b9b340ed29b059e2a6f50d67c320bcfa9584206f1e23c1af5d3e8b825e30ee009f7d8130318cc356d8550316";
+ sha512 = "3824d633f5aec2bf1f9c6809ddde44a85081dcceee05898275b8c4c6dc26113e453ad701d4c05b5a81c81fe2ac42baf37fa2fa9c22129451435eb78791df51b1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/af/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/af/firefox-55.0.2.tar.bz2";
locale = "af";
arch = "linux-x86_64";
- sha512 = "8112c343179b1bd61f03cb67a0712ef5584848bd2dfb28dc46ccabfc66eb803ef9f23d023c6f22c6cadf715ba459f36e99bae5be8f6c62af772a7f67f724767e";
+ sha512 = "e3ad3df3469ced1f12fad5a6cc16c7be6754867bbd2871aaa07a9f49a26c3d8c07363892cfae0e8245d9020c5448e82d01d4d2b6c7fd93a7083b2d6480aec689";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/an/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/an/firefox-55.0.2.tar.bz2";
locale = "an";
arch = "linux-x86_64";
- sha512 = "41899ad93e627e851423ec8b5acd6bd940a10dbe80e98377e7d4080b31e9a8f5ceb51eec46931429688a4b56065af2a3595f51c3ef2c51561dd5a06d0c0cb347";
+ sha512 = "1ace2fbf01cc30f70ba7dba7803f4052ec8c05f93e174225e9aff14a67e8b7214dfba43080b4c50c761b80801a9e16a92c0f753734cdc34dd7b482cf023ff0b1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ar/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ar/firefox-55.0.2.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha512 = "ba4bf0c1ede64f3c11d00b5ef3b193d4e36bfc49687572050b22cbd0bc30be050a7df3401eb20e869b1f33ab16988701392b845f89d4693a589be589eda54ecd";
+ sha512 = "a1dd8e128bec748c37b849c8c480c9f106c614440bc4f8d3b17b28cbf0558b8e6524a0b459d2ed5f6031133056f0f73826691b9ccc1a9efd216ffbc3f64a6eb2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/as/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/as/firefox-55.0.2.tar.bz2";
locale = "as";
arch = "linux-x86_64";
- sha512 = "b3ae2fad8940ddaa16102f9d43bc5113a5f4f38a4527c43e1a4b88a63015d128a201b68b72377c23274023b7486829181bb44ecec43ba50fe1bc438d30da8349";
+ sha512 = "995993ac28d2ef309e025d15f75ce29c3cd028f79bcbc4aab65d1e10efda2887faaabc6beb8277baf81ef256d8365c062e6362f2dfa91b37a65930ba5cb59c0f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ast/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ast/firefox-55.0.2.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha512 = "80688f5eb65f4fe09a840d5f3ba2516bbe45dbb2f2b96cb4f8af38900880dea22f3b8e040491d81c96abb4fa1d50815e86b5806dc8e31148c0235b0a72bafb12";
+ sha512 = "8bd9c1dbc549b7b8024c28f026e2b9b5a099b80904938955372e157016b4ddc729a378502fb7973a9352bbdd09646942241eb23d8a7528874ff500b0aaade77b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/az/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/az/firefox-55.0.2.tar.bz2";
locale = "az";
arch = "linux-x86_64";
- sha512 = "0e8d42394d79c3a8f8f9f7a7ddf5894adbd89627832908e2f82b4712bd3260e8b10e04eb0166ee8c2a1010cd9dc4836ccbf99d3af794187ee90f06142286bed1";
+ sha512 = "38ba0acf054195274043470d4c71c8f2800ea543806ab0d6f39b0545fe634c742072900075c319593e5a75b8403dc2228c049cd9c359497a71627d74bb750bbb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/be/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/be/firefox-55.0.2.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha512 = "c13a53874775cf3e2da703dc7ca5c1f9d69e3af9050b7f58cf903f87a2ee7643e7db361d3d3628e470d808ce1b412d355653cf2d67691e1e89c584a9709cfe41";
+ sha512 = "dde5852d9d000b81ef460e49c540fdf2731ba836d5df50771c551b96f857263552389dbe97289b6d95019630774c1e8b8a85a90ca94ac275410c1ea18bcde833";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/bg/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/bg/firefox-55.0.2.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha512 = "8a6a34f0a31793e70edfd44edb54d3709a3960c3625f5856626c28f0df0e93d18d0190d3161c18315df678328918fd4029de9be9db7a6ee426a9054dc5d9c50e";
+ sha512 = "e0e642f9a7e6c1968f77cd34722acc77de84994b92745048093abb123d79ce9206945c9eea519b10a293ea349c7922937c27e6d9e7b6709b6aef388058f6e6ef";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/bn-BD/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/bn-BD/firefox-55.0.2.tar.bz2";
locale = "bn-BD";
arch = "linux-x86_64";
- sha512 = "17e2b8046b6dfe2bef7c8dd7027fa2fe2c008672b7d5a9676a9b6ece12b7b3bf7fe61a5d5378f1974f530199739982a83b421b7cf4643c9bd654a4b2235f3bc2";
+ sha512 = "49834af50d8f8e547f504a504d6161c07675cdcd98bb8d964d5f6c72c76d22925865677e64a90175ddb3312c8a9efc1d113e76aaa914e9d6315f635dc3095bac";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/bn-IN/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/bn-IN/firefox-55.0.2.tar.bz2";
locale = "bn-IN";
arch = "linux-x86_64";
- sha512 = "39a5c15019881507552a583053fe601dbc04e0de410dad3ce7727ddcdb128b28c5becfc748a1c5b89bb272db66f2bcb4eb6ea1b8a3cd37c1d10156ba29b3165d";
+ sha512 = "664692ced004e94e61ff9c44618931f62b316ddf0b56eb83dab7d4fe69a5016b3b5efd5a02c49e3ba41cb51b2298096c74ff2fa8131731bf79708a23203ce350";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/br/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/br/firefox-55.0.2.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha512 = "7ee7d1fcffbaa0791c88338a8b471bc20747abed505ece15f74f58b747eb56b300b71ff15e72e56d5deaf75d98ccbe93bf8c1e0ad3038238913f72f9156f8790";
+ sha512 = "e9ba0f8bfff1929820ca0cca3de5c377c8c483e4ba46b3064cb210f971aebbf2f5cc67d13a05e1c19e988006ff37dfee607d00317162f5146dd8a1b7e167ee83";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/bs/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/bs/firefox-55.0.2.tar.bz2";
locale = "bs";
arch = "linux-x86_64";
- sha512 = "038c185cd6fd2efb1dc51c9e2275d98fa0040e68de306d5cc3d799893a69f937353c94c00bfb9fcfef2a2c6099149926ce30ecfbd972170cea501f9c44c836c4";
+ sha512 = "41fc17c916c3c23cbbcccdad686ebbbee3ff9d68b0b72f8e8e8819e438df2fda7aa954be3a0076d91fb5c05b507873a2bca90e2b661542b86ffb0bee3cf6bb77";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ca/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ca/firefox-55.0.2.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha512 = "be717242a9c93705234d87d0b091925f1b07e60130aa06ef19b72283f0594abafed577b6d98eaa9fab6941d1f8c2f43292de20b9476312aebe0fc51d368ac50d";
+ sha512 = "d0880ef0357a3e8d9f3d419390b8bbd95c75d6f50469a63e7c1e0182cf98e85c942d75dd1c3736c856deace3f49c6751f9e8e1b320fb0aa73a78129340e5467e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/cak/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/cak/firefox-55.0.2.tar.bz2";
locale = "cak";
arch = "linux-x86_64";
- sha512 = "1b9ea57bd4164862c9c29e3fa16200aa7ca15c277f00b838439edba4256e323aff97d27264bbd20a5e08ed70e4f897611505570eb01a2ce0f9cb30c2c611d065";
+ sha512 = "62a6e53dd82ef2bc2881c1aa912bdcd9628123b13a769f43d640c05c1a02dde9ad5d69f486c2858c68ddac7dcd2275fd3970e56d48f4e842a3757f453e6843fd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/cs/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/cs/firefox-55.0.2.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha512 = "ee32ed99d5d4b05d6a9ca4d6d274e16ada833dfc9f5735898eebcffa7925d1ac1229ab671af9f8eaad7d4fd6d2135e58c8f6266e1173a8797a513b977235ec0b";
+ sha512 = "719e052b32b1e080b4627f286bacd9b3bc2b8f40cf8b79ba2643f08220a05201e649fa98f679c4fb926a23355a12ef744ff7b5ef819d9b825d5a5ae790f7a6ec";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/cy/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/cy/firefox-55.0.2.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha512 = "29302ad22573fc52e0764b89848ea43ebff98ffe94d3d91d1aafa05e063cf9c5580c9e79e0b987f18a87a648a6076f98c48d20d5621ebd46be02fcf41ce19779";
+ sha512 = "ffbb24e8720f354c2a20d5d13d6b3f003a0b3d1606da231cc9c4750d837efeedb4a789fc4b787463d0e6f0fd9492583fc24b791de6ab4eeff6f2258dc2206f93";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/da/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/da/firefox-55.0.2.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha512 = "25f8252bac8b1b4e353dc8be0945820bb9e013dfb30866b14d6109026c122cd9038e0e70d54f959a59dbf99fbbee48d0e3254f7e1091b2e2e2811b83498e36d1";
+ sha512 = "62a53b150f4dce8d09e63c44bc4ec5d3657b8db624a71415b666101b5a4ff2c98da3ab4e0587bef824ad0303da78060c6ac5409747291dd021d2d62437417928";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/de/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/de/firefox-55.0.2.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha512 = "2d013bd921ea9758807e64588f887fd841c6b8b32a18b9eab3b2ac1f598c4d7acb27b2defd4a836bedac238c96cc7bf700ef87f973a39d21e87ddbb7e27be1ff";
+ sha512 = "feddf89febf177d83e816900cdfcfc03c119c4aebb026586cee127d541db7d7c37c6d47e989402a657e51d66d7564e13016926f16cd3510ae0cbf6b4f767aeba";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/dsb/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/dsb/firefox-55.0.2.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha512 = "f640fd20c2beb5cf6aaf402fa220a01176e0eb74d4429cc10f76bfca9a8579e17e490bb2f045ca6e61de4ab49703c68571c4dd7ee82c438b2f8ab94ecf53ec0c";
+ sha512 = "ceb9fe65ef661d721c43879082c1d99c90f293ff38137c7ff2994f0a7b53086452f139f3ccd2c15fdba1b09a16abe560d4a81499926830f06b5311eb05746157";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/el/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/el/firefox-55.0.2.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha512 = "6d1f68305ef9faf6c0d304b8ed4b4c093375c03b95b01ea7c61fd421cefbc84b8fb878cf49fdc5f3ec8552b277dc351f201470c5c4f45a249b3e010a863dd65b";
+ sha512 = "13c7ffaa22e1b9968b643d4cd6e4b46310476592ec894293be1f0179e9c16c02944c34e2b25fb5a0dcea5d374c8bd5258a370df1539b967b96b6781fdfbde753";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/en-GB/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/en-GB/firefox-55.0.2.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha512 = "e4bb9746e00490bac82750130284847d845ee8c85d48d84b799d725a3dd82ce68046bb2c9bcfa4c92070383a4f439766abe58dbfc9346cb51aabdc730b3e8ea8";
+ sha512 = "566ff317b62ad2158866ca7f50509eed0272e00029686719c1843ea742d252c45137f9d6f867b0ca88e63e84a7f46444b9f6d669bca31f6bb2566edffa167f75";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/en-US/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/en-US/firefox-55.0.2.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha512 = "13598109ae60682bfa122925874173749114a093f7989bf0a4cac4def59db5ad53db61546d28ce09482cab1225924c7d35bf4efa8b3051e78ad760f892050a35";
+ sha512 = "93092a136943c8901a1d62d34582dc3d6c5a71629a274e54650901eddde89287d489572605a0d937f16d3ff9cf2b0e95ec8dd90acaf7da979f599623d1b9ff99";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/en-ZA/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/en-ZA/firefox-55.0.2.tar.bz2";
locale = "en-ZA";
arch = "linux-x86_64";
- sha512 = "5d7dd0d6b2e06dc2c3ab94cdeefd168c005703cc3c632aafd7896bc631002ebe26c1c0103307f3165b720cfe79e63fdc9b37429885a2eefdba492b714ab308ef";
+ sha512 = "5898f88d188daed37bd8b5bf523d94bc3ae8064a3a020b463658f333140c4cbdecc24f053bc898dd2e81f3e945a2d0ae63a05bbeaf27f8ac94a7477f697e354a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/eo/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/eo/firefox-55.0.2.tar.bz2";
locale = "eo";
arch = "linux-x86_64";
- sha512 = "1f67bfb98891effb2ecfb127b9ab9ffda714187a34265277fb7841f41d5a4ddfb81ead7f4cc1d38af290feaeb36c315b2050a889b6e9b9bd7b9cdd51ba0cbb6f";
+ sha512 = "ca234eba852ce9ed736490e3db9185baba4d190fc631133747219dce7b24fdcb4fc3bf348de21bc81cc02cd818660158a94f0d2129a6869e9dc88f0b7a426c95";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/es-AR/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/es-AR/firefox-55.0.2.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha512 = "011b4f49e90ad091be5e8d932ee9a76b1653f307db328ee6770b99ef37f57e62477ca7529d182f328203523f9d0160f337748166691921d5720640c634522515";
+ sha512 = "c86897d532114b6e9039e4eff546e724177b9de1049af2634580e8ed8f2de54484fc9573fca1640ad544b8db092a477f3d855227ae1ddf2766fb5c453cfea876";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/es-CL/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/es-CL/firefox-55.0.2.tar.bz2";
locale = "es-CL";
arch = "linux-x86_64";
- sha512 = "ef29baee74951692720c32522bec81330911ac0366e9bbd816a5bdf0738e064268af2f63ea5b3542e51eed21775cde8b4d60f6cb47bb18b94315afcd078a1c84";
+ sha512 = "868ab44893d60c66da1389dd36c8b84bb44a52f0daae20a7de247bd22aa4fe3b9c5d22dd75fcfaf3b36933fdfd91f694d9758ec9ea6cd40f1882a3a721889742";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/es-ES/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/es-ES/firefox-55.0.2.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha512 = "8f21e0632e2b4d86883b139f5992becd89a8c243afd131e2f9dd863e2fb21279bd858f618789a73d46218de3bd59a5c4b017dcdda5b1db9a3400e0e0ace3c9c0";
+ sha512 = "39c9841c7a1f6e1bd9028410b49f83d57193a6995053e7056d2f1884ac6706bc54972a531031b8e14a2aabeb0c8cc1f297bb580676b4c6e0b33edd5dbd6e43eb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/es-MX/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/es-MX/firefox-55.0.2.tar.bz2";
locale = "es-MX";
arch = "linux-x86_64";
- sha512 = "9d59bfffc685aee31004894e81dda5efa3c512bfe61dbf5d224b31cdff6a859598287a8a80e7d96645718689df2dfee3b4a79c064e789d246cf32138b9346f5b";
+ sha512 = "d20bf48f886f739215fe2e46c30b355fb6113859ddc6c917c6936c119e3aa105161174f74d77e63f7bd59619b85f21353dba19be4f98d114551d585eccb70004";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/et/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/et/firefox-55.0.2.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha512 = "a833839e8243760942337161192fdcddcdd7ccffd3b5ce3c7dc939492366e8579e0deabc933a607885f20059e40dabffd389a52db05ea6bdbc794d9e15a1c9e7";
+ sha512 = "a794a793a7e430c643007d20898ff21f25a364d0629c022073747d15882f1470ee6b50c1bc6ba2d4830d09598044086d81f6f81555e23c7f3492eb8ee7b29835";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/eu/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/eu/firefox-55.0.2.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha512 = "0415c1f00f612d080dccfc3829c3f89de4fc5921ad8603c7eda0aaf9ca57b055c66a4a0f44782a8b381e4e166964f5cc805b65b84525a073a1fa3e605bd07aaa";
+ sha512 = "ae8b65527a12e8db514dcdea7d533edb52a39426e96f50707374395cc88f427e6370e864c9d55da93b02e2c92443c2f06dcda4aacb882be0a4982408678a05c2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/fa/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/fa/firefox-55.0.2.tar.bz2";
locale = "fa";
arch = "linux-x86_64";
- sha512 = "699be76441b245de502cf0b9ac44fe3c454fd11fa00d6ad590b2a393a31f4f291c3b5b7075741c82c28a721eb38a11a3627e71b42e910fbc2f474f2284820f86";
+ sha512 = "ce8df8ad73cb30195a444dc9ca9f1514081315fa4a927af79eda41ea1b2fe22c67825157cae641f80b3dd8760bf8d3d26a538a211c5828b41458ff60337c6166";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ff/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ff/firefox-55.0.2.tar.bz2";
locale = "ff";
arch = "linux-x86_64";
- sha512 = "910928159d16269784d3a41b8a423138060bdedc7e190c80e5bc95bb9358b6e8fd08c519106d68326eea4bc8f5c54157cda151fcb72d5bb1d19f82696297760b";
+ sha512 = "d896277ff916832466ae58f567cac018d259b08df13b59433707bcf60f5e75975678a25fb8bc138d3e705310e10d0cce06118f6581760fc9c1e8e076e4a5c355";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/fi/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/fi/firefox-55.0.2.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha512 = "1085f674e3fd557d62d29c81d52dbabbf09229a03d38d8eba1886a98937c560e91b8a5cd5fac1d313946eba6622eb21462bb1227cd35dfef523b34e8928b7f3a";
+ sha512 = "adc3dce086ea0113b8daf96e1ebc5d292d35007ef59b0febdf72868350e98696c4efc25ad9dc9cbee908a0721829a106ca4d72690f5e9295077e7971bc9950d8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/fr/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/fr/firefox-55.0.2.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha512 = "038f8198004d38ad9e2814bd55b2ef1d6e3af3f8f3369a90b41e44421b94ae960380ab65367375e15eeb1d0af72343874314c1005aee18dc86cf079fdc19fb80";
+ sha512 = "2446635b7fc3b76e3fdd15634c7563483fe6bdb3c26e98cbcfb0f025567a5a003bddeca68fb87a6119e46da7325b50bb429444a30b92137f7e7aac8a57ed382b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/fy-NL/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/fy-NL/firefox-55.0.2.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha512 = "83eb5df7022ad9adce4ab7966fc4979aad7f6d1bf2b47001105d67d7933feb8c264708938b87fac3908a65adcebf72f6af9d5623fa6026458dad76a360f0608d";
+ sha512 = "fb02a7d115c00f36680d9b33a65b8ce459a2607e8c9bfc9ecb70b6712a59185e990415b4998583da70996331fe3ac7230b5f2c540d27e0d04c193940b398585a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ga-IE/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ga-IE/firefox-55.0.2.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha512 = "34f3bf3ecfc264bcbde3bbca80bf138d1f7f925ce6606d6c588f0df25f22eb912dd3d0388a6798091cb88b51a22380e01fe984bc80edf95c76e301e7cac2b2cb";
+ sha512 = "02f16ddfede728b0a1b103266805263414b2ffa959ee5e5b41d4d542c747ec2b819e4e4b1b6d30173f76d91eba388572ff4a84433b05ec7d02b7ea3d351232c9";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/gd/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/gd/firefox-55.0.2.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha512 = "4d2f04c7cf06c6f8efed7abe74f8ab27794c01aba57ae2f45bbd1a749295ed7b6db4389b1c93148330695c6d213642dd9046068f0bd23ed3920bfcc7fb9dd4f6";
+ sha512 = "e1e25afce2d91f582a2cd93cab594f08f47ea5bebf273db47b79950a674e39b580e8efc477611e5f0e288593508e9cc583c6a9509f08357e9c717c84fa54acb5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/gl/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/gl/firefox-55.0.2.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha512 = "d70c3cd99be7dd1d80c070d5301a1d84f33f1b626e0471861980512c81672066a7869a5d289cf862ff4d0ff6f488b0a7cc298675aa9afb0a62a191ac476b71b1";
+ sha512 = "f077016885b4780b91e9be185fce08398be4b34e496afba3b41c9dadea4d191d4c93a36f31ec094b0e57fe0636bcf1b38c67ad5180bd63086fc07800e90f076a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/gn/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/gn/firefox-55.0.2.tar.bz2";
locale = "gn";
arch = "linux-x86_64";
- sha512 = "f183e3c3ef451367362aad3bc96cf1500fce451d3c0f467822e756266bc48d7d9d7952e82f171db2d8bf23d41bf58cef34f67da7211d31335f86574abaee567f";
+ sha512 = "c935d587a2d5d5ef9278d265fe6d7225c4568e2f9058bddef99c677e9b89ab286bece8b066a44bc4ca6d155d83ccc14382e80f2fba4a44aaaf272cfce178f5f6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/gu-IN/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/gu-IN/firefox-55.0.2.tar.bz2";
locale = "gu-IN";
arch = "linux-x86_64";
- sha512 = "31afdd21bc2d9af1a52cd24f74c76480658fb0506f38e6fd5f5f85bd66eedae49cef89aed9060f1255c515d24b2998cbf9eb449b5083bc6f2bf1805d152197ea";
+ sha512 = "9afa840dcf0de2386923186f6f3b2da1c78d3a31eb794b3aa1caa0092e90a8f7594b729970de8bb410457ec88b681abd99bb9be7eaabd8496bcfcd521ed0f14e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/he/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/he/firefox-55.0.2.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha512 = "c68c416515336a6c2c8ae69151c1b8c972f24671d354929eaf3eb647944d6e99085b5768a8156e59015401a33174fac774f0bdacc6005c3ad23a008009653fb2";
+ sha512 = "41eefbde51929a1642310b62fc61881a16643372a94b9109dec6668e28ee71d3acfc154ff26052cf4702504523ea39e5e14679b14956dfaa21628717f66a5f10";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/hi-IN/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/hi-IN/firefox-55.0.2.tar.bz2";
locale = "hi-IN";
arch = "linux-x86_64";
- sha512 = "2e62b66e9d34c9a7d9472726dc322746ef399b24400b9315dcd15f010d0bdf80d8f0c1ca912ce3275770ad925f47d576b59484b3acd861d1f3fae9e2ffe5277f";
+ sha512 = "4ab94bfa479c1dc703206fd5529ba9821afe9f388cc18a80512c5beb9411c3476ba4db7b859df4556e8382c1fa5a521e6f6682021daa46510c3497deeaad1ec4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/hr/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/hr/firefox-55.0.2.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha512 = "a5caa5839d7ba556314c513a9599ebdae05de41f5b3289987a1f1d1dee030b53da07773fd6517f42899ef443770ec3549f4160c77e26f68a1e1bb3ca598bd866";
+ sha512 = "7a0048bef5a50588220be7145a2449e2f2f16a2542e5e2af17bdf5fab10a7ca9f9441ee52bf8c274fa462d4590be6269129db5dbf3f55574b8e3257f80d2604c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/hsb/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/hsb/firefox-55.0.2.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha512 = "df83ae1a93cbed29c85d75add44b70fde9c187953fa169cbdc106ecb722ec845b129fb762325f08d0ecca188ac6bac43c6662059a6694d43ed90472ee8eb23de";
+ sha512 = "d21ba3b5344ab0f105cc6f6c426dffb553f4b98d1b6c125266d8f53209ebb58011e41d72b431945656a2c619347e309ab57252c4ed7189f6160d61379017e062";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/hu/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/hu/firefox-55.0.2.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha512 = "c5787634d4fcff538423fdd9761989ef341058fb129f33bb729686cbe5319aad7d67c8d19d9e42b7d81ac08381cd0d07504fe413a9c38c310ba3d7440ceb6934";
+ sha512 = "5bb2e9c79cc08ca3b9e4c47e85daf351e411899318abd6f97bc715a1c4134ff271f7c1830eab1da9465c975d2c1abaaac0c490b7c2504f175b3b468b7824b622";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/hy-AM/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/hy-AM/firefox-55.0.2.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha512 = "6318a512fee633ce49a2ac6cf3b3295e74624bd935e9979193796956c11239f1da3ebeb99b5547e3aaaf339c4f87d0e4501edacc13fd11435abf000a9e119ed2";
+ sha512 = "25191d401eabab8adf1d603b4838ef5fd42630e5109cdc7fbdd638cb9537f91c16fc559dead9084ebc703f3ea0b3282c9ba72bc579466ac501b2d9446e398e21";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/id/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/id/firefox-55.0.2.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha512 = "2c7d0de71a675a0d6abe14037db11087ad9a2825bc2d9bbd863f209b86d9875da08eb2005590418262b63bdb12a9b122e54230824d5916059f3855b628eec8de";
+ sha512 = "0c681e3f08b80e94b8b3c3c8fc2408e6161c3c8a665c6eaa29d5c33eaf508bcb8426dfdb0a3218d15c88b6a414e55d27468aaed43c2b87f8ccfb1ccd26f07817";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/is/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/is/firefox-55.0.2.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha512 = "a1dc23e047cb7bc21f3c1a888cd8f9168161296a47148c2296e4f033d7038fed83566a429610fb35b514aa8a902839a00201901d46361205e5e292eca7418813";
+ sha512 = "6bd3b4233ed6efa88b32047705ae9f5250cbf58f93e134924a0adb0ae7f569123b5d085011c35c0f022f37096fb812811f0fec0bf781e355a5342650820b269c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/it/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/it/firefox-55.0.2.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha512 = "cb2bd028873e28aa197e3f599b2d1aed913273f888cc2eb69775b1936763011baec1f03bc57e3da6b2088a8ff37d08ab014bdce8161bf6929c57f658772af8fe";
+ sha512 = "cf8bfaeef210cc2f94fc9405a9dcb8dda331fedb82e4743cbe6b75eb0eeca13b77a30fec648806057e0e8ec95bd957a4003e4210e38e9d122df50ee6c0c31b79";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ja/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ja/firefox-55.0.2.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha512 = "dda54f19f4a5a493b7ae6167955c9ff4c503d8cf239fe6b993a87d3f73171162e29270366bb3f2f1f1afea80e3332928417bb3e26fc414d6543e9ab2e1a2008a";
+ sha512 = "ed12eef067d9505266b27bbf856be093bd3f6bd2b82c355a3c75db0d964ba3a86838cfc976cd142c142dd77b90d5a878615577c57e7861b41a4ae6ba69bb9933";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ka/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ka/firefox-55.0.2.tar.bz2";
locale = "ka";
arch = "linux-x86_64";
- sha512 = "9e0a7042225361addf1fe41c13e0e3df869e41c1a88b4adfa64cd4912c4cc113804dac23ef5ac7a8a196ebb8552a2baf988aa9da618ab1a64e307d02c15177c6";
+ sha512 = "594f2a455ec525956e92e77e5de1f54f8cd7bc615567ebb4bb9b938d1978df1bd87f9865e6311cb4280d0b1d435cc8a522b7d7b5fe6279aa3f387a288df81d60";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/kab/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/kab/firefox-55.0.2.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha512 = "27f319c418dc54296f616b9fc2b6069f1f0da92b2eb95d872b4fa582f494f0339cbe40fe0427ae1cf8a1ddb1ee436ae56773c7413591f4bd76f027916bcef187";
+ sha512 = "b7d3d54e7bff659074bfbab859acc3bb6c2141e9111fd0b207ec3ae81179356942f48ecae75a8f87af0514a79179e77f088be810cafe23eb234e85bebfffc798";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/kk/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/kk/firefox-55.0.2.tar.bz2";
locale = "kk";
arch = "linux-x86_64";
- sha512 = "7d5664fb243b214846fbf2a1772be96df94345bbc6cb076b9e75ea0dc126e3113faab67ee935792df48a915aa7274acc1d4ce48bf09f17f662341b2235ef6d1b";
+ sha512 = "0cabe96911784264c984e23831b8e8170fa27af03b15c85706c20059f5e935910deab728e2e8b68e00b62d4f073f4d8e156e302bccaef6794de07fce48f99255";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/km/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/km/firefox-55.0.2.tar.bz2";
locale = "km";
arch = "linux-x86_64";
- sha512 = "7df87f956678f7f90df95f5bbe1309eba7f89ec2e1030746f56df0e14cdce200a1204bb73f8db68b02655db36d13941cd0887116e974df2e11d8d222f5dfb6b6";
+ sha512 = "e62980ea8f48280dfa8123e4ba8bfbf7627bcab855e2869ffc947c9538377721fa6ab52b9bb209f7e2db859a5f606232e39248d7da3020693f4d7de1125b8a2a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/kn/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/kn/firefox-55.0.2.tar.bz2";
locale = "kn";
arch = "linux-x86_64";
- sha512 = "532c5d7a67d6508188628b9728fb6a1339ed9c789fd8cc58c33a9b9495e8ba8b979c631bfae66096b164c277dc0eeca167911aa4b856a1d6d437bd5a60103a3f";
+ sha512 = "b5bd9a15cb1526dc39bfe15c9bf5c8624eb919f85c0f61f83da0477afed65aaa3a2af71a0118fd48fdcc7a73da778b9781d56f41d70971e52799ac04f3a8ee78";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ko/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ko/firefox-55.0.2.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha512 = "c1170288dfe6d2ea418d93e3d401a2746c88df77cd8ededd70b17dac4652488b20966aa472f7e929662a8305fc03f7153b534d79d6e8dc62dfb0b468a417317c";
+ sha512 = "59462a1891d08c109827b1e92a267c28427222e62b945194d4c5610f823489e645714bc6a1975b42b3aed3b809c46f01670484ba8043538465a20c21b6519263";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/lij/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/lij/firefox-55.0.2.tar.bz2";
locale = "lij";
arch = "linux-x86_64";
- sha512 = "3f2b8227f04064ea5507774848296fb12d4e17b806cea7a356c36995648a4db740d68382ab6d6417d745dc278b6cddc6f18cfc6fbbeb60480106d726715c0d1d";
+ sha512 = "b0c1dfacb6a1333306dca3b16bc815d707ede40b96511c6e130ec76572e0ebef264537b458c4040d45790868114f8f652c84b525e1cf92b05785631a67de2196";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/lt/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/lt/firefox-55.0.2.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha512 = "24d0621a76f53b2a4fc7f3b4d97a1a066ff6fb7c7e1dba9028ef719a38042271412068a7a874862ccbbaf010a7491088e231036271c54e51c624bb82937b139f";
+ sha512 = "ea0f17e1b5f28e5ed0033ea5bdf8ef8461cb861123688dacc908e37670b22be9d115c3dbe8e92543a7b5234c3a45d159aa0c486eddb3348acd21f7430e5b3cdd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/lv/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/lv/firefox-55.0.2.tar.bz2";
locale = "lv";
arch = "linux-x86_64";
- sha512 = "c36c40e21e305373e7d4ddb67702055cdef28f880739c2339c5e75a0f1d30c2e73316f65badd69dc93552ae33a1f493658002d73caac5a97b8d03e3e4365e6fc";
+ sha512 = "2a6a5ede69b3280b43de68ad3c1082a4f46d606cd0e78a1968ab984b8b3aa8a455b809b3a6ecd9f8ffb2c296206e68446b2139a1739fdbc4f3fe8e6a736091a5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/mai/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/mai/firefox-55.0.2.tar.bz2";
locale = "mai";
arch = "linux-x86_64";
- sha512 = "f033e7d1cf52486775ec614bf6272cdde3cbb17a00aad49c8c7739d72488c03d9803c860aed581640689e336bc55799521da4bb0b3a6c9cedd3af38f94c944f2";
+ sha512 = "178d8d1446287d0f163166851f7ec2d404d4328fe6b901c6227cf4d195de7e97e5097477d0f2a9cd4c2c492ac27fb15d3dbc90b798d3ea05c3e2d2a017ab3ae5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/mk/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/mk/firefox-55.0.2.tar.bz2";
locale = "mk";
arch = "linux-x86_64";
- sha512 = "d01f9acf588e5067681422daff9be1f2e033b91ab2dba9a979dfd9bd918b1a20e5ace64739ebccffe025e03b80a2f3a955cbf5940ee9341e2f62053ffcbdc408";
+ sha512 = "52673259ddf45b072037c28f872a03b75a3a948517a27514b6623bc5a975c0d745340638b04a5c9d16503bb0ab62e08795d1e387ea37a69e796fe0842c3957d6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ml/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ml/firefox-55.0.2.tar.bz2";
locale = "ml";
arch = "linux-x86_64";
- sha512 = "95a6cabe1b0fa984de1df148207d22b570a09a5c1fe95e898a33e0e0c905b9f868586294032712339562d8f5cc78961a7fed5aa3c1a5c1a77ea5a5f3197b520d";
+ sha512 = "a58262f6788002550220861c1a501fd9d15b7967bb538da738b831be91787e04c2f42ce5dcb045910ee022556af9330df4d0b985702995ec40f3368a3a52eb7f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/mr/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/mr/firefox-55.0.2.tar.bz2";
locale = "mr";
arch = "linux-x86_64";
- sha512 = "59053496d9d37cec07ed1dde98ae07db593726d49fe97399e97e4a6ac667835cb34db4864c5e67bffd1a9c1727c1af2feb19fea0685fdd2f6b5226ad24022656";
+ sha512 = "c927b197ed833cb3beece57d247107865d6c1d9ddcf01292f28927ec4ad8cb325c8b75cc50e1bf9b31eaffef31a3d472c55338667c64425f80934534bd6b6f3d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ms/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ms/firefox-55.0.2.tar.bz2";
locale = "ms";
arch = "linux-x86_64";
- sha512 = "c3a23a7165b0f233fa606e622868690f696b262f33a2c1f2b23ab37f392e71bac7cfd04f9e240660ed5f6075cd3192d9ce1be46a649d5abfb7beb9a16ff91e7d";
+ sha512 = "1b0227782120185c60cfc18f60fa592340fe5ff875d130d0d786b055c475dea9210e98867b8ac2c9c63273f138763cd73c2fc5e5085000af06aacfdcc9d69179";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/my/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/my/firefox-55.0.2.tar.bz2";
locale = "my";
arch = "linux-x86_64";
- sha512 = "493e5d971b55696121edcd72712120caf638aa13d2654e8f4db4e814a7b8c4cc2c7b89622b385029ed1a9ca14294cc39d8522784000708f418205c36b1f2fa64";
+ sha512 = "a18326b32fd45e968dfdb4800209ad76265e8c72237fe3e0d799c7a66456d3020722a1ef702a349a0d19411c5645e7d286a2c523cdd826d474d40f02faffb129";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/nb-NO/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/nb-NO/firefox-55.0.2.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha512 = "c7c3e85d2749bbdc75a359ff5285ef3cee14b710aaa6e0f39415cd72693f219589b64d26cbf15020c380b51ac0d4a6d41e730af9991cca1b4d5f1ddae4c63dee";
+ sha512 = "6652b0cc7aef35e81e0bf1a4aa3ee26516a874338d23a9d216e4c8003bf86f4f73b1872d39969f77e878e9894f66c23f930cc133b666a4b1cb5490668153d653";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/nl/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/nl/firefox-55.0.2.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha512 = "1d77c158ebfdb65004f5c999e6da15ba2cef2dc998c69bbf5477bdb8b41131e968187017783c65103f2040db2154833857790ab9c6aa705b866b60683f0c4ac5";
+ sha512 = "d6bb770bf841f7882ea61a2e780247d94333a8df7e72e99ce3574d9216b149fbf2d1c87cd385436492680c5c0e4d1cf897ce0987c43a15bb2776c4a80799229f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/nn-NO/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/nn-NO/firefox-55.0.2.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha512 = "37630d6abf1db435bbff8ea2821966ea58fcc3326199dcfc0e95833732c9ad767610781046ba4b031b516f5dc301e7a7d699699ad7b39efd2e9cf3df05bc3637";
+ sha512 = "117ae9c5939cd7f4eaf6b353b2e14b2680114be27066782b2348f56f8ab7b72bc37f48043e382adc40f6315167035afb33a40437b86560100563f1e5e752abef";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/or/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/or/firefox-55.0.2.tar.bz2";
locale = "or";
arch = "linux-x86_64";
- sha512 = "bec28704aff4671d2ee5413a29335f84bb04b4d5dfbd108988e1772c68486e1f5bdb2b7b799792343b1191b768cee7cda59aad0efbc0dbc45def3149e7eb41a5";
+ sha512 = "c58300fe25da662c6227c89189a6e17666a8d0482d56fabf5a3bc1a3001a1d9b62e0c7ad55c8eac7b8294153ef12adcf1a61067a697011b7ea74e23060449ccb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/pa-IN/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/pa-IN/firefox-55.0.2.tar.bz2";
locale = "pa-IN";
arch = "linux-x86_64";
- sha512 = "eeb9a7a8400e14241296ea75c55fbc17461d298bf7d4a4b57e26cec434e398d070b9207d6d19a3038b65fec4792f9eff47b758f5e5b0ff373b349f67f44ee1c3";
+ sha512 = "b2c5f59305be66f6c3bb4bc2bd67e787e56461ae1be29efebf4880bee2378f567cb719f6cbce90502cb0df6645239d2abaf101bf4c171efb226c28821544bd16";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/pl/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/pl/firefox-55.0.2.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha512 = "560a7fe08b460f99e6d166caa8fd442ea343a1eff9c5643b96ce9085fbd76cc27eb3b2ccda59172c5e7542bfecdc3cad39257506531c51350f655744bfe166f0";
+ sha512 = "c7e062eac501d08bda55d0e2f642dcae3a3fff8e228521719999386e6b910ac9a0f101e36845a0cda326970aa7c6ada16d56a44ea27d5ce7deac773328272710";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/pt-BR/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/pt-BR/firefox-55.0.2.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha512 = "452bdb25f38b31af0ed6cb1f2636ce238ab898065b8f61f505206e1dde12555a18d491b5895b549e1d5efef94144b99988a69e19f9ccc068c76474bc0898aca2";
+ sha512 = "854054e7a77ae695f0344fa19d2c16afd112dd965f511c4d3d0a22d3e52e790e8adc1f86fe951f1daba7c390c851607af87a1886b6ca2970f4b4d921d7ee3998";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/pt-PT/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/pt-PT/firefox-55.0.2.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha512 = "54c6b9bae229fbdbe366fac25e9a3b89f48d85f41f715f9db1f3f1b4fd210056f642549a982eff9ac4e2b68640ab01517ff9756cd63b72045f11c07619b59761";
+ sha512 = "e490aaac75a1d7022ed79ec888963730cbe995a31755c62d431eed9cd7573cf607d361d190452fb1bbbcdf0e246fc52c0132637a2b58b6934e3564e221692efe";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/rm/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/rm/firefox-55.0.2.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha512 = "075a161ab0cbc6417dbfb4873c8ade404a2fc911f2da9e0149d90b04b32f6c9ccbf42b22f2abaf13ef4f9cb4d8330a90054517a651d0c0f1f940431ece8b2518";
+ sha512 = "010c815bc7ff3b779f1d393e593eab21cb4740cf1ffa2eef670b508fa0915ad65bec15cdd916f6c4a6c1823fc800aa6f70c0c004e6c6910645e5dc9c109705f2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ro/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ro/firefox-55.0.2.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha512 = "5c1eea33100fe2bd020f9d1ac2bb781ec04b25a12d271d3dbc311319f7a688f245e2d7357055bd8321ead58923857f689e417827ac3125ec206975134e4203cd";
+ sha512 = "970a35a149c512d30efc1842748a26febe4c323c8682791396354c80d5b9e71a1e6a1d2c918a4552229dffdd26982665f8c339f483a179002edcce05d6ef3fe1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ru/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ru/firefox-55.0.2.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha512 = "c9d99eaa7ad17a29cfd860c343581654da5daf15db5bf653a3d0b13b03d1914fafe7f6801810b3ee06abcf687c71cc1f9d20cd727b10cbe91e7bb6c977aa279b";
+ sha512 = "02ece7c9664416da2be2042676d60e6dbfcc27568d74bf23f64517255675e19fd52f031c6579a9ef08f7ebf3d94b92426f3f8dc74fdb3843634e958597bb30c2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/si/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/si/firefox-55.0.2.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha512 = "e36e3e4767f9afd211dd4333bee2ca4ad3d9ccc7081b1cd008098263570aad4272eab91032527c3f6f0a70e54953dc806cfc00a08627ebd81943195add184603";
+ sha512 = "0f2f273b7912f73e8b022e5101ca40603a272914deb49159529fd96ac627fc106f039454941b902e5d9fdbf6aede57f38f263c93ea561fa9bd933acc21c329c2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/sk/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/sk/firefox-55.0.2.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha512 = "148b8ebbaba7d111234108758fb48ddc883c6d9094e8f22680d65cb9ef05fb34eeec4e09c141e7523ff511fbbc2db84b0eef31efa92730ab30a4830192875c51";
+ sha512 = "fa95f13fc3cc513fa22012598a6bbd82b23b8e0d19d19aff100dddc1b0f123098db8306582b8ff27bc2e6188b579a2fa22d7205aa04e718f622c723df0ae78dc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/sl/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/sl/firefox-55.0.2.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha512 = "fd0f058fb2a7fd304d08fc4966c7235c557d869b0a02955a3459b354793a1c2245e45ecffe9d0b251357062cd81db10b5d3f982ab15abcdf275af31d91038f9b";
+ sha512 = "eddc485ee09e45685a99715ed62921453f3d647e4f2c10b152d6e3faf626c4e1e12cc5ca76403c10cc94ebdee7dd999faf35b3e4e6d544628fabc760c07e7fd4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/son/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/son/firefox-55.0.2.tar.bz2";
locale = "son";
arch = "linux-x86_64";
- sha512 = "4e6bc840e788b0a3a9cbeca86969d3a37afcf600b583777de84cd77d21010360afa39dc2ab4809b12cd798307cb84c6f10e7760395b2fd2aedabfc6419b02d18";
+ sha512 = "0a6b22284b2f65ce7cf8911b05a00df7675b042f7db31f8cbd9440929f4bd32a05b463a8c26399495847dd14881fa3fa1fd00309fa404b0cd12ffd24eb97131f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/sq/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/sq/firefox-55.0.2.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha512 = "e852af7925a2a5a0c59cc54137d1a574d5cadd831929ddbf375b726b1241dcf901b18f97f030a5ca08283453ee86ddfa113488adeac6fb974524911e354cb763";
+ sha512 = "fce71fb0cefa5d975d0eb22a0a32cf99e3a6448b206170b260b68f6bc08957ee5fe7fc83fe3bd29a3ccefebb5faf731e9fbef2b642a99adb48deb9c0fa934374";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/sr/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/sr/firefox-55.0.2.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha512 = "99b3f089f8c17701ddedb41add217ff5395b3f942e7f455c19f63e49a499282a2432d9f198eb4ca219cf25656ac90c803c4cb7be01975be307b7835b2ad0561b";
+ sha512 = "21667d882d2065d7106077fe280dd07afbbfffef1cd5625f830fc76ba8798ff45c4af9bab382af3eb390f63cb94de108aa113caeb3cb07bbea3ccd6c51333aa8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/sv-SE/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/sv-SE/firefox-55.0.2.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha512 = "f5f91a85e7ed10c2734779586e69856903051074ac76dd186d1816253e4d7441d60cad5172c1dc2496e0cb660dbc40fef4bc586e8e7bd19f7145f3b53f2c2736";
+ sha512 = "691cb5961830be2a7813a3e5c67af793e1f716f916fdebadd4031f288d8439403b3f49abedb4410a30317fa4fc51446638e7f18d4b33bbe0f94a93ee9c4dcb21";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ta/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ta/firefox-55.0.2.tar.bz2";
locale = "ta";
arch = "linux-x86_64";
- sha512 = "291bd760b10656f5cf7df91e5c978e3caf8748180aa98507e378ee90033df8b971a020b253d5ea691067eb7d08a3ac3f998b64860b49bdf7b2b8eeb29d18b737";
+ sha512 = "bed2f31f934f5feca3189e6064490c7e90401fc0373b8a46f9e3f19fc5245830fbec1bf84de63a5cda2c71577fc8e0cd834e60c722b2e6a4634f9cec3bb3912a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/te/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/te/firefox-55.0.2.tar.bz2";
locale = "te";
arch = "linux-x86_64";
- sha512 = "4b24c2f7a8e9b660285a9a8e14789bf18fe42bdd484dabf68a99b502a52eacce81df5d5375321cdc5c1b69988e35f0e9e3d2d2cfacaee72033a2c68af0b25a6d";
+ sha512 = "6a43c634e534daf172ad8847e442c577172eae5478896bb01e34ef941156664ec55c633195e1fe82677fc0cf481ddaf847229f7029d279bb0a0bab256fb3b239";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/th/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/th/firefox-55.0.2.tar.bz2";
locale = "th";
arch = "linux-x86_64";
- sha512 = "a479f709c4c512dd3906e9694ffc454ae315855b4a37740619b8536d1dd98764ad191944617351243eba474ec44c95d3153efb69d4dc13aa8047bbc477feabec";
+ sha512 = "9c91a5c6d2304b92111c392fd3d7b017b38c1c686df5f55073237a6655c4780d6c90100ddd13d6a7569f1b82797be8452aa6df0a4a22ceb3320d69bc902641c7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/tr/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/tr/firefox-55.0.2.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha512 = "1e12a004cd63cd547cd925736a2cec78ffb98d5f395474c9e8fc96752cf621a2311d638d96444afb593f113c6ec46a892fe96fba882ed7b7c49aa05d4685e70c";
+ sha512 = "d38f8e7097164075bc5e6866968403acd5dd91d67782eee968065ee5f2eb0a6204d207b8249d97efcf955f52d510410b6b868712a3796796c0eeefebb0f6e5d2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/uk/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/uk/firefox-55.0.2.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha512 = "0634489527974d7c7afbe2c55d054f9dd50ebfeb2777944dcb8d4a14ba5171230540c17172c5b0d5df64d99fd23d7b9ce384657e1e1b25b73118b9b66b748613";
+ sha512 = "bf10105b97b89bb8ddd4769ec0428d938843b9d2ceab2d63851fa0a6698c6d10241b65a3f2068503a4a41bf9d50811a7aaf01105918b8afa92879be96f043dfb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/ur/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/ur/firefox-55.0.2.tar.bz2";
locale = "ur";
arch = "linux-x86_64";
- sha512 = "8a519683ea1d611f6932e651dd0e400596529ae428700ddf8929924910614598f8d8c660e317357520d31bf1347d1f90c1e89b91eb74b339eedb981da032af4c";
+ sha512 = "b241c882c867a5ee808e9ac37cd14dffd17d8eabd241e4e01ef4573f7d4641007d58fbaa8875284ac640d1ec8f013b7a7278f19768b07d388b5f30c4d943955d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/uz/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/uz/firefox-55.0.2.tar.bz2";
locale = "uz";
arch = "linux-x86_64";
- sha512 = "964afe349e8b7f908f520d039fd1da6c8ee245b68dc8957a04222ff281a077f86e7b8185850ef7a4b741a697832bc36bbfda39051409a9c3adb74f2def64b621";
+ sha512 = "357ef3d85e8174e765682b9bd99b5865994119c73d41eafe3c6ce17e3430a1eabe358a1ae8c4af6d2d9562673a6ee65e469ca423ef7e0b135b8f79df4643112f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/vi/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/vi/firefox-55.0.2.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha512 = "ae9dc4d2be8d82cd82dbcfe638d021713e8559fae2d14847aec687fa90d90afbbb206bfbabaa15ed00ba8c4ac058f4c950bfd320c307b968246968fdd30748de";
+ sha512 = "606c28e1777af2364c4a85557f6b173baa2f07ae198da154655d949b4999289e1a9de3ccf8086c771167abf70d74c576a4440a73cd1a34c3d1bb5e13f91da307";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/xh/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/xh/firefox-55.0.2.tar.bz2";
locale = "xh";
arch = "linux-x86_64";
- sha512 = "f9f0c35d0446da3bcc57b0b2dd9cd622de5a3fbb0a6daa987d2de6fcb2804be9020ca190c8b318375fb255d7ff86b265a65e7d0fd819f9004fbeab1546cb62c0";
+ sha512 = "2dd2317e3cf7a487730cba41d24db990844fac4b5f5c2b93e70fa5cf635478e26a60aa2ec60a98f670419c72564dde487050c1bf1d662cf7bc8440654cab2ca7";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/zh-CN/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/zh-CN/firefox-55.0.2.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha512 = "f67ba436854973c9a809b78c3a2511aed27b6c4532304464220841a2159f851e84bdf0fe394527aeea48238802fc5c7336b2399078a8891d4c76554e8067038e";
+ sha512 = "714ef62fb08db12559e20d1bb6c7e253c4a12b275ad1db8279982ef5df9854e647241d9cfa15085620f12e894cc84a8d60da9b150cac222ca4b454e048e6ee68";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-x86_64/zh-TW/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-x86_64/zh-TW/firefox-55.0.2.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha512 = "ef0e3fc59630c9ab9072142651420151b897b048af3eac878c8222bdba76d47e2e45160227a2a58862a55ccce954451b892b4f5b5c6062d769dbd940edfefdfe";
+ sha512 = "ca5852892d7ab49bb1473425bc5b1e158b045f647ed33fda1b22d0e25267f45a87cd4ea296c58a4f1b502e6e0ca8c82ecca25720e61596e49508a550ba43f9bd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ach/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ach/firefox-55.0.2.tar.bz2";
locale = "ach";
arch = "linux-i686";
- sha512 = "cfd977fb5aea5c5b707df817993d547aae8b8c04293c3f57dfb630fcb2a0e85b5deb79253da544b7c3a92ec5319989fa148ad3b1ce950d6bafc7d4fe8f1bd2d0";
+ sha512 = "3819fa366f4f5ca40276a30cc5a7e90325d40ddd281160948c06e9db8eba05b51b5e0f230a3c5113eb21e9638374d383b318df3905877d14b654874c83db0934";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/af/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/af/firefox-55.0.2.tar.bz2";
locale = "af";
arch = "linux-i686";
- sha512 = "b6c671a746691cea4d4cf6d5b9932b0f1c025f04e11e7ecd38a53c0c2759d3a3ca82e6d00febd1f644fc18730b2f6538734adc02c9e18094f7533f81a955088d";
+ sha512 = "eb7b48ee9ce0b7c08f96f5d09b51e1819d38fccf7c71cfcfae72e3189ebc928ec4692a7a10964d6dbb42fc2ff04da13d5f058084e6376b67b0a1f4818922ab45";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/an/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/an/firefox-55.0.2.tar.bz2";
locale = "an";
arch = "linux-i686";
- sha512 = "51f824b2208b18939ac12a6d63507186d20e8e66e0fd9ff030c1bc637a14d987ba85ad5b2425883d90f88952fde84f43e291e68da004e8114d854965421ba9b2";
+ sha512 = "956bf6e053fb566f4a6506f672e7102c37548af41807797078b2cd7560fa4dc17cefde0b21939a5fad75005a98adcc58893ef01d170c312065c2fb1904102bb3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ar/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ar/firefox-55.0.2.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha512 = "411b0f01d5f6a4f8915f51960b0d7d62a1b9cd9c3de665674a019d356677e9ea82720df4b715523ddc87458dc3edabd8945b7d1e41574a22dc4df5c0b62ed869";
+ sha512 = "a05cfaf18d92d8b0a43587cb685e192c69cae3603c94bb60f9b7d5c3380d498dd050559fc1d041860893fa52651fd30f7a734cb98699348587f3211625e880df";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/as/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/as/firefox-55.0.2.tar.bz2";
locale = "as";
arch = "linux-i686";
- sha512 = "18d6094a2780759e97b4556fad1d504ee1c1cb41a5ceb8481599f2a41458b5c0100b1fd2a0911f1e125b4089b093f1a306bf838e1c00bbd1bd5c482e0f894881";
+ sha512 = "b855da6d338d80a58aa9dc6f4a39ee9a5d21c92b25f5a4b349f83070fca7e27cda8c7d070b2c543723f6cd061949e6c91f79979edc45c0dba9dab3dbc81fe4bb";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ast/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ast/firefox-55.0.2.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha512 = "ec88a6ae8ef64aa01b2c03feed80ece24ddbe19f2c1abe38f5e2b21554b782ee52331175ccada48f47d60c56d4c9a36b28b6d62b332dfe64f033ff9a90581449";
+ sha512 = "57f498045089ee3e96b5f3f80caf3919d39c3a40ebf68b1b578e1bfb14555635fc216956387ee417cc1bd05cfee7bba3260890d161fc1ea8471bd73399a0ad41";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/az/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/az/firefox-55.0.2.tar.bz2";
locale = "az";
arch = "linux-i686";
- sha512 = "e58a646b68a068de0c5b96f088770383345fe46661d667e6d9cc1b7fb0384351dbb10caca6eec618303ab8dfaa82708a71d9376e16017173710f41e0b7d55357";
+ sha512 = "38399cf0c73942f96df9a4a599092fcac64956353d14e6395a1c0507fd0c7cadd566f571c12bfe06275446a5412e69c29bae95dd86aec42b97acf960026b16f0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/be/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/be/firefox-55.0.2.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha512 = "e4d8d905eab7b69c78864cbf268ff8e8246f5792e3e55d28e8a44c12027ae8269738a0ddd0fddd4282dd7536e1266e58461553334f1287f7416c9fd5dd29e2d0";
+ sha512 = "047c06fb4ec91013521b237592af85715140ae17a10f095f5b8d54516f6b62a4dd90c262294702258161bf781a6babdf7ead4b2c5f7211cb5e87a332c552ed0d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/bg/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/bg/firefox-55.0.2.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha512 = "62ae8fab0c91d585234f7eda98a4a7075956b00bbcee5ba06d1dacc2262b32eae37ef3cd1b66da34b02bc309b1b704a2b97c297e3c189de6eb2c969dc1100626";
+ sha512 = "9a823d322edb570bc53c07eb63414b65baf82df2f37c7d2a6d52221b6b23d0804c890af9c3ecf66032035505ec246e096864754930426aef4be008f5969fee67";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/bn-BD/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/bn-BD/firefox-55.0.2.tar.bz2";
locale = "bn-BD";
arch = "linux-i686";
- sha512 = "0cce61b9d0f88911abe306140de86964808d8e94880287e1d3ca6dec6b3c36b79143d03d46bc366809e69b70492ae648aa80bc57897d38c92bd76ab56b36a24e";
+ sha512 = "a5f8b004170993b4317044df0c65711597b5eb8f046cc1115cd047835b90045bd16740c47901b8e261a037be9592493c11cd527f80465d46d19c06b692139103";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/bn-IN/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/bn-IN/firefox-55.0.2.tar.bz2";
locale = "bn-IN";
arch = "linux-i686";
- sha512 = "53f25ae4f49e125b7757740a5f5ec9d08687871d4ab56ae3f4f4506bee2d1453c24c99022a4be0e07f6376bce3b0c0063b7155ec7decff8e2ad61ca456def7e7";
+ sha512 = "2f161b15a10577a48386cf3277c027d2c0103c881ec33b57e87824b4e40f000348356ca0a6caaf20d50263c5d203ce02a6a734059ae477b72dd8b55e17bcbbbc";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/br/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/br/firefox-55.0.2.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha512 = "98d83c45d5599bbc62db2204f177b2ff4b710a75ccbbe6d67c8d16829504b8f4a2dbfd2940e583514e41147811c4b3cc4f74637b3212e018eacad85f6f56e892";
+ sha512 = "1a99b157661a90607af89117321f1fbda167bc6804ac95434c6a17859c8c66d86bc957cc95d46e47c69f42b5f513dd39a876881ca69221adba9f7790da7e965f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/bs/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/bs/firefox-55.0.2.tar.bz2";
locale = "bs";
arch = "linux-i686";
- sha512 = "7691546b4cb9cc4de8f0544e42528704f5c204b382b195da7ef2764faf5e2b6cc58285da890e800ed83e82be01924db0e219d1523959c04faa24a11e3e16b04b";
+ sha512 = "f850f28cfb54798e0305dfc2525ae59f1568ae93133fef2fcaa5e30063d980263e47324a3bb038ba3a9512aa621d2232475d5c0098d4d5914d661d5f36e9b51a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ca/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ca/firefox-55.0.2.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha512 = "21d664d5a589ef1f0f41a936d8e46a3b220d7b1c6e996f639556986e36097144b82dce5dcec1807b3191e5dc3835df6007e845c847bafcffb0e456777cfcbb67";
+ sha512 = "5b67953d4fd2ef7235fab59b83a17814d9edf106183983dde21746ae1330c9a9169cffaba21b7cb9623d93a82b67c9c249800892601db58b4e42efb8323cb7e0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/cak/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/cak/firefox-55.0.2.tar.bz2";
locale = "cak";
arch = "linux-i686";
- sha512 = "a2a289569ed8ce5fd9916d11bab43a0f4166c2878095f2a30fc8ed587eabad7ddcd5fa7a43070eb54daf8549e5f19a3c12d103d1cee493eac2e1adc3b536a952";
+ sha512 = "05ac251aae543a91755b927db98ae44aa07b06ba824d784e72c91c8aed741eb54d0e4b27167dc11a96bbdb765c6daffefe6ad16982812664070d07b5b6a8dfc8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/cs/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/cs/firefox-55.0.2.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha512 = "a24dcacc4f5de63f335e44087f40c203de5ffd482232e691f1f1cd576bd4d41ab949c3d07ad8c1aeeba38863b1a9ce69380079a3cfa0ae7ea3dffebe7d964972";
+ sha512 = "c0789840e6a3bcc626ce99bc94db727c09d9b6e3b750dbe3c7e2310d00f3d3ef06d2dd3c755daf7e7081f7fa6d059a4e5b0982b513ce5cd4f4dcb2a63630743d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/cy/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/cy/firefox-55.0.2.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha512 = "7e961c9366d3c0fb2668d6f8d9d874bd7d52e28ed53a461afc234375a5d06239fdb866c12d53f41027672afb889e257075bb59ad869c56a54b409bcb3a4e0ab0";
+ sha512 = "8b8c1d7f561649f37b589cb11f4117a762e704a7374ff4f6aac1594d95482f13c7dc00924ffef76b41ad9c00780592c16f38fdecb60975de6d45f6d1b5e6a97f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/da/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/da/firefox-55.0.2.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha512 = "a058ea5cde4277a26d6f3592b281212087511e8efd79dbd05a59696c81e762949709e12f94f794b252abbfb810a410f95c103b52cfcba34d2397a0b0ca51ad96";
+ sha512 = "42312ed0a97b2bc03a37cbbefb8027d373c0e1894a3b37e78a6bb8ee5f72a846d4e14835507ad771fbf4be60ef34768d5e866a4f691a0af827d3667f7b1c01e2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/de/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/de/firefox-55.0.2.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha512 = "22788aa3f8bf59a1366ef4bcf3250f2d6155d7ee3de8b2b019dda6a294e6fef58ce1ec6bd0d54b41e8618491de872249f4fe1618779edc418a43d2a5189f4b99";
+ sha512 = "9a228c3e177b11539666b9c5f0a4ec19ff86da023f5a302c81266d85ade1c8e39be861e43e143bc0247f09af85863aed224011bfdb4c64bc2dac267fa1e548f3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/dsb/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/dsb/firefox-55.0.2.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha512 = "bbafd69ddb7f73c4b3fa272fdf91352a9db8b9ab57d56d2d5e743738026e6e5f811c0bda9a69b1db4d533ca8c6de1b5bece1f0f4784092b3b3e8672bb30c3876";
+ sha512 = "d8c791da0654bd46fb52c866ca89399a65186d63e0262536ede7263ca3fb7af852281e50faff750e2d3020f16d4f85caef8e5d33629ff0019e249bfdd87bf439";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/el/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/el/firefox-55.0.2.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha512 = "650b3add1753bbad904bb2c1577ee28598f0a0588e38a219b29ca1cb333e9e561c17e560e4e00ba6c861d89ddb70bd7352289b5711c0e24f6f78d37e53e02683";
+ sha512 = "9e466913d7d84dae64d0e537093cfcd46128f3ef9fef10f8ba675195e83e2fd0a32a4602231206cde599ee8be7e246e64e0858dba36c6e283649c59ac990db5b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/en-GB/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/en-GB/firefox-55.0.2.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha512 = "e82dc2a34212a8346bee261ecfb07e82aca6b09582a652f1f9ff90df6f5a5fb9f44c284eb27db4aeba743239262a87faa0e4f6ee3fec66fa97788e66c4e83bfb";
+ sha512 = "5f4199493fc4c55c1b247cb729c65b83ed668c65704284dbe2206178e4264df852a73925a1adf1d079f77560c9538427544826af8ec311bfb604bc7a5c691073";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/en-US/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/en-US/firefox-55.0.2.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha512 = "763f0b2294085215282852ce482f2be625efe355138ae709c84ed65ef4ba28908115fe3027eece41e3b5fd1fc164c050d150fefb4fb142eb6652229c021bfe7c";
+ sha512 = "51cbedf391e4b2b33c4bf4882a6183084291136064d2125e14da6cd86cbed8f979e20adbe386848d1a22c2a4c567b99cb68bff51668e53b6dcb85e92c73e47f5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/en-ZA/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/en-ZA/firefox-55.0.2.tar.bz2";
locale = "en-ZA";
arch = "linux-i686";
- sha512 = "9ca62fc6eac9050a7141ad4025e6fd6e3a703e18c3a184ecd1620fa8cf098867ce4886774673e0c10833ca1312b555f02d436b5d8088b78963b682a5de1537bc";
+ sha512 = "33b6fcefc6d4867a670531e3de4d4a926c934a297b890fc60b3c4e6acb6237d2c2fc1d0655b8da42406ee4ed62fa98bac0a94fa7cdd3f70a918232e95df3a317";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/eo/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/eo/firefox-55.0.2.tar.bz2";
locale = "eo";
arch = "linux-i686";
- sha512 = "3dd8d02a132d96913e017aa4194ab496c21a7b708c5ee1e02bec3c7bcc769a7f53c8908bd56a71918e55b49201f645f68ece3e0eb522fe0719a152bd6067245b";
+ sha512 = "64d93eff3cb4f19185975b830e4f956d2d76e8bb600176a322a57f873e7bf8856582149b9c86d7af7652e2e0ee2a355f821607810713bd95e5738ef1b436a7d5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/es-AR/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/es-AR/firefox-55.0.2.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha512 = "aa8ab141a092b481cfb9fa72f2226913ab7672260b2fd0dbee894215ce373d7cbc1ed7451cd1c1010ff079d14cf9f2e992cc32e981b44360b82d867fb4709d85";
+ sha512 = "6ac236b635ecdafd0864711c56bb3a4d339cb9540d5cfb4836c437f8df9c9fe9d6b65c4c8b1bcd68e2e04ae86f3e70edb5e704042c2ba00611b7f60fe0b3d071";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/es-CL/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/es-CL/firefox-55.0.2.tar.bz2";
locale = "es-CL";
arch = "linux-i686";
- sha512 = "73d2ae9ad8442a49700341127e7ba31ecba568e558d27b607c5a6bf8e89a9e515c3bf6b9946f094ba4640cf5bea970e5f8473a5ce953a09c1fdcabd2a68d7a7c";
+ sha512 = "0ba857c7d7f1ed986110ec356cb4db75f7ac6291ba0684add7cc56f4505fb946ddac3c603f3bda2a9fe91b2a3031a7cf4dac59bd781dc148c09dfce4d4837e3b";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/es-ES/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/es-ES/firefox-55.0.2.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha512 = "213f71697b99bb7dcc978bca57fe119940f8197b75b5aed3964db89859fdbaaa0968829269c5a8d6f01bf21f670f85bcbdc9f7d4f6b111971636e44580b67003";
+ sha512 = "0440a2e9eea08a43431c377bb4e8f4e747dcc8b608b68a2289ada27bd4b3950feb4ed2946845d725be15fb6fb910f984e791229631100d3cdfb39f9ab398780f";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/es-MX/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/es-MX/firefox-55.0.2.tar.bz2";
locale = "es-MX";
arch = "linux-i686";
- sha512 = "d12e8f13fd94c3c6f93f5e20ef5cfeb5c3f82a479baa5bca5a5517dd55bd048db59454a56730e69f6bf051a81b5d2bad239ce0fe8975aa00c863667b464503cc";
+ sha512 = "7c9ef5df8bf96ac277e7488c2ac0743afb72165ffdc5723b4bc4c64e1c4f7d338f453fb50a7d938bec39cf04217b903a56b86ffe3856f8437ddb17f53a48f32d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/et/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/et/firefox-55.0.2.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha512 = "8f6a6393f009b19743debdaf1bf3cbe12e566a4288f8fdacbb0119961542fcbf082aff03ebe79f54311ba00017851ca4ec4efab9553ea2e1178b6dba9677e31e";
+ sha512 = "297fa442fbdc2042b3b7756de00f2573da9c5544a4d83a6409808ee929d441bbb7fafefa023f4d858f0fe55f08e6cf6397ad2732ee197d01d4a03ac504e62087";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/eu/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/eu/firefox-55.0.2.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha512 = "7b1f3af68205e3688bfc0e519f9cc6f796477d2f8b11f0c7e035fab1ce917e713b6b18dd498c5d04da3c51a50dda01132268a24180ebcdc15f452bb25d0dab0e";
+ sha512 = "fc79272cb8d9c22607fdf0075681abfa34ccc78bcba8801e1181dc46ac9ce420dc3b789a4964fac37bd89fc9e8b03af8b09bf5353f7b3784014c8327deca28f4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/fa/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/fa/firefox-55.0.2.tar.bz2";
locale = "fa";
arch = "linux-i686";
- sha512 = "1379243d07c5216b31ae2689b11d8729d0905ace42e4bc8ba40289bd39509020ae551e2fd0f5a16b883486ae0bc20c33ee2902650304cf628a239ce3071ed683";
+ sha512 = "ec6429c1d78e9b5e1e174c7e13d8d99a8358289f67c76d2ba3c3bf096d9fef7558969df37693b86d7ff077206d35934187906f82edefa0634a3b2b111f42cc1e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ff/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ff/firefox-55.0.2.tar.bz2";
locale = "ff";
arch = "linux-i686";
- sha512 = "3bf4eec5d5a3c4da765db6997a57dca3f67d52ef302cd38db759592b9904e7b357870d39920bd75b805700ec4b9f4a94400111a321518c5d4f31690ece946289";
+ sha512 = "fc7287c16143ce71075b2f0bd5724cc6568e4c7ccd08ef81d1f46f945b6af18615c0b465bdbd358919af03ee956437cdb912e41c94741ad916d5e0ed993fb37c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/fi/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/fi/firefox-55.0.2.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha512 = "1a33cd82fbda2554fa76684afbf3a843babd5872459026f1f32fe496e99ed631252ec63933a291214535476f8858d03aea26b7cf2108a029ab5f99ea8c229650";
+ sha512 = "2a73b783ac0c9728385d7a47e94a430bb04c3d8d50f7d35fc8256551788f2b23156e0d8cd73595c2d11af26060a4f5caf9c711a2542d9d68197e5773fcd03cae";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/fr/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/fr/firefox-55.0.2.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha512 = "c92bf5cfce5b5114342d98d526e287ded4d82516f008e705ded1ddbf11c1cccd8ba3d3ba777f6be0727f7aca776ac7312fc7e5ce3c2f77ae69420541471d0289";
+ sha512 = "c8c0fd587e0947793c734e8b8a71f50f8d9321e8ea5214290bfe721a95e7ddb5904a7254a39d1ce395cd674c47ee34e613e09174528fb5c5a94323018d03faed";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/fy-NL/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/fy-NL/firefox-55.0.2.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha512 = "16973677379fa16283956fd31a73da2697c4f38b41618e14bcaef4fd3e68430c15ca5327f6752d8123c137b3e026ff682d534e7819f87d8cc3ebe7a7ca865b87";
+ sha512 = "965e29af8153a239da08de82ce52acf78a76a02634daafdb8919c2c8c82c553ad989c7d893c6e9c0f9c10b9540762997c2ecb4d41f0411593588edef34eeae22";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ga-IE/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ga-IE/firefox-55.0.2.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha512 = "a26c96dccb61b5e7685a9914f68e40e3ca468438438bbb07f9b524a9a2f3b26959b7a359b332eeb7da47f7a8ffee5f8811115e857406e99abd7f170b64fa26b9";
+ sha512 = "7abe283e1898c11bfe5df5a5ef629a0d08887e12606648c39a21eac4c96235c2ea5e2493ac1515d4ed8aaba638cd14f85c929fd08d8f79d933428823e7096266";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/gd/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/gd/firefox-55.0.2.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha512 = "d2e4578150f8ad0166c48f6fcad2f735ddc982af2cca30aa694e44e593f4033c259e7f7aee1fd1941fded86d2937464bf11e8a906fb732ca2084632ffc7d642a";
+ sha512 = "f980334b4576c3ffabcc41431a90379ac8d13e1bc493d39928f30faaf343bfeff9cdf897551b21548b4556df43eb27103f2836b9797331304be2dea536b63a57";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/gl/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/gl/firefox-55.0.2.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha512 = "999546c43bb56cf95509a8e9b122e649e4ca608fc4e0a3b8e82e9f58c334460420c58650a8837e4247b63eee6f840def3bb80e6c517badd50449e0dfc471d661";
+ sha512 = "5fb1d134a6ad89556880d3df3208c796a14773e1c7a62f4191726d6eb24c13c2e76c9a4aba3927032da4865786b936667dd6f96b8ca49224494ceb0f08ee759e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/gn/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/gn/firefox-55.0.2.tar.bz2";
locale = "gn";
arch = "linux-i686";
- sha512 = "caeec1355d3bd3331241fec97b0c6008b8f3c42c1d56b1796a7be4c2ae994569a5d2011fd5b723ca3e560bf07fb1de50523ad2736345aee753f37d6cf5ae7f09";
+ sha512 = "508a04bef58c1042cf04f47134e615cafe26497ebe1ec0401f9d12c3fb21f87386a01859ba26226c9d0267c40cf6e5843349035c1a3e2f49c7c9f9d1439abd25";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/gu-IN/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/gu-IN/firefox-55.0.2.tar.bz2";
locale = "gu-IN";
arch = "linux-i686";
- sha512 = "1e3feebb32c4240d5c15b0c915b92eff9f63b266ed74b32e1df9fe824b27a3c4d2d06492c9b9d47ba22460e0c2cc854322250edcc1a54e4b6346ac9ee0048b51";
+ sha512 = "5d44ee3027a37c8251a8c612a08d8f6916f809cc0d86f8906295a82efc6d98f475bb80c0f961bf95871e7b2dfed8faf151ecf43136a022a2f7796070625ac71d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/he/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/he/firefox-55.0.2.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha512 = "5d83b761b3f8653e1701e75a66c3741a9dc7e377fdb2d7b66a23bcf314f3993e45293d8682e65fb58f2d6a720ecffb0b2568aedcc89804da1efad0590629c3a3";
+ sha512 = "62d08c2ee0b7015808883e66e5c54ed09a5ecf3a0b730efd5a89bc8d4cd35aea9ad6dd9fbfe394f12c2846923f47fb66e393c41cf4c273590a890ef1701fb7a0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/hi-IN/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/hi-IN/firefox-55.0.2.tar.bz2";
locale = "hi-IN";
arch = "linux-i686";
- sha512 = "9c59cba32c02786bed46c01797e7bbf3d745f90da98cd07ce6ccb578c402bdc8cf3d8887a57b5523a072ddc6d98dcd9761862f32c59570160c732b8408f182c2";
+ sha512 = "b6b21ed97830233ce22658e4bd7637a6449f53e095cc92b7381afa30f4d74c8df5b1082bcf1704aa75b53c0dcd75ad509774e818ee4073bfe6986ae4e93538a0";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/hr/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/hr/firefox-55.0.2.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha512 = "20684ed388fffc81fd7b8d88f4d57f4bb130ea4671a60d4dd70d1bd5250b491a36cb0eff0b7820a26f24695d30afd5c909709b6e8ab27f9e24ae1381a8b4dbc8";
+ sha512 = "124965251c04b4db521b79102be73b88d747d0ab47898b2929ab867b24cce50768f62b61afcd3e03d338c958065c429524ef61ccaa0ae80fa1ad7c3def20e1d5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/hsb/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/hsb/firefox-55.0.2.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha512 = "996ee7693cdb808ede4df1c6d8533a964f0bd98a4026067bfcdad8d1c78b232cdd83f1fa7fceb532deb9197ccde437d42d13449c8ad0fe9cde3dec1f3006a775";
+ sha512 = "aa08c3616051ff566576776977af5a5827c5dcb68472ca48af5adcf0a107325395f9fae8a51f824e126b74fc9f6816401acedc0bc61783a8416e6ea3431fdf85";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/hu/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/hu/firefox-55.0.2.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha512 = "faaf14a3f2aaefdada31761bca2056d2592bdb6ec5a053d7c8efe871b0b2ff191b152fc240782b24f3954b4913501efd303bdb301b4a69140e6c47a3fa6856a3";
+ sha512 = "5b7e3c318657e20bc012f1324928c43b950cb1fc860ecad40fe6a64e4cf8ce30e4a32bf617b02e397dda7a1f8bfc40c8709ba09144ae1bf5676104fad1763798";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/hy-AM/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/hy-AM/firefox-55.0.2.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha512 = "9190ade1a9885ebbfd0090ee926e0d5e31da61a7c98f874916c423a60328c5f936f29fb60949c1ebf9d726f07f097312c64a67dc193d71537d4adf4a9b7729c4";
+ sha512 = "31e5389d610ccc05d387ae23676bead9176d87ada142fc545e571ddf296a4bfe396725982f011a2c0b35dec8f8d06e97aad8b42235cb98aa9db5f0352356b3fa";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/id/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/id/firefox-55.0.2.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha512 = "88fe78ccc643a704e068a32d2fc60624a23c269b85bf0c96c8538fb5243c1db93578f1a91993537bd7dc672acb9dc6f4cc75ed444774ff74c7abaf621226b43e";
+ sha512 = "b037671a6d63e0a55564987dfcd1b3bee1347c180e29a6e6df80db0d6cda284e08a6eb5b31a37a1eff208030aea3cd3d4ef0ed711ec1c936c746efa870e5bd46";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/is/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/is/firefox-55.0.2.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha512 = "969e28b5d8696fe735063161b4848fb3a8cc400ca2f2e3db246dbe68d301c7da3adad7bfda61eed10c85ac028582b2568f57d0c727abd184be2850d44bea427e";
+ sha512 = "6a681a05885574a163d7603edf61a0d075728c7eb50d8e78690c0828d5189ee757cc225913f060b27a254f2a19d03eb63525fd5f305377e45ee4ce5c729ba397";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/it/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/it/firefox-55.0.2.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha512 = "59b389ae6710bfe3d8c62b9b482bf44af419446db0ff5278b1c18bb45eaf122f5b3b47d32b19eb3686cd965bf1e51643221bb01fd6be6990f8ef14159ae6477a";
+ sha512 = "5e37dde84cd5b7a162438d2d418fa80f8529cc3ff3b28bd37b0826d8f5981ffec6fcfbe7b41cbba92d7c921bdb1249e6b0f5188ef983187e7b60bde08e80bb24";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ja/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ja/firefox-55.0.2.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha512 = "f79c322f4d2d23efc682ca4e02d114583008f2797e5672022d412b27356a1bd34f4c216545ef8c8f00fef17be0fb405384d98f4e44679372b9cf7953e2e8af78";
+ sha512 = "f59fe7957981b362d01f33483bb43ade19894c0f80fc2a1b889e3348b27876f54b7de20e9a67915bf8a4e0c4d89cefc87911841637c63f987b0aea183bba4ed4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ka/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ka/firefox-55.0.2.tar.bz2";
locale = "ka";
arch = "linux-i686";
- sha512 = "a5f440758bc4607955911d0fb2320036b4d9a06dea07c7cbfe9fd67b767a544cc0df582af329e4c99f3eeb065627e90a989368d26a14530fc94a28d6fe65c7c1";
+ sha512 = "381f250da469df0245bf6a41165955b0dbac3a14268b9a9bd59836d3094695ac6ae434eaafd41138b24fec3507a6d020ec2bcde740865ec3605a554a1c7ca0e1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/kab/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/kab/firefox-55.0.2.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha512 = "1f9d2fd390226d06f0165d9a5f53c5b9d67a424969b7881b91374867179ed09efd05cf404de086734165312cfe09131692874632359c9a9fd323a6a9b7dec101";
+ sha512 = "5f33d95c60567e02fd4f721a5a0084a255a16bb130737c7dc8e4ee3334f2eab33d4a415ef306bedf55f7f0aaca7e615bd5cc175a08edcbfd770c035ce928bca1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/kk/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/kk/firefox-55.0.2.tar.bz2";
locale = "kk";
arch = "linux-i686";
- sha512 = "faa9e21a95a41d8c846a5cec6f7cd0d2cdb0a382593e91e824e1d8013af146378c965b28cd44953702167e2e355436a2f5042ae727cf6c95ca75d0eb57f92119";
+ sha512 = "ba2006d6b797fb63bdeb285d7eb5f91374f2b8df7593f712a6b5fd185bfbf8af082f7e2db1f7a79a15cc34a95458ed114b78daf89b362dffc7238a253421ddd5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/km/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/km/firefox-55.0.2.tar.bz2";
locale = "km";
arch = "linux-i686";
- sha512 = "514bccf7cf2c433d846c7307c75b512f20c6ca4deef5f8f59f744656a81e514a9e62fd4336e223fdb59698b6dc00db0aeec51da4518f0d3467b5a3f06598ef42";
+ sha512 = "ff67a4724bd50795aa8161b74382f9b53caab3b98f6950b4d3285c0f8ea636c4b6626a4d3e8ed03c633f756ed9738b4ce69e6cffdd034aece4515ab7bb9ece07";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/kn/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/kn/firefox-55.0.2.tar.bz2";
locale = "kn";
arch = "linux-i686";
- sha512 = "814b1fcdd19fa4044ab760818ffc6e246ea2cea36b89785069af857763b23623f4e9cc50a6aa19a77a00a61b501c26182d7296706b7d01bc9a25006c03580058";
+ sha512 = "42eae0cb137fecfadc72dcbb0e7ff62e7b6701d1ebbf4190e1d20a1211d200b54989f15889f260566002a83d672b105453cdf23c2094af0f55cf4300381e9c81";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ko/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ko/firefox-55.0.2.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha512 = "462747db276da856fffb562036367b947822f18513c2eb7cf70d6d3ac31438b59896ebf9c12e9e61abd5adb0b761774ad90cb41eb59789beb994c8dba11fe8bb";
+ sha512 = "8fcb7965e550c9fd510bf782f54a60bdc38f3707874c6f24d1a24de7ddd5eec2736490c6cdc2ed1206e99a75b3d7267a216bd6003652375841789c0d0e0ed71d";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/lij/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/lij/firefox-55.0.2.tar.bz2";
locale = "lij";
arch = "linux-i686";
- sha512 = "04802af2002399a7540f7ea5e5dbb23cb02d30f567a0afb64fdbc45645251d8bdd6e9563f4b5f5c324c267828115c719b161b074b80f7b9ba8ad4a1a0b24f371";
+ sha512 = "0dc0d54b31816be522fda4572347f6c4f1c244b0a919650500cc66beb39da1e46637db089cb595228213cd4e99262bfe4689f6315f25f6e359ad299bd9d202db";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/lt/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/lt/firefox-55.0.2.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha512 = "968e19afc7f0613fc184632529b379334d2409d5d0da5b24117748cbdfac714e8465267b65d2674f8721b47e969279c054add60f2a060331617ac2a02e97d032";
+ sha512 = "9b498e3adc4d069e219af0034a69fddff2d70e7a28dee522448a2c4586e26b6b905ba8f501f5c9b83b9ff8a2888d7025171aefa002a815fb6d352889cad95016";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/lv/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/lv/firefox-55.0.2.tar.bz2";
locale = "lv";
arch = "linux-i686";
- sha512 = "b6ec789c77040508706702d1fff20f0a277c8a5a1f28a375eedef91e0d7cf29a58b3f2027ce1ad2bf8a25ea5043751ee52b8468c4cfc516e1859570a1dad02d9";
+ sha512 = "2246366ee92a315330a4e8d1e77e21cbf875d599c169bffdcf32eace63b5794ca106d5801523bcf547dbb26ed24aab3ad108e461a8cfce0254b6389f6b1df077";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/mai/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/mai/firefox-55.0.2.tar.bz2";
locale = "mai";
arch = "linux-i686";
- sha512 = "1ca567163688b14cfd4deb5cd2f0739807807060dde26508d87c8590cb8ebc9010edd7dc92869de6af2928eab32d42fad5da94a74ebb3bf96cdb7883cf2f9225";
+ sha512 = "ca5bc8eee4fe7643c98a3c93381a7156373b1ec94c86d8601d1529daf8cb225ee12d813fa2d310384d99cfd130dc3480ff243017a15739533d7cf7552052f12c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/mk/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/mk/firefox-55.0.2.tar.bz2";
locale = "mk";
arch = "linux-i686";
- sha512 = "87ad815c0aa9e45507ef044248fb961b7bb98b4d4b10426aa448f41d129a162bc1d3f6106016c7cd92cf03b63c1682224aedfea9093030561b13dca79c6d11f4";
+ sha512 = "ca81a90c97feedc7bda3ce61f5dccc0e3c2563d284a8e10c4ddd16a3d93042e3fa38f10dfbb0218df9fa83051b778ffa629d5f57735de85e44b74b820d180018";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ml/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ml/firefox-55.0.2.tar.bz2";
locale = "ml";
arch = "linux-i686";
- sha512 = "85fe206ba0b20d8eb6c3846685c851ec579d8f188a5d6626ec56c9840bf8a76a0616457ee687cb4d395ac0e71978f9403832207a4675c560546c7ea813014aca";
+ sha512 = "7668eff72251028c9392774cb84742ed5027d4e0b617b4864b0e3d079061c95ab81c0a2471466a1b69a8e0e5d331b6b75c6a63be2411ff90bab48b3acab28ca6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/mr/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/mr/firefox-55.0.2.tar.bz2";
locale = "mr";
arch = "linux-i686";
- sha512 = "c41938fdc8a19a49a6100ebf2d452750069e3038d8dbaeab4397f2289622963fa6d74a3c96419eb6cfe7e14bafcbf4b3b4a1f85638f1a402c2cb69daf720b740";
+ sha512 = "27f6410bd1da1e7360cd86c493aaf7ec406a30957fa41b35c5ac8b7a5c32eae2da0b5197a018379215bfed60032c8291446d9e3a10f5b371675154cb54b8d0bd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ms/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ms/firefox-55.0.2.tar.bz2";
locale = "ms";
arch = "linux-i686";
- sha512 = "f37a606f1713e2f680b32ebcd5bb90f68cf324f26512bfeb628a4d9e71d138004bf08082fad8fa961b2ff28ae3d34c453d890c37b9f775fe27944bb7a5c013f5";
+ sha512 = "cb1718ed34f2e1a48a2ac2f69a00d477cd3aacab7a6b0d149f240ddaacf04993c44403f68c9d5cbac95e03db893c8b713208466784f867d4b00b0122b9de5c39";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/my/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/my/firefox-55.0.2.tar.bz2";
locale = "my";
arch = "linux-i686";
- sha512 = "fa730b3568f06a8350372ac88d3ed7738cd254406a65c36570efbb502a61a60a1a4ab14bf587b4ffe365d3133eb76c841540248402dc87db0d3607235f2878c3";
+ sha512 = "9fa2f51c3666a7536dcfb8fa769645117c98eff0af9969bd0e54853c42345ad407b102db952ae2a9cbf286c221b0a821f56f3f67caf114fb62990b0564aacba8";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/nb-NO/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/nb-NO/firefox-55.0.2.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha512 = "5e1fb7632da3755454deca4169802694051c769b0da75978b1762694e0516b202198b74b306d2670c9d05f7237faead7ba15cb55272cc8b3c7cdf14c0a44ce8f";
+ sha512 = "230afe8420be9daeb270fbc836de70ae2eb197c2b1b9f8d7606d16c73c718190ebde135bdb8a78ef29b1b271a30bca3f5438434c54e76dd3f86076dc77fc5b6c";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/nl/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/nl/firefox-55.0.2.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha512 = "5e6dc41cb51190786724b34a566ffa8b16314f54200b7bc2130a6178f0d3693df0fefc7a3935db13e9cd27ff5ade21927900680e9cd6c964ac7a23961d72214d";
+ sha512 = "8d8ba124d9efd39a2faee19d2e37fa11506a135aaf70fa780471a7ff763c943e943ff970a70023d4431da50f5e7f842382bef66eea6ddd07f3deac05850761ba";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/nn-NO/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/nn-NO/firefox-55.0.2.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha512 = "2d95d711b99a9e94bcb0e2cb923fa584d7a1e7ca2d2b3d289b20f78a8f8c0bf909a26d45a1feb540bcc4c9e983e40d0eecd24b16d0227d5155f7ad684705215c";
+ sha512 = "ee7125a2cbb47d1ad7b541ccd4480eae05ce5b94d8a280f8f99cc45a29e23480f3ba5610d5f97e2b5ad677a2d6b79b72162707fda851f5930b8f38ba030abdc4";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/or/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/or/firefox-55.0.2.tar.bz2";
locale = "or";
arch = "linux-i686";
- sha512 = "d9bb706c45c5e7a822f106888f47615c1948ee74d8bb5a179ba838634262862a561fcf8d0b79a86089b08f0213cf1ee21387bd4e7de1b47719fd76ef607234ff";
+ sha512 = "f7dee58fa33c741aeb0a85e5d9a2787e6af7a74e48cf41f76fb381f8761ce5883b639e023246ad94efa42c51da88dbc1bf5c1af25832c01e71915a9156e07a42";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/pa-IN/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/pa-IN/firefox-55.0.2.tar.bz2";
locale = "pa-IN";
arch = "linux-i686";
- sha512 = "ca8121c9ab978cd044bf8efd5c0ad07d7e790cfd1cd6121413d2508d6ddf8fa75e510cf866b5e8506312b1b22fdbc95e3af9008440fdfb8c392dbefeb81ad3a1";
+ sha512 = "28f22dacd509e904a61c915f40abfe315f724f919a1ef31d338173ba92df4e7977f77b48f7aac999a89b170f845d0bd1e21e07090189193a10568ed14749213a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/pl/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/pl/firefox-55.0.2.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha512 = "d83d65bf5f0ed37a7f5a2b66e075aaf4caea91240763e537d0198369e93d0c64b1526f14023d7daa697ac6678728f6d7520aa66bcec7ea282760116642b00c05";
+ sha512 = "712433bd8d4cc1d1a29adfd2c3de423f355dfe92ea9c341b1315272f22ae4c1a1b7cb34a9320e8ba2479652e99401b0d449824fca23b4a61bd2763265ccf401a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/pt-BR/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/pt-BR/firefox-55.0.2.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha512 = "2184c06f9f205b624f2fa7e9437311c9dd3100135061cb0eb94dabafa27e9b5c5da5aa31e97a70e6f8b773b1c1704472a4cd87d30d6dd463eaad3d8eda009254";
+ sha512 = "50701c3deac2821de87dde0858804bfe2e5ed25eaff5ab599a5a6fd03fc94ccbcae781f4b127bf4eee2cd068415d78535dc6f029ba472ab6060b803b815c33af";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/pt-PT/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/pt-PT/firefox-55.0.2.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha512 = "c40aea22fe64588eae5510b0c047c2d42673b7f22ef17a126bd642a2cfa9fa6ee27e7480089b381d4ceaedec2508ca6685f8301631948624f85b024403456d6d";
+ sha512 = "4a03a6ee97a7576475c47c1eb9f4148fc242dab79f80013cc720f3e4f31a176d59ebbba9aa53e0ef72a3b890ac3c8d3905e22eabbac61b0c95bb50e8fd4aa2c1";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/rm/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/rm/firefox-55.0.2.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha512 = "235cf224fa8f78561ce0f1178dbaf3ac0798cbfd3c3da97069e74aadfb38c6fdc90c3e01d45a5346588bc001f5f82e5fbed73672e7bae6fd2ce721d99416c1ff";
+ sha512 = "868cf77f91cfba14156e5e053891407a831aa6e24c8050d20e7772a0e7d8f06b831d83134f177fa7fa1fe2fafa815036e7b9a6a5c3b1814d191aec9ffeede3a6";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ro/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ro/firefox-55.0.2.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha512 = "f6f3ba58b8241678c4a82d03433e2f58ead36037068809c404e930afb335fcd4057f3db6a5266785fd573271e66dd98d4987d6524c2b0fa2d01fb05b5671432f";
+ sha512 = "a30d9ee09a94830d1196ea2ce0e92e304a28c696a8b8ccc9066ab67b03452fec4f93bd3c5975f9db22a8dba0cffd115000efad815fd9ae1a1a892cd5a3d87bc2";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ru/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ru/firefox-55.0.2.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha512 = "c7f9833724b30b81a58c6efb00ae57a69b32c2e7590d6ca0ccdc65d8960336068daf7b8f4e305a466c054f8f4897464cadb3fea48ac05aecef14e18c121a64ef";
+ sha512 = "de5678325845a719fdadc26928a6691887711e08a3067f2ad2c658db19e68a019b567e6916673ba6b869b8174cf9729015400feb7aae5cd9f7ea55e85d085348";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/si/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/si/firefox-55.0.2.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha512 = "669762fb074a3d7da7ae00c753863519e1d8afe68a183e7f6bd83d8e4305f2db7e1bb8b9a8e64aec20d3b735196bd55874573cca257d4a2de5f59b3d6d7aaee2";
+ sha512 = "0942c285a4e4a5dee08bca7709337f01d03624287a0ff8030309d1f503da4ac13c0df8314c2eac4be3a13a9842ba8e9fc2b3ebaf6a7d405e733afb8ff1bc3d8e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/sk/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/sk/firefox-55.0.2.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha512 = "beb2861f5127b121fce3ef6811de7d801c5ec3cd05c832c16b2839c08a925d2e34a8106270ec956e5f45d6062e9d5cbf72ae4d7d9ed894d9cb44d5914f0a41dc";
+ sha512 = "881bf74e210e0b3430060644429bb77447014381e6aacee6901dfc35dfcd260e719e39dcd158fb7624261ca62c68587c12fc178ee62548f4a1f0844c8a9c1eea";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/sl/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/sl/firefox-55.0.2.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha512 = "687b20e50fae586cfff1426e189f28d54aecdeacef80b3f68caacf002f52cb7141fe34803dd1e1d8664efc8500987c752e616e26aaa15b3f051afe878e3a82af";
+ sha512 = "f813a8dbef0506e281c3e347d8a240da65940c7fcb0609a9510ab3c83f2fd13462d1ad749bbe768ca65b92ae1d9dab72880f5592b430d796fd377748291ba41e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/son/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/son/firefox-55.0.2.tar.bz2";
locale = "son";
arch = "linux-i686";
- sha512 = "92b0b4353fb0e858e3998903c5d2ef82e38259ce1d9560abf06ec6b55174d17db871d967cdb62b4ad23bfbcbb10a2541d14f0b2886f73d6b2d670c93fc48220d";
+ sha512 = "61c75236138087ba7b56eaa5fcf4360fb869dcee60dd1f431b92a613ca00a64172bb48e9ff3a649e5e616566967ea0f254517ac1c98875efe2972bc9d2075b96";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/sq/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/sq/firefox-55.0.2.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha512 = "d9ec031149f9a845e6f11c34a96aa54cc14566e569b1395a83158fe32f433c51a95b1e16e99706f92973661c48856372b134c43b2ebbdc8d358108dc0998033c";
+ sha512 = "072fc33249af1ffe150ef5ab2ccf79322227844e1adc4928947b43b7956b98812ed80b1995e06d5e731f107e58cd1bb1d26eba1b9695fff7a69e00010c364e0e";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/sr/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/sr/firefox-55.0.2.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha512 = "cbb81a562427e4773a4c971d24bfc5f9ac689f8f85b6edc2a2b32572f10b202e8b16de562cae85cfe1a9e86eafa3bd60c8bcbfc2b3675128c96c73c223894f08";
+ sha512 = "bac3cfc1adf91712b58777b26fc506e1db025a58f94aef8016904d957cd8dbb2f91950ae652e076b27d4e6624458c1f10d60ca0e2906440663bfb9e239916e04";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/sv-SE/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/sv-SE/firefox-55.0.2.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha512 = "f46223ace271fcd4ca96ac6724bf60d99da5e80dcf00d6f2889cfdb41d1ca8c03ea3ca5ba61f6cc855c9cc2b62e4602628847d641f85d8bf2c6dd33cdd208b0a";
+ sha512 = "57499d98d877bbe491737ebf1b799ffef61ea41f7c903b3fc298c7006fb3a1d791cb716487f4b4fcd32d230f0fe8466ee1f36cdfd3832d920928bcdc62586ef5";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ta/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ta/firefox-55.0.2.tar.bz2";
locale = "ta";
arch = "linux-i686";
- sha512 = "cd3297d41e6524eb7ce5d398b8a95ee0ab008a626b1846e50096343aa5f469149a2a5c0f3d452d0f10ebe6f397e68d76dda4eaa9f3c10b0fa2b6a0d5d60bfa2e";
+ sha512 = "dfc1348f2239d917c19aee05f2b0d181b8028ab14b5b60fef2d8eba955fe1cb50a1400f8b5639f86c2aa8b82cc3a248224dd126d3313a5dc2f2f16014db1d0dd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/te/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/te/firefox-55.0.2.tar.bz2";
locale = "te";
arch = "linux-i686";
- sha512 = "ac7a7ffe87187610a861e32a1a314ab0dc3141eb0910a1987946adccc686cbd1b58ccd996009fef49d642f3ae0568cf429811e652f4fa23b1f5381f3511fb65c";
+ sha512 = "50e89852e7799661c506f313440c7ef10ce96fa7562452cf9f6685a93d8d2f8ec15b8984d6fe971e9fe16b4ab916b665c1e4343e37a5cd4b75f0227dd2530915";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/th/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/th/firefox-55.0.2.tar.bz2";
locale = "th";
arch = "linux-i686";
- sha512 = "2dc3ed9875d863b27151ae75dc83b5f2f738f0fac24f5fd1b3ba9f7a4aed1c2e77aaaf588bdca534b2a4078a086558ed820cbfd6e852244897dda7601bd5091f";
+ sha512 = "d1538447ed93bc652131e6d608a784294cf5f6b828e88109ff452d8f8e537dd76f9fca95b29c7eb3874c1e0b284b8ff45680783282945820fce1609c2c1cd116";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/tr/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/tr/firefox-55.0.2.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha512 = "869d654afeb246281be5b287ae76749e25da2e15d7d456cb5848281153307ca50f35a2c62dba0014b90ecf322a85ae8b7daa12ca156e8f5ac33854f6a890f19e";
+ sha512 = "7e6984a3364c1da09ada8f4aff6c2e1c371b5a4a6ee64b13afd3144d8e221081248aad6baf0d5399c3dc8a9891b184ac9fb74c9572b66007b1f1fc29642c16d3";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/uk/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/uk/firefox-55.0.2.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha512 = "709a5b8889c4a871dfa15c46bc7eee38986f4b76eef4bade78daf88f46e0ee50a815c54c0bf1e77924d1ae04d464de3a4d1c03494bb2781df11ab32d9e4766ec";
+ sha512 = "98ffd7e12a77387cb503d8c91cad07385d6d151319afd6c109712638e83ff2391555906c762c4127455487d5d9dc0ee68a20a0865791b4ebad3deb1bf9bae04a";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/ur/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/ur/firefox-55.0.2.tar.bz2";
locale = "ur";
arch = "linux-i686";
- sha512 = "d7a0481116d791eebc511ef35a79dad263bcbcde54838a03b86fd5864746c4353cea4e8ee7998b18b266509e2ce584da0cfed39c324c79b847b44ecb043ccf8e";
+ sha512 = "2e1de51b606d155bb05c6e6f51dbfa0932ec0d9d521e3904859e0c3a98ecdcd174efe865ccf44f54814530c8a979d00508d7edd25fd3d8b2e2824dc2576898fd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/uz/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/uz/firefox-55.0.2.tar.bz2";
locale = "uz";
arch = "linux-i686";
- sha512 = "5102829f08869d90f362c8da8a6947c23b23c616b6c3cca58e4a8fc9ba68573e8d74238029ad51ca2439f7946359903bbf03c2468c86bfa7f7679580f9a60649";
+ sha512 = "850fed3fbca540e717bfc6941f1d41067e596b338173924cfd2bb4109f6c52d0eb83d0f5c405f3aa3074e853dc1f1cce205f1e599ea5a2dd1422ee37fc40b691";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/vi/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/vi/firefox-55.0.2.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha512 = "a4a936439a729142af19aa2db02a6e769bfe6c653e6d54381b7d80756968b6ebe6dbad51a267936e173b49d3f92b94e89012fd35c54aa790f17217b001b7dc3d";
+ sha512 = "aa512af12c17bf2703798b3e4bd846fcaaac2230be4062f1804b73461b78f9ea8fadec137783c8f7c6ecdb11d1a1f324c57884dd3e3deb7591c4203603887d73";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xh/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/xh/firefox-55.0.2.tar.bz2";
locale = "xh";
arch = "linux-i686";
- sha512 = "9ac4a54cb66cdbc720e263277dbeee14d243c025ee63f6a1ee4990575fbbb333a0979a19615c226fe1486d9896d6754b5485dedcffb576511754d6781c572dc8";
+ sha512 = "72273bedebc546a1fcb1869154cefe7cd542348e20d01a23a3cefa8eb8bd0766159d46d69759a7d444b8d28f9769d1ef693b9f16e4fded27eca2b1a93ace6ffd";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/zh-CN/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/zh-CN/firefox-55.0.2.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha512 = "e007854739c12502665418c3e0470940cb9df0314537275dac5d3c80923a756dda14b7161196b7289187d6706d58f887f59f47e07f764714298e5da1a41a0979";
+ sha512 = "ef38cb84527c941be98315db0f9f6dd6c30a7eaf2ab8830429d79341e6af3ed919ae046b6e42d08e07990d2255b2600cb7dd3b3f24c36cb985d57e7828ab7f53";
}
- { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/zh-TW/firefox-55.0.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/firefox/releases/55.0.2/linux-i686/zh-TW/firefox-55.0.2.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha512 = "f414e7c6da2b2b5a1871f25def1ee055f7cdb66a6e76ee66848c26e2eb2d999e65070a816067990cb9d855420392e4b84b52b957e6dca063f8a011f2ddb4bbe6";
+ sha512 = "b7aa08e3e983c0453ae2d4482ab3d15c7a0a814cef78cb2103539a2771555e0c2c8675e3f8bebcbfb7c801bb2b1399e321b805d99aa28dcb3aee104d887cd6ac";
}
];
}
diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix
index a5256e19e1b..a0a1b304d6c 100644
--- a/pkgs/applications/networking/browsers/firefox/packages.nix
+++ b/pkgs/applications/networking/browsers/firefox/packages.nix
@@ -6,10 +6,10 @@ rec {
firefox = common rec {
pname = "firefox";
- version = "55.0.1";
+ version = "55.0.2";
src = fetchurl {
url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz";
- sha512 = "2c15cb3e1a9f464f63ff7ac8ccf0625ed845a5cb9b186d7acf121c439cec38bcdeee93630e99dbfd336f1b7e60a7c09822a1eba59f308bba8866f155b2ed1c47";
+ sha512 = "a27722cb5840aac89752fea0880a7e093e84b50dc78a36dc8c4bd493ffda10fa61446007f680bfe65db7a0debe4c21e6f0bf9f0de9876bba067abdda6fed7be4";
};
patches = lib.optional stdenv.isi686 (fetchpatch {
diff --git a/pkgs/applications/networking/browsers/lynx/default.nix b/pkgs/applications/networking/browsers/lynx/default.nix
index bbf034a1342..0f6c4ed36d4 100644
--- a/pkgs/applications/networking/browsers/lynx/default.nix
+++ b/pkgs/applications/networking/browsers/lynx/default.nix
@@ -2,29 +2,43 @@
, fetchurl, pkgconfig, ncurses, gzip
, sslSupport ? true, openssl ? null
, buildPlatform, hostPlatform
+, nukeReferences
}:
assert sslSupport -> openssl != null;
stdenv.mkDerivation rec {
name = "lynx-${version}";
- version = "2.8.9dev.11";
+ version = "2.8.9dev.16";
src = fetchurl {
url = "http://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2";
- sha256 = "1cqm1i7d209brkrpzaqqf2x951ra3l67dw8x9yg10vz7rpr9441a";
+ sha256 = "1j0vx871ghkm7fgrafnvd2ml3ywcl8d3gyhq02fhfb851c88lc84";
};
+ enableParallelBuilding = true;
+
+ hardeningEnable = [ "pie" ];
+
configureFlags = [ "--enable-widec" ] ++ stdenv.lib.optional sslSupport "--with-ssl";
nativeBuildInputs = stdenv.lib.optional sslSupport pkgconfig
- ++ stdenv.lib.optional (hostPlatform != buildPlatform) buildPackages.stdenv.cc;
+ ++ stdenv.lib.optional (hostPlatform != buildPlatform) buildPackages.stdenv.cc
+ ++ [ nukeReferences ];
buildInputs = [ ncurses gzip ] ++ stdenv.lib.optional sslSupport openssl.dev;
+ # cfg_defs.h captures lots of references to build-only dependencies, derived
+ # from config.cache.
+ postConfigure = ''
+ make cfg_defs.h
+ nuke-refs cfg_defs.h
+ '';
+
meta = with stdenv.lib; {
- homepage = http://lynx.isc.org/;
description = "A text-mode web browser";
+ homepage = http://lynx.invisible-island.net/;
+ license = licenses.gpl2Plus;
platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/networking/instant-messengers/discord/default.nix b/pkgs/applications/networking/instant-messengers/discord/default.nix
index f787f3f26e9..6267a3c8eb7 100644
--- a/pkgs/applications/networking/instant-messengers/discord/default.nix
+++ b/pkgs/applications/networking/instant-messengers/discord/default.nix
@@ -2,7 +2,7 @@
, alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype, gdk_pixbuf
, glib, gnome2, gtk2, libnotify, libX11, libXcomposite, libXcursor, libXdamage
, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, nspr, nss, libxcb
-, pango, systemd, libXScrnSaver, libcxx }:
+, pango, systemd, libXScrnSaver, libcxx, libpulseaudio }:
stdenv.mkDerivation rec {
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
paxmark m $out/opt/Discord
- wrapProgram $out/opt/Discord --prefix LD_LIBRARY_PATH : "$LD_LIBRARY_PATH:${libcxx}/lib:${systemd.lib}/lib"
+ wrapProgram $out/opt/Discord --prefix LD_LIBRARY_PATH : "$LD_LIBRARY_PATH:${libcxx}/lib:${systemd.lib}/lib:${libpulseaudio}/lib"
ln -s $out/opt/Discord $out/bin/
ln -s $out/opt/discord.png $out/share/pixmaps
diff --git a/pkgs/applications/networking/mailreaders/msgviewer/default.nix b/pkgs/applications/networking/mailreaders/msgviewer/default.nix
index 741f89eef05..487b2799b98 100644
--- a/pkgs/applications/networking/mailreaders/msgviewer/default.nix
+++ b/pkgs/applications/networking/mailreaders/msgviewer/default.nix
@@ -20,9 +20,9 @@ in stdenv.mkDerivation rec {
mv $dir/${uname}/* $dir
rmdir $dir/${uname}
cat <<_EOF > $out/bin/msgviewer
-#!${stdenv.shell} -eu
-${stdenv.lib.getBin jre}/bin/java -jar $dir/MSGViewer.jar $@
-_EOF
+ #!${stdenv.shell} -eu
+ exec ${stdenv.lib.getBin jre}/bin/java -jar $dir/MSGViewer.jar "\$@"
+ _EOF
chmod 755 $out/bin/msgviewer
'';
diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
index c3ce77adb9e..ed811cf82ae 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
@@ -1,595 +1,595 @@
{
- version = "52.2.1";
+ version = "52.3.0";
sources = [
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/ar/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/ar/thunderbird-52.3.0.tar.bz2";
locale = "ar";
arch = "linux-x86_64";
- sha512 = "5b19b8fb7b7a6a4dd03ee5ab163f07ee664dd7b6d701571e57b6b3943d8aebf69291958d9a51b7720c5e5935daabacfd6149229e7626557927133b00a6c8750d";
+ sha512 = "55c80c62ad45ece24f90b99a994d35aa130e2a42be5512e6efcebbcf66a6b26905cd28a42944bddc1b1c0c6ba9c488331c88ff478983c8ff8ab61c3fa7c6d234";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/ast/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/ast/thunderbird-52.3.0.tar.bz2";
locale = "ast";
arch = "linux-x86_64";
- sha512 = "d0d2a562834e865cb31648255a94b120419c7cf4bba20d0a43368a05c3590333443da9416f7940eb0ed1fd774bd161d85585154b389d01b468124b6da310d5a9";
+ sha512 = "714006603d091000b777130c45bfb5a0e4e2ed3c782d7bf17c1244d4c860a13dc0be58adaf447307149a2a5da90a1a08c3aac0a598c764d2bd491eef5c161c1e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/be/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/be/thunderbird-52.3.0.tar.bz2";
locale = "be";
arch = "linux-x86_64";
- sha512 = "2809c98f9b64b778c1bced8f91657a9cb8e57963d273ff380740db9be2aa999df5c32eeca7b6e63a4db65854f4e5654cc81f58a35e26eec8038520a9e78f263e";
+ sha512 = "be529be10ab41deab394e8a2b18f5247e64dd00fccb16cd3f95924baf0a9f1924a05f1fea97346ea171d416d44b4cdb9e5d38ea678ad1f64912aac0224f4ee63";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/bg/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/bg/thunderbird-52.3.0.tar.bz2";
locale = "bg";
arch = "linux-x86_64";
- sha512 = "cd6a67c530f7ce0e3da897ed5701ce2b85f5bcb30df8db85af38918e951e7cc75e446f5709d7b02b1f54092cd8cc54c15ec46e5bfe893cd85fccdb0851a4579c";
+ sha512 = "4726efa8ca6b72fea6acec1f8c0aec6b208f495b3dfaa68d6e26797f4998c5e3150e4e3b725e0042dc953c7b9d88c97468fa03e382b636b057c8dd451126710c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/bn-BD/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/bn-BD/thunderbird-52.3.0.tar.bz2";
locale = "bn-BD";
arch = "linux-x86_64";
- sha512 = "f117b3f56a79b5fd4a947a83ae6a3d28f0bd83f5ecb65cde674c12191517f51956535e1872547b985a35a9c0c398abc610a3f2fc2d7c9893bf7299222e5fbad7";
+ sha512 = "d0f16014b3dce0b6de06233038a8585ee6a8ec2b7a45ae406dbb71370d931bdd51100d1d68ce29ddd2329efb6eed033d1856ddf29b6515484247e6f11c4f7dd7";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/br/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/br/thunderbird-52.3.0.tar.bz2";
locale = "br";
arch = "linux-x86_64";
- sha512 = "72af56a4376a28ec2f3c091614b2d5907b12c2e66f2d3dda27b46ceb8b199a32d495454a2ea167180e44b1f9ef7aba89aea47bfed0976892d5d9af7102d5f5df";
+ sha512 = "c52c416dda11dd69e78a7ace3d6309b1cc8327adaac74cf831af42b75bf4da9dabec50771014189128dec79487d224f0ad6e9c335a5343c75bf54f828829058d";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/ca/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/ca/thunderbird-52.3.0.tar.bz2";
locale = "ca";
arch = "linux-x86_64";
- sha512 = "85da428c53f3a2467f5be661c4f40e0f9434609fd6509e01e3c28dec522f5342d225a4f19c30a59187e42540905f156897b1f0e0ab76b2419d263923be844b3f";
+ sha512 = "d0ab90bd0262476565ac48d597c699529cdfa2d4773397f1a458f7d97989b982bd9dc34c2a689d03a1a0f67c53d67ff86af1010bb0e5db55f61bfc68db96011b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/cs/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/cs/thunderbird-52.3.0.tar.bz2";
locale = "cs";
arch = "linux-x86_64";
- sha512 = "f1fc63e25fd30b1f379689fbc9d7f24e94f061b39d3b0494226f25702dd6bd610dc031e2105957e2abefab1d7f8e90e81f4381f6d69cb43b815d8b80b9588715";
+ sha512 = "ae3e3c12f0e75b449ea6d6d24858bf6036e9db8b7d6a08156d5a9026cbdb53d736a1b459109cc6dddae3d0d6c08856e829beabc8a53c20ba8741cfc0c18d395f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/cy/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/cy/thunderbird-52.3.0.tar.bz2";
locale = "cy";
arch = "linux-x86_64";
- sha512 = "b15b4c2766ef32b5e8023e8002f05fa82fd1e71784d5b5f2d63c62c4b20076c46d470a253f8e0a59f1bb1425a2d297b403c32117e43ce2e4851795511604cfb2";
+ sha512 = "c6ff55856517ed5b99ad30e649b1ac31d7d529706eb8154eb235817f4b168331e57e845d6648e2bcea574b3233587cadb63c118614598e0dcfabe3ae3d5370b1";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/da/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/da/thunderbird-52.3.0.tar.bz2";
locale = "da";
arch = "linux-x86_64";
- sha512 = "98750936e15b469d489e31eb65935d9013a0f4250543267f03b5eb9615587f8fe592b84bddf51176ecfe0864bc5c35ad5408e42861d45ed3af61f43764f5f9b0";
+ sha512 = "c0bff66366fcd9b7c62c352dbd25bec95a444b3bcc513598ec834191e7eef47a07cd0ab6a72dbe7b9f14dd323c085f4b8bb4b31ac0f2536d08b08d1c86693bb6";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/de/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/de/thunderbird-52.3.0.tar.bz2";
locale = "de";
arch = "linux-x86_64";
- sha512 = "7653e5e9e02aba7cacaaeb82e7106dfd7e49e4611eb3fb347c8192fcab3749ed98b2a2342788fe8f0e23c932ae5f9ae71266464d3d6b83629231f83ef8efa7c8";
+ sha512 = "010b56755f7107e32df25481a2febc7d0468bd27a6ec5521af32d80382c96653a2989a70e2dd7350452ebfb25f5691a161ff5fd74228b9b3670475942f7b0f6b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/dsb/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/dsb/thunderbird-52.3.0.tar.bz2";
locale = "dsb";
arch = "linux-x86_64";
- sha512 = "abf52e2f55f9582a5a1f5243a35e3fc2196beddb128a690479d6e82ac5f3cb7967640418f02fcc57c5525debce716345da23e4105e551ab0682dc5df5b6b3cc1";
+ sha512 = "735d07ecbbff46b242a103676fb8190e082fe71f8a64f19f82f18a42dae50328cd4e473bd06722a20521cbce50afceb24b61d144b4ebdd1cb83a8ff3b041530a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/el/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/el/thunderbird-52.3.0.tar.bz2";
locale = "el";
arch = "linux-x86_64";
- sha512 = "e86bfe27cddf7b1deb2fe499df2c37488863e5af24614986ced8f9063eb8494f64e637691fe3f69f6b448a50a655725f866313cf0a881425ba5cb669c9fb9940";
+ sha512 = "29361a698dab6b4d3f369393ec4c06797c1a37fe4bbce8b48f0f5216225fb26125b4f0c814255c0c964a24fb37c2865dce64197d1584385c01f0e655947d9884";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/en-GB/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/en-GB/thunderbird-52.3.0.tar.bz2";
locale = "en-GB";
arch = "linux-x86_64";
- sha512 = "57970ed60a24e6c02383b99ff4886ea9d90f49fe466f8175b3b9ec16294acd5900191b4a8fd7be08f5d987eebe547a9fd5004e516d13da8bfd702b82baeb7b8b";
+ sha512 = "8d3fc25a21aa2f38089bbfa8013104de0c6c6e95407289ecc82f5c003e732d51bf160106dff07b202d6a6d0fee989a08e75bf616cd98ac1b080605b631c2be69";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/en-US/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/en-US/thunderbird-52.3.0.tar.bz2";
locale = "en-US";
arch = "linux-x86_64";
- sha512 = "787b0c18e5cf7115ee7f317d0949f7c8d35be15f3f0c6a07b75372c07992601194a860568879164b2c5a49c276b1b48c4a723b68be46b8cd4d3bdb4144db2606";
+ sha512 = "ce05330aa7032f0cae542578cb49f7e8bbc7971be455817126bc77212ebd35ec701691ed91758e7c5b663f4731ed19c2864728908816e71023be36d13ba98bfb";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/es-AR/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/es-AR/thunderbird-52.3.0.tar.bz2";
locale = "es-AR";
arch = "linux-x86_64";
- sha512 = "65e6d0726d733b9f4929a946bc9890e5eff5ad9e22d50bbaad40d2dc259028643e666b619eef25ba7d906f5a05d0e9ea456ab0d298cab5ecccc9a4a494a6f4bf";
+ sha512 = "52058cd4b0eaa68756fd7b7ffa294fe0720a876fe176199cc67892b3d33615a92238c4fc90ce7cf9b70b3a57f3272ca7bdab8499b3d6d864775e97ab2f91c68a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/es-ES/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/es-ES/thunderbird-52.3.0.tar.bz2";
locale = "es-ES";
arch = "linux-x86_64";
- sha512 = "7266fe0dfcdc7f119e521873ea0ddc3106c6ca3d147a9cc8f9a88d563a6647d97f4c46d26547a24afaa6b10d115a3d4effc58fe2621c62395c7fc99f9587e2d1";
+ sha512 = "f447cfcf7c4febbe5244f5004e2b6a19bd03a7dc1cac5b609af8726bf9cd915e1ca2ff81aac65ac62386390b28aa1d3a6f2283d8c479b4d97c6df34e54918544";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/et/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/et/thunderbird-52.3.0.tar.bz2";
locale = "et";
arch = "linux-x86_64";
- sha512 = "048cd4d824ddc0b075bcc6d9e7a8a3905031c3333ab8bc55893278435316fd310d6002b9fa1d7b270f8b94f3bf79679e96571b083305d687c36106b903389066";
+ sha512 = "46744b2d6cd187ae58967e1be2962ae7cc4e3d4a32d195767777634d4c8b9843979896524ec90a00fe8bb1d367c7ae9d540da5705a9529d0126a165b4b7148d4";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/eu/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/eu/thunderbird-52.3.0.tar.bz2";
locale = "eu";
arch = "linux-x86_64";
- sha512 = "09b4d12b0a09de492082dc315173baccf603b387d391317a350fa67c04339b0d720a6c682e4d1c7fc7ea54e04569b004b6697d9e27a14c4f5095449f2f4e4471";
+ sha512 = "c00558d88e6f8d9e89dc5717d677caa2a1bcb319a06b03f20e951b94d8dd79bb6d2d8875dde07f59be344330a8b36db00d0c57c7542877207f344e25dda91488";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/fi/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/fi/thunderbird-52.3.0.tar.bz2";
locale = "fi";
arch = "linux-x86_64";
- sha512 = "21f1069f46a8dd2dc54326bfa32d0722dd5d139f3ac10702a3cfba7d5ba462362c126ac2656ddae8c2071b20e7f96ce8fddd8049b4df9d66438e7f32f53f9316";
+ sha512 = "668d7f4793fa0c700b1abb75f185a26b9734da8f9d9faf327ad08503802017e93726de3124818650099570de58650709f3886dc6d8af24731d83c16486a54acd";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/fr/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/fr/thunderbird-52.3.0.tar.bz2";
locale = "fr";
arch = "linux-x86_64";
- sha512 = "ae30bd2a9eccb925ed4cf6acda17363e9cbbca0b185b9477a9b5611b613e332647907bc4653f6d677677dfca9347026d02f0aec3a42f29ed532a4b71b2c207ce";
+ sha512 = "aabeea2843ac8c126c53d862054b27263b03f65f3ba848445a55615ef7e6f972792b2e634133877cbeeabd74e455a2b47d36ff76e5a4162fb7caeac3856f10d1";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/fy-NL/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/fy-NL/thunderbird-52.3.0.tar.bz2";
locale = "fy-NL";
arch = "linux-x86_64";
- sha512 = "7d35d3a78f9ab79fa8528260160d8b5fa1ee0198b53b94fdeb86e400f95320aa0d695bf1b4e1c73733ba09d6bc78d8d39f1825744e49cef1a22873f35d8a30fb";
+ sha512 = "a0e1132009e63654dc5fdde6989f758c88ce02327dc4b2e870c925886fd350867ee78958095743b582bfa77af4f2f80a497980cb3e5308dac47bcdeef88c493e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/ga-IE/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/ga-IE/thunderbird-52.3.0.tar.bz2";
locale = "ga-IE";
arch = "linux-x86_64";
- sha512 = "9886d5b9654e7cfaedd5dd60c59a6888929bc2001d4c43a2cf40f92a098ca725cfee8fc819af13c5ea2c9eeeeb3d6103289124b8fd05a234eba04f4570b5986c";
+ sha512 = "ff43e823765ec9354edc3c0009ec5a2e004e31c01602b875f538b01957bb4953e15f8a60c4ea5695af6e541566d21e4d4ea7ef4d8d3464f4dd59072269cc2eec";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/gd/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/gd/thunderbird-52.3.0.tar.bz2";
locale = "gd";
arch = "linux-x86_64";
- sha512 = "18f62933d213197ae618226aea192e30875f76568fc0a17343b49152526a32c10ad79ed4d6eb36feda0c8e287d915a99bdbff70ca942b4a313ea81ca04b257c8";
+ sha512 = "d2f1c25cef09c4e3946050af1bfadb3f8ee70bea6c9ac2d8c25e2f422a160c3cabd76373679b4fefdfe838722f69e4ce138c50c03de221c31e71878d66377d22";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/gl/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/gl/thunderbird-52.3.0.tar.bz2";
locale = "gl";
arch = "linux-x86_64";
- sha512 = "c6e447722e284beba304b42d643a16b835f525d053714577425660087b03aebdcb93c57071a2e9f143ec5393616f7a0cde9a52f5bdaf42c9df1aed8b509de415";
+ sha512 = "3ef058fa97459f41f204ea80393f27a0b572039bec4a49eef80db0402579620e28acda8613adbfe6c2cc267386a5cdb8d95fac4dfff2358a9bf4ba22a1bc24c5";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/he/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/he/thunderbird-52.3.0.tar.bz2";
locale = "he";
arch = "linux-x86_64";
- sha512 = "7445dc1299038b412a39baf594c11444875d29332afd1c36a8ec603893c3f34d442566c2c18cfcee60c5b84e1bd1bf53675d1a32530dee7fc801554605d7fe4b";
+ sha512 = "b54188bf2ba0e2e6470db0a938c77710c66e1b1d359be2ae3f306a7a2ecf34501f797baf9348609c63fdc68d1374382855509ccfe619c444150a4214ee819bf2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/hr/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/hr/thunderbird-52.3.0.tar.bz2";
locale = "hr";
arch = "linux-x86_64";
- sha512 = "9812c41f77cc76a6de78ca009989623071a3b95f992658f584bfc58b5be65a3db48d9135025f578f8877bc2f9426182f3f2dff39f50f1018ffb7b6ff272affc3";
+ sha512 = "bc5ca4099fa6d5f7884f7fefb1942aecac4aa6cdc338d8608433f3aca9ce14c8838e68aa79e48e88b453498d5d0b992a583daf6abf6f97bb4cda5d7ffdcf8194";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/hsb/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/hsb/thunderbird-52.3.0.tar.bz2";
locale = "hsb";
arch = "linux-x86_64";
- sha512 = "af4fb4ca49ac982e28fb5b77d1ec7ec5be69cb097138bb7de865d8a0167b8ce13074d2b2ca80e11dbd68c7fec8533163b9285ed4495545da833f726dac484e7c";
+ sha512 = "5b8c7468fd777d9a4f046224ad516a740fd4acabc5dd30578dfc843f772dc1d0f08b4fb257db7d4d39d58eeb6468126ddd9267c1562e8ee7d23f07e02e4babbe";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/hu/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/hu/thunderbird-52.3.0.tar.bz2";
locale = "hu";
arch = "linux-x86_64";
- sha512 = "f1026a8fb44424b95e29051ab778313c417b6119fb9959d3116d6fcace96f1786f26b419eedd7f83790c13c89aba2c339c52ca5b5cfa2d62572518cebd12db9a";
+ sha512 = "3dfb629b804513e40852d810ce5ed3e0af0cd8c7bb92a44dc6c08f2e3a45de45d2c3ccb75616a9f9d7019a8ce9b4856e27baa283647eb63e953071fd410dd418";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/hy-AM/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/hy-AM/thunderbird-52.3.0.tar.bz2";
locale = "hy-AM";
arch = "linux-x86_64";
- sha512 = "fa18a6113852d231dfcecdf682c6c1fd18f2ec5176fd9fd694a3134deb511ebaf01e00c0a336dac4a79918606136232d62f2b443ba60d25e40c573f696fca7ea";
+ sha512 = "4dfc61099b3f8502add36f3b215283140b8084504048d95ac31b948cb8e53fca658076fc7164cd2c20742edafb8f7ad5e08f2cdcb8c9cc764573e2e065364b20";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/id/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/id/thunderbird-52.3.0.tar.bz2";
locale = "id";
arch = "linux-x86_64";
- sha512 = "313e713ae5d1b4bc48789c2c33850b5177d8f497d9965606ad2530f26075cded2943351da7c13057aaeab72a60d4dca193b2fc8c4b8cc97734132b721d4df8fe";
+ sha512 = "5525d0507fbf7c7503b9a58c50ec248932e70d899ff88c1b8cdb18484d3cf4ce76fa1121a7cb5adfa3c19e1c83ecc5e888d652275400a2f92dce3e0fdbe51353";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/is/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/is/thunderbird-52.3.0.tar.bz2";
locale = "is";
arch = "linux-x86_64";
- sha512 = "6f0f8444d230cbdb5dcc81530cd05fe08ea9e2482ea7560157ece9ef938d12b7cf86a259bcc72e132717ac143a6f3e203c869f1c37715bb87fd7b248366c7554";
+ sha512 = "1fe92018d666ccfe1bf063dd191d88f3c9fbd452e7820065e45b79de534baad9d8750d4cefbc39902d49d532fd5500f4b3a167ddd7dcec61677f490daad01d9e";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/it/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/it/thunderbird-52.3.0.tar.bz2";
locale = "it";
arch = "linux-x86_64";
- sha512 = "f0633c2a46c66b4db18b2e70fffd9459d1c6732e872afaf8a1ef7fcac20114a09d32ec666305963acefa6caf6ec9b902d3f9d2143f68951674c12af462cb3673";
+ sha512 = "80d6036462d74bb180b0f3d4d384be3b644dda9b3fc008a8d63478ec877462defc88b6f3dc2eb2358489956ef20e057975fbff9f7cf5afd0d894926e617d3225";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/ja/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/ja/thunderbird-52.3.0.tar.bz2";
locale = "ja";
arch = "linux-x86_64";
- sha512 = "5893bd100cc44aefe160a8ecfc5e9e5b581e1b9c59a1aab02ea9c63f8c062d8dc0f0c069a4a8adf4b11e5be614b3390d195df91ba3c2f3845f13ae7734e7295e";
+ sha512 = "d1185fda652104759bc84a095b289ccf6a3721425d60c8f0781578eaf113349de9fca18dd1138f73dd13081ea5388d0f04fd0cfb47142236c1354a167d0362d9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/kab/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/kab/thunderbird-52.3.0.tar.bz2";
locale = "kab";
arch = "linux-x86_64";
- sha512 = "3777a5caf8208f429db9e828b6812dd16c549511e539375ff2ecb74ddeea8b8823f93194c73fc8e708ab17f8fe37c72af6ca36b5ed0ecaa2994620be7ab21de9";
+ sha512 = "4bb2184a4a968f6b33c29fab44b11f06743f88b8ecb8d83e5a892c608a03dbe3f643c2e8b5a5fc9ef844801b8bfc2891c9bbbbb306b94698bac5441051c22783";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/ko/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/ko/thunderbird-52.3.0.tar.bz2";
locale = "ko";
arch = "linux-x86_64";
- sha512 = "6a3e800d909db23c7abcc10a9e07feb5df47c57c072544ba84246c84ad364c8027e6b383a65867d9d0f1523682c45a929fb1c628999b18df2c959e32d374a15a";
+ sha512 = "49dc08f3a98205e433e81c9bdbeab3f6ed7dca5f3df9af1b6a01470dcfb1a3fb72ce3447ead492fd8f0d49dfcf9028194c94a4cc6e20b1b4c28c64a706975615";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/lt/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/lt/thunderbird-52.3.0.tar.bz2";
locale = "lt";
arch = "linux-x86_64";
- sha512 = "486691138c9548343e6841ab1e84d2e795f280fbcfbef06769c7ad816e2dec79381a1d7bc0a4bdf0d5723d48f62ffa1acb7170ff6f1f1a5364ba6872a7b34fbc";
+ sha512 = "e8b35d834e122dce0b9996060b7582a5b2c0bcd06e1ee7a4b12298bc4aa501ab18bc140fe0f0e2fd63ffad97ec9d287d1614ed76718525c86296ad1167658f9a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/nb-NO/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/nb-NO/thunderbird-52.3.0.tar.bz2";
locale = "nb-NO";
arch = "linux-x86_64";
- sha512 = "0f3745ef22be9cb7fab9d5540a1ba9433e4450511398442debce3909577ca97e1ad5ec3a41c834b31ff60852a8479321dba44559fa2262afeadc16947f69eca9";
+ sha512 = "5efba8423c744c61be72d679e4943e901488984415cbdae9533ef5a26010d0ba072f107cf8a53389f831559e8093b35c01f6eddc76b8a361f60af8166c781207";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/nl/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/nl/thunderbird-52.3.0.tar.bz2";
locale = "nl";
arch = "linux-x86_64";
- sha512 = "6ad18ac7eb19eee591b64d6118de057ec49736e93f60b18ad979536a722a2d5df4b55a8b3d69a335eb0ef96451d2516c0a160a9218fd2ccd92c290752fca61fa";
+ sha512 = "b4c6c95cf6df97ffc65d03f04af7221d819ec28b464fcb8173beebb9d810af9b78f64b39e0750d11446ff88a209677512f3735d8f38ebe91ab9842abbf183e65";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/nn-NO/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/nn-NO/thunderbird-52.3.0.tar.bz2";
locale = "nn-NO";
arch = "linux-x86_64";
- sha512 = "879e402e2dade3acaf1354b8566d1abc11994b749c90f5c1169b1fdff5ea5dd19ae31fbfd1628adaa02c93f2346c02cc69a8625de8302e9965724d8f79c5d384";
+ sha512 = "3bc0ea3e17a1161345d4c1313c774a312e591248f07be7c11d9b6c738aea2d91aeee202f2a67ad38df9fda43f5f853aa162990475dcf9248667fc546370b4083";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/pa-IN/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/pa-IN/thunderbird-52.3.0.tar.bz2";
locale = "pa-IN";
arch = "linux-x86_64";
- sha512 = "f23942c425238016e1a13b84e6407badac50efa6f11960c9996e4bf7845d3a56537721bb4b6e1c1002870739534f2dd7ce6fb74781bb8e9986e744f36b704c8f";
+ sha512 = "2fef099c73db55dd082f4a9e207ff47096870caef6ef4e9346c7faf3e40dab4d3b0e1e68d1a9dd7a427d97ae65aa347976641aef1872a4c7a6764e8a8c2cfe5b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/pl/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/pl/thunderbird-52.3.0.tar.bz2";
locale = "pl";
arch = "linux-x86_64";
- sha512 = "0ce3854480f0d9969e6c836e92ba7aecca8f662aec5c7784d8e0e9986239cd8e721baf0aae1142f43dcdc54d66708fe7b7d8f1d32c3410c69306e57e1d663159";
+ sha512 = "f523fd0d1b1656e80b52dcd8d2f52f7403c22f46eeea850c75c78fb3c1903ba4edc44ae69db755c0a105379855c0c9c33f149fb83d8016a182a32cd5bbea113f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/pt-BR/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/pt-BR/thunderbird-52.3.0.tar.bz2";
locale = "pt-BR";
arch = "linux-x86_64";
- sha512 = "13d2b36dcbc85016066b4fecd61b695eabdcfdf729996eb37ee3aabac3b6b06fb619db915fbca6d59e4827b9e724e9ce0f8308e033c5469ac906d8766bf7021c";
+ sha512 = "6428f601375bc877def880aef3ff6b8ff4856696a2040381ca22c60df8e1364cef12e1c878db6b7863d10f8cb02143c06cc58d5df6cc83d1c25e90c846be3fc4";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/pt-PT/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/pt-PT/thunderbird-52.3.0.tar.bz2";
locale = "pt-PT";
arch = "linux-x86_64";
- sha512 = "9bce5873c1266fece8d14df41d44dfed545eaa7a9435336650cf102f765a99978d117c787d1ea0f0987407139bfd07765728c6fb188699e8e70dea557e4b4f12";
+ sha512 = "6dc2fed4b003f4f120c79a0673d9d7455c0b6362dadc06e15ff612a29758c521d87cea073ca0b81018e57872e6262a09c5efc6e9fdf7b494c152ae4e992260de";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/rm/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/rm/thunderbird-52.3.0.tar.bz2";
locale = "rm";
arch = "linux-x86_64";
- sha512 = "d15bcd925d9be3d0a27478c62d178c99ed1ee474799dfb1a63b505cff3560f1d4a287a5067d6ed4b67cd05c6e8a7398a09468269f262fc001b934e5e6cef1bc7";
+ sha512 = "b22bcdbe338fec3267f352ec5554b8e5bd732961917496c6d06a6eef188cabe337bf3fcaac1afce49cd16c891fe7604fa77c13b3eedc7706b262957d5d01171f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/ro/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/ro/thunderbird-52.3.0.tar.bz2";
locale = "ro";
arch = "linux-x86_64";
- sha512 = "7ef381e722553644d8f3842be5c0fcd1c2f08b4128a53380a6aeb54f4d7d8dba5f73ccecc60d5212429ccac96045eb9dffd77b39b42b637020ea0142daf98097";
+ sha512 = "cd2f67456fcd20ed48effa2363f4088e48d91f93df66e803527e83a3f8f2f3a74ba22fc0d5c4ef736bc38ad6a6416830833948210ee900600bc36ebde81a9976";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/ru/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/ru/thunderbird-52.3.0.tar.bz2";
locale = "ru";
arch = "linux-x86_64";
- sha512 = "1f71926edd82ba36e98045e8135b4c60fcc59ab0b0a097385231a5dcc40a2d7628d6f3f3691981056f013d01a4a3b1765a58d3cab683ecd55fcfdbf1b974d138";
+ sha512 = "1b6b0adb47f3c52230297b86ead0d259acd12fc56353ed5de9afb84042d82d74193785b4cbb4be2caad302283ff54f8630b69fcc9b846009fa7dc6fdcd7e2525";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/si/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/si/thunderbird-52.3.0.tar.bz2";
locale = "si";
arch = "linux-x86_64";
- sha512 = "453b2d6898cfe04580f2846da0d534eedb77aa9627a39d7e7b6af1287c9e2feb695bf3d1e5b51b9d15f293579df2ebb1d2f9afb6cfdc3071ad24618e43ae925c";
+ sha512 = "95c4864692410aa7f9a071f9d4629614b52a05a4a2d8f3d898feb7bbb75e766a8efb8daec9e3badb32c3dc8b4bb1a2b3be80452dbc9bbeb625c9275862396d95";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/sk/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/sk/thunderbird-52.3.0.tar.bz2";
locale = "sk";
arch = "linux-x86_64";
- sha512 = "c604c83470157e881f3563c04e3e5ad368fb2d0d1cc3fb58b176cfd03953141fe037baa14120f857e238071f55ab1a3d2c1ca06c847eaabf8012b96de1409c8c";
+ sha512 = "04d594a095a4862ac32e8385ad7740afb2033d0601f520206ea504c9b367d685a2c84c43a0279f39105ef56628b66f13f2875c5b6f19f5252a3b63f6d549d876";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/sl/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/sl/thunderbird-52.3.0.tar.bz2";
locale = "sl";
arch = "linux-x86_64";
- sha512 = "da7a37a7fe21a338ed2ebbe13e46a2395cebde8036a5544e8678083cddf092fd47ee80ad7e7fef66dcae59567cecb1bd15b99d470d4ee083d328e5c2932ad518";
+ sha512 = "fe46ca8960024da81fcef7b2aad12bb58431f0cbb4d4c107fdfa8096764221f07feba468bdd2ef5d99665afd0404ae286b37bf2afe8cb6e6fc2a8ae98f9a0ef6";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/sq/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/sq/thunderbird-52.3.0.tar.bz2";
locale = "sq";
arch = "linux-x86_64";
- sha512 = "1b1e592b2eeab57e843eb4fd6745886946dbba451b5bc78e2212400a4e10fffaa5159034e8ea5d32a0f3dab7527e91b642209a7233140e0fd9c1c44363da9fef";
+ sha512 = "f44325e596690d0f383699debeb8450f02b7969232f1291ba0b02f657a80552ea09caa899948506674818159a98b646217d53c386908cfbb926791dc61a36e82";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/sr/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/sr/thunderbird-52.3.0.tar.bz2";
locale = "sr";
arch = "linux-x86_64";
- sha512 = "836d1b2c786e787e07be4df837efb2051f8fb5a964facc94e82cbc05aca77ae54e1553e285a868f4703b48e72e2a0b739ae5e92e7b3da55e4ffc70567e1ce992";
+ sha512 = "67ceca6c23768094799eb266cfc09a7340941fc49ae82c608ae6593a7bb1c9d22cf5525577e7815a1c5c8ee64744d7f6c5b790b3e5b46ceef1fde0001a9209ad";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/sv-SE/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/sv-SE/thunderbird-52.3.0.tar.bz2";
locale = "sv-SE";
arch = "linux-x86_64";
- sha512 = "ddb52211226353c021350dd94014061a42ce1ee06d2b4e8c612bcfb5e17525bf41ead152f91c466e69ae3041136fb7350ec58de21ed2726cab2d6695dacac332";
+ sha512 = "7f4ca5dca587ccc3a20c9e962d266ed1f7127d9e0707f585407efc58596e590d6650e8322bd13889afff73eeb7025942d636f3a17c327f9c2dece946ca67e50b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/ta-LK/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/ta-LK/thunderbird-52.3.0.tar.bz2";
locale = "ta-LK";
arch = "linux-x86_64";
- sha512 = "c8c79641c7d80391d5007155b4ec3bb0ff36c2ae3e1dfb908013274ce6c64e03563a68a2ed4fbfed8e4684c4c49e7f9710050aab6851cbff2e77609ce6e25f34";
+ sha512 = "6a0024f3da37a0ecd2015c9fc574ef3ca3d3f62d75324b006bc32c3be901054549525cef79597489edf22c5de1cd65c1826167132d1e5f7e62a23f12bc966ea3";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/tr/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/tr/thunderbird-52.3.0.tar.bz2";
locale = "tr";
arch = "linux-x86_64";
- sha512 = "3c6740c9512b0d2d7f809312ba9f375be8635dc41a477e5084007cdffec9fae3c3677faf96745b61a384a4b899f48c5e9c239f52549faea00e198539181f8ba8";
+ sha512 = "fc897cc02261f65d45ce243367f6cec3f08f08d6e6f64083e81a848c3efbc9098228e3b1bb0d4f9914fe5315748cc8b07d662a204ac4ee2e0e1bd075070614d5";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/uk/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/uk/thunderbird-52.3.0.tar.bz2";
locale = "uk";
arch = "linux-x86_64";
- sha512 = "0950bfca73dd4907e493e9b15667f70be1f1174ca755baeefbd2ed40160bec3f41e1c67207454e31afed919bc72314e671ed47492509c9b2c0c207bfe3e22088";
+ sha512 = "9c1aa0abdc9d008a40c5681ceac5add498f91fa9454b1b46ac199609e714d01a941705f729f99bc478a37db53cbf0e3c2f2c49e5d4b04a25b629f3fcfa29ad7b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/vi/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/vi/thunderbird-52.3.0.tar.bz2";
locale = "vi";
arch = "linux-x86_64";
- sha512 = "0107c16694feaffb18160e4eac666ec840b7efda706ddd04596cd4f54feaad07a95e9168eb8eb78cf800b4c60f3f4d229d6d217e3d3c681d2a2b0182ff65251b";
+ sha512 = "84441bc6c6a9882e0b90f9942148e70a5fe3a5d353819fed7aaaf38a7ec985d061e89a99c46e6d42c3c057dd07b44c8123f85a3db0f62b630575e51703d138d6";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/zh-CN/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/zh-CN/thunderbird-52.3.0.tar.bz2";
locale = "zh-CN";
arch = "linux-x86_64";
- sha512 = "879cd62661967b85919fddc90658d40a3119715eb2cfa95edfa60e7ef3dbc3eb23c2d317a9c632d1c2055900f03e8437af635d72efbf14d7b9fee7f87ed5b19e";
+ sha512 = "c1cd1d26ffc425986abdd08b1c3695bb9904087de1f6f192e2bb7ec187f0f433faacd6bc98700b31a11d75e28cb4c9e6f7dd2239d79ef2d0a5b866a58badb9b2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-x86_64/zh-TW/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-x86_64/zh-TW/thunderbird-52.3.0.tar.bz2";
locale = "zh-TW";
arch = "linux-x86_64";
- sha512 = "2c26ff8ed886aa5abf82511bb61fe96fc5817b211dcbfaf91deabb992b1cc968baccafcf1787b6f11b26052e18ff7f0da1d86de7ce45579bf2f6f403b11e9613";
+ sha512 = "dae4fff5b67b90db1e1e48ca24d63c294b8628cfc64f90227e2100d5f02459757131c7cf51efeba166273fa25a38d5addc035ebb5e945b31826d152f140eb3cd";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/ar/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/ar/thunderbird-52.3.0.tar.bz2";
locale = "ar";
arch = "linux-i686";
- sha512 = "5d0971ab1c51c50a9f44967a13ea7c8cd7828f14625c5d5fc02ef001adbf69f7895ec6aa691a05c7a5ce5b038854d4dcfda0204c50533b028c2458adf5a6de97";
+ sha512 = "1bc9384d57827d3d42ba4b2ccaf1ee83077301c855cb98c9ebb58453f96c37429387df7cebbf381fd6a711263584c857e5f6f1c52c915584c97f56051cb03df4";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/ast/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/ast/thunderbird-52.3.0.tar.bz2";
locale = "ast";
arch = "linux-i686";
- sha512 = "26e55787bc6e7a9fa8e3a40d0cee9912201026ec04454cbb117dbbad97d448dab1de9aba0c84e8cb10dda5cf818fd0c98116590b9e62849b5b714e63029d0fd7";
+ sha512 = "11f718f280c3cb0e1b759b721d4133dd76cae85e6e1217f66403956cb08c637de99cecc4954e58f6f1d9e8275dc8607e501e6fbbe3bf71051831336d583042ca";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/be/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/be/thunderbird-52.3.0.tar.bz2";
locale = "be";
arch = "linux-i686";
- sha512 = "432295c9cbcbd59ea6bfca3d3509f9ba3ea07bc4004cd96bdfaff468210f30f9401e372c1f19c6504895e35db907d35c282d39666eb1c99e5362f46fe6dd9ecd";
+ sha512 = "fc376bcd502ae98da16e48e72234e1b8c860aa9e42153c7e89d6ad829d9f4b2696aa7dee75bd240fc25cc7aa291a808184236ace14978a6f203997433db24148";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/bg/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/bg/thunderbird-52.3.0.tar.bz2";
locale = "bg";
arch = "linux-i686";
- sha512 = "137f4baad093df14da263ec707aaa64edfe0972b36e6441b864722a1577cc1683d4205649f79fac9262c5a53f7adcf045991bbdd3168cde74365ca2938bc8df5";
+ sha512 = "076184b227fdb364fa8f09f121735a6b6752b11c4f8537b45374db550c2fa9f6e81bb0c2cd145508973df8cbc2901de793d1f4c47696ab2165f5c819db659640";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/bn-BD/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/bn-BD/thunderbird-52.3.0.tar.bz2";
locale = "bn-BD";
arch = "linux-i686";
- sha512 = "fc33faeec367b1161c969b82c0ec703fd4f443908284b0cae309f44942473cf6042723de8895442ca21da40d404f24a8c1a490313352b95cb949e568db56b953";
+ sha512 = "604fb9985b6a69cf563b86bbaabd890f487ca3e510a93b612949af5759b339e10b67c70c17aab9b35d1fe8ac126e69ea1a6123aae75a0eca6a9b4f133fbe1fd9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/br/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/br/thunderbird-52.3.0.tar.bz2";
locale = "br";
arch = "linux-i686";
- sha512 = "69c71b3af91d6bd5c63198937f43d5ac4c29c1c075b9faa64a94362cc544d5abd9182b339936a88da87bb69ec3201c6b54185c67d0dff1defede541a48d721a5";
+ sha512 = "f5706905bb9da0c3ec9e841b7694619db321ecedc85ab20e52fe9bd2e2ea2e1ad0cd9e0dbaee4159237881000fd2d3d4eeb1c86911c0c5ca13fb718c7cbf75e3";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/ca/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/ca/thunderbird-52.3.0.tar.bz2";
locale = "ca";
arch = "linux-i686";
- sha512 = "b3b33c69e411cb4e920a72cb9a4eaf41469c709e0b04199e53094856121ed7fefe84d3987045442317dfed27069686692e9e0ea00562856a15c916c74c4f8e90";
+ sha512 = "a240c6653153c35f4cf40c7266eda3ebf499cd95cae7a62e0f2025bfb8b0c46538710a9b3b5486e1fea88354d7bd654f50faa06a6d246d2c97c0913e51e62257";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/cs/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/cs/thunderbird-52.3.0.tar.bz2";
locale = "cs";
arch = "linux-i686";
- sha512 = "c38deac7a95fe30166f8a22e6e4c76039fa3ec31ddc4ffb4e84f78c549bd76ced476efeb0b4abac0d73b4f5ab54e6f9a7181804450f882c123f41b8c2dfa9f25";
+ sha512 = "3f639e7244a32891c2cbe0059456edb241895d7f5f5aeb2636699dccb5b71d4bae855f31352575957c7edbcf4925506e76ddfa0f0b83a81a61d9a8d9b543c564";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/cy/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/cy/thunderbird-52.3.0.tar.bz2";
locale = "cy";
arch = "linux-i686";
- sha512 = "0ad5a4e40d03d0f329c479c56ad43a6151e262faa225e6f0280e4e60c7a13dd2ea949695f84514034031b796a8cf190fdab519cd58d998a254ad9238c337057e";
+ sha512 = "26c6ae97d0982d9e91bffe04918b27da55489ec00fbfa1783acfe69cd2136bd139fa9cb434a473b5f63097adb2768e73a929f8f06bec97a13ad6750837f1cf5b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/da/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/da/thunderbird-52.3.0.tar.bz2";
locale = "da";
arch = "linux-i686";
- sha512 = "e681d601bbeebad6c2abbd7784041b700bf0d2abcd490fa41165b608334e3a98ab2a8bd2291935622788c506c475de89ab5a868be734225219c499ad147d02be";
+ sha512 = "f516ecbf3124df27cb5c4dcc00505f2a1ab8806c3965755ae28ea3db7e06be173a82e5b171493af977686e31bd623984a0428d5781268cd7ab4094510ee88ec9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/de/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/de/thunderbird-52.3.0.tar.bz2";
locale = "de";
arch = "linux-i686";
- sha512 = "f6388f6992e1057906e5343adcef5d3cc08c983d3319b2880190d7ad3a42266c1635f5a04914f44edea6487dbba64ec8a916383938d6c1c064eb06ead06da39d";
+ sha512 = "053ddf755cdb5b76174b18f674169c1b478b636ac90af21d5c5108a7fb9463e4e247567421abe1fdb6cf1cab1f83b2426e2fad5d0d0a2b259b3526f5dc477bd9";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/dsb/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/dsb/thunderbird-52.3.0.tar.bz2";
locale = "dsb";
arch = "linux-i686";
- sha512 = "661f1eef600803d2c76f623be25a0b3143dceda01e146c12075b8aab32112922bdfbdafcb0d1f9be88ec1414f8447a7804494d1b5e6ab91873eb5ab00039e29b";
+ sha512 = "0217fa4e1ceb68a9bdd8d99d93bd2d523c2ecc649154eb7c22b970389a285efaaa8b2dd20f590214483cfbabdec5cac8b6120315d9b500d80038e85bf8dda80f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/el/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/el/thunderbird-52.3.0.tar.bz2";
locale = "el";
arch = "linux-i686";
- sha512 = "7c6cfdd5c97c7a721ccd02ecc6d000d759aafd9c1a05dd77da09ff077f2a284a5349a5c14371af35a5a9ab4829e4fb93d93042d75fd9eeefb95e2fc368dc458f";
+ sha512 = "8fea2697ca07a8f0007a5987e59ee2ab56d9f7a4753f3e4656e872e7201f001eb80831eba64167444d0391cf05c8af5f3d44f3aaedcd8b2d8fe48838e5097240";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/en-GB/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/en-GB/thunderbird-52.3.0.tar.bz2";
locale = "en-GB";
arch = "linux-i686";
- sha512 = "a76afaab47e279ebf5ebacf510a1ad39cebc7f1abfda826bb9b5a6af9d4de9a02066f040affe33238aba40e875402a35aa819ab1f4895ebafe370bb3d32e7d74";
+ sha512 = "269217e4eddac4a29a4c3b045240b63cf623e276d6dfbf7d874ed732fb63748ab82072ca1a482012c8d25d5852ddd0b9bef8fa756723372d4be35ef4b067fca8";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/en-US/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/en-US/thunderbird-52.3.0.tar.bz2";
locale = "en-US";
arch = "linux-i686";
- sha512 = "09e72c7a26e52973bf63e18e8c85f49c0aed00a7b4ea238bcb82c55964a019965cc24f5e71d3a7ab6f5d8f288a64609ce15bb584a2fddc08aea03ff5e6d071b3";
+ sha512 = "c436d084accd3b195f9dd0b9c96d9e45ecaec730bf5a35e35db65c7ef6328383fa82ebeb3b143f2c92bfbcb3f7983f451e35e68443f6fe24fc43baf686610207";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/es-AR/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/es-AR/thunderbird-52.3.0.tar.bz2";
locale = "es-AR";
arch = "linux-i686";
- sha512 = "412cf566707a02d62cc8a60d65a1974c608eaaf4ed666830facf137f7611a0346319a2cb560ae04742bffe776299facb7ea214e637248774bf406d5e7aab08ba";
+ sha512 = "8d6491206cc1bb41132da43eb812d1f548e7ff8414b7644809d2f42819b94c583793baafc94815b70345b43c2ad3922c5d116379a6fe0c85e1c09c7cf7431067";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/es-ES/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/es-ES/thunderbird-52.3.0.tar.bz2";
locale = "es-ES";
arch = "linux-i686";
- sha512 = "a56988ffdae668c2321f999b0cebf8008bbddbfc3469f053135d848d4cbfaccfac75ae2db325b6a080eacdb8ede5dc91e8c2fa2be255b2e72c3a47c761e63f02";
+ sha512 = "21ffc568d5aaf6ff9188846c9b6ab0483831d5c6db84c0504cbe95a5ccc2dee3ae4a8df2ddbf81a9a02c328fbf452d569cfae5f0b85f029bd62836795db41e0c";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/et/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/et/thunderbird-52.3.0.tar.bz2";
locale = "et";
arch = "linux-i686";
- sha512 = "0df3306cebff726d26cd3b46e8ef14ccbe730ff2002b80c463185c6fa1b491eec1c3262dc792db8fd96da2b4394e00ed8abe21700f85cf2f969dc8bc9b548421";
+ sha512 = "aa73dd4e5cc8ba643584b88fef3accd56b71b030a91035aca342ce4281b79372af8ee9a67a9fdb9eec2b869d0d9815f00a40e1ca6988b71f174b6e0412a31d40";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/eu/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/eu/thunderbird-52.3.0.tar.bz2";
locale = "eu";
arch = "linux-i686";
- sha512 = "ddf6542c17196aa7877409a4e37948eb351ea4fa7e10dfae21e4b8c21aa92b8bb3065c504b526784efcaa41c621889bc5ecebe4cf95ff56b0f2788d3b5cb7190";
+ sha512 = "53f6223554a11340ff5f435438e31406682bb5364bd4cc69a9909b42293095fb4a040882cc038d95ca8ea3b85dbaef31d6e6a3ce5de58e99fb5a5b7427501052";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/fi/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/fi/thunderbird-52.3.0.tar.bz2";
locale = "fi";
arch = "linux-i686";
- sha512 = "e86c14d4416939cd04d2a23849afc3cb991c352b9bdc3ecbc8f83aaa14360b30c706aa74ffbfef2bd369f62610c057232ec9e621871010d187965c177ed06e85";
+ sha512 = "eb143cc250bca4043476764e08ad1d7d8020318db832a4be7577036be2ec933518c5c2c9ceb2cb3c11d5e402aaf9ba41e251b95f505c6eca63cd28d52bec7ebf";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/fr/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/fr/thunderbird-52.3.0.tar.bz2";
locale = "fr";
arch = "linux-i686";
- sha512 = "b0fdd4da60b3278e4639a17e896d1c817ab80a44207edf21845614a8c32c70bc2094184e8d90e1b831a3516dd5b18088f21a35b09e9e8c52d72ee41764bb45d2";
+ sha512 = "16bed03812d5a4163a5d52e35ab1b9b8d91be8d772929730cd5dc92bfc62139d0778526e6e9d88d40ddb981020f6b02a19915f5dfd8993f0f477589a873c2435";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/fy-NL/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/fy-NL/thunderbird-52.3.0.tar.bz2";
locale = "fy-NL";
arch = "linux-i686";
- sha512 = "b314386f0cf27ee7f46f703c50eec9bbd879e0bc6c304c07f75f2b1455bb29c067c9c3c3d168fe3986f3018c406cf10815edde01a74764aa6d3f48a3999ff409";
+ sha512 = "3c1093eab90febc62ddbd69cdeb559fc95fa6b2e67893b2d9e8ee38e67387825cfd0b50475268b7b489ad69c80f2667abbbc4cc5be3a2b81747b5858d5cf0126";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/ga-IE/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/ga-IE/thunderbird-52.3.0.tar.bz2";
locale = "ga-IE";
arch = "linux-i686";
- sha512 = "0dafbe71c9f8da9bb6b2c2ea29498a9e6f120e59d6f352d96c89a2e3c5ea1b2b072e91943490320ba52e070fe5b2a39332945edf34c729b672a83a2afe16a86c";
+ sha512 = "153dc5005e913f36dbe1840d46a91d235207fc393a7f8f294518f1095ff590f706ff7015c823dda5da6e200a43b2f278c93f910d97517452eaab972ccedc6bef";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/gd/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/gd/thunderbird-52.3.0.tar.bz2";
locale = "gd";
arch = "linux-i686";
- sha512 = "50809368c1fdde1181e163c9d77c79191454a68d0ebf4429d52c4e95ebf651adbfb7769b07ba4e3b365312ff12ed2fbb96be60dc3d90c6b8fc6fe35f3ea8c1de";
+ sha512 = "253a9cecce89ffdd771c70b06d23216046689a0a8e70dd922328590a4a39137d93919b4052c7e928b180f2c8fe088199583c67f96602e9de150927ea08be65b4";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/gl/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/gl/thunderbird-52.3.0.tar.bz2";
locale = "gl";
arch = "linux-i686";
- sha512 = "f08d5bf61cca0e2fce5894619736a267be1851e8ad66fe2800b7a1dea2d847300bfa434c9dd539eaf966a63ee32a383cdede9029ce71758fb88e3fa6b35670d7";
+ sha512 = "b77978888a918d297419897f008f0fe05a09903d7a0364c43b20adcad883f926a9c51af3e7132825bf19dd487d7058c83209112d5ebb09f202c49a5c8e126f58";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/he/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/he/thunderbird-52.3.0.tar.bz2";
locale = "he";
arch = "linux-i686";
- sha512 = "0a0a502e8da5945057c30f5a3de0fb623111e48d585cb7707addf0ea608e8683a882c0525e19ef4300f3d827e8d7989f09ff643955b3dc9379fcd6506e1415f9";
+ sha512 = "56f1b9204c0ad5251011abf388cd3ed95b2e6cbddbb7993f967c68c8f8258c3695550025f437ddc3db455c3cbf0efbe146d0612bc40d8ad3a3482648c4bace46";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/hr/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/hr/thunderbird-52.3.0.tar.bz2";
locale = "hr";
arch = "linux-i686";
- sha512 = "954cc5c1f3687945c6a66698ddb45ce74731bdc72f34b9ed874883b732149ad9a50773acfa1f19eec16840be3aeeec7d37ca140158def750c68d7ef6d5a2ffd4";
+ sha512 = "c225c39f93bd12f822fdb523bdce20ca64266d81f007acba861466d61d155bded183e305bbb829aafdd0b64cc10d6d7054752bc3e99286b90a29864425cdf6b7";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/hsb/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/hsb/thunderbird-52.3.0.tar.bz2";
locale = "hsb";
arch = "linux-i686";
- sha512 = "15b7f0ae3741e6578e492b14ba3e43dd60e6d9f3768053cb43cd88d91d40fa247b6035b9746c173d272f752d86da2f5778779b3e3677792b976da68ff460c542";
+ sha512 = "b7c85448a5dbc2f820d866d8e307e8221ae58d66187ae259df3d93e761fa484e0c7909c61030682efa5817613104d88813c1fb7e7286d0d7c45f6ee9dc4c5ccc";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/hu/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/hu/thunderbird-52.3.0.tar.bz2";
locale = "hu";
arch = "linux-i686";
- sha512 = "32938f7f6a4f2f611a6e057a5eef8a1af67eee710f8de6053d4c9d1ef9b92fef5af29dfcc3c37939811f07dbdf89c529a9481ef4823aacfab7fa753f47144a5b";
+ sha512 = "6291b35868569e924a3efa54abded62742d7212d4a7dc039e09baa00d77ab3595a22adb042be753b75c1ce50342c20781931e366fe2b73d4b598065fb02a1d0f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/hy-AM/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/hy-AM/thunderbird-52.3.0.tar.bz2";
locale = "hy-AM";
arch = "linux-i686";
- sha512 = "0cceb38a1b6d679b3a5dfa63a44b90255a271ad0b9808d55408fb18cfa1e034b7010365b32a86cd72a29020fe211f404b7fc640f2b24428c3bc3945b4970ce8f";
+ sha512 = "ee0193ec3e1df85c3cfbc9118d479078ae3d61a70b36c582ea222338b49db4c5c2c8b0d10a0663154fdc465b23184e204b509734d2b55862c6075d1b48fd29d2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/id/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/id/thunderbird-52.3.0.tar.bz2";
locale = "id";
arch = "linux-i686";
- sha512 = "89b8172a07ae809b153ea6c48dca1bf0ae7fcbc7dea6e13b78bce99f2e84d6bb3d23e3d7955344e71c918b1c26729b920429c1efdb6a4bd5db1bb24001220ccd";
+ sha512 = "a882202254e23635dc51c10b332ae8953e61c6ffcdf42f9d5794cf3c2a7c665bb350171bda84da8388d2323b0359b1e0c3fd44a838c0979c35fa80387b312a21";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/is/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/is/thunderbird-52.3.0.tar.bz2";
locale = "is";
arch = "linux-i686";
- sha512 = "54875ec1b89501f52ad3525233ee8f7c9f50b1cf0b3061dc734a0733c0cf72c537f7279729b1c3afcfcdc411f708a519a4585877858c5c040e7455a0c5d30342";
+ sha512 = "69ad01aa6a7a84630bfaf10f4eda5b8d04af7bf5cba742943fb474ea32e926908db0f94877c1d6f9904063802dd9e219b20fbcf597aa291490726f15f6ca1379";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/it/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/it/thunderbird-52.3.0.tar.bz2";
locale = "it";
arch = "linux-i686";
- sha512 = "4766a810c7c49049ff20e52045100ab4a46a687e37613cb6161e680cdffe6fce708251a830c2b38f9fa5e93d6c31c5afa0856a79a20a9ac972c1624e77da932e";
+ sha512 = "d9a1897dc1665d69868dcf0b5d4998316a76a721ca67c5729d0b5cf2a8de516d7ec1ff92a6db1cf29dabe6544ea10482dc8ec58740fab8ee704a98596c69573b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/ja/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/ja/thunderbird-52.3.0.tar.bz2";
locale = "ja";
arch = "linux-i686";
- sha512 = "ef031bb68f1edf02c43887ec3c7d092c43e3b0694b18951997a3e2356675e09cd1f6be12a33945f8ebf877678c86266e61e1d3802ffbb42c7a7d1c3832f25eed";
+ sha512 = "c9b7e197cf9fb00292b39a7769dd06be243d3ac46ed90f5db19b612823872bebc06b330eab087295a6d91edc48ed8c40af04ac69a0b5ead05a11ad960dc36aba";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/kab/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/kab/thunderbird-52.3.0.tar.bz2";
locale = "kab";
arch = "linux-i686";
- sha512 = "6876c464c3e23640a3a03cc977b727fd1fea9925efacf9bb8a14afa575ef88041b85dc30569035fab700663eca1224928584b98b99735fdd6a68d9f00071e75a";
+ sha512 = "065d73e3cb20593a18a556535aba02ee5b01e5aa07c146a02a76130ab9474962fcbf56ed5f5733638e2c73af1cfcccf9684b6799a30112e8e6da32069bea87ea";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/ko/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/ko/thunderbird-52.3.0.tar.bz2";
locale = "ko";
arch = "linux-i686";
- sha512 = "0e2f64e9499d0cfc7597fe76214de6d9312804eaafdaef07d95e8ab84927db1d27232c9ac8b9283f24cf04e8bfac8667a253e7e229116e9241005ea433476019";
+ sha512 = "1260ecda4f82475857ac17c8e4825bb9e8aae458797a8fb92ce6fd90220dc2eafdc03447116f2063e5a66661a8869b10a4280bb481f3278b08e135466a0ab74b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/lt/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/lt/thunderbird-52.3.0.tar.bz2";
locale = "lt";
arch = "linux-i686";
- sha512 = "6e3c400dacb213a767699263a7106e08183d7c8b0fa06976ff5626aeb35be1d839a4383fb7cd61cf2437a1ab33e6315fdac8b921b2f0967bfd991a90ca2fe157";
+ sha512 = "3437bdfcd7ff3ed1f628558dfe34b82319fefb4f133062ffe8a04ddf1bb554b1d5ab881cc2a288cfe494c7e4520147bbf4c23fe38b7c0b0ddaae8a061d7ba839";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/nb-NO/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/nb-NO/thunderbird-52.3.0.tar.bz2";
locale = "nb-NO";
arch = "linux-i686";
- sha512 = "dce647bac69f3d7d7bee0e3ef622eedc6f7d97adf991a244718f24d8ba2c33a75c470c05e95d66109535a832c65d6cd2c064157e4e9806e44cd0f6f950de6de6";
+ sha512 = "e321b1ce86913287ad239f235f97e481c1f1a26931da1f17ac4827767735208a31ac0c418301476551ad1c73781dbae890da15ebd8113a59d11e45359d592537";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/nl/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/nl/thunderbird-52.3.0.tar.bz2";
locale = "nl";
arch = "linux-i686";
- sha512 = "e797cf5d6300b6478435c554ed39d4d1ef5ff9a61cd47557a2db1766912f8da9b1e60599b66e35ca9138d3e04e234b2f443a675d0329639b21f37cd787faea4c";
+ sha512 = "656e6bec81d40f1dee9bd51d5313f6625485458f47c45a4f77b8f114df9463257765870982bf704f108f84df064d51a7c5c5500440e3b66a690b15d248977070";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/nn-NO/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/nn-NO/thunderbird-52.3.0.tar.bz2";
locale = "nn-NO";
arch = "linux-i686";
- sha512 = "f30cf85b92a024a2c7133e97203c60ed18d2ddba2ddf081779962ea1af2be893cd820638b08dbbb09304ff1412df94a4dd5f6e9e05b49527a5d6d15011a4f024";
+ sha512 = "d7a460705e2debb51423612059425094e88a0ee552ce8b75097845763d4c65039fffabcba2f0d95bc655a84f3d1d1c7e1290905f56c5c8c461e14a9eaf87efc7";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/pa-IN/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/pa-IN/thunderbird-52.3.0.tar.bz2";
locale = "pa-IN";
arch = "linux-i686";
- sha512 = "b6256747abfe759c0c65a0dd3431e9e498339259caff450b0988e1936ce10e9f2f019a241b21d7f2c1e9911e4396a055ab9640fcfd9a22d5f520ed461d476411";
+ sha512 = "ab12d8a23b649b5fd7cc71caa71dc0cf15f4a5baab69be44ec71daa4f643a2f5dd83974d88e6d5deb06c9e89bb7f39af3940edd551588c28d42d1304bc092f53";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/pl/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/pl/thunderbird-52.3.0.tar.bz2";
locale = "pl";
arch = "linux-i686";
- sha512 = "a6cd073fd83eb0a31e1cbcadd149e5c1be90e0bd8d890cde0ceec19bf4be15582fcceb5d6987c1682492a4e6370c215995c3ea49f3ae25529be6c5b1534c198b";
+ sha512 = "f85deb706d0ae38c53965951c09991bac85a05486b23e6c364871d9d68dab057b4ad963d4287bab4f1d6c3ba60841827ad6b1861c3dda15dbd29f42c9442dbf1";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/pt-BR/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/pt-BR/thunderbird-52.3.0.tar.bz2";
locale = "pt-BR";
arch = "linux-i686";
- sha512 = "016eeaa8804945f34a89d0fbb60133f1e0beca5c6ccd695201f09ab8fe529b85f98f0d992875ba8ce866d147ce9f92807773d44f9932ba1de73fdb1398fdece1";
+ sha512 = "a3e955d25fc48b8e2051a131c437b1075a773b69fbc17f4cbb8ff60548d47449be70e3aab97d569802c925ffb57462bd144f3eeb0cdde7b2508ecff536a9193f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/pt-PT/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/pt-PT/thunderbird-52.3.0.tar.bz2";
locale = "pt-PT";
arch = "linux-i686";
- sha512 = "e76b5313089da90a6cb34190bd07e65cb7fda4a34ee0581009fcdf9d0135c42b698f2a6c575cc13e63d749ca0ee0f3485fb05308419b5f7e72c9a1ff89601a69";
+ sha512 = "051f55a3530c7d90a0f7791d6bf2ed1af015eb6813ffe3f1b43d7fd4da992c079bc6836e38eb027f7246aef7245f480e9300dfca9c512f55e62c3d851c7d9b16";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/rm/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/rm/thunderbird-52.3.0.tar.bz2";
locale = "rm";
arch = "linux-i686";
- sha512 = "fcb0fc5ef00a370396f01bdb885f3bedd551344849f6eba53057506a573486af5ec781f2850aaf1e6fede9a3613c9c94629511c0a7d445565db8fe1cabcec29c";
+ sha512 = "f42c1f0cbd76b7425d986b26a1e2d0342c4c99c7d283bd2d6719179c5b14912853b7af20de214dcf06ef1f89bfa9d5a9eb0052effecab505738c80abf168b67b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/ro/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/ro/thunderbird-52.3.0.tar.bz2";
locale = "ro";
arch = "linux-i686";
- sha512 = "fafff899f366c17bc81b4432a4b1c6cae8fd6bff6c307bd377a314b9b4f520fbce4ba23b144a816d24fad65e90b33e17b25767c60f4ef10136dac6701f3d326f";
+ sha512 = "30cd95effe6597aeb0e686511a3b59f064269562337c924af06198600a9c19dee54931255cb9e5400e034de8d9c08f2e99943084ad9360eeedbd0615339df3fd";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/ru/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/ru/thunderbird-52.3.0.tar.bz2";
locale = "ru";
arch = "linux-i686";
- sha512 = "0a0598479ced443e18d9b29bd0e0deca39176303f81e25999282af9fa1d67ffe5d0e66ad4f4461a24fbd94ca960876e2836ad2d69ba0fb4bbe81c1e471555625";
+ sha512 = "3e8a7501295ad1a41f3b79efaff4c76c25e5201f2ddfb02749ce950b66d81b8cfd870da2570eddf4381e8928a6a355dae06906043bc6912da23feda3706ac12d";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/si/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/si/thunderbird-52.3.0.tar.bz2";
locale = "si";
arch = "linux-i686";
- sha512 = "5aff4f01e7902140e817b206dd543a73b003a808bea448478918be7214de0601568151814baa96c4ae2ea193c76e7c8daa411f742b719df34dc275b4e9f8d52b";
+ sha512 = "ddaf492f1d6c219ff503fa50ae1f415c7d24dd6431cd55d02a222e5eec7265b80e96fcfb0ca38092e06aeea78f698ed5b229d8527785e90b49fed6ca69acb9a2";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/sk/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/sk/thunderbird-52.3.0.tar.bz2";
locale = "sk";
arch = "linux-i686";
- sha512 = "560557b1662f58311a2ba694544a6b329a4fa709bc1702e12351c90b2647b974ffca4ac7c78e0c2430193cd6fcf194fb40f078c8c7c4cbb628e9b8e4a8abc37f";
+ sha512 = "dec6bfebf69c1db120ebee8b61cec49eb3c27209f9bbc0fd914c4f22956829cd9759f0671cd7b6ca24dda6598dd45791d566a55db5395cc089ea15696d791a3a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/sl/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/sl/thunderbird-52.3.0.tar.bz2";
locale = "sl";
arch = "linux-i686";
- sha512 = "c3689c69bad7cd2f8ae58e430de4141b593db86adfc58e1f4b65258aa2a74c68595bbdaa966437a732502aae8f8c6952e10a27e453e632e2a162457261426a55";
+ sha512 = "3fd4b5dcc631b65f0509272156be238d4c9f99835fb7d23730d99267351f9ac58d370cc95f3a4839bf0b1a45fc0fd34b1b6cdb9efa88b75f991aa5fedf74521f";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/sq/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/sq/thunderbird-52.3.0.tar.bz2";
locale = "sq";
arch = "linux-i686";
- sha512 = "6ab246a7878e68204c2d4548a1583edb7293a7d7c671ad2be4767e098d7e5ab2308e5f5d8f02a7081bf6aead42207e88b16a38667ebde5f76bfb8fcf398545d3";
+ sha512 = "a72d7db408855d53eda896280a114dbe667a914a5c5d17da7a242697a44b974f54f0b02d0884150c1f27602296df17cadc96f4b27057ae094df9680d3b48f6bb";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/sr/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/sr/thunderbird-52.3.0.tar.bz2";
locale = "sr";
arch = "linux-i686";
- sha512 = "923fd4d862bb8c363f20a5f05dc67a98de3266b961790299c667492c1c528b860524bf7197377c73f68c849dca8a96ac7adccfd32b0e9513d631550e786c43b6";
+ sha512 = "dbd9862ca22f038defb83b8df9cde748eaab1a4d68afbbbe6dfe45c73334616bf7f64536d6ab2d42166d1196e548acf697fa29a5d37184e9ccb198bc713ecae8";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/sv-SE/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/sv-SE/thunderbird-52.3.0.tar.bz2";
locale = "sv-SE";
arch = "linux-i686";
- sha512 = "81d7662ebaa211208f435b8d66a5766289ca9bc897c81aeef9666f10157a5c6b3cd5226585e144ceb2ac3a2ca9edb336e82e4b3d9097e4a4097e5b6de5626e1a";
+ sha512 = "7c3804d7681cffc6e979975a898b1cc2b1bac0d2e6a17058025629b8ad308cade808401f99e43cf0c1662a9597f2f6848d12839c3e1fe7606fca5926e6b484cf";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/ta-LK/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/ta-LK/thunderbird-52.3.0.tar.bz2";
locale = "ta-LK";
arch = "linux-i686";
- sha512 = "dd8bd65fe029cb0fa7016119b354fc0e2d1a3bac2b89e899edcdc03e3514aad4ae91707f72d19156b1d24e778f0b7a54fbbdff049e553a3daeaf56c6486dec47";
+ sha512 = "38e8a0370c8ea7c7b7936da47dea583dbd282eb0cbe504337ac9e35efaf67cb1e6e9d7220efec243581d7a04a19e4f6f78892fd1a84461b30035d01ab225920a";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/tr/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/tr/thunderbird-52.3.0.tar.bz2";
locale = "tr";
arch = "linux-i686";
- sha512 = "3a71dcf6e9562d2e196e7bd76c662f5181f11cc6cc121a1ed1724e13e5e897777f1c36a4eeef36bf8a606ab8f13fbe8c4b3b345e9c70f42f8c22155ac7da3963";
+ sha512 = "053e0e6e88c92c6c8d398cb8c38d8ce9b1340c4ff4455a7c4b1225090d5d10387b8b14e6f71dfee2a159329478cada995f05b75986c6a57d01ae7c1e1a65772b";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/uk/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/uk/thunderbird-52.3.0.tar.bz2";
locale = "uk";
arch = "linux-i686";
- sha512 = "6094592ebae6b37073e7c15da36f5fd39ccbbfbc104dac8faea889ebf00f9c6e7cd5f0a2bbd54b53c0495a7166ed871b7aa4c3abe4b97827d15646b4d002b010";
+ sha512 = "98cabbbd8314ba80d74a0f3a9b17ee49aced8b5832f13e5b6060896dd9dee4abff8a15e1b509387254416f6e49652fcf797a1cb6934b7ae6f65909ba85a8e01d";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/vi/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/vi/thunderbird-52.3.0.tar.bz2";
locale = "vi";
arch = "linux-i686";
- sha512 = "f96d09771ebd3ff63d35f95e42e77b2227c5b48a459f6e1e782a1259a845c2d6d819afb3a12333f19d5440cc6098db98b502514c5bb68c509a5a4778a5b88501";
+ sha512 = "2937330459ec576ba9678c465bd5aea7cb536002574a23e3043363d562bee2d1c58de1a6a73870ee27e363b9a64b82ae2a483dd21e3b6fc3b28bdda5d8c349f5";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/zh-CN/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/zh-CN/thunderbird-52.3.0.tar.bz2";
locale = "zh-CN";
arch = "linux-i686";
- sha512 = "eba8d0ee4cc69f386dc114019501fac6b5ebeb3828755062167519ca062fa1e60d2327aec6db647459efd9ce83d31dbfeff28ea7821f52e9254de362a46ee472";
+ sha512 = "80e640c07514c215f170606353a97b058fe2b6b8f03adeb1526d3f5e237cfe71123b945b82b00726b00101a11a3207930af622775e4a0b5c5f9c464aca34aad0";
}
- { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.2.1/linux-i686/zh-TW/thunderbird-52.2.1.tar.bz2";
+ { url = "http://archive.mozilla.org/pub/thunderbird/releases/52.3.0/linux-i686/zh-TW/thunderbird-52.3.0.tar.bz2";
locale = "zh-TW";
arch = "linux-i686";
- sha512 = "f0af41f4faa7259f6caa2a675e60880aea434b0f2bcbde3db00001c32362c001c92b10c14d06d1ea344390d16e20f87f0cb5a7e7ecfcfbb0b3ec1da9ece8f5dd";
+ sha512 = "9ea9bb1121f3f1731d3e1748af70ebce153a7cdf8bc44034928f618e21f2c1c1ac50f13f2e42d42e3105fbabe7cbb919bf785de032b615b2a1e732700c436ad9";
}
];
}
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index 0e861400496..0bcf1f4ceb7 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -22,11 +22,11 @@ let
wrapperTool = if enableGTK3 then wrapGAppsHook else makeWrapper;
in stdenv.mkDerivation rec {
name = "thunderbird-${version}";
- version = "52.2.1";
+ version = "52.3.0";
src = fetchurl {
url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz";
- sha512 = "f30ba358b1bfc57265b26da3d2205a8a77c6cd1987278de40cde6c1c1241db3c2fedc60aebb6ff56ffb340492c5580294420158f4b7c4787f558e79f72e3d7fb";
+ sha512 = "10e6495d207328aae325a797be1de5e535b5d967df929b0af9d7554d0473b5a7931c8f9cb1793e843b1913f441f790169dd4ac1ad9e0e53e66bc8e1c1dd60e66";
};
patches = [ ./gcc6.patch ];
diff --git a/pkgs/applications/science/biology/poretools/default.nix b/pkgs/applications/science/biology/poretools/default.nix
new file mode 100755
index 00000000000..3bb9ea06fd4
--- /dev/null
+++ b/pkgs/applications/science/biology/poretools/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, pythonPackages, fetchFromGitHub }:
+
+pythonPackages.buildPythonPackage rec {
+ pname = "poretools";
+ version = "unstable-2016-07-10";
+ name = "${pname}-${version}";
+
+ src = fetchFromGitHub {
+ repo = pname;
+ owner = "arq5x";
+ rev = "e426b1f09e86ac259a00c261c79df91510777407";
+ sha256 = "0bglj833wxpp3cq430p1d3xp085ls221js2y90w7ir2x5ay8l7am";
+ };
+
+ propagatedBuildInputs = [pythonPackages.h5py pythonPackages.matplotlib pythonPackages.seaborn pythonPackages.pandas];
+
+ meta = {
+ description = "a toolkit for working with nanopore sequencing data from Oxford Nanopore";
+ license = stdenv.lib.licenses.mit;
+ homepage = http://poretools.readthedocs.io/en/latest/;
+ maintainers = [stdenv.lib.maintainers.rybern];
+ };
+}
diff --git a/pkgs/applications/science/electronics/caneda/default.nix b/pkgs/applications/science/electronics/caneda/default.nix
index dc00cef8898..399815f943a 100644
--- a/pkgs/applications/science/electronics/caneda/default.nix
+++ b/pkgs/applications/science/electronics/caneda/default.nix
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Open source EDA software focused on easy of use and portability";
- homepage = http://caneda.tuxfamily.org;
+ homepage = http://caneda.org;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
diff --git a/pkgs/applications/science/logic/acgtk/default.nix b/pkgs/applications/science/logic/acgtk/default.nix
index 94b292d6588..bd4ccea231b 100644
--- a/pkgs/applications/science/logic/acgtk/default.nix
+++ b/pkgs/applications/science/logic/acgtk/default.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation {
+ " " + optionalString installEmacsMode "install-emacs";
meta = with stdenv.lib; {
- homepage = http://www.loria.fr/equipes/calligramme/acg;
+ homepage = http://calligramme.loria.fr/acg/;
description = "A toolkit for developing ACG signatures and lexicon";
license = licenses.cecill20;
platforms = ocaml.meta.platforms or [];
diff --git a/pkgs/applications/science/logic/lean2/default.nix b/pkgs/applications/science/logic/lean2/default.nix
index a938af72f58..f45f65e9082 100644
--- a/pkgs/applications/science/logic/lean2/default.nix
+++ b/pkgs/applications/science/logic/lean2/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "lean2-${version}";
- version = "2016-11-29";
+ version = "2017-07-22";
src = fetchFromGitHub {
owner = "leanprover";
repo = "lean2";
- rev = "a086fb334838c427bbc8f984eb44a4cbbe013a6b";
- sha256 = "0qlvhnb37amclgcyizl8bfab33b0a3jk54br9gsrik8cq76lkwwx";
+ rev = "34dbd6c3ae612186b8f0f80d12fbf5ae7a059ec9";
+ sha256 = "1xv3j487zhh1zf2b4v19xzw63s2sgjhg8d62a0kxxyknfmdf3khl";
};
buildInputs = [ gmp mpfr cmake python gperftools ninja makeWrapper ];
diff --git a/pkgs/applications/science/logic/open-wbo/default.nix b/pkgs/applications/science/logic/open-wbo/default.nix
new file mode 100644
index 00000000000..48546a86112
--- /dev/null
+++ b/pkgs/applications/science/logic/open-wbo/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitHub, zlib, gmp }:
+
+stdenv.mkDerivation rec {
+ name = "open-wbo-2.0";
+
+ src = fetchFromGitHub {
+ owner = "sat-group";
+ repo = "open-wbo";
+ rev = "f193a3bd802551b13d6424bc1baba6ad35ec6ba6";
+ sha256 = "1742i15qfsbf49c4r837wz35c1p7yafvz7ar6vmgcj6cmfwr8jb4";
+ };
+
+ buildInputs = [ zlib gmp ];
+
+ makeFlags = [ "r" ];
+ installPhase = ''
+ install -Dm0755 open-wbo_release $out/bin/open-wbo
+ '';
+
+ meta = with stdenv.lib; {
+ description = "State-of-the-art MaxSAT and Pseudo-Boolean solver";
+ maintainers = with maintainers; [ gebner ];
+ platforms = platforms.unix;
+ license = licenses.mit;
+ homepage = http://sat.inesc-id.pt/open-wbo/;
+ };
+}
diff --git a/pkgs/applications/science/logic/z3/default.nix b/pkgs/applications/science/logic/z3/default.nix
index 9683579af47..a6b89f90ef6 100644
--- a/pkgs/applications/science/logic/z3/default.nix
+++ b/pkgs/applications/science/logic/z3/default.nix
@@ -23,7 +23,7 @@ in stdenv.mkDerivation rec {
meta = {
description = "A high-performance theorem prover and SMT solver";
- homepage = "http://github.com/Z3Prover/z3";
+ homepage = "https://github.com/Z3Prover/z3";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
diff --git a/pkgs/applications/science/logic/z3_opt/default.nix b/pkgs/applications/science/logic/z3_opt/default.nix
index 1b989097758..d3d63795d69 100644
--- a/pkgs/applications/science/logic/z3_opt/default.nix
+++ b/pkgs/applications/science/logic/z3_opt/default.nix
@@ -37,7 +37,7 @@ in stdenv.mkDerivation rec {
meta = {
description = "A high-performance theorem prover and SMT solver, optimization edition";
- homepage = "http://github.com/Z3Prover/z3";
+ homepage = "https://github.com/Z3Prover/z3";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice sheganinans ];
diff --git a/pkgs/applications/science/math/geogebra/default.nix b/pkgs/applications/science/math/geogebra/default.nix
index ec3d265fb80..ef6b266eaaf 100644
--- a/pkgs/applications/science/math/geogebra/default.nix
+++ b/pkgs/applications/science/math/geogebra/default.nix
@@ -2,13 +2,20 @@
stdenv.mkDerivation rec {
name = "geogebra-${version}";
- version = "5-0-377-0";
+ version = "5-0-382-0";
preferLocalBuild = true;
src = fetchurl {
- url = "http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${version}.tar.bz2";
- sha256 = "0rvsjpf7pyz8z5yrqmc5ixzq7mnf1pyp00i914qd6wn5bx0apkxv";
+ urls = [
+ "http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${version}.tar.bz2"
+
+ # Fallback for 5-0-382-0
+ # To avoid breaks when latest geogebra version is
+ # removed from `download.geogebra.org`
+ "http://web.archive.org/web/20170818191250/http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-5-0-382-0.tar.bz2"
+ ];
+ sha256 = "0xqln1ssm35q8ry4a0ly8rkgw41brmrhn26l6q6r0qqrnw85cnyv";
};
srcIcon = fetchurl {
diff --git a/pkgs/applications/virtualization/cbfstool/default.nix b/pkgs/applications/virtualization/cbfstool/default.nix
index b7bbeb158c6..d02d7860654 100644
--- a/pkgs/applications/virtualization/cbfstool/default.nix
+++ b/pkgs/applications/virtualization/cbfstool/default.nix
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Management utility for CBFS formatted ROM images";
- homepage = http://www.coreboot.org;
+ homepage = https://www.coreboot.org;
license = licenses.gpl2;
maintainers = [ maintainers.tstrobel ];
platforms = platforms.linux;
diff --git a/pkgs/applications/window-managers/sxhkd/default.nix b/pkgs/applications/window-managers/sxhkd/default.nix
index b78b15f7914..41a50668f19 100644
--- a/pkgs/applications/window-managers/sxhkd/default.nix
+++ b/pkgs/applications/window-managers/sxhkd/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Simple X hotkey daemon";
- homepage = http://github.com/baskerville/sxhkd/;
+ homepage = https://github.com/baskerville/sxhkd/;
license = stdenv.lib.licenses.bsd2;
platforms = stdenv.lib.platforms.linux;
};
diff --git a/pkgs/applications/window-managers/trayer/default.nix b/pkgs/applications/window-managers/trayer/default.nix
index 146bd7e1438..79c73d80789 100644
--- a/pkgs/applications/window-managers/trayer/default.nix
+++ b/pkgs/applications/window-managers/trayer/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
- homepage = http://github.com/sargon/trayer-srg;
+ homepage = https://github.com/sargon/trayer-srg;
license = licenses.mit;
description = "A lightweight GTK2-based systray for UNIX desktop";
platforms = platforms.linux;
diff --git a/pkgs/applications/window-managers/xmonad-log-applet/default.nix b/pkgs/applications/window-managers/xmonad-log-applet/default.nix
index f27e7a953dd..906ba0efda2 100644
--- a/pkgs/applications/window-managers/xmonad-log-applet/default.nix
+++ b/pkgs/applications/window-managers/xmonad-log-applet/default.nix
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
patches = [ ./fix-paths.patch ];
meta = with stdenv.lib; {
- homepage = http://github.com/alexkay/xmonad-log-applet;
+ homepage = https://github.com/alexkay/xmonad-log-applet;
license = licenses.bsd3;
description = "An applet that will display XMonad log information (${desktopSupport} version)";
platforms = platforms.linux;
diff --git a/pkgs/data/fonts/andagii/default.nix b/pkgs/data/fonts/andagii/default.nix
index 5c708457f8d..ba0bab61eec 100644
--- a/pkgs/data/fonts/andagii/default.nix
+++ b/pkgs/data/fonts/andagii/default.nix
@@ -18,7 +18,7 @@ in fetchzip {
# package; but I cannot find the original source, so use it on your
# own risk Debian claims it is GPL - good enough for me.
meta = with stdenv.lib; {
- homepage = http://www.i18nguy.com/unicode/unicode-font.HTML;
+ homepage = http://www.i18nguy.com/unicode/unicode-font.html;
description = "Unicode Plane 1 Osmanya script font";
maintainers = with maintainers; [ raskin rycee ];
license = "unknown";
diff --git a/pkgs/data/fonts/dejavu-fonts/default.nix b/pkgs/data/fonts/dejavu-fonts/default.nix
index 267a0b80a1f..1e888fe0784 100644
--- a/pkgs/data/fonts/dejavu-fonts/default.nix
+++ b/pkgs/data/fonts/dejavu-fonts/default.nix
@@ -1,34 +1,7 @@
{fetchFromGitHub, stdenv, fontforge, perl, FontTTF}:
-let version = "2.37" ; in
-
-stdenv.mkDerivation rec {
- name = "dejavu-fonts-${version}";
- buildInputs = [fontforge perl FontTTF];
-
- src = fetchFromGitHub {
- owner = "dejavu-fonts";
- repo = "dejavu-fonts";
- rev = "version_${stdenv.lib.replaceStrings ["."] ["_"] version}";
- sha256 = "1xknlg2h287dx34v2n5r33bpcl4biqf0cv7nak657rjki7s0k4bk";
- };
-
- outputs = [ "out" "minimal" ];
-
- buildFlags = "full-ttf";
-
- preBuild = "patchShebangs scripts";
-
- installPhase = ''
- mkdir -p $out/share/fonts/truetype
- for i in $(find build -name '*.ttf'); do
- cp $i $out/share/fonts/truetype;
- done;
- '' + ''
- local fname=share/fonts/truetype/DejaVuSans.ttf
- moveToOutput "$fname" "$minimal"
- ln -s "$minimal/$fname" "$out/$fname"
- '';
+let
+ version = "2.37";
meta = {
description = "A typeface family based on the Bitstream Vera fonts";
@@ -49,4 +22,54 @@ stdenv.mkDerivation rec {
platforms = stdenv.lib.platforms.unix;
};
+
+ full-ttf = stdenv.mkDerivation {
+ name = "dejavu-fonts-full-${version}";
+ buildInputs = [fontforge perl FontTTF];
+
+ src = fetchFromGitHub {
+ owner = "dejavu-fonts";
+ repo = "dejavu-fonts";
+ rev = "version_${stdenv.lib.replaceStrings ["."] ["_"] version}";
+ sha256 = "1xknlg2h287dx34v2n5r33bpcl4biqf0cv7nak657rjki7s0k4bk";
+ };
+
+ buildFlags = "full-ttf";
+
+ preBuild = "patchShebangs scripts";
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/truetype
+ cp build/*.ttf $out/share/fonts/truetype/
+ '';
+
+ outputHashAlgo = "sha256";
+ outputHashMode = "recursive";
+ outputHash = "1cxprzsr826d888ha4zxx28i9jfj1k74q9kfv3v2rf603460iha9";
+ inherit meta;
+ };
+
+ minimal = stdenv.mkDerivation {
+ name = "dejavu-fonts-minimal-${version}";
+ buildCommand = ''
+ install -D ${full-ttf}/share/fonts/truetype/DejaVuSans.ttf $out/share/fonts/truetype/DejaVuSans.ttf
+ '';
+ outputHashAlgo = "sha256";
+ outputHashMode = "recursive";
+ outputHash = "0ybsynp9904vmd3qv5b438swhx43m5q6gfih3i32iw33rks8nkpj";
+ inherit meta;
+ };
+in stdenv.mkDerivation {
+ name = "dejavu-fonts-${version}";
+ buildCommand = ''
+ mkdir -p $out/share/fonts/truetype
+ cp ${full-ttf}/share/fonts/truetype/*.ttf $out/share/fonts/truetype/
+ ln -s --force ${minimal}/share/fonts/truetype/DejaVuSans.ttf $out/share/fonts/truetype/DejaVuSans.ttf
+ '';
+ outputHashAlgo = "sha256";
+ outputHashMode = "recursive";
+ outputHash = "1nf0h15p8yvjx36syq1034i3hix99lm8p54iyjw8dpa19i9jfkmd";
+ inherit meta;
+
+ passthru.minimal = minimal;
}
diff --git a/pkgs/data/fonts/redhat-liberation-fonts/default.nix b/pkgs/data/fonts/redhat-liberation-fonts/default.nix
index a0511c6a353..3fbcefc3187 100644
--- a/pkgs/data/fonts/redhat-liberation-fonts/default.nix
+++ b/pkgs/data/fonts/redhat-liberation-fonts/default.nix
@@ -4,23 +4,27 @@ let
inherit (python2.pkgs) fonttools;
common =
- {version, url, sha256, buildInputs}:
+ {version, url, sha256, buildInputs, postPatch ? null, outputHash}:
stdenv.mkDerivation rec {
name = "liberation-fonts-${version}";
src = fetchurl {
inherit url sha256;
};
- inherit buildInputs;
+ inherit buildInputs postPatch;
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp -v $( find . -name '*.ttf') $out/share/fonts/truetype
- mkdir -p "$out/doc/${name}"
- cp -v AUTHORS ChangeLog COPYING License.txt README "$out/doc/${name}" || true
+ mkdir -p "$out/share/doc/${name}"
+ cp -v AUTHORS ChangeLog COPYING License.txt README "$out/share/doc/${name}" || true
'';
+ outputHashAlgo = "sha256";
+ outputHashMode = "recursive";
+ inherit outputHash;
+
meta = with stdenv.lib; {
description = "Liberation Fonts, replacements for Times New Roman, Arial, and Courier New";
longDescription = ''
@@ -36,7 +40,7 @@ let
'';
license = licenses.ofl;
- homepage = https://fedorahosted.org/liberation-fonts/;
+ homepage = https://pagure.io/liberation-fonts/;
maintainers = [
maintainers.raskin
];
@@ -47,26 +51,35 @@ let
in {
liberation_ttf_v1_from_source = common rec {
version = "1.07.4";
- url = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-${version}.tar.gz";
+ url = "https://releases.pagure.org/liberation-fonts/liberation-fonts-${version}.tar.gz";
sha256 = "01jlg88q2s6by7qv6fmnrlx0lwjarrjrpxv811zjz6f2im4vg65d";
- buildInputs = [ fontforge fonttools ];
+ buildInputs = [ fontforge ];
+ outputHash = "1q102rmg4004p74f8m4y8a6iklmnva0q39sq260jsq3lhcfypg7p";
};
liberation_ttf_v1_binary = common rec {
version = "1.07.4";
- url = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz";
+ url = "https://releases.pagure.org/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz";
sha256 = "0p7frz29pmjlk2d0j2zs5kfspygwdnpzxkb2hwzcfhrafjvf59v1";
buildInputs = [ ];
+ outputHash = "12gwb9b4ij9d93ky4c9ykgp03fqr62axy37pds88q7y6zgciwkab";
};
liberation_ttf_v2_from_source = common rec {
version = "2.00.1";
- url = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-${version}.tar.gz";
+ url = "https://releases.pagure.org/liberation-fonts/liberation-fonts-${version}.tar.gz";
sha256 = "1ymryvd2nw4jmw4w5y1i3ll2dn48rpkqzlsgv7994lk6qc9cdjvs";
buildInputs = [ fontforge fonttools ];
+ postPatch = ''
+ substituteInPlace scripts/setisFixedPitch-fonttools.py --replace \
+ 'font = ttLib.TTFont(fontfile)' \
+ 'font = ttLib.TTFont(fontfile, recalcTimestamp=False)'
+ '';
+ outputHash = "0nldgawm0a6lpn86w4w3rzx01ns3ph09ar1knq1g4jkxc8ci5rqn";
};
liberation_ttf_v2_binary = common rec {
version = "2.00.1";
- url = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz";
+ url = "https://releases.pagure.org/liberation-fonts/liberation-fonts-ttf-${version}.tar.gz";
sha256 = "010m4zfqan4w04b6bs9pm3gapn9hsb18bmwwgp2p6y6idj52g43q";
buildInputs = [ ];
+ outputHash = "19jky9li345zsig9pcb0rnlsjqqclh7r60vbi4pwh16f14850gpk";
};
}
diff --git a/pkgs/data/icons/paper-icon-theme/default.nix b/pkgs/data/icons/paper-icon-theme/default.nix
index e0ea56831b4..9e793caf9de 100644
--- a/pkgs/data/icons/paper-icon-theme/default.nix
+++ b/pkgs/data/icons/paper-icon-theme/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Modern icon theme designed around bold colours and simple geometric shapes";
- homepage = http://snwh.org/paper;
+ homepage = https://snwh.org/paper;
license = with licenses; [ cc-by-sa-40 lgpl3 ];
platforms = platforms.all;
maintainers = with maintainers; [ romildo ];
diff --git a/pkgs/data/misc/dns-root-data/default.nix b/pkgs/data/misc/dns-root-data/default.nix
index 1786d877dbc..3d3bca29d15 100644
--- a/pkgs/data/misc/dns-root-data/default.nix
+++ b/pkgs/data/misc/dns-root-data/default.nix
@@ -3,7 +3,7 @@
let
rootHints = fetchurl {
- url = "http://www.internic.net/domain/named.root";
+ url = "https://www.internic.net/domain/named.root";
sha256 = "0qsyxpj5b3i7n162qfyv76ljqbvnwjii7jk8mpfinklx0sk01473";
};
diff --git a/pkgs/data/misc/poppler-data/default.nix b/pkgs/data/misc/poppler-data/default.nix
index 59f4724e1be..f0f6505cb24 100644
--- a/pkgs/data/misc/poppler-data/default.nix
+++ b/pkgs/data/misc/poppler-data/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
installFlags = [ "prefix=$(out)" ];
meta = with stdenv.lib; {
- homepage = http://poppler.freedesktop.org/;
+ homepage = https://poppler.freedesktop.org/;
description = "Encoding files for Poppler, a PDF rendering library";
platforms = platforms.all;
license = licenses.free; # more free licenses combined
diff --git a/pkgs/desktops/enlightenment/default.nix b/pkgs/desktops/enlightenment/default.nix
index a8b5e08abd6..c132f565632 100644
--- a/pkgs/desktops/enlightenment/default.nix
+++ b/pkgs/desktops/enlightenment/default.nix
@@ -2,6 +2,7 @@
rec {
#### CORE EFL
efl = callPackage ./efl.nix { openjpeg = pkgs.openjpeg_1; };
+ efl_1_19 = callPackage ./efl.nix { eflVersion = "1.19.1"; openjpeg = pkgs.openjpeg_1; };
#### WINDOW MANAGER
enlightenment = callPackage ./enlightenment.nix { };
@@ -10,5 +11,5 @@ rec {
econnman = callPackage ./econnman.nix { };
terminology = callPackage ./terminology.nix { };
rage = callPackage ./rage.nix { };
- ephoto = callPackage ./ephoto.nix { };
+ ephoto = callPackage ./ephoto.nix { efl = efl_1_19; };
}
diff --git a/pkgs/desktops/enlightenment/efl.nix b/pkgs/desktops/enlightenment/efl.nix
index e9302fca674..00980d4a94d 100644
--- a/pkgs/desktops/enlightenment/efl.nix
+++ b/pkgs/desktops/enlightenment/efl.nix
@@ -4,15 +4,20 @@
, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg
, dbus_libs, alsaLib, poppler, ghostscript, libraw, libspectre, xineLib, libwebp
, curl, libinput, systemd, writeText
+# Support more than one version because for now ephoto does not work with efl-1.20.x
+, eflVersion ? "1.20.2"
}:
stdenv.mkDerivation rec {
name = "efl-${version}";
- version = "1.19.1";
+ version = eflVersion;
src = fetchurl {
url = "http://download.enlightenment.org/rel/libs/efl/${name}.tar.xz";
- sha256 = "0fndwraca9rg0bz3al4isdprvyw56szr88qiyvglb4j8ygsylscc";
+ sha256 = {
+ "1.19.1" = "0fndwraca9rg0bz3al4isdprvyw56szr88qiyvglb4j8ygsylscc";
+ "1.20.2" = "0zll6k4xbbdsxqg53g8jddgv889g5m1xh20i03iz5a52y2bcnh55";
+ }.${version};
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/desktops/enlightenment/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix
index 968cf8baf6a..7976176af1b 100644
--- a/pkgs/desktops/enlightenment/enlightenment.nix
+++ b/pkgs/desktops/enlightenment/enlightenment.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchurl, pkgconfig, efl, xcbutilkeysyms, libXrandr, libXdmcp,
libxcb, libffi, pam, alsaLib, luajit, bzip2, libpthreadstubs, gdbm, libcap,
-mesa_glu , xkeyboard_config }:
+mesa_glu, xkeyboard_config }:
stdenv.mkDerivation rec {
name = "enlightenment-${version}";
- version = "0.21.8";
+ version = "0.21.9";
src = fetchurl {
url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz";
- sha256 = "0cjjiip12hd8bfjl9ccl3vzl81pxh1wpymxk2yvrzf6ap5girhps";
+ sha256 = "0w5f3707hyfc20i6xqh4jlr5p2yhy1z794061mjsz2rp4w00qmpb";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/desktops/mate/caja-extensions/default.nix b/pkgs/desktops/mate/caja-extensions/default.nix
new file mode 100644
index 00000000000..ab2831159f9
--- /dev/null
+++ b/pkgs/desktops/mate/caja-extensions/default.nix
@@ -0,0 +1,43 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, dbus_glib, gupnp, mate, imagemagick }:
+
+stdenv.mkDerivation rec {
+ name = "caja-extensions-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "1";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "0hgala7zkfsa60jflq3s4n9yd11dhfdcla40l83cmgc3r1az7cmw";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ ];
+
+ buildInputs = [
+ gtk3
+ dbus_glib
+ gupnp
+ mate.caja
+ mate.mate-desktop
+ imagemagick
+ ];
+
+ postPatch = ''
+ for f in image-converter/caja-image-{resizer,rotator}.c; do
+ substituteInPlace $f --replace "/usr/bin/convert" "${imagemagick}/bin/convert"
+ done
+ '';
+
+ configureFlags = [ "--with-cajadir=$$out/lib/caja/extensions-2.0" ];
+
+ meta = with stdenv.lib; {
+ description = "Set of extensions for Caja file manager";
+ homepage = http://mate-desktop.org;
+ license = licenses.gpl2;
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/caja/caja-extension-dirs.patch b/pkgs/desktops/mate/caja/caja-extension-dirs.patch
new file mode 100644
index 00000000000..7490a368efd
--- /dev/null
+++ b/pkgs/desktops/mate/caja/caja-extension-dirs.patch
@@ -0,0 +1,30 @@
+diff --git a/libcaja-private/caja-module.c b/libcaja-private/caja-module.c
+index 023c22e..414913b 100644
+--- a/libcaja-private/caja-module.c
++++ b/libcaja-private/caja-module.c
+@@ -258,11 +258,25 @@ caja_module_setup (void)
+ {
+ static gboolean initialized = FALSE;
+ GList *res;
++ gchar *caja_extension_dirs;
++ gchar **dir_vector;
+
+ if (!initialized)
+ {
+ initialized = TRUE;
+
++ caja_extension_dirs = (gchar *) g_getenv ("CAJA_EXTENSION_DIRS");
++
++ if (caja_extension_dirs)
++ {
++ dir_vector = g_strsplit (caja_extension_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
++
++ for (gchar **dir = dir_vector; *dir != NULL; ++ dir)
++ load_module_dir (*dir);
++
++ g_strfreev(dir_vector);
++ }
++
+ load_module_dir (CAJA_EXTENSIONDIR);
+
+ eel_debug_call_at_shutdown (free_module_objects);
diff --git a/pkgs/desktops/mate/caja/cajaWithExtensions.nix b/pkgs/desktops/mate/caja/cajaWithExtensions.nix
new file mode 100644
index 00000000000..cb315d7f09a
--- /dev/null
+++ b/pkgs/desktops/mate/caja/cajaWithExtensions.nix
@@ -0,0 +1,11 @@
+{ buildEnv, makeWrapper, caja, extensions ? [] }:
+
+buildEnv {
+ name = "cajaWithExtensions-${caja.version}";
+ meta = caja.meta // { description = "File manager (including extensions) for the MATE desktop"; };
+ paths = [ caja ] ++ extensions;
+ buildInputs = [ makeWrapper ];
+ postBuild = ''
+ wrapProgram "$out/bin/caja" --set CAJA_EXTENSION_DIRS "$out/lib/caja/extensions-2.0"
+ '';
+}
diff --git a/pkgs/desktops/mate/caja/default.nix b/pkgs/desktops/mate/caja/default.nix
index 07c7d0662a9..8f38a5ef7e6 100644
--- a/pkgs/desktops/mate/caja/default.nix
+++ b/pkgs/desktops/mate/caja/default.nix
@@ -26,6 +26,10 @@ stdenv.mkDerivation rec {
mate.mate-desktop
];
+ patches = [
+ ./caja-extension-dirs.patch
+ ];
+
configureFlags = [ "--disable-update-mimedb" ];
meta = {
diff --git a/pkgs/desktops/mate/default.nix b/pkgs/desktops/mate/default.nix
index 81839930664..fd326b6bbbb 100644
--- a/pkgs/desktops/mate/default.nix
+++ b/pkgs/desktops/mate/default.nix
@@ -2,6 +2,11 @@
rec {
atril = callPackage ./atril { };
caja = callPackage ./caja { };
+ caja-extensions = callPackage ./caja-extensions { };
+ cajaWithExtensions = callPackage ./caja/cajaWithExtensions.nix {
+ extensions = [ caja-extensions ];
+ };
+ engrampa = callPackage ./engrampa { };
eom = callPackage ./eom { };
pluma = callPackage ./pluma { };
mate-common = callPackage ./mate-common { };
diff --git a/pkgs/desktops/mate/engrampa/default.nix b/pkgs/desktops/mate/engrampa/default.nix
new file mode 100644
index 00000000000..dea2bea5ee9
--- /dev/null
+++ b/pkgs/desktops/mate/engrampa/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gnome3, mate, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "engrampa-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "2";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "0d98zhqqc7qdnxcf0195kd04xmhijc0w2qrn6q61zd0daiswnv98";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ itstool
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ libxml2
+ gnome3.gtk
+ mate.caja
+ mate.mate-desktop
+ ];
+
+ configureFlags = [ "--with-cajadir=$$out/lib/caja/extensions-2.0" ];
+
+ meta = {
+ description = "Archive Manager for MATE";
+ homepage = http://mate-desktop.org;
+ license = stdenv.lib.licenses.gpl2;
+ platforms = stdenv.lib.platforms.unix;
+ maintainers = [ stdenv.lib.maintainers.romildo ];
+ };
+}
diff --git a/pkgs/development/beam-modules/hex-packages.nix b/pkgs/development/beam-modules/hex-packages.nix
index b77d5e6c589..d8d55c01120 100644
--- a/pkgs/development/beam-modules/hex-packages.nix
+++ b/pkgs/development/beam-modules/hex-packages.nix
@@ -1182,7 +1182,7 @@ let
systems to query, augment and transform data
according to Elixir matching rules. '';
license = stdenv.lib.licenses.mit;
- homepage = "http://github.com/awetzel/adap";
+ homepage = "https://github.com/awetzel/adap";
};
} // packageOverrides)
) {};
@@ -6660,7 +6660,7 @@ let
requests and responds to preflight requests
(OPTIONS)'';
license = stdenv.lib.licenses.asl20;
- homepage = "http://github.com/mschae/cors_plug";
+ homepage = "https://github.com/mschae/cors_plug";
};
} // packageOverrides)
) {};
@@ -9498,7 +9498,7 @@ let
H-metric are abstracted away - you provide them
as functions.'';
license = stdenv.lib.licenses.bsd3;
- homepage = "http://github.com/herenowcoder/eastar";
+ homepage = "https://github.com/herenowcoder/eastar";
};
} // packageOverrides)
) {};
@@ -12266,7 +12266,7 @@ let
response. This project is a rewrite for Elixir
and Plug of basho webmachine.'';
license = stdenv.lib.licenses.mit;
- homepage = "http://github.com/awetzel/ewebmachine";
+ homepage = "https://github.com/awetzel/ewebmachine";
};
} // packageOverrides)
) {};
@@ -22613,7 +22613,7 @@ let
meta = {
description = ''JWT decoding library for Elixir'';
license = stdenv.lib.licenses.mit;
- homepage = "http://github.com/mschae/jwtex";
+ homepage = "https://github.com/mschae/jwtex";
};
} // packageOverrides)
) {};
@@ -30269,7 +30269,7 @@ let
according to rfc7239 and fill `conn.remote_ip`
with the root client ip.'';
license = stdenv.lib.licenses.mit;
- homepage = "http://github.com/awetzel/plug_forwarded_peer";
+ homepage = "https://github.com/awetzel/plug_forwarded_peer";
};
} // packageOverrides)
) {};
@@ -30472,7 +30472,7 @@ let
meta = {
description = ''An elixir plug that serves HTTP range requests'';
license = stdenv.lib.licenses.mit;
- homepage = "http://github.com/TheSquad/plug_range";
+ homepage = "https://github.com/TheSquad/plug_range";
};
} // packageOverrides)
) {};
@@ -36106,7 +36106,7 @@ let
use a rails-like trailing format:
http://api.dev/resources.format'';
license = stdenv.lib.licenses.asl20;
- homepage = "http://github.com/mschae/trailing_format_plug";
+ homepage = "https://github.com/mschae/trailing_format_plug";
};
} // packageOverrides)
) {};
@@ -38938,7 +38938,7 @@ let
meta = {
description = ''stream zip archives while building them'';
license = stdenv.lib.licenses.bsd3;
- homepage = "http://github.com/dgvncsz0f/zipflow";
+ homepage = "https://github.com/dgvncsz0f/zipflow";
};
} // packageOverrides)
) {};
diff --git a/pkgs/development/compilers/adobe-flex-sdk/default.nix b/pkgs/development/compilers/adobe-flex-sdk/default.nix
index 03cfee61ce4..ccb366ffe1c 100644
--- a/pkgs/development/compilers/adobe-flex-sdk/default.nix
+++ b/pkgs/development/compilers/adobe-flex-sdk/default.nix
@@ -32,9 +32,9 @@ stdenv.mkDerivation rec {
done
'';
- meta = {
+ meta = {
description = "Flex SDK for Adobe Flash / ActionScript";
- homepage = "http://www.adobe.com/support/documentation/en/flex/3/releasenotes_flex3_sdk.html#installation";
+ homepage = "http://www.adobe.com/products/flex.html";
license = stdenv.lib.licenses.mpl11;
platforms = stdenv.lib.platforms.unix;
};
diff --git a/pkgs/development/compilers/dmd/2.067.1.nix b/pkgs/development/compilers/dmd/2.067.1.nix
index 4dbe922ce81..3cf530e9e5e 100644
--- a/pkgs/development/compilers/dmd/2.067.1.nix
+++ b/pkgs/development/compilers/dmd/2.067.1.nix
@@ -1,47 +1,122 @@
-{ stdenv, fetchurl, unzip, makeWrapper }:
+{ stdenv, fetchFromGitHub
+, makeWrapper, unzip, which
+, curl, tzdata
+}:
-stdenv.mkDerivation {
- name = "dmd-2.067.1";
+stdenv.mkDerivation rec {
+ name = "dmd-${version}";
+ # This is the last version of dmd which is buildable without a D compiler.
+ # So we use this as a bootstrap version.
+ # The DMD frontend has been ported to D in 2.069.0 but idgen was already
+ # ported in 2.068.0.
+ version = "2.067.1";
- src = fetchurl {
- url = http://downloads.dlang.org/releases/2015/dmd.2.067.1.zip;
- sha256 = "0ny99vfllvvgcl79pwisxcdnb3732i827k9zg8c0j4s0n79k5z94";
- };
+ srcs = [
+ (fetchFromGitHub {
+ owner = "dlang";
+ repo = "dmd";
+ rev = "v${version}";
+ sha256 = "0fm29lg8axfmzdaj0y6vg70lhwb5d9rv4aavnvdd15xjschinlcz";
+ })
+ (fetchFromGitHub {
+ owner = "dlang";
+ repo = "druntime";
+ rev = "v${version}";
+ sha256 = "1n2qfw9kmnql0fk2nxikispqs7vh85nhvyyr00fk227n9lgnqf02";
+ })
+ (fetchFromGitHub {
+ owner = "dlang";
+ repo = "phobos";
+ rev = "v${version}";
+ sha256 = "0fywgds9xvjcgnqxmpwr67p3wi2m535619pvj159cgwv5y0nr3p1";
+ })
+ ];
- nativeBuildInputs = [ unzip makeWrapper ];
+ sourceRoot = ".";
- postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
- # Allow to use "clang++", commented in Makefile
- substituteInPlace src/dmd/posix.mak \
- --replace g++ clang++ \
- --replace MACOSX_DEPLOYMENT_TARGET MACOSX_DEPLOYMENT_TARGET_
+ postUnpack = ''
+ mv dmd-v${version}-src dmd
+ mv druntime-v${version}-src druntime
+ mv phobos-v${version}-src phobos
+ '';
- # Was not able to compile on darwin due to "__inline_isnanl"
- # being undefined.
- substituteInPlace src/dmd/root/port.c --replace __inline_isnanl __inline_isnan
+ # Compile with PIC to prevent colliding modules with binutils 2.28.
+ # https://issues.dlang.org/show_bug.cgi?id=17375
+ usePIC = "-fPIC";
+
+ postPatch = ''
+ # Ugly hack so the dlopen call has a chance to succeed.
+ # https://issues.dlang.org/show_bug.cgi?id=15391
+ substituteInPlace phobos/std/net/curl.d \
+ --replace libcurl.so ${curl.out}/lib/libcurl.so
+
+ # Ugly hack to fix the hardcoded path to zoneinfo in the source file.
+ # https://issues.dlang.org/show_bug.cgi?id=15391
+ substituteInPlace phobos/std/datetime.d \
+ --replace /usr/share/zoneinfo/ ${tzdata}/share/zoneinfo/
+
+ substituteInPlace druntime/test/shared/Makefile \
+ --replace "DFLAGS:=" "DFLAGS:=${usePIC} "
+
+ # phobos uses curl, so we need to patch the path to the lib.
+ substituteInPlace phobos/posix.mak \
+ --replace "-soname=libcurl.so.4" "-soname=${curl.out}/lib/libcurl.so.4"
+
+ # Use proper C++ compiler
+ substituteInPlace dmd/src/posix.mak \
+ --replace g++ $CXX
''
- + stdenv.lib.optionalString stdenv.isLinux ''
- substituteInPlace src/dmd/root/port.c \
+
+ + stdenv.lib.optionalString stdenv.hostPlatform.isLinux ''
+ substituteInPlace dmd/src/root/port.c \
--replace "#include " "#include "
- '';
+ ''
+
+ + stdenv.lib.optionalString stdenv.hostPlatform.isDarwin ''
+ substituteInPlace dmd/src/posix.mak \
+ --replace MACOSX_DEPLOYMENT_TARGET MACOSX_DEPLOYMENT_TARGET_
+
+ # Was not able to compile on darwin due to "__inline_isnanl"
+ # being undefined.
+ substituteInPlace dmd/src/root/port.c --replace __inline_isnanl __inline_isnan
+ '';
+
+ nativeBuildInputs = [ makeWrapper unzip which ];
+ buildInputs = [ curl tzdata ];
# Buid and install are based on http://wiki.dlang.org/Building_DMD
buildPhase = ''
- cd src/dmd
+ cd dmd
make -f posix.mak INSTALL_DIR=$out
- export DMD=$PWD/dmd
+ export DMD=$PWD/src/dmd
cd ../druntime
- make -f posix.mak INSTALL_DIR=$out DMD=$DMD
+ make -f posix.mak PIC=${usePIC} INSTALL_DIR=$out DMD=$DMD
cd ../phobos
- make -f posix.mak INSTALL_DIR=$out DMD=$DMD
- cd ../..
+ make -f posix.mak PIC=${usePIC} INSTALL_DIR=$out DMD=$DMD
+ cd ..
+ '';
+
+ doCheck = true;
+
+ checkPhase = ''
+ cd dmd
+ export DMD=$PWD/src/dmd
+ cd ../druntime
+ make -f posix.mak unittest PIC=${usePIC} DMD=$DMD BUILD=release
+ cd ../phobos
+ make -f posix.mak unittest PIC=${usePIC} DMD=$DMD BUILD=release
+ cd ..
'';
installPhase = ''
- cd src/dmd
+ cd dmd
mkdir $out
mkdir $out/bin
- cp dmd $out/bin
+ cp $PWD/src/dmd $out/bin
+ mkdir -p $out/share/man/man1
+ mkdir -p $out/share/man/man5
+ cp -r docs/man/man1/* $out/share/man/man1/
+ cp -r docs/man/man5/* $out/share/man/man5/
cd ../druntime
mkdir $out/include
@@ -50,9 +125,11 @@ stdenv.mkDerivation {
cd ../phobos
mkdir $out/lib
- ${let bits = if stdenv.is64bit then "64" else "32";
- osname = if stdenv.isDarwin then "osx" else "linux"; in
- "cp generated/${osname}/release/${bits}/libphobos2.a $out/lib"
+ ${
+ let bits = builtins.toString stdenv.hostPlatform.parsed.cpu.bits;
+ osname = if stdenv.hostPlatform.isDarwin then "osx" else stdenv.hostPlatform.parsed.kernel.name;
+ extension = if stdenv.hostPlatform.isDarwin then "a" else "{a,so}"; in
+ "cp generated/${osname}/release/${bits}/libphobos2.${extension} $out/lib"
}
cp -r std $out/include/d2
@@ -65,14 +142,17 @@ stdenv.mkDerivation {
cd $out/bin
tee dmd.conf << EOF
[Environment]
- DFLAGS=-I$out/include/d2 -L-L$out/lib ${stdenv.lib.optionalString (!stdenv.cc.isClang) "-L--no-warn-search-mismatch -L--export-dynamic"}
+ DFLAGS=-I$out/include/d2 -L-L$out/lib ${stdenv.lib.optionalString (!stdenv.cc.isClang) "-L--export-dynamic"} -fPIC
EOF
'';
meta = with stdenv.lib; {
- description = "D language compiler";
+ description = "Official reference compiler for the D language";
homepage = http://dlang.org/;
- license = licenses.free; # parts under different licenses
+ # Everything is now Boost licensed, even the backend.
+ # https://github.com/dlang/dmd/pull/6680
+ license = licenses.boost;
platforms = platforms.unix;
};
}
+
diff --git a/pkgs/development/compilers/dmd/default.nix b/pkgs/development/compilers/dmd/default.nix
index 41162c4e50e..278a77f6290 100644
--- a/pkgs/development/compilers/dmd/default.nix
+++ b/pkgs/development/compilers/dmd/default.nix
@@ -1,44 +1,123 @@
-{ stdenv, fetchurl
+{ stdenv, fetchFromGitHub
, makeWrapper, unzip, which
-
+, curl, tzdata
# Versions 2.070.2 and up require a working dmd compiler to build:
, bootstrapDmd }:
stdenv.mkDerivation rec {
name = "dmd-${version}";
- version = "2.070.2";
+ version = "2.075.1";
- src = fetchurl {
- url = "http://downloads.dlang.org/releases/2.x/${version}/dmd.${version}.zip";
- sha256 = "1pbhxxf41v816j0aky3q2pcd8a6phy3363l7vr5r5pg8ps3gl701";
- };
+ srcs = [
+ (fetchFromGitHub {
+ owner = "dlang";
+ repo = "dmd";
+ rev = "v${version}";
+ sha256 = "0kq6r8rcghvzk5jcphg89l85rg734s29bssd2rcw3fygx0k9a9k5";
+ })
+ (fetchFromGitHub {
+ owner = "dlang";
+ repo = "druntime";
+ rev = "v${version}";
+ sha256 = "0idn2v1lmp7hl637g3i7pdfj9mjk4sclkz4cm77nl8873k2fhk8j";
+ })
+ (fetchFromGitHub {
+ owner = "dlang";
+ repo = "phobos";
+ rev = "v${version}";
+ sha256 = "1a7q5fd15yspgs5plxgx54jyrcwgzlyw3rahmz04jd2s5h56dj04";
+ })
+ ];
+
+ sourceRoot = ".";
+
+ postUnpack = ''
+ mv dmd-v${version}-src dmd
+ mv druntime-v${version}-src druntime
+ mv phobos-v${version}-src phobos
+ '';
+
+ # Compile with PIC to prevent colliding modules with binutils 2.28.
+ # https://issues.dlang.org/show_bug.cgi?id=17375
+ usePIC = "-fPIC";
+
+ postPatch = ''
+ # Ugly hack so the dlopen call has a chance to succeed.
+ # https://issues.dlang.org/show_bug.cgi?id=15391
+ substituteInPlace phobos/std/net/curl.d \
+ --replace libcurl.so ${curl.out}/lib/libcurl.so
+
+ # Ugly hack to fix the hardcoded path to zoneinfo in the source file.
+ # https://issues.dlang.org/show_bug.cgi?id=15391
+ substituteInPlace phobos/std/datetime/timezone.d \
+ --replace /usr/share/zoneinfo/ ${tzdata}/share/zoneinfo/
+
+ substituteInPlace druntime/test/common.mak \
+ --replace "DFLAGS:=" "DFLAGS:=${usePIC} "
+
+ # phobos uses curl, so we need to patch the path to the lib.
+ substituteInPlace phobos/posix.mak \
+ --replace "-soname=libcurl.so.4" "-soname=${curl.out}/lib/libcurl.so.4"
+
+ # Use proper C++ compiler
+ substituteInPlace dmd/posix.mak \
+ --replace g++ $CXX
+ ''
+
+ + stdenv.lib.optionalString stdenv.hostPlatform.isDarwin ''
+ substituteInPlace dmd/posix.mak \
+ --replace MACOSX_DEPLOYMENT_TARGET MACOSX_DEPLOYMENT_TARGET_
+ '';
nativeBuildInputs = [ bootstrapDmd makeWrapper unzip which ];
-
- postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
- # Allow to use "clang++", commented in Makefile
- substituteInPlace src/dmd/posix.mak \
- --replace g++ clang++ \
- --replace MACOSX_DEPLOYMENT_TARGET MACOSX_DEPLOYMENT_TARGET_
- '';
+ buildInputs = [ curl tzdata ];
# Buid and install are based on http://wiki.dlang.org/Building_DMD
buildPhase = ''
- cd src/dmd
+ cd dmd
make -f posix.mak INSTALL_DIR=$out
- export DMD=$PWD/dmd
+ ${
+ let bits = builtins.toString stdenv.hostPlatform.parsed.cpu.bits;
+ osname = if stdenv.hostPlatform.isDarwin then "osx" else stdenv.hostPlatform.parsed.kernel.name; in
+ "export DMD=$PWD/generated/${osname}/release/${bits}/dmd"
+ }
cd ../druntime
- make -f posix.mak INSTALL_DIR=$out DMD=$DMD
+ make -f posix.mak PIC=${usePIC} INSTALL_DIR=$out DMD=$DMD
cd ../phobos
- make -f posix.mak INSTALL_DIR=$out DMD=$DMD
- cd ../..
+ make -f posix.mak PIC=${usePIC} INSTALL_DIR=$out DMD=$DMD
+ cd ..
+ '';
+
+ doCheck = true;
+
+ checkPhase = ''
+ cd dmd
+ ${
+ let bits = builtins.toString stdenv.hostPlatform.parsed.cpu.bits;
+ osname = if stdenv.hostPlatform.isDarwin then "osx" else stdenv.hostPlatform.parsed.kernel.name; in
+ "export DMD=$PWD/generated/${osname}/release/${bits}/dmd"
+ }
+ cd ../druntime
+ make -f posix.mak unittest PIC=${usePIC} DMD=$DMD BUILD=release
+ cd ../phobos
+ make -f posix.mak unittest PIC=${usePIC} DMD=$DMD BUILD=release
+ cd ..
'';
installPhase = ''
- cd src/dmd
+ cd dmd
mkdir $out
mkdir $out/bin
- cp dmd $out/bin
+ ${
+ let bits = builtins.toString stdenv.hostPlatform.parsed.cpu.bits;
+ osname = if stdenv.hostPlatform.isDarwin then "osx" else stdenv.hostPlatform.parsed.kernel.name; in
+ "cp $PWD/generated/${osname}/release/${bits}/dmd $out/bin"
+ }
+
+ mkdir -p $out/share/man/man1
+ mkdir -p $out/share/man/man5
+ cp -r docs/man/man1/* $out/share/man/man1/
+ cp -r docs/man/man5/* $out/share/man/man5/
cd ../druntime
mkdir $out/include
@@ -47,9 +126,11 @@ stdenv.mkDerivation rec {
cd ../phobos
mkdir $out/lib
- ${let bits = if stdenv.is64bit then "64" else "32";
- osname = if stdenv.isDarwin then "osx" else "linux"; in
- "cp generated/${osname}/release/${bits}/libphobos2.a $out/lib"
+ ${
+ let bits = builtins.toString stdenv.hostPlatform.parsed.cpu.bits;
+ osname = if stdenv.hostPlatform.isDarwin then "osx" else stdenv.hostPlatform.parsed.kernel.name;
+ extension = if stdenv.hostPlatform.isDarwin then "a" else "{a,so}"; in
+ "cp generated/${osname}/release/${bits}/libphobos2.${extension} $out/lib"
}
cp -r std $out/include/d2
@@ -62,14 +143,17 @@ stdenv.mkDerivation rec {
cd $out/bin
tee dmd.conf << EOF
[Environment]
- DFLAGS=-I$out/include/d2 -L-L$out/lib ${stdenv.lib.optionalString (!stdenv.cc.isClang) "-L--no-warn-search-mismatch -L--export-dynamic"}
+ DFLAGS=-I$out/include/d2 -L-L$out/lib ${stdenv.lib.optionalString (!stdenv.cc.isClang) "-L--export-dynamic"} -fPIC
EOF
'';
meta = with stdenv.lib; {
- description = "D language compiler";
+ description = "Official reference compiler for the D language";
homepage = http://dlang.org/;
- license = licenses.free; # parts under different licenses
+ # Everything is now Boost licensed, even the backend.
+ # https://github.com/dlang/dmd/pull/6680
+ license = licenses.boost;
platforms = platforms.unix;
};
}
+
diff --git a/pkgs/development/compilers/ghcjs/ghcjs.patch b/pkgs/development/compilers/ghcjs/ghcjs.patch
index 61bbb95b0a5..9f4fa3a8b7a 100644
--- a/pkgs/development/compilers/ghcjs/ghcjs.patch
+++ b/pkgs/development/compilers/ghcjs/ghcjs.patch
@@ -2,7 +2,7 @@ diff --git a/src-bin/Boot.hs b/src-bin/Boot.hs
index db8b12e..7b815c5 100644
--- a/src-bin/Boot.hs
+++ b/src-bin/Boot.hs
-@@ -526,9 +526,7 @@ initPackageDB :: B ()
+@@ -540,9 +540,7 @@ initPackageDB :: B ()
initPackageDB = do
msg info "creating package databases"
initDB "--global" <^> beLocations . blGlobalDB
@@ -12,7 +12,7 @@ index db8b12e..7b815c5 100644
initDB dbName db = do
rm_rf db >> mkdir_p db
ghcjs_pkg_ ["init", toTextI db] `catchAny_` return ()
-@@ -552,29 +550,22 @@ installDevelopmentTree = subTop $ do
+@@ -566,29 +564,22 @@ installDevelopmentTree = subTop $ do
msgD info $ "preparing development boot tree"
checkpoint' "ghcjs-boot-git" "ghcjs-boot repository already cloned and prepared" $ do
testGit "ghcjs-boot" >>= \case
@@ -46,7 +46,25 @@ index db8b12e..7b815c5 100644
mapM_ patchPackage =<< allPackages
preparePrimops
buildGenPrim
-@@ -1110,14 +1101,14 @@ cabalInstallFlags parmakeGhcjs = do
+@@ -1141,7 +1132,7 @@ cabalStage1 pkgs = sub $ do
+ globalFlags <- cabalGlobalFlags
+ flags <- cabalInstallFlags (length pkgs == 1)
+ let args = globalFlags ++ ("install" : pkgs) ++
+- [ "--solver=topdown" -- the modular solver refuses to install stage1 packages
++ [ "--allow-boot-library-installs"
+ ] ++ map ("--configure-option="<>) configureOpts ++ flags
+ checkInstallPlan pkgs args
+ cabal_ args
+@@ -1162,7 +1153,7 @@ cabalInstall pkgs = do
+ -- uses somewhat fragile parsing of --dry-run output, find a better way
+ checkInstallPlan :: [Package] -> [Text] -> B ()
+ checkInstallPlan pkgs opts = do
+- plan <- cabal (opts ++ ["-v2", "--dry-run"])
++ plan <- cabal (opts ++ ["-vverbose+nowrap", "--dry-run"])
+ when (hasReinstalls plan || hasUnexpectedInstalls plan || hasNewVersion plan) (err plan)
+ where
+ hasReinstalls = T.isInfixOf "(reinstall)" -- reject reinstalls
+@@ -1201,14 +1192,14 @@ cabalInstallFlags parmakeGhcjs = do
, "--avoid-reinstalls"
, "--builddir", "dist"
, "--with-compiler", ghcjs ^. pgmLocText
diff --git a/pkgs/development/compilers/halvm/2.4.0.nix b/pkgs/development/compilers/halvm/2.4.0.nix
index dd81d780838..b88ac73c7e4 100644
--- a/pkgs/development/compilers/halvm/2.4.0.nix
+++ b/pkgs/development/compilers/halvm/2.4.0.nix
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
};
meta = {
- homepage = http://github.com/GaloisInc/HaLVM;
+ homepage = https://github.com/GaloisInc/HaLVM;
description = "The Haskell Lightweight Virtual Machine (HaLVM): GHC running on Xen";
platforms = ["x86_64-linux"]; # other platforms don't have Xen
maintainers = with stdenv.lib.maintainers; [ dmjio ];
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index e23bee15e1b..65c2125dfbc 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
stdenv.mkDerivation rec {
- version = "1.1.2-5";
+ version = "1.1.4-2";
name = "kotlin-${version}";
src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
- sha256 = "0whfnn7wf8nil9lb8hl9bccjrzwf9zpbf8pz607zg9x3q8g01p9d";
+ sha256 = "09sikwk5xxn4b30icbq28mjs4lm9xbj0bv5yjx75r165iz65g2cv";
};
propagatedBuildInputs = [ jre ] ;
diff --git a/pkgs/development/compilers/ponyc/default.nix b/pkgs/development/compilers/ponyc/default.nix
index ab7881a2151..f605f31c06d 100644
--- a/pkgs/development/compilers/ponyc/default.nix
+++ b/pkgs/development/compilers/ponyc/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation ( rec {
name = "ponyc-${version}";
- version = "0.17.0";
+ version = "0.18.0";
src = fetchFromGitHub {
owner = "ponylang";
repo = "ponyc";
rev = version;
- sha256 = "06g811x7vc275ypn3laqcsq7lmp2w8al6ipkpknhpq9c6lf7dvcp";
+ sha256 = "0favj1895fp5j5i23cmjn9wvrrlchr2dmc18grlvbjr2cg2c76mg";
};
buildInputs = [ llvm makeWrapper which ];
diff --git a/pkgs/development/compilers/rust/cargo.nix b/pkgs/development/compilers/rust/cargo.nix
index 2d4d6ad4db1..ac4102c9a63 100644
--- a/pkgs/development/compilers/rust/cargo.nix
+++ b/pkgs/development/compilers/rust/cargo.nix
@@ -47,7 +47,7 @@ rustPlatform.buildRustPackage rec {
doCheck = false;
meta = with stdenv.lib; {
- homepage = http://crates.io;
+ homepage = https://crates.io;
description = "Downloads your Rust project's dependencies and builds your project";
maintainers = with maintainers; [ wizeman retrry ];
license = [ licenses.mit licenses.asl20 ];
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index fc39b62402a..8ab751166c5 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -36,7 +36,7 @@ self: super: {
jailbreak-cabal = (disableSharedExecutables super.jailbreak-cabal).override { Cabal = self.Cabal_1_20_0_4; };
# enable using a local hoogle with extra packagages in the database
- # nix-shell -p "haskellPackages.hoogleLocal (with haskellPackages; [ mtl lens ])"
+ # nix-shell -p "haskellPackages.hoogleLocal { packages = with haskellPackages; [ mtl lens ]; }"
# $ hoogle server
hoogleLocal = { packages ? [] }: self.callPackage ./hoogle.nix { inherit packages; };
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
index 30ff85aed82..fc46f4a50a4 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
@@ -37,7 +37,7 @@ core-packages:
- ghcjs-base-0
default-package-overrides:
- # LTS Haskell 9.0
+ # LTS Haskell 9.1
- abstract-deque ==0.3
- abstract-deque-tests ==0.3
- abstract-par ==0.3.3
@@ -47,14 +47,14 @@ default-package-overrides:
- ace ==0.6
- action-permutations ==0.0.0.1
- active ==0.2.0.13
- - ad ==4.3.3
+ - ad ==4.3.4
- adjunctions ==4.3
- adler32 ==0.1.1.0
- aeson ==1.1.2.0
- aeson-better-errors ==0.9.1.0
- aeson-casing ==0.1.0.5
- aeson-compat ==0.3.6
- - aeson-diff ==1.1.0.2
+ - aeson-diff ==1.1.0.3
- aeson-extra ==0.4.0.0
- aeson-generic-compat ==0.0.1.0
- aeson-injector ==1.0.8.0
@@ -64,10 +64,10 @@ default-package-overrides:
- aeson-utils ==0.3.0.2
- Agda ==2.5.2
- airship ==0.6.0
- - alarmclock ==0.4.0.2
+ - alarmclock ==0.4.0.3
- alerta ==0.1.0.4
- alex ==3.2.1
- - algebraic-graphs ==0.0.4
+ - algebraic-graphs ==0.0.5
- alsa-core ==0.5.0.1
- alsa-mixer ==0.2.0.3
- alsa-pcm ==0.6.0.4
@@ -169,18 +169,18 @@ default-package-overrides:
- anonymous-sums ==0.6.0.0
- ansi-terminal ==0.6.3.1
- ansi-wl-pprint ==0.6.7.3
- - ansigraph ==0.3.0.2
+ - ansigraph ==0.3.0.3
- api-field-json-th ==0.1.0.2
- app-settings ==0.2.0.11
- appar ==0.1.4
- apportionment ==0.0.0.2
- - approximate ==0.3
+ - approximate ==0.3.1
- arbtt ==0.9.0.13
- arithmoi ==0.5.0.0
- array-memoize ==0.6.0
- arrow-extras ==0.1.0.1
- arrow-list ==0.7
- - arrowp-qq ==0.1
+ - arrowp-qq ==0.1.1
- ascii-progress ==0.3.3.0
- asciidiagram ==1.3.3
- asn1-encoding ==0.9.5
@@ -195,7 +195,7 @@ default-package-overrides:
- async-timer ==0.1.4.0
- atom-basic ==0.2.5
- atom-conduit ==0.4.0.3
- - atomic-primops ==0.8.0.4
+ - atomic-primops ==0.8.1
- atomic-write ==0.2.0.5
- attoparsec ==0.13.1.0
- attoparsec-binary ==0.2
@@ -207,18 +207,18 @@ default-package-overrides:
- authenticate-oauth ==1.6
- auto ==0.4.3.1
- auto-update ==0.1.4
- - autoexporter ==1.1.1
+ - autoexporter ==1.1.2
- avers ==0.0.17.1
- avers-api ==0.0.18.0
- avers-api-docs ==0.0.18.0
- avers-server ==0.0.19.0
- avwx ==0.3.0.2
- aws ==0.16
- - axiom ==0.4.5
+ - axiom ==0.4.6
- b9 ==0.5.32
- backprop ==0.0.3.0
- bake ==0.5
- - bank-holidays-england ==0.1.0.5
+ - bank-holidays-england ==0.1.0.6
- base-compat ==0.9.3
- base-noprelude ==4.9.1.0
- base-orphans ==0.6
@@ -231,8 +231,8 @@ default-package-overrides:
- base64-string ==0.2
- basic-prelude ==0.6.1.1
- bcrypt ==0.0.10
- - bench ==1.0.5
- - benchpress ==0.2.2.9
+ - bench ==1.0.6
+ - benchpress ==0.2.2.10
- bencode ==0.6.0.0
- bento ==0.1.0
- between ==0.11.0.0
@@ -241,7 +241,7 @@ default-package-overrides:
- bimap ==0.3.3
- bimap-server ==0.1.0.1
- binary-bits ==0.5
- - binary-conduit ==1.2.4.1
+ - binary-conduit ==1.2.5
- binary-ieee754 ==0.1.0.0
- binary-list ==1.1.1.2
- binary-orphans ==0.1.6.0
@@ -288,14 +288,14 @@ default-package-overrides:
- bno055-haskell ==0.1.0
- board-games ==0.1.0.6
- boltzmann-samplers ==0.1.0.0
- - bookkeeping ==0.2.1.1
+ - bookkeeping ==0.2.1.4
- bool-extras ==0.4.0
- Boolean ==0.2.4
- boolean-like ==0.1.1.0
- boolsimplifier ==0.1.8
- - boomerang ==1.4.5.2
+ - boomerang ==1.4.5.3
- both ==0.1.1.0
- - bound ==2
+ - bound ==2.0.1
- BoundedChan ==1.0.3.0
- boundingboxes ==0.2.3
- bower-json ==1.0.0.1
@@ -329,7 +329,7 @@ default-package-overrides:
- cabal-doctest ==1.0.2
- cabal-file-th ==0.2.4
- cabal-helper ==0.7.3.0
- - cabal-rpm ==0.11.1
+ - cabal-rpm ==0.11.2
- cache ==0.1.0.0
- cacophony ==0.10.0
- cairo ==0.13.3.1
@@ -395,7 +395,7 @@ default-package-overrides:
- clumpiness ==0.17.0.0
- ClustalParser ==1.2.1
- clustering ==0.3.1
- - cmark ==0.5.5.1
+ - cmark ==0.5.6
- cmark-highlight ==0.2.0.0
- cmark-lucid ==0.1.0.0
- cmdargs ==0.10.17
@@ -406,11 +406,11 @@ default-package-overrides:
- colour ==2.3.3
- comfort-graph ==0.0.2
- commutative ==0.0.1.4
- - comonad ==5.0.1
+ - comonad ==5.0.2
- comonad-transformers ==4.0
- comonads-fd ==4.0
- - compactmap ==0.1.4.2
- - compensated ==0.7.1
+ - compactmap ==0.1.4.2.1
+ - compensated ==0.7.2
- composition ==1.0.2.1
- composition-extra ==2.0.0
- concise ==0.1.0.0
@@ -422,7 +422,7 @@ default-package-overrides:
- conduit-combinators ==1.1.1
- conduit-connection ==0.1.0.3
- conduit-extra ==1.1.16
- - conduit-iconv ==0.1.1.1
+ - conduit-iconv ==0.1.1.2
- conduit-parse ==0.1.2.1
- ConfigFile ==1.1.4
- configuration-tools ==0.2.15
@@ -478,7 +478,7 @@ default-package-overrides:
- csv ==0.1.2
- csv-conduit ==0.6.7
- ctrie ==0.1.1.0
- - cubicbezier ==0.6.0.3
+ - cubicbezier ==0.6.0.4
- cubicspline ==0.1.2
- cue-sheet ==0.1.1
- curl ==1.3.8
@@ -486,7 +486,7 @@ default-package-overrides:
- darcs ==2.12.5
- data-accessor ==0.2.2.7
- data-accessor-mtl ==0.2.0.4
- - data-accessor-template ==0.2.1.13
+ - data-accessor-template ==0.2.1.14
- data-accessor-transformers ==0.2.1.7
- data-binary-ieee754 ==0.4.4
- data-bword ==0.1.0.1
@@ -523,10 +523,10 @@ default-package-overrides:
- Decimal ==0.4.2
- declarative ==0.5.1
- deepseq-generics ==0.2.0.0
- - dejafu ==0.7.0.2
+ - dejafu ==0.7.1.1
- dependent-map ==0.2.4.0
- dependent-sum ==0.4
- - derive ==2.6.2
+ - derive ==2.6.3
- deriving-compat ==0.3.6
- descriptive ==0.9.4
- diagrams ==1.4
@@ -542,7 +542,7 @@ default-package-overrides:
- diagrams-rasterific ==1.4
- diagrams-solve ==0.1.1
- diagrams-svg ==1.4.1
- - dictionaries ==0.2.0.2
+ - dictionaries ==0.2.0.3
- Diff ==0.3.4
- diff3 ==0.3.0
- digest ==0.0.1.2
@@ -561,18 +561,18 @@ default-package-overrides:
- distributed-closure ==0.3.4.0
- distributed-static ==0.3.5.0
- distribution ==1.1.1.0
- - distributive ==0.5.2
+ - distributive ==0.5.3
- diversity ==0.8.0.2
- djinn-ghc ==0.0.2.3
- djinn-lib ==0.0.1.2
- dlist ==0.8.0.3
- dlist-instances ==0.1.1.1
- - dlist-nonempty ==0.1
+ - dlist-nonempty ==0.1.1
- dmenu ==0.3.1.1
- dmenu-pkill ==0.1.0.1
- dmenu-pmount ==0.1.0.1
- dmenu-search ==0.1.0.1
- - dns ==2.0.10
+ - dns ==2.0.12
- do-list ==1.0.1
- dockerfile ==0.1.0.1
- docopt ==0.7.0.5
@@ -586,14 +586,14 @@ default-package-overrides:
- dpor ==0.2.0.0
- drawille ==0.1.2.0
- DRBG ==0.5.5
- - drifter ==0.2.2
+ - drifter ==0.2.3
- drifter-postgresql ==0.1.0
- dsp ==0.2.3.1
- dual-tree ==0.2.1
- dvorak ==0.1.0.0
- dynamic-state ==0.2.2.0
- dyre ==0.8.12
- - Earley ==0.12.0.0
+ - Earley ==0.12.0.1
- easy-file ==0.2.1
- Ebnf2ps ==1.0.15
- echo ==0.1.3
@@ -605,26 +605,26 @@ default-package-overrides:
- edit-distance-vector ==1.0.0.4
- editor-open ==0.6.0.0
- effect-handlers ==0.1.0.8
- - effin ==0.3.0.2
+ - effin ==0.3.0.3
- either ==4.4.1.1
- either-unwrap ==1.1
- - ekg ==0.4.0.13
- - ekg-core ==0.1.1.1
- - ekg-json ==0.1.0.5
- - ekg-statsd ==0.2.1.0
- - ekg-wai ==0.1.0.1
+ - ekg ==0.4.0.14
+ - ekg-core ==0.1.1.2
+ - ekg-json ==0.1.0.6
+ - ekg-statsd ==0.2.1.1
+ - ekg-wai ==0.1.0.2
- elerea ==2.9.0
- elm-bridge ==0.4.1
- elm-core-sources ==1.0.0
- elm-export ==0.6.0.1
- elm-export-persistent ==0.1.2
- - email-validate ==2.3
+ - email-validate ==2.3.1
- emailaddress ==0.2.0.0
- enclosed-exceptions ==1.0.2
- encoding-io ==0.0.1
- engine-io ==1.2.17
- engine-io-wai ==1.0.6
- - EntrezHTTP ==1.0.3
+ - EntrezHTTP ==1.0.4
- entropy ==0.3.8
- enummapset ==0.5.2.1
- enummapset-th ==0.6.1.1
@@ -638,7 +638,7 @@ default-package-overrides:
- equivalence ==0.3.2
- erf ==2.0.0.0
- errors ==2.2.1
- - ersatz ==0.4
+ - ersatz ==0.4.1
- esqueleto ==2.5.3
- etc ==0.2.0.0
- etcd ==1.0.5
@@ -653,7 +653,7 @@ default-package-overrides:
- eventful-sql-common ==0.1.3
- eventful-sqlite ==0.1.3
- eventful-test-helpers ==0.1.3
- - eventstore ==0.15.0.1
+ - eventstore ==0.15.0.2
- exact-combinatorics ==0.2.0.8
- exact-pi ==0.4.1.2
- exception-mtl ==0.4.0.1
@@ -666,7 +666,7 @@ default-package-overrides:
- exp-pairs ==0.1.5.2
- expiring-cache-map ==0.0.6.1
- explicit-exception ==0.1.9
- - extensible ==0.4.2
+ - extensible ==0.4.3
- extensible-effects ==1.11.1.0
- extensible-exceptions ==0.1.1.4
- extra ==1.5.3
@@ -685,23 +685,23 @@ default-package-overrides:
- feed ==0.3.12.0
- FenwickTree ==0.1.2.1
- fft ==0.1.8.6
- - fgl ==5.5.3.1
+ - fgl ==5.5.4.0
- fgl-arbitrary ==0.2.0.3
- file-embed ==0.0.10
- file-modules ==0.1.2.4
- filecache ==0.2.9
- - filelock ==0.1.0.1
+ - filelock ==0.1.1.2
- filemanip ==0.3.6.3
- fileplow ==0.1.0.0
- filter-logger ==0.6.0.0
- - find-clumpiness ==0.2.1.3
+ - find-clumpiness ==0.2.2.0
- fingertree ==0.1.1.0
- fingertree-psqueue ==0.3
- finite-typelits ==0.1.2.0
- fixed ==0.2.1.1
- fixed-length ==0.2
- fixed-vector ==0.9.0.0
- - fixed-vector-hetero ==0.3.1.1
+ - fixed-vector-hetero ==0.3.1.2
- flac ==0.1.2
- flac-picture ==0.1.1
- flat ==0.3
@@ -709,16 +709,16 @@ default-package-overrides:
- flexible-defaults ==0.0.1.2
- floatshow ==0.2.4
- flock ==0.3.1.8
- - flow ==1.0.7
+ - flow ==1.0.8
- fmlist ==0.9
- fmt ==0.3.0.0
- fn ==0.3.0.1
- - focus ==0.1.5
+ - focus ==0.1.5.2
- fold-debounce ==0.2.0.6
- fold-debounce-conduit ==0.1.0.5
- foldl ==1.2.5
- foldl-statistics ==0.1.4.6
- - folds ==0.7.3
+ - folds ==0.7.4
- FontyFruity ==0.5.3.3
- force-layout ==0.4.0.6
- foreign-store ==0.2
@@ -738,7 +738,7 @@ default-package-overrides:
- frisby ==0.2
- from-sum ==0.2.1.0
- frontmatter ==0.1.0.2
- - fsnotify ==0.2.1
+ - fsnotify ==0.2.1.1
- fsnotify-conduit ==0.1.0.0
- funcmp ==1.8
- functor-classes-compat ==1
@@ -760,9 +760,9 @@ default-package-overrides:
- ghc-exactprint ==0.5.5.0
- ghc-heap-view ==0.5.9
- ghc-paths ==0.1.0.9
- - ghc-prof ==1.4.0.1
+ - ghc-prof ==1.4.0.2
- ghc-syb-utils ==0.2.3.2
- - ghc-tcplugins-extra ==0.2
+ - ghc-tcplugins-extra ==0.2.1
- ghc-typelits-extra ==0.2.3
- ghc-typelits-knownnat ==0.3
- ghc-typelits-natnormalise ==0.5.3
@@ -770,25 +770,25 @@ default-package-overrides:
- ghcjs-base-stub ==0.1.0.2
- ghcjs-codemirror ==0.0.0.1
- ghcjs-perch ==0.3.3.2
- - gi-atk ==2.0.12
- - gi-cairo ==1.0.12
- - gi-gdk ==3.0.12
- - gi-gdkpixbuf ==2.0.12
- - gi-gio ==2.0.12
- - gi-glib ==2.0.12
- - gi-gobject ==2.0.12
- - gi-gtk ==3.0.15
- - gi-javascriptcore ==3.0.12
- - gi-pango ==1.0.13
- - gi-soup ==2.4.12
- - gi-webkit ==3.0.12
+ - gi-atk ==2.0.14
+ - gi-cairo ==1.0.14
+ - gi-gdk ==3.0.14
+ - gi-gdkpixbuf ==2.0.14
+ - gi-gio ==2.0.14
+ - gi-glib ==2.0.14
+ - gi-gobject ==2.0.14
+ - gi-gtk ==3.0.17
+ - gi-javascriptcore ==3.0.14
+ - gi-pango ==1.0.15
+ - gi-soup ==2.4.14
+ - gi-webkit ==3.0.14
- ginger ==0.5.3.0
- gio ==0.13.3.1
- giphy-api ==0.5.2.0
- git ==0.2.0
- git-annex ==6.20170520
- github ==0.16.0
- - github-release ==1.0.4
+ - github-release ==1.0.5
- github-types ==0.2.1
- github-webhook-handler ==0.0.8
- github-webhook-handler-snap ==0.0.7
@@ -813,7 +813,7 @@ default-package-overrides:
- GLURaw ==2.0.0.3
- GLUT ==2.7.0.12
- gluturtle ==0.0.58.1
- - gnuplot ==0.5.4.1
+ - gnuplot ==0.5.4.2
- gogol ==0.3.0
- gogol-adexchange-buyer ==0.3.0
- gogol-adexchange-seller ==0.3.0
@@ -914,7 +914,7 @@ default-package-overrides:
- google-cloud ==0.0.4
- google-oauth2-jwt ==0.2.2
- GPipe ==2.2.1
- - GPipe-GLFW ==1.4.1
+ - GPipe-GLFW ==1.4.1.1
- gpolyline ==0.1.0.1
- graph-core ==0.3.0.0
- graph-wrapper ==0.2.5.1
@@ -924,7 +924,7 @@ default-package-overrides:
- graylog ==0.1.0.1
- groom ==0.1.2.1
- groundhog ==0.8
- - groundhog-inspector ==0.8
+ - groundhog-inspector ==0.8.0.2
- groundhog-mysql ==0.8
- groundhog-postgresql ==0.8.0.1
- groundhog-sqlite ==0.8
@@ -946,7 +946,7 @@ default-package-overrides:
- haddock-api ==2.17.4
- haddock-library ==1.4.3
- haddock-test ==0.0.1
- - hailgun ==0.4.1.4
+ - hailgun ==0.4.1.5
- hailgun-simple ==0.1.0.0
- hakyll ==4.9.8.0
- hakyll-favicon ==0.1.0
@@ -955,11 +955,11 @@ default-package-overrides:
- hamlet ==1.2.0
- HandsomeSoup ==0.4.2
- handwriting ==0.1.0.3
- - hapistrano ==0.3.2.2
+ - hapistrano ==0.3.2.4
- happstack-hsp ==7.3.7.3
- happstack-jmacro ==7.0.12
- happstack-server ==7.4.6.4
- - happstack-server-tls ==7.1.6.3
+ - happstack-server-tls ==7.1.6.4
- happy ==1.19.5
- harp ==0.4.2
- hasbolt ==0.1.2.1
@@ -968,8 +968,9 @@ default-package-overrides:
- hashmap ==1.3.2
- hashtables ==1.2.1.1
- haskeline ==0.7.4.0
- - haskell-gi ==0.20.2
- - haskell-gi-base ==0.20.3
+ - haskell-gi ==0.20.3
+ - haskell-gi-base ==0.20.4
+ - haskell-gi-overloading ==1.0
- haskell-import-graph ==1.0.2
- haskell-lexer ==1.0.1
- haskell-lsp ==0.1.0.0
@@ -980,28 +981,28 @@ default-package-overrides:
- haskell-src-exts ==1.18.2
- haskell-src-exts-simple ==1.19.0.0
- haskell-src-meta ==0.8.0.1
- - haskell-tools-ast ==0.8.0.0
- - haskell-tools-backend-ghc ==0.8.0.0
+ - haskell-tools-ast ==0.8.1.0
+ - haskell-tools-backend-ghc ==0.8.1.0
- haskell-tools-cli ==0.8.0.0
- - haskell-tools-daemon ==0.8.0.0
- - haskell-tools-debug ==0.8.0.0
- - haskell-tools-demo ==0.8.0.0
- - haskell-tools-prettyprint ==0.8.0.0
- - haskell-tools-refactor ==0.8.0.0
- - haskell-tools-rewrite ==0.8.0.0
+ - haskell-tools-daemon ==0.8.1.0
+ - haskell-tools-debug ==0.8.1.0
+ - haskell-tools-demo ==0.8.1.0
+ - haskell-tools-prettyprint ==0.8.1.0
+ - haskell-tools-refactor ==0.8.1.0
+ - haskell-tools-rewrite ==0.8.1.0
- HaskellNet ==0.5.1
- - HaskellNet-SSL ==0.3.3.0
+ - HaskellNet-SSL ==0.3.4.0
- haskintex ==0.7.0.1
- - hasmin ==0.3.2.2
- - hasql ==0.19.18
+ - hasmin ==0.3.2.4
+ - hasql ==0.19.18.1
- hasql-migration ==0.1.3
- hasql-pool ==0.4.1
- hasql-transaction ==0.5
- hastache ==0.6.1
- hasty-hamiltonian ==1.3.0
- - HaTeX ==3.17.3.0
+ - HaTeX ==3.17.3.1
- hatex-guide ==1.3.1.6
- - haxl ==0.5.0.0
+ - haxl ==0.5.1.0
- haxl-amazonka ==0.1.1
- HaXml ==1.25.4
- haxr ==3000.11.2
@@ -1013,14 +1014,14 @@ default-package-overrides:
- HDBC-mysql ==0.7.1.0
- HDBC-session ==0.1.1.1
- hdevtools ==0.1.5.0
- - hdocs ==0.5.2.0
+ - hdocs ==0.5.2.1
- heap ==1.0.3
- - heaps ==0.3.4.1
+ - heaps ==0.3.5
- heatshrink ==0.1.0.0
- hebrew-time ==0.1.1
- hedgehog ==0.5
- hedgehog-quickcheck ==0.1
- - hedis ==0.9.8
+ - hedis ==0.9.9
- here ==1.2.11
- heredoc ==0.2.0.0
- heterocephalus ==1.0.5.0
@@ -1048,13 +1049,13 @@ default-package-overrides:
- hjsonpointer ==1.2.0
- hjsonschema ==1.6.3
- hlibgit2 ==0.18.0.16
- - hlibsass ==0.1.6.0
+ - hlibsass ==0.1.6.1
- hlint ==2.0.9
- hmatrix ==0.18.0.0
- hmatrix-gsl ==0.18.0.1
- hmatrix-gsl-stats ==0.4.1.6
- hmatrix-special ==0.4.0.1
- - hmpfr ==0.4.2.1
+ - hmpfr ==0.4.3
- hoauth2 ==1.3.0
- hocilib ==0.2.0
- holy-project ==0.2.0.1
@@ -1070,7 +1071,7 @@ default-package-overrides:
- hPDB-examples ==1.2.0.7
- HPDF ==1.4.10
- hpio ==0.8.0.10
- - hpp ==0.4.0
+ - hpp ==0.4.1
- hpqtypes ==1.5.1.1
- hquantlib ==0.0.4.0
- hreader ==1.1.0
@@ -1082,14 +1083,14 @@ default-package-overrides:
- hsb2hs ==0.3.1
- hscolour ==1.24.1
- hscurses ==1.4.2.0
- - hsdev ==0.2.5.0
+ - hsdev ==0.2.5.1
- hsdns ==1.7
- hse-cpp ==0.2
- hsebaysdk ==0.4.0.0
- hsemail ==2
- HSet ==0.0.1
- hset ==2.2.0
- - hsexif ==0.6.1.1
+ - hsexif ==0.6.1.2
- hsignal ==0.2.7.5
- hsinstall ==1.6
- hslogger ==1.2.10
@@ -1097,7 +1098,7 @@ default-package-overrides:
- hslua-aeson ==0.1.0.4
- hsndfile ==0.8.0
- hsndfile-vector ==0.5.2
- - HsOpenSSL ==0.11.4.9
+ - HsOpenSSL ==0.11.4.11
- HsOpenSSL-x509-system ==0.1.0.3
- hsp ==0.10.0
- hspec ==2.4.4
@@ -1123,10 +1124,10 @@ default-package-overrides:
- hstatsd ==0.1
- HStringTemplate ==0.8.6
- hsx-jmacro ==7.3.8
- - hsx2hs ==0.14.1
+ - hsx2hs ==0.14.1.1
- hsyslog ==5.0.1
- htaglib ==1.1.1
- - HTF ==0.13.1.0
+ - HTF ==0.13.2.2
- html ==1.0.1.2
- html-conduit ==1.2.1.1
- html-email-validate ==0.2.0.0
@@ -1152,14 +1153,14 @@ default-package-overrides:
- hunit-dejafu ==0.6.0.0
- hvect ==0.4.0.0
- hw-balancedparens ==0.1.0.2
- - hw-bits ==0.5.0.2
+ - hw-bits ==0.5.0.3
- hw-diagnostics ==0.0.0.5
- hw-excess ==0.1.0.1
- hw-int ==0.0.0.1
- hw-parser ==0.0.0.2
- hw-prim ==0.4.0.3
- - hw-rankselect ==0.8.0.1
- - hw-rankselect-base ==0.2.0.0
+ - hw-rankselect ==0.8.0.2
+ - hw-rankselect-base ==0.2.0.1
- hw-string-parse ==0.0.0.3
- hw-succinct ==0.1.0.1
- hweblib ==0.6.3
@@ -1175,7 +1176,7 @@ default-package-overrides:
- hxt-tagsoup ==9.1.4
- hxt-unicode ==9.0.2.4
- hybrid-vectors ==0.2.1
- - hyperloglog ==0.4.1
+ - hyperloglog ==0.4.2
- hyphenation ==0.7
- ical ==0.0.1
- iconv ==0.4.1.3
@@ -1186,7 +1187,7 @@ default-package-overrides:
- IfElse ==0.85
- iff ==0.0.6
- ignore ==0.1.1.0
- - ihs ==0.1.0.0
+ - ihs ==0.1.0.1
- ilist ==0.3.1.0
- imagesize-conduit ==1.1
- Imlib ==0.1.2
@@ -1207,14 +1208,14 @@ default-package-overrides:
- instance-control ==0.1.1.1
- integer-logarithms ==1.0.2
- integration ==0.2.1
- - intero ==0.1.20
+ - intero ==0.1.21
- interpolate ==0.1.1
- interpolatedstring-perl6 ==1.0.0
- interpolation ==0.1.0.1
- IntervalMap ==0.5.2.0
- - intervals ==0.8
+ - intervals ==0.8.1
- intro ==0.3.0.1
- - invariant ==0.4.2
+ - invariant ==0.4.3
- invertible ==0.2.0.2
- io-choice ==0.0.6
- io-machine ==0.2.0.0
@@ -1222,15 +1223,15 @@ default-package-overrides:
- io-memoize ==1.1.1.0
- io-region ==0.1.1
- io-storage ==0.3
- - io-streams ==1.4.0.0
+ - io-streams ==1.4.1.0
- io-streams-haproxy ==1.0.0.1
- ip6addr ==0.5.3
- iproute ==1.7.1
- IPv6Addr ==1.0.1
- IPv6DB ==0.2.1
- irc ==0.6.1.0
- - irc-client ==0.4.4.2
- - irc-conduit ==0.2.2.1
+ - irc-client ==0.4.4.4
+ - irc-conduit ==0.2.2.3
- irc-ctcp ==0.1.3.0
- irc-dcc ==2.0.1
- islink ==0.1.0.0
@@ -1240,7 +1241,7 @@ default-package-overrides:
- isotope ==0.5.0.1
- iterable ==3.0
- ix-shapable ==0.1.0
- - ixset-typed ==0.3.1
+ - ixset-typed ==0.3.1.1
- jack ==0.7.1.1
- jailbreak-cabal ==1.3.2
- javascript-extras ==0.3.1.0
@@ -1281,7 +1282,7 @@ default-package-overrides:
- lackey ==0.4.3
- lame ==0.1.1
- language-c ==0.6.1
- - language-c-quote ==0.12
+ - language-c-quote ==0.12.1
- language-dockerfile ==0.3.6.0
- language-ecmascript ==0.17.2.0
- language-fortran ==0.5.1
@@ -1298,16 +1299,16 @@ default-package-overrides:
- lattices ==1.5.0
- lazyio ==0.1.0.4
- lca ==0.3
- - leancheck ==0.6.3
+ - leancheck ==0.6.4
- leapseconds-announced ==2017
- - lens ==4.15.3
- - lens-action ==0.2.1
- - lens-aeson ==1.0.1
+ - lens ==4.15.4
+ - lens-action ==0.2.2
+ - lens-aeson ==1.0.2
- lens-datetime ==0.3
- lens-family ==1.2.1
- lens-family-core ==1.2.1
- - lens-family-th ==0.5.0.0
- - lens-labels ==0.1.0.1
+ - lens-family-th ==0.5.0.1
+ - lens-labels ==0.1.0.2
- lens-regex ==0.1.0
- lens-simple ==0.1.0.9
- lentil ==1.0.9.0
@@ -1317,7 +1318,7 @@ default-package-overrides:
- libffi ==0.1
- libgit ==0.3.1
- libinfluxdb ==0.0.4
- - libmpd ==0.9.0.6
+ - libmpd ==0.9.0.7
- libnotify ==0.2
- librato ==0.2.0.1
- libsystemd-journal ==1.4.2
@@ -1328,15 +1329,15 @@ default-package-overrides:
- lifted-async ==0.9.3
- lifted-base ==0.2.3.11
- line ==3.1.0
- - linear ==1.20.6
- - linear-accelerate ==0.4
+ - linear ==1.20.7
+ - linear-accelerate ==0.4.1
- linked-list-with-iterator ==0.1.1.0
- linux-file-extents ==0.2.0.0
- linux-namespaces ==0.1.2.0
- List ==0.6.0
- list-fusion-probe ==0.1.0.6
- list-prompt ==0.1.1.0
- - list-t ==1
+ - list-t ==1.0.0.1
- ListLike ==4.5.1
- listsafe ==0.1.0.1
- llvm-hs ==4.2.0
@@ -1344,10 +1345,10 @@ default-package-overrides:
- lmdb ==0.2.5
- loch-th ==0.2.1
- log ==0.9.0.1
- - log-base ==0.7.1.1
- - log-domain ==0.11.1
- - log-elasticsearch ==0.9.0.1
- - log-postgres ==0.7.0.1
+ - log-base ==0.7.2.0
+ - log-domain ==0.11.2
+ - log-elasticsearch ==0.9.1.0
+ - log-postgres ==0.7.0.2
- logfloat ==0.13.3.3
- logger-thread ==0.1.0.2
- logging-effect ==1.2.0
@@ -1359,8 +1360,8 @@ default-package-overrides:
- lrucaching ==0.3.2
- lucid ==2.9.8.1
- lucid-svg ==0.7.0.0
- - lzma-conduit ==1.1.3.1
- - machines ==0.6.2
+ - lzma-conduit ==1.1.3.3
+ - machines ==0.6.3
- machines-binary ==0.3.0.3
- machines-directory ==0.2.1.0
- machines-io ==0.2.0.13
@@ -1384,10 +1385,10 @@ default-package-overrides:
- matrix ==0.3.5.0
- matrix-market-attoparsec ==0.1.0.8
- maximal-cliques ==0.1.1
- - mbox ==0.3.3
+ - mbox ==0.3.4
- mbox-utility ==0.0.1
- mcmc-types ==1.0.3
- - med-module ==0.1
+ - med-module ==0.1.1
- mediabus ==0.4.0.1
- mediabus-rtp ==0.4.0.1
- median-stream ==0.7.0.0
@@ -1398,11 +1399,11 @@ default-package-overrides:
- mersenne-random-pure64 ==0.2.2.0
- messagepack ==0.5.4
- messagepack-rpc ==0.5.1
- - metrics ==0.4.0.1
+ - metrics ==0.4.1.1
- MFlow ==0.4.6.0
- mfsolve ==0.3.2.0
- microformats2-parser ==1.0.1.7
- - microlens ==0.4.8.0
+ - microlens ==0.4.8.1
- microlens-aeson ==2.2.0.1
- microlens-contra ==0.1.0.1
- microlens-ghc ==0.4.8.0
@@ -1413,7 +1414,7 @@ default-package-overrides:
- midi ==0.2.2.1
- midi-music-box ==0.0.0.4
- mighty-metropolis ==1.2.0
- - mime-mail ==0.4.13.1
+ - mime-mail ==0.4.14
- mime-mail-ses ==0.3.2.3
- mime-types ==0.1.0.7
- minio-hs ==0.3.0
@@ -1429,12 +1430,12 @@ default-package-overrides:
- mockery ==0.3.5
- model ==0.3
- modify-fasta ==0.8.2.3
- - monad-control ==1.0.2.1
+ - monad-control ==1.0.2.2
- monad-coroutine ==0.9.0.3
- monad-extras ==0.6.0
- monad-http ==0.1.0.0
- monad-journal ==0.7.2
- - monad-logger ==0.3.24
+ - monad-logger ==0.3.25
- monad-logger-json ==0.1.0.0
- monad-logger-prefix ==0.1.6
- monad-logger-syslog ==0.1.4.0
@@ -1445,7 +1446,7 @@ default-package-overrides:
- monad-parallel ==0.7.2.2
- monad-peel ==0.2.1.2
- monad-products ==4.0.1
- - monad-skeleton ==0.1.4
+ - monad-skeleton ==0.1.5
- monad-time ==0.2
- monad-unlift ==0.2.0
- monad-unlift-ref ==0.2.0
@@ -1457,12 +1458,12 @@ default-package-overrides:
- MonadRandom ==0.5.1
- monads-tf ==0.1.0.3
- mongoDB ==2.3.0
- - mono-traversable ==1.0.2
+ - mono-traversable ==1.0.2.1
- mono-traversable-instances ==0.1.0.0
- monoid-extras ==0.4.2
- - monoid-subclasses ==0.4.3.2
+ - monoid-subclasses ==0.4.4
- monoid-transformer ==0.0.3
- - monoidal-containers ==0.3.0.1
+ - monoidal-containers ==0.3.0.2
- morte ==1.6.9
- mountpoints ==1.0.2
- mstate ==0.2.7
@@ -1473,7 +1474,7 @@ default-package-overrides:
- multimap ==1.2.1
- multipart ==0.1.2
- multiset ==0.3.3
- - multistate ==0.7.1.1
+ - multistate ==0.7.1.2
- murmur-hash ==0.1.0.9
- mushu ==0.1.1
- MusicBrainz ==0.3
@@ -1507,7 +1508,7 @@ default-package-overrides:
- network-conduit-tls ==1.2.2
- network-house ==0.1.0.2
- network-info ==0.2.0.8
- - network-ip ==0.3
+ - network-ip ==0.3.0.2
- network-msgpack-rpc ==0.0.3
- network-multicast ==0.2.0
- Network-NineP ==0.4.1
@@ -1527,7 +1528,7 @@ default-package-overrides:
- nix-paths ==1.0.0.1
- non-empty ==0.3
- non-empty-sequence ==0.2.0.2
- - non-negative ==0.1.1
+ - non-negative ==0.1.1.2
- nonce ==1.0.4
- nondeterminism ==1.4
- NoTrace ==0.3.0.1
@@ -1536,17 +1537,17 @@ default-package-overrides:
- numeric-extras ==0.1
- numeric-prelude ==0.4.2
- numeric-quest ==0.2.0.1
- - numhask ==0.0.7
+ - numhask ==0.0.9
- numhask-range ==0.0.4
- NumInstances ==1.4
- numtype-dk ==0.5.0.1
- - nvim-hs ==0.2.2
+ - nvim-hs ==0.2.4
- nvim-hs-contrib ==0.2.0
- nvim-hs-ghcid ==0.2.0
- oanda-rest-api ==0.4.1
- objective ==1.1.1
- ObjectName ==1.1.0.1
- - octane ==0.20.0
+ - octane ==0.20.2
- Octree ==0.5.4.3
- oeis ==0.3.9
- ofx ==0.4.2.0
@@ -1558,10 +1559,10 @@ default-package-overrides:
- online ==0.2.0
- Only ==0.1
- oo-prototypes ==0.1.0.0
- - opaleye ==0.5.3.0
+ - opaleye ==0.5.4.0
- opaleye-trans ==0.3.5
- open-browser ==0.2.1.0
- - open-witness ==0.4
+ - open-witness ==0.4.0.1
- OpenAL ==1.7.0.4
- openexr-write ==0.1.0.1
- OpenGL ==3.0.2.0
@@ -1586,7 +1587,7 @@ default-package-overrides:
- packunused ==0.1.2
- pager ==0.1.1.0
- pagerduty ==0.0.8
- - pagination ==0.2.0
+ - pagination ==0.2.1
- palette ==0.1.0.4
- pandoc ==1.19.2.1
- pandoc-citeproc ==0.10.5.1
@@ -1600,7 +1601,7 @@ default-package-overrides:
- parsec-numeric ==0.1.0.0
- ParsecTools ==0.0.2.0
- parser-combinators ==0.1.0
- - parsers ==0.12.5
+ - parsers ==0.12.7
- partial-handler ==1.0.2
- partial-isomorphisms ==0.2.2.1
- partial-order ==0.1.2.1
@@ -1615,7 +1616,7 @@ default-package-overrides:
- pattern-arrows ==0.0.2
- pcre-heavy ==1.0.0.2
- pcre-light ==0.4.0.4
- - pcre-utils ==0.1.8.1
+ - pcre-utils ==0.1.8.1.1
- pdf-toolbox-content ==0.0.5.1
- pdf-toolbox-core ==0.0.4.1
- pdf-toolbox-document ==0.0.7.1
@@ -1640,7 +1641,7 @@ default-package-overrides:
- picoparsec ==0.1.2.3
- picosat ==0.1.4
- pid1 ==0.1.2.0
- - pinboard ==0.9.12.4
+ - pinboard ==0.9.12.5
- pinch ==0.3.2.0
- pinchot ==0.24.0.0
- pipes ==4.3.4
@@ -1651,7 +1652,7 @@ default-package-overrides:
- pipes-concurrency ==2.0.7
- pipes-extras ==1.0.10
- pipes-fluid ==0.5.0.3
- - pipes-group ==1.0.6
+ - pipes-group ==1.0.7
- pipes-misc ==0.3.0.0
- pipes-mongodb ==0.1.0.0
- pipes-parse ==3.0.8
@@ -1667,7 +1668,7 @@ default-package-overrides:
- plot-gtk ==0.2.0.4
- plot-gtk-ui ==0.3.0.2
- plot-gtk3 ==0.1.0.2
- - plot-light ==0.2.4
+ - plot-light ==0.2.7
- point-octree ==0.5.5.3
- pointed ==5
- pointedlist ==0.6.1
@@ -1685,13 +1686,13 @@ default-package-overrides:
- postgresql-libpq ==0.9.3.1
- postgresql-schema ==0.1.11
- postgresql-simple ==0.5.3.0
- - postgresql-simple-migration ==0.1.9.0
+ - postgresql-simple-migration ==0.1.11.0
- postgresql-simple-opts ==0.2.0.2
- - postgresql-simple-queue ==0.5.0.0
+ - postgresql-simple-queue ==0.5.0.1
- postgresql-simple-url ==0.2.0.0
- postgresql-transactional ==1.1.1
- postgresql-typed ==0.5.1
- - pqueue ==1.3.2.2
+ - pqueue ==1.3.2.3
- pred-set ==0.0.1
- pred-trie ==0.5.1.2
- prednote ==0.36.0.4
@@ -1707,8 +1708,8 @@ default-package-overrides:
- pretty-simple ==2.0.0.0
- pretty-types ==0.2.3.1
- prettyclass ==1.0.0.0
- - prettyprinter ==1.1
- - prettyprinter-ansi-terminal ==1.1
+ - prettyprinter ==1.1.1
+ - prettyprinter-ansi-terminal ==1.1.1.1
- prettyprinter-compat-annotated-wl-pprint ==1
- prettyprinter-compat-ansi-wl-pprint ==1.0.1
- prettyprinter-compat-wl-pprint ==1.0.0.1
@@ -1721,23 +1722,23 @@ default-package-overrides:
- profiterole ==0.1
- profiteur ==0.4.3.0
- profunctor-extras ==4.0
- - profunctors ==5.2
+ - profunctors ==5.2.1
- project-template ==0.2.0
- projectroot ==0.2.0.1
- prometheus-client ==0.2.0
- prometheus-metrics-ghc ==0.2.0
- prompt ==0.1.1.2
- proto-lens ==0.2.1.0
- - proto-lens-arbitrary ==0.1.1.0
+ - proto-lens-arbitrary ==0.1.1.1
- proto-lens-combinators ==0.1.0.7
- proto-lens-descriptors ==0.2.1.0
- - proto-lens-optparse ==0.1.0.3
+ - proto-lens-optparse ==0.1.0.4
- proto-lens-protobuf-types ==0.2.1.0
- proto-lens-protoc ==0.2.1.0
- protobuf ==0.2.1.1
- protobuf-simple ==0.1.0.4
- - protocol-buffers ==2.4.2
- - protocol-buffers-descriptor ==2.4.2
+ - protocol-buffers ==2.4.3
+ - protocol-buffers-descriptor ==2.4.3
- protolude ==0.1.10
- proxied ==0.3
- psql-helpers ==0.1.0.0
@@ -1776,8 +1777,8 @@ default-package-overrides:
- rank-product ==0.2.0.1
- rank1dynamic ==0.3.3.0
- Rasterific ==0.7.2.1
- - rasterific-svg ==0.3.2.1
- - ratel ==0.3.4
+ - rasterific-svg ==0.3.3
+ - ratel ==0.3.5
- ratel-wai ==0.2.0
- rattletrap ==2.5.0
- raw-strings-qq ==1.1
@@ -1791,14 +1792,14 @@ default-package-overrides:
- readable ==0.3.1
- ReadArgs ==1.2.3
- readline ==1.0.3.0
- - rebase ==1.0.8
+ - rebase ==1.0.8.1
- recursion-schemes ==5.0.2
- redis-io ==0.7.0
- redis-resp ==0.4.0
- reducers ==3.12.1
- ref-fd ==0.4.0.1
- refact ==0.3.0.2
- - references ==0.3.2.1
+ - references ==0.3.2.2
- refined ==0.1.2.1
- reflection ==2.1.2
- reform ==0.2.7.1
@@ -1837,7 +1838,7 @@ default-package-overrides:
- resourcet ==1.1.9
- rest-client ==0.5.1.1
- rest-core ==0.39
- - rest-gen ==0.20.0.0
+ - rest-gen ==0.20.0.1
- rest-happstack ==0.3.1.1
- rest-snap ==0.2.0.1
- rest-stringmap ==0.2.0.6
@@ -1845,7 +1846,7 @@ default-package-overrides:
- rest-wai ==0.2.0.1
- result ==0.2.6.0
- rethinkdb ==2.2.0.10
- - rethinkdb-client-driver ==0.0.23
+ - rethinkdb-client-driver ==0.0.24
- retry ==0.7.4.2
- rev-state ==0.1.2
- rfc5051 ==0.1.0.3
@@ -1854,7 +1855,7 @@ default-package-overrides:
- rot13 ==0.2.0.1
- rotating-log ==0.4.2
- RSA ==2.3.0
- - rss-conduit ==0.3.1.1
+ - rss-conduit ==0.3.1.2
- runmemo ==1.0.0.1
- rvar ==0.2.0.3
- s3-signer ==0.3.0.0
@@ -1862,12 +1863,12 @@ default-package-overrides:
- safe-exceptions ==0.1.6.0
- safe-exceptions-checked ==0.1.0
- safecopy ==0.9.3.2
- - safeio ==0.0.2.0
+ - safeio ==0.0.3.0
- SafeSemaphore ==0.10.1
- sample-frame ==0.0.3
- sample-frame-np ==0.0.4.1
- sampling ==0.3.2
- - sandi ==0.4.0
+ - sandi ==0.4.1
- sandman ==0.2.0.1
- say ==0.1.0.0
- scalpel ==0.5.1
@@ -1886,11 +1887,11 @@ default-package-overrides:
- search-algorithms ==0.2.0
- securemem ==0.1.9
- SegmentTree ==0.3
- - selda ==0.1.9.0
- - selda-postgresql ==0.1.5.1
- - selda-sqlite ==0.1.5.1
+ - selda ==0.1.10.1
+ - selda-postgresql ==0.1.6.0
+ - selda-sqlite ==0.1.6.0
- semigroupoid-extras ==5
- - semigroupoids ==5.2
+ - semigroupoids ==5.2.1
- semigroups ==0.18.3
- semiring-simple ==1.0.0.1
- semver ==0.3.3.1
@@ -1915,7 +1916,7 @@ default-package-overrides:
- servant-purescript ==0.8.0.0
- servant-ruby ==0.2.1.0
- servant-server ==0.11
- - servant-static-th ==0.1.0.4
+ - servant-static-th ==0.1.0.5
- servant-subscriber ==0.6.0.0
- servant-swagger ==1.1.3.1
- servant-swagger-ui ==0.2.4.3.0.20
@@ -1940,11 +1941,11 @@ default-package-overrides:
- should-not-typecheck ==2.1.0
- show-prettyprint ==0.2
- sibe ==0.2.0.5
- - signal ==0.1.0.3
+ - signal ==0.1.0.4
- silently ==1.2.5
- simple ==0.11.2
- simple-download ==0.0.2
- - simple-log ==0.9.2
+ - simple-log ==0.9.3
- simple-reflect ==0.3.2
- simple-sendfile ==0.2.25
- simple-session ==0.10.1.1
@@ -1958,15 +1959,15 @@ default-package-overrides:
- slave-thread ==1.0.2
- slug ==0.1.7
- smallcaps ==0.6.0.4
- - smallcheck ==1.1.1
+ - smallcheck ==1.1.2
- smallcheck-series ==0.6
- smoothie ==0.4.2.7
- smtp-mail ==0.1.4.6
- snap-blaze ==0.2.1.5
- - snap-core ==1.0.2.1
- - snap-server ==1.0.2.2
+ - snap-core ==1.0.3.0
+ - snap-server ==1.0.3.0
- snowflake ==0.1.1.1
- - snowtify ==0.1.0.0
+ - snowtify ==0.1.0.3
- soap ==0.2.3.5
- soap-openssl ==0.1.0.2
- soap-tls ==0.1.1.2
@@ -1979,7 +1980,7 @@ default-package-overrides:
- sorted-list ==0.2.0.0
- sound-collage ==0.2.0.1
- sourcemap ==0.1.6
- - sox ==0.2.2.6
+ - sox ==0.2.2.7
- soxlib ==0.0.3
- sparkle ==0.5.0.1
- sparse-linear-algebra ==0.2.9.7
@@ -1996,7 +1997,7 @@ default-package-overrides:
- Spock-api ==0.12.0.0
- Spock-api-server ==0.12.0.0
- Spock-core ==0.12.0.0
- - Spock-lucid ==0.4.0.0
+ - Spock-lucid ==0.4.0.1
- Spock-worker ==0.3.1.0
- spool ==0.1
- spreadsheet ==0.1.3.5
@@ -2013,14 +2014,14 @@ default-package-overrides:
- stateref ==0.3
- statestack ==0.2.0.5
- StateVar ==1.1.0.4
- - stateWriter ==0.2.8
+ - stateWriter ==0.2.8.2
- static-canvas ==0.2.0.3
- statistics ==0.13.3.0
- stemmer ==0.5.2
- stm ==2.4.4.1
- stm-chans ==3.0.0.4
- stm-conduit ==3.0.0
- - stm-containers ==0.2.15
+ - stm-containers ==0.2.16
- stm-delay ==0.1.1.1
- stm-extras ==0.1.0.2
- stm-split ==0.0.2
@@ -2032,7 +2033,7 @@ default-package-overrides:
- storable-endian ==0.2.6
- storable-record ==0.0.3.1
- storable-tuple ==0.0.3.2
- - storablevector ==0.2.12
+ - storablevector ==0.2.12.1
- storablevector-carray ==0.0
- store ==0.4.3.1
- store-core ==0.4.1
@@ -2056,21 +2057,21 @@ default-package-overrides:
- stringable ==0.1.3
- stringbuilder ==0.5.0
- stringsearch ==0.3.6.6
- - strive ==3.0.3
+ - strive ==3.0.4
- stylish-haskell ==0.8.1.0
- - sum-type-boilerplate ==0.1.0
+ - sum-type-boilerplate ==0.1.1
- sundown ==0.6
- superbuffer ==0.3.1.1
- superrecord ==0.3.0.0
- svg-builder ==0.1.0.2
- - svg-tree ==0.6.1
+ - svg-tree ==0.6.2
- SVGFonts ==1.6.0.1
- swagger ==0.3.0
- swagger2 ==2.1.4.1
- syb ==0.7
- symbol ==0.2.4
- symengine ==0.1.2.0
- - synthesizer-core ==0.8.1
+ - synthesizer-core ==0.8.1.1
- synthesizer-dimensional ==0.8.0.2
- synthesizer-midi ==0.6.0.4
- sysinfo ==0.1.1
@@ -2081,7 +2082,7 @@ default-package-overrides:
- tabular ==0.2.2.7
- tagchup ==0.4.1
- tagged ==0.8.5
- - tagged-binary ==0.2.0.0
+ - tagged-binary ==0.2.0.1
- tagged-identity ==0.1.2
- tagshare ==0.0
- tagsoup ==0.14.1
@@ -2089,7 +2090,7 @@ default-package-overrides:
- tar ==0.5.0.3
- tar-conduit ==0.1.1
- tardis ==0.4.1.0
- - tasty ==0.11.2.3
+ - tasty ==0.11.2.5
- tasty-ant-xml ==1.1.0
- tasty-auto ==0.2.0.0
- tasty-dejafu ==0.6.0.0
@@ -2106,10 +2107,10 @@ default-package-overrides:
- tasty-rerun ==1.1.7
- tasty-silver ==3.1.10
- tasty-smallcheck ==0.8.1
- - tasty-stats ==0.2.0.2
+ - tasty-stats ==0.2.0.3
- tasty-tap ==0.0.4
- tasty-th ==0.1.7
- - Taxonomy ==1.0.2
+ - Taxonomy ==1.0.3
- TCache ==0.12.1
- tce-conf ==1.3
- tcp-streams ==0.6.0.0
@@ -2118,7 +2119,7 @@ default-package-overrides:
- tdigest-Chart ==0
- teardown ==0.1.0.1
- template ==0.2.0.10
- - temporary ==1.2.1
+ - temporary ==1.2.1.1
- temporary-rc ==1.2.0.3
- tensorflow ==0.1.0.2
- tensorflow-core-ops ==0.1.0.0
@@ -2130,7 +2131,7 @@ default-package-overrides:
- terminal-progress-bar ==0.1.1.1
- terminal-size ==0.3.2.1
- terminfo ==0.4.1.0
- - test-fixture ==0.5.0.1
+ - test-fixture ==0.5.0.2
- test-framework ==0.8.1.1
- test-framework-hunit ==0.3.0.2
- test-framework-quickcheck2 ==0.3.0.4
@@ -2158,17 +2159,17 @@ default-package-overrides:
- textlocal ==0.1.0.5
- tf-random ==0.5
- tfp ==1.0.0.2
- - th-abstraction ==0.2.3.0
+ - th-abstraction ==0.2.5.0
- th-data-compat ==0.0.2.4
- th-desugar ==1.6
- th-expand-syns ==0.4.3.0
- th-extras ==0.0.0.4
- th-lift ==0.7.7
- th-lift-instances ==0.1.11
- - th-orphans ==0.13.3
+ - th-orphans ==0.13.4
- th-reify-compat ==0.0.1.2
- - th-reify-many ==0.1.7
- - th-to-exp ==0.0.1.0
+ - th-reify-many ==0.1.8
+ - th-to-exp ==0.0.1.1
- th-utilities ==0.2.0.1
- these ==0.7.3
- thread-local-storage ==0.1.1
@@ -2207,8 +2208,8 @@ default-package-overrides:
- transformers-base ==0.4.4
- transformers-compat ==0.5.1.4
- transformers-lift ==0.2.0.1
- - transient ==0.5.8
- - transient-universe ==0.4.6
+ - transient ==0.5.9.2
+ - transient-universe ==0.4.6.1
- traverse-with-class ==1.0.0.0
- tree-fun ==0.8.1.0
- tries ==0.0.4.2
@@ -2242,8 +2243,8 @@ default-package-overrides:
- typed-process ==0.1.0.0
- typelits-witnesses ==0.2.3.0
- typography-geometry ==1.0.0.1
- - tz ==0.1.2.1
- - tzdata ==0.1.20161123.0
+ - tz ==0.1.3.0
+ - tzdata ==0.1.20170320.0
- ua-parser ==0.7.4
- uglymemo ==0.1.0.1
- unbound ==0.5.1
@@ -2255,9 +2256,9 @@ default-package-overrides:
- unfoldable-restricted ==0.0.3
- unicode ==0.0
- unicode-show ==0.1.0.2
- - unicode-transforms ==0.3.2
+ - unicode-transforms ==0.3.3
- unification-fd ==0.10.0.1
- - union ==0.1.1.1
+ - union ==0.1.1.2
- union-find ==0.2
- uniplate ==1.6.12
- uniq-deep ==1.1.0.0
@@ -2266,7 +2267,7 @@ default-package-overrides:
- unit-constraint ==0.0.0
- units ==2.4
- units-defs ==2.0.1.1
- - units-parser ==0.1.0.0
+ - units-parser ==0.1.0.1
- universe ==1.0
- universe-base ==1.0.2.1
- universe-instances-base ==1.0
@@ -2282,7 +2283,7 @@ default-package-overrides:
- unordered-containers ==0.2.8.0
- unsafe ==0.0
- uri-bytestring ==0.2.3.3
- - uri-bytestring-aeson ==0.1.0.1
+ - uri-bytestring-aeson ==0.1.0.2
- uri-encode ==1.5.0.5
- uri-templater ==0.2.1.0
- url ==2.1.3
@@ -2297,13 +2298,13 @@ default-package-overrides:
- uu-parsinglib ==2.9.1.1
- uuid ==1.3.13
- uuid-types ==1.0.3
- - vado ==0.0.8
+ - vado ==0.0.9
- validate-input ==0.4.0.0
- validation ==0.5.4
- validationt ==0.2.0.0
- varying ==0.7.0.3
- vault ==0.3.0.7
- - vcswrapper ==0.1.5
+ - vcswrapper ==0.1.6
- vector ==0.12.0.1
- vector-algorithms ==0.7.0.1
- vector-binary-instances ==0.2.3.5
@@ -2319,7 +2320,7 @@ default-package-overrides:
- versions ==3.1.1
- vhd ==0.2.2
- ViennaRNAParser ==1.3.2
- - viewprof ==0.0.0.6
+ - viewprof ==0.0.0.8
- vinyl ==0.5.3
- vinyl-utils ==0.3.0.0
- void ==0.7.2
@@ -2364,7 +2365,7 @@ default-package-overrides:
- web-routes-boomerang ==0.28.4.2
- web-routes-happstack ==0.23.11
- web-routes-hsp ==0.24.6.1
- - web-routes-th ==0.22.6.1
+ - web-routes-th ==0.22.6.2
- web-routes-wai ==0.24.3
- webdriver ==0.8.5
- webdriver-angular ==0.1.11
@@ -2376,8 +2377,8 @@ default-package-overrides:
- websockets-rpc ==0.4.0
- websockets-simple ==0.0.2
- websockets-snap ==0.10.2.3
- - weeder ==0.1.6
- - weigh ==0.0.4
+ - weeder ==0.1.7
+ - weigh ==0.0.5
- wikicfp-scraper ==0.1.0.9
- wild-bind ==0.1.0.3
- wild-bind-indicator ==0.1.0.1
@@ -2388,7 +2389,7 @@ default-package-overrides:
- Win32-notify ==0.3.0.1
- wire-streams ==0.1.1.0
- with-location ==0.1.0
- - withdependencies ==0.2.4
+ - withdependencies ==0.2.4.1
- witherable ==0.1.3.4
- witness ==0.4
- wizards ==1.0.2
@@ -2400,7 +2401,7 @@ default-package-overrides:
- wl-pprint-text ==1.1.1.0
- word-trie ==0.3.0
- word24 ==2.0.1
- - word8 ==0.1.2
+ - word8 ==0.1.3
- Workflow ==0.8.3
- wrap ==0.0.0
- wreq ==0.5.0.1
@@ -2413,10 +2414,10 @@ default-package-overrides:
- X11 ==1.8
- X11-xft ==0.3.1
- x11-xim ==0.0.9.0
- - x509 ==1.7.1
- - x509-store ==1.6.3
- - x509-system ==1.6.5
- - x509-validation ==1.6.8
+ - x509 ==1.7.2
+ - x509-store ==1.6.5
+ - x509-system ==1.6.6
+ - x509-validation ==1.6.9
- Xauth ==0.1
- xdcc ==1.1.4
- xdg-basedir ==0.2.2
@@ -2456,14 +2457,14 @@ default-package-overrides:
- yesod-auth-basic ==0.1.0.2
- yesod-auth-fb ==1.8.1
- yesod-auth-hashdb ==1.6.1
- - yesod-bin ==1.5.2.3
- - yesod-core ==1.4.35.1
+ - yesod-bin ==1.5.2.5
+ - yesod-core ==1.4.36
- yesod-default ==1.2.0
- yesod-eventsource ==1.4.1
- yesod-fb ==0.4.0
- yesod-form ==1.4.13
- - yesod-form-bootstrap4 ==0.1.0.0
- - yesod-form-richtext ==0.1.0.1
+ - yesod-form-bootstrap4 ==0.1.0.1
+ - yesod-form-richtext ==0.1.0.2
- yesod-gitrepo ==0.2.1.0
- yesod-gitrev ==0.1.0.0
- yesod-job-queue ==0.3.0.4
@@ -2477,28 +2478,28 @@ default-package-overrides:
- yesod-table ==2.0.3
- yesod-test ==1.5.8
- yesod-websockets ==0.2.6
- - yi-core ==0.14.0
- - yi-frontend-vty ==0.14.0
- - yi-fuzzy-open ==0.14.0
- - yi-ireader ==0.14.0
- - yi-keymap-cua ==0.14.0
- - yi-keymap-emacs ==0.14.0
- - yi-keymap-vim ==0.14.0
- - yi-language ==0.14.0
- - yi-misc-modes ==0.14.0
- - yi-mode-haskell ==0.14.0
- - yi-mode-javascript ==0.14.0
+ - yi-core ==0.14.1
+ - yi-frontend-vty ==0.14.1
+ - yi-fuzzy-open ==0.14.1
+ - yi-ireader ==0.14.1
+ - yi-keymap-cua ==0.14.1
+ - yi-keymap-emacs ==0.14.1
+ - yi-keymap-vim ==0.14.1
+ - yi-language ==0.14.1
+ - yi-misc-modes ==0.14.1
+ - yi-mode-haskell ==0.14.1
+ - yi-mode-javascript ==0.14.1
- yi-rope ==0.9
- - yi-snippet ==0.14.0
+ - yi-snippet ==0.14.1
- yjsvg ==0.2.0.1
- yjtools ==0.9.18
- yoga ==0.0.0.1
- - youtube ==0.2.1
+ - youtube ==0.2.1.1
- zero ==0.1.4
- zeromq4-haskell ==0.6.7
- zip ==0.1.11
- zip-archive ==0.3.1.1
- - zippers ==0.2.3
+ - zippers ==0.2.4
- ziptastic-client ==0.3.0.3
- ziptastic-core ==0.2.0.3
- zlib ==0.6.1.2
@@ -2593,6 +2594,8 @@ package-maintainers:
abbradar:
- Agda
- lambdabot
+ alunduil:
+ - collection-json
dont-distribute-packages:
# hard restrictions that really belong into meta.platforms
@@ -3432,7 +3435,6 @@ dont-distribute-packages:
collada-output: [ i686-linux, x86_64-linux, x86_64-darwin ]
collada-types: [ i686-linux, x86_64-linux, x86_64-darwin ]
collapse-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
- collection-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
collections-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
collections-base-instances: [ i686-linux, x86_64-linux, x86_64-darwin ]
collections: [ i686-linux, x86_64-linux, x86_64-darwin ]
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 77e57ed7324..36f5f28f2f8 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -452,7 +452,7 @@ self: super: builtins.intersectAttrs super {
haskell-gi-base = addBuildDepend super.haskell-gi-base pkgs.gobjectIntrospection;
# Requires gi-javascriptcore API version 4
- gi-webkit2 = super.gi-webkit2.override { gi-javascriptcore = self.gi-javascriptcore_4_0_12; };
+ gi-webkit2 = super.gi-webkit2.override { gi-javascriptcore = self.gi-javascriptcore_4_0_14; };
# requires valid, writeable $HOME
hatex-guide = overrideCabal super.hatex-guide (drv: {
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index 9c1e75232d7..60cce56cca0 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -1,6 +1,7 @@
{ stdenv, fetchurl, ghc, pkgconfig, glibcLocales, coreutils, gnugrep, gnused
, jailbreak-cabal, hscolour, cpphs, nodejs, lib, removeReferencesTo
-}: let isCross = (ghc.cross or null) != null; in
+}:
+let isCross = (ghc.cross or null) != null; in
{ pname
, dontStrip ? (ghc.isGhcjs or false)
@@ -78,6 +79,9 @@ let
then "package-db"
else "package-conf";
+ # the target dir for haddock documentation
+ docdir = docoutput: docoutput + "/share/doc";
+
newCabalFileUrl = "http://hackage.haskell.org/package/${pname}-${version}/revision/${revision}.cabal";
newCabalFile = fetchurl {
url = newCabalFileUrl;
@@ -111,7 +115,7 @@ let
defaultConfigureFlags = [
"--verbose" "--prefix=$out" "--libdir=\\$prefix/lib/\\$compiler" "--libsubdir=\\$pkgid"
(optionalString enableSeparateDataOutput "--datadir=$data/share/${ghc.name}")
- (optionalString enableSeparateDocOutput "--docdir=$doc/share/doc")
+ (optionalString enableSeparateDocOutput "--docdir=${docdir "$doc"}")
"--with-gcc=$CC" # Clang won't work without that extra information.
"--package-db=$packageConfDir"
(optionalString (enableSharedExecutables && stdenv.isLinux) "--ghc-option=-optl=-Wl,-rpath=$out/lib/${ghc.name}/${pname}-${version}")
@@ -331,7 +335,7 @@ stdenv.mkDerivation ({
''}
${optionalString enableSeparateDocOutput ''
- for x in $doc/share/doc/html/src/*.html; do
+ for x in ${docdir "$doc"}/html/src/*.html; do
remove-references-to -t $out $x
done
mkdir -p $doc
@@ -347,6 +351,14 @@ stdenv.mkDerivation ({
isHaskellLibrary = hasActiveLibrary;
+ # TODO: ask why the split outputs are configurable at all?
+ # TODO: include tests for split if possible
+ # Given the haskell package, returns
+ # the directory containing the haddock documentation.
+ # `null' if no haddock documentation was built.
+ # TODO: fetch the self from the fixpoint instead
+ haddockDir = self: if doHaddock then "${docdir self.doc}/html" else null;
+
env = stdenv.mkDerivation {
name = "interactive-${pname}-${version}-environment";
nativeBuildInputs = [ ghcEnv systemBuildInputs ]
@@ -356,6 +368,7 @@ stdenv.mkDerivation ({
shellHook = ''
export NIX_${ghcCommandCaps}="${ghcEnv}/bin/${ghcCommand}"
export NIX_${ghcCommandCaps}PKG="${ghcEnv}/bin/${ghcCommand}-pkg"
+ # TODO: is this still valid?
export NIX_${ghcCommandCaps}_DOCDIR="${ghcEnv}/share/doc/ghc/html"
export LD_LIBRARY_PATH="''${LD_LIBRARY_PATH:+''${LD_LIBRARY_PATH}:}${
makeLibraryPath (filter (x: !isNull x) systemBuildInputs)
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index 3590fed19d2..b75b805c630 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -3975,8 +3975,8 @@ self: {
}:
mkDerivation {
pname = "DeepDarkFantasy";
- version = "0.2017.8.11";
- sha256 = "14ibpvqy8awv6mcdm7ywybq5pk6wf6hwqq18mq8l116jgi7c9vvr";
+ version = "0.2017.8.18";
+ sha256 = "1gm86c03b06hjv83g4mmyilhcryz2gqygbcwlkg5mibvi1wixqqf";
libraryHaskellDepends = [
base bimap constraints containers mtl random recursion-schemes
template-haskell
@@ -4575,29 +4575,6 @@ self: {
}) {};
"Earley" = callPackage
- ({ mkDerivation, base, criterion, deepseq, ListLike, parsec
- , QuickCheck, tasty, tasty-hunit, tasty-quickcheck
- , unordered-containers
- }:
- mkDerivation {
- pname = "Earley";
- version = "0.12.0.0";
- sha256 = "0drkf9jc99vb82h0mb6x8plj1sn0ysdkmq5pqdyz7xq4ghj7srcq";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base ListLike ];
- executableHaskellDepends = [ base unordered-containers ];
- testHaskellDepends = [
- base QuickCheck tasty tasty-hunit tasty-quickcheck
- ];
- benchmarkHaskellDepends = [
- base criterion deepseq ListLike parsec
- ];
- description = "Parsing all context-free grammars using Earley's algorithm";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "Earley_0_12_0_1" = callPackage
({ mkDerivation, base, criterion, deepseq, ListLike, parsec
, QuickCheck, tasty, tasty-hunit, tasty-quickcheck
, unordered-containers
@@ -4618,7 +4595,6 @@ self: {
];
description = "Parsing all context-free grammars using Earley's algorithm";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Ebnf2ps" = callPackage
@@ -4791,23 +4767,6 @@ self: {
}) {};
"EntrezHTTP" = callPackage
- ({ mkDerivation, base, biocore, bytestring, conduit, HTTP
- , http-conduit, hxt, mtl, network, Taxonomy, text, transformers
- }:
- mkDerivation {
- pname = "EntrezHTTP";
- version = "1.0.3";
- sha256 = "16x8z6s17wgf53wmp8lib9nr7a2jsa1n95714q4gqs2vif646p1r";
- libraryHaskellDepends = [
- base biocore bytestring conduit HTTP http-conduit hxt mtl network
- Taxonomy text transformers
- ];
- homepage = "https://github.com/eggzilla/EntrezHTTP";
- description = "Libary to interface with the NCBI Entrez REST service";
- license = stdenv.lib.licenses.gpl3;
- }) {};
-
- "EntrezHTTP_1_0_4" = callPackage
({ mkDerivation, base, biocore, bytestring, conduit, HTTP
, http-conduit, hxt, mtl, network, Taxonomy, text, transformers
}:
@@ -4822,7 +4781,6 @@ self: {
homepage = "https://github.com/eggzilla/EntrezHTTP";
description = "Libary to interface with the NCBI Entrez REST service";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"EnumContainers" = callPackage
@@ -6148,18 +6106,6 @@ self: {
}) {};
"GPipe-GLFW" = callPackage
- ({ mkDerivation, async, base, containers, GLFW-b, GPipe, stm }:
- mkDerivation {
- pname = "GPipe-GLFW";
- version = "1.4.1";
- sha256 = "0is6f58rs68pqnhqr26wj0nsaf2m6x40iaxvlq1w4m62f8n1g1kb";
- libraryHaskellDepends = [ async base containers GLFW-b GPipe stm ];
- homepage = "https://github.com/plredmond/GPipe-GLFW";
- description = "GLFW OpenGL context creation for GPipe";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "GPipe-GLFW_1_4_1_1" = callPackage
({ mkDerivation, async, base, containers, GLFW-b, GPipe, stm }:
mkDerivation {
pname = "GPipe-GLFW";
@@ -6170,7 +6116,6 @@ self: {
homepage = "https://github.com/plredmond/GPipe-GLFW";
description = "GLFW OpenGL context creation for GPipe";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GPipe-TextureLoad" = callPackage
@@ -8533,8 +8478,8 @@ self: {
({ mkDerivation, base, containers }:
mkDerivation {
pname = "HSvm";
- version = "0.1.0.2.89";
- sha256 = "1mb8kclb7631ihj356g5ddf758cnwz9y6r5ck72daa7vndz01aa9";
+ version = "0.1.0.3.22";
+ sha256 = "015b1l2grjx79rvn17nmjnzdc5zh30v30f21svr7a9kn7ic8mb4d";
libraryHaskellDepends = [ base containers ];
description = "Haskell Bindings for libsvm";
license = stdenv.lib.licenses.bsd3;
@@ -8542,39 +8487,6 @@ self: {
}) {};
"HTF" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, array, base
- , base64-bytestring, bytestring, containers, cpphs, Diff, directory
- , filepath, haskell-src, HUnit, lifted-base, monad-control, mtl
- , old-time, pretty, process, QuickCheck, random, regex-compat
- , template-haskell, temporary, text, time, unix
- , unordered-containers, vector, xmlgen
- }:
- mkDerivation {
- pname = "HTF";
- version = "0.13.1.0";
- sha256 = "0iz81pmc5prl0643jg53ywa65h7s16blchpvasnvfvvn47p6kd0w";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson array base base64-bytestring bytestring containers cpphs Diff
- directory haskell-src HUnit lifted-base monad-control mtl old-time
- pretty process QuickCheck random regex-compat text time unix vector
- xmlgen
- ];
- executableHaskellDepends = [
- array base cpphs directory HUnit mtl old-time random text
- ];
- testHaskellDepends = [
- aeson aeson-pretty base bytestring directory filepath HUnit mtl
- process random regex-compat template-haskell temporary text
- unordered-containers
- ];
- homepage = "https://github.com/skogsbaer/HTF/";
- description = "The Haskell Test Framework";
- license = "LGPL";
- }) {};
-
- "HTF_0_13_2_2" = callPackage
({ mkDerivation, aeson, aeson-pretty, array, base
, base64-bytestring, bytestring, containers, cpphs, Diff, directory
, filepath, haskell-src, HUnit, lifted-base, monad-control, mtl
@@ -8605,7 +8517,6 @@ self: {
homepage = "https://github.com/skogsbaer/HTF/";
description = "The Haskell Test Framework";
license = "LGPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HTTP" = callPackage
@@ -8891,14 +8802,14 @@ self: {
}:
mkDerivation {
pname = "HaTeX";
- version = "3.17.3.0";
- sha256 = "1p1nimr7cjn7iizdkpxfr97c8ycz6gpn6jm6qgyllmwp3bnzkial";
+ version = "3.17.3.1";
+ sha256 = "1vq22yf90cxq6a224zw73c1iqqbcsa2swasds605y9kwp9wzf6db";
libraryHaskellDepends = [
base bytestring containers hashable matrix parsec QuickCheck text
transformers wl-pprint-extras
];
testHaskellDepends = [
- base QuickCheck tasty tasty-quickcheck text
+ base parsec QuickCheck tasty tasty-quickcheck text
];
homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md";
description = "The Haskell LaTeX library";
@@ -9280,23 +9191,6 @@ self: {
}) {};
"HaskellNet-SSL" = callPackage
- ({ mkDerivation, base, bytestring, connection, data-default
- , HaskellNet, network, tls
- }:
- mkDerivation {
- pname = "HaskellNet-SSL";
- version = "0.3.3.0";
- sha256 = "1x6miw5ph4qndsy345yym209r5lxsjsmmgyap6x1xjwxjcmlcz8p";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base bytestring connection data-default HaskellNet network tls
- ];
- homepage = "https://github.com/dpwright/HaskellNet-SSL";
- description = "Helpers to connect to SSL/TLS mail servers with HaskellNet";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "HaskellNet-SSL_0_3_4_0" = callPackage
({ mkDerivation, base, bytestring, connection, data-default
, HaskellNet, network, tls
}:
@@ -9311,7 +9205,6 @@ self: {
homepage = "https://github.com/dpwright/HaskellNet-SSL";
description = "Helpers to connect to SSL/TLS mail servers with HaskellNet";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HaskellTorrent" = callPackage
@@ -9898,8 +9791,8 @@ self: {
}:
mkDerivation {
pname = "HsHTSLib";
- version = "1.3.2.1";
- sha256 = "03qxsld5rw3j5wqm9zqfb51msyw22976ga0zibmaxc9slm684lyk";
+ version = "1.3.2.2";
+ sha256 = "0i4lflc8s8byvsc4idh4fm6yzdspx0v4mahwrqrk7i2dbs84fpkw";
libraryHaskellDepends = [
base bytestring bytestring-lexing conduit-combinators containers
inline-c mtl template-haskell
@@ -9960,10 +9853,8 @@ self: {
}:
mkDerivation {
pname = "HsOpenSSL";
- version = "0.11.4.9";
- sha256 = "0y5khy8a1anisa8s1zysz763yg29mr6c9zcx4bjszaba5axyj3za";
- revision = "1";
- editedCabalFile = "0hxqmki50di5vkkfhb684kz3dvqx7gw7cxzdq2h3q10gdjki0avp";
+ version = "0.11.4.11";
+ sha256 = "0dgywjkvzxwpr33l642cw8v2gqn3s8kclg97xs1w8a5pqcg647pp";
setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [
base bytestring integer-gmp network time
@@ -9975,26 +9866,6 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {inherit (pkgs) openssl;};
- "HsOpenSSL_0_11_4_10" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, integer-gmp, network
- , openssl, time
- }:
- mkDerivation {
- pname = "HsOpenSSL";
- version = "0.11.4.10";
- sha256 = "1jlyjyfv421k176y4mjdxgvj3cp2a05xqwy0qlihbf9j385fz0l7";
- setupHaskellDepends = [ base Cabal ];
- libraryHaskellDepends = [
- base bytestring integer-gmp network time
- ];
- librarySystemDepends = [ openssl ];
- testHaskellDepends = [ base bytestring ];
- homepage = "https://github.com/vshabanov/HsOpenSSL";
- description = "Partial OpenSSL binding for Haskell";
- license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs) openssl;};
-
"HsOpenSSL-x509-system" = callPackage
({ mkDerivation, base, bytestring, HsOpenSSL, unix }:
mkDerivation {
@@ -11082,7 +10953,7 @@ self: {
}) {inherit (pkgs) openblasCompat;};
"LDAP" = callPackage
- ({ mkDerivation, base, HUnit, lber, openldap }:
+ ({ mkDerivation, base, HUnit, openldap }:
mkDerivation {
pname = "LDAP";
version = "0.6.11";
@@ -11090,15 +10961,15 @@ self: {
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base ];
- librarySystemDepends = [ lber openldap ];
+ librarySystemDepends = [ openldap ];
executableHaskellDepends = [ base ];
testHaskellDepends = [ base HUnit ];
- testSystemDepends = [ lber openldap ];
+ testSystemDepends = [ openldap ];
homepage = "https://github.com/ezyang/ldap-haskell";
description = "Haskell binding for C LDAP API";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {lber = null; inherit (pkgs) openldap;};
+ }) {inherit (pkgs) openldap;};
"LRU" = callPackage
({ mkDerivation, base, containers, QuickCheck }:
@@ -13043,6 +12914,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "NoHoed" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "NoHoed";
+ version = "0.1.0";
+ sha256 = "1xrdd45rr0b1zi8ig5wjig1dyh2x1va84gqglf10yb5r0x4rzm93";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/pepeiborra/NoHoed";
+ description = "Placeholder package to preserve debug ability via conditional builds";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"NoSlow" = callPackage
({ mkDerivation, array, base, containers, criterion, dph-base
, dph-prim-seq, statistics, storablevector, template-haskell
@@ -15851,8 +15734,8 @@ self: {
({ mkDerivation, base, containers, ghc, ghc-paths }:
mkDerivation {
pname = "SSTG";
- version = "0.1.1.5";
- sha256 = "06rc050abq6vfgn0ylfrycp6m3631ji0mq9jwz5cnlhnrhpzfn5j";
+ version = "0.1.1.7";
+ sha256 = "1qgkqd025cd9q0la36i45kd356n8sxnzgnq40v71sdbv8f7wb4yh";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base containers ghc ghc-paths ];
@@ -16042,20 +15925,23 @@ self: {
}) {};
"SciFlow" = callPackage
- ({ mkDerivation, base, bytestring, cereal, containers, directory
- , exceptions, executable-path, fgl, graphviz, lens, lifted-async
- , mtl, optparse-applicative, rainbow, shelly, split, sqlite-simple
- , template-haskell, text, th-lift, transformers, yaml
+ ({ mkDerivation, aeson, base, bytestring, cereal, cereal-text
+ , containers, data-default-class, directory, exceptions
+ , executable-path, fgl, graphviz, lens, lifted-async, mtl, network
+ , optparse-applicative, rainbow, split, sqlite-simple
+ , template-haskell, temporary, text, th-lift, th-lift-instances
+ , time, transformers, yaml
}:
mkDerivation {
pname = "SciFlow";
- version = "0.5.3.1";
- sha256 = "1w6vdzbcznfkncad1qpigx89r5a469ryszapcvm4bcjpgq20i14d";
+ version = "0.6.0";
+ sha256 = "1b57sa2gx3jj00239sq62qmywjykc80lkk587lwzrdp9w5ycl4sb";
libraryHaskellDepends = [
- base bytestring cereal containers directory exceptions
- executable-path fgl graphviz lens lifted-async mtl
- optparse-applicative rainbow shelly split sqlite-simple
- template-haskell text th-lift transformers yaml
+ aeson base bytestring cereal cereal-text containers
+ data-default-class directory exceptions executable-path fgl
+ graphviz lens lifted-async mtl network optparse-applicative rainbow
+ split sqlite-simple template-haskell temporary text th-lift
+ th-lift-instances time transformers yaml
];
description = "Scientific workflow management system";
license = stdenv.lib.licenses.mit;
@@ -16865,18 +16751,6 @@ self: {
}) {};
"Spock-lucid" = callPackage
- ({ mkDerivation, base, lucid, Spock, transformers }:
- mkDerivation {
- pname = "Spock-lucid";
- version = "0.4.0.0";
- sha256 = "0v7jmfnmxmcqz8c490xb6wikb2rfb4zqjnjx8syw3mvdqpd1mjh9";
- libraryHaskellDepends = [ base lucid Spock transformers ];
- homepage = "http://github.com/aelve/Spock-lucid";
- description = "Lucid support for Spock";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "Spock-lucid_0_4_0_1" = callPackage
({ mkDerivation, base, lucid, Spock, transformers }:
mkDerivation {
pname = "Spock-lucid";
@@ -16886,7 +16760,6 @@ self: {
homepage = "http://github.com/aelve/Spock-lucid";
description = "Lucid support for Spock";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Spock-worker" = callPackage
@@ -17432,21 +17305,6 @@ self: {
}) {};
"Taxonomy" = callPackage
- ({ mkDerivation, aeson, base, bytestring, either-unwrap, fgl
- , graphviz, parsec, text, vector
- }:
- mkDerivation {
- pname = "Taxonomy";
- version = "1.0.2";
- sha256 = "076j2jj45insbj9v98iygm7ighk210xja3dm8ar9jnjmrpar8gil";
- libraryHaskellDepends = [
- aeson base bytestring either-unwrap fgl graphviz parsec text vector
- ];
- description = "Libary for parsing, processing and vizualization of taxonomy data";
- license = stdenv.lib.licenses.gpl3;
- }) {};
-
- "Taxonomy_1_0_3" = callPackage
({ mkDerivation, aeson, base, bytestring, either-unwrap, fgl
, graphviz, parsec, text, vector
}:
@@ -17459,7 +17317,6 @@ self: {
];
description = "Libary for parsing, processing and vizualization of taxonomy data";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TaxonomyTools" = callPackage
@@ -18339,8 +18196,8 @@ self: {
}:
mkDerivation {
pname = "Villefort";
- version = "0.1.1.1";
- sha256 = "0zba13j6va4bnyxgkp7yq5y7mvyw94x0932kf75b33bw3pan04hz";
+ version = "0.1.1.4";
+ sha256 = "0rdklpqa0g7fv2ah8khbgjngaxp8lfvf9i4wlmbg1755r6irhz9a";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -19336,6 +19193,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Yampa_0_10_6_1" = callPackage
+ ({ mkDerivation, base, deepseq, hcwiid, random, SDL }:
+ mkDerivation {
+ pname = "Yampa";
+ version = "0.10.6.1";
+ sha256 = "108rn0hc5xqw8pmadaddgawxpsznhjg8kbn9m30lwz04hv2ivjrv";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base deepseq random ];
+ executableHaskellDepends = [ base deepseq hcwiid random SDL ];
+ testHaskellDepends = [ base ];
+ homepage = "http://www.haskell.org/haskellwiki/Yampa";
+ description = "Library for programming hybrid systems";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"Yampa-core" = callPackage
({ mkDerivation, base, deepseq, random, vector-space }:
mkDerivation {
@@ -19807,6 +19681,8 @@ self: {
pname = "accelerate-bignum";
version = "0.1.0.0";
sha256 = "199h9vq62hxs7pdwch8xh8zcx9kz9x6195yi389k1va6srkw863w";
+ revision = "1";
+ editedCabalFile = "0gwfw6bzy00spi0nm82p63fjc7sigk733ysnla64znqilca8nrmv";
libraryHaskellDepends = [
accelerate accelerate-llvm accelerate-llvm-native
accelerate-llvm-ptx base ghc-prim llvm-hs-pure template-haskell
@@ -19952,8 +19828,8 @@ self: {
pname = "accelerate-fft";
version = "1.0.0.0";
sha256 = "1qw4ln9xamv86lvb7y5xfzs12br4jbszai17jlagffmc6rnlhjkq";
- revision = "1";
- editedCabalFile = "101gc2wjisilgs0mib8l31sy6m6w04c0jp0zzr20p5j1gr3qjlnd";
+ revision = "2";
+ editedCabalFile = "0vycxsl60rd87ypcbmfkj1sjl4bz60n5lj4bdv6p7f8qpa1hgya1";
libraryHaskellDepends = [
accelerate accelerate-llvm accelerate-llvm-native
accelerate-llvm-ptx base bytestring carray cuda cufft fft
@@ -20037,6 +19913,8 @@ self: {
pname = "accelerate-io";
version = "1.0.0.0";
sha256 = "0h5nr0n1cdch20ld7s7mchr7wciasac4rmf4w2z61a48nj2knayi";
+ revision = "1";
+ editedCabalFile = "0k8zwri66bsjiarmp0s4lvv67ja8ip8qg5kzhzw17n22m21ww0dq";
libraryHaskellDepends = [
accelerate array base bmp bytestring repa vector
];
@@ -20919,27 +20797,6 @@ self: {
}) {};
"ad" = callPackage
- ({ mkDerivation, array, base, Cabal, cabal-doctest, comonad
- , containers, criterion, data-reify, directory, doctest, erf
- , filepath, free, nats, reflection, transformers
- }:
- mkDerivation {
- pname = "ad";
- version = "4.3.3";
- sha256 = "0anvcw3zdslmbjra8h75s5fwcl7d1i79ydvdcd0vwz6m0cbqrf3j";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- array base comonad containers data-reify erf free nats reflection
- transformers
- ];
- testHaskellDepends = [ base directory doctest filepath ];
- benchmarkHaskellDepends = [ base criterion erf ];
- homepage = "http://github.com/ekmett/ad";
- description = "Automatic Differentiation";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "ad_4_3_4" = callPackage
({ mkDerivation, array, base, Cabal, cabal-doctest, comonad
, containers, criterion, data-reify, directory, doctest, erf
, filepath, free, nats, reflection, transformers
@@ -20960,7 +20817,6 @@ self: {
homepage = "http://github.com/ekmett/ad";
description = "Automatic Differentiation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"adaptive-containers" = callPackage
@@ -21440,7 +21296,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "aeson-diff" = callPackage
+ "aeson-diff_1_1_0_2" = callPackage
({ mkDerivation, aeson, base, bytestring, directory, doctest
, edit-distance-vector, filepath, Glob, hashable, hlint, mtl
, optparse-applicative, QuickCheck, quickcheck-instances
@@ -21466,6 +21322,35 @@ self: {
homepage = "https://github.com/thsutton/aeson-diff";
description = "Extract and apply patches to JSON documents";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "aeson-diff" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, directory, doctest
+ , edit-distance-vector, filepath, Glob, hashable, hlint, mtl
+ , optparse-applicative, QuickCheck, quickcheck-instances
+ , scientific, text, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "aeson-diff";
+ version = "1.1.0.3";
+ sha256 = "13fbb270zaljgimy6pnyy2n8iwcxnb2pgs9b55qr94k3jnrjnl0g";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring edit-distance-vector hashable mtl scientific
+ text unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring optparse-applicative text
+ ];
+ testHaskellDepends = [
+ aeson base bytestring directory doctest filepath Glob hlint
+ QuickCheck quickcheck-instances text unordered-containers vector
+ ];
+ homepage = "https://github.com/thsutton/aeson-diff";
+ description = "Extract and apply patches to JSON documents";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"aeson-extra" = callPackage
@@ -22549,20 +22434,6 @@ self: {
}) {inherit (pkgs) openal;};
"alarmclock" = callPackage
- ({ mkDerivation, async, base, clock, stm, time, unbounded-delays }:
- mkDerivation {
- pname = "alarmclock";
- version = "0.4.0.2";
- sha256 = "077950dzy89042l8dbm1vc7mvqrkbsdmrq3cj78j3lfyr4m42k58";
- libraryHaskellDepends = [
- async base clock stm time unbounded-delays
- ];
- homepage = "https://bitbucket.org/davecturner/alarmclock";
- description = "Wake up and perform an action at a certain time";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "alarmclock_0_4_0_3" = callPackage
({ mkDerivation, async, base, clock, stm, time, unbounded-delays }:
mkDerivation {
pname = "alarmclock";
@@ -22574,7 +22445,6 @@ self: {
homepage = "https://bitbucket.org/davecturner/alarmclock";
description = "Wake up and perform an action at a certain time";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"alea" = callPackage
@@ -22798,22 +22668,6 @@ self: {
}) {};
"algebraic-graphs" = callPackage
- ({ mkDerivation, array, base, containers, criterion, extra
- , QuickCheck
- }:
- mkDerivation {
- pname = "algebraic-graphs";
- version = "0.0.4";
- sha256 = "1d8f92vlq7j0k578qkx92ffavwjxmdry8zncjm0vmvkl3nb4i4zm";
- libraryHaskellDepends = [ array base containers ];
- testHaskellDepends = [ base containers extra QuickCheck ];
- benchmarkHaskellDepends = [ base containers criterion ];
- homepage = "https://github.com/snowleopard/alga";
- description = "A library for algebraic graph construction and transformation";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "algebraic-graphs_0_0_5" = callPackage
({ mkDerivation, array, base, containers, criterion, extra
, QuickCheck
}:
@@ -22827,7 +22681,6 @@ self: {
homepage = "https://github.com/snowleopard/alga";
description = "A library for algebraic graph construction and transformation";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"algebraic-prelude" = callPackage
@@ -25578,19 +25431,6 @@ self: {
}) {};
"ansigraph" = callPackage
- ({ mkDerivation, ansi-terminal, base, hspec, QuickCheck }:
- mkDerivation {
- pname = "ansigraph";
- version = "0.3.0.2";
- sha256 = "082sy0fwhr41qg9q3igc31rc56sfw1lijqnahlv4fl87f52zrknk";
- libraryHaskellDepends = [ ansi-terminal base ];
- testHaskellDepends = [ base hspec QuickCheck ];
- homepage = "https://github.com/BlackBrane/ansigraph";
- description = "Terminal-based graphing via ANSI and Unicode";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "ansigraph_0_3_0_3" = callPackage
({ mkDerivation, ansi-terminal, base, hspec, QuickCheck }:
mkDerivation {
pname = "ansigraph";
@@ -25601,7 +25441,6 @@ self: {
homepage = "https://github.com/BlackBrane/ansigraph";
description = "Terminal-based graphing via ANSI and Unicode";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"antagonist" = callPackage
@@ -26600,29 +26439,6 @@ self: {
}) {};
"approximate" = callPackage
- ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal
- , comonad, deepseq, directory, doctest, filepath, ghc-prim
- , hashable, lens, log-domain, pointed, safecopy, semigroupoids
- , semigroups, simple-reflect, vector
- }:
- mkDerivation {
- pname = "approximate";
- version = "0.3";
- sha256 = "0zg94yqbm6iasjkf8bxz1bnwc3gx5lh6603cvab8rrxz4xm7k27j";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base binary bytes cereal comonad deepseq ghc-prim hashable lens
- log-domain pointed safecopy semigroupoids semigroups vector
- ];
- testHaskellDepends = [
- base directory doctest filepath semigroups simple-reflect
- ];
- homepage = "http://github.com/analytics/approximate/";
- description = "Approximate discrete values and numbers";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "approximate_0_3_1" = callPackage
({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal
, comonad, deepseq, directory, doctest, filepath, ghc-prim
, hashable, lens, log-domain, pointed, safecopy, semigroupoids
@@ -26643,7 +26459,6 @@ self: {
homepage = "http://github.com/analytics/approximate/";
description = "Approximate discrete values and numbers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"approximate-equality" = callPackage
@@ -27350,23 +27165,6 @@ self: {
}) {};
"arrowp-qq" = callPackage
- ({ mkDerivation, array, base, containers, haskell-src
- , template-haskell, transformers
- }:
- mkDerivation {
- pname = "arrowp-qq";
- version = "0.1";
- sha256 = "05cj6drvnk74bcjkr1pqj65c57y09gwmribii887jvg6p77abkgv";
- libraryHaskellDepends = [
- array base containers haskell-src template-haskell transformers
- ];
- homepage = "http://www.haskell.org/arrows/";
- description = "quasiquoter translating arrow notation into Haskell 98";
- license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "arrowp-qq_0_1_1" = callPackage
({ mkDerivation, array, base, containers, haskell-src
, template-haskell, transformers
}:
@@ -27652,6 +27450,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "asn1-codec" = callPackage
+ ({ mkDerivation, aeson, base, base16-bytestring, bytestring
+ , containers, contravariant, cryptonite, directory, hashable, HUnit
+ , integer-gmp, memory, network, pretty, stm, test-framework
+ , test-framework-hunit, text, vector
+ }:
+ mkDerivation {
+ pname = "asn1-codec";
+ version = "0.1.0";
+ sha256 = "1l3ka458aggj04zn2sn3p1mzkrjsgy8p7rg45031cxr401msks5b";
+ libraryHaskellDepends = [
+ base bytestring containers contravariant cryptonite hashable
+ integer-gmp memory network pretty stm text vector
+ ];
+ testHaskellDepends = [
+ aeson base base16-bytestring bytestring directory HUnit
+ test-framework test-framework-hunit text vector
+ ];
+ homepage = "https://github.com/andrewthad/asn1-codec";
+ description = "Encode and decode ASN.1";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"asn1-data" = callPackage
({ mkDerivation, base, bytestring, cereal, mtl, text }:
mkDerivation {
@@ -28361,18 +28182,6 @@ self: {
}) {};
"atomic-primops" = callPackage
- ({ mkDerivation, base, ghc-prim, primitive }:
- mkDerivation {
- pname = "atomic-primops";
- version = "0.8.0.4";
- sha256 = "0r4qvf9cgv5a2h0dk6blxhahk808pmihma9k2ym3h1cchj9y7qa7";
- libraryHaskellDepends = [ base ghc-prim primitive ];
- homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
- description = "A safe approach to CAS and other atomic ops in Haskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "atomic-primops_0_8_1" = callPackage
({ mkDerivation, base, ghc-prim, primitive }:
mkDerivation {
pname = "atomic-primops";
@@ -28382,7 +28191,6 @@ self: {
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "A safe approach to CAS and other atomic ops in Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"atomic-primops-foreign" = callPackage
@@ -29097,23 +28905,6 @@ self: {
}) {};
"autoexporter" = callPackage
- ({ mkDerivation, base, Cabal, directory, filepath }:
- mkDerivation {
- pname = "autoexporter";
- version = "1.1.1";
- sha256 = "004wbgdnyxdwrx9z6l9920m63s1xs61q5ilazyg4f2mqmm9svw6j";
- revision = "1";
- editedCabalFile = "0a4ffbggz52wc0ki44bvqdsiqpbydsbhh0cc9vjw8lhja1y8fpif";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base Cabal directory filepath ];
- executableHaskellDepends = [ base ];
- homepage = "https://github.com/tfausak/autoexporter#readme";
- description = "Automatically re-export modules";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "autoexporter_1_1_2" = callPackage
({ mkDerivation, base, Cabal, directory, filepath }:
mkDerivation {
pname = "autoexporter";
@@ -29126,7 +28917,6 @@ self: {
homepage = "https://github.com/tfausak/autoexporter#readme";
description = "Automatically re-export modules";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"autom" = callPackage
@@ -30069,8 +29859,8 @@ self: {
}:
mkDerivation {
pname = "axiom";
- version = "0.4.5";
- sha256 = "0z08zgqab3i3ipwry828fy5j1m1r5n6lw4mjsria07crq7ny8z3i";
+ version = "0.4.6";
+ sha256 = "0i78rbkzmlfr9454m6ax1wk2f76ks5mc2qp0zqir0ds1x2614rc3";
libraryHaskellDepends = [
base bytestring containers directory ghcjs-perch mtl transformers
transient transient-universe
@@ -30433,17 +30223,16 @@ self: {
}:
mkDerivation {
pname = "ballast";
- version = "0.1.0.0";
- sha256 = "1skzfj5l4j1jgpc0dlqmwpysa4bf9f9jpllz6zqb17zknicd77qf";
- revision = "1";
- editedCabalFile = "0lcxvxrpsbr5ibcwda6vrhrsc55grwabfikw34bc9r1rv293399i";
+ version = "0.2.0.0";
+ sha256 = "1l5d4ngbvmdba2gm2819mf0lb0bs8c19gvjqkxgb59i9y6qb0n6n";
libraryHaskellDepends = [
aeson base bytestring either-unwrap hspec hspec-expectations
http-client http-client-tls http-types text time transformers
unordered-containers utf8-string vector
];
testHaskellDepends = [
- base bytestring either-unwrap hspec hspec-expectations text time
+ base bytestring either-unwrap hspec hspec-expectations http-client
+ http-client-tls text time
];
homepage = "https://github.com/alexeyzab/ballast#readme";
description = "Shipwire API client";
@@ -30625,19 +30414,6 @@ self: {
}) {};
"bank-holidays-england" = callPackage
- ({ mkDerivation, base, containers, hspec, QuickCheck, time }:
- mkDerivation {
- pname = "bank-holidays-england";
- version = "0.1.0.5";
- sha256 = "0q1pm1bx7nz3vxrn04ikswjnbql1mny4shyv92ps6bkn29wdn686";
- libraryHaskellDepends = [ base containers time ];
- testHaskellDepends = [ base containers hspec QuickCheck time ];
- homepage = "https://bitbucket.org/davecturner/bank-holidays-england";
- description = "Calculation of bank holidays in England and Wales";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "bank-holidays-england_0_1_0_6" = callPackage
({ mkDerivation, base, containers, hspec, QuickCheck, time }:
mkDerivation {
pname = "bank-holidays-england";
@@ -30648,7 +30424,6 @@ self: {
homepage = "https://bitbucket.org/davecturner/bank-holidays-england";
description = "Calculation of bank holidays in England and Wales";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"banwords" = callPackage
@@ -31572,24 +31347,6 @@ self: {
}) {};
"bench" = callPackage
- ({ mkDerivation, base, criterion, optparse-applicative, silently
- , text, turtle
- }:
- mkDerivation {
- pname = "bench";
- version = "1.0.5";
- sha256 = "0fm92vwavgnh7pm0491vy5x21wylckga4a2n765nbw5hzmk9pz92";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- base criterion optparse-applicative silently text turtle
- ];
- homepage = "https://github.com/Gabriel439/bench";
- description = "Command-line benchmark tool";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "bench_1_0_6" = callPackage
({ mkDerivation, base, criterion, optparse-applicative, silently
, text, turtle
}:
@@ -31602,10 +31359,9 @@ self: {
executableHaskellDepends = [
base criterion optparse-applicative silently text turtle
];
- homepage = "https://github.com/Gabriel439/bench";
+ homepage = "http://github.com/Gabriel439/bench";
description = "Command-line benchmark tool";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"benchmark-function" = callPackage
@@ -31621,21 +31377,6 @@ self: {
}) {};
"benchpress" = callPackage
- ({ mkDerivation, base, bytestring, mtl, time }:
- mkDerivation {
- pname = "benchpress";
- version = "0.2.2.9";
- sha256 = "1asabacjv8x61w6qpkqlxr5w1j6fcppiva1k2vrsr8brvsyrdihm";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base mtl time ];
- executableHaskellDepends = [ base bytestring ];
- homepage = "https://github.com/WillSewell/benchpress";
- description = "Micro-benchmarking with detailed statistics";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "benchpress_0_2_2_10" = callPackage
({ mkDerivation, base, bytestring, mtl, time }:
mkDerivation {
pname = "benchpress";
@@ -31648,7 +31389,6 @@ self: {
homepage = "https://github.com/WillSewell/benchpress";
description = "Micro-benchmarking with detailed statistics";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bencode" = callPackage
@@ -32280,26 +32020,6 @@ self: {
}) {};
"binary-conduit" = callPackage
- ({ mkDerivation, base, binary, bytestring, conduit, hspec
- , QuickCheck, quickcheck-assertions, resourcet, vector
- }:
- mkDerivation {
- pname = "binary-conduit";
- version = "1.2.4.1";
- sha256 = "10nalqf3zhg49b5drhw4y8zv9c3nsnlbc7bvw9la8vgzpihbnp24";
- libraryHaskellDepends = [
- base binary bytestring conduit resourcet vector
- ];
- testHaskellDepends = [
- base binary bytestring conduit hspec QuickCheck
- quickcheck-assertions resourcet
- ];
- homepage = "http://github.com/qnikst/binary-conduit/";
- description = "data serialization/deserialization conduit library";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "binary-conduit_1_2_5" = callPackage
({ mkDerivation, base, binary, bytestring, conduit, hspec
, QuickCheck, quickcheck-assertions, resourcet, vector
}:
@@ -32317,7 +32037,6 @@ self: {
homepage = "http://github.com/qnikst/binary-conduit/";
description = "data serialization/deserialization conduit library";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"binary-derive" = callPackage
@@ -33238,13 +32957,13 @@ self: {
({ mkDerivation, base, bindings-DSL, g15 }:
mkDerivation {
pname = "bindings-libg15";
- version = "0.1.0.0";
- sha256 = "0vaayi9vnis9d35yrym67ihghfqyz4d13h86m3b27znwk7fqsz0d";
+ version = "0.2.0.0";
+ sha256 = "1dy4z0m7r7sicqzx4lfibi4nbx6vaq31x93h38v90vn5i4n903vs";
libraryHaskellDepends = [ base bindings-DSL ];
librarySystemDepends = [ g15 ];
homepage = "https://github.com/Xandaros/bindings-libg15#readme";
description = "Bindings to libg15";
- license = stdenv.lib.licenses.bsd3;
+ license = stdenv.lib.licenses.bsd2;
hydraPlatforms = stdenv.lib.platforms.none;
}) {g15 = null;};
@@ -35786,19 +35505,6 @@ self: {
}) {};
"bookkeeping" = callPackage
- ({ mkDerivation, base, dlist, doctest, Glob, mtl, text, time }:
- mkDerivation {
- pname = "bookkeeping";
- version = "0.2.1.1";
- sha256 = "1dbzw6q35v35xvrcs9q2digiv0r8h32f4yby2kw5m8qiba3cf86r";
- libraryHaskellDepends = [ base dlist mtl text time ];
- testHaskellDepends = [ base doctest Glob ];
- homepage = "https://github.com/arowM/haskell-bookkeeping#readme";
- description = "A module for bookkeeping by double entry";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "bookkeeping_0_2_1_4" = callPackage
({ mkDerivation, base, dlist, doctest, Glob, mtl, text, time }:
mkDerivation {
pname = "bookkeeping";
@@ -35809,7 +35515,6 @@ self: {
homepage = "https://github.com/arowM/haskell-bookkeeping#readme";
description = "A module for bookkeeping by double entry";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bookkeeping-jp" = callPackage
@@ -35959,17 +35664,6 @@ self: {
}) {};
"boomerang" = callPackage
- ({ mkDerivation, base, mtl, template-haskell, text }:
- mkDerivation {
- pname = "boomerang";
- version = "1.4.5.2";
- sha256 = "1gm2l34f5vzxh78vx02hwg7b19q3qvynff0y8kss5svx83a4bpl6";
- libraryHaskellDepends = [ base mtl template-haskell text ];
- description = "Library for invertible parsing and printing";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "boomerang_1_4_5_3" = callPackage
({ mkDerivation, base, mtl, template-haskell, text }:
mkDerivation {
pname = "boomerang";
@@ -35978,7 +35672,6 @@ self: {
libraryHaskellDepends = [ base mtl template-haskell text ];
description = "Library for invertible parsing and printing";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"boomslang" = callPackage
@@ -36117,32 +35810,6 @@ self: {
}) {};
"bound" = callPackage
- ({ mkDerivation, base, bifunctors, binary, bytes, Cabal
- , cabal-doctest, cereal, comonad, deepseq, deriving-compat, doctest
- , functor-classes-compat, hashable, mmorph, profunctors
- , template-haskell, transformers, transformers-compat, vector, void
- }:
- mkDerivation {
- pname = "bound";
- version = "2";
- sha256 = "0z63k6kkj43rvwzsy7rbrxz97f8clq87ajbdv7768xziw4mb022x";
- revision = "1";
- editedCabalFile = "1sdsshbvhv955ncgxygzl4mfkkk76rdkilwc70w04j9jmbvj5p6j";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base bifunctors binary bytes cereal comonad deepseq hashable mmorph
- profunctors template-haskell transformers transformers-compat
- ];
- testHaskellDepends = [
- base deriving-compat doctest functor-classes-compat transformers
- transformers-compat vector void
- ];
- homepage = "http://github.com/ekmett/bound/";
- description = "Making de Bruijn Succ Less";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "bound_2_0_1" = callPackage
({ mkDerivation, base, bifunctors, binary, bytes, Cabal
, cabal-doctest, cereal, comonad, deepseq, deriving-compat, doctest
, functor-classes-compat, hashable, mmorph, profunctors
@@ -36166,7 +35833,6 @@ self: {
homepage = "http://github.com/ekmett/bound/";
description = "Making de Bruijn Succ Less";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bound-gen" = callPackage
@@ -38560,12 +38226,13 @@ self: {
"cabal-plan" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, base16-bytestring
- , bytestring, containers, directory, filepath, mtl, text
+ , bytestring, containers, directory, filepath, mtl
+ , optparse-applicative, text
}:
mkDerivation {
pname = "cabal-plan";
- version = "0.1.1.0";
- sha256 = "0sgaysfgv6z0mvyvzrly4xmj273mwq96zygbq6j5vjhqp1zdacxa";
+ version = "0.2.0.0";
+ sha256 = "1hxsrk6avv69gqajx94n2nzlivhy3ywwmlx6c0w2nnaz854j1ya0";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -38573,7 +38240,8 @@ self: {
filepath text
];
executableHaskellDepends = [
- ansi-terminal base bytestring containers mtl text
+ ansi-terminal base bytestring containers mtl optparse-applicative
+ text
];
homepage = "https://github.com/hvr/cabal-plan";
description = "Library and utiltity for processing cabal's plan.json file";
@@ -38613,24 +38281,6 @@ self: {
}) {};
"cabal-rpm" = callPackage
- ({ mkDerivation, base, Cabal, directory, filepath, old-locale
- , process, time, unix
- }:
- mkDerivation {
- pname = "cabal-rpm";
- version = "0.11.1";
- sha256 = "1pqj1i22icx6fzhfy1nmkcnfazakx0240i9dg6pm9q0g97cqaknv";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- base Cabal directory filepath old-locale process time unix
- ];
- homepage = "https://github.com/juhp/cabal-rpm";
- description = "RPM packaging tool for Haskell Cabal-based packages";
- license = stdenv.lib.licenses.gpl3;
- }) {};
-
- "cabal-rpm_0_11_2" = callPackage
({ mkDerivation, base, Cabal, directory, filepath, old-locale
, process, time, unix
}:
@@ -38646,7 +38296,6 @@ self: {
homepage = "https://github.com/juhp/cabal-rpm";
description = "RPM packaging tool for Haskell Cabal-based packages";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-scripts" = callPackage
@@ -39257,6 +38906,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cairo-canvas" = callPackage
+ ({ mkDerivation, base, cairo, linear, mtl, random, time }:
+ mkDerivation {
+ pname = "cairo-canvas";
+ version = "0.1.0.0";
+ sha256 = "11qi0lnd8wlv2zz44lvd6336a6iz634n2rfk69qsh72vxrb3hd99";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base cairo linear mtl random time ];
+ description = "Simpler drawing API for Cairo";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"cake" = callPackage
({ mkDerivation, array, base, binary, bytestring, cmdargs
, containers, derive, directory, filepath, mtl, parsek, process
@@ -40459,24 +40121,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "cassava_0_5_0_0" = callPackage
+ "cassava_0_5_1_0" = callPackage
({ mkDerivation, array, attoparsec, base, bytestring
, bytestring-builder, containers, deepseq, hashable, HUnit, Only
- , QuickCheck, test-framework, test-framework-hunit
- , test-framework-quickcheck2, text, unordered-containers, vector
+ , QuickCheck, quickcheck-instances, scientific, test-framework
+ , test-framework-hunit, test-framework-quickcheck2, text
+ , unordered-containers, vector
}:
mkDerivation {
pname = "cassava";
- version = "0.5.0.0";
- sha256 = "1fdydyl2qn8qgjcrdij3gff13zwzp2fqmr3a8g0j35qfhq4lnzl4";
+ version = "0.5.1.0";
+ sha256 = "0xs2c5lpy0g5lsmp2cx0dm5lnxij7cgry6xd5gsn3bfdlap8lb3n";
libraryHaskellDepends = [
array attoparsec base bytestring bytestring-builder containers
- deepseq hashable Only text unordered-containers vector
+ deepseq hashable Only scientific text unordered-containers vector
];
testHaskellDepends = [
- attoparsec base bytestring hashable HUnit QuickCheck test-framework
- test-framework-hunit test-framework-quickcheck2 text
- unordered-containers vector
+ attoparsec base bytestring hashable HUnit QuickCheck
+ quickcheck-instances scientific test-framework test-framework-hunit
+ test-framework-quickcheck2 text unordered-containers vector
];
homepage = "https://github.com/hvr/cassava";
description = "A CSV parsing and encoding library";
@@ -42106,6 +41769,19 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "choice_0_2_2" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "choice";
+ version = "0.2.2";
+ sha256 = "0qcyf6nqi0nyhbf3xwyib95y29j5ir94d5vg449mkpr92crf8ryk";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/mboes/choice#readme";
+ description = "A solution to boolean blindness";
+ license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"choose" = callPackage
({ mkDerivation, base, MonadRandom }:
mkDerivation {
@@ -43792,6 +43468,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "clingo" = callPackage
+ ({ mkDerivation, base, bifunctors, clingo, deepseq, exceptions
+ , hashable, mtl, StateVar, text, transformers, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "clingo";
+ version = "0.2.0.0";
+ sha256 = "1swc0fkzfsrg29jcncaskj167j0bk4y21irna8p7v9b1wp4yhnc3";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bifunctors deepseq exceptions hashable mtl StateVar text
+ transformers wl-pprint-text
+ ];
+ librarySystemDepends = [ clingo ];
+ homepage = "https://github.com/tsahyt/clingo-haskell#readme";
+ description = "Haskell bindings to the Clingo ASP solver";
+ license = stdenv.lib.licenses.mit;
+ }) {clingo = null;};
+
"clippard" = callPackage
({ mkDerivation, base, process }:
mkDerivation {
@@ -44414,24 +44110,6 @@ self: {
}) {};
"cmark" = callPackage
- ({ mkDerivation, base, blaze-html, bytestring, cheapskate
- , criterion, discount, HUnit, markdown, sundown, text
- }:
- mkDerivation {
- pname = "cmark";
- version = "0.5.5.1";
- sha256 = "03asbd7vnjjnxppvaxz8jinkafh53kqrhp1ji051yq8amgr63d32";
- libraryHaskellDepends = [ base bytestring text ];
- testHaskellDepends = [ base HUnit text ];
- benchmarkHaskellDepends = [
- base blaze-html cheapskate criterion discount markdown sundown text
- ];
- homepage = "https://github.com/jgm/cmark-hs";
- description = "Fast, accurate CommonMark (Markdown) parser and renderer";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "cmark_0_5_6" = callPackage
({ mkDerivation, base, blaze-html, bytestring, cheapskate
, criterion, discount, HUnit, markdown, sundown, text
}:
@@ -44447,7 +44125,6 @@ self: {
homepage = "https://github.com/jgm/cmark-hs";
description = "Fast, accurate CommonMark (Markdown) parser and renderer";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cmark-gfm" = callPackage
@@ -45428,6 +45105,8 @@ self: {
pname = "colour-accelerate";
version = "0.1.0.0";
sha256 = "1clcn0ipcrifcxqqb72k1xnga005v1ih79q8164ycsh2hgkdm4ij";
+ revision = "2";
+ editedCabalFile = "0izp44hlzg267mi2hrf96mfzpyvk8jp0b0p6y9lb1vs624a1gy4c";
libraryHaskellDepends = [ accelerate base ];
homepage = "https://github.com/tmcdonell/colour-accelerate";
description = "Working with colours in Accelerate";
@@ -45774,26 +45453,6 @@ self: {
}) {};
"comonad" = callPackage
- ({ mkDerivation, base, Cabal, cabal-doctest, containers
- , contravariant, distributive, doctest, semigroups, tagged
- , transformers, transformers-compat
- }:
- mkDerivation {
- pname = "comonad";
- version = "5.0.1";
- sha256 = "0ga67ynh1j4ylbn3awjh7iga09fypbh4fsa21mylcf4xgmlzs7sn";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base containers contravariant distributive semigroups tagged
- transformers transformers-compat
- ];
- testHaskellDepends = [ base doctest ];
- homepage = "http://github.com/ekmett/comonad/";
- description = "Comonads";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "comonad_5_0_2" = callPackage
({ mkDerivation, base, Cabal, cabal-doctest, containers
, contravariant, distributive, doctest, semigroups, tagged
, transformers, transformers-compat
@@ -45813,7 +45472,6 @@ self: {
homepage = "http://github.com/ekmett/comonad/";
description = "Comonads";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"comonad-extras" = callPackage
@@ -45978,18 +45636,6 @@ self: {
}) {};
"compactmap" = callPackage
- ({ mkDerivation, base, containers, hspec, QuickCheck, vector }:
- mkDerivation {
- pname = "compactmap";
- version = "0.1.4.2";
- sha256 = "1v7ndhp36sx67r3f6sj5iiqs2sfqx4niidy3hfhvnillyb181z9n";
- libraryHaskellDepends = [ base vector ];
- testHaskellDepends = [ base containers hspec QuickCheck ];
- description = "A read-only memory-efficient key-value store";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "compactmap_0_1_4_2_1" = callPackage
({ mkDerivation, base, containers, hspec, QuickCheck, vector }:
mkDerivation {
pname = "compactmap";
@@ -45999,7 +45645,6 @@ self: {
testHaskellDepends = [ base containers hspec QuickCheck ];
description = "A read-only memory-efficient key-value store";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"compare-type" = callPackage
@@ -46102,29 +45747,6 @@ self: {
}) {};
"compensated" = callPackage
- ({ mkDerivation, base, bifunctors, binary, bytes, Cabal
- , cabal-doctest, cereal, comonad, deepseq, distributive, doctest
- , generic-deriving, hashable, lens, log-domain, safecopy
- , semigroupoids, semigroups, simple-reflect, vector
- }:
- mkDerivation {
- pname = "compensated";
- version = "0.7.1";
- sha256 = "05vpx3jqb8m1naz1ka88kl2jfcf9snfhizb5mg6z2vf1w4axj7w6";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base bifunctors binary bytes cereal comonad deepseq distributive
- hashable lens log-domain safecopy semigroupoids semigroups vector
- ];
- testHaskellDepends = [
- base doctest generic-deriving semigroups simple-reflect
- ];
- homepage = "http://github.com/analytics/compensated/";
- description = "Compensated floating-point arithmetic";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "compensated_0_7_2" = callPackage
({ mkDerivation, base, bifunctors, binary, bytes, Cabal
, cabal-doctest, cereal, comonad, deepseq, distributive, doctest
, generic-deriving, hashable, lens, log-domain, safecopy
@@ -46145,7 +45767,6 @@ self: {
homepage = "http://github.com/analytics/compensated/";
description = "Compensated floating-point arithmetic";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"competition" = callPackage
@@ -46421,8 +46042,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "composition-prelude";
- version = "0.1.0.1";
- sha256 = "0a020wl2i84f30y21yywdb4qhr3a1lrjmmcw25kfjg011gdxggf4";
+ version = "0.1.0.4";
+ sha256 = "1246cp3b8rg923qd9nvar5h9ph2zlbgsxn08xl408fj0cp1l2l3p";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/vmchale/composition-prelude#readme";
description = "Higher-order function combinators";
@@ -46721,37 +46342,31 @@ self: {
, concrete-haskell-autogen, containers, directory, filepath
, hashable, megaparsec, monad-extras, mtl, network
, optparse-generic, path, path-io, process, QuickCheck, scientific
- , tar, text, thrift, time, unordered-containers, uuid, vector, zip
- , zlib
+ , stm, tar, text, thrift, time, unordered-containers, uuid, vector
+ , zip, zlib
}:
mkDerivation {
pname = "concrete-haskell";
- version = "0.1.0.14";
- sha256 = "1qmnmwdk1gz6kn35j150xgdz3fiz895l3qn1km11i6g3ns46rjvj";
+ version = "0.1.0.15";
+ sha256 = "1g6nqr82gr5937irjs2h6ybp024k6gzpmpx1lsri8yw70kxgryjl";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base binary bytestring bzlib concrete-haskell-autogen containers
directory filepath hashable megaparsec monad-extras mtl network
- optparse-generic path path-io process QuickCheck scientific tar
+ optparse-generic path path-io process QuickCheck scientific stm tar
text thrift time unordered-containers uuid vector zip zlib
];
executableHaskellDepends = [
base binary bytestring bzlib concrete-haskell-autogen containers
directory filepath hashable megaparsec monad-extras mtl network
- optparse-generic path path-io process QuickCheck scientific tar
+ optparse-generic path path-io process QuickCheck scientific stm tar
text thrift time unordered-containers uuid vector zip zlib
];
testHaskellDepends = [
base binary bytestring bzlib concrete-haskell-autogen containers
directory filepath hashable megaparsec monad-extras mtl network
- optparse-generic path path-io process QuickCheck scientific tar
- text thrift time unordered-containers uuid vector zip zlib
- ];
- benchmarkHaskellDepends = [
- base binary bytestring bzlib concrete-haskell-autogen containers
- directory filepath hashable megaparsec monad-extras mtl network
- optparse-generic path path-io process QuickCheck scientific tar
+ optparse-generic path path-io process QuickCheck scientific stm tar
text thrift time unordered-containers uuid vector zip zlib
];
homepage = "https://github.com/hltcoe";
@@ -47376,27 +46991,6 @@ self: {
}) {};
"conduit-iconv" = callPackage
- ({ mkDerivation, base, bytestring, conduit, criterion, mtl
- , QuickCheck, test-framework, test-framework-quickcheck2, text
- }:
- mkDerivation {
- pname = "conduit-iconv";
- version = "0.1.1.1";
- sha256 = "01dcnvs82mvp7wv5vbkwhq2sary87mss71mc6mmhlngkyis558jl";
- libraryHaskellDepends = [ base bytestring conduit ];
- testHaskellDepends = [
- base bytestring conduit mtl QuickCheck test-framework
- test-framework-quickcheck2 text
- ];
- benchmarkHaskellDepends = [
- base bytestring conduit criterion mtl text
- ];
- homepage = "https://github.com/sdroege/conduit-iconv";
- description = "Conduit for character encoding conversion";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "conduit-iconv_0_1_1_2" = callPackage
({ mkDerivation, base, bytestring, conduit, criterion, mtl
, QuickCheck, test-framework, test-framework-quickcheck2, text
}:
@@ -47415,7 +47009,6 @@ self: {
homepage = "https://github.com/sdroege/conduit-iconv";
description = "Conduit for character encoding conversion";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"conduit-merge" = callPackage
@@ -48476,6 +48069,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "control-dotdotdot" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "control-dotdotdot";
+ version = "0.1.0.0";
+ sha256 = "0wacfs0s0dy2vzj8yxm3zqsjc93fm8m4iiw5x92wpiz2z2lm3k8d";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/erisco/control-dotdotdot";
+ description = "Haskell operator `g ... f = \x1 .. xn -> g (f x1 .. xn)`.";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"control-event" = callPackage
({ mkDerivation, base, containers, stm, time }:
mkDerivation {
@@ -50113,8 +49718,8 @@ self: {
}:
mkDerivation {
pname = "creatur";
- version = "5.9.19";
- sha256 = "1ar2zbjan63bcwinp3vxxgbpvlr2vffk26b3vr479gdw0mngwa91";
+ version = "5.9.20";
+ sha256 = "08cvagp0v98s8x99cdq86yk1i33fcpgxq3zdm414lf6cpjq80qa1";
libraryHaskellDepends = [
array base binary bytestring cereal cond directory exceptions
filepath gray-extended hdaemonize hsyslog MonadRandom mtl
@@ -51735,8 +51340,8 @@ self: {
}:
mkDerivation {
pname = "cubicbezier";
- version = "0.6.0.3";
- sha256 = "05bkjjfbmmfc4mwvcpsnr3wrwf07bv9xdv3v6n7gwblnx5ywapjn";
+ version = "0.6.0.4";
+ sha256 = "1bdrl26fm09vmmwdlg09ihq3b42qbz7dphzq03b983zlzrj1064f";
libraryHaskellDepends = [
base containers fast-math integration matrices microlens
microlens-mtl microlens-th mtl vector vector-space
@@ -52865,21 +52470,6 @@ self: {
}) {};
"data-accessor-template" = callPackage
- ({ mkDerivation, base, data-accessor, template-haskell, utility-ht
- }:
- mkDerivation {
- pname = "data-accessor-template";
- version = "0.2.1.13";
- sha256 = "0n1rg8g1ln2kncbv16dr93sqj624bfyic4r253vfr731sf2p757a";
- libraryHaskellDepends = [
- base data-accessor template-haskell utility-ht
- ];
- homepage = "http://www.haskell.org/haskellwiki/Record_access";
- description = "Utilities for accessing and manipulating fields of records";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "data-accessor-template_0_2_1_14" = callPackage
({ mkDerivation, base, data-accessor, template-haskell, utility-ht
}:
mkDerivation {
@@ -52892,7 +52482,6 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Record_access";
description = "Utilities for accessing and manipulating fields of records";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-accessor-transformers" = callPackage
@@ -53673,6 +53262,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "data-has_0_3_0_0" = callPackage
+ ({ mkDerivation, base, criterion, transformers }:
+ mkDerivation {
+ pname = "data-has";
+ version = "0.3.0.0";
+ sha256 = "0ybkm9zvl0l60f44p80fislbdmwwhavqz31wymnikjsyc01x899w";
+ libraryHaskellDepends = [ base ];
+ benchmarkHaskellDepends = [ base criterion transformers ];
+ homepage = "https://github.com/winterland1989/data-has";
+ description = "Simple extensible product";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"data-hash" = callPackage
({ mkDerivation, array, base, containers, QuickCheck
, test-framework, test-framework-quickcheck2
@@ -55577,13 +55180,15 @@ self: {
}) {};
"decimal-arithmetic" = callPackage
- ({ mkDerivation, base, doctest, mtl, QuickCheck }:
+ ({ mkDerivation, base, binary, binary-bits, deepseq, doctest, hspec
+ , mtl, QuickCheck
+ }:
mkDerivation {
pname = "decimal-arithmetic";
- version = "0.4.0.0";
- sha256 = "03sd7d8lq9k8laqxvlfablrzfxb0kjrb48gby3sbdf0qrhplccmn";
- libraryHaskellDepends = [ base mtl ];
- testHaskellDepends = [ base doctest QuickCheck ];
+ version = "0.5.0.0";
+ sha256 = "0l740xpnqs5m67hwp3p6l5mzyhs9si39mp5z2x57mnrhvjdydq1j";
+ libraryHaskellDepends = [ base binary binary-bits deepseq mtl ];
+ testHaskellDepends = [ base binary doctest hspec QuickCheck ];
homepage = "https://github.com/verement/decimal-arithmetic#readme";
description = "An implementation of the General Decimal Arithmetic Specification";
license = stdenv.lib.licenses.bsd3;
@@ -55996,8 +55601,8 @@ self: {
}:
mkDerivation {
pname = "dejafu";
- version = "0.7.0.2";
- sha256 = "0l2as53zmsr94sf2kh1h5mj1ra1gpnzik2yqj0nj56cxys6sm6iy";
+ version = "0.7.1.1";
+ sha256 = "0mqi2jswdk9qid8h5q24ay2h0p3x48i8yz5m0hnwnvqv966lgq7v";
libraryHaskellDepends = [
base concurrency containers deepseq exceptions leancheck mtl random
ref-fd semigroups transformers transformers-base
@@ -56007,25 +55612,6 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "dejafu_0_7_1_0" = callPackage
- ({ mkDerivation, base, concurrency, containers, deepseq, exceptions
- , leancheck, mtl, random, ref-fd, semigroups, transformers
- , transformers-base
- }:
- mkDerivation {
- pname = "dejafu";
- version = "0.7.1.0";
- sha256 = "058vdwsjjh5pbjbnsr8jfx7n84d4w79r7fkavlzy0a9a2cvb3nia";
- libraryHaskellDepends = [
- base concurrency containers deepseq exceptions leancheck mtl random
- ref-fd semigroups transformers transformers-base
- ];
- homepage = "https://github.com/barrucadu/dejafu";
- description = "Systematic testing for Haskell concurrency";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"deka" = callPackage
({ mkDerivation, base, bytestring, mpdec, parsec, transformers }:
mkDerivation {
@@ -56402,27 +55988,6 @@ self: {
}) {};
"derive" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory, filepath
- , haskell-src-exts, pretty, process, syb, template-haskell
- , transformers, uniplate
- }:
- mkDerivation {
- pname = "derive";
- version = "2.6.2";
- sha256 = "0chig7nl4d6j4asvkk9sd4pyg647ca09mwwzzg5bkh6y91aj161g";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring containers directory filepath haskell-src-exts
- pretty process syb template-haskell transformers uniplate
- ];
- executableHaskellDepends = [ base ];
- homepage = "https://github.com/ndmitchell/derive#readme";
- description = "A program and library to derive instances for data types";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "derive_2_6_3" = callPackage
({ mkDerivation, base, bytestring, containers, directory, filepath
, haskell-src-exts, pretty, process, syb, template-haskell
, transformers, uniplate
@@ -56441,7 +56006,6 @@ self: {
homepage = "https://github.com/ndmitchell/derive#readme";
description = "A program and library to derive instances for data types";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"derive-IG" = callPackage
@@ -56885,8 +56449,8 @@ self: {
}:
mkDerivation {
pname = "dhall-json";
- version = "1.0.4";
- sha256 = "0kwr1sj9llkgj68b59ih2lp9p0mav31yk7wfk5m8cq4xp33qrl30";
+ version = "1.0.5";
+ sha256 = "00f57ah2s43x2n4f3ykl9bjkh3yik8h47br7s63061xl49m4q4k8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -57618,34 +57182,6 @@ self: {
}) {};
"dictionaries" = callPackage
- ({ mkDerivation, attoparsec, base, binary, bytestring, containers
- , criterion, data-default, deepseq, directory, exceptions, filepath
- , hspec, QuickCheck, random, random-shuffle, tagged, text, time
- , transformers, zlib
- }:
- mkDerivation {
- pname = "dictionaries";
- version = "0.2.0.2";
- sha256 = "0zzzlk2479kk321f06aw5j5fkrza7nmg41f886b47bzd6mzmmnq8";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- attoparsec base binary bytestring containers data-default deepseq
- directory exceptions filepath tagged text time transformers zlib
- ];
- executableHaskellDepends = [
- base bytestring containers criterion deepseq directory exceptions
- filepath random random-shuffle tagged text transformers
- ];
- testHaskellDepends = [
- base bytestring containers directory filepath hspec QuickCheck
- random tagged text time
- ];
- description = "Tools to handle StarDict dictionaries";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "dictionaries_0_2_0_3" = callPackage
({ mkDerivation, attoparsec, base, binary, bytestring, containers
, criterion, data-default, deepseq, directory, exceptions, filepath
, hspec, QuickCheck, random, random-shuffle, tagged, text, time
@@ -57671,7 +57207,6 @@ self: {
];
description = "Tools to handle StarDict dictionaries";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dictionary-sharing" = callPackage
@@ -58066,19 +57601,20 @@ self: {
"digit" = callPackage
({ mkDerivation, base, directory, doctest, filepath, lens, papa
- , parsec, parsers, QuickCheck, semigroups, template-haskell
+ , parsec, parsers, QuickCheck, semigroupoids, semigroups
+ , template-haskell
}:
mkDerivation {
pname = "digit";
- version = "0.2.9";
- sha256 = "1y8mhzzj4sxjxqrzprfckmppdmw4d61n4jgxy64w48qalmqsr8ig";
+ version = "0.4.0";
+ sha256 = "1c7d35134b8fj1fqmph9gbi5rhix23d8k3y99af0slk5nfkk5wl3";
libraryHaskellDepends = [
- base lens papa parsers semigroups template-haskell
+ base lens papa parsers semigroupoids semigroups template-haskell
];
testHaskellDepends = [
base directory doctest filepath parsec QuickCheck template-haskell
];
- homepage = "https://github.com/NICTA/digit";
+ homepage = "https://github.com/qfpl/digit";
description = "A data-type representing digits 0-9 and other combinations";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -59463,27 +58999,6 @@ self: {
}) {};
"distributive" = callPackage
- ({ mkDerivation, base, base-orphans, Cabal, cabal-doctest, doctest
- , generic-deriving, hspec, tagged, transformers
- , transformers-compat
- }:
- mkDerivation {
- pname = "distributive";
- version = "0.5.2";
- sha256 = "1nbcyysnrkliy7xwx6f39p80kkp0vlvq14wdj6r0m5c1brmbxqmd";
- revision = "2";
- editedCabalFile = "1wp2wqhsshiyxxwil3q0az35vijn8cyd2g6866i32j3p9g01mkr9";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base base-orphans tagged transformers transformers-compat
- ];
- testHaskellDepends = [ base doctest generic-deriving hspec ];
- homepage = "http://github.com/ekmett/distributive/";
- description = "Distributive functors -- Dual to Traversable";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "distributive_0_5_3" = callPackage
({ mkDerivation, base, base-orphans, Cabal, cabal-doctest, doctest
, generic-deriving, hspec, tagged, transformers
, transformers-compat
@@ -59502,7 +59017,6 @@ self: {
homepage = "http://github.com/ekmett/distributive/";
description = "Distributive functors -- Dual to Traversable";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diversity" = callPackage
@@ -59671,31 +59185,6 @@ self: {
}) {};
"dlist-nonempty" = callPackage
- ({ mkDerivation, base, base-compat, Cabal, criterion, deepseq
- , dlist, dlist-instances, QuickCheck, quickcheck-instances
- , semigroupoids
- }:
- mkDerivation {
- pname = "dlist-nonempty";
- version = "0.1";
- sha256 = "13nkf2kgm8pd1vicd2lm2z99m04bs65pm1kjn4k4a2259h3hd0m8";
- revision = "1";
- editedCabalFile = "1nvxf1dyqvanx7vfr4q7li2jj5vr543lc2fkkwajsm0z75vcibz4";
- libraryHaskellDepends = [
- base base-compat deepseq dlist semigroupoids
- ];
- testHaskellDepends = [
- base Cabal QuickCheck quickcheck-instances
- ];
- benchmarkHaskellDepends = [
- base base-compat criterion dlist dlist-instances
- ];
- homepage = "https://github.com/phadej/dlist-nonempty";
- description = "Non-empty difference lists";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "dlist-nonempty_0_1_1" = callPackage
({ mkDerivation, base, base-compat, Cabal, criterion, deepseq
, dlist, dlist-instances, QuickCheck, quickcheck-instances
, semigroupoids
@@ -59716,7 +59205,6 @@ self: {
homepage = "https://github.com/phadej/dlist-nonempty";
description = "Non-empty difference lists";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dmc" = callPackage
@@ -59805,29 +59293,6 @@ self: {
}) {};
"dns" = callPackage
- ({ mkDerivation, attoparsec, base, binary, bytestring
- , bytestring-builder, conduit, conduit-extra, containers, doctest
- , hspec, iproute, mtl, network, random, resourcet, safe, word8
- }:
- mkDerivation {
- pname = "dns";
- version = "2.0.10";
- sha256 = "18x6ka23khkjr9f2s7hqk2q5q93sf2srwml8cl3gsn2vwa7vq0xs";
- libraryHaskellDepends = [
- attoparsec base binary bytestring bytestring-builder conduit
- conduit-extra containers iproute mtl network random resourcet safe
- ];
- testHaskellDepends = [
- attoparsec base binary bytestring bytestring-builder conduit
- conduit-extra containers doctest hspec iproute mtl network random
- resourcet safe word8
- ];
- testTarget = "spec";
- description = "DNS library in Haskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "dns_2_0_12" = callPackage
({ mkDerivation, attoparsec, base, binary, bytestring
, bytestring-builder, conduit, conduit-extra, containers, doctest
, hspec, iproute, mtl, network, random, resourcet, safe, word8
@@ -59848,7 +59313,6 @@ self: {
testTarget = "spec";
description = "DNS library in Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dnscache" = callPackage
@@ -61000,23 +60464,6 @@ self: {
}) {};
"drifter" = callPackage
- ({ mkDerivation, base, containers, fgl, tasty, tasty-hunit
- , tasty-quickcheck, text
- }:
- mkDerivation {
- pname = "drifter";
- version = "0.2.2";
- sha256 = "1q8i6f6y0wzvn4nawzc47h90qbq5ycd6m73ih7336kpzyzphqzp4";
- libraryHaskellDepends = [ base containers fgl text ];
- testHaskellDepends = [
- base tasty tasty-hunit tasty-quickcheck text
- ];
- homepage = "https://github.com/AndrewRademacher/drifter";
- description = "Simple schema management for arbitrary databases";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "drifter_0_2_3" = callPackage
({ mkDerivation, base, containers, fgl, tasty, tasty-hunit
, tasty-quickcheck, text
}:
@@ -61031,7 +60478,6 @@ self: {
homepage = "https://github.com/AndrewRademacher/drifter";
description = "Simple schema management for arbitrary databases";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"drifter-postgresql" = callPackage
@@ -61659,8 +61105,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "dwergaz";
- version = "0.2.0.0";
- sha256 = "02yp4z20sw1dm7dzi8gsp0qiziyaw1wqr9zgx47sr4cz071ibg8q";
+ version = "0.2.0.1";
+ sha256 = "117f3s3rvka5m9zk8lhwxmqx3slxpf040r7485x6gz58ra33dsg9";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base ];
homepage = "https://github.com/xngns/dwergaz";
@@ -62727,18 +62173,6 @@ self: {
}) {};
"effin" = callPackage
- ({ mkDerivation, base, mtl }:
- mkDerivation {
- pname = "effin";
- version = "0.3.0.2";
- sha256 = "057hhpbxzhyinknbacbs12k3aq7jixg3pzyqcl49k1vrqm9y82fx";
- libraryHaskellDepends = [ base mtl ];
- homepage = "https://github.com/YellPika/effin";
- description = "A Typeable-free implementation of extensible effects";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "effin_0_3_0_3" = callPackage
({ mkDerivation, base, mtl }:
mkDerivation {
pname = "effin";
@@ -62748,7 +62182,6 @@ self: {
homepage = "https://github.com/YellPika/effin";
description = "A Typeable-free implementation of extensible effects";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"egison" = callPackage
@@ -62950,25 +62383,6 @@ self: {
}) {};
"ekg" = callPackage
- ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json
- , filepath, network, snap-core, snap-server, text, time
- , transformers, unordered-containers
- }:
- mkDerivation {
- pname = "ekg";
- version = "0.4.0.13";
- sha256 = "13xlggjcfmp8hr8sz74r0xms36rrfa86znazy2m6304dgscdbca4";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- aeson base bytestring ekg-core ekg-json filepath network snap-core
- snap-server text time transformers unordered-containers
- ];
- homepage = "https://github.com/tibbe/ekg";
- description = "Remote monitoring of processes";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "ekg_0_4_0_14" = callPackage
({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json
, filepath, network, snap-core, snap-server, text, time
, transformers, unordered-containers
@@ -62987,7 +62401,6 @@ self: {
homepage = "https://github.com/tibbe/ekg";
description = "Remote monitoring of processes";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ekg-bosun" = callPackage
@@ -63047,23 +62460,6 @@ self: {
}) {};
"ekg-core" = callPackage
- ({ mkDerivation, base, containers, ghc-prim, text
- , unordered-containers
- }:
- mkDerivation {
- pname = "ekg-core";
- version = "0.1.1.1";
- sha256 = "1mir54l783pwy4fbz5bdbckz6d41iim4zdk06wpsl9xhn7s3vpjl";
- libraryHaskellDepends = [
- base containers ghc-prim text unordered-containers
- ];
- benchmarkHaskellDepends = [ base ];
- homepage = "https://github.com/tibbe/ekg-core";
- description = "Tracking of system metrics";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "ekg-core_0_1_1_2" = callPackage
({ mkDerivation, base, containers, ghc-prim, text
, unordered-containers
}:
@@ -63078,7 +62474,6 @@ self: {
homepage = "https://github.com/tibbe/ekg-core";
description = "Tracking of system metrics";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ekg-elastic" = callPackage
@@ -63133,21 +62528,6 @@ self: {
}) {};
"ekg-json" = callPackage
- ({ mkDerivation, aeson, base, ekg-core, text, unordered-containers
- }:
- mkDerivation {
- pname = "ekg-json";
- version = "0.1.0.5";
- sha256 = "0ml5pqp918k2zgpw10sjn0nca0ivzb871zxcg73samm1aypfrm8c";
- libraryHaskellDepends = [
- aeson base ekg-core text unordered-containers
- ];
- homepage = "https://github.com/tibbe/ekg-json";
- description = "JSON encoding of ekg metrics";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "ekg-json_0_1_0_6" = callPackage
({ mkDerivation, aeson, base, ekg-core, text, unordered-containers
}:
mkDerivation {
@@ -63160,7 +62540,6 @@ self: {
homepage = "https://github.com/tibbe/ekg-json";
description = "JSON encoding of ekg metrics";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ekg-log" = callPackage
@@ -63242,22 +62621,6 @@ self: {
}) {};
"ekg-statsd" = callPackage
- ({ mkDerivation, base, bytestring, ekg-core, network, text, time
- , unordered-containers
- }:
- mkDerivation {
- pname = "ekg-statsd";
- version = "0.2.1.0";
- sha256 = "04bpdmk3ma4fnylipg4hkq3jfkrw5f009vbns6vah0znawkpjhnh";
- libraryHaskellDepends = [
- base bytestring ekg-core network text time unordered-containers
- ];
- homepage = "https://github.com/tibbe/ekg-statsd";
- description = "Push metrics to statsd";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "ekg-statsd_0_2_1_1" = callPackage
({ mkDerivation, base, bytestring, ekg-core, network, text, time
, unordered-containers
}:
@@ -63271,7 +62634,6 @@ self: {
homepage = "https://github.com/tibbe/ekg-statsd";
description = "Push metrics to statsd";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ekg-wai" = callPackage
@@ -63281,8 +62643,8 @@ self: {
}:
mkDerivation {
pname = "ekg-wai";
- version = "0.1.0.1";
- sha256 = "14vl5k7jq7p7fiwj9rbw3ng7j8cagydpw7zvf8qxbwxdz9xr655q";
+ version = "0.1.0.2";
+ sha256 = "1ridcn930lf8gjj7lqdbhzzmz0i6r668bhid72anbq3v1h6fnhnw";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base bytestring ekg-core ekg-json filepath http-types network
@@ -63655,7 +63017,7 @@ self: {
http-types mtl network optparse-applicative pretty process text
time unordered-containers vector zip-archive
];
- homepage = "https://github.com/elm-lang/elm-package";
+ homepage = "http://github.com/elm-lang/elm-package";
description = "Package manager for Elm libraries";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -63881,23 +63243,6 @@ self: {
}) {};
"email-validate" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, doctest, hspec
- , QuickCheck, template-haskell
- }:
- mkDerivation {
- pname = "email-validate";
- version = "2.3";
- sha256 = "1zm6sqvaa3r412cz5ga7hcjl3b26hi4l8fc8z5im476rsjib8jf1";
- libraryHaskellDepends = [
- attoparsec base bytestring template-haskell
- ];
- testHaskellDepends = [ base bytestring doctest hspec QuickCheck ];
- homepage = "https://github.com/Porges/email-validate-hs";
- description = "Email address validation";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "email-validate_2_3_1" = callPackage
({ mkDerivation, attoparsec, base, bytestring, doctest, hspec
, QuickCheck, template-haskell
}:
@@ -63912,7 +63257,6 @@ self: {
homepage = "https://github.com/Porges/email-validate-hs";
description = "Email address validation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"email-validate-json" = callPackage
@@ -65086,34 +64430,6 @@ self: {
}) {};
"ersatz" = callPackage
- ({ mkDerivation, array, attoparsec, base, bytestring, Cabal
- , cabal-doctest, containers, data-default, directory, doctest
- , filepath, lens, mtl, parsec, process, temporary, transformers
- , unordered-containers
- }:
- mkDerivation {
- pname = "ersatz";
- version = "0.4";
- sha256 = "173k73dvbv528q6072b8k7xy9q6558rlmz7llkiym4g1j2xi37cf";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- array attoparsec base bytestring containers data-default lens mtl
- process temporary transformers unordered-containers
- ];
- executableHaskellDepends = [
- array base containers lens mtl parsec
- ];
- testHaskellDepends = [ array base directory doctest filepath mtl ];
- homepage = "http://github.com/ekmett/ersatz";
- description = "A monad for expressing SAT or QSAT problems using observable sharing";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "ersatz_0_4_1" = callPackage
({ mkDerivation, array, attoparsec, base, bytestring, Cabal
, cabal-doctest, containers, data-default, directory, doctest
, filepath, lens, mtl, parsec, process, temporary, transformers
@@ -66104,13 +65420,13 @@ self: {
}:
mkDerivation {
pname = "eventsource-api";
- version = "1.1.0";
- sha256 = "0khdp8z2lbp9337wxsqfb3dlnmjw8shwjaldx0xqikwyh6rrmix9";
+ version = "1.1.1";
+ sha256 = "0zy59m7iwxwy5c4l15kvj98fk7vrjwhxp0scc3r3v37cxkakg01h";
libraryHaskellDepends = [
aeson base containers mtl protolude unordered-containers uuid
];
homepage = "https://github.com/YoEight/eventsource-api#readme";
- description = "Provides a eventsourcing high level API";
+ description = "Provides an eventsourcing high level API";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -66121,8 +65437,8 @@ self: {
}:
mkDerivation {
pname = "eventsource-geteventstore-store";
- version = "1.0.1";
- sha256 = "19h7vvd2b52915i61lpaa0k3hgvhdz55y5rsp0aznv1m2f613nnh";
+ version = "1.0.4";
+ sha256 = "0fn75hwarhjnrjalv7i16ry1wnr2z2gqvpj3ls2faappz1drhxmp";
libraryHaskellDepends = [
aeson base eventsource-api eventstore mtl protolude
];
@@ -66142,8 +65458,8 @@ self: {
}:
mkDerivation {
pname = "eventsource-store-specs";
- version = "1.0.0";
- sha256 = "0iwh779mv4wvdfgdgd4rizvpmpj19qppndn7wqx56wa5119k9ahi";
+ version = "1.0.1";
+ sha256 = "0fg6rma02vp3iij93xgccqivqfx3h9675203jlmk6073mhg2i5id";
libraryHaskellDepends = [
aeson base eventsource-api mtl protolude tasty tasty-hspec uuid
];
@@ -66153,18 +65469,19 @@ self: {
}) {};
"eventsource-stub-store" = callPackage
- ({ mkDerivation, base, containers, eventsource-api
+ ({ mkDerivation, aeson, base, containers, eventsource-api
, eventsource-store-specs, mtl, protolude, stm, tasty, tasty-hspec
}:
mkDerivation {
pname = "eventsource-stub-store";
- version = "1.0.1";
- sha256 = "0knmyykgxs6fy4xpmn7zcm8h1psirgizfrk6iaisfncjw9xy387k";
+ version = "1.0.2";
+ sha256 = "10c853i9k91gc42jbqzxx3scip2hr1ahwkhzvcryhiw3745qsidr";
libraryHaskellDepends = [
base containers eventsource-api mtl protolude stm
];
testHaskellDepends = [
- base eventsource-store-specs protolude tasty tasty-hspec
+ aeson base eventsource-api eventsource-store-specs protolude tasty
+ tasty-hspec
];
homepage = "https://github.com/YoEight/eventsource-api#readme";
description = "An in-memory stub store implementation";
@@ -66205,8 +65522,8 @@ self: {
}:
mkDerivation {
pname = "eventstore";
- version = "0.15.0.1";
- sha256 = "0h6747m8xc1w37wqwjxy3w549cpmivjhrnmcfc3i7yn54rcyn3lv";
+ version = "0.15.0.2";
+ sha256 = "00mamlf121c3dsigpxvshj1mbm2b4hdbil02zyhz7jc6kccgbjwx";
libraryHaskellDepends = [
aeson array base bifunctors bytestring cereal clock connection
containers dns dotnet-timespan ekg-core exceptions fast-logger
@@ -67096,30 +66413,6 @@ self: {
}) {};
"extensible" = callPackage
- ({ mkDerivation, base, comonad, constraints, criterion, deepseq
- , effin, extensible-effects, freer, ghc-prim, lens, monad-skeleton
- , mtl, primitive, profunctors, semigroups, tagged, template-haskell
- , transformers
- }:
- mkDerivation {
- pname = "extensible";
- version = "0.4.2";
- sha256 = "1djsc3g3kvrm8n5sl5hbjv40fmclrdss9m9fdyl5cski1j94dhhk";
- libraryHaskellDepends = [
- base comonad constraints deepseq ghc-prim monad-skeleton mtl
- primitive profunctors semigroups tagged template-haskell
- transformers
- ];
- testHaskellDepends = [ base ];
- benchmarkHaskellDepends = [
- base criterion effin extensible-effects freer lens mtl
- ];
- homepage = "https://github.com/fumieval/extensible";
- description = "Extensible, efficient, optics-friendly data types and effects";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "extensible_0_4_3" = callPackage
({ mkDerivation, base, comonad, constraints, criterion, deepseq
, effin, extensible-effects, freer-effects, ghc-prim, lens
, monad-skeleton, mtl, primitive, profunctors, semigroups, StateVar
@@ -67141,7 +66434,6 @@ self: {
homepage = "https://github.com/fumieval/extensible";
description = "Extensible, efficient, optics-friendly data types and effects";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"extensible-data" = callPackage
@@ -68892,10 +68184,8 @@ self: {
}:
mkDerivation {
pname = "fgl";
- version = "5.5.3.1";
- sha256 = "0k1frj6hpiij287sn91qvf1vms1b4zzs3xdq71xbam9cs80p5afy";
- revision = "1";
- editedCabalFile = "00bw87y97ym844ir4mdq0vx5kfb0brzlqmrbqa0iq35lkwsd4k3g";
+ version = "5.5.4.0";
+ sha256 = "04bjm44qr63cl0g5lh07hbq78x5sbvdjf6ryymysi658q0fqjxji";
libraryHaskellDepends = [
array base containers deepseq transformers
];
@@ -69245,18 +68535,6 @@ self: {
}) {};
"filelock" = callPackage
- ({ mkDerivation, base, unix }:
- mkDerivation {
- pname = "filelock";
- version = "0.1.0.1";
- sha256 = "0qypjnbkfayqyaymx8qrq4abddlrlzanf6lqhfn9cqzcgzr6735d";
- libraryHaskellDepends = [ base unix ];
- homepage = "http://github.com/takano-akio/filelock";
- description = "Portable interface to file locking (flock / LockFileEx)";
- license = stdenv.lib.licenses.publicDomain;
- }) {};
-
- "filelock_0_1_1_2" = callPackage
({ mkDerivation, async, base, process, unix }:
mkDerivation {
pname = "filelock";
@@ -69267,7 +68545,6 @@ self: {
homepage = "http://github.com/takano-akio/filelock";
description = "Portable interface to file locking (flock / LockFileEx)";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"filemanip" = callPackage
@@ -69500,30 +68777,6 @@ self: {
}) {};
"find-clumpiness" = callPackage
- ({ mkDerivation, aeson, base, BiobaseNewick, bytestring, clumpiness
- , containers, listsafe, optparse-applicative, text, text-show
- , tree-fun, unordered-containers, vector
- }:
- mkDerivation {
- pname = "find-clumpiness";
- version = "0.2.1.3";
- sha256 = "08jkzkq7xw9nfv30qc9xh5nf31lqbd92smx95an6ch74hf7jb7p7";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base BiobaseNewick bytestring clumpiness containers listsafe
- text text-show tree-fun unordered-containers vector
- ];
- executableHaskellDepends = [
- aeson base BiobaseNewick bytestring clumpiness containers
- optparse-applicative text tree-fun unordered-containers
- ];
- homepage = "http://github.com/GregorySchwartz/find-clumpiness#readme";
- description = "Find the clumpiness of labels in a tree";
- license = stdenv.lib.licenses.gpl3;
- }) {};
-
- "find-clumpiness_0_2_2_0" = callPackage
({ mkDerivation, aeson, base, BiobaseNewick, bytestring, clumpiness
, containers, listsafe, mtl, optparse-applicative, text, text-show
, tree-fun, unordered-containers, vector
@@ -69545,7 +68798,6 @@ self: {
homepage = "http://github.com/GregorySchwartz/find-clumpiness#readme";
description = "Find the clumpiness of labels in a tree";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"find-conduit" = callPackage
@@ -69978,22 +69230,6 @@ self: {
}) {};
"fixed-vector-hetero" = callPackage
- ({ mkDerivation, base, deepseq, fixed-vector, ghc-prim, primitive
- , transformers
- }:
- mkDerivation {
- pname = "fixed-vector-hetero";
- version = "0.3.1.1";
- sha256 = "1byy8md3da7brf452d69fkwykip5jkn5j1837vf2c0r7x9j76k49";
- libraryHaskellDepends = [
- base deepseq fixed-vector ghc-prim primitive transformers
- ];
- homepage = "http://github.org/Shimuuar/fixed-vector-hetero";
- description = "Generic heterogeneous vectors";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "fixed-vector-hetero_0_3_1_2" = callPackage
({ mkDerivation, base, deepseq, fixed-vector, ghc-prim, primitive
, transformers
}:
@@ -70007,7 +69243,6 @@ self: {
homepage = "http://github.org/Shimuuar/fixed-vector-hetero";
description = "Generic heterogeneous vectors";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fixed-width" = callPackage
@@ -70596,19 +69831,6 @@ self: {
}) {};
"flow" = callPackage
- ({ mkDerivation, base, doctest, QuickCheck, template-haskell }:
- mkDerivation {
- pname = "flow";
- version = "1.0.7";
- sha256 = "0qhz3cplnpdj6c4hr576adcv4l4pmakncbqcc541gn5vql9lk5pi";
- libraryHaskellDepends = [ base ];
- testHaskellDepends = [ base doctest QuickCheck template-haskell ];
- homepage = "https://github.com/tfausak/flow#readme";
- description = "Write more understandable Haskell";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "flow_1_0_8" = callPackage
({ mkDerivation, base, doctest, QuickCheck, template-haskell }:
mkDerivation {
pname = "flow";
@@ -70619,7 +69841,6 @@ self: {
homepage = "https://github.com/tfausak/flow#readme";
description = "Write more understandable Haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"flow-er" = callPackage
@@ -71058,18 +70279,6 @@ self: {
}) {};
"focus" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "focus";
- version = "0.1.5";
- sha256 = "1cg7mkhv3ip87952k8kcjl1gx1nvcbhbq71czhxlnzi00qg68jzg";
- libraryHaskellDepends = [ base ];
- homepage = "https://github.com/nikita-volkov/focus";
- description = "A general abstraction for manipulating elements of container data structures";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "focus_0_1_5_2" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "focus";
@@ -71079,7 +70288,6 @@ self: {
homepage = "https://github.com/nikita-volkov/focus";
description = "A general abstraction for manipulating elements of container data structures";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fold-debounce" = callPackage
@@ -71252,32 +70460,6 @@ self: {
}) {};
"folds" = callPackage
- ({ mkDerivation, adjunctions, base, bifunctors, bytestring, Cabal
- , cabal-doctest, comonad, constraints, contravariant, data-reify
- , deepseq, directory, distributive, doctest, filepath, lens, mtl
- , pointed, profunctors, reflection, semigroupoids, semigroups
- , transformers, unordered-containers, vector
- }:
- mkDerivation {
- pname = "folds";
- version = "0.7.3";
- sha256 = "028akichhx88kyvl05c4yl4y89wwird76gjh8nmghzcdbylcpig7";
- configureFlags = [ "-f-test-hlint" ];
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- adjunctions base bifunctors comonad constraints contravariant
- data-reify distributive lens mtl pointed profunctors reflection
- semigroupoids transformers unordered-containers vector
- ];
- testHaskellDepends = [
- base bytestring deepseq directory doctest filepath mtl semigroups
- ];
- homepage = "http://github.com/ekmett/folds";
- description = "Beautiful Folding";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "folds_0_7_4" = callPackage
({ mkDerivation, adjunctions, base, bifunctors, bytestring, Cabal
, cabal-doctest, comonad, constraints, contravariant, data-reify
, deepseq, directory, distributive, doctest, filepath, lens, mtl
@@ -71301,7 +70483,6 @@ self: {
homepage = "http://github.com/ekmett/folds";
description = "Beautiful Folding";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"folds-common" = callPackage
@@ -72970,28 +72151,6 @@ self: {
}) {};
"fsnotify" = callPackage
- ({ mkDerivation, async, base, containers, directory, filepath
- , hinotify, tasty, tasty-hunit, temporary-rc, text, time
- , unix-compat
- }:
- mkDerivation {
- pname = "fsnotify";
- version = "0.2.1";
- sha256 = "0asl313a52qx2w6dw25g845683xsl840bwjh118nkwi5v1xipkzb";
- libraryHaskellDepends = [
- async base containers directory filepath hinotify text time
- unix-compat
- ];
- testHaskellDepends = [
- async base directory filepath tasty tasty-hunit temporary-rc
- unix-compat
- ];
- homepage = "https://github.com/haskell-fswatch/hfsnotify";
- description = "Cross platform library for file change notification";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "fsnotify_0_2_1_1" = callPackage
({ mkDerivation, async, base, containers, directory, filepath
, hinotify, tasty, tasty-hunit, temporary, text, time, unix-compat
}:
@@ -73010,7 +72169,6 @@ self: {
homepage = "https://github.com/haskell-fswatch/hfsnotify";
description = "Cross platform library for file change notification";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fsnotify-conduit" = callPackage
@@ -73260,6 +72418,8 @@ self: {
pname = "full-text-search";
version = "0.2.1.3";
sha256 = "0s537hzb21w506bp4i6v7k5sbk905s9950gihh99r0b7id185ppk";
+ revision = "2";
+ editedCabalFile = "1y89g5crlnfxhmxxijhw4ij89bg08ygcipkxb8byjiqhhh8y0r1g";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ array base containers text vector ];
@@ -75451,8 +74611,8 @@ self: {
}:
mkDerivation {
pname = "geoip2";
- version = "0.2.2.0";
- sha256 = "0gnh9gwgb9lkjdp8j5ajdd4qqnm92821q12z3jzxigrwkxr9z8h4";
+ version = "0.3.0.0";
+ sha256 = "1yazd4wgf4ivk2x3apymddcww24z7a4b0jxzph7l8273wd8dy8zg";
libraryHaskellDepends = [
base bytestring cereal containers iproute mmap reinterpret-cast
text
@@ -75602,8 +74762,8 @@ self: {
}:
mkDerivation {
pname = "gf";
- version = "3.8";
- sha256 = "02ds6pm7lv5ijkjh1xikglibnnapk72rz78l5kv5ikzxahhgslbg";
+ version = "3.9";
+ sha256 = "11g57vhb89s3wi6ny88la9mxwg5vivr9fjxsmm9i644pys7kg84i";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -76203,29 +75363,6 @@ self: {
}) {};
"ghc-prof" = callPackage
- ({ mkDerivation, attoparsec, base, containers, directory, filepath
- , process, scientific, tasty, tasty-hunit, temporary, text, time
- }:
- mkDerivation {
- pname = "ghc-prof";
- version = "1.4.0.1";
- sha256 = "1q09v2b2nzddwwj76ig7d6ikxv8dnw7v3ngg781fsjvy14cljbmg";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- attoparsec base containers scientific text time
- ];
- executableHaskellDepends = [ base containers scientific text ];
- testHaskellDepends = [
- attoparsec base containers directory filepath process tasty
- tasty-hunit temporary text
- ];
- homepage = "https://github.com/maoe/ghc-prof";
- description = "Library for parsing GHC time and allocation profiling reports";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "ghc-prof_1_4_0_2" = callPackage
({ mkDerivation, attoparsec, base, containers, directory, filepath
, process, scientific, tasty, tasty-hunit, temporary, text, time
}:
@@ -76246,7 +75383,6 @@ self: {
homepage = "https://github.com/maoe/ghc-prof";
description = "Library for parsing GHC time and allocation profiling reports";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghc-prof-flamegraph" = callPackage
@@ -76356,8 +75492,8 @@ self: {
({ mkDerivation, base, ghc }:
mkDerivation {
pname = "ghc-tcplugins-extra";
- version = "0.2";
- sha256 = "0x3kd39jlhkgx3p2hm0a1wy571fis529jn2iz0jkw3mj6ikjnm7k";
+ version = "0.2.1";
+ sha256 = "04m8cblgxb3axjhsbwlb18jmlcfhcllm68c1d5pzv6av404ild4z";
libraryHaskellDepends = [ base ghc ];
homepage = "http://github.com/clash-lang/ghc-tcplugins-extra";
description = "Utilities for writing GHC type-checker plugins";
@@ -76428,6 +75564,8 @@ self: {
pname = "ghc-typelits-knownnat";
version = "0.3";
sha256 = "0dq419pd8mf8x48wcr3ciygrwy40kvcl5iq307836ss2r506nrqc";
+ revision = "1";
+ editedCabalFile = "17k7rarp56ljxz2j7p17jh1wgbqfcv9l1pj8vrffidb9r8sj448q";
libraryHaskellDepends = [
base ghc ghc-tcplugins-extra ghc-typelits-natnormalise singletons
template-haskell transformers
@@ -76441,6 +75579,29 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "ghc-typelits-knownnat_0_3_1" = callPackage
+ ({ mkDerivation, base, ghc, ghc-tcplugins-extra
+ , ghc-typelits-natnormalise, singletons, tasty, tasty-hunit
+ , tasty-quickcheck, template-haskell, transformers
+ }:
+ mkDerivation {
+ pname = "ghc-typelits-knownnat";
+ version = "0.3.1";
+ sha256 = "1kprh0fahkbpf7rqbgi8l6883784a8n7k8g40nkdhii7gal9715g";
+ libraryHaskellDepends = [
+ base ghc ghc-tcplugins-extra ghc-typelits-natnormalise singletons
+ template-haskell transformers
+ ];
+ testHaskellDepends = [
+ base ghc-typelits-natnormalise singletons tasty tasty-hunit
+ tasty-quickcheck
+ ];
+ homepage = "http://clash-lang.org/";
+ description = "Derive KnownNat constraints from other KnownNat constraints";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ghc-typelits-natnormalise" = callPackage
({ mkDerivation, base, ghc, ghc-tcplugins-extra, integer-gmp, tasty
, tasty-hunit, template-haskell
@@ -76699,8 +75860,8 @@ self: {
({ mkDerivation, base, ghcjs-dom-jsaddle, text, transformers }:
mkDerivation {
pname = "ghcjs-dom";
- version = "0.9.1.1";
- sha256 = "1932qq067cfl0g87457qgk4zdxxr4fx2an37z8l0zw1x221yi696";
+ version = "0.9.2.0";
+ sha256 = "0yhvnxrh68rc33h3m6zg6vzc4byr1yg09zfxn7g39skzn1mrj0aa";
libraryHaskellDepends = [
base ghcjs-dom-jsaddle text transformers
];
@@ -76737,8 +75898,8 @@ self: {
({ mkDerivation, jsaddle-dom }:
mkDerivation {
pname = "ghcjs-dom-jsaddle";
- version = "0.9.1.0";
- sha256 = "120i3j07lk75lk59gi6pg56dka35r0vh97kj22cj4472qz0ix3sp";
+ version = "0.9.2.0";
+ sha256 = "05ings3n2zlgnwg9a17s21yzh4pnag1cz62yyddaxbqpxn4xkj6l";
libraryHaskellDepends = [ jsaddle-dom ];
doHaddock = false;
description = "DOM library that supports both GHCJS and GHC using jsaddle";
@@ -76751,8 +75912,8 @@ self: {
}:
mkDerivation {
pname = "ghcjs-dom-jsffi";
- version = "0.9.1.1";
- sha256 = "1hx8w7x5j2gznkk32yplnnm657hyfk41lcxl4iinsjkm0lrlq54i";
+ version = "0.9.2.0";
+ sha256 = "1xj94izrypxnb91lgsq0lfzqqs11sxbs24nkw8sn2wkmmh5pd8vd";
libraryHaskellDepends = [
base ghc-prim ghcjs-base ghcjs-prim text transformers
];
@@ -76938,26 +76099,6 @@ self: {
}) {};
"gi-atk" = callPackage
- ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib
- , gi-gobject, haskell-gi, haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-atk";
- version = "2.0.12";
- sha256 = "1d15ylg9p46csmb8nicir1bg011gd4h123xfmvq8ksm7g85an9hk";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi
- haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ atk ];
- doHaddock = false;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Atk bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) atk;};
-
- "gi-atk_2_0_14" = callPackage
({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib
, gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading
, text, transformers
@@ -76976,34 +76117,9 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Atk bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) atk;};
"gi-cairo" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, cairo, containers
- , haskell-gi, haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-cairo";
- version = "1.0.12";
- sha256 = "1q1bc1fqbk4cxqp99wyjhdp2wpgr9pakrr0pfsss9s9amb0kw98k";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers haskell-gi haskell-gi-base text
- transformers
- ];
- libraryPkgconfigDepends = [ cairo ];
- doHaddock = false;
- preCompileBuildDriver = ''
- PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig"
- setupCompileFlags+=" $(pkg-config --libs cairo-gobject)"
- '';
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Cairo bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) cairo;};
-
- "gi-cairo_1_0_14" = callPackage
({ mkDerivation, base, bytestring, Cabal, cairo, containers
, haskell-gi, haskell-gi-base, haskell-gi-overloading, text
, transformers
@@ -77026,31 +76142,9 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Cairo bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) cairo;};
"gi-gdk" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo
- , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3
- , haskell-gi, haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-gdk";
- version = "3.0.12";
- sha256 = "1ridy0bj5s0zfawy7i1qf7n24d0wwbmyr04h1ss03zsx1jg5y66q";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib
- gi-gobject gi-pango haskell-gi haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ gtk3 ];
- doHaddock = false;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Gdk bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {gtk3 = pkgs.gnome3.gtk;};
-
- "gi-gdk_3_0_14" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo
, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3
, haskell-gi, haskell-gi-base, haskell-gi-overloading, text
@@ -77071,31 +76165,9 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Gdk bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk3 = pkgs.gnome3.gtk;};
"gi-gdkpixbuf" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf
- , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base, text
- , transformers
- }:
- mkDerivation {
- pname = "gi-gdkpixbuf";
- version = "2.0.12";
- sha256 = "0kxqg74rxv5z3bd5sgx5rzm2hhc565nm4ab2vhfdy4lvmscwq9gr";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
- haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ gdk_pixbuf ];
- doHaddock = false;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GdkPixbuf bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) gdk_pixbuf;};
-
- "gi-gdkpixbuf_2_0_14" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf
, gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base
, haskell-gi-overloading, text, transformers
@@ -77114,7 +76186,6 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GdkPixbuf bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gdk_pixbuf;};
"gi-ggit" = callPackage
@@ -77140,26 +76211,6 @@ self: {
}) {inherit (pkgs.gnome3) libgit2-glib;};
"gi-gio" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
- , gi-gobject, glib, haskell-gi, haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-gio";
- version = "2.0.12";
- sha256 = "13ancpyxlzrqyz8jwjizs7nmys9wmmh1k90armmlah03xlsssjz6";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi
- haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ glib ];
- doHaddock = false;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Gio bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib;};
-
- "gi-gio_2_0_14" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
, gi-gobject, glib, haskell-gi, haskell-gi-base
, haskell-gi-overloading, text, transformers
@@ -77178,7 +76229,6 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Gio bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib;};
"gi-girepository" = callPackage
@@ -77203,26 +76253,6 @@ self: {
}) {inherit (pkgs) gobjectIntrospection;};
"gi-glib" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, glib
- , haskell-gi, haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-glib";
- version = "2.0.12";
- sha256 = "0pbfr8jgavg3csxbmjq6rv7hqj9g2h8b02ji1d3pjcpdmnzhh3mx";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers haskell-gi haskell-gi-base text
- transformers
- ];
- libraryPkgconfigDepends = [ glib ];
- doHaddock = false;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GLib bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib;};
-
- "gi-glib_2_0_14" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, glib
, haskell-gi, haskell-gi-base, haskell-gi-overloading, text
, transformers
@@ -77241,30 +76271,9 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GLib bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib;};
"gi-gobject" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib
- , haskell-gi, haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-gobject";
- version = "2.0.12";
- sha256 = "19d9agggpldzifjgc7g84lqk4vp3jd9lbbnrw5k8h4f37hq0n4c2";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-glib haskell-gi haskell-gi-base text
- transformers
- ];
- libraryPkgconfigDepends = [ glib ];
- doHaddock = false;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GObject bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib;};
-
- "gi-gobject_2_0_14" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib
, haskell-gi, haskell-gi-base, haskell-gi-overloading, text
, transformers
@@ -77283,7 +76292,6 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GObject bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib;};
"gi-gst" = callPackage
@@ -77417,28 +76425,6 @@ self: {
}) {inherit (pkgs.gst_all_1) gst-plugins-base;};
"gi-gtk" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
- , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject
- , gi-pango, gtk3, haskell-gi, haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-gtk";
- version = "3.0.15";
- sha256 = "176hvvrl2w71dy096irazr83v07qd8nixl6gsihn2i9caaxn4scb";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
- gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base text
- transformers
- ];
- libraryPkgconfigDepends = [ gtk3 ];
- doHaddock = false;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Gtk bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {gtk3 = pkgs.gnome3.gtk;};
-
- "gi-gtk_3_0_17" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
, gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject
, gi-pango, gtk3, haskell-gi, haskell-gi-base
@@ -77459,7 +76445,6 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Gtk bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk3 = pkgs.gnome3.gtk;};
"gi-gtk-hs" = callPackage
@@ -77527,16 +76512,17 @@ self: {
"gi-javascriptcore" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi
- , haskell-gi-base, text, transformers, webkitgtk24x-gtk3
+ , haskell-gi-base, haskell-gi-overloading, text, transformers
+ , webkitgtk24x-gtk3
}:
mkDerivation {
pname = "gi-javascriptcore";
- version = "3.0.12";
- sha256 = "1wfcl5b8kwngy433k74r0nfyx170wyyg9qx5axalvwxk7n3vjyz6";
+ version = "3.0.14";
+ sha256 = "1r2q176a38ylbawkrd17vdiqg0cnk5vzbp4rfgrlzfz6vp6gimi4";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
- base bytestring containers haskell-gi haskell-gi-base text
- transformers
+ base bytestring containers haskell-gi haskell-gi-base
+ haskell-gi-overloading text transformers
];
libraryPkgconfigDepends = [ webkitgtk24x-gtk3 ];
doHaddock = false;
@@ -77613,31 +76599,6 @@ self: {
}) {inherit (pkgs) ostree;};
"gi-pango" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, cairo, containers
- , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, pango, text
- , transformers
- }:
- mkDerivation {
- pname = "gi-pango";
- version = "1.0.13";
- sha256 = "0nrkaq135gb14zahd5805lkbi81vavbzs9cdxw5p33im62dihbzl";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi
- haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ cairo pango ];
- doHaddock = false;
- preCompileBuildDriver = ''
- PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig"
- setupCompileFlags+=" $(pkg-config --libs cairo-gobject)"
- '';
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Pango bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) cairo; inherit (pkgs.gnome2) pango;};
-
- "gi-pango_1_0_15" = callPackage
({ mkDerivation, base, bytestring, Cabal, cairo, containers
, gi-glib, gi-gobject, haskell-gi, haskell-gi-base
, haskell-gi-overloading, pango, text, transformers
@@ -77660,7 +76621,6 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Pango bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) cairo; inherit (pkgs.gnome2) pango;};
"gi-pangocairo" = callPackage
@@ -77733,27 +76693,6 @@ self: {
}) {inherit (pkgs) libsecret;};
"gi-soup" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio
- , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, libsoup, text
- , transformers
- }:
- mkDerivation {
- pname = "gi-soup";
- version = "2.4.12";
- sha256 = "04jzgcbacs3ynn7flg94a2vggf6npb9iv6nfvjbzkghrdw0ncp97";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
- haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ libsoup ];
- doHaddock = false;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Libsoup bindings";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs.gnome2) libsoup;};
-
- "gi-soup_2_4_14" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-gio
, gi-glib, gi-gobject, haskell-gi, haskell-gi-base
, haskell-gi-overloading, libsoup, text, transformers
@@ -77772,7 +76711,6 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Libsoup bindings";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs.gnome2) libsoup;};
"gi-vte" = callPackage
@@ -77799,30 +76737,6 @@ self: {
}) {inherit (pkgs.gnome2) vte;};
"gi-webkit" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
- , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject
- , gi-gtk, gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base
- , text, transformers, webkitgtk24x-gtk3
- }:
- mkDerivation {
- pname = "gi-webkit";
- version = "3.0.12";
- sha256 = "0r195s3fx2nkks4mzv4zi7a9isd4qkwvxfb9v5fknz46virppm01";
- setupHaskellDepends = [ base Cabal haskell-gi ];
- libraryHaskellDepends = [
- base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
- gi-gio gi-glib gi-gobject gi-gtk gi-javascriptcore gi-soup
- haskell-gi haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ webkitgtk24x-gtk3 ];
- doHaddock = false;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "WebKit bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs) webkitgtk24x-gtk3;};
-
- "gi-webkit_3_0_14" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
, gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject
, gi-gtk, gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base
@@ -77959,6 +76873,39 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "ginger_0_6_0_1" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, data-default, filepath
+ , http-types, mtl, parsec, safe, scientific, tasty, tasty-hunit
+ , tasty-quickcheck, text, time, transformers, unordered-containers
+ , utf8-string, vector
+ }:
+ mkDerivation {
+ pname = "ginger";
+ version = "0.6.0.1";
+ sha256 = "0c843zx5jnw1z0gbiyq5asx5amz6bh87kn1f7359p4p1l4qg44sk";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ aeson base bytestring data-default filepath http-types mtl parsec
+ safe scientific text time transformers unordered-containers
+ utf8-string vector
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring data-default text transformers
+ unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson base bytestring data-default mtl tasty tasty-hunit
+ tasty-quickcheck text time transformers unordered-containers
+ utf8-string
+ ];
+ homepage = "https://bitbucket.org/tdammers/ginger";
+ description = "An implementation of the Jinja2 template language in Haskell";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ginsu" = callPackage
({ mkDerivation, array, async, base, binary, bytestring, containers
, directory, hashable, hashtables, mtl, network, old-locale
@@ -78192,6 +77139,82 @@ self: {
inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget;
inherit (pkgs) which;};
+ "git-annex_6_20170818" = callPackage
+ ({ mkDerivation, aeson, async, aws, base, blaze-builder
+ , bloomfilter, bup, byteable, bytestring, Cabal, case-insensitive
+ , clientsession, concurrent-output, conduit, conduit-extra
+ , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus
+ , directory, disk-free-space, dlist, dns, edit-distance, esqueleto
+ , exceptions, fdo-notify, feed, filepath, free, git, gnupg
+ , hinotify, hslogger, http-client, http-conduit, http-types, IfElse
+ , lsof, magic, memory, monad-control, monad-logger, mountpoints
+ , mtl, network, network-info, network-multicast, network-uri
+ , old-locale, openssh, optparse-applicative, path-pieces, perl
+ , persistent, persistent-sqlite, persistent-template, process
+ , QuickCheck, random, regex-tdfa, resourcet, rsync, SafeSemaphore
+ , sandi, securemem, shakespeare, socks, split, stm, stm-chans
+ , tasty, tasty-hunit, tasty-quickcheck, tasty-rerun
+ , template-haskell, text, time, torrent, transformers, unix
+ , unix-compat, unordered-containers, utf8-string, uuid, wai
+ , wai-extra, warp, warp-tls, wget, which, yesod, yesod-core
+ , yesod-default, yesod-form, yesod-static
+ }:
+ mkDerivation {
+ pname = "git-annex";
+ version = "6.20170818";
+ sha256 = "0ybxixbqvy4rx6mq9s02rh349rbr04hb17z4bfayin0qwa5kzpvx";
+ configureFlags = [
+ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns"
+ "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3"
+ "-ftahoe" "-ftdfa" "-ftestsuite" "-ftorrentparser" "-fwebapp"
+ "-fwebapp-secure" "-fwebdav" "-fxmpp"
+ ];
+ isLibrary = false;
+ isExecutable = true;
+ setupHaskellDepends = [
+ base bytestring Cabal data-default directory exceptions filepath
+ hslogger IfElse process split unix unix-compat
+ ];
+ executableHaskellDepends = [
+ aeson async aws base blaze-builder bloomfilter byteable bytestring
+ case-insensitive clientsession concurrent-output conduit
+ conduit-extra containers crypto-api cryptonite data-default DAV
+ dbus directory disk-free-space dlist dns edit-distance esqueleto
+ exceptions fdo-notify feed filepath free hinotify hslogger
+ http-client http-conduit http-types IfElse magic memory
+ monad-control monad-logger mountpoints mtl network network-info
+ network-multicast network-uri old-locale optparse-applicative
+ path-pieces persistent persistent-sqlite persistent-template
+ process QuickCheck random regex-tdfa resourcet SafeSemaphore sandi
+ securemem shakespeare socks split stm stm-chans tasty tasty-hunit
+ tasty-quickcheck tasty-rerun template-haskell text time torrent
+ transformers unix unix-compat unordered-containers utf8-string uuid
+ wai wai-extra warp warp-tls yesod yesod-core yesod-default
+ yesod-form yesod-static
+ ];
+ executableSystemDepends = [
+ bup curl git gnupg lsof openssh perl rsync wget which
+ ];
+ preConfigure = "export HOME=$TEMPDIR; patchShebangs .";
+ installPhase = "make PREFIX=$out BUILDER=: install";
+ checkPhase = ''
+ ln -sf dist/build/git-annex/git-annex git-annex
+ ln -sf git-annex git-annex-shell
+ export PATH+=":$PWD"
+ git-annex test
+ '';
+ enableSharedExecutables = false;
+ homepage = "http://git-annex.branchable.com/";
+ description = "manage files with git, without checking their contents into git";
+ license = stdenv.lib.licenses.gpl3;
+ platforms = [ "i686-linux" "x86_64-linux" ];
+ hydraPlatforms = stdenv.lib.platforms.none;
+ maintainers = with stdenv.lib.maintainers; [ peti ];
+ }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git;
+ inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh;
+ inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget;
+ inherit (pkgs) which;};
+
"git-checklist" = callPackage
({ mkDerivation, base, directory, filepath, optparse-applicative
, parsec, pretty, process
@@ -78444,26 +77467,27 @@ self: {
"git-vogue" = callPackage
({ mkDerivation, base, bifunctors, Cabal, containers, cpphs, Diff
- , directory, filepath, formatting, ghc-mod, git, haskell-src-exts
- , hlint, hscolour, hspec, optparse-applicative, process, split
- , strict, stylish-haskell, temporary, text, transformers, unix
+ , directory, extra, filepath, formatting, ghc-mod, git
+ , haskell-src-exts, hlint, hscolour, hspec, optparse-applicative
+ , process, split, strict, stylish-haskell, temporary, text
+ , transformers, unix
}:
mkDerivation {
pname = "git-vogue";
- version = "0.2.1.1";
- sha256 = "1mah90zlpvg8lajvh530bkvak5zs8nirxlj9xx3wmvwxw862c6mh";
- revision = "1";
- editedCabalFile = "00pqgbjdzzqf10201yv934llaq2xflad9djix21f05nk7qq62g0r";
+ version = "0.2.2.1";
+ sha256 = "1gx96rh97gbbf2h64rpar00pdph4vdvhwpw7hmmi1vh5ynqp4zrs";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
+ setupHaskellDepends = [ base Cabal filepath ];
libraryHaskellDepends = [
- base containers directory filepath formatting optparse-applicative
- process split text transformers unix
+ base containers directory extra filepath formatting
+ optparse-applicative process split text transformers unix
];
executableHaskellDepends = [
base bifunctors Cabal cpphs Diff directory ghc-mod haskell-src-exts
- hlint hscolour optparse-applicative strict stylish-haskell text
+ hlint hscolour optparse-applicative process strict stylish-haskell
+ text
];
testHaskellDepends = [
base containers directory filepath hspec process temporary
@@ -78618,8 +77642,8 @@ self: {
}:
mkDerivation {
pname = "github-release";
- version = "1.0.4";
- sha256 = "00iibn9fh0g8ch8v544v47jvjfar8p86kpaq85x1mvjp1f9m554c";
+ version = "1.0.5";
+ sha256 = "1dmilm5mwgb975f6n34x3ylnkipqrvxcimkvj6pyfw97bdcclacb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -79579,6 +78603,8 @@ self: {
pname = "gloss-accelerate";
version = "2.0.0.0";
sha256 = "1hfiy2j7850yisbakz5nadr6l9k5maqq5mvg1xhak9jj1k1ji9if";
+ revision = "1";
+ editedCabalFile = "1arsf3j8b59qr5z5sy5sxx5mdddagjginrqs3jb9lpj1s3c3672b";
libraryHaskellDepends = [ accelerate base gloss gloss-rendering ];
description = "Extras to interface Gloss and Accelerate";
license = stdenv.lib.licenses.bsd3;
@@ -79704,6 +78730,8 @@ self: {
pname = "gloss-raster-accelerate";
version = "2.0.0.0";
sha256 = "1i0qx9wybr66i1x4n3p8ai2z6qx0k5lac422mhh4rvimcjx2bc9d";
+ revision = "1";
+ editedCabalFile = "07c56r31akmq7hq0cyw4lc4h5370laand231wjd5ffwk369x2prg";
libraryHaskellDepends = [
accelerate base colour-accelerate gloss gloss-accelerate
];
@@ -80025,27 +79053,6 @@ self: {
}) {inherit (pkgs) libidn;};
"gnuplot" = callPackage
- ({ mkDerivation, array, base, containers, data-accessor
- , data-accessor-transformers, deepseq, filepath, process, temporary
- , time, transformers, utility-ht
- }:
- mkDerivation {
- pname = "gnuplot";
- version = "0.5.4.1";
- sha256 = "1xz8prw9xjk0rsyrkp9bsmxykzrbhpv9qhhkdapy75mdbmgwjm7s";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- array base containers data-accessor data-accessor-transformers
- deepseq filepath process temporary time transformers utility-ht
- ];
- homepage = "http://www.haskell.org/haskellwiki/Gnuplot";
- description = "2D and 3D plots using gnuplot";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "gnuplot_0_5_4_2" = callPackage
({ mkDerivation, array, base, containers, data-accessor
, data-accessor-transformers, deepseq, filepath, process, temporary
, time, transformers, utility-ht
@@ -80064,7 +79071,6 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Gnuplot";
description = "2D and 3D plots using gnuplot";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gnutls" = callPackage
@@ -83206,8 +82212,8 @@ self: {
}:
mkDerivation {
pname = "grid";
- version = "7.8.8";
- sha256 = "174x6x4aflv75k89nvpnpwd5201c5375vb0yk4p0ilidqi7kza90";
+ version = "7.8.9";
+ sha256 = "1gzf8k4v16aavz63fcl0byqxzha796g77dng7rsxjm8zsgzlicy0";
libraryHaskellDepends = [ base cereal containers ];
testHaskellDepends = [
base containers QuickCheck test-framework
@@ -83372,30 +82378,6 @@ self: {
}) {};
"groundhog-inspector" = callPackage
- ({ mkDerivation, aeson-pretty, base, bytestring, cmdargs
- , containers, groundhog, groundhog-sqlite, groundhog-th, mtl
- , regex-compat, syb, template-haskell, text, time, transformers
- }:
- mkDerivation {
- pname = "groundhog-inspector";
- version = "0.8";
- sha256 = "0vh71ds4ff89skm2ib55q9zfsgjxwlshz1gn3ncahcpb7wgzagfl";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson-pretty base bytestring containers groundhog groundhog-th
- regex-compat syb template-haskell text time transformers
- ];
- executableHaskellDepends = [
- base bytestring cmdargs containers groundhog groundhog-sqlite
- groundhog-th mtl
- ];
- homepage = "http://github.com/lykahb/groundhog";
- description = "Type-safe datatype-database mapping library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "groundhog-inspector_0_8_0_2" = callPackage
({ mkDerivation, aeson-pretty, base, bytestring, cmdargs
, containers, groundhog, groundhog-sqlite, groundhog-th, mtl
, regex-compat, syb, template-haskell, text, time, transformers
@@ -83417,7 +82399,6 @@ self: {
homepage = "http://github.com/lykahb/groundhog";
description = "Type-safe datatype-database mapping library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"groundhog-mysql" = callPackage
@@ -83875,7 +82856,7 @@ self: {
libraryHaskellDepends = [ array base containers glib gtk mtl ];
libraryPkgconfigDepends = [ gtk-mac-integration-gtk2 ];
homepage = "http://www.haskell.org/gtk2hs/";
- description = "Bindings for the Gtk/macOS integration library";
+ description = "Bindings for the Gtk/OS X integration library";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk-mac-integration-gtk2 = null;};
@@ -84139,7 +83120,7 @@ self: {
libraryHaskellDepends = [ array base containers glib gtk3 mtl ];
libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ];
homepage = "http://www.haskell.org/gtk2hs/";
- description = "Bindings for the Gtk/macOS integration library";
+ description = "Bindings for the Gtk/OS X integration library";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk-mac-integration-gtk3 = null;};
@@ -86062,8 +85043,8 @@ self: {
}:
mkDerivation {
pname = "haddocset";
- version = "0.4.2";
- sha256 = "140ja5i6l3dfy8pz8vrx8z2adx2mvr5y0252avf8b6lqjsxqgxm8";
+ version = "0.4.3";
+ sha256 = "0fy4vx7jig9zkg4i8fajrz1mz72cdi0y6qk1h152x7nlz26f7ymk";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -86269,25 +85250,6 @@ self: {
}) {};
"hailgun" = callPackage
- ({ mkDerivation, aeson, base, bytestring, email-validate
- , exceptions, filepath, http-client, http-client-tls, http-types
- , tagsoup, text, time, transformers
- }:
- mkDerivation {
- pname = "hailgun";
- version = "0.4.1.4";
- sha256 = "0qcfhprg5x0wb28zgn80x808a1w6il2hc6mykq8wv0ranmwj1lrx";
- libraryHaskellDepends = [
- aeson base bytestring email-validate exceptions filepath
- http-client http-client-tls http-types tagsoup text time
- transformers
- ];
- homepage = "https://bitbucket.org/robertmassaioli/hailgun";
- description = "Mailgun REST api interface for Haskell";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "hailgun_0_4_1_5" = callPackage
({ mkDerivation, aeson, base, bytestring, email-validate
, exceptions, filepath, http-client, http-client-tls, http-types
, tagsoup, text, time, transformers
@@ -86304,7 +85266,6 @@ self: {
homepage = "https://bitbucket.org/robertmassaioli/hailgun";
description = "Mailgun REST api interface for Haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hailgun-send" = callPackage
@@ -87069,6 +86030,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hamilton_0_1_0_1" = callPackage
+ ({ mkDerivation, ad, ansi-wl-pprint, base, comonad, containers
+ , free, hmatrix, hmatrix-gsl, optparse-applicative
+ , typelits-witnesses, vector, vector-sized, vty
+ }:
+ mkDerivation {
+ pname = "hamilton";
+ version = "0.1.0.1";
+ sha256 = "12wp6z2dhcpyijvf1bqcx1bamw19crm23wvzgbpbjw3azyi72sn3";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ad base comonad free hmatrix hmatrix-gsl typelits-witnesses
+ vector-sized
+ ];
+ executableHaskellDepends = [
+ ansi-wl-pprint base containers hmatrix optparse-applicative vector
+ vector-sized vty
+ ];
+ homepage = "https://github.com/mstksg/hamilton";
+ description = "Physics on generalized coordinate systems using Hamiltonian Mechanics and AD";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hamlet" = callPackage
({ mkDerivation, base, shakespeare }:
mkDerivation {
@@ -87427,34 +86413,6 @@ self: {
}) {};
"hapistrano" = callPackage
- ({ mkDerivation, aeson, async, base, directory, filepath, hspec
- , mtl, optparse-applicative, path, path-io, process, stm, temporary
- , time, transformers, yaml
- }:
- mkDerivation {
- pname = "hapistrano";
- version = "0.3.2.2";
- sha256 = "0yb0www1nab0nybg0nxs64cni9j2n8sw1l5c8byfnivagqz428w7";
- revision = "1";
- editedCabalFile = "0rx3hs8z717cmx3l97fjmyz94i0n25f69x2rk3nvgnldskvjxswv";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base filepath mtl path process time transformers
- ];
- executableHaskellDepends = [
- aeson async base optparse-applicative path path-io stm yaml
- ];
- testHaskellDepends = [
- base directory filepath hspec mtl path path-io process temporary
- ];
- homepage = "https://github.com/stackbuilders/hapistrano";
- description = "A deployment library for Haskell applications";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "hapistrano_0_3_2_4" = callPackage
({ mkDerivation, aeson, async, base, directory, filepath, hspec
, mtl, optparse-applicative, path, path-io, process, stm, temporary
, time, transformers, yaml
@@ -87480,7 +86438,6 @@ self: {
homepage = "https://github.com/stackbuilders/hapistrano";
description = "A deployment library for Haskell applications";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happindicator" = callPackage
@@ -88069,25 +87026,6 @@ self: {
}) {};
"happstack-server-tls" = callPackage
- ({ mkDerivation, base, bytestring, extensible-exceptions
- , happstack-server, hslogger, HsOpenSSL, network, openssl, sendfile
- , time, unix
- }:
- mkDerivation {
- pname = "happstack-server-tls";
- version = "7.1.6.3";
- sha256 = "0bpa0clcfq0jgb6y8wm331411w5mryjj4aknnn0sb74dx122lhyz";
- libraryHaskellDepends = [
- base bytestring extensible-exceptions happstack-server hslogger
- HsOpenSSL network sendfile time unix
- ];
- librarySystemDepends = [ openssl ];
- homepage = "http://www.happstack.com/";
- description = "extend happstack-server with https:// support (TLS/SSL)";
- license = stdenv.lib.licenses.bsd3;
- }) {inherit (pkgs) openssl;};
-
- "happstack-server-tls_7_1_6_4" = callPackage
({ mkDerivation, base, bytestring, extensible-exceptions
, happstack-server, hslogger, HsOpenSSL, network, openssl, sendfile
, time, unix
@@ -88104,7 +87042,6 @@ self: {
homepage = "http://www.happstack.com/";
description = "extend happstack-server with https:// support (TLS/SSL)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) openssl;};
"happstack-server-tls-cryptonite" = callPackage
@@ -88591,8 +87528,8 @@ self: {
}:
mkDerivation {
pname = "hascar";
- version = "0.2.1.1";
- sha256 = "11j0bixpl2fyn5xxyjzh2d42c6hv5scpsjqr6akszfcmjlx1r07z";
+ version = "0.2.1.2";
+ sha256 = "1x04yddy74vj7sxwsmq411z4s02n5asb17vc5290ha7s257fr81j";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -89651,33 +88588,6 @@ self: {
}) {};
"haskell-gi" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, Cabal, containers
- , directory, doctest, filepath, glib, gobjectIntrospection
- , haskell-gi-base, mtl, pretty-show, process, regex-tdfa, safe
- , text, transformers, xdg-basedir, xml-conduit
- }:
- mkDerivation {
- pname = "haskell-gi";
- version = "0.20.2";
- sha256 = "1dnavj0qpcljakmb5jnv0hqds8a0zqn5ycn0xq5fls20fmw9j5gh";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- attoparsec base bytestring Cabal containers directory filepath
- haskell-gi-base mtl pretty-show process regex-tdfa safe text
- transformers xdg-basedir xml-conduit
- ];
- libraryPkgconfigDepends = [ glib gobjectIntrospection ];
- executableHaskellDepends = [
- base containers directory filepath haskell-gi-base pretty-show text
- ];
- testHaskellDepends = [ base doctest ];
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Generate Haskell bindings for GObject Introspection capable libraries";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;};
-
- "haskell-gi_0_20_3" = callPackage
({ mkDerivation, attoparsec, base, bytestring, Cabal, containers
, directory, doctest, filepath, glib, gobjectIntrospection
, haskell-gi-base, mtl, pretty-show, process, regex-tdfa, safe
@@ -89702,23 +88612,9 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Generate Haskell bindings for GObject Introspection capable libraries";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;};
"haskell-gi-base" = callPackage
- ({ mkDerivation, base, bytestring, containers, glib, text }:
- mkDerivation {
- pname = "haskell-gi-base";
- version = "0.20.3";
- sha256 = "07ggfmbr9s4c1ql4cyyk64fbig5k2mpc25371zrrj44yc6ai2xz1";
- libraryHaskellDepends = [ base bytestring containers text ];
- libraryPkgconfigDepends = [ glib ];
- homepage = "https://github.com/haskell-gi/haskell-gi-base";
- description = "Foundation for libraries generated by haskell-gi";
- license = stdenv.lib.licenses.lgpl21;
- }) {inherit (pkgs) glib;};
-
- "haskell-gi-base_0_20_4" = callPackage
({ mkDerivation, base, bytestring, containers, glib, text }:
mkDerivation {
pname = "haskell-gi-base";
@@ -89729,7 +88625,6 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi-base";
description = "Foundation for libraries generated by haskell-gi";
license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib;};
"haskell-gi-overloading" = callPackage
@@ -90290,6 +89185,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "haskell-src-exts-observe" = callPackage
+ ({ mkDerivation, base, haskell-src-exts, Hoed }:
+ mkDerivation {
+ pname = "haskell-src-exts-observe";
+ version = "0.1.0";
+ sha256 = "06vqd9ljmlx96xx6gyhfag2fsxwdzab0sy1gry2d24mbppbaa1x1";
+ libraryHaskellDepends = [ base haskell-src-exts Hoed ];
+ homepage = "https://github.com/pepeiborra/haskell-src-exts-observe";
+ description = "Observable orphan instances for haskell-src-exts";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"haskell-src-exts-prisms" = callPackage
({ mkDerivation, base, haskell-src-exts, lens, template-haskell }:
mkDerivation {
@@ -90410,22 +89317,6 @@ self: {
}) {};
"haskell-tools-ast" = callPackage
- ({ mkDerivation, base, ghc, mtl, references, template-haskell
- , uniplate
- }:
- mkDerivation {
- pname = "haskell-tools-ast";
- version = "0.8.0.0";
- sha256 = "15d588xnmghq116g4bg0jv10z5xzs54ln4da58dzm0d8241bmcd0";
- libraryHaskellDepends = [
- base ghc mtl references template-haskell uniplate
- ];
- homepage = "https://github.com/nboldi/haskell-tools";
- description = "Haskell AST for efficient tooling";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "haskell-tools-ast_0_8_1_0" = callPackage
({ mkDerivation, base, ghc, mtl, references, template-haskell
, uniplate
}:
@@ -90439,7 +89330,6 @@ self: {
homepage = "https://github.com/nboldi/haskell-tools";
description = "Haskell AST for efficient tooling";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-tools-ast-fromghc" = callPackage
@@ -90497,24 +89387,6 @@ self: {
}) {};
"haskell-tools-backend-ghc" = callPackage
- ({ mkDerivation, base, bytestring, containers, ghc, ghc-boot-th
- , haskell-tools-ast, mtl, references, safe, split, template-haskell
- , transformers, uniplate
- }:
- mkDerivation {
- pname = "haskell-tools-backend-ghc";
- version = "0.8.0.0";
- sha256 = "076kb9hcjina0d5dcwslbxhkja3p2m2fyxs88ywyqlciry2wdw2n";
- libraryHaskellDepends = [
- base bytestring containers ghc ghc-boot-th haskell-tools-ast mtl
- references safe split template-haskell transformers uniplate
- ];
- homepage = "https://github.com/nboldi/haskell-tools";
- description = "Creating the Haskell-Tools AST from GHC's representations";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "haskell-tools-backend-ghc_0_8_1_0" = callPackage
({ mkDerivation, base, bytestring, containers, ghc, ghc-boot-th
, haskell-tools-ast, mtl, references, safe, split, template-haskell
, transformers, uniplate
@@ -90530,7 +89402,6 @@ self: {
homepage = "https://github.com/nboldi/haskell-tools";
description = "Creating the Haskell-Tools AST from GHC's representations";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-tools-cli" = callPackage
@@ -90564,33 +89435,6 @@ self: {
}) {};
"haskell-tools-daemon" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, Diff
- , directory, filepath, ghc, ghc-paths, haskell-tools-ast
- , haskell-tools-prettyprint, haskell-tools-refactor, HUnit, mtl
- , network, process, references, split, strict, tasty, tasty-hunit
- }:
- mkDerivation {
- pname = "haskell-tools-daemon";
- version = "0.8.0.0";
- sha256 = "0fd9pxyxsfy09ks21nsk6khx97mb73kvjk6hg3wc8qcffxng9m69";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base bytestring containers Diff directory filepath ghc
- ghc-paths haskell-tools-ast haskell-tools-prettyprint
- haskell-tools-refactor mtl network process references split strict
- ];
- executableHaskellDepends = [ base ];
- testHaskellDepends = [
- aeson base bytestring directory filepath ghc HUnit network process
- tasty tasty-hunit
- ];
- homepage = "https://github.com/haskell-tools/haskell-tools";
- description = "Background process for Haskell-tools refactor that editors can connect to";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "haskell-tools-daemon_0_8_1_0" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, Diff
, directory, filepath, ghc, ghc-paths, haskell-tools-ast
, haskell-tools-prettyprint, haskell-tools-refactor, HUnit, mtl
@@ -90615,32 +89459,9 @@ self: {
homepage = "https://github.com/haskell-tools/haskell-tools";
description = "Background process for Haskell-tools refactor that editors can connect to";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-tools-debug" = callPackage
- ({ mkDerivation, base, filepath, ghc, ghc-paths, haskell-tools-ast
- , haskell-tools-backend-ghc, haskell-tools-prettyprint
- , haskell-tools-refactor, references, template-haskell
- }:
- mkDerivation {
- pname = "haskell-tools-debug";
- version = "0.8.0.0";
- sha256 = "0j9gd562kmmanqx9kbs1kks68pksnxgf55rghl8ip3j8a3h93smy";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base filepath ghc ghc-paths haskell-tools-ast
- haskell-tools-backend-ghc haskell-tools-prettyprint
- haskell-tools-refactor references template-haskell
- ];
- executableHaskellDepends = [ base ];
- homepage = "https://github.com/haskell-tools/haskell-tools";
- description = "Debugging Tools for Haskell-tools";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "haskell-tools-debug_0_8_1_0" = callPackage
({ mkDerivation, base, filepath, ghc, ghc-paths, haskell-tools-ast
, haskell-tools-backend-ghc, haskell-tools-prettyprint
, haskell-tools-refactor, references, template-haskell
@@ -90660,40 +89481,9 @@ self: {
homepage = "https://github.com/haskell-tools/haskell-tools";
description = "Debugging Tools for Haskell-tools";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-tools-demo" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, directory
- , filepath, ghc, ghc-paths, haskell-tools-ast
- , haskell-tools-backend-ghc, haskell-tools-prettyprint
- , haskell-tools-refactor, http-types, HUnit, mtl, network
- , references, tasty, tasty-hunit, transformers, wai, wai-websockets
- , warp, websockets
- }:
- mkDerivation {
- pname = "haskell-tools-demo";
- version = "0.8.0.0";
- sha256 = "14l8zwzi4nzx1ddq2sbazr5faf0y241ppx9df5q9n0v24aclmxd6";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base bytestring containers directory filepath ghc ghc-paths
- haskell-tools-ast haskell-tools-backend-ghc
- haskell-tools-prettyprint haskell-tools-refactor http-types mtl
- references transformers wai wai-websockets warp websockets
- ];
- executableHaskellDepends = [ base ];
- testHaskellDepends = [
- aeson base bytestring directory filepath HUnit network tasty
- tasty-hunit websockets
- ];
- homepage = "https://github.com/haskell-tools/haskell-tools";
- description = "A web-based demo for Haskell-tools Refactor";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "haskell-tools-demo_0_8_1_0" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, directory
, filepath, ghc, ghc-paths, haskell-tools-ast
, haskell-tools-backend-ghc, haskell-tools-prettyprint
@@ -90721,27 +89511,9 @@ self: {
homepage = "https://github.com/haskell-tools/haskell-tools";
description = "A web-based demo for Haskell-tools Refactor";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-tools-prettyprint" = callPackage
- ({ mkDerivation, base, containers, ghc, haskell-tools-ast, mtl
- , references, split, text, uniplate
- }:
- mkDerivation {
- pname = "haskell-tools-prettyprint";
- version = "0.8.0.0";
- sha256 = "19bx0fzgvin78iilw32klmjr0z0c9cw1x0xx1nj8mbi44c5rcb64";
- libraryHaskellDepends = [
- base containers ghc haskell-tools-ast mtl references split text
- uniplate
- ];
- homepage = "https://github.com/haskell-tools/haskell-tools";
- description = "Pretty printing of Haskell-Tools AST";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "haskell-tools-prettyprint_0_8_1_0" = callPackage
({ mkDerivation, base, containers, ghc, haskell-tools-ast, mtl
, references, split, text, uniplate
}:
@@ -90756,40 +89528,9 @@ self: {
homepage = "https://github.com/haskell-tools/haskell-tools";
description = "Pretty printing of Haskell-Tools AST";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-tools-refactor" = callPackage
- ({ mkDerivation, base, Cabal, containers, directory, either
- , filepath, ghc, ghc-paths, haskell-tools-ast
- , haskell-tools-backend-ghc, haskell-tools-prettyprint
- , haskell-tools-rewrite, mtl, old-time, polyparse, references
- , split, tasty, tasty-hunit, template-haskell, time, transformers
- , uniplate
- }:
- mkDerivation {
- pname = "haskell-tools-refactor";
- version = "0.8.0.0";
- sha256 = "1k9mq164v7nm83dykdgmzxfdqmyk5p35lgzvnmw9mh43rrnnw8vd";
- libraryHaskellDepends = [
- base Cabal containers directory filepath ghc ghc-paths
- haskell-tools-ast haskell-tools-backend-ghc
- haskell-tools-prettyprint haskell-tools-rewrite mtl references
- split template-haskell transformers uniplate
- ];
- testHaskellDepends = [
- base Cabal containers directory either filepath ghc ghc-paths
- haskell-tools-ast haskell-tools-backend-ghc
- haskell-tools-prettyprint haskell-tools-rewrite mtl old-time
- polyparse references split tasty tasty-hunit template-haskell time
- transformers uniplate
- ];
- homepage = "https://github.com/haskell-tools/haskell-tools";
- description = "Refactoring Tool for Haskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "haskell-tools-refactor_0_8_1_0" = callPackage
({ mkDerivation, base, Cabal, containers, directory, either
, filepath, ghc, ghc-paths, haskell-tools-ast
, haskell-tools-backend-ghc, haskell-tools-prettyprint
@@ -90817,32 +89558,9 @@ self: {
homepage = "https://github.com/haskell-tools/haskell-tools";
description = "Refactoring Tool for Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-tools-rewrite" = callPackage
- ({ mkDerivation, base, containers, directory, filepath, ghc
- , haskell-tools-ast, haskell-tools-prettyprint, mtl, references
- , tasty, tasty-hunit
- }:
- mkDerivation {
- pname = "haskell-tools-rewrite";
- version = "0.8.0.0";
- sha256 = "076dc91swh42rs80ijbjrbzab1m9vjdzvy7z9r7znmrhy951ck5c";
- libraryHaskellDepends = [
- base containers ghc haskell-tools-ast haskell-tools-prettyprint mtl
- references
- ];
- testHaskellDepends = [
- base directory filepath haskell-tools-ast haskell-tools-prettyprint
- tasty tasty-hunit
- ];
- homepage = "https://github.com/haskell-tools/haskell-tools";
- description = "Facilities for generating new parts of the Haskell-Tools AST";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "haskell-tools-rewrite_0_8_1_0" = callPackage
({ mkDerivation, base, containers, directory, filepath, ghc
, haskell-tools-ast, haskell-tools-prettyprint, mtl, references
, tasty, tasty-hunit
@@ -90862,7 +89580,6 @@ self: {
homepage = "https://github.com/haskell-tools/haskell-tools";
description = "Facilities for generating new parts of the Haskell-Tools AST";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-tor" = callPackage
@@ -92107,36 +90824,6 @@ self: {
}) {};
"hasmin" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, containers
- , criterion, directory, doctest, doctest-discover, gitrev, hopfli
- , hspec, hspec-attoparsec, matrix, mtl, numbers
- , optparse-applicative, parsers, QuickCheck, text
- }:
- mkDerivation {
- pname = "hasmin";
- version = "0.3.2.2";
- sha256 = "0522rp8cicvizvr183vfr07a5c8a98hz7g6m6pjjk1vzf95b7w20";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- attoparsec base bytestring containers matrix mtl numbers parsers
- text
- ];
- executableHaskellDepends = [
- attoparsec base bytestring containers gitrev hopfli matrix mtl
- numbers optparse-applicative parsers text
- ];
- testHaskellDepends = [
- attoparsec base doctest doctest-discover hspec hspec-attoparsec mtl
- QuickCheck text
- ];
- benchmarkHaskellDepends = [ base criterion directory text ];
- homepage = "https://github.com/contivero/hasmin#readme";
- description = "\"A CSS Minifier\"";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hasmin_0_3_2_4" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers
, criterion, directory, doctest, doctest-discover, gitrev, hopfli
, hspec, hspec-attoparsec, matrix, mtl, numbers
@@ -92164,7 +90851,6 @@ self: {
homepage = "https://github.com/contivero/hasmin#readme";
description = "CSS Minifier";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hasparql-client" = callPackage
@@ -92194,40 +90880,6 @@ self: {
}) {inherit (pkgs) aspell;};
"hasql" = callPackage
- ({ mkDerivation, attoparsec, base, base-prelude, bytestring
- , bytestring-strict-builder, contravariant, contravariant-extras
- , criterion, data-default-class, deepseq, dlist, either, hashable
- , hashtables, loch-th, mtl, placeholders, postgresql-binary
- , postgresql-libpq, profunctors, QuickCheck, quickcheck-instances
- , rebase, rerebase, scientific, semigroups, tasty, tasty-hunit
- , tasty-quickcheck, tasty-smallcheck, text, time, transformers
- , uuid, vector
- }:
- mkDerivation {
- pname = "hasql";
- version = "0.19.18";
- sha256 = "0k922mrj055rklb071z50m0y84wrfyivpm06k4fnxqwph728nzm6";
- libraryHaskellDepends = [
- attoparsec base base-prelude bytestring bytestring-strict-builder
- contravariant contravariant-extras data-default-class dlist either
- hashable hashtables loch-th mtl placeholders postgresql-binary
- postgresql-libpq profunctors semigroups text transformers vector
- ];
- testHaskellDepends = [
- data-default-class QuickCheck quickcheck-instances rebase rerebase
- tasty tasty-hunit tasty-quickcheck tasty-smallcheck
- ];
- benchmarkHaskellDepends = [
- base base-prelude bytestring contravariant contravariant-extras
- criterion data-default-class deepseq dlist either hashable
- profunctors scientific text time transformers uuid vector
- ];
- homepage = "https://github.com/nikita-volkov/hasql";
- description = "An efficient PostgreSQL driver and a flexible mapping API";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "hasql_0_19_18_1" = callPackage
({ mkDerivation, attoparsec, base, base-prelude, bug, bytestring
, bytestring-strict-builder, contravariant, contravariant-extras
, criterion, data-default-class, dlist, either, hashable
@@ -92254,7 +90906,6 @@ self: {
homepage = "https://github.com/nikita-volkov/hasql";
description = "An efficient PostgreSQL driver and a flexible mapping API";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hasql-backend" = callPackage
@@ -92893,33 +91544,6 @@ self: {
}) {};
"haxl" = callPackage
- ({ mkDerivation, aeson, base, binary, bytestring, containers
- , deepseq, exceptions, filepath, ghc-prim, hashable, HUnit, pretty
- , test-framework, test-framework-hunit, text, time, transformers
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "haxl";
- version = "0.5.0.0";
- sha256 = "1s6idnlykwi16d9yikmbx3hc1blcvnvyx7pjwqh9n59sb64l1jfw";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base binary bytestring containers deepseq exceptions filepath
- ghc-prim hashable HUnit pretty text time transformers
- unordered-containers vector
- ];
- executableHaskellDepends = [ base hashable time ];
- testHaskellDepends = [
- aeson base binary bytestring containers deepseq filepath hashable
- HUnit test-framework test-framework-hunit text unordered-containers
- ];
- homepage = "https://github.com/facebook/Haxl";
- description = "A Haskell library for efficient, concurrent, and concise data access";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "haxl_0_5_1_0" = callPackage
({ mkDerivation, aeson, base, binary, bytestring, containers
, deepseq, exceptions, filepath, ghc-prim, hashable, HUnit, pretty
, test-framework, test-framework-hunit, text, time, transformers
@@ -92945,7 +91569,6 @@ self: {
homepage = "https://github.com/facebook/Haxl";
description = "A Haskell library for efficient, concurrent, and concise data access";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haxl-amazonka" = callPackage
@@ -93898,8 +92521,8 @@ self: {
}:
mkDerivation {
pname = "hdocs";
- version = "0.5.2.0";
- sha256 = "144ap99ps0hicmndd0zk3ywbangjyrd9c7h90cxn5ikjp78h58xc";
+ version = "0.5.2.1";
+ sha256 = "1b8qrkfryyj8fg07vzl4cq4rwsbhlaqm5l477ld4mmgcgk4infi8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -94018,22 +92641,6 @@ self: {
}) {};
"heaps" = callPackage
- ({ mkDerivation, base, Cabal, cabal-doctest, directory, doctest
- , filepath
- }:
- mkDerivation {
- pname = "heaps";
- version = "0.3.4.1";
- sha256 = "1y9g3hkwxqy38js24954yprbhryv7bpa7xhxwv7fhnc4bc4nf9bw";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [ base ];
- testHaskellDepends = [ base directory doctest filepath ];
- homepage = "http://github.com/ekmett/heaps/";
- description = "Asymptotically optimal Brodal/Okasaki heaps";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "heaps_0_3_5" = callPackage
({ mkDerivation, base, Cabal, cabal-doctest, directory, doctest
, filepath
}:
@@ -94049,7 +92656,6 @@ self: {
homepage = "http://github.com/ekmett/heaps/";
description = "Asymptotically optimal Brodal/Okasaki heaps";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"heapsort" = callPackage
@@ -94182,8 +92788,8 @@ self: {
}:
mkDerivation {
pname = "hedis";
- version = "0.9.8";
- sha256 = "0qmfscq26f5n3a7xvc2ffg20gcg73y85w01s1vgpwpz55y62jbl2";
+ version = "0.9.9";
+ sha256 = "1va4lk0pjf3hcw4ap3s35c1slpbrb898g9x01az7g1xgwxq4y2jl";
libraryHaskellDepends = [
async base bytestring bytestring-lexing deepseq mtl network
resource-pool scanner stm text time unordered-containers vector
@@ -94359,8 +92965,8 @@ self: {
pname = "heist";
version = "1.0.1.0";
sha256 = "1jwbqr2n7jv8cykjgg1a0bdwjszmrbg5qflikvmkyiy1pz0z6kzx";
- revision = "4";
- editedCabalFile = "1swhqpm0sb6mvqgzy7cf8p7alvsy5qvcx1kdl5rnqq71vql5v4nn";
+ revision = "5";
+ editedCabalFile = "02vsrjfcbzfi27992dv60cakb2s1z6ci13x01cvgdskcm8w81yl6";
libraryHaskellDepends = [
aeson attoparsec base blaze-builder blaze-html bytestring
containers directory directory-tree dlist filepath hashable
@@ -95281,19 +93887,21 @@ self: {
}) {};
"hexml-lens" = callPackage
- ({ mkDerivation, base, bytestring, doctest, foundation, hexml, lens
- , QuickCheck, text
+ ({ mkDerivation, base, bytestring, contravariant, doctest
+ , foundation, hexml, hspec, lens, profunctors, QuickCheck, text
+ , wreq
}:
mkDerivation {
pname = "hexml-lens";
- version = "0.2.0";
- sha256 = "1rj45rghjzcgdllrcz2qm1sixjl73ncij5bh5qnkdb65b5hkfhfp";
- isLibrary = true;
- isExecutable = true;
+ version = "0.2.1";
+ sha256 = "0ss9riq7ppmqav4p38ckk479ggq7iy7xm0wsanr29ybg43vlx8xs";
libraryHaskellDepends = [
- base bytestring foundation hexml lens text
+ base bytestring contravariant foundation hexml lens profunctors
+ text
+ ];
+ testHaskellDepends = [
+ base bytestring doctest hexml hspec lens QuickCheck wreq
];
- testHaskellDepends = [ base doctest QuickCheck ];
homepage = "https://github.com/pepeiborra/hexml-lens#readme";
description = "Lenses for the hexml package";
license = stdenv.lib.licenses.bsd3;
@@ -95677,7 +94285,7 @@ self: {
librarySystemDepends = [ Cocoa ];
libraryToolDepends = [ CoreServices ];
homepage = "http://github.com/luite/hfsevents";
- description = "File/folder watching for macOS";
+ description = "File/folder watching for OS X";
license = stdenv.lib.licenses.bsd3;
platforms = [ "x86_64-darwin" ];
hydraPlatforms = stdenv.lib.platforms.none;
@@ -96808,6 +95416,8 @@ self: {
pname = "hint";
version = "0.7.0";
sha256 = "0mc17qdq0wb57zgh755viwcnby2jkmyv9r7fvq5jwsxx91c776i9";
+ revision = "1";
+ editedCabalFile = "07afndz6accq6g4d90xhvjh84ybhbffk5xl1qb3jrymf9vj5ad50";
libraryHaskellDepends = [
base directory exceptions filepath ghc ghc-paths mtl random unix
];
@@ -97888,23 +96498,6 @@ self: {
}) {inherit (pkgs) git; inherit (pkgs) openssl;};
"hlibsass" = callPackage
- ({ mkDerivation, base, Cabal, directory, hspec, libsass }:
- mkDerivation {
- pname = "hlibsass";
- version = "0.1.6.0";
- sha256 = "1plw99ri6xnrjdgrbmwzrw0hdr2m0f38zwr6yagigqfq2b72d21x";
- configureFlags = [ "-fexternallibsass" ];
- setupHaskellDepends = [ base Cabal directory ];
- libraryHaskellDepends = [ base ];
- librarySystemDepends = [ libsass ];
- testHaskellDepends = [ base hspec ];
- homepage = "https://github.com/jakubfijalkowski/hlibsass";
- description = "Low-level bindings to Libsass";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs) libsass;};
-
- "hlibsass_0_1_6_1" = callPackage
({ mkDerivation, base, Cabal, directory, hspec, libsass }:
mkDerivation {
pname = "hlibsass";
@@ -98075,6 +96668,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) openblasCompat;};
+ "hmatrix_0_18_1_0" = callPackage
+ ({ mkDerivation, array, base, binary, bytestring, deepseq
+ , openblasCompat, random, split, storable-complex, vector
+ }:
+ mkDerivation {
+ pname = "hmatrix";
+ version = "0.18.1.0";
+ sha256 = "07zkwvg872hfk6jyn4s54ws8mvclynazaxf7fsbqi16dmf9dn61c";
+ configureFlags = [ "-fopenblas" ];
+ libraryHaskellDepends = [
+ array base binary bytestring deepseq random split storable-complex
+ vector
+ ];
+ librarySystemDepends = [ openblasCompat ];
+ preConfigure = "sed -i hmatrix.cabal -e 's@/usr/@/dont/hardcode/paths/@'";
+ homepage = "https://github.com/albertoruiz/hmatrix";
+ description = "Numeric Linear Algebra";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) openblasCompat;};
+
"hmatrix-banded" = callPackage
({ mkDerivation, base, hmatrix, liblapack, transformers }:
mkDerivation {
@@ -98454,20 +97068,6 @@ self: {
}) {inherit (pkgs) ncurses;};
"hmpfr" = callPackage
- ({ mkDerivation, base, integer-gmp, mpfr }:
- mkDerivation {
- pname = "hmpfr";
- version = "0.4.2.1";
- sha256 = "048amh4w9vjrihahhb3rw0gbk3yp7qvjf6vcp9c5pq2kc3n7vcnc";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [ base integer-gmp ];
- librarySystemDepends = [ mpfr ];
- homepage = "https://github.com/michalkonecny/hmpfr";
- description = "Haskell binding to the MPFR library";
- license = stdenv.lib.licenses.bsd3;
- }) {inherit (pkgs) mpfr;};
-
- "hmpfr_0_4_3" = callPackage
({ mkDerivation, base, integer-gmp, mpfr }:
mkDerivation {
pname = "hmpfr";
@@ -98479,7 +97079,6 @@ self: {
homepage = "https://github.com/michalkonecny/hmpfr";
description = "Haskell binding to the MPFR library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) mpfr;};
"hmt" = callPackage
@@ -100588,26 +99187,6 @@ self: {
}) {};
"hpp" = callPackage
- ({ mkDerivation, base, bytestring, bytestring-trie, directory
- , filepath, ghc-prim, time, transformers
- }:
- mkDerivation {
- pname = "hpp";
- version = "0.4.0";
- sha256 = "0pcz89zw3asc1vm0w6f6qk6y6bvqnsr3wailzx89ym60minkx4h5";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring bytestring-trie directory filepath ghc-prim time
- transformers
- ];
- executableHaskellDepends = [ base directory filepath time ];
- homepage = "https://github.com/acowley/hpp";
- description = "A Haskell pre-processor";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hpp_0_4_1" = callPackage
({ mkDerivation, base, bytestring, bytestring-trie, directory
, filepath, ghc-prim, time, transformers
}:
@@ -100625,7 +99204,6 @@ self: {
homepage = "https://github.com/acowley/hpp";
description = "A Haskell pre-processor";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpqtypes" = callPackage
@@ -102490,8 +101068,8 @@ self: {
}:
mkDerivation {
pname = "hsdev";
- version = "0.2.5.0";
- sha256 = "12x26y11xd5h0j3s2j3pvfjak6mbdc417brhx6zva9k1x4lijagm";
+ version = "0.2.5.1";
+ sha256 = "15rr12mric0gm4xfskwsqh89kdiqxzvg47nkddbyr7hah1rjmcn4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -102689,25 +101267,6 @@ self: {
}) {};
"hsexif" = callPackage
- ({ mkDerivation, base, binary, bytestring, containers, hspec, HUnit
- , iconv, text, time
- }:
- mkDerivation {
- pname = "hsexif";
- version = "0.6.1.1";
- sha256 = "029zlchaijhv5rmd0llmqp1wpaskjfp8alhqh0bisz4sjgk2qw1p";
- libraryHaskellDepends = [
- base binary bytestring containers iconv text time
- ];
- testHaskellDepends = [
- base binary bytestring containers hspec HUnit iconv text time
- ];
- homepage = "https://github.com/emmanueltouzery/hsexif";
- description = "EXIF handling library in pure Haskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hsexif_0_6_1_2" = callPackage
({ mkDerivation, base, binary, bytestring, containers, hspec, HUnit
, iconv, text, time
}:
@@ -102724,7 +101283,6 @@ self: {
homepage = "https://github.com/emmanueltouzery/hsexif";
description = "EXIF handling library in pure Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsfacter" = callPackage
@@ -103017,8 +101575,8 @@ self: {
}:
mkDerivation {
pname = "hslogger-reader";
- version = "1.0.2";
- sha256 = "0kr07kw18ydn3l22dis7nfym4x5gi909riv2vs6s63szyghmj5dl";
+ version = "1.0.3";
+ sha256 = "18yvks9v8z27jjrfwmczrnhkpx9q33v2l6vfwisrx4a7sv7mc0fp";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ attoparsec base hslogger text time ];
@@ -103102,15 +101660,15 @@ self: {
license = stdenv.lib.licenses.mit;
}) {inherit (pkgs) lua5_1;};
- "hslua_0_6_0" = callPackage
+ "hslua_0_8_0" = callPackage
({ mkDerivation, base, bytestring, containers, exceptions, fail
, lua5_1, mtl, QuickCheck, quickcheck-instances, tasty
, tasty-expected-failure, tasty-hunit, tasty-quickcheck, text
}:
mkDerivation {
pname = "hslua";
- version = "0.6.0";
- sha256 = "1dbnvks02q2hayp9w5n3cj01y52lh7s7z9amhhi4fymrsb1d700l";
+ version = "0.8.0";
+ sha256 = "0zl7znhbwnqcdvy9v18x3ch8vxk719k5lx55nr65996wb193nwmc";
configureFlags = [ "-fsystem-lua" ];
libraryHaskellDepends = [
base bytestring containers exceptions fail mtl text
@@ -103147,6 +101705,29 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "hslua-aeson_0_3_0" = callPackage
+ ({ mkDerivation, aeson, base, hashable, hslua, hspec, HUnit
+ , ieee754, QuickCheck, quickcheck-instances, scientific, text
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "hslua-aeson";
+ version = "0.3.0";
+ sha256 = "1vsgncxxdwachbqp7pbckij94621zccz001hs774asvyc12anp38";
+ libraryHaskellDepends = [
+ aeson base hashable hslua scientific text unordered-containers
+ vector
+ ];
+ testHaskellDepends = [
+ aeson base hashable hslua hspec HUnit ieee754 QuickCheck
+ quickcheck-instances scientific text unordered-containers vector
+ ];
+ homepage = "https://github.com/tarleb/hslua-aeson#readme";
+ description = "Allow aeson data types to be used with lua";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hsmagick" = callPackage
({ mkDerivation, base, bytestring, bzip2, directory, filepath
, freetype2, GraphicsMagick, jasper, lcms, libjpeg, libpng, libxml2
@@ -103441,8 +102022,8 @@ self: {
}:
mkDerivation {
pname = "hsparql";
- version = "0.3.4";
- sha256 = "0nxj9aq59c02sdhz5nz5c3klcsglb4gpchah0b82fjbiphbs8sxb";
+ version = "0.3.5";
+ sha256 = "0557c81wgk930x2bq72f2f3kycanxxvk1s5nrfxn56lmgijzkkqz";
libraryHaskellDepends = [
base bytestring HTTP MissingH mtl network network-uri rdf4h text
xml
@@ -104885,25 +103466,6 @@ self: {
}) {};
"hsx2hs" = callPackage
- ({ mkDerivation, base, bytestring, haskell-src-exts
- , haskell-src-meta, mtl, template-haskell, utf8-string
- }:
- mkDerivation {
- pname = "hsx2hs";
- version = "0.14.1";
- sha256 = "191rzsxnilkps20pp124pfbq8blf6g1b3gj1z6h0aa73hhf07c73";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring haskell-src-exts haskell-src-meta mtl
- template-haskell utf8-string
- ];
- homepage = "https://github.com/seereason/hsx2hs";
- description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hsx2hs_0_14_1_1" = callPackage
({ mkDerivation, base, bytestring, haskell-src-exts
, haskell-src-meta, mtl, template-haskell, utf8-string
}:
@@ -104920,7 +103482,6 @@ self: {
homepage = "https://github.com/seereason/hsx2hs";
description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsyscall" = callPackage
@@ -106203,6 +104764,34 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "http-reverse-proxy_0_4_5" = callPackage
+ ({ mkDerivation, async, base, blaze-builder, bytestring
+ , case-insensitive, conduit, conduit-extra, containers
+ , data-default-class, hspec, http-client, http-conduit, http-types
+ , lifted-base, monad-control, network, resourcet, streaming-commons
+ , text, transformers, wai, wai-logger, warp, word8
+ }:
+ mkDerivation {
+ pname = "http-reverse-proxy";
+ version = "0.4.5";
+ sha256 = "0v1f1z3gmc51sbxmxhnp4sspzj6mdm0ihl5x30218p1ynz9ssxjn";
+ libraryHaskellDepends = [
+ async base blaze-builder bytestring case-insensitive conduit
+ conduit-extra containers data-default-class http-client http-types
+ lifted-base monad-control network resourcet streaming-commons text
+ transformers wai wai-logger word8
+ ];
+ testHaskellDepends = [
+ base blaze-builder bytestring conduit conduit-extra hspec
+ http-conduit http-types lifted-base network resourcet
+ streaming-commons transformers wai warp
+ ];
+ homepage = "https://github.com/fpco/http-reverse-proxy";
+ description = "Reverse proxy HTTP requests, either over raw sockets or with WAI";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"http-server" = callPackage
({ mkDerivation, base, HTTP, mime, network, network-uri, text, unix
, url, utf8-string
@@ -106378,6 +104967,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "http2-client" = callPackage
+ ({ mkDerivation, async, base, bytestring, connection, containers
+ , data-default-class, http2, network, optparse-applicative, time
+ , tls
+ }:
+ mkDerivation {
+ pname = "http2-client";
+ version = "0.2.0.1";
+ sha256 = "14w56b2lzjqwyh2vfqp3q27wsh6yzldrk073msszn0af0wrjv39p";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ async base bytestring connection containers http2 network time tls
+ ];
+ executableHaskellDepends = [
+ async base bytestring data-default-class http2 optparse-applicative
+ time tls
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/lucasdicioccio/http2-client";
+ description = "A native HTTP2 client library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"httpd-shed" = callPackage
({ mkDerivation, base, network, network-uri }:
mkDerivation {
@@ -107122,8 +105735,8 @@ self: {
}:
mkDerivation {
pname = "hw-bits";
- version = "0.5.0.2";
- sha256 = "14szmh7wqbwzivc20bmavgcsp286n2kvxxz88qhl4mza5jxi6dhf";
+ version = "0.5.0.3";
+ sha256 = "1xkzxfz25ah7p4zybdm0c1081kkca7515jh1d7vjysxs34w8h1yn";
libraryHaskellDepends = [
base bytestring hw-int hw-prim hw-string-parse safe vector
];
@@ -107521,8 +106134,8 @@ self: {
}:
mkDerivation {
pname = "hw-rankselect";
- version = "0.8.0.1";
- sha256 = "1m05w2x5nmja0k1li90vx9ifzs11h8xxbpi25rsk4zalghy8gn6g";
+ version = "0.8.0.2";
+ sha256 = "0b9ki066c5nypy81dqyj91ghj00p1y5glhg1jpf267q6r0mjkwcm";
libraryHaskellDepends = [
base hw-balancedparens hw-bits hw-prim hw-rankselect-base vector
];
@@ -107534,7 +106147,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hw-rankselect_0_10_0_1" = callPackage
+ "hw-rankselect_0_10_0_2" = callPackage
({ mkDerivation, base, bytestring, conduit, criterion, deepseq
, directory, hedgehog, hspec, hw-balancedparens, hw-bits
, hw-hedgehog, hw-hspec-hedgehog, hw-prim, hw-rankselect-base, mmap
@@ -107542,8 +106155,8 @@ self: {
}:
mkDerivation {
pname = "hw-rankselect";
- version = "0.10.0.1";
- sha256 = "0xpgm2r05cshsn7ddkx6pxfj80y5fgpvi1r11iqxvdgnfdhpv780";
+ version = "0.10.0.2";
+ sha256 = "1l3s40jk6nsq87q83mj4kalzn4kphxkpy4h89bw4jzzlykqwpcz9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -107573,8 +106186,8 @@ self: {
}:
mkDerivation {
pname = "hw-rankselect-base";
- version = "0.2.0.0";
- sha256 = "195g51py2kx0nx0kc67nhswmpq6r8dlb6p9i1y53hyis1ygc2ly8";
+ version = "0.2.0.1";
+ sha256 = "0nkbq0wzljhdjvcn04wkysqa357qhzacisimqpj8k5nbf3rkrlvj";
libraryHaskellDepends = [
base hw-bits hw-int hw-prim hw-string-parse safe vector
];
@@ -108648,32 +107261,6 @@ self: {
}) {};
"hyperloglog" = callPackage
- ({ mkDerivation, approximate, base, binary, bits, bytes, Cabal
- , cabal-doctest, cereal, cereal-vector, comonad, deepseq, directory
- , distributive, doctest, filepath, generic-deriving, hashable, lens
- , reflection, safecopy, semigroupoids, semigroups, simple-reflect
- , siphash, tagged, vector
- }:
- mkDerivation {
- pname = "hyperloglog";
- version = "0.4.1";
- sha256 = "08r0yrnfjcfv0p14p69dqjrsmff4alx5yykkq06mig0wycl4v4q0";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- approximate base binary bits bytes cereal cereal-vector comonad
- deepseq distributive hashable lens reflection safecopy
- semigroupoids semigroups siphash tagged vector
- ];
- testHaskellDepends = [
- base directory doctest filepath generic-deriving semigroups
- simple-reflect
- ];
- homepage = "http://github.com/analytics/hyperloglog";
- description = "An approximate streaming (constant space) unique object counter";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "hyperloglog_0_4_2" = callPackage
({ mkDerivation, approximate, base, binary, bits, bytes, Cabal
, cabal-doctest, cereal, cereal-vector, comonad, deepseq, directory
, distributive, doctest, filepath, generic-deriving, hashable, lens
@@ -108697,7 +107284,6 @@ self: {
homepage = "http://github.com/analytics/hyperloglog";
description = "An approximate streaming (constant space) unique object counter";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hyperloglogplus" = callPackage
@@ -109571,7 +108157,7 @@ self: {
libraryPkgconfigDepends = [ ige-mac-integration ];
libraryToolDepends = [ gtk2hs-buildtools ];
homepage = "http://www.haskell.org/gtk2hs/";
- description = "Bindings for the Gtk/macOS integration library";
+ description = "Bindings for the Gtk/OS X integration library";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {ige-mac-integration = null;};
@@ -109897,20 +108483,6 @@ self: {
}) {};
"ihs" = callPackage
- ({ mkDerivation, base, process }:
- mkDerivation {
- pname = "ihs";
- version = "0.1.0.0";
- sha256 = "178psggvaad58kxfjgg3i4a8xgggn3gjcsi8y2f302dfza8kvlwa";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [ base process ];
- homepage = "https://github.com/minad/ihs";
- description = "Interpolated Haskell";
- license = stdenv.lib.licenses.publicDomain;
- }) {};
-
- "ihs_0_1_0_1" = callPackage
({ mkDerivation, base, process }:
mkDerivation {
pname = "ihs";
@@ -109922,7 +108494,6 @@ self: {
homepage = "https://github.com/minad/ihs";
description = "Interpolated Haskell";
license = stdenv.lib.licenses.publicDomain;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ihttp" = callPackage
@@ -111193,14 +109764,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "inline-c-cpp_0_2_0_2" = callPackage
- ({ mkDerivation, base, inline-c, template-haskell }:
+ "inline-c-cpp_0_2_1_0" = callPackage
+ ({ mkDerivation, base, hspec, inline-c, safe-exceptions
+ , template-haskell
+ }:
mkDerivation {
pname = "inline-c-cpp";
- version = "0.2.0.2";
- sha256 = "1zmqj47snxa0hxw3scz2mqgb1axfwqya5n1hi72x7abcx0nzfc2q";
- libraryHaskellDepends = [ base inline-c template-haskell ];
- testHaskellDepends = [ base ];
+ version = "0.2.1.0";
+ sha256 = "02m7w3n9rjynirniplp2gc2vy7c1jyalsqznh5mz366ps6vr19ip";
+ libraryHaskellDepends = [
+ base inline-c safe-exceptions template-haskell
+ ];
+ testHaskellDepends = [ base hspec inline-c safe-exceptions ];
description = "Lets you embed C++ code into Haskell";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -111232,6 +109807,8 @@ self: {
pname = "inline-java";
version = "0.6.5";
sha256 = "1pqai3jblcz52z76hwshzzajpnb5c62bs0i1b87hk8f8s0isask9";
+ revision = "1";
+ editedCabalFile = "1va62gdb22sjq5z3ydl9nbcdy1x8935q3zsdn9dibp6af1v45f5b";
libraryHaskellDepends = [
base binary bytestring Cabal containers directory
distributed-closure filepath ghc-heap-view inline-c jni jvm
@@ -111772,10 +110349,8 @@ self: {
}:
mkDerivation {
pname = "intero";
- version = "0.1.20";
- sha256 = "0xysd4afdvrqbbndby0ylm8qph190d5sj81l42hcdl9w7bgx4gz9";
- revision = "1";
- editedCabalFile = "1fgqd3qkws9yb3vj8ay695ym5cgifi082wryh68dp0qqh7agwkhl";
+ version = "0.1.21";
+ sha256 = "1fr855gbz0ypxa73d5f74wp2sr3q67wdv6g4bpckj682c1x7dr73";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -111946,25 +110521,6 @@ self: {
}) {};
"intervals" = callPackage
- ({ mkDerivation, array, base, Cabal, cabal-doctest, directory
- , distributive, doctest, filepath, ghc-prim, QuickCheck
- , template-haskell
- }:
- mkDerivation {
- pname = "intervals";
- version = "0.8";
- sha256 = "1i78h7plzckdjs9qr2p1qldhb5gv7v1cl01r27sf1hg2x9gr88v4";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [ array base distributive ghc-prim ];
- testHaskellDepends = [
- base directory doctest filepath QuickCheck template-haskell
- ];
- homepage = "http://github.com/ekmett/intervals";
- description = "Interval Arithmetic";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "intervals_0_8_1" = callPackage
({ mkDerivation, array, base, Cabal, cabal-doctest, directory
, distributive, doctest, filepath, ghc-prim, QuickCheck
, template-haskell
@@ -111983,7 +110539,6 @@ self: {
homepage = "http://github.com/ekmett/intervals";
description = "Interval Arithmetic";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"intricacy" = callPackage
@@ -112116,27 +110671,6 @@ self: {
}) {};
"invariant" = callPackage
- ({ mkDerivation, array, base, bifunctors, comonad, containers
- , contravariant, ghc-prim, hspec, profunctors, QuickCheck
- , semigroups, StateVar, stm, tagged, template-haskell, transformers
- , transformers-compat, unordered-containers
- }:
- mkDerivation {
- pname = "invariant";
- version = "0.4.2";
- sha256 = "1m5iaj7w4srg0qcd5dga8aphkwapxmhh54f4pi1bc67i17zl99ss";
- libraryHaskellDepends = [
- array base bifunctors comonad containers contravariant ghc-prim
- profunctors semigroups StateVar stm tagged template-haskell
- transformers transformers-compat unordered-containers
- ];
- testHaskellDepends = [ base hspec QuickCheck template-haskell ];
- homepage = "https://github.com/nfrisby/invariant-functors";
- description = "Haskell98 invariant functors";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "invariant_0_4_3" = callPackage
({ mkDerivation, array, base, bifunctors, comonad, containers
, contravariant, ghc-prim, hspec, profunctors, QuickCheck
, semigroups, StateVar, stm, tagged, template-haskell
@@ -112157,7 +110691,6 @@ self: {
homepage = "https://github.com/nfrisby/invariant-functors";
description = "Haskell98 invariant functors";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"invertible" = callPackage
@@ -112336,32 +110869,6 @@ self: {
}) {};
"io-streams" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder
- , deepseq, directory, filepath, HUnit, mtl, network, primitive
- , process, QuickCheck, test-framework, test-framework-hunit
- , test-framework-quickcheck2, text, time, transformers, vector
- , zlib, zlib-bindings
- }:
- mkDerivation {
- pname = "io-streams";
- version = "1.4.0.0";
- sha256 = "03lk73smhqvw6lxp4j0kxlkd87vaxaz2avpy7k533fxv1jk3sfbd";
- configureFlags = [ "-fnointeractivetests" ];
- libraryHaskellDepends = [
- attoparsec base bytestring bytestring-builder network primitive
- process text time transformers vector zlib-bindings
- ];
- testHaskellDepends = [
- attoparsec base bytestring bytestring-builder deepseq directory
- filepath HUnit mtl network primitive process QuickCheck
- test-framework test-framework-hunit test-framework-quickcheck2 text
- time transformers vector zlib zlib-bindings
- ];
- description = "Simple, composable, and easy-to-use stream I/O";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "io-streams_1_4_1_0" = callPackage
({ mkDerivation, attoparsec, base, bytestring, bytestring-builder
, deepseq, directory, filepath, HUnit, mtl, network, primitive
, process, QuickCheck, test-framework, test-framework-hunit
@@ -112385,7 +110892,6 @@ self: {
];
description = "Simple, composable, and easy-to-use stream I/O";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"io-streams-haproxy" = callPackage
@@ -112794,25 +111300,6 @@ self: {
}) {};
"irc-client" = callPackage
- ({ mkDerivation, base, bytestring, conduit, connection, irc-conduit
- , irc-ctcp, network-conduit-tls, old-locale, stm, stm-conduit, text
- , time, tls, transformers, x509, x509-store, x509-validation
- }:
- mkDerivation {
- pname = "irc-client";
- version = "0.4.4.2";
- sha256 = "07rijsr4sbh9hsj83kazgxrwl7vamxa3d6hd71bdsq485ghkkphq";
- libraryHaskellDepends = [
- base bytestring conduit connection irc-conduit irc-ctcp
- network-conduit-tls old-locale stm stm-conduit text time tls
- transformers x509 x509-store x509-validation
- ];
- homepage = "https://github.com/barrucadu/irc-client";
- description = "An IRC client library";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "irc-client_0_4_4_4" = callPackage
({ mkDerivation, base, bytestring, conduit, connection, irc-conduit
, irc-ctcp, network-conduit-tls, old-locale, stm, stm-conduit, text
, time, tls, transformers, x509, x509-store, x509-validation
@@ -112829,7 +111316,6 @@ self: {
homepage = "https://github.com/barrucadu/irc-client";
description = "An IRC client library";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"irc-colors" = callPackage
@@ -112844,25 +111330,6 @@ self: {
}) {};
"irc-conduit" = callPackage
- ({ mkDerivation, async, base, bytestring, conduit, conduit-extra
- , connection, irc, irc-ctcp, network-conduit-tls, profunctors, text
- , time, tls, transformers, x509-validation
- }:
- mkDerivation {
- pname = "irc-conduit";
- version = "0.2.2.1";
- sha256 = "06kjl5b5i1s1pazn8yp2sr9f1mlgaibkgjvpd2z2q9kzy8kchh4n";
- libraryHaskellDepends = [
- async base bytestring conduit conduit-extra connection irc irc-ctcp
- network-conduit-tls profunctors text time tls transformers
- x509-validation
- ];
- homepage = "https://github.com/barrucadu/irc-conduit";
- description = "Streaming IRC message library using conduits";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "irc-conduit_0_2_2_3" = callPackage
({ mkDerivation, async, base, bytestring, conduit, conduit-extra
, connection, irc, irc-ctcp, network-conduit-tls, profunctors, text
, time, tls, transformers, x509-validation
@@ -112879,7 +111346,6 @@ self: {
homepage = "https://github.com/barrucadu/irc-conduit";
description = "Streaming IRC message library using conduits";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"irc-core" = callPackage
@@ -113882,8 +112348,8 @@ self: {
}:
mkDerivation {
pname = "ixset-typed";
- version = "0.3.1";
- sha256 = "0xdm036vd6p7ax6dqziccrgzh45hv5zzg747s25hsihhjv46665l";
+ version = "0.3.1.1";
+ sha256 = "04nwmmw9rfvz7bm7vqlahyfx7rxn7qx9zdyh6m8g2vf55in4csyh";
libraryHaskellDepends = [
base containers deepseq safecopy syb template-haskell
];
@@ -114771,8 +113237,8 @@ self: {
}:
mkDerivation {
pname = "jsaddle";
- version = "0.9.3.0";
- sha256 = "1c96b2zxa8x4p28rxjnj9nz5999d4f8nfwj38yws0h2c3lwsm740";
+ version = "0.9.4.0";
+ sha256 = "0lk4cbvl2n3zcc709hjcnxw3wm1vd49dqlm12cwy9im4aif1zbq1";
libraryHaskellDepends = [
aeson attoparsec base base64-bytestring bytestring containers
deepseq filepath ghc-prim http-types lens primitive process random
@@ -114804,8 +113270,8 @@ self: {
}:
mkDerivation {
pname = "jsaddle-dom";
- version = "0.9.1.0";
- sha256 = "16dgcdj1x58gpkqvz434f0ysyhwpy1dwqxs6bd24875n1hxjim77";
+ version = "0.9.2.0";
+ sha256 = "14m752vj4lpdwa0cbziz1wynjf836f3khrmfdz702c0d0als3j0q";
libraryHaskellDepends = [
base base-compat jsaddle lens text transformers
];
@@ -114837,8 +113303,8 @@ self: {
}:
mkDerivation {
pname = "jsaddle-warp";
- version = "0.9.3.0";
- sha256 = "0lcwg3lgh6bah8zqjzk7hfy8pcjhjlq5a22y83332qn4ms9hfw8l";
+ version = "0.9.4.0";
+ sha256 = "0asl6jw6ymc9iw5g45qihxhfb59fhsxj7bxzgnvsqrxq4kdfv0a6";
libraryHaskellDepends = [
aeson base bytestring containers foreign-store http-types jsaddle
stm text time transformers wai wai-websockets warp websockets
@@ -114857,16 +113323,17 @@ self: {
"jsaddle-webkit2gtk" = callPackage
({ mkDerivation, aeson, base, bytestring, directory, gi-gio
, gi-glib, gi-gtk, gi-javascriptcore, gi-webkit2, haskell-gi-base
- , jsaddle, text, unix, webkit2gtk3-javascriptcore
+ , haskell-gi-overloading, jsaddle, text, unix
+ , webkit2gtk3-javascriptcore
}:
mkDerivation {
pname = "jsaddle-webkit2gtk";
- version = "0.9.0.0";
- sha256 = "1qrrvfr9ha5v43940ppdf3ngrig1s324482aaxsnpj2s7jxmqsa6";
+ version = "0.9.4.0";
+ sha256 = "0mw43kmamp1spw6zfdbm76apn79n7y9inb0c1c8fkfczbjd8b759";
libraryHaskellDepends = [
aeson base bytestring directory gi-gio gi-glib gi-gtk
- gi-javascriptcore gi-webkit2 haskell-gi-base jsaddle text unix
- webkit2gtk3-javascriptcore
+ gi-javascriptcore gi-webkit2 haskell-gi-base haskell-gi-overloading
+ jsaddle text unix webkit2gtk3-javascriptcore
];
description = "Interface for JavaScript that works with GHCJS and GHC";
license = stdenv.lib.licenses.mit;
@@ -114898,8 +113365,8 @@ self: {
}:
mkDerivation {
pname = "jsaddle-wkwebview";
- version = "0.9.0.0";
- sha256 = "1yy7m60h6kcqb97qwhrh3kbxrz981njff2f23x1axfrb2jc3mby4";
+ version = "0.9.4.0";
+ sha256 = "05braj7m2z0r5vqq1y1sp6kh11b8z269lvznysmsqay31wccbyvx";
libraryHaskellDepends = [
aeson base bytestring containers data-default jsaddle
];
@@ -115924,8 +114391,8 @@ self: {
}:
mkDerivation {
pname = "jukebox";
- version = "0.2.17";
- sha256 = "0r57bcg21pnw9qgqp82c60lr8p4m4xv0ml01l3wzzb7vahnxalir";
+ version = "0.2.19";
+ sha256 = "0f3iibpxgr2f7mvl6x4719gvjd4dcd5ajiz3y985rng6d7n5sbya";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -117290,8 +115757,8 @@ self: {
}:
mkDerivation {
pname = "keystore";
- version = "0.8.0.0";
- sha256 = "04lyrd78fkybh07y9xnbnk3ai1nsig55wr1i0p1c63v9sgzpria5";
+ version = "0.8.0.1";
+ sha256 = "0mfq4i1bn4zbfvxi45d7k8g3xiljv24vicc62535csdp68i5sh3i";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -118196,8 +116663,8 @@ self: {
}:
mkDerivation {
pname = "lambda-sampler";
- version = "1.0";
- sha256 = "1whs5phj8dd11af8sadnwyxpv4r4bmklqvpqiwdai7639lldk86a";
+ version = "1.1";
+ sha256 = "0vfin9f9mhxq7r63pyl3rpipb5z7dbyhwbf02y6h7brjq8wg9gx8";
libraryHaskellDepends = [ base MonadRandom mtl transformers ];
testHaskellDepends = [
base QuickCheck test-framework test-framework-quickcheck2
@@ -118983,31 +117450,6 @@ self: {
}) {};
"language-c-quote" = callPackage
- ({ mkDerivation, alex, array, base, bytestring, containers
- , exception-mtl, exception-transformers, filepath, happy
- , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb
- , symbol, template-haskell, test-framework, test-framework-hunit
- }:
- mkDerivation {
- pname = "language-c-quote";
- version = "0.12";
- sha256 = "14wxbis9zm3zlc3q430is50nk5k2hqx4lracwm2ca7qlg854h2hj";
- libraryHaskellDepends = [
- array base bytestring containers exception-mtl
- exception-transformers filepath haskell-src-meta mainland-pretty
- mtl srcloc syb symbol template-haskell
- ];
- libraryToolDepends = [ alex happy ];
- testHaskellDepends = [
- base bytestring HUnit mainland-pretty srcloc symbol test-framework
- test-framework-hunit
- ];
- homepage = "https://github.com/mainland/language-c-quote";
- description = "C/CUDA/OpenCL/Objective-C quasiquoting library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "language-c-quote_0_12_1" = callPackage
({ mkDerivation, alex, array, base, bytestring, containers
, exception-mtl, exception-transformers, filepath, happy
, haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb
@@ -119030,7 +117472,6 @@ self: {
homepage = "https://github.com/mainland/language-c-quote";
description = "C/CUDA/OpenCL/Objective-C quasiquoting library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-cil" = callPackage
@@ -119408,8 +117849,8 @@ self: {
pname = "language-lua";
version = "0.10.0";
sha256 = "0qiwzprwj7kfppa0a3h1ir1bxwwfq48wl31hv1c724p5vyv1480c";
- revision = "1";
- editedCabalFile = "0l90w79xn0k1wqhz7gb2ih33nja3w9m8pp11d9dxdg5am05fyhm2";
+ revision = "2";
+ editedCabalFile = "08c0ivrp357lpxhxqq78z8wqnhwdd3gycsn6yhmf8xnk8bv6yz7h";
libraryHaskellDepends = [ array base bytestring deepseq text ];
libraryToolDepends = [ alex happy ];
testHaskellDepends = [
@@ -120570,19 +119011,6 @@ self: {
}) {};
"leancheck" = callPackage
- ({ mkDerivation, base, template-haskell }:
- mkDerivation {
- pname = "leancheck";
- version = "0.6.3";
- sha256 = "0qcmpm7x5fsiqvwnsih2xqy9liy23vv96i88460kjr19lvscglhj";
- libraryHaskellDepends = [ base template-haskell ];
- testHaskellDepends = [ base template-haskell ];
- homepage = "https://github.com/rudymatela/leancheck#readme";
- description = "Cholesterol-free property-based testing";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "leancheck_0_6_4" = callPackage
({ mkDerivation, base, template-haskell }:
mkDerivation {
pname = "leancheck";
@@ -120593,7 +119021,6 @@ self: {
homepage = "https://github.com/rudymatela/leancheck#readme";
description = "Cholesterol-free property-based testing";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"leankit-api" = callPackage
@@ -120785,16 +119212,17 @@ self: {
"legion-discovery-client" = callPackage
({ mkDerivation, aeson, base, bytestring, Cabal, containers
- , http-client, http-types, load-balancing, resourcet, text
- , transformers
+ , http-client, http-types, load-balancing, monad-logger, resourcet
+ , safe-exceptions, text, text-show, transformers
}:
mkDerivation {
pname = "legion-discovery-client";
- version = "0.1.1.1";
- sha256 = "096zj3rc63wci6z1pqlwsmn22gn71rs1pildlizydf6xbpim0w95";
+ version = "0.2.0.1";
+ sha256 = "0wvm0y5gpriq17jvvczij83sh8cwkijv7w3ayx6yqkyjhwwlljdi";
libraryHaskellDepends = [
aeson base bytestring Cabal containers http-client http-types
- load-balancing resourcet text transformers
+ load-balancing monad-logger resourcet safe-exceptions text
+ text-show transformers
];
testHaskellDepends = [ base ];
homepage = "https://github.com/owensmurray/legion-discovery-client#readme";
@@ -120829,87 +119257,79 @@ self: {
"leksah" = callPackage
({ mkDerivation, array, base, base-compat, binary, binary-shared
, blaze-html, bytestring, Cabal, conduit, containers, cpphs
- , deepseq, directory, executable-path, filepath, ghc
- , ghcjs-codemirror, ghcjs-dom, gio, glib, gtk3, gtksourceview3
- , haskell-src-exts, hlint, hslogger, jsaddle, leksah-server, lens
- , ltk, monad-loops, mtl, network, network-uri, old-time, parsec
- , pretty, pretty-show, QuickCheck, regex-base, regex-tdfa
- , regex-tdfa-text, shakespeare, stm, strict, text, time
- , transformers, unix, utf8-string, vado, vcsgui, vcswrapper
- , webkitgtk3, webkitgtk3-javascriptcore
+ , deepseq, directory, executable-path, filepath, fsnotify, ghc
+ , ghcjs-codemirror, gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib
+ , gi-gobject, gi-gtk, gi-gtk-hs, gi-gtksource, gi-pango, gi-webkit2
+ , gtk3, haskell-gi-base, haskell-gi-overloading, haskell-src-exts
+ , hlint, hslogger, HTTP, leksah-server, ltk, mtl, network
+ , network-uri, old-time, parsec, pretty, pretty-show, QuickCheck
+ , regex-base, regex-tdfa, regex-tdfa-text, shakespeare, split, stm
+ , strict, text, time, transformers, unix, utf8-string, vado, vcsgui
+ , vcswrapper
}:
mkDerivation {
pname = "leksah";
- version = "0.15.2.0";
- sha256 = "01ln9rnv7af6jjcvmsd46g02g6ws5mvrgx7vvn1v67q9nx78bgj4";
- revision = "1";
- editedCabalFile = "0iqg1qlfh6knmlq29ydzp2qs75aa6a2rpl5l5fzp1b1lcsh8njdm";
+ version = "0.16.2.2";
+ sha256 = "11b1im02687snpw1d6bbprnczrc11s2qr8k2jvcdl5bbzi1hjnw7";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
array base base-compat binary binary-shared blaze-html bytestring
Cabal conduit containers cpphs deepseq directory executable-path
- filepath ghc ghcjs-codemirror gio glib gtk3 gtksourceview3
- haskell-src-exts hlint hslogger jsaddle leksah-server lens ltk mtl
- network network-uri old-time parsec pretty pretty-show QuickCheck
- regex-base regex-tdfa regex-tdfa-text shakespeare stm strict text
- time transformers unix utf8-string vado vcsgui vcswrapper
- webkitgtk3 webkitgtk3-javascriptcore
- ];
- executableHaskellDepends = [
- base ghcjs-dom gtk3 gtksourceview3 jsaddle stm webkitgtk3
- webkitgtk3-javascriptcore
- ];
- testHaskellDepends = [
- base Cabal containers glib gtk3 gtksourceview3 hslogger
- leksah-server ltk monad-loops QuickCheck stm text transformers
- webkitgtk3
+ filepath fsnotify ghc ghcjs-codemirror gi-cairo gi-gdk gi-gdkpixbuf
+ gi-gio gi-glib gi-gobject gi-gtk gi-gtk-hs gi-gtksource gi-pango
+ gi-webkit2 haskell-gi-base haskell-gi-overloading haskell-src-exts
+ hlint hslogger HTTP leksah-server ltk mtl network network-uri
+ old-time parsec pretty pretty-show QuickCheck regex-base regex-tdfa
+ regex-tdfa-text shakespeare split stm strict text time transformers
+ unix utf8-string vado vcsgui vcswrapper
];
+ libraryPkgconfigDepends = [ gtk3 ];
+ executableHaskellDepends = [ base gi-gtk-hs leksah-server stm ];
homepage = "http://www.leksah.org";
description = "Haskell IDE written in Haskell";
license = "GPL";
hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
+ }) {gtk3 = pkgs.gnome3.gtk;};
"leksah-server" = callPackage
- ({ mkDerivation, attoparsec, base, bin-package-db, binary
+ ({ mkDerivation, aeson, attoparsec, base, base-compat, binary
, binary-shared, bytestring, Cabal, conduit, conduit-extra
- , containers, deepseq, directory, executable-path, filepath, ghc
- , haddock-api, haddock-library, hslogger, HTTP, HUnit, ltk, network
- , network-uri, parsec, pretty, process, resourcet, strict, text
- , time, transformers, unix
+ , containers, deepseq, directory, doctest, executable-path
+ , filepath, ghc, ghc-boot, haddock-api, haddock-library, hslogger
+ , HTTP, HUnit, ltk, network, network-uri, parsec, pretty, process
+ , resourcet, strict, text, time, transformers, unix
}:
mkDerivation {
pname = "leksah-server";
- version = "0.15.2.0";
- sha256 = "0haj6pi593x0chkvkvvv6d523fmg8vd0hjzkj8sjf8h8ys0sg9k2";
+ version = "0.16.2.0";
+ sha256 = "0wfikbv98p29rv2cl1wwnac82g5vj1w70hy4m40vxgag3qpnr6iw";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- attoparsec base bin-package-db binary binary-shared bytestring
+ aeson attoparsec base base-compat binary binary-shared bytestring
Cabal conduit conduit-extra containers deepseq directory
- executable-path filepath ghc haddock-api haddock-library hslogger
- HTTP ltk network network-uri parsec pretty process resourcet strict
- text time transformers unix
+ executable-path filepath ghc ghc-boot haddock-api haddock-library
+ hslogger HTTP ltk network network-uri parsec pretty process
+ resourcet strict text time transformers unix
];
executableHaskellDepends = [
- attoparsec base bin-package-db binary binary-shared bytestring
- Cabal conduit conduit-extra containers deepseq directory
- executable-path filepath ghc haddock-api haddock-library hslogger
- HTTP ltk network network-uri parsec pretty process resourcet strict
- text time transformers unix
+ attoparsec base base-compat binary binary-shared bytestring Cabal
+ conduit conduit-extra containers deepseq directory executable-path
+ filepath ghc ghc-boot haddock-api haddock-library hslogger HTTP ltk
+ network network-uri parsec pretty process resourcet strict text
+ time transformers unix
];
testHaskellDepends = [
- base conduit conduit-extra hslogger HUnit process resourcet
- transformers
+ base conduit conduit-extra directory doctest filepath hslogger
+ HUnit process resourcet text transformers
];
homepage = "http://leksah.org";
description = "Metadata collection for leksah";
license = "GPL";
- broken = true;
- }) {bin-package-db = null;};
+ }) {};
"lendingclub" = callPackage
({ mkDerivation, aeson, base, blaze-builder, bytestring, HsOpenSSL
@@ -120930,47 +119350,6 @@ self: {
}) {};
"lens" = callPackage
- ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring
- , Cabal, cabal-doctest, comonad, containers, contravariant
- , criterion, deepseq, directory, distributive, doctest, exceptions
- , filepath, free, generic-deriving, ghc-prim, hashable, hlint
- , HUnit, kan-extensions, mtl, nats, parallel, profunctors
- , QuickCheck, reflection, semigroupoids, semigroups, simple-reflect
- , tagged, template-haskell, test-framework, test-framework-hunit
- , test-framework-quickcheck2, test-framework-th, text
- , th-abstraction, transformers, transformers-compat
- , unordered-containers, vector, void
- }:
- mkDerivation {
- pname = "lens";
- version = "4.15.3";
- sha256 = "0znd63nkpdndpdgpvcwnqm31v4w2d1ipkj8lnnbsabbrhywknqd2";
- setupHaskellDepends = [ base Cabal cabal-doctest filepath ];
- libraryHaskellDepends = [
- array base base-orphans bifunctors bytestring comonad containers
- contravariant distributive exceptions filepath free ghc-prim
- hashable kan-extensions mtl parallel profunctors reflection
- semigroupoids semigroups tagged template-haskell text
- th-abstraction transformers transformers-compat
- unordered-containers vector void
- ];
- testHaskellDepends = [
- base bytestring containers deepseq directory doctest filepath
- generic-deriving hlint HUnit mtl nats parallel QuickCheck
- semigroups simple-reflect test-framework test-framework-hunit
- test-framework-quickcheck2 test-framework-th text transformers
- unordered-containers vector
- ];
- benchmarkHaskellDepends = [
- base bytestring comonad containers criterion deepseq
- generic-deriving transformers unordered-containers vector
- ];
- homepage = "http://github.com/ekmett/lens/";
- description = "Lenses, Folds and Traversals";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "lens_4_15_4" = callPackage
({ mkDerivation, array, base, base-orphans, bifunctors, bytestring
, Cabal, cabal-doctest, call-stack, comonad, containers
, contravariant, criterion, deepseq, directory, distributive
@@ -121009,7 +119388,6 @@ self: {
homepage = "http://github.com/ekmett/lens/";
description = "Lenses, Folds and Traversals";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lens-accelerate" = callPackage
@@ -121018,6 +119396,8 @@ self: {
pname = "lens-accelerate";
version = "0.1.0.0";
sha256 = "0j4mbkpdwycpc4m9vh43ylxw1k7ayhbjm8r50jb1dha24fb3d9z4";
+ revision = "1";
+ editedCabalFile = "0mgh4px2gpbny3fnbxv91ml5anvq3gmxs3w3q0zgsbnhaw73w4cf";
libraryHaskellDepends = [ accelerate base lens ];
homepage = "https://github.com/tmcdonell/lens-accelerate";
description = "Instances to mix lens with accelerate";
@@ -121025,26 +119405,6 @@ self: {
}) {};
"lens-action" = callPackage
- ({ mkDerivation, base, Cabal, cabal-doctest, comonad, contravariant
- , directory, doctest, filepath, lens, mtl, profunctors
- , semigroupoids, semigroups, transformers
- }:
- mkDerivation {
- pname = "lens-action";
- version = "0.2.1";
- sha256 = "07b5bh9m7brhwkpc0x3k9k4xvvs6r4g51fflsay1r4b1kl6zaabk";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base comonad contravariant lens mtl profunctors semigroupoids
- semigroups transformers
- ];
- testHaskellDepends = [ base directory doctest filepath ];
- homepage = "http://github.com/ekmett/lens-action/";
- description = "Monadic Getters and Folds";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "lens-action_0_2_2" = callPackage
({ mkDerivation, base, Cabal, cabal-doctest, comonad, contravariant
, directory, doctest, filepath, lens, mtl, profunctors
, semigroupoids, semigroups, transformers
@@ -121062,32 +119422,9 @@ self: {
homepage = "http://github.com/ekmett/lens-action/";
description = "Monadic Getters and Folds";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lens-aeson" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal
- , cabal-doctest, doctest, generic-deriving, lens, scientific
- , semigroups, simple-reflect, text, unordered-containers, vector
- }:
- mkDerivation {
- pname = "lens-aeson";
- version = "1.0.1";
- sha256 = "1g8d6a7lhg6i1v56afm6x102pcxk0dxcyh2j7qqi62vp12kamljx";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- aeson attoparsec base bytestring lens scientific text
- unordered-containers vector
- ];
- testHaskellDepends = [
- base doctest generic-deriving semigroups simple-reflect
- ];
- homepage = "http://github.com/lens/lens-aeson/";
- description = "Law-abiding lenses for aeson";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "lens-aeson_1_0_2" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal
, cabal-doctest, doctest, generic-deriving, lens, scientific
, semigroups, simple-reflect, text, unordered-containers, vector
@@ -121109,7 +119446,6 @@ self: {
homepage = "http://github.com/lens/lens-aeson/";
description = "Law-abiding lenses for aeson";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lens-datetime" = callPackage
@@ -121151,18 +119487,6 @@ self: {
}) {};
"lens-family-th" = callPackage
- ({ mkDerivation, base, template-haskell }:
- mkDerivation {
- pname = "lens-family-th";
- version = "0.5.0.0";
- sha256 = "17lmvsj4jar5qkscz804infivv77cfx5c8yh6raxnscq1b9nm3ll";
- libraryHaskellDepends = [ base template-haskell ];
- homepage = "http://github.com/DanBurton/lens-family-th#readme";
- description = "Generate lens-family style lenses";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "lens-family-th_0_5_0_1" = callPackage
({ mkDerivation, base, hspec, lens-family, template-haskell }:
mkDerivation {
pname = "lens-family-th";
@@ -121173,22 +119497,9 @@ self: {
homepage = "http://github.com/DanBurton/lens-family-th#readme";
description = "Generate lens-family style lenses";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lens-labels" = callPackage
- ({ mkDerivation, base, ghc-prim }:
- mkDerivation {
- pname = "lens-labels";
- version = "0.1.0.1";
- sha256 = "0yskbghzi5cqiqcrw1d6h98kd9m5i76xi6x343rflfkkng3725rl";
- libraryHaskellDepends = [ base ghc-prim ];
- homepage = "https://github.com/google/proto-lens";
- description = "Integration of lenses with OverloadedLabels";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "lens-labels_0_1_0_2" = callPackage
({ mkDerivation, base, ghc-prim }:
mkDerivation {
pname = "lens-labels";
@@ -121198,7 +119509,6 @@ self: {
homepage = "https://github.com/google/proto-lens";
description = "Integration of lenses with OverloadedLabels";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lens-prelude" = callPackage
@@ -121307,6 +119617,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "lens-toml-parser" = callPackage
+ ({ mkDerivation, base, containers, dwergaz, hlint, lens-simple
+ , profunctors, text, time, toml-parser
+ }:
+ mkDerivation {
+ pname = "lens-toml-parser";
+ version = "0.1.0.0";
+ sha256 = "17i3da42gahf9ni29mk369jq2pgbgdimvwszgj6dzywxv1yflldb";
+ libraryHaskellDepends = [ base profunctors text time toml-parser ];
+ testHaskellDepends = [
+ base containers dwergaz hlint lens-simple text toml-parser
+ ];
+ homepage = "https://github.com/xngns/lens-toml-parser";
+ description = "Lenses for toml-parser";
+ license = stdenv.lib.licenses.isc;
+ }) {};
+
"lens-tutorial" = callPackage
({ mkDerivation, base, doctest, lens }:
mkDerivation {
@@ -122064,28 +120391,6 @@ self: {
}) {};
"libmpd" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, containers
- , data-default-class, filepath, hspec, mtl, network, old-locale
- , QuickCheck, text, time, unix, utf8-string
- }:
- mkDerivation {
- pname = "libmpd";
- version = "0.9.0.6";
- sha256 = "0dy9j12mw3d2j2ixj1nq3s6g59zgwzr1xmqjvs2ysy50pd3bksxx";
- libraryHaskellDepends = [
- attoparsec base bytestring containers data-default-class filepath
- mtl network old-locale text time utf8-string
- ];
- testHaskellDepends = [
- attoparsec base bytestring containers data-default-class filepath
- hspec mtl network old-locale QuickCheck text time unix utf8-string
- ];
- homepage = "http://github.com/vimus/libmpd-haskell#readme";
- description = "An MPD client library";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "libmpd_0_9_0_7" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers
, data-default-class, filepath, hspec, mtl, network, old-locale
, QuickCheck, text, time, unix, utf8-string
@@ -122105,7 +120410,6 @@ self: {
homepage = "http://github.com/vimus/libmpd-haskell#readme";
description = "An MPD client library";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"libnotify" = callPackage
@@ -122886,37 +121190,6 @@ self: {
}) {};
"linear" = callPackage
- ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes
- , bytestring, Cabal, cabal-doctest, cereal, containers, deepseq
- , distributive, doctest, ghc-prim, hashable, HUnit, lens
- , reflection, semigroupoids, semigroups, simple-reflect, tagged
- , template-haskell, test-framework, test-framework-hunit
- , transformers, transformers-compat, unordered-containers, vector
- , void
- }:
- mkDerivation {
- pname = "linear";
- version = "1.20.6";
- sha256 = "1xcr36g6rr7k0vlzsh6szzxxrdi1f6vb9sxdilcpsb8xjvkk258m";
- revision = "1";
- editedCabalFile = "0jgfgn0i5882yhmbqc1w9g7gk713l5r66xyaxiwg7nmw82smmakk";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- adjunctions base base-orphans binary bytes cereal containers
- deepseq distributive ghc-prim hashable lens reflection
- semigroupoids semigroups tagged template-haskell transformers
- transformers-compat unordered-containers vector void
- ];
- testHaskellDepends = [
- base binary bytestring deepseq doctest HUnit lens reflection
- simple-reflect test-framework test-framework-hunit vector
- ];
- homepage = "http://github.com/ekmett/linear/";
- description = "Linear Algebra";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "linear_1_20_7" = callPackage
({ mkDerivation, adjunctions, base, base-orphans, binary, bytes
, bytestring, Cabal, cabal-doctest, cereal, containers, deepseq
, distributive, doctest, ghc-prim, hashable, HUnit, lens
@@ -122945,7 +121218,6 @@ self: {
homepage = "http://github.com/ekmett/linear/";
description = "Linear Algebra";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"linear-accelerate" = callPackage
@@ -122954,8 +121226,10 @@ self: {
}:
mkDerivation {
pname = "linear-accelerate";
- version = "0.4";
- sha256 = "03pma42zkk6cfisyfsjmb8496jkfqiab3my4wdahk8z9shmqa3rg";
+ version = "0.4.1";
+ sha256 = "1hhmn446ggm66r3aibg8dyc923lw68fmkb1y8q37jsw13s1lkdlp";
+ revision = "1";
+ editedCabalFile = "18bll3ay0d1586jhfnzw93glv6f4bvz57va46jc2wm2hdfbnvy6d";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
accelerate base distributive lens linear
@@ -123833,24 +122107,6 @@ self: {
}) {};
"list-t" = callPackage
- ({ mkDerivation, base, base-prelude, HTF, mmorph, monad-control
- , mtl, mtl-prelude, transformers, transformers-base
- }:
- mkDerivation {
- pname = "list-t";
- version = "1";
- sha256 = "05ccx0l6rc97ls0jy7hfma5g0fa10s0h0kik1m596lk41776i6ji";
- libraryHaskellDepends = [
- base base-prelude mmorph monad-control mtl transformers
- transformers-base
- ];
- testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ];
- homepage = "https://github.com/nikita-volkov/list-t";
- description = "ListT done right";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "list-t_1_0_0_1" = callPackage
({ mkDerivation, base, base-prelude, HTF, mmorph, monad-control
, mtl, mtl-prelude, transformers, transformers-base
}:
@@ -123866,7 +122122,6 @@ self: {
homepage = "https://github.com/nikita-volkov/list-t";
description = "ListT done right";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"list-t-attoparsec" = callPackage
@@ -123973,8 +122228,8 @@ self: {
({ mkDerivation, base, doctest, mtl }:
mkDerivation {
pname = "list-transformer";
- version = "1.0.2";
- sha256 = "081sik71mli28lvai34zymcl58fiqcrbhzxdi6phmjizm5wj4pqi";
+ version = "1.0.3";
+ sha256 = "13pasfggjbzldy85d0kaydw95myxna63299k021fmbaifz26q2fx";
libraryHaskellDepends = [ base mtl ];
testHaskellDepends = [ base doctest ];
homepage = "https://github.com/Gabriel439/Haskell-List-Transformer-Library";
@@ -124013,6 +122268,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "listenbrainz-client" = callPackage
+ ({ mkDerivation, aeson, base, free, freer-effects, http-client
+ , kan-extensions, mtl, servant, servant-client, text, time
+ , transformers
+ }:
+ mkDerivation {
+ pname = "listenbrainz-client";
+ version = "1.0.0";
+ sha256 = "1bqw4n99j9x44j06q94gzvvr3jyrq8vhg4yzgy2cf2wbijahzizr";
+ libraryHaskellDepends = [
+ aeson base free freer-effects http-client kan-extensions mtl
+ servant servant-client text time transformers
+ ];
+ homepage = "https://github.com/ocharles/listenbrainz-client";
+ description = "A client library to the ListenBrainz project";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"listlike-instances" = callPackage
({ mkDerivation, base, bytestring, ListLike, text, vector }:
mkDerivation {
@@ -124957,25 +123230,6 @@ self: {
}) {};
"log-base" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq
- , exceptions, monad-control, monad-time, mtl, semigroups, stm, text
- , time, transformers-base, unordered-containers
- }:
- mkDerivation {
- pname = "log-base";
- version = "0.7.1.1";
- sha256 = "0kxng0pvql8sv4wk3x1bx0a0mqjsr3ynbixps9l1zrmsisp01344";
- libraryHaskellDepends = [
- aeson aeson-pretty base bytestring deepseq exceptions monad-control
- monad-time mtl semigroups stm text time transformers-base
- unordered-containers
- ];
- homepage = "https://github.com/scrive/log";
- description = "Structured logging solution (base package)";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "log-base_0_7_2_0" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq
, exceptions, mmorph, monad-control, monad-time, mtl, semigroups
, stm, text, time, transformers-base, unordered-containers
@@ -124994,33 +123248,9 @@ self: {
homepage = "https://github.com/scrive/log";
description = "Structured logging solution (base package)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"log-domain" = callPackage
- ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal
- , comonad, deepseq, distributive, doctest, generic-deriving
- , hashable, safecopy, semigroupoids, semigroups, simple-reflect
- , vector
- }:
- mkDerivation {
- pname = "log-domain";
- version = "0.11.1";
- sha256 = "0zbwnx6bs417g67m0hr9n4lk9iwpcm0ivmfhjgaz98hryxx3s8wc";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base binary bytes cereal comonad deepseq distributive hashable
- safecopy semigroupoids semigroups vector
- ];
- testHaskellDepends = [
- base doctest generic-deriving semigroups simple-reflect
- ];
- homepage = "http://github.com/ekmett/log-domain/";
- description = "Log-domain arithmetic";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "log-domain_0_11_2" = callPackage
({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal
, comonad, deepseq, distributive, doctest, generic-deriving
, hashable, safecopy, semigroupoids, semigroups, simple-reflect
@@ -125043,7 +123273,6 @@ self: {
homepage = "http://github.com/ekmett/log-domain/";
description = "Log-domain arithmetic";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"log-effect" = callPackage
@@ -125064,26 +123293,6 @@ self: {
}) {};
"log-elasticsearch" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring
- , bloodhound, bytestring, deepseq, http-client, http-client-tls
- , log-base, semigroups, text, text-show, time, transformers
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "log-elasticsearch";
- version = "0.9.0.1";
- sha256 = "01xfr3rq3s1zp7fw60857c4jvlliy6v9dzx6sip3sbzl3b4hcg1x";
- libraryHaskellDepends = [
- aeson aeson-pretty base base64-bytestring bloodhound bytestring
- deepseq http-client http-client-tls log-base semigroups text
- text-show time transformers unordered-containers vector
- ];
- homepage = "https://github.com/scrive/log";
- description = "Structured logging solution (Elasticsearch back end)";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "log-elasticsearch_0_9_1_0" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring
, bloodhound, bytestring, deepseq, http-client, http-client-tls
, log-base, semigroups, text, text-show, time, transformers
@@ -125103,31 +123312,9 @@ self: {
homepage = "https://github.com/scrive/log";
description = "Structured logging solution (Elasticsearch back end)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"log-postgres" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring
- , bytestring, deepseq, hpqtypes, http-client, lifted-base, log-base
- , mtl, semigroups, split, text, text-show, time
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "log-postgres";
- version = "0.7.0.1";
- sha256 = "0gfb7xss31fqjlvxs8pywlhzmckgz98srimwhsp819mb9vrysjrn";
- libraryHaskellDepends = [
- aeson aeson-pretty base base64-bytestring bytestring deepseq
- hpqtypes http-client lifted-base log-base mtl semigroups split text
- text-show time unordered-containers vector
- ];
- homepage = "https://github.com/scrive/log";
- description = "Structured logging solution (PostgreSQL back end)";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "log-postgres_0_7_0_2" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring
, bytestring, deepseq, hpqtypes, http-client, lifted-base, log-base
, mtl, semigroups, split, text, text-show, time
@@ -126197,22 +124384,26 @@ self: {
}) {};
"ltk" = callPackage
- ({ mkDerivation, base, Cabal, containers, filepath, ghc, glib, gtk3
- , mtl, parsec, pretty, text, transformers
+ ({ mkDerivation, base, base-compat, Cabal, containers, filepath
+ , ghc, gi-cairo, gi-gdk, gi-glib, gi-gobject, gi-gtk, gi-gtk-hs
+ , gtk3, haskell-gi-base, haskell-gi-overloading, mtl, parsec
+ , pretty, text, transformers
}:
mkDerivation {
pname = "ltk";
- version = "0.15.0.5";
- sha256 = "18niv2rr06nms5g7vjk7ki52s7dfbkdbw52w55p79s9n6gj1q424";
+ version = "0.16.1.0";
+ sha256 = "00vxsp5w38wv12wl09z6wa72kpczd6k5g9m02clshaq3ai6cyg1a";
libraryHaskellDepends = [
- base Cabal containers filepath ghc glib gtk3 mtl parsec pretty text
- transformers
+ base base-compat Cabal containers filepath ghc gi-cairo gi-gdk
+ gi-glib gi-gobject gi-gtk gi-gtk-hs haskell-gi-base
+ haskell-gi-overloading mtl parsec pretty text transformers
];
+ libraryPkgconfigDepends = [ gtk3 ];
homepage = "http://www.leksah.org";
description = "Leksah tool kit";
license = "GPL";
hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
+ }) {gtk3 = pkgs.gnome3.gtk;};
"ltl" = callPackage
({ mkDerivation, base, vcd }:
@@ -126686,21 +124877,21 @@ self: {
}) {};
"lzma-conduit" = callPackage
- ({ mkDerivation, base, bindings-DSL, bytestring, conduit, HUnit
- , lzma, QuickCheck, resourcet, test-framework, test-framework-hunit
- , test-framework-quickcheck2, transformers
+ ({ mkDerivation, base, base-compat, bindings-DSL, bytestring
+ , conduit, HUnit, lzma, QuickCheck, resourcet, test-framework
+ , test-framework-hunit, test-framework-quickcheck2, transformers
}:
mkDerivation {
pname = "lzma-conduit";
- version = "1.1.3.1";
- sha256 = "0bb1ilwb0v4b79gbaz1ckykmqg43y805m00y4w498768wbn1l61c";
+ version = "1.1.3.3";
+ sha256 = "19bdjgr394cji254y2qp1ibdiyqlys2vf0g1v9psi4cqcdlhdk0p";
libraryHaskellDepends = [
base bindings-DSL bytestring conduit resourcet transformers
];
librarySystemDepends = [ lzma ];
testHaskellDepends = [
- base bytestring conduit HUnit QuickCheck resourcet test-framework
- test-framework-hunit test-framework-quickcheck2
+ base base-compat bytestring conduit HUnit QuickCheck resourcet
+ test-framework test-framework-hunit test-framework-quickcheck2
];
homepage = "http://github.com/alphaHeavy/lzma-conduit";
description = "Conduit interface for lzma/xz compression";
@@ -126858,33 +125049,6 @@ self: {
}) {};
"machines" = callPackage
- ({ mkDerivation, adjunctions, base, Cabal, cabal-doctest, comonad
- , conduit, conduit-combinators, containers, criterion, distributive
- , doctest, mtl, pipes, pointed, profunctors, semigroupoids
- , semigroups, transformers, transformers-compat, void
- }:
- mkDerivation {
- pname = "machines";
- version = "0.6.2";
- sha256 = "0p346dr68qmaiyhfn697nb13fwl07f5b945bihfwk7r8pjsl6l0w";
- revision = "1";
- editedCabalFile = "1aj0admkxs91x3bax0rsz073m8rpfingrwggj3hi4f7zprmynjj1";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- adjunctions base comonad containers distributive mtl pointed
- profunctors semigroupoids semigroups transformers
- transformers-compat void
- ];
- testHaskellDepends = [ base doctest ];
- benchmarkHaskellDepends = [
- base conduit conduit-combinators criterion mtl pipes
- ];
- homepage = "http://github.com/ekmett/machines/";
- description = "Networked stream transducers";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "machines_0_6_3" = callPackage
({ mkDerivation, adjunctions, base, Cabal, cabal-doctest, comonad
, conduit, conduit-combinators, containers, criterion, distributive
, doctest, mtl, pipes, pointed, profunctors, semigroupoids
@@ -126909,7 +125073,6 @@ self: {
homepage = "http://github.com/ekmett/machines/";
description = "Networked stream transducers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"machines-amazonka" = callPackage
@@ -128460,6 +126623,31 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "master-plan" = callPackage
+ ({ mkDerivation, base, diagrams, diagrams-lib, diagrams-rasterific
+ , hspec, megaparsec, mtl, optparse-applicative, QuickCheck
+ , quickcheck-instances, random, random-shuffle, syb, text
+ }:
+ mkDerivation {
+ pname = "master-plan";
+ version = "0.3.1";
+ sha256 = "1gkbvs4jl5y4pl699ncwfdl3syhyss51adkjm8mszr18w9jlhs34";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base diagrams diagrams-lib diagrams-rasterific megaparsec mtl syb
+ text
+ ];
+ executableHaskellDepends = [ base optparse-applicative text ];
+ testHaskellDepends = [
+ base hspec mtl QuickCheck quickcheck-instances random
+ random-shuffle text
+ ];
+ homepage = "https://github.com/rodrigosetti/master-plan";
+ description = "The project management tool for hackers";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"mastermind" = callPackage
({ mkDerivation, base, random }:
mkDerivation {
@@ -129018,8 +127206,8 @@ self: {
({ mkDerivation, base, safe, text, time, time-locale-compat }:
mkDerivation {
pname = "mbox";
- version = "0.3.3";
- sha256 = "1r8r5y2a69aralqz3mjhkq9dnb9jq1z1v1s2y1dpvx2alapkw2h8";
+ version = "0.3.4";
+ sha256 = "1pkiagxb013an71d3si3kldgn7rl9l5zi2s3s6hjhfg0pcwbbr6w";
libraryHaskellDepends = [ base safe text time time-locale-compat ];
description = "Read and write standard mailbox files";
license = stdenv.lib.licenses.bsd3;
@@ -129363,23 +127551,6 @@ self: {
}) {};
"med-module" = callPackage
- ({ mkDerivation, base, bytestring, storable-endian, transformers
- , utility-ht
- }:
- mkDerivation {
- pname = "med-module";
- version = "0.1";
- sha256 = "0qln8b2vfmmfx2700vybd895j22a82l4k95nk7kwpkilsf0h6vji";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring storable-endian transformers utility-ht
- ];
- description = "Parse song module files from Amiga MED and OctaMED";
- license = stdenv.lib.licenses.gpl3;
- }) {};
-
- "med-module_0_1_1" = callPackage
({ mkDerivation, base, bytestring, storable-endian, transformers
, utility-ht
}:
@@ -129394,7 +127565,6 @@ self: {
];
description = "Parse song module files from Amiga MED and OctaMED";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mediabus" = callPackage
@@ -129634,7 +127804,7 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
- "megaparsec_6_1_0" = callPackage
+ "megaparsec_6_1_1" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, containers
, criterion, deepseq, hspec, hspec-expectations, mtl
, parser-combinators, QuickCheck, scientific, text, transformers
@@ -129642,8 +127812,8 @@ self: {
}:
mkDerivation {
pname = "megaparsec";
- version = "6.1.0";
- sha256 = "1096frlw1q7mgr87ndbwbg26dcmj1yv8a88xwwwy4p2f5m4df0fd";
+ version = "6.1.1";
+ sha256 = "08vwcxh3538bsgcmghssg87p7nvyi49vmr3zf8mqh52wxh65ygl4";
libraryHaskellDepends = [
base bytestring case-insensitive containers deepseq mtl
parser-combinators scientific text transformers
@@ -130292,29 +128462,6 @@ self: {
}) {};
"metrics" = callPackage
- ({ mkDerivation, ansi-terminal, async, base, bytestring, containers
- , HUnit, lens, mwc-random, primitive, QuickCheck, text, time
- , transformers, transformers-base, unix-compat
- , unordered-containers, vector, vector-algorithms
- }:
- mkDerivation {
- pname = "metrics";
- version = "0.4.0.1";
- sha256 = "1ry77ia5jd3a8rjb7mz5bzaqi42v1q0ngx2vj8yc709vlkdfs66v";
- libraryHaskellDepends = [
- ansi-terminal base bytestring containers lens mwc-random primitive
- text time transformers transformers-base unix-compat
- unordered-containers vector vector-algorithms
- ];
- testHaskellDepends = [
- async base HUnit lens mwc-random primitive QuickCheck
- ];
- description = "High-performance application metric tracking";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "metrics_0_4_1_1" = callPackage
({ mkDerivation, ansi-terminal, async, base, bytestring, containers
, HUnit, lens, mwc-random, primitive, QuickCheck, text, time
, transformers, transformers-base, unix-compat
@@ -130511,18 +128658,6 @@ self: {
}) {};
"microlens" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "microlens";
- version = "0.4.8.0";
- sha256 = "1xbspqq1sgw6p16rwmdlwprjpcj2p0ppd1nn5iz3ynbifrqi42xa";
- libraryHaskellDepends = [ base ];
- homepage = "http://github.com/aelve/microlens";
- description = "A tiny lens library with no dependencies. If you're writing an app, you probably want microlens-platform, not this.";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "microlens_0_4_8_1" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "microlens";
@@ -130532,7 +128667,6 @@ self: {
homepage = "http://github.com/aelve/microlens";
description = "A tiny lens library with no dependencies. If you're writing an app, you probably want microlens-platform, not this.";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"microlens-aeson" = callPackage
@@ -130995,17 +129129,21 @@ self: {
"mikrokosmos" = callPackage
({ mkDerivation, ansi-terminal, base, containers, directory
, haskeline, HUnit, mtl, multimap, options, parsec, tasty
- , tasty-hunit
+ , tasty-hunit, tasty-quickcheck
}:
mkDerivation {
pname = "mikrokosmos";
- version = "0.5.0";
- sha256 = "04hm0bz3hhxb11x1cfk129sv8x9dqjyvbagpr250cha47wws3sal";
+ version = "0.6.0";
+ sha256 = "12rqvk6czgmvcga1sh97vymxfqfga3a51xwyf6n7m4npza9pyqrr";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
ansi-terminal base containers directory haskeline HUnit mtl
- multimap options parsec tasty tasty-hunit
+ multimap options parsec tasty tasty-hunit tasty-quickcheck
+ ];
+ testHaskellDepends = [
+ ansi-terminal base containers directory haskeline HUnit mtl
+ multimap options parsec tasty tasty-hunit tasty-quickcheck
];
homepage = "https://github.com/M42/mikrokosmos";
description = "Lambda calculus interpreter";
@@ -131086,10 +129224,8 @@ self: {
}:
mkDerivation {
pname = "mime-mail";
- version = "0.4.13.1";
- sha256 = "05sri6sszmnyxsnrnk5j1wwqf0bawpfb179wjqfsp7bkj886g0cl";
- revision = "6";
- editedCabalFile = "0v9kc1p8lhg9zfh7c7x6x71rd7k7y6bpw4112ax9995w0aq09dk1";
+ version = "0.4.14";
+ sha256 = "0gmapbjci8nclwm8syg5xfci4nj8cpchb9ry1b7gwhcp9kaw6cln";
libraryHaskellDepends = [
base base64-bytestring blaze-builder bytestring filepath process
random text
@@ -131120,6 +129256,27 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "mime-mail-ses_0_4_0_0" = callPackage
+ ({ mkDerivation, base, base64-bytestring, byteable, bytestring
+ , conduit, cryptohash, http-client, http-conduit, http-types
+ , mime-mail, old-locale, text, time, transformers, xml-conduit
+ , xml-types
+ }:
+ mkDerivation {
+ pname = "mime-mail-ses";
+ version = "0.4.0.0";
+ sha256 = "0w87ba8a5kli7xv7d8x5viz1c2rmm3ahaxp5d797n8bb13yn09mw";
+ libraryHaskellDepends = [
+ base base64-bytestring byteable bytestring conduit cryptohash
+ http-client http-conduit http-types mime-mail old-locale text time
+ transformers xml-conduit xml-types
+ ];
+ homepage = "http://github.com/snoyberg/mime-mail";
+ description = "Send mime-mail messages via Amazon SES";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"mime-string" = callPackage
({ mkDerivation, base, base64-string, bytestring, iconv, mtl
, network, old-time
@@ -131293,7 +129450,7 @@ self: {
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base GLUT haskell98 unix ];
- description = "Shows how to run grabber on macOS";
+ description = "Shows how to run grabber on Mac OS X";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -131587,14 +129744,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "miso_0_7_0_0" = callPackage
+ "miso_0_7_2_0" = callPackage
({ mkDerivation, aeson, base, BoundedChan, bytestring, containers
, lucid, servant, servant-lucid, text, vector
}:
mkDerivation {
pname = "miso";
- version = "0.7.0.0";
- sha256 = "0zakd08mfrzhdi9wqzj7vs62wlnhzkakbx0yqa9qgzfz4x6pi1j8";
+ version = "0.7.2.0";
+ sha256 = "1xg2bvavgpz3b8sgp4lbxszznvcbhhrzsy31lwalv5w1vcfjkwsw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -131681,14 +129838,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "mixed-types-num_0_3_0_1" = callPackage
+ "mixed-types-num_0_3_1_2" = callPackage
({ mkDerivation, base, convertible, hspec, hspec-smallcheck
, QuickCheck, smallcheck, template-haskell
}:
mkDerivation {
pname = "mixed-types-num";
- version = "0.3.0.1";
- sha256 = "00qvb1himrrdpasfc44bblydgc1hmhnbfmcprq6yzdz7lb1f8x6x";
+ version = "0.3.1.2";
+ sha256 = "1f0mvk9vkv1zx2a42ljr4dxh1pzg1lh1kgrjydxynwpwrmk7r6km";
libraryHaskellDepends = [
base convertible hspec hspec-smallcheck QuickCheck smallcheck
template-haskell
@@ -131710,7 +129867,7 @@ self: {
isExecutable = true;
enableSeparateDataOutput = true;
executableHaskellDepends = [ base directory filepath haskell98 ];
- description = "Makes an macOS .app bundle from a binary.";
+ description = "Makes an OS X .app bundle from a binary.";
license = "GPL";
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -132386,22 +130543,6 @@ self: {
}) {};
"monad-control" = callPackage
- ({ mkDerivation, base, stm, transformers, transformers-base
- , transformers-compat
- }:
- mkDerivation {
- pname = "monad-control";
- version = "1.0.2.1";
- sha256 = "1hjq0d1y18yyw3p4g78r7k88xy92pzxiqchqll7rqj8lnwnwnknc";
- libraryHaskellDepends = [
- base stm transformers transformers-base transformers-compat
- ];
- homepage = "https://github.com/basvandijk/monad-control";
- description = "Lift control operations, like exception catching, through monad transformers";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "monad-control_1_0_2_2" = callPackage
({ mkDerivation, base, stm, transformers, transformers-base
, transformers-compat
}:
@@ -132415,7 +130556,6 @@ self: {
homepage = "https://github.com/basvandijk/monad-control";
description = "Lift control operations, like exception catching, through monad transformers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-control-aligned" = callPackage
@@ -132646,28 +130786,6 @@ self: {
}) {};
"monad-logger" = callPackage
- ({ mkDerivation, base, blaze-builder, bytestring, conduit
- , conduit-extra, exceptions, fast-logger, lifted-base
- , monad-control, monad-loops, mtl, resourcet, stm, stm-chans
- , template-haskell, text, transformers, transformers-base
- , transformers-compat
- }:
- mkDerivation {
- pname = "monad-logger";
- version = "0.3.24";
- sha256 = "1r786v5ndnkfdy9v6h26wsbphjc2ar3zcsxz3ij9sxk860cpkr85";
- libraryHaskellDepends = [
- base blaze-builder bytestring conduit conduit-extra exceptions
- fast-logger lifted-base monad-control monad-loops mtl resourcet stm
- stm-chans template-haskell text transformers transformers-base
- transformers-compat
- ];
- homepage = "https://github.com/kazu-yamamoto/logger";
- description = "A class of monads which can log messages";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "monad-logger_0_3_25" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, conduit
, conduit-extra, exceptions, fast-logger, lifted-base
, monad-control, monad-loops, mtl, resourcet, stm, stm-chans
@@ -132687,7 +130805,6 @@ self: {
homepage = "https://github.com/kazu-yamamoto/logger";
description = "A class of monads which can log messages";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-logger-json" = callPackage
@@ -133060,18 +131177,6 @@ self: {
}) {};
"monad-skeleton" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "monad-skeleton";
- version = "0.1.4";
- sha256 = "1fz8x3lcxp1az4sdbndzkg1w0ik8rddf6p7wd4j4fkbxffvcllri";
- libraryHaskellDepends = [ base ];
- homepage = "https://github.com/fumieval/monad-skeleton";
- description = "Monads of program skeleta";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "monad-skeleton_0_1_5" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "monad-skeleton";
@@ -133081,7 +131186,6 @@ self: {
homepage = "https://github.com/fumieval/monad-skeleton";
description = "Monads of program skeleta";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-st" = callPackage
@@ -133762,30 +131866,6 @@ self: {
}) {};
"mono-traversable" = callPackage
- ({ mkDerivation, base, bytestring, containers, criterion, foldl
- , hashable, hspec, HUnit, mwc-random, QuickCheck, semigroups, split
- , text, transformers, unordered-containers, vector
- , vector-algorithms
- }:
- mkDerivation {
- pname = "mono-traversable";
- version = "1.0.2";
- sha256 = "0crn1gd9jnf1j9n3dx9brw6dc4vfsydy0n3qs7hg49mp10ghl4da";
- libraryHaskellDepends = [
- base bytestring containers hashable split text transformers
- unordered-containers vector vector-algorithms
- ];
- testHaskellDepends = [
- base bytestring containers foldl hspec HUnit QuickCheck semigroups
- text transformers unordered-containers vector
- ];
- benchmarkHaskellDepends = [ base criterion mwc-random vector ];
- homepage = "https://github.com/snoyberg/mono-traversable";
- description = "Type classes for mapping, folding, and traversing monomorphic containers";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "mono-traversable_1_0_2_1" = callPackage
({ mkDerivation, base, bytestring, containers, criterion, foldl
, hashable, hspec, HUnit, mwc-random, QuickCheck, semigroups, split
, text, transformers, unordered-containers, vector
@@ -133807,7 +131887,6 @@ self: {
homepage = "https://github.com/snoyberg/mono-traversable";
description = "Type classes for mapping, folding, and traversing monomorphic containers";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mono-traversable-instances" = callPackage
@@ -133905,26 +131984,6 @@ self: {
}) {};
"monoid-subclasses" = callPackage
- ({ mkDerivation, base, bytestring, containers, primes, QuickCheck
- , quickcheck-instances, tasty, tasty-quickcheck, text, vector
- }:
- mkDerivation {
- pname = "monoid-subclasses";
- version = "0.4.3.2";
- sha256 = "1n13a3nj1hzlbpanl6d1ak3j2vnjy8mb5p5gp7y5hfhrpiymhbgi";
- libraryHaskellDepends = [
- base bytestring containers primes text vector
- ];
- testHaskellDepends = [
- base bytestring containers primes QuickCheck quickcheck-instances
- tasty tasty-quickcheck text vector
- ];
- homepage = "https://github.com/blamario/monoid-subclasses/";
- description = "Subclasses of Monoid";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "monoid-subclasses_0_4_4" = callPackage
({ mkDerivation, base, bytestring, containers, primes, QuickCheck
, quickcheck-instances, tasty, tasty-quickcheck, text, vector
}:
@@ -133942,7 +132001,6 @@ self: {
homepage = "https://github.com/blamario/monoid-subclasses/";
description = "Subclasses of Monoid";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monoid-transformer" = callPackage
@@ -133957,22 +132015,6 @@ self: {
}) {};
"monoidal-containers" = callPackage
- ({ mkDerivation, base, containers, deepseq, hashable, lens, newtype
- , unordered-containers
- }:
- mkDerivation {
- pname = "monoidal-containers";
- version = "0.3.0.1";
- sha256 = "1754bn5kxp7zqprgjkl5w6az4h64iz6hc3wn711s46p7b9llcaps";
- libraryHaskellDepends = [
- base containers deepseq hashable lens newtype unordered-containers
- ];
- homepage = "http://github.com/bgamari/monoidal-containers";
- description = "Containers with monoidal accumulation";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "monoidal-containers_0_3_0_2" = callPackage
({ mkDerivation, base, containers, deepseq, hashable, lens, newtype
, unordered-containers
}:
@@ -133986,7 +132028,6 @@ self: {
homepage = "http://github.com/bgamari/monoidal-containers";
description = "Containers with monoidal accumulation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monoidplus" = callPackage
@@ -135435,28 +133476,6 @@ self: {
}) {};
"multistate" = callPackage
- ({ mkDerivation, base, hspec, monad-control, mtl, tagged
- , transformers, transformers-base
- }:
- mkDerivation {
- pname = "multistate";
- version = "0.7.1.1";
- sha256 = "19mqzz2mgw0sx92xs8abwqkj2wznnixzvqsbniswf0nipz5m15k0";
- revision = "1";
- editedCabalFile = "0fz1gbiv0fdbmng6kinj3pzc3s6w06lgqgriln5lzrqrp4g5ggd5";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base monad-control mtl tagged transformers transformers-base
- ];
- testHaskellDepends = [ base hspec transformers ];
- homepage = "https://github.com/lspitzner/multistate";
- description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "multistate_0_7_1_2" = callPackage
({ mkDerivation, base, hspec, monad-control, mtl, tagged
, transformers, transformers-base
}:
@@ -136176,6 +134195,8 @@ self: {
pname = "mwc-random-accelerate";
version = "0.1.0.0";
sha256 = "1qrji6b39zp5wrgz5c59xv06l3khhp4fv2ybdmx4ac5i28yx7yih";
+ revision = "1";
+ editedCabalFile = "0xgl1glq4jxs48x7wp8wh6pk3zad8483bvppwp89p3k0vlh6yqq3";
libraryHaskellDepends = [ accelerate base mwc-random ];
description = "Generate Accelerate arrays filled with high quality pseudorandom numbers";
license = stdenv.lib.licenses.bsd3;
@@ -138379,28 +136400,6 @@ self: {
}) {};
"network-ip" = callPackage
- ({ mkDerivation, base, data-default-class, data-dword, data-endian
- , data-serializer, data-textual, hashable, parsers, tasty
- , tasty-quickcheck, text-printer, type-hint
- }:
- mkDerivation {
- pname = "network-ip";
- version = "0.3";
- sha256 = "0lwgixrcxnr9xl4ayrk1p4k15ryw02ighc7ylrmkamyzly2i0872";
- libraryHaskellDepends = [
- base data-default-class data-dword data-endian data-serializer
- data-textual hashable parsers text-printer type-hint
- ];
- testHaskellDepends = [
- base data-dword data-textual parsers tasty tasty-quickcheck
- text-printer
- ];
- homepage = "https://github.com/mvv/network-ip";
- description = "Internet Protocol data structures";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "network-ip_0_3_0_2" = callPackage
({ mkDerivation, base, data-default-class, data-dword, data-endian
, data-serializer, data-textual, hashable, parsers, tasty
, tasty-quickcheck, text-printer, type-hint
@@ -138420,7 +136419,6 @@ self: {
homepage = "https://github.com/mvv/network-ip";
description = "Internet Protocol data structures";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-metrics" = callPackage
@@ -139156,6 +137154,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "newtype-generics_0_5_1" = callPackage
+ ({ mkDerivation, base, hspec, HUnit, transformers }:
+ mkDerivation {
+ pname = "newtype-generics";
+ version = "0.5.1";
+ sha256 = "1cm9v5agz6dmqd2ijwl1llgabihk49zjvx0wxrvhlmdfj6b44gr7";
+ libraryHaskellDepends = [ base transformers ];
+ testHaskellDepends = [ base hspec HUnit ];
+ description = "A typeclass and set of functions for working with newtypes, with generics support";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"newtype-th" = callPackage
({ mkDerivation, base, haskell-src-meta, newtype, syb
, template-haskell
@@ -139632,6 +137643,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "nmis-parser" = callPackage
+ ({ mkDerivation, base, containers, megaparsec, Nmis }:
+ mkDerivation {
+ pname = "nmis-parser";
+ version = "0.1.0.1";
+ sha256 = "0fgh0x2b468j3pxx5nqkvq1wavgap9q7hdnypmdqn5v5jp45l36z";
+ libraryHaskellDepends = [ base containers megaparsec ];
+ testHaskellDepends = [ base Nmis ];
+ homepage = "https://github.com/v0d1ch/nmis-parser#readme";
+ description = "NMIS file parser";
+ license = stdenv.lib.licenses.bsd3;
+ broken = true;
+ }) {Nmis = null;};
+
"nntp" = callPackage
({ mkDerivation, base, bytestring, monad-loops, mtl, network
, old-locale, parsec, time
@@ -139934,19 +137959,6 @@ self: {
}) {};
"non-negative" = callPackage
- ({ mkDerivation, base, QuickCheck, utility-ht }:
- mkDerivation {
- pname = "non-negative";
- version = "0.1.1";
- sha256 = "163g3j3xrx1jkrbg2wnha3yyxyg1mn7kabmbpg82y3rbl3ihy1p7";
- libraryHaskellDepends = [ base QuickCheck utility-ht ];
- testHaskellDepends = [ base QuickCheck utility-ht ];
- homepage = "http://code.haskell.org/~thielema/non-negative/";
- description = "Non-negative numbers";
- license = "GPL";
- }) {};
-
- "non-negative_0_1_1_2" = callPackage
({ mkDerivation, base, QuickCheck, utility-ht }:
mkDerivation {
pname = "non-negative";
@@ -139957,7 +137969,6 @@ self: {
homepage = "http://code.haskell.org/~thielema/non-negative/";
description = "Non-negative numbers";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nonce" = callPackage
@@ -140715,24 +138726,6 @@ self: {
}) {};
"numhask" = callPackage
- ({ mkDerivation, adjunctions, base, distributive, doctest
- , protolude, QuickCheck, tasty, tasty-quickcheck, vector
- }:
- mkDerivation {
- pname = "numhask";
- version = "0.0.7";
- sha256 = "03m6v5cy1hmrzv5c8vsbnx54bsi53cl63c7m1c8mxn4n3i1hl9n0";
- libraryHaskellDepends = [
- adjunctions base distributive protolude QuickCheck vector
- ];
- testHaskellDepends = [ base doctest tasty tasty-quickcheck ];
- homepage = "https://github.com/tonyday567/numhask";
- description = "A numeric prelude";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "numhask_0_0_9" = callPackage
({ mkDerivation, adjunctions, base, distributive, doctest
, protolude, QuickCheck, tasty, tasty-quickcheck, vector
}:
@@ -140860,45 +138853,6 @@ self: {
}) {};
"nvim-hs" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, bytestring, cereal
- , cereal-conduit, conduit, conduit-extra, containers, data-default
- , deepseq, directory, dyre, exceptions, filepath, foreign-store
- , hslogger, hspec, hspec-discover, HUnit, lifted-base, megaparsec
- , messagepack, monad-control, mtl, network, optparse-applicative
- , process, QuickCheck, resourcet, setenv, stm, streaming-commons
- , template-haskell, text, time, time-locale-compat, transformers
- , transformers-base, utf8-string
- }:
- mkDerivation {
- pname = "nvim-hs";
- version = "0.2.2";
- sha256 = "1sp8z8nyxhqywcdyxiyw9yz0mnrbyvgnjg5wr2p5371z3dwbhz8n";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- ansi-wl-pprint base bytestring cereal cereal-conduit conduit
- conduit-extra containers data-default deepseq directory dyre
- exceptions filepath foreign-store hslogger lifted-base megaparsec
- messagepack monad-control mtl network optparse-applicative process
- resourcet setenv stm streaming-commons template-haskell text time
- time-locale-compat transformers transformers-base utf8-string
- ];
- executableHaskellDepends = [ base data-default ];
- testHaskellDepends = [
- ansi-wl-pprint base bytestring cereal cereal-conduit conduit
- conduit-extra containers data-default directory dyre exceptions
- filepath foreign-store hslogger hspec hspec-discover HUnit
- lifted-base megaparsec messagepack mtl network optparse-applicative
- process QuickCheck resourcet setenv stm streaming-commons
- template-haskell text time time-locale-compat transformers
- transformers-base utf8-string
- ];
- homepage = "https://github.com/neovimhaskell/nvim-hs";
- description = "Haskell plugin backend for neovim";
- license = stdenv.lib.licenses.asl20;
- }) {};
-
- "nvim-hs_0_2_4" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bytestring, cereal
, cereal-conduit, conduit, conduit-extra, containers, data-default
, deepseq, directory, dyre, exceptions, filepath, foreign-store
@@ -140935,7 +138889,6 @@ self: {
homepage = "https://github.com/neovimhaskell/nvim-hs";
description = "Haskell plugin backend for neovim";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nvim-hs-contrib" = callPackage
@@ -141264,8 +139217,8 @@ self: {
}:
mkDerivation {
pname = "octane";
- version = "0.20.0";
- sha256 = "1lgvx8nkfjh7x7hnpn689499gcx3hwq13s4kh4j74q1xfhmawwyv";
+ version = "0.20.2";
+ sha256 = "09z69sl782i7ky4dr9aw1ikjaqpwsp0b92x3m2pqlzg4bdfz7s7z";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -141280,30 +139233,6 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "octane_0_20_1" = callPackage
- ({ mkDerivation, aeson, base, bimap, binary, bytestring, containers
- , data-default-class, file-embed, http-client, http-client-tls
- , overloaded-records, rattletrap, text
- }:
- mkDerivation {
- pname = "octane";
- version = "0.20.1";
- sha256 = "0gaynwg4r5rjdbppcs0cdqq7fbl51y8bqm149bynkgwrbgs4dbfm";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base bimap binary bytestring containers data-default-class
- file-embed overloaded-records rattletrap text
- ];
- executableHaskellDepends = [
- aeson base binary bytestring http-client http-client-tls
- ];
- homepage = "https://github.com/tfausak/octane#readme";
- description = "Parse Rocket League replays";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"octohat" = callPackage
({ mkDerivation, aeson, base, base-compat, base16-bytestring
, base64-bytestring, bytestring, containers, cryptohash, dotenv
@@ -141446,8 +139375,8 @@ self: {
}:
mkDerivation {
pname = "ogmarkup";
- version = "3.0.0";
- sha256 = "064pflgipy6a28ajz57k2fh4pqz8gsyxc83ig5iiks0yy2av6f9f";
+ version = "3.1.0";
+ sha256 = "0za23qz85r9xmw57gxi84x2zy8ddxwcdphawyfzkmxqny9kplx1r";
libraryHaskellDepends = [ base megaparsec mtl ];
testHaskellDepends = [
base hspec hspec-megaparsec megaparsec shakespeare text
@@ -141885,34 +139814,6 @@ self: {
}) {};
"opaleye" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base16-bytestring
- , bytestring, case-insensitive, containers, contravariant, multiset
- , postgresql-simple, pretty, product-profunctors, profunctors
- , QuickCheck, semigroups, text, time, time-locale-compat
- , transformers, uuid, void
- }:
- mkDerivation {
- pname = "opaleye";
- version = "0.5.3.0";
- sha256 = "0wrxfqd1f6m8pb8bpx3n7s2gbw3r0dx2ryw2f5a0nnvwv5cagvbc";
- revision = "2";
- editedCabalFile = "1nzwk9mpgnwqmdna35mn0q4b50x1hch9q1pfdqdsz87b9308fb1q";
- libraryHaskellDepends = [
- aeson attoparsec base base16-bytestring bytestring case-insensitive
- contravariant postgresql-simple pretty product-profunctors
- profunctors semigroups text time time-locale-compat transformers
- uuid void
- ];
- testHaskellDepends = [
- aeson base containers contravariant multiset postgresql-simple
- product-profunctors profunctors QuickCheck semigroups text time
- ];
- homepage = "https://github.com/tomjaguarpaw/haskell-opaleye";
- description = "An SQL-generating DSL targeting PostgreSQL";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "opaleye_0_5_4_0" = callPackage
({ mkDerivation, aeson, attoparsec, base, base16-bytestring
, bytestring, case-insensitive, containers, contravariant, dotenv
, hspec, hspec-discover, multiset, postgresql-simple, pretty
@@ -141937,7 +139838,6 @@ self: {
homepage = "https://github.com/tomjaguarpaw/haskell-opaleye";
description = "An SQL-generating DSL targeting PostgreSQL";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opaleye-classy" = callPackage
@@ -142118,24 +140018,6 @@ self: {
}) {};
"open-witness" = callPackage
- ({ mkDerivation, base, constraints, hashable, mtl, random, tasty
- , tasty-hunit, template-haskell, transformers, witness
- }:
- mkDerivation {
- pname = "open-witness";
- version = "0.4";
- sha256 = "086b984ys88962f320zl287a5yhirgxi75l2xnzrb9xr2d196nsv";
- libraryHaskellDepends = [
- base constraints hashable random template-haskell transformers
- witness
- ];
- testHaskellDepends = [ base mtl tasty tasty-hunit witness ];
- homepage = "https://github.com/AshleyYakeley/open-witness";
- description = "open witnesses";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "open-witness_0_4_0_1" = callPackage
({ mkDerivation, base, constraints, hashable, mtl, random, tasty
, tasty-hunit, template-haskell, transformers, witness
}:
@@ -142151,7 +140033,6 @@ self: {
homepage = "https://github.com/AshleyYakeley/open-witness";
description = "open witnesses";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opench-meteo" = callPackage
@@ -143508,8 +141389,8 @@ self: {
}:
mkDerivation {
pname = "orgstat";
- version = "0.0.3";
- sha256 = "1cxqndv7ffrqb749czz5x7g59q7nmq4xbnyaaajf5q27wmqfiwi8";
+ version = "0.0.4";
+ sha256 = "1229av0i3j69wcnzpxz21z3j02sr2wl491swidfqzp9ifjk4w5l3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -143712,7 +141593,7 @@ self: {
sha256 = "1d2lna7gvygiq062p2y1zy182wv3vkr0lda49y502ad6jf483xdn";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base binary bytestring containers ];
- description = "Parser for macOS static archive format";
+ description = "Parser for OS X static archive format";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -144146,19 +142027,6 @@ self: {
}) {};
"pagination" = callPackage
- ({ mkDerivation, base, deepseq, exceptions, hspec, QuickCheck }:
- mkDerivation {
- pname = "pagination";
- version = "0.2.0";
- sha256 = "04jzwg9r0f8rza9zkzqfynx76snfw54kppfk9z5bjgqw6pqpx2jh";
- libraryHaskellDepends = [ base deepseq exceptions ];
- testHaskellDepends = [ base exceptions hspec QuickCheck ];
- homepage = "https://github.com/mrkkrp/pagination";
- description = "Framework-agnostic pagination boilerplate";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "pagination_0_2_1" = callPackage
({ mkDerivation, base, deepseq, exceptions, hspec, QuickCheck }:
mkDerivation {
pname = "pagination";
@@ -144169,7 +142037,6 @@ self: {
homepage = "https://github.com/mrkkrp/pagination";
description = "Framework-agnostic pagination boilerplate";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pagure-hook-receiver" = callPackage
@@ -144316,8 +142183,8 @@ self: {
"pandoc-citeproc" = callPackage
({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring
- , containers, data-default, directory, filepath, hs-bibutils, mtl
- , old-locale, pandoc, pandoc-types, parsec, process, rfc5051
+ , Cabal, containers, data-default, directory, filepath, hs-bibutils
+ , mtl, old-locale, pandoc, pandoc-types, parsec, process, rfc5051
, setenv, split, syb, tagsoup, temporary, text, time
, unordered-containers, vector, xml-conduit, yaml
}:
@@ -144325,6 +142192,44 @@ self: {
pname = "pandoc-citeproc";
version = "0.10.5.1";
sha256 = "10x7rpz48611696fw7h9m62qm1y9qxzvrc2jk0b9h840mn08n0s9";
+ revision = "1";
+ editedCabalFile = "0w8r8z34m934cbja0qkhna04aac97k9i899l4c59cd0ym21148cz";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ setupHaskellDepends = [ base Cabal ];
+ libraryHaskellDepends = [
+ aeson base bytestring containers data-default directory filepath
+ hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051
+ setenv split syb tagsoup text time unordered-containers vector
+ xml-conduit yaml
+ ];
+ executableHaskellDepends = [
+ aeson aeson-pretty attoparsec base bytestring containers directory
+ filepath mtl pandoc pandoc-types process syb temporary text vector
+ yaml
+ ];
+ testHaskellDepends = [
+ aeson base bytestring directory filepath mtl pandoc pandoc-types
+ process temporary text yaml
+ ];
+ doCheck = false;
+ homepage = "https://github.com/jgm/pandoc-citeproc";
+ description = "Supports using pandoc with citeproc";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "pandoc-citeproc_0_11_1" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring
+ , containers, data-default, directory, filepath, hs-bibutils, mtl
+ , old-locale, pandoc, pandoc-types, parsec, process, rfc5051
+ , setenv, split, syb, tagsoup, temporary, text, time
+ , unordered-containers, vector, xml-conduit, yaml
+ }:
+ mkDerivation {
+ pname = "pandoc-citeproc";
+ version = "0.11.1";
+ sha256 = "0si9xc1f1rhli2pqanvbran150mnj465a5d5psd4jxc82y5bha2f";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -144347,6 +142252,7 @@ self: {
homepage = "https://github.com/jgm/pandoc-citeproc";
description = "Supports using pandoc with citeproc";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pandoc-citeproc-preamble" = callPackage
@@ -144547,6 +142453,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "pandoc-sidenote" = callPackage
+ ({ mkDerivation, base, monad-gen, pandoc, pandoc-types }:
+ mkDerivation {
+ pname = "pandoc-sidenote";
+ version = "0.19.0.0";
+ sha256 = "0vz8w1dgzm0hipwfz5a1m41xkjdindr3373x6ip6vqv9h2gzzbb3";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base monad-gen pandoc pandoc-types ];
+ executableHaskellDepends = [ base pandoc-types ];
+ homepage = "https://github.com/jez/pandoc-sidenote#readme";
+ description = "Convert Pandoc Markdown-style footnotes into sidenotes";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"pandoc-stylefrommeta" = callPackage
({ mkDerivation, base, containers, HaTeX, MissingH, pandoc
, pandoc-types
@@ -145898,17 +143819,17 @@ self: {
"parsers" = callPackage
({ mkDerivation, attoparsec, base, base-orphans, bytestring, Cabal
, cabal-doctest, charset, containers, directory, doctest, filepath
- , mtl, parsec, QuickCheck, quickcheck-instances, scientific, text
- , transformers, unordered-containers
+ , mtl, parsec, QuickCheck, quickcheck-instances, scientific
+ , semigroups, text, transformers, unordered-containers
}:
mkDerivation {
pname = "parsers";
- version = "0.12.5";
- sha256 = "1azwy5wfjv75kjwcyrglq70dmc8f6a091bgyv0wsls4f5zv0qb3k";
+ version = "0.12.7";
+ sha256 = "032dgh0ydy4cbvnjhgp0krnqnvlibphvm30gvmqvpxk9l4pmn435";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
attoparsec base base-orphans charset containers mtl parsec
- scientific text transformers unordered-containers
+ scientific semigroups text transformers unordered-containers
];
testHaskellDepends = [
attoparsec base bytestring containers directory doctest filepath
@@ -145919,31 +143840,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "parsers_0_12_6" = callPackage
- ({ mkDerivation, attoparsec, base, base-orphans, bytestring, Cabal
- , cabal-doctest, charset, containers, directory, doctest, filepath
- , mtl, parsec, QuickCheck, quickcheck-instances, scientific, text
- , transformers, unordered-containers
- }:
- mkDerivation {
- pname = "parsers";
- version = "0.12.6";
- sha256 = "1jyffc1i9vihhxk5r69qmrnhsjsw2g7r0yxh3svvy1wrcz1vfcik";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- attoparsec base base-orphans charset containers mtl parsec
- scientific text transformers unordered-containers
- ];
- testHaskellDepends = [
- attoparsec base bytestring containers directory doctest filepath
- parsec QuickCheck quickcheck-instances
- ];
- homepage = "http://github.com/ekmett/parsers/";
- description = "Parsing combinators";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"parsestar" = callPackage
({ mkDerivation, array, base, binary, bytestring, bytestring-mmap
, bytestring-nums, bytestring-show, containers, deepseq, derive
@@ -146814,23 +144710,6 @@ self: {
}) {};
"pcre-utils" = callPackage
- ({ mkDerivation, array, attoparsec, base, bytestring, HUnit, mtl
- , regex-pcre-builtin, vector
- }:
- mkDerivation {
- pname = "pcre-utils";
- version = "0.1.8.1";
- sha256 = "1mqyjzccpj2ybwjhjx68bisn1zm9zwmf73hqkyqb5q5k2d7c2bvc";
- libraryHaskellDepends = [
- array attoparsec base bytestring mtl regex-pcre-builtin vector
- ];
- testHaskellDepends = [ base bytestring HUnit regex-pcre-builtin ];
- homepage = "https://github.com/bartavelle/pcre-utils";
- description = "Perl-like substitute and split for PCRE regexps";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "pcre-utils_0_1_8_1_1" = callPackage
({ mkDerivation, array, attoparsec, base, bytestring, HUnit, mtl
, regex-pcre-builtin, vector
}:
@@ -146845,7 +144724,6 @@ self: {
homepage = "https://github.com/bartavelle/pcre-utils";
description = "Perl-like substitute and split for PCRE regexps";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pdf-slave" = callPackage
@@ -148560,20 +146438,19 @@ self: {
"phoityne-vscode" = callPackage
({ mkDerivation, aeson, base, bytestring, Cabal, cmdargs, conduit
, conduit-extra, ConfigFile, containers, directory, filepath
- , fsnotify, hslogger, HStringTemplate, MissingH, mtl, parsec
- , process, resourcet, safe, split, text, transformers
+ , fsnotify, hslogger, MissingH, mtl, parsec, process, resourcet
+ , safe, split, text, transformers
}:
mkDerivation {
pname = "phoityne-vscode";
- version = "0.0.14.0";
- sha256 = "1csz0h91yka230vab626dc5qqay00ircgfs2x5z4gj3s67wh5fg5";
+ version = "0.0.15.0";
+ sha256 = "1r4wbf6x19gzmz88f770si5mvrya9adgilgs76kc36ynlsz5jyrp";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson base bytestring Cabal cmdargs conduit conduit-extra
- ConfigFile containers directory filepath fsnotify hslogger
- HStringTemplate MissingH mtl parsec process resourcet safe split
- text transformers
+ ConfigFile containers directory filepath fsnotify hslogger MissingH
+ mtl parsec process resourcet safe split text transformers
];
homepage = "https://github.com/phoityne/phoityne-vscode";
description = "ghci debug viewer on Visual Studio Code";
@@ -148998,32 +146875,6 @@ self: {
}) {};
"pinboard" = callPackage
- ({ mkDerivation, aeson, base, bytestring, containers, hspec
- , http-client, http-client-tls, http-types, monad-logger, mtl
- , network, profunctors, QuickCheck, random, safe-exceptions
- , semigroups, text, time, transformers, unordered-containers
- , vector
- }:
- mkDerivation {
- pname = "pinboard";
- version = "0.9.12.4";
- sha256 = "168yb6pgab0aildg0mj8707q7xyr4firf23a810y7nxy36mksk56";
- libraryHaskellDepends = [
- aeson base bytestring containers http-client http-client-tls
- http-types monad-logger mtl network profunctors random
- safe-exceptions text time transformers unordered-containers vector
- ];
- testHaskellDepends = [
- aeson base bytestring containers hspec mtl QuickCheck
- safe-exceptions semigroups text time transformers
- unordered-containers
- ];
- homepage = "https://github.com/jonschoning/pinboard";
- description = "Access to the Pinboard API";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "pinboard_0_9_12_5" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, hspec
, http-client, http-client-tls, http-types, monad-logger, mtl
, network, profunctors, QuickCheck, random, safe-exceptions
@@ -149047,7 +146898,6 @@ self: {
homepage = "https://github.com/jonschoning/pinboard";
description = "Access to the Pinboard API";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pinch" = callPackage
@@ -149630,22 +147480,6 @@ self: {
}) {};
"pipes-group" = callPackage
- ({ mkDerivation, base, doctest, free, lens-family-core, pipes
- , pipes-parse, transformers
- }:
- mkDerivation {
- pname = "pipes-group";
- version = "1.0.6";
- sha256 = "0rmpi9gb151gsmvx9f0q9vssd6fsf08ifxxynfp5jnv7lxmnzb87";
- libraryHaskellDepends = [
- base free pipes pipes-parse transformers
- ];
- testHaskellDepends = [ base doctest lens-family-core ];
- description = "Group streams into substreams";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "pipes-group_1_0_7" = callPackage
({ mkDerivation, base, doctest, free, lens-family-core, pipes
, pipes-parse, transformers
}:
@@ -149659,7 +147493,6 @@ self: {
testHaskellDepends = [ base doctest lens-family-core ];
description = "Group streams into substreams";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pipes-http" = callPackage
@@ -150537,7 +148370,7 @@ self: {
sha256 = "0xsx1pvlnqyidpvswisir9p9054r7fczi81nccflazijn3pr9rgb";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base base64-bytestring bytestring hxt ];
- description = "Generate and parse macOS property list format";
+ description = "Generate and parse Mac OS X property list format";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -150678,30 +148511,6 @@ self: {
}) {};
"plot-light" = callPackage
- ({ mkDerivation, attoparsec, attoparsec-time, base, blaze-svg
- , colour, hspec, palette, QuickCheck, scientific, text, time
- }:
- mkDerivation {
- pname = "plot-light";
- version = "0.2.4";
- sha256 = "0zwp8n9xx1ljh65as4s6lqj4a3nrz3hfg53x8zcba96ic9jkadn0";
- isLibrary = true;
- isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- attoparsec base blaze-svg colour palette scientific text time
- ];
- executableHaskellDepends = [
- attoparsec attoparsec-time base blaze-svg colour palette scientific
- text time
- ];
- testHaskellDepends = [ base hspec QuickCheck ];
- homepage = "https://github.com/ocramz/plot-light";
- description = "A lightweight plotting library, exporting to SVG";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "plot-light_0_2_7" = callPackage
({ mkDerivation, attoparsec, attoparsec-time, base, blaze-svg
, colour, hspec, mtl, palette, QuickCheck, scientific, text, time
}:
@@ -150723,7 +148532,6 @@ self: {
homepage = "https://github.com/ocramz/plot-light";
description = "A lightweight plotting library, exporting to SVG";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"plotfont" = callPackage
@@ -152340,30 +150148,6 @@ self: {
}) {};
"postgresql-simple-migration" = callPackage
- ({ mkDerivation, base, base64-bytestring, bytestring, cryptohash
- , directory, hspec, postgresql-simple, text, time
- }:
- mkDerivation {
- pname = "postgresql-simple-migration";
- version = "0.1.9.0";
- sha256 = "0skjc5ivcrhi0f49p0j2f0k69qfv4argvkz5mvd8kn5q381jyp80";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base base64-bytestring bytestring cryptohash directory
- postgresql-simple time
- ];
- executableHaskellDepends = [
- base base64-bytestring bytestring cryptohash directory
- postgresql-simple text time
- ];
- testHaskellDepends = [ base bytestring hspec postgresql-simple ];
- homepage = "https://github.com/ameingast/postgresql-simple-migration";
- description = "PostgreSQL Schema Migrations";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "postgresql-simple-migration_0_1_11_0" = callPackage
({ mkDerivation, base, base64-bytestring, bytestring, cryptohash
, directory, hspec, postgresql-simple, text, time
}:
@@ -152385,7 +150169,6 @@ self: {
homepage = "https://github.com/ameingast/postgresql-simple-migration";
description = "PostgreSQL Schema Migrations";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"postgresql-simple-opts" = callPackage
@@ -152409,31 +150192,6 @@ self: {
}) {};
"postgresql-simple-queue" = callPackage
- ({ mkDerivation, aeson, async, base, bytestring, exceptions, hspec
- , hspec-discover, hspec-expectations-lifted, hspec-pg-transact
- , monad-control, pg-transact, postgresql-simple, random, text, time
- , transformers
- }:
- mkDerivation {
- pname = "postgresql-simple-queue";
- version = "0.5.0.0";
- sha256 = "0yzzbx62sapj3ikym286g5ary1ha28ixcknn890kgbcb0f1xw5rh";
- libraryHaskellDepends = [
- aeson base bytestring exceptions monad-control pg-transact
- postgresql-simple random text time transformers
- ];
- testHaskellDepends = [
- aeson async base bytestring hspec hspec-discover
- hspec-expectations-lifted hspec-pg-transact pg-transact
- postgresql-simple
- ];
- homepage = "https://github.com/jfischoff/postgresql-queue#readme";
- description = "A PostgreSQL backed queue";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "postgresql-simple-queue_0_5_0_1" = callPackage
({ mkDerivation, aeson, async, base, bytestring, exceptions, hspec
, hspec-discover, hspec-expectations-lifted, hspec-pg-transact
, monad-control, pg-transact, postgresql-simple, random, text, time
@@ -152940,18 +150698,6 @@ self: {
}) {};
"pqueue" = callPackage
- ({ mkDerivation, base, deepseq, QuickCheck }:
- mkDerivation {
- pname = "pqueue";
- version = "1.3.2.2";
- sha256 = "0daha45lb7k372nv3nd29lbl7qmz4yp7hwa4p2w0yp1j8mwvbd97";
- libraryHaskellDepends = [ base deepseq ];
- testHaskellDepends = [ base deepseq QuickCheck ];
- description = "Reliable, persistent, fast priority queues";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "pqueue_1_3_2_3" = callPackage
({ mkDerivation, base, deepseq, QuickCheck }:
mkDerivation {
pname = "pqueue";
@@ -152961,7 +150707,6 @@ self: {
testHaskellDepends = [ base deepseq QuickCheck ];
description = "Reliable, persistent, fast priority queues";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pqueue-mtl" = callPackage
@@ -153699,34 +151444,6 @@ self: {
}) {};
"prettyprinter" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, bytestring, criterion
- , doctest, mtl, pgp-wordlist, QuickCheck, random, tasty
- , tasty-hunit, tasty-quickcheck, template-haskell, text
- , transformers
- }:
- mkDerivation {
- pname = "prettyprinter";
- version = "1.1";
- sha256 = "0bksn65rvnc0f59mfzhyl9yaccfh5ap6jxj1r477izlnkfs0k03y";
- revision = "3";
- editedCabalFile = "0y6qhf5bxbwxpy4xma05h806mxfn52kvf5f29r1hdpm2xlcab5hx";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base text ];
- executableHaskellDepends = [ base template-haskell text ];
- testHaskellDepends = [
- base bytestring doctest pgp-wordlist QuickCheck tasty tasty-hunit
- tasty-quickcheck text
- ];
- benchmarkHaskellDepends = [
- ansi-wl-pprint base criterion mtl random text transformers
- ];
- homepage = "http://github.com/quchen/prettyprinter";
- description = "A modern, easy to use, well-documented, extensible prettyprinter";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "prettyprinter_1_1_1" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bytestring, containers
, criterion, deepseq, doctest, mtl, pgp-wordlist, QuickCheck
, random, tasty, tasty-hunit, tasty-quickcheck, template-haskell
@@ -153751,24 +151468,9 @@ self: {
homepage = "http://github.com/quchen/prettyprinter";
description = "A modern, easy to use, well-documented, extensible prettyprinter";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"prettyprinter-ansi-terminal" = callPackage
- ({ mkDerivation, ansi-terminal, base, doctest, prettyprinter, text
- }:
- mkDerivation {
- pname = "prettyprinter-ansi-terminal";
- version = "1.1";
- sha256 = "0z2vi26qhrw5z36yy449x5yynv3wyx1c02z4m2lf7la7r9jwwfbj";
- libraryHaskellDepends = [ ansi-terminal base prettyprinter text ];
- testHaskellDepends = [ base doctest ];
- homepage = "http://github.com/quchen/prettyprinter";
- description = "ANSI terminal backend for the »prettyprinter« package";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "prettyprinter-ansi-terminal_1_1_1_1" = callPackage
({ mkDerivation, ansi-terminal, base, doctest, prettyprinter, text
}:
mkDerivation {
@@ -153782,7 +151484,6 @@ self: {
homepage = "http://github.com/quchen/prettyprinter";
description = "ANSI terminal backend for the »prettyprinter« package";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"prettyprinter-compat-annotated-wl-pprint" = callPackage
@@ -154625,25 +152326,6 @@ self: {
}) {};
"profunctors" = callPackage
- ({ mkDerivation, base, base-orphans, bifunctors, comonad
- , contravariant, distributive, tagged, transformers
- }:
- mkDerivation {
- pname = "profunctors";
- version = "5.2";
- sha256 = "1905xv9y2sx1iya0zlrx7nxhlwap5vn144nxg7s8zsj58xff59w7";
- revision = "1";
- editedCabalFile = "1q0zva60kqb560fr0ii0gm227sg6q7ddbhriv64l6nfv509vw32k";
- libraryHaskellDepends = [
- base base-orphans bifunctors comonad contravariant distributive
- tagged transformers
- ];
- homepage = "http://github.com/ekmett/profunctors/";
- description = "Profunctors";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "profunctors_5_2_1" = callPackage
({ mkDerivation, base, base-orphans, bifunctors, comonad
, contravariant, distributive, tagged, transformers
}:
@@ -154658,7 +152340,6 @@ self: {
homepage = "http://github.com/ekmett/profunctors/";
description = "Profunctors";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"progress" = callPackage
@@ -155222,22 +152903,6 @@ self: {
}) {};
"proto-lens-arbitrary" = callPackage
- ({ mkDerivation, base, bytestring, containers, lens-family
- , proto-lens, QuickCheck, text
- }:
- mkDerivation {
- pname = "proto-lens-arbitrary";
- version = "0.1.1.0";
- sha256 = "0bqd6xfak7x5pvaa0znq57yr6a6iw2p97ssb87pcsmv34cfw0l16";
- libraryHaskellDepends = [
- base bytestring containers lens-family proto-lens QuickCheck text
- ];
- homepage = "https://github.com/google/proto-lens";
- description = "Arbitrary instances for proto-lens";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "proto-lens-arbitrary_0_1_1_1" = callPackage
({ mkDerivation, base, bytestring, containers, lens-family
, proto-lens, QuickCheck, text
}:
@@ -155251,7 +152916,6 @@ self: {
homepage = "https://github.com/google/proto-lens";
description = "Arbitrary instances for proto-lens";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"proto-lens-combinators" = callPackage
@@ -155336,20 +153000,6 @@ self: {
}) {};
"proto-lens-optparse" = callPackage
- ({ mkDerivation, base, optparse-applicative, proto-lens, text }:
- mkDerivation {
- pname = "proto-lens-optparse";
- version = "0.1.0.3";
- sha256 = "16wk5paba9p7rz1z614d9byszygkqvxca78zwxyzjgvyjw1yssyl";
- libraryHaskellDepends = [
- base optparse-applicative proto-lens text
- ];
- homepage = "https://github.com/google/proto-lens";
- description = "Adapting proto-lens to optparse-applicative ReadMs";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "proto-lens-optparse_0_1_0_4" = callPackage
({ mkDerivation, base, optparse-applicative, proto-lens, text }:
mkDerivation {
pname = "proto-lens-optparse";
@@ -155361,7 +153011,6 @@ self: {
homepage = "https://github.com/google/proto-lens";
description = "Adapting proto-lens to optparse-applicative ReadMs";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"proto-lens-protobuf-types" = callPackage
@@ -155521,23 +153170,6 @@ self: {
}) {};
"protocol-buffers" = callPackage
- ({ mkDerivation, array, base, binary, bytestring, containers
- , directory, filepath, mtl, parsec, syb, utf8-string
- }:
- mkDerivation {
- pname = "protocol-buffers";
- version = "2.4.2";
- sha256 = "13z1sh8z5b3nlscqnzw137k3979d4war3yzhxclljqq2z88rm1bv";
- libraryHaskellDepends = [
- array base binary bytestring containers directory filepath mtl
- parsec syb utf8-string
- ];
- homepage = "https://github.com/k-bx/protocol-buffers";
- description = "Parse Google Protocol Buffer specifications";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "protocol-buffers_2_4_3" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
, directory, filepath, mtl, parsec, syb, utf8-string
}:
@@ -155552,25 +153184,9 @@ self: {
homepage = "https://github.com/k-bx/protocol-buffers";
description = "Parse Google Protocol Buffer specifications";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"protocol-buffers-descriptor" = callPackage
- ({ mkDerivation, base, bytestring, containers, protocol-buffers }:
- mkDerivation {
- pname = "protocol-buffers-descriptor";
- version = "2.4.2";
- sha256 = "0r7n1pnkabzksik9zrqif490g135hcjgvc40zm5c0b3dpq64r4lb";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base bytestring containers protocol-buffers
- ];
- homepage = "https://github.com/k-bx/protocol-buffers";
- description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "protocol-buffers-descriptor_2_4_3" = callPackage
({ mkDerivation, base, bytestring, containers, protocol-buffers }:
mkDerivation {
pname = "protocol-buffers-descriptor";
@@ -155583,7 +153199,6 @@ self: {
homepage = "https://github.com/k-bx/protocol-buffers";
description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"protocol-buffers-descriptor-fork" = callPackage
@@ -159421,10 +157036,8 @@ self: {
}:
mkDerivation {
pname = "rasterific-svg";
- version = "0.3.2.1";
- sha256 = "1pxgazmyl9ky08vx2nnf5k7bw183ljpvzggvddrdlpwzczm8fzki";
- revision = "1";
- editedCabalFile = "19w6f01qc1ahwfsqnqb6ajsgv4wqy5vfy54f6x15z1pivnyw37sk";
+ version = "0.3.3";
+ sha256 = "0jqdqf3y61z98sxdziqhafgsf5m01a00gkfdnv1w4vd6zli8xpaa";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -159453,25 +157066,6 @@ self: {
}) {};
"ratel" = callPackage
- ({ mkDerivation, aeson, base, bytestring, case-insensitive
- , containers, http-client, http-client-tls, http-types, tasty
- , tasty-hspec, text, uuid
- }:
- mkDerivation {
- pname = "ratel";
- version = "0.3.4";
- sha256 = "1j589qm8711h2ycy19s7i25sx217v5y5c1h4ks6x4dkpzk33c1hm";
- libraryHaskellDepends = [
- aeson base bytestring case-insensitive containers http-client
- http-client-tls http-types text uuid
- ];
- testHaskellDepends = [ base tasty tasty-hspec ];
- homepage = "https://github.com/tfausak/ratel#readme";
- description = "Notify Honeybadger about exceptions";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "ratel_0_3_5" = callPackage
({ mkDerivation, aeson, base, bytestring, case-insensitive
, containers, filepath, http-client, http-client-tls, http-types
, tasty, tasty-hspec, text, uuid
@@ -159488,7 +157082,6 @@ self: {
homepage = "https://github.com/tfausak/ratel#readme";
description = "Notify Honeybadger about exceptions";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ratel-wai" = callPackage
@@ -159861,6 +157454,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "rdf_0_1_0_2" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, criterion, deepseq
+ , dlist, fgl, text, transformers
+ }:
+ mkDerivation {
+ pname = "rdf";
+ version = "0.1.0.2";
+ sha256 = "0vqznprx5r7lqyj8b850pfyy7mvin55l1v4krmi1wyacynv977c8";
+ libraryHaskellDepends = [
+ attoparsec base bytestring deepseq dlist fgl text transformers
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring criterion deepseq text
+ ];
+ homepage = "https://github.com/traviswhitaker/rdf";
+ description = "Representation and Incremental Processing of RDF Data";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"rdf4h" = callPackage
({ mkDerivation, base, binary, bytestring, containers, criterion
, deepseq, directory, hashable, hgal, HTTP, HUnit, hxt, network
@@ -160554,8 +158167,8 @@ self: {
}:
mkDerivation {
pname = "rebase";
- version = "1.0.8";
- sha256 = "1gdqrzbpqpm5vl7hnh7q875hsazibqw1lfwnkzqs2gv6w3wa3lw4";
+ version = "1.0.8.1";
+ sha256 = "111wslzm76qrabpdbsnpb3sydbd3vc71d3mf088klkgbb0k2arxp";
libraryHaskellDepends = [
base base-prelude bifunctors bytestring containers contravariant
contravariant-extras deepseq dlist either fail hashable mtl
@@ -160788,15 +158401,15 @@ self: {
}) {};
"recursion-schemes-ext" = callPackage
- ({ mkDerivation, base, composition-prelude, criterion, hspec
- , recursion-schemes
+ ({ mkDerivation, base, composition-prelude, criterion, deepseq
+ , hspec, recursion-schemes, template-haskell
}:
mkDerivation {
pname = "recursion-schemes-ext";
- version = "0.1.0.1";
- sha256 = "1g24mcb6qdpq6ggnixbb82iq3b3fhrgpspgrblk9cwwrpl1arnhg";
+ version = "0.1.1.1";
+ sha256 = "10jyylpbcahxp64gnvb1pplvkrgga65nj4lapws5kl52jw1bf5z4";
libraryHaskellDepends = [
- base composition-prelude recursion-schemes
+ base composition-prelude deepseq recursion-schemes template-haskell
];
testHaskellDepends = [ base hspec ];
benchmarkHaskellDepends = [ base criterion ];
@@ -161190,29 +158803,6 @@ self: {
}) {};
"references" = callPackage
- ({ mkDerivation, array, base, containers, directory, either
- , filepath, HUnit, instance-control, lens, mtl, template-haskell
- , text, transformers, uniplate
- }:
- mkDerivation {
- pname = "references";
- version = "0.3.2.1";
- sha256 = "093nsbnr5vax4h0ki51xqa0gaf58fr09q3rmksxqcghzgphj0h0q";
- libraryHaskellDepends = [
- array base containers directory either filepath instance-control
- mtl template-haskell text transformers uniplate
- ];
- testHaskellDepends = [
- array base containers directory either filepath HUnit
- instance-control lens mtl template-haskell text transformers
- uniplate
- ];
- homepage = "https://github.com/lazac/references";
- description = "Selectors for reading and updating data";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "references_0_3_2_2" = callPackage
({ mkDerivation, array, base, containers, directory, either
, filepath, HUnit, instance-control, lens, mtl, template-haskell
, text, transformers, uniplate
@@ -161233,7 +158823,6 @@ self: {
homepage = "https://github.com/lazac/references";
description = "Selectors for reading and updating data";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"refh" = callPackage
@@ -162024,8 +159613,8 @@ self: {
({ mkDerivation, base, regex-tdfa, template-haskell }:
mkDerivation {
pname = "regex-tdfa-quasiquoter";
- version = "0.2.0.0";
- sha256 = "0qc35kxwc2pbjridiiwyi1xzcx3f02fy1lpqv7rpwddpjxi6mqca";
+ version = "0.2.1.0";
+ sha256 = "1l0yk2m2k4ybjx3pidcn2xpij9cnyi76ar74llf09vwv764mh36f";
libraryHaskellDepends = [ base regex-tdfa template-haskell ];
homepage = "http://github.com/erisco/regex-tdfa-quasiquoter";
description = "Quasi-quoter for TDFA (extended POSIX) regular expressions";
@@ -164008,35 +161597,6 @@ self: {
}) {};
"rest-gen" = callPackage
- ({ mkDerivation, aeson, base, base-compat, blaze-html, Cabal
- , code-builder, directory, fclabels, filepath, hashable
- , haskell-src-exts, HStringTemplate, HUnit, hxt, json-schema
- , pretty, process, rest-core, safe, scientific, semigroups, split
- , test-framework, test-framework-hunit, text, uniplate
- , unordered-containers, vector
- }:
- mkDerivation {
- pname = "rest-gen";
- version = "0.20.0.0";
- sha256 = "0hnmd37c6n61gkqi3assspkmh15q93id7yaq30vp65zr6rhliac1";
- revision = "8";
- editedCabalFile = "1x18sva575kcg9gg4brf17zbvvkzs0qi2rgkab5ijr4pnmhpwc62";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- aeson base base-compat blaze-html Cabal code-builder directory
- fclabels filepath hashable haskell-src-exts HStringTemplate hxt
- json-schema pretty process rest-core safe scientific semigroups
- split text uniplate unordered-containers vector
- ];
- testHaskellDepends = [
- base fclabels haskell-src-exts HUnit rest-core test-framework
- test-framework-hunit
- ];
- description = "Documentation and client generation from rest definition";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "rest-gen_0_20_0_1" = callPackage
({ mkDerivation, aeson, base, base-compat, blaze-html, Cabal
, code-builder, directory, fclabels, filepath, hashable
, haskell-src-exts, HStringTemplate, HUnit, hxt, json-schema
@@ -164061,7 +161621,6 @@ self: {
];
description = "Documentation and client generation from rest definition";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rest-happstack" = callPackage
@@ -164260,36 +161819,6 @@ self: {
}) {};
"rethinkdb-client-driver" = callPackage
- ({ mkDerivation, aeson, base, binary, bytestring, containers
- , criterion, hashable, hspec, hspec-smallcheck, mtl, network
- , old-locale, scientific, smallcheck, stm, template-haskell, text
- , time, unordered-containers, vector
- }:
- mkDerivation {
- pname = "rethinkdb-client-driver";
- version = "0.0.23";
- sha256 = "0hq4q9xb6aila7y3ia948mizlha6saj1cqj1smprxd1vag5s7rff";
- revision = "1";
- editedCabalFile = "1vgv2zfdkpxbrg8nssas8x85cbmah8d59ks9744hd7zc461kgfzl";
- libraryHaskellDepends = [
- aeson base binary bytestring containers hashable mtl network
- old-locale scientific stm template-haskell text time
- unordered-containers vector
- ];
- testHaskellDepends = [
- base hspec hspec-smallcheck smallcheck text time
- unordered-containers vector
- ];
- benchmarkHaskellDepends = [
- base criterion text time unordered-containers vector
- ];
- homepage = "https://github.com/wereHamster/rethinkdb-client-driver";
- description = "Client driver for RethinkDB";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "rethinkdb-client-driver_0_0_24" = callPackage
({ mkDerivation, aeson, base, binary, bytestring, containers
, criterion, hashable, hspec, hspec-smallcheck, mtl, network
, old-locale, scientific, smallcheck, stm, template-haskell, text
@@ -165327,8 +162856,8 @@ self: {
}:
mkDerivation {
pname = "rollbar";
- version = "0.4.1";
- sha256 = "0gl1q1f8n2xngb665hkqncqj1ymm7kymhhgp0qwdhdi3gnm8kymp";
+ version = "1.0.0";
+ sha256 = "01rljwfb7cgw544pk6iwmxlxzid51q7ig8f5y8v9i75vskqkip7j";
libraryHaskellDepends = [
aeson base basic-prelude http-conduit monad-control network
resourcet text vector
@@ -165970,8 +163499,8 @@ self: {
}:
mkDerivation {
pname = "rss-conduit";
- version = "0.3.1.1";
- sha256 = "16pghxkk9pyskhp73sz43nw84w7qw62sdlwqpsrrfs2wr2ab71bd";
+ version = "0.3.1.2";
+ sha256 = "19a2x5xkfbkzz36l47v4m0fd7qp0pn3r4r77jaca0a3m7k74rxf1";
libraryHaskellDepends = [
base conduit conduit-combinators containers lens-simple
mono-traversable safe safe-exceptions text time timerep
@@ -165987,6 +163516,33 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "rss-conduit_0_3_2_0" = callPackage
+ ({ mkDerivation, base, bytestring, conduit, conduit-combinators
+ , containers, data-default, hlint, lens-simple, mono-traversable
+ , QuickCheck, quickcheck-instances, resourcet, safe
+ , safe-exceptions, tasty, tasty-hunit, tasty-quickcheck, text, time
+ , timerep, uri-bytestring, xml-conduit, xml-types
+ }:
+ mkDerivation {
+ pname = "rss-conduit";
+ version = "0.3.2.0";
+ sha256 = "0ps0ynn0d0nz4m556i5w39bwx4m6wfsv3c9a269rkq821z844f3n";
+ libraryHaskellDepends = [
+ base conduit conduit-combinators containers lens-simple
+ mono-traversable safe safe-exceptions text time timerep
+ uri-bytestring xml-conduit xml-types
+ ];
+ testHaskellDepends = [
+ base bytestring conduit conduit-combinators data-default hlint
+ lens-simple mono-traversable QuickCheck quickcheck-instances
+ resourcet safe-exceptions tasty tasty-hunit tasty-quickcheck text
+ time uri-bytestring xml-conduit xml-types
+ ];
+ description = "Streaming parser/renderer for the RSS standard";
+ license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"rss2irc" = callPackage
({ mkDerivation, base, bytestring, cmdargs, containers, deepseq
, feed, http-client, http-conduit, http-types, io-storage, irc
@@ -166735,28 +164291,6 @@ self: {
}) {};
"safeio" = callPackage
- ({ mkDerivation, base, bytestring, conduit, conduit-combinators
- , directory, filepath, HUnit, resourcet, test-framework
- , test-framework-hunit, test-framework-th, unix
- }:
- mkDerivation {
- pname = "safeio";
- version = "0.0.2.0";
- sha256 = "0ajz4hd3dycy10abngccqdbkj1356d2sggsnrlc34s370381hi9w";
- libraryHaskellDepends = [
- base bytestring conduit conduit-combinators directory filepath
- resourcet unix
- ];
- testHaskellDepends = [
- base bytestring conduit conduit-combinators directory filepath
- HUnit resourcet test-framework test-framework-hunit
- test-framework-th unix
- ];
- description = "Write output to disk atomically";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "safeio_0_0_3_0" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-combinators
, directory, filepath, HUnit, resourcet, test-framework
, test-framework-hunit, test-framework-th, unix
@@ -166776,7 +164310,6 @@ self: {
];
description = "Write output to disk atomically";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"safepath" = callPackage
@@ -167157,27 +164690,6 @@ self: {
}) {};
"sandi" = callPackage
- ({ mkDerivation, base, bytestring, conduit, criterion, exceptions
- , HUnit, stringsearch, tasty, tasty-hunit, tasty-quickcheck
- , tasty-th
- }:
- mkDerivation {
- pname = "sandi";
- version = "0.4.0";
- sha256 = "1smf3bq44qni4zbgxpw7cy7b9g95fbrr73j8njjf6139naj9bj20";
- libraryHaskellDepends = [
- base bytestring conduit exceptions stringsearch
- ];
- testHaskellDepends = [
- base bytestring HUnit tasty tasty-hunit tasty-quickcheck tasty-th
- ];
- benchmarkHaskellDepends = [ base bytestring criterion ];
- homepage = "http://hackage.haskell.org/package/sandi";
- description = "Data encoding library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "sandi_0_4_1" = callPackage
({ mkDerivation, base, bytestring, conduit, criterion, exceptions
, HUnit, stringsearch, tasty, tasty-hunit, tasty-quickcheck
, tasty-th
@@ -167196,7 +164708,6 @@ self: {
homepage = "http://hackage.haskell.org/package/sandi";
description = "Data encoding library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sandlib" = callPackage
@@ -168713,16 +166224,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) SDL2;};
- "sdl2-cairo" = callPackage
- ({ mkDerivation, base, cairo, linear, mtl, random, sdl2, time }:
+ "sdl2_2_3_0" = callPackage
+ ({ mkDerivation, base, bytestring, exceptions, linear, SDL2
+ , StateVar, text, transformers, vector
+ }:
mkDerivation {
- pname = "sdl2-cairo";
- version = "0.1.1.0";
- sha256 = "08i7vbibak0y760j2cibwdn2yhgkp2xv2j325mimvdqcp44x0rz0";
+ pname = "sdl2";
+ version = "2.3.0";
+ sha256 = "0av74p5m93c3g490pcz9042f9sfjknxbh5cvwvakhcfrkvfdlva4";
isLibrary = true;
isExecutable = true;
- libraryHaskellDepends = [ base cairo linear mtl random sdl2 time ];
- description = "Render with Cairo on SDL textures. Includes optional convenience drawing API.";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ base bytestring exceptions linear StateVar text transformers vector
+ ];
+ librarySystemDepends = [ SDL2 ];
+ libraryPkgconfigDepends = [ SDL2 ];
+ description = "Both high- and low-level bindings to the SDL library (version 2.0.4+).";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) SDL2;};
+
+ "sdl2-cairo" = callPackage
+ ({ mkDerivation, base, cairo, linear, sdl2 }:
+ mkDerivation {
+ pname = "sdl2-cairo";
+ version = "0.2";
+ sha256 = "1diz8irrrc7mvy5fnm679xpl3dyy9ynr7a6d900yi3dn0zamq939";
+ libraryHaskellDepends = [ base cairo linear sdl2 ];
+ description = "Render with Cairo on SDL textures";
license = stdenv.lib.licenses.mit;
}) {};
@@ -169228,23 +166758,6 @@ self: {
}) {sedna = null;};
"selda" = callPackage
- ({ mkDerivation, base, bytestring, exceptions, hashable, mtl
- , psqueues, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "selda";
- version = "0.1.9.0";
- sha256 = "0c69aaalxi4b42y6y9y12wcxxyjnb3arc196kj0c1q6xdwh9fpk4";
- libraryHaskellDepends = [
- base bytestring exceptions hashable mtl psqueues text time
- unordered-containers
- ];
- homepage = "https://selda.link";
- description = "Type-safe, high-level EDSL for interacting with relational databases";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "selda_0_1_10_1" = callPackage
({ mkDerivation, base, bytestring, exceptions, hashable, mtl
, psqueues, text, time, unordered-containers
}:
@@ -169259,26 +166772,9 @@ self: {
homepage = "https://selda.link";
description = "Type-safe, high-level EDSL for interacting with relational databases";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"selda-postgresql" = callPackage
- ({ mkDerivation, base, bytestring, exceptions, postgresql-libpq
- , selda, text
- }:
- mkDerivation {
- pname = "selda-postgresql";
- version = "0.1.5.1";
- sha256 = "1462rcvyf79p80b17hkgkgb2jfzhkdq8vj0y001jy5wzl6gs7b8d";
- libraryHaskellDepends = [
- base bytestring exceptions postgresql-libpq selda text
- ];
- homepage = "https://github.com/valderman/selda";
- description = "PostgreSQL backend for the Selda database EDSL";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "selda-postgresql_0_1_6_0" = callPackage
({ mkDerivation, base, bytestring, exceptions, postgresql-libpq
, selda, text
}:
@@ -169292,26 +166788,9 @@ self: {
homepage = "https://github.com/valderman/selda";
description = "PostgreSQL backend for the Selda database EDSL";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"selda-sqlite" = callPackage
- ({ mkDerivation, base, direct-sqlite, directory, exceptions, selda
- , text
- }:
- mkDerivation {
- pname = "selda-sqlite";
- version = "0.1.5.1";
- sha256 = "1r81qidwqp5smi3h7awrbxhvlclm5dgvrmi56irghvh960h720j3";
- libraryHaskellDepends = [
- base direct-sqlite directory exceptions selda text
- ];
- homepage = "https://github.com/valderman/selda";
- description = "SQLite backend for the Selda database EDSL";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "selda-sqlite_0_1_6_0" = callPackage
({ mkDerivation, base, direct-sqlite, directory, exceptions, selda
, text
}:
@@ -169325,7 +166804,6 @@ self: {
homepage = "https://github.com/valderman/selda";
description = "SQLite backend for the Selda database EDSL";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"select" = callPackage
@@ -169341,12 +166819,12 @@ self: {
}) {};
"selections" = callPackage
- ({ mkDerivation, base, bifunctors, comonad }:
+ ({ mkDerivation, base, bifunctors, comonad, profunctors }:
mkDerivation {
pname = "selections";
- version = "0.1.0.3";
- sha256 = "1g7p30mjvkq8ymmjdhh54bhyjs2dvz7v860mr1f8qs35j31bkabd";
- libraryHaskellDepends = [ base bifunctors comonad ];
+ version = "0.2.0.0";
+ sha256 = "000hdwdp56pc67j1iw0mc6m74dfim67g16ib4yr7vyilq8rfccb0";
+ libraryHaskellDepends = [ base bifunctors comonad profunctors ];
homepage = "https://github.com/ChrisPenner/selections#readme";
description = "Combinators for operating with selections over an underlying functor";
license = stdenv.lib.licenses.bsd3;
@@ -169504,26 +166982,6 @@ self: {
}) {};
"semigroupoids" = callPackage
- ({ mkDerivation, base, base-orphans, bifunctors, Cabal
- , cabal-doctest, comonad, containers, contravariant, distributive
- , doctest, semigroups, tagged, transformers, transformers-compat
- }:
- mkDerivation {
- pname = "semigroupoids";
- version = "5.2";
- sha256 = "1g4ifzwsdpbkq50xrpd03vbdb75s5nwwmvb8xy2jpp509j0ghmyr";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base base-orphans bifunctors comonad containers contravariant
- distributive semigroups tagged transformers transformers-compat
- ];
- testHaskellDepends = [ base doctest ];
- homepage = "http://github.com/ekmett/semigroupoids";
- description = "Semigroupoids: Category sans id";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "semigroupoids_5_2_1" = callPackage
({ mkDerivation, base, base-orphans, bifunctors, Cabal
, cabal-doctest, comonad, containers, contravariant, distributive
, doctest, hashable, semigroups, tagged, transformers
@@ -169545,7 +167003,6 @@ self: {
homepage = "http://github.com/ekmett/semigroupoids";
description = "Semigroupoids: Category sans id";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"semigroupoids-syntax" = callPackage
@@ -170203,8 +167660,8 @@ self: {
}:
mkDerivation {
pname = "serokell-util";
- version = "0.3.1";
- sha256 = "01wjr1xlnvz2ml7iiarbbl1h8p4ax457nq1n6xxx070d08l4iq33";
+ version = "0.4.0";
+ sha256 = "1hql9cmw43cq9dsrkd0qwy1ycj6srsc2sr32grcfvh2j350k2m0p";
libraryHaskellDepends = [
acid-state aeson ansi-terminal base base16-bytestring
base64-bytestring bytestring clock containers deepseq directory
@@ -171630,8 +169087,8 @@ self: {
}:
mkDerivation {
pname = "servant-static-th";
- version = "0.1.0.4";
- sha256 = "029xm7znkqd5sh7yhrblf9marwyd29iiqnar4kaf6awllxxkk1aq";
+ version = "0.1.0.5";
+ sha256 = "1i1xyn14nc2jg1b6y926pz3dp4hlgg54q3lzzg9zza1jnh6ncjrp";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -171757,6 +169214,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-websockets" = callPackage
+ ({ mkDerivation, aeson, async, base, bytestring, conduit
+ , exceptions, resourcet, servant-server, text, wai, wai-websockets
+ , warp, websockets
+ }:
+ mkDerivation {
+ pname = "servant-websockets";
+ version = "1.0.0";
+ sha256 = "05y9yyrg5c99xdlyfzwddylrklpspabijdd08f5c75bhdi2i4cb2";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson async base bytestring conduit exceptions resourcet
+ servant-server text wai wai-websockets warp websockets
+ ];
+ executableHaskellDepends = [
+ aeson base conduit servant-server text wai warp websockets
+ ];
+ homepage = "https://github.com/moesenle/servant-websockets#readme";
+ description = "Small library providing WebSocket endpoints for servant";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"servant-yaml" = callPackage
({ mkDerivation, aeson, base, base-compat, bytestring, http-media
, servant, servant-server, wai, warp, yaml
@@ -172230,6 +169710,8 @@ self: {
pname = "setgame";
version = "1.1";
sha256 = "1hr2kb4d7m22d48gh74h5z8c6shkprincf0qb9wc2fq2hj7c3c1l";
+ revision = "1";
+ editedCabalFile = "1shkmfmjnvc47gy9ck6knf94571if4qjm92c1p8kji9v0n24yzfw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base random vty ];
@@ -172881,6 +170363,33 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
+ "shakespeare_2_0_14" = callPackage
+ ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring
+ , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec
+ , process, scientific, template-haskell, text, time, transformers
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "shakespeare";
+ version = "2.0.14";
+ sha256 = "0j5zx8ka7d7scvb9shm7k3376qzl3k4kpim9aqqfs6n86901zpl4";
+ libraryHaskellDepends = [
+ aeson base blaze-html blaze-markup bytestring containers directory
+ exceptions ghc-prim parsec process scientific template-haskell text
+ time transformers unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base blaze-html blaze-markup bytestring containers directory
+ exceptions ghc-prim hspec HUnit parsec process template-haskell
+ text time transformers
+ ];
+ homepage = "http://www.yesodweb.com/book/shakespearean-templates";
+ description = "A toolkit for making compile-time interpolated templates";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ maintainers = with stdenv.lib.maintainers; [ psibi ];
+ }) {};
+
"shakespeare-babel" = callPackage
({ mkDerivation, base, classy-prelude, data-default, directory
, process, shakespeare, template-haskell
@@ -173868,21 +171377,6 @@ self: {
}) {};
"signal" = callPackage
- ({ mkDerivation, base, unix }:
- mkDerivation {
- pname = "signal";
- version = "0.1.0.3";
- sha256 = "1iwa707xd4g4lycdjr72ygrjy68gyqyvhvl2bbxswgpfxy5i1x8x";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [ base unix ];
- executableHaskellDepends = [ base ];
- homepage = "http://github.com/pmlodawski/signal";
- description = "Multiplatform signal support for Haskell";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "signal_0_1_0_4" = callPackage
({ mkDerivation, base, unix }:
mkDerivation {
pname = "signal";
@@ -173895,7 +171389,6 @@ self: {
homepage = "http://github.com/pmlodawski/signal";
description = "Multiplatform signal support for Haskell";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"signals" = callPackage
@@ -174294,8 +171787,8 @@ self: {
}:
mkDerivation {
pname = "simple-log";
- version = "0.9.2";
- sha256 = "13a1rqbig0q0nkkwk33vq7vp6w4dvm8famf5dpydw3vlizwh4db9";
+ version = "0.9.3";
+ sha256 = "0i58x3gasg1gda7yx9r155ap6w7mamafcqi5jpq4adm9wx4gy4ph";
libraryHaskellDepends = [
async base base-unicode-symbols containers data-default deepseq
directory exceptions filepath hformat microlens microlens-platform
@@ -175582,17 +173075,22 @@ self: {
}) {};
"slack-web" = callPackage
- ({ mkDerivation, aeson, base, generics-sop, http-api-data
- , http-client, http-client-tls, servant, servant-client, text
- , transformers
+ ({ mkDerivation, aeson, base, containers, errors, hspec
+ , http-api-data, http-client, http-client-tls, megaparsec, mtl
+ , servant, servant-client, text, time, transformers
}:
mkDerivation {
pname = "slack-web";
- version = "0.1.0";
- sha256 = "107knm7ldy14n0nb474xa5sha6z6b413pmf96ih8amv8zs5nq642";
+ version = "0.2.0.1";
+ sha256 = "1v1w6szcjy4qgdx66754vkp7w4fnkyg0pngijy2v422pqmc4jpr9";
libraryHaskellDepends = [
- aeson base generics-sop http-api-data http-client http-client-tls
- servant servant-client text transformers
+ aeson base containers errors http-api-data http-client
+ http-client-tls megaparsec mtl servant servant-client text time
+ transformers
+ ];
+ testHaskellDepends = [
+ aeson base containers errors hspec http-api-data megaparsec text
+ time
];
homepage = "https://github.com/jpvillaisaza/slack-web";
description = "Bindings for the Slack web API";
@@ -175815,20 +173313,6 @@ self: {
}) {};
"smallcheck" = callPackage
- ({ mkDerivation, base, ghc-prim, logict, mtl, pretty }:
- mkDerivation {
- pname = "smallcheck";
- version = "1.1.1";
- sha256 = "1ygrabxh40bym3grnzqyfqn96lirnxspb8cmwkkr213239y605sd";
- revision = "1";
- editedCabalFile = "1ykq0hqs1alw86p0ssa6dhsb1a8d4m6bqwibkhvzcd6c28dq975i";
- libraryHaskellDepends = [ base ghc-prim logict mtl pretty ];
- homepage = "https://github.com/feuerbach/smallcheck";
- description = "A property-based testing library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "smallcheck_1_1_2" = callPackage
({ mkDerivation, base, ghc-prim, logict, mtl, pretty }:
mkDerivation {
pname = "smallcheck";
@@ -175838,7 +173322,6 @@ self: {
homepage = "https://github.com/feuerbach/smallcheck";
description = "A property-based testing library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smallcheck-laws" = callPackage
@@ -176040,8 +173523,8 @@ self: {
({ mkDerivation, base, hspec, megaparsec, QuickCheck, text }:
mkDerivation {
pname = "smiles";
- version = "0.1.1.0";
- sha256 = "054s7c6xbakbv0kc64iyv1gsqnddgv8kc07hplk8ksbzg8q5x8jz";
+ version = "0.2.0.0";
+ sha256 = "0k1yy1bhgavsmm40zz1i6ihyfksb6fr06wxlbqyj1y0igmrrrlrw";
libraryHaskellDepends = [ base megaparsec text ];
testHaskellDepends = [ base hspec megaparsec QuickCheck text ];
homepage = "https://github.com/zmactep/smiles#readme";
@@ -176295,10 +173778,8 @@ self: {
}:
mkDerivation {
pname = "snap";
- version = "1.0.0.1";
- sha256 = "1f1d69900rdvsi323cc23pfgacmvgclbdaw57lfi54s7830icgr9";
- revision = "5";
- editedCabalFile = "0kka00b4xvskfcfva1zvbd7sp2sa5mplvgaihcagjsim96124bsp";
+ version = "1.0.0.2";
+ sha256 = "0jx2prq0lxq9jqxqk8f059lwjm2yqxzwb9lx6iviq57flx4zxyqq";
libraryHaskellDepends = [
aeson attoparsec base bytestring cereal clientsession configurator
containers directory directory-tree dlist filepath hashable heist
@@ -176421,8 +173902,8 @@ self: {
}:
mkDerivation {
pname = "snap-core";
- version = "1.0.2.1";
- sha256 = "07d1rk6jr5yk74v3g53ncal5f44hyi1486xlxg7lj3v4qifkv46y";
+ version = "1.0.3.0";
+ sha256 = "0vkla7rfrwyhk31nign8ccjfhp7f0nqjhmg6hb7rq7ggblgwgnr4";
libraryHaskellDepends = [
attoparsec base bytestring bytestring-builder case-insensitive
containers directory filepath hashable HUnit io-streams lifted-base
@@ -176552,6 +174033,8 @@ self: {
pname = "snap-loader-dynamic";
version = "1.0.0.0";
sha256 = "12zvmdkypwflmc81i0sxbfmb3ja0vydycmaliyvrw0z32kg705wg";
+ revision = "1";
+ editedCabalFile = "0zgnlfp4rlj5c40ma75fdc7csbjn9p84x6a7fiwc7lqd1iqk4rbj";
libraryHaskellDepends = [
base directory directory-tree hint mtl snap-core template-haskell
time unix
@@ -176630,10 +174113,8 @@ self: {
}:
mkDerivation {
pname = "snap-server";
- version = "1.0.2.2";
- sha256 = "0zw3z9s61kkfmlvrg3sfqvd0c3mzg9zjwp01hm1br3z8cawmzpi7";
- revision = "2";
- editedCabalFile = "032m1c42qm4b07s835aa9jl2n7r7py8cdz3fdfqi6qd68z7lqrb5";
+ version = "1.0.3.0";
+ sha256 = "1lvwfrirf6gq6nr6ias0i0xynq62s9myrj4203wdwq0y4c40nhqc";
configureFlags = [ "-fopenssl" ];
isLibrary = true;
isExecutable = true;
@@ -177849,23 +175330,6 @@ self: {
}) {};
"snowtify" = callPackage
- ({ mkDerivation, base, either, safe, safe-exceptions, text, turtle
- }:
- mkDerivation {
- pname = "snowtify";
- version = "0.1.0.0";
- sha256 = "1dfs4nghjxqdfpd3hpkbxg9yn5sgn2s0l3l70xxsrzpi5xz6lvrj";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- base either safe safe-exceptions text turtle
- ];
- homepage = "https://github.com/aiya000/hs-snowtify#README.md";
- description = "snowtify send your result of `stack build` (`stack test`) to notify-daemon :dog2:";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "snowtify_0_1_0_3" = callPackage
({ mkDerivation, base, either, safe, safe-exceptions, text, turtle
}:
mkDerivation {
@@ -177880,7 +175344,6 @@ self: {
homepage = "https://github.com/aiya000/hs-snowtify#README.md";
description = "snowtify send your result of `stack build` (`stack test`) to notify-daemon :dog2:";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"soap" = callPackage
@@ -178468,24 +175931,6 @@ self: {
}) {};
"sox" = callPackage
- ({ mkDerivation, base, containers, explicit-exception
- , extensible-exceptions, process, sample-frame, transformers, unix
- , utility-ht
- }:
- mkDerivation {
- pname = "sox";
- version = "0.2.2.6";
- sha256 = "04pvz62r7dafiabvq18lmyl64s8n0lb7mb0l9mqpzg379phqdx6l";
- libraryHaskellDepends = [
- base containers explicit-exception extensible-exceptions process
- sample-frame transformers unix utility-ht
- ];
- homepage = "http://www.haskell.org/haskellwiki/Sox";
- description = "Play, write, read, convert audio signals using Sox";
- license = "GPL";
- }) {};
-
- "sox_0_2_2_7" = callPackage
({ mkDerivation, base, containers, explicit-exception
, extensible-exceptions, process, sample-frame, transformers, unix
, utility-ht
@@ -178501,7 +175946,6 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Sox";
description = "Play, write, read, convert audio signals using Sox";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"soxlib" = callPackage
@@ -178679,6 +176123,33 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "sparkle_0_6" = callPackage
+ ({ mkDerivation, base, binary, bytestring, Cabal, choice
+ , distributed-closure, filepath, inline-java, jni, jvm
+ , jvm-streaming, process, regex-tdfa, singletons, streaming, text
+ , vector, zip-archive
+ }:
+ mkDerivation {
+ pname = "sparkle";
+ version = "0.6";
+ sha256 = "11i0bk9yl8ba84xm2hfxlnspygfafdannafg42iqfg1q6f8h2y7w";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ setupHaskellDepends = [ base Cabal inline-java ];
+ libraryHaskellDepends = [
+ base binary bytestring choice distributed-closure inline-java jni
+ jvm jvm-streaming singletons streaming text vector
+ ];
+ executableHaskellDepends = [
+ base bytestring filepath process regex-tdfa text zip-archive
+ ];
+ homepage = "http://github.com/tweag/sparkle#readme";
+ description = "Distributed Apache Spark applications in Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"sparse" = callPackage
({ mkDerivation, array, base, bytestring, containers, contravariant
, criterion, deepseq, directory, doctest, filepath, hlint
@@ -178937,11 +176408,11 @@ self: {
({ mkDerivation, base, cmdargs, containers, leancheck }:
mkDerivation {
pname = "speculate";
- version = "0.2.7";
- sha256 = "0n5lrwlagb6clj3sarmdzy43n9dyfj6rz1rnyj8d63s57fk7jpl5";
+ version = "0.2.8";
+ sha256 = "1xv3pciz0badd4wbijw8zmiwr656gjimv7lxccggm2q3nsqnq9gz";
libraryHaskellDepends = [ base cmdargs containers leancheck ];
- testHaskellDepends = [ base cmdargs containers leancheck ];
- benchmarkHaskellDepends = [ base cmdargs containers leancheck ];
+ testHaskellDepends = [ base leancheck ];
+ benchmarkHaskellDepends = [ base leancheck ];
homepage = "https://github.com/rudymatela/speculate#readme";
description = "discovery of properties about Haskell functions";
license = stdenv.lib.licenses.bsd3;
@@ -179628,7 +177099,7 @@ self: {
test-framework-hunit test-framework-quickcheck2 time unix
];
homepage = "https://bitbucket.org/ssaasen/spy";
- description = "A compact file system watcher for macOS, Linux and Windows";
+ description = "A compact file system watcher for Mac OS X, Linux and Windows";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -180996,24 +178467,6 @@ self: {
}) {};
"stateWriter" = callPackage
- ({ mkDerivation, base, containers, criterion, deepseq, dlist, free
- , hspec, lens, mtl, QuickCheck, transformers, vector
- }:
- mkDerivation {
- pname = "stateWriter";
- version = "0.2.8";
- sha256 = "1qn6rj13cn71bmradmy0frmlz1s925ssp233qnr53dshqfg21vfv";
- libraryHaskellDepends = [ base mtl transformers ];
- testHaskellDepends = [ base free hspec mtl QuickCheck ];
- benchmarkHaskellDepends = [
- base containers criterion deepseq dlist lens mtl transformers
- vector
- ];
- description = "A faster variant of the RWS monad transformers";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "stateWriter_0_2_8_2" = callPackage
({ mkDerivation, base, containers, criterion, deepseq, dlist, free
, hspec, lens, mtl, QuickCheck, transformers, vector
}:
@@ -181029,7 +178482,6 @@ self: {
];
description = "A faster variant of the RWS monad transformers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"statechart" = callPackage
@@ -181697,34 +179149,6 @@ self: {
}) {};
"stm-containers" = callPackage
- ({ mkDerivation, async, base, base-prelude, containers, criterion
- , focus, free, hashable, hashtables, HTF, list-t, loch-th, mtl
- , mtl-prelude, mwc-random, mwc-random-monad, placeholders
- , primitive, QuickCheck, text, transformers, unordered-containers
- }:
- mkDerivation {
- pname = "stm-containers";
- version = "0.2.15";
- sha256 = "1q5jsrmvmqlw6xjh6gj94qz1l0a37iybcqx42v17a50kpsy86925";
- libraryHaskellDepends = [
- base base-prelude focus hashable list-t primitive transformers
- ];
- testHaskellDepends = [
- base base-prelude focus free hashable HTF list-t loch-th mtl
- mtl-prelude placeholders primitive QuickCheck transformers
- unordered-containers
- ];
- benchmarkHaskellDepends = [
- async base base-prelude containers criterion focus free hashable
- hashtables list-t loch-th mtl mtl-prelude mwc-random
- mwc-random-monad placeholders text unordered-containers
- ];
- homepage = "https://github.com/nikita-volkov/stm-containers";
- description = "Containers for STM";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "stm-containers_0_2_16" = callPackage
({ mkDerivation, async, base, base-prelude, containers, criterion
, focus, free, hashable, hashtables, HTF, list-t, loch-th, mtl
, mtl-prelude, mwc-random, mwc-random-monad, placeholders
@@ -181751,7 +179175,6 @@ self: {
homepage = "https://github.com/nikita-volkov/stm-containers";
description = "Containers for STM";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stm-delay" = callPackage
@@ -182121,28 +179544,6 @@ self: {
}) {};
"storablevector" = callPackage
- ({ mkDerivation, base, bytestring, deepseq, non-negative
- , QuickCheck, random, sample-frame, syb, transformers, unsafe
- , utility-ht
- }:
- mkDerivation {
- pname = "storablevector";
- version = "0.2.12";
- sha256 = "19p8yz7amvf9sd3kgx2hhh6nifkbjxj43s6i1279qq1v46x9wznb";
- libraryHaskellDepends = [
- base deepseq non-negative QuickCheck syb transformers unsafe
- utility-ht
- ];
- testHaskellDepends = [
- base bytestring QuickCheck random utility-ht
- ];
- benchmarkHaskellDepends = [ base deepseq sample-frame utility-ht ];
- homepage = "http://www.haskell.org/haskellwiki/Storable_Vector";
- description = "Fast, packed, strict storable arrays with a list interface like ByteString";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "storablevector_0_2_12_1" = callPackage
({ mkDerivation, base, bytestring, deepseq, non-negative
, QuickCheck, random, sample-frame, syb, transformers, unsafe
, utility-ht
@@ -182164,7 +179565,6 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Storable_Vector";
description = "Fast, packed, strict storable arrays with a list interface like ByteString";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"storablevector-carray" = callPackage
@@ -183462,25 +180862,6 @@ self: {
}) {};
"strive" = callPackage
- ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline
- , http-client, http-client-tls, http-types, markdown-unlit
- , template-haskell, text, time, transformers
- }:
- mkDerivation {
- pname = "strive";
- version = "3.0.3";
- sha256 = "0g98wsc1afjjlw0sjhnsjd4xv8akid1xr4gc16jcdy9wfv32rb4m";
- libraryHaskellDepends = [
- aeson base bytestring data-default gpolyline http-client
- http-client-tls http-types template-haskell text time transformers
- ];
- testHaskellDepends = [ base bytestring markdown-unlit time ];
- homepage = "https://github.com/tfausak/strive#readme";
- description = "A client for the Strava V3 API";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "strive_3_0_4" = callPackage
({ mkDerivation, aeson, base, bytestring, data-default, gpolyline
, http-client, http-client-tls, http-types, markdown-unlit
, template-haskell, text, time, transformers
@@ -183497,7 +180878,6 @@ self: {
homepage = "https://github.com/tfausak/strive#readme";
description = "A client for the Strava V3 API";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"strptime" = callPackage
@@ -184012,19 +181392,6 @@ self: {
}) {};
"sum-type-boilerplate" = callPackage
- ({ mkDerivation, base, hlint, hspec, HUnit, template-haskell }:
- mkDerivation {
- pname = "sum-type-boilerplate";
- version = "0.1.0";
- sha256 = "1nibnrnj35sdi6jywjlg5f41138a22q2vg7hn0vqczynzswjb5y8";
- libraryHaskellDepends = [ base template-haskell ];
- testHaskellDepends = [ base hlint hspec HUnit template-haskell ];
- homepage = "https://github.com/jdreaver/sum-type-boilerplate#readme";
- description = "Library for reducing the boilerplate involved with sum types";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "sum-type-boilerplate_0_1_1" = callPackage
({ mkDerivation, base, hspec, template-haskell }:
mkDerivation {
pname = "sum-type-boilerplate";
@@ -184035,7 +181402,6 @@ self: {
homepage = "https://github.com/jdreaver/sum-type-boilerplate#readme";
description = "Library for reducing the boilerplate involved with sum types";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sump" = callPackage
@@ -184430,8 +181796,8 @@ self: {
}:
mkDerivation {
pname = "svg-tree";
- version = "0.6.1";
- sha256 = "0lap0il6bfdlv3yv71xh8sczg9jmfkbx25vbw5sjcgkxamaqrxcv";
+ version = "0.6.2";
+ sha256 = "1vrrjdid864s86dqs9a37s8jw7a4pb3ghfxii45dd9phwnd5vr1b";
libraryHaskellDepends = [
attoparsec base bytestring containers JuicyPixels lens linear mtl
scientific text transformers vector xml
@@ -185349,38 +182715,6 @@ self: {
}) {};
"synthesizer-core" = callPackage
- ({ mkDerivation, array, base, binary, bytestring, containers
- , deepseq, directory, event-list, explicit-exception, filepath
- , non-empty, non-negative, numeric-prelude, numeric-quest, old-time
- , process, QuickCheck, random, sample-frame-np, sox
- , storable-record, storable-tuple, storablevector, timeit
- , transformers, utility-ht
- }:
- mkDerivation {
- pname = "synthesizer-core";
- version = "0.8.1";
- sha256 = "1lhsg33xw1xb3smhr67gxdl6ap1azshyxqvy0p288p9i70hxqa79";
- libraryHaskellDepends = [
- array base binary bytestring containers deepseq event-list
- explicit-exception filepath non-empty non-negative numeric-prelude
- numeric-quest process QuickCheck random sample-frame-np sox
- storable-record storable-tuple storablevector transformers
- utility-ht
- ];
- testHaskellDepends = [
- base containers event-list non-empty non-negative numeric-prelude
- QuickCheck random storable-tuple storablevector utility-ht
- ];
- benchmarkHaskellDepends = [
- array base binary bytestring directory numeric-prelude old-time
- storable-tuple storablevector timeit utility-ht
- ];
- homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
- description = "Audio signal processing coded in Haskell: Low level part";
- license = "GPL";
- }) {};
-
- "synthesizer-core_0_8_1_1" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
, deepseq, directory, event-list, explicit-exception, filepath
, non-empty, non-negative, numeric-prelude, numeric-quest, old-time
@@ -185410,7 +182744,6 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Audio signal processing coded in Haskell: Low level part";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"synthesizer-dimensional" = callPackage
@@ -186307,17 +183640,6 @@ self: {
}) {};
"tagged-binary" = callPackage
- ({ mkDerivation, base, binary, bytestring, pureMD5 }:
- mkDerivation {
- pname = "tagged-binary";
- version = "0.2.0.0";
- sha256 = "0ibp4hmzg4c4dn88ws7x1j5wc6cbz3j2hymyaw2qkac3j4phzqrm";
- libraryHaskellDepends = [ base binary bytestring pureMD5 ];
- description = "Provides tools for serializing data tagged with type information";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "tagged-binary_0_2_0_1" = callPackage
({ mkDerivation, base, base-compat, binary, bytestring, pureMD5 }:
mkDerivation {
pname = "tagged-binary";
@@ -186328,7 +183650,6 @@ self: {
];
description = "Provides tools for serializing data tagged with type information";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tagged-exception-core" = callPackage
@@ -187081,15 +184402,15 @@ self: {
"tasty" = callPackage
({ mkDerivation, ansi-terminal, async, base, clock, containers
, deepseq, mtl, optparse-applicative, regex-tdfa, stm, tagged
- , unbounded-delays
+ , unbounded-delays, unix
}:
mkDerivation {
pname = "tasty";
- version = "0.11.2.3";
- sha256 = "0rsi8k3snw37nc196d59spmsp2xnmhbfbiqdb475qdg7a2i922k1";
+ version = "0.11.2.5";
+ sha256 = "09qg2ssack4y3vy5dppjpprvg7gss970a0nfv0rq2m87gw5r3i1h";
libraryHaskellDepends = [
ansi-terminal async base clock containers deepseq mtl
- optparse-applicative regex-tdfa stm tagged unbounded-delays
+ optparse-applicative regex-tdfa stm tagged unbounded-delays unix
];
homepage = "https://github.com/feuerbach/tasty";
description = "Modern and extensible testing framework";
@@ -187518,22 +184839,6 @@ self: {
}) {};
"tasty-stats" = callPackage
- ({ mkDerivation, base, containers, directory, process, stm, tagged
- , tasty, time
- }:
- mkDerivation {
- pname = "tasty-stats";
- version = "0.2.0.2";
- sha256 = "19f6ipaq0vkamg7c38jh4jy12migfichq1455n065kipisq1v1zn";
- libraryHaskellDepends = [
- base containers directory process stm tagged tasty time
- ];
- homepage = "https://github.com/minad/tasty-stats#readme";
- description = "Collect statistics of your Tasty testsuite in a CSV file";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "tasty-stats_0_2_0_3" = callPackage
({ mkDerivation, base, containers, directory, process, stm, tagged
, tasty, time
}:
@@ -187547,7 +184852,6 @@ self: {
homepage = "https://github.com/minad/tasty-stats#readme";
description = "Collect statistics of your Tasty testsuite in a CSV file";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tasty-tap" = callPackage
@@ -187680,6 +184984,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "tcod-haskell" = callPackage
+ ({ mkDerivation, base, bytestring, containers, inline-c, repa, sdl2
+ , tcod, vector
+ }:
+ mkDerivation {
+ pname = "tcod-haskell";
+ version = "0.2.0.0";
+ sha256 = "131qdd7h2890as35lfb3kx37j3vrz33ajxp5n4cl65rdrdk5vfxc";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers inline-c repa sdl2 vector
+ ];
+ librarySystemDepends = [ tcod ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/ncrashed/tcod-haskell#readme";
+ description = "Bindings to libtcod roguelike engine";
+ license = stdenv.lib.licenses.bsd3;
+ }) {tcod = null;};
+
"tconfig" = callPackage
({ mkDerivation, base, containers }:
mkDerivation {
@@ -188356,25 +185680,6 @@ self: {
}) {};
"temporary" = callPackage
- ({ mkDerivation, base, base-compat, directory, exceptions, filepath
- , tasty, tasty-hunit, transformers, unix
- }:
- mkDerivation {
- pname = "temporary";
- version = "1.2.1";
- sha256 = "1y54fx183sfmpd3xj94c74z9v42y1d7ski3jqrfrd7pnbh38ikwy";
- libraryHaskellDepends = [
- base directory exceptions filepath transformers unix
- ];
- testHaskellDepends = [
- base base-compat directory filepath tasty tasty-hunit unix
- ];
- homepage = "https://github.com/feuerbach/temporary";
- description = "Portable temporary file and directory support";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "temporary_1_2_1_1" = callPackage
({ mkDerivation, base, base-compat, directory, exceptions, filepath
, tasty, tasty-hunit, transformers, unix
}:
@@ -188391,7 +185696,6 @@ self: {
homepage = "https://github.com/feuerbach/temporary";
description = "Portable temporary file and directory support";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"temporary-rc" = callPackage
@@ -188871,27 +186175,6 @@ self: {
}) {};
"test-fixture" = callPackage
- ({ mkDerivation, base, data-default-class, haskell-src-exts
- , haskell-src-meta, hspec, hspec-discover, mtl, template-haskell
- , th-orphans, transformers
- }:
- mkDerivation {
- pname = "test-fixture";
- version = "0.5.0.1";
- sha256 = "0gnvz4paxr2wamdp01fnflhifbmsgxpmhg6l3a8nqmi32wgrwy6m";
- libraryHaskellDepends = [
- base data-default-class haskell-src-exts haskell-src-meta mtl
- template-haskell th-orphans
- ];
- testHaskellDepends = [
- base hspec hspec-discover mtl template-haskell transformers
- ];
- homepage = "http://github.com/cjdev/test-fixture#readme";
- description = "Test monadic side-effects";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "test-fixture_0_5_0_2" = callPackage
({ mkDerivation, base, data-default-class, haskell-src-exts
, haskell-src-meta, hspec, hspec-discover, mtl, template-haskell
, th-orphans, transformers
@@ -188910,7 +186193,6 @@ self: {
homepage = "http://github.com/cjdev/test-fixture#readme";
description = "Test monadic side-effects";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"test-framework" = callPackage
@@ -190500,21 +187782,6 @@ self: {
}) {};
"th-abstraction" = callPackage
- ({ mkDerivation, base, containers, ghc-prim, template-haskell }:
- mkDerivation {
- pname = "th-abstraction";
- version = "0.2.3.0";
- sha256 = "00yy303rrnx26z9aam33j8m1v0dq5wxk71901fbl50jm9mdg4jwm";
- libraryHaskellDepends = [
- base containers ghc-prim template-haskell
- ];
- testHaskellDepends = [ base containers template-haskell ];
- homepage = "https://github.com/glguy/th-abstraction";
- description = "Nicer interface for reified information about data types";
- license = stdenv.lib.licenses.isc;
- }) {};
-
- "th-abstraction_0_2_5_0" = callPackage
({ mkDerivation, base, containers, ghc-prim, template-haskell }:
mkDerivation {
pname = "th-abstraction";
@@ -190527,7 +187794,6 @@ self: {
homepage = "https://github.com/glguy/th-abstraction";
description = "Nicer interface for reified information about data types";
license = stdenv.lib.licenses.isc;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-alpha" = callPackage
@@ -190818,22 +188084,6 @@ self: {
}) {};
"th-orphans" = callPackage
- ({ mkDerivation, base, hspec, mtl, template-haskell, th-lift
- , th-lift-instances, th-reify-many
- }:
- mkDerivation {
- pname = "th-orphans";
- version = "0.13.3";
- sha256 = "0vf4g2pwhgh242512cssbzsgbpfrnn1fj5kv7qw4wx8cdnvdb03k";
- libraryHaskellDepends = [
- base mtl template-haskell th-lift th-lift-instances th-reify-many
- ];
- testHaskellDepends = [ base hspec template-haskell ];
- description = "Orphan instances for TH datatypes";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "th-orphans_0_13_4" = callPackage
({ mkDerivation, base, hspec, mtl, template-haskell, th-lift
, th-lift-instances, th-reify-many
}:
@@ -190847,7 +188097,6 @@ self: {
testHaskellDepends = [ base hspec template-haskell ];
description = "Orphan instances for TH datatypes";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-printf" = callPackage
@@ -190882,23 +188131,6 @@ self: {
}) {};
"th-reify-many" = callPackage
- ({ mkDerivation, base, containers, mtl, safe, template-haskell
- , th-expand-syns
- }:
- mkDerivation {
- pname = "th-reify-many";
- version = "0.1.7";
- sha256 = "1sa4gxkkv30h6g12cqss3qffmphcamfqmvnn69ix2w0wlsya81m8";
- libraryHaskellDepends = [
- base containers mtl safe template-haskell th-expand-syns
- ];
- testHaskellDepends = [ base template-haskell ];
- homepage = "http://github.com/mgsloan/th-reify-many";
- description = "Recurseively reify template haskell datatype info";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "th-reify-many_0_1_8" = callPackage
({ mkDerivation, base, containers, mtl, safe, template-haskell
, th-expand-syns
}:
@@ -190913,7 +188145,6 @@ self: {
homepage = "http://github.com/mgsloan/th-reify-many";
description = "Recurseively reify template haskell datatype info";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-sccs" = callPackage
@@ -190929,21 +188160,6 @@ self: {
}) {};
"th-to-exp" = callPackage
- ({ mkDerivation, base, hspec, template-haskell }:
- mkDerivation {
- pname = "th-to-exp";
- version = "0.0.1.0";
- sha256 = "0mmz37jlkzpw47gsjzfr182kiwwdwxdl19bpiw28m944m75ksa1h";
- revision = "1";
- editedCabalFile = "0lnknwrvaj8q2i68g09rakg8rdyi5860xia5p5jb2r1z0ggwbbwi";
- libraryHaskellDepends = [ base template-haskell ];
- testHaskellDepends = [ base hspec template-haskell ];
- homepage = "https://github.com/lexi-lambda/th-to-exp#readme";
- description = "Provides a way to persist data from compile-time to runtime";
- license = stdenv.lib.licenses.isc;
- }) {};
-
- "th-to-exp_0_0_1_1" = callPackage
({ mkDerivation, base, hspec, template-haskell }:
mkDerivation {
pname = "th-to-exp";
@@ -190954,7 +188170,6 @@ self: {
homepage = "https://github.com/lexi-lambda/th-to-exp#readme";
description = "Provides a way to persist data from compile-time to runtime";
license = stdenv.lib.licenses.isc;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-traced" = callPackage
@@ -191425,14 +188640,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "threepenny-editors_0_5_1" = callPackage
+ "threepenny-editors_0_5_2" = callPackage
({ mkDerivation, base, bifunctors, casing, containers, data-default
, generics-sop, lens, profunctors, threepenny-gui
}:
mkDerivation {
pname = "threepenny-editors";
- version = "0.5.1";
- sha256 = "07vg5xzrw7ll5kvbgi2masgbzicp0gfvzm7yrxhdkchdrlkrp1cv";
+ version = "0.5.2";
+ sha256 = "131gczj4nwcip1m2pry8h340mivpm4skydw0r8ir7mfr4pc6a1wj";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -191704,8 +188919,8 @@ self: {
}:
mkDerivation {
pname = "tibetan-utils";
- version = "0.1.1.3";
- sha256 = "0jd6w07sks4v9x7m77dz3r59ri2vsmmbv82yi457bn9szdy0jz2x";
+ version = "0.1.1.4";
+ sha256 = "0xr31py60q915a8qg590c55mjprf7w5w4cdlcjg1gz6wqq9kdjam";
libraryHaskellDepends = [
base composition either megaparsec text text-show
];
@@ -194255,34 +191470,13 @@ self: {
}) {};
"transient" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory, mtl
- , random, stm, time, transformers
- }:
- mkDerivation {
- pname = "transient";
- version = "0.5.8";
- sha256 = "04n43yddamgk7han7kmhz57v2vrp3cazqkgy4xnkdfgr10z8pppx";
- libraryHaskellDepends = [
- base bytestring containers directory mtl random stm time
- transformers
- ];
- testHaskellDepends = [
- base bytestring containers directory mtl random stm time
- transformers
- ];
- homepage = "http://www.fpcomplete.com/user/agocorona";
- description = "composing programs with multithreading, events and distributed computing";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "transient_0_5_9_1" = callPackage
({ mkDerivation, atomic-primops, base, bytestring, containers
, directory, mtl, random, stm, time, transformers
}:
mkDerivation {
pname = "transient";
- version = "0.5.9.1";
- sha256 = "0dvv03lshvwvfjv9p54jbcihz8w96k33772msx03qqdnr8n9iql7";
+ version = "0.5.9.2";
+ sha256 = "0ij3ycc1zln9vnjp66d5mxsgwpzmfswbz018ci6w8m885zdf9dr2";
libraryHaskellDepends = [
atomic-primops base bytestring containers directory mtl random stm
time transformers
@@ -194294,7 +191488,6 @@ self: {
homepage = "http://www.fpcomplete.com/user/agocorona";
description = "composing programs with multithreading, events and distributed computing";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"transient-universe" = callPackage
@@ -194305,8 +191498,8 @@ self: {
}:
mkDerivation {
pname = "transient-universe";
- version = "0.4.6";
- sha256 = "0as7930b9mwy86rcly957q9yslqd2rflakmxnl1njnqm2cr2dx7m";
+ version = "0.4.6.1";
+ sha256 = "1bsx6a0bkys99xwrz78nnd1f8y2ixzcbng0smh1kb6xrac8b1jin";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -194777,6 +191970,8 @@ self: {
pname = "trifecta";
version = "1.6.2.1";
sha256 = "1rgv62dlmm4vkdymx5rw5jg3w8ifpzg1745rvs1m4kzdx16p5cxs";
+ revision = "1";
+ editedCabalFile = "0qy2nqxn2h20fp9gf5chvgimb2281pjwm075ap7ar7pk2k4n8ljr";
libraryHaskellDepends = [
ansi-terminal ansi-wl-pprint array base blaze-builder blaze-html
blaze-markup bytestring charset comonad containers deepseq
@@ -195596,8 +192791,8 @@ self: {
}:
mkDerivation {
pname = "tweet-hs";
- version = "1.0.1.1";
- sha256 = "1vcwyhwvh3xfm8n2xlic12in6ybkq11nsafqv0fhbdzhscxgqhqs";
+ version = "1.0.1.2";
+ sha256 = "0rzkb2mv19jafswc3cww7zp1flbz87pyn4mkw16sf3gjar2k9h8l";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -195900,8 +193095,8 @@ self: {
}:
mkDerivation {
pname = "twiml";
- version = "0.2.0.0";
- sha256 = "12vavc02rpdrgdcnbd1jzn9lllzx4fghczdrpjr2icn8bkrgkqi5";
+ version = "0.2.0.1";
+ sha256 = "1x4jhvz0590zlpy74yjwjxkrllk7yvpgf2srkisi10klmarsjygd";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base data-default deepseq lens network-uri parsec template-haskell
@@ -197157,34 +194352,6 @@ self: {
}) {};
"tz" = callPackage
- ({ mkDerivation, base, binary, bytestring, containers, criterion
- , data-default, deepseq, HUnit, lens, QuickCheck, template-haskell
- , test-framework, test-framework-hunit, test-framework-quickcheck2
- , test-framework-th, thyme, time, timezone-olson, timezone-series
- , tzdata, vector
- }:
- mkDerivation {
- pname = "tz";
- version = "0.1.2.1";
- sha256 = "14n44wbz2cjvzhv8zd6bddmbivxyw04xwd7p1jkm5d0v1jggb1yi";
- libraryHaskellDepends = [
- base binary bytestring containers data-default deepseq
- template-haskell time tzdata vector
- ];
- testHaskellDepends = [
- base HUnit QuickCheck test-framework test-framework-hunit
- test-framework-quickcheck2 test-framework-th time tzdata
- ];
- benchmarkHaskellDepends = [
- base criterion lens thyme time timezone-olson timezone-series
- ];
- preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo";
- homepage = "https://github.com/nilcons/haskell-tz";
- description = "Efficient time zone handling";
- license = stdenv.lib.licenses.asl20;
- }) {};
-
- "tz_0_1_3_0" = callPackage
({ mkDerivation, base, binary, bytestring, containers, criterion
, data-default, deepseq, HUnit, lens, QuickCheck, template-haskell
, test-framework, test-framework-hunit, test-framework-quickcheck2
@@ -197210,32 +194377,9 @@ self: {
homepage = "https://github.com/nilcons/haskell-tz";
description = "Efficient time zone handling";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tzdata" = callPackage
- ({ mkDerivation, base, bytestring, containers, deepseq, HUnit
- , test-framework, test-framework-hunit, test-framework-th, unix
- , vector
- }:
- mkDerivation {
- pname = "tzdata";
- version = "0.1.20161123.0";
- sha256 = "1dnc9m3396bxps84xgxfzrx928yh7vxd8pdim63a5xrydcfp16fb";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- base bytestring containers deepseq vector
- ];
- testHaskellDepends = [
- base bytestring HUnit test-framework test-framework-hunit
- test-framework-th unix
- ];
- homepage = "https://github.com/nilcons/haskell-tzdata";
- description = "Time zone database (as files and as a module)";
- license = stdenv.lib.licenses.asl20;
- }) {};
-
- "tzdata_0_1_20170320_0" = callPackage
({ mkDerivation, base, bytestring, containers, deepseq, HUnit
, test-framework, test-framework-hunit, test-framework-th, unix
, vector
@@ -197255,7 +194399,6 @@ self: {
homepage = "https://github.com/nilcons/haskell-tzdata";
description = "Time zone database (as files and as a module)";
license = stdenv.lib.licenses.asl20;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"u2f" = callPackage
@@ -198110,28 +195253,6 @@ self: {
}) {};
"unicode-transforms" = callPackage
- ({ mkDerivation, base, bitarray, bytestring, criterion, deepseq
- , filepath, getopt-generics, optparse-applicative, path, path-io
- , QuickCheck, split, text
- }:
- mkDerivation {
- pname = "unicode-transforms";
- version = "0.3.2";
- sha256 = "15v5c0gn10k5im0x3b04z3hilwgafx6sk61hxmp0p36l1zqa5ch0";
- libraryHaskellDepends = [ base bitarray bytestring text ];
- testHaskellDepends = [
- base deepseq getopt-generics QuickCheck split text
- ];
- benchmarkHaskellDepends = [
- base criterion deepseq filepath optparse-applicative path path-io
- text
- ];
- homepage = "http://github.com/harendra-kumar/unicode-transforms";
- description = "Unicode normalization";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "unicode-transforms_0_3_3" = callPackage
({ mkDerivation, base, bitarray, bytestring, criterion, deepseq
, filepath, getopt-generics, optparse-applicative, path, path-io
, QuickCheck, split, text
@@ -198151,7 +195272,6 @@ self: {
homepage = "http://github.com/harendra-kumar/unicode-transforms";
description = "Unicode normalization";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unicoder" = callPackage
@@ -198237,22 +195357,6 @@ self: {
}) {};
"union" = callPackage
- ({ mkDerivation, base, criterion, deepseq, lens, profunctors
- , tagged, vinyl
- }:
- mkDerivation {
- pname = "union";
- version = "0.1.1.1";
- sha256 = "1x24raarjj62z3afmf443kkcdslskz554sky8rcfkkb1j11mg7l1";
- revision = "2";
- editedCabalFile = "0wxjv55bbjknyfn9489s77b22r31qwab6v16687mfj24a1cliad8";
- libraryHaskellDepends = [ base deepseq profunctors tagged vinyl ];
- benchmarkHaskellDepends = [ base criterion deepseq lens ];
- description = "Extensible type-safe unions";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "union_0_1_1_2" = callPackage
({ mkDerivation, base, criterion, deepseq, lens, profunctors
, tagged, vinyl
}:
@@ -198266,7 +195370,6 @@ self: {
benchmarkHaskellDepends = [ base criterion deepseq lens ];
description = "Extensible type-safe unions";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"union-find" = callPackage
@@ -198480,23 +195583,6 @@ self: {
}) {};
"units-parser" = callPackage
- ({ mkDerivation, base, containers, mtl, multimap, parsec, syb
- , tasty, tasty-hunit, template-haskell
- }:
- mkDerivation {
- pname = "units-parser";
- version = "0.1.0.0";
- sha256 = "0ha1saapphk15xk10a36k5qmn01nqpz10f8gi35ra9zqlhv8amfq";
- libraryHaskellDepends = [ base containers mtl multimap parsec ];
- testHaskellDepends = [
- base containers mtl multimap parsec syb tasty tasty-hunit
- template-haskell
- ];
- description = "A parser for units of measure";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "units-parser_0_1_0_1" = callPackage
({ mkDerivation, base, containers, mtl, multimap, parsec, syb
, tasty, tasty-hunit, template-haskell
}:
@@ -198511,7 +195597,6 @@ self: {
];
description = "A parser for units of measure";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unittyped" = callPackage
@@ -198576,7 +195661,7 @@ self: {
sha256 = "1gnrq6s7pipjqfyispkxib3xfzii1ss6a9iwv07mvb5a93hc45cw";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base binary bytestring ];
- description = "Parser for macOS Universal Binary format";
+ description = "Parser for OS X Universal Binary format";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -199409,20 +196494,6 @@ self: {
}) {};
"uri-bytestring-aeson" = callPackage
- ({ mkDerivation, aeson, base, bytestring, text, uri-bytestring }:
- mkDerivation {
- pname = "uri-bytestring-aeson";
- version = "0.1.0.1";
- sha256 = "1zi5jl2ksjmvflfzff0hqy7a66ma6xifl2nycb1f6qd0fsrc6hpg";
- libraryHaskellDepends = [
- aeson base bytestring text uri-bytestring
- ];
- homepage = "https://github.com/reactormonk/uri-bytestring-aeson";
- description = "Aeson instances for URI Bytestring";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "uri-bytestring-aeson_0_1_0_2" = callPackage
({ mkDerivation, aeson, base, bytestring, text, uri-bytestring }:
mkDerivation {
pname = "uri-bytestring-aeson";
@@ -199434,7 +196505,6 @@ self: {
homepage = "https://github.com/reactormonk/uri-bytestring-aeson";
description = "Aeson instances for URI Bytestring";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"uri-conduit" = callPackage
@@ -200517,30 +197587,6 @@ self: {
}) {};
"vado" = callPackage
- ({ mkDerivation, attoparsec, base, directory, filepath, process
- , QuickCheck, text
- }:
- mkDerivation {
- pname = "vado";
- version = "0.0.8";
- sha256 = "0mn2mhjnwkmzpb9d7qc5bb8qp22gdmrhwb7d7gf8mh07p1i5025v";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- attoparsec base directory filepath process text
- ];
- executableHaskellDepends = [
- attoparsec base directory filepath process text
- ];
- testHaskellDepends = [
- attoparsec base directory filepath process QuickCheck text
- ];
- homepage = "https://github.com/hamishmack/vado";
- description = "Runs commands on remote machines using ssh";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "vado_0_0_9" = callPackage
({ mkDerivation, attoparsec, base, directory, filepath, process
, QuickCheck, text
}:
@@ -200562,7 +197608,6 @@ self: {
homepage = "https://github.com/hamishmack/vado";
description = "Runs commands on remote machines using ssh";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"valid-names" = callPackage
@@ -201157,8 +198202,8 @@ self: {
}:
mkDerivation {
pname = "vcsgui";
- version = "0.2.1.2";
- sha256 = "1qf5insiqgl3p9bg6m1igl24lghzbb3y50acwxgcpbcbdcaw13z5";
+ version = "0.2.2.0";
+ sha256 = "0s7vmlbggmwaj6mlhmj1vkri6af16xpsanwyr2jip5hdpn8gpjv2";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -201181,8 +198226,8 @@ self: {
}:
mkDerivation {
pname = "vcswrapper";
- version = "0.1.5";
- sha256 = "0yzin613nzvnklkb3j29vzy4rfladb3cy3sy6ic0mi6lxhilan2n";
+ version = "0.1.6";
+ sha256 = "0givnl1716ymjz5a5n4wdy61hg8zhfxb66vx9bzkziavzni2dfif";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -201929,25 +198974,6 @@ self: {
}) {};
"viewprof" = callPackage
- ({ mkDerivation, base, brick, containers, ghc-prof, lens
- , scientific, text, vector, vector-algorithms, vty
- }:
- mkDerivation {
- pname = "viewprof";
- version = "0.0.0.6";
- sha256 = "0a9jbfa2sr3rvpp51kd9c3b9rax7b6wly4ly4dmn5k3z8fr0z31l";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- base brick containers ghc-prof lens scientific text vector
- vector-algorithms vty
- ];
- homepage = "https://github.com/maoe/viewprof";
- description = "Text-based interactive GHC .prof viewer";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "viewprof_0_0_0_8" = callPackage
({ mkDerivation, base, brick, containers, ghc-prof, lens
, scientific, text, vector, vector-algorithms, vty
}:
@@ -201964,7 +198990,6 @@ self: {
homepage = "https://github.com/maoe/viewprof";
description = "Text-based interactive GHC .prof viewer";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"views" = callPackage
@@ -205049,23 +202074,6 @@ self: {
}) {};
"web-routes-th" = callPackage
- ({ mkDerivation, base, hspec, HUnit, parsec, QuickCheck, split
- , template-haskell, text, web-routes
- }:
- mkDerivation {
- pname = "web-routes-th";
- version = "0.22.6.1";
- sha256 = "1li1mb6h14gw2lr2fvv7cc6ykqh5l5zx0k956fasc8h9w2xlg6r4";
- libraryHaskellDepends = [
- base parsec split template-haskell text web-routes
- ];
- testHaskellDepends = [ base hspec HUnit QuickCheck web-routes ];
- homepage = "https://github.com/happstack/web-routes-th";
- description = "Support for deriving PathInfo using Template Haskell";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "web-routes-th_0_22_6_2" = callPackage
({ mkDerivation, base, hspec, HUnit, parsec, QuickCheck, split
, template-haskell, text, web-routes
}:
@@ -205080,7 +202088,6 @@ self: {
homepage = "https://github.com/happstack/web-routes-th";
description = "Support for deriving PathInfo using Template Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"web-routes-transformers" = callPackage
@@ -205802,25 +202809,6 @@ self: {
}) {};
"weeder" = callPackage
- ({ mkDerivation, aeson, base, bytestring, cmdargs, extra, filepath
- , hashable, process, text, unordered-containers, vector, yaml
- }:
- mkDerivation {
- pname = "weeder";
- version = "0.1.6";
- sha256 = "1ss78jqiygypr8j4n2nj9b5dhxly6gmnf5qlil4cj8kb0pzr1q7b";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- aeson base bytestring cmdargs extra filepath hashable process text
- unordered-containers vector yaml
- ];
- homepage = "https://github.com/ndmitchell/weeder#readme";
- description = "Detect dead code";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "weeder_0_1_7" = callPackage
({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq
, directory, extra, filepath, foundation, hashable, process, text
, unordered-containers, vector, yaml
@@ -205838,30 +202826,9 @@ self: {
homepage = "https://github.com/ndmitchell/weeder#readme";
description = "Detect dead code";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"weigh" = callPackage
- ({ mkDerivation, base, bytestring-trie, containers, deepseq, mtl
- , process, random, split, template-haskell, temporary
- , unordered-containers
- }:
- mkDerivation {
- pname = "weigh";
- version = "0.0.4";
- sha256 = "1qzc3h3a8z4wmv2mgmaq6k971xiiyp58qr36i7j1nh5187ihqdib";
- libraryHaskellDepends = [
- base deepseq mtl process split template-haskell temporary
- ];
- testHaskellDepends = [
- base bytestring-trie containers deepseq random unordered-containers
- ];
- homepage = "https://github.com/fpco/weigh#readme";
- description = "Measure allocations of a Haskell functions/values";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "weigh_0_0_5" = callPackage
({ mkDerivation, base, bytestring-trie, containers, deepseq, mtl
, process, random, split, template-haskell, temporary
, unordered-containers
@@ -205879,7 +202846,6 @@ self: {
homepage = "https://github.com/fpco/weigh#readme";
description = "Measure allocations of a Haskell functions/values";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"weighted" = callPackage
@@ -206437,23 +203403,6 @@ self: {
}) {};
"withdependencies" = callPackage
- ({ mkDerivation, base, conduit, containers, hspec, HUnit, mtl
- , profunctors
- }:
- mkDerivation {
- pname = "withdependencies";
- version = "0.2.4";
- sha256 = "0zr6zqkhflgynfhsc6wqly35psxw97nrna7pmc2141p5zk4dsgm1";
- libraryHaskellDepends = [
- base conduit containers mtl profunctors
- ];
- testHaskellDepends = [ base conduit hspec HUnit mtl ];
- homepage = "https://github.com/bartavelle/withdependencies";
- description = "Run computations that depend on one or more elements in a stream";
- license = stdenv.lib.licenses.gpl3;
- }) {};
-
- "withdependencies_0_2_4_1" = callPackage
({ mkDerivation, base, conduit, containers, hspec, HUnit, mtl
, profunctors
}:
@@ -206468,7 +203417,6 @@ self: {
homepage = "https://github.com/bartavelle/withdependencies";
description = "Run computations that depend on one or more elements in a stream";
license = stdenv.lib.licenses.gpl3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"witherable" = callPackage
@@ -206850,19 +203798,6 @@ self: {
}) {};
"word8" = callPackage
- ({ mkDerivation, base, bytestring, criterion, hspec }:
- mkDerivation {
- pname = "word8";
- version = "0.1.2";
- sha256 = "1pbn8ra3qhwvw07p375cdmp7jzlg07hgdcr4cpscz3h7b9sy7fiw";
- libraryHaskellDepends = [ base ];
- testHaskellDepends = [ base hspec ];
- benchmarkHaskellDepends = [ base bytestring criterion ];
- description = "Word8 library";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "word8_0_1_3" = callPackage
({ mkDerivation, base, bytestring, criterion, hspec }:
mkDerivation {
pname = "word8";
@@ -206873,7 +203808,6 @@ self: {
benchmarkHaskellDepends = [ base bytestring criterion ];
description = "Word8 library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wordchoice" = callPackage
@@ -206883,8 +203817,8 @@ self: {
}:
mkDerivation {
pname = "wordchoice";
- version = "0.1.1.0";
- sha256 = "1san5jgb2nc0shjk38jxgnqdj0mq248gqsn9zc1ldhai1qqy490h";
+ version = "0.1.1.1";
+ sha256 = "1n1frb1c3fv808sb5w7j8gv86pva7fryq6f3j2c7z1p32v9xcnza";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -207177,44 +204111,45 @@ self: {
"wrecker" = callPackage
({ mkDerivation, aeson, aeson-qq, ansi-terminal, ansigraph, array
- , base, base64-bytestring, blaze-builder, bytestring
- , case-insensitive, clock, clock-extras, connection, containers
- , cookie, cryptonite, data-default, data-default-class, deepseq
- , exceptions, filepath, hspec, hspec-discover, http-client
- , http-types, immortal, lens, markdown-unlit, memory, mime-types
- , network, network-uri, next-ref, optparse-applicative, random
- , scotty, statistics, stm, stm-chans, streaming-commons, tabular
- , text, threads, threads-extras, time, tls, transformers
- , unagi-chan, unix, unordered-containers, vector, vty, wai, warp
- , wreq
+ , authenticate-oauth, base, base64-bytestring, blaze-builder
+ , bytestring, case-insensitive, clock, clock-extras, connection
+ , containers, cookie, cryptonite, data-default, data-default-class
+ , deepseq, exceptions, filepath, hspec, hspec-discover, http-client
+ , http-client-tls, http-types, immortal, lens, markdown-unlit
+ , memory, mime-types, network, network-uri, next-ref
+ , optparse-applicative, random, scotty, statistics, stm, stm-chans
+ , streaming-commons, tabular, tdigest, text, threads
+ , threads-extras, time, tls, transformers, unagi-chan, unix
+ , unordered-containers, vector, vty, wai, warp, wreq
}:
mkDerivation {
pname = "wrecker";
- version = "0.1.3.3";
- sha256 = "1bg4f0i74r82a21dv13ir3j05czkld4lcrvz4ib55lb5jsngqsdy";
+ version = "1.0.0.2";
+ sha256 = "0ydmwxixgxryiq4nf4lxds30zmx4hhhm1w6fyk4h1hva01vrybr8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson ansi-terminal ansigraph array base base64-bytestring
- blaze-builder bytestring case-insensitive clock clock-extras
- connection containers cookie cryptonite data-default
+ aeson ansi-terminal ansigraph array authenticate-oauth base
+ base64-bytestring blaze-builder bytestring case-insensitive clock
+ clock-extras connection containers cookie cryptonite data-default
data-default-class deepseq exceptions filepath http-client
- http-types immortal memory mime-types network network-uri next-ref
- optparse-applicative random statistics stm stm-chans
- streaming-commons tabular text threads threads-extras time tls
- transformers unagi-chan unix unordered-containers vector vty wreq
+ http-client-tls http-types immortal memory mime-types network
+ network-uri next-ref optparse-applicative random statistics stm
+ stm-chans streaming-commons tabular tdigest text threads
+ threads-extras time tls transformers unagi-chan unix
+ unordered-containers vector vty wreq
];
executableHaskellDepends = [
- aeson aeson-qq base bytestring connection http-client immortal lens
- markdown-unlit network next-ref optparse-applicative scotty text
- transformers wai warp wreq
+ aeson aeson-qq base bytestring connection http-client
+ http-client-tls immortal lens markdown-unlit network next-ref
+ optparse-applicative scotty text transformers wai warp wreq
];
testHaskellDepends = [
aeson aeson-qq base bytestring connection hspec hspec-discover
http-client immortal markdown-unlit network next-ref scotty text
transformers unordered-containers wai warp wreq
];
- homepage = "https://github.com/skedgeme/wrecker#readme";
+ homepage = "https://github.com/lorenzo/wrecker#readme";
description = "An HTTP Performance Benchmarker";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -207752,6 +204687,8 @@ self: {
pname = "wxc";
version = "0.92.3.0";
sha256 = "0i7z4avy57qzrykz3kddfn313zddp3lnyl9a0krx5f2k3b2pz8i8";
+ revision = "1";
+ editedCabalFile = "1cgq577ddskmp1xdlnlz0581r8hsqblgxc7wy0avb7sgf181cbd4";
setupHaskellDepends = [
base bytestring Cabal directory filepath process split
];
@@ -207926,30 +204863,6 @@ self: {
}) {inherit (pkgs.xorg) libXi;};
"x509" = callPackage
- ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base
- , bytestring, containers, cryptonite, hourglass, memory, mtl, pem
- , tasty, tasty-quickcheck
- }:
- mkDerivation {
- pname = "x509";
- version = "1.7.1";
- sha256 = "0rz4z1gna5pqhvicsvfgvf7lk2f924hqvkzjapq4727gq6q6crgr";
- revision = "1";
- editedCabalFile = "0hmq9gb6c2cid7kpblxax631mcqxj3p2j8br4n1fqn1jdp832y8v";
- libraryHaskellDepends = [
- asn1-encoding asn1-parse asn1-types base bytestring containers
- cryptonite hourglass memory mtl pem
- ];
- testHaskellDepends = [
- asn1-types base bytestring cryptonite hourglass mtl tasty
- tasty-quickcheck
- ];
- homepage = "http://github.com/vincenthz/hs-certificate";
- description = "X509 reader and writer";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "x509_1_7_2" = callPackage
({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base
, bytestring, containers, cryptonite, hourglass, memory, mtl, pem
, tasty, tasty-quickcheck
@@ -207971,27 +204884,9 @@ self: {
homepage = "http://github.com/vincenthz/hs-certificate";
description = "X509 reader and writer";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"x509-store" = callPackage
- ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring
- , containers, cryptonite, directory, filepath, mtl, pem, x509
- }:
- mkDerivation {
- pname = "x509-store";
- version = "1.6.3";
- sha256 = "09adqiwhl85f2kj77v08dgqzizs4cf0ks01q5q793c39wfacy2fp";
- libraryHaskellDepends = [
- asn1-encoding asn1-types base bytestring containers cryptonite
- directory filepath mtl pem x509
- ];
- homepage = "http://github.com/vincenthz/hs-certificate";
- description = "X.509 collection accessing and storing methods";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "x509-store_1_6_5" = callPackage
({ mkDerivation, asn1-encoding, asn1-types, base, bytestring
, containers, cryptonite, directory, filepath, mtl, pem, tasty
, tasty-hunit, x509
@@ -208008,27 +204903,9 @@ self: {
homepage = "http://github.com/vincenthz/hs-certificate";
description = "X.509 collection accessing and storing methods";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"x509-system" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory, filepath
- , mtl, pem, process, x509, x509-store
- }:
- mkDerivation {
- pname = "x509-system";
- version = "1.6.5";
- sha256 = "0vrw8a63lh8d5nr4qc9ch97ng1r54n2ppnh7g1cnhrgnkbgkp1fa";
- libraryHaskellDepends = [
- base bytestring containers directory filepath mtl pem process x509
- x509-store
- ];
- homepage = "http://github.com/vincenthz/hs-certificate";
- description = "Handle per-operating-system X.509 accessors and storage";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "x509-system_1_6_6" = callPackage
({ mkDerivation, base, bytestring, containers, directory, filepath
, mtl, pem, process, x509, x509-store
}:
@@ -208043,7 +204920,6 @@ self: {
homepage = "http://github.com/vincenthz/hs-certificate";
description = "Handle per-operating-system X.509 accessors and storage";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"x509-util" = callPackage
@@ -208068,29 +204944,6 @@ self: {
}) {};
"x509-validation" = callPackage
- ({ mkDerivation, asn1-encoding, asn1-types, base, byteable
- , bytestring, containers, cryptonite, data-default-class, hourglass
- , memory, mtl, pem, tasty, tasty-hunit, x509, x509-store
- }:
- mkDerivation {
- pname = "x509-validation";
- version = "1.6.8";
- sha256 = "19ym8lj5r36f1fiq4x1f2pwxv4jplb3pwzy6hgfzva5s1vvyhj3s";
- libraryHaskellDepends = [
- asn1-encoding asn1-types base byteable bytestring containers
- cryptonite data-default-class hourglass memory mtl pem x509
- x509-store
- ];
- testHaskellDepends = [
- asn1-encoding asn1-types base bytestring cryptonite
- data-default-class hourglass tasty tasty-hunit x509 x509-store
- ];
- homepage = "http://github.com/vincenthz/hs-certificate";
- description = "X.509 Certificate and CRL validation";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "x509-validation_1_6_9" = callPackage
({ mkDerivation, asn1-encoding, asn1-types, base, byteable
, bytestring, containers, cryptonite, data-default-class, hourglass
, memory, mtl, pem, tasty, tasty-hunit, x509, x509-store
@@ -208113,7 +204966,6 @@ self: {
homepage = "http://github.com/vincenthz/hs-certificate";
description = "X.509 Certificate and CRL validation";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"x86-64bit" = callPackage
@@ -208782,6 +205634,31 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "xml-conduit_1_6_0" = callPackage
+ ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html
+ , blaze-markup, bytestring, conduit, conduit-extra, containers
+ , data-default-class, deepseq, hspec, HUnit, monad-control
+ , resourcet, text, transformers, xml-types
+ }:
+ mkDerivation {
+ pname = "xml-conduit";
+ version = "1.6.0";
+ sha256 = "042cq7i988jxfwayndzpk2mygfs73709xmzi875imhmar10nv914";
+ libraryHaskellDepends = [
+ attoparsec base blaze-builder blaze-html blaze-markup bytestring
+ conduit conduit-extra containers data-default-class deepseq
+ monad-control resourcet text transformers xml-types
+ ];
+ testHaskellDepends = [
+ base blaze-markup bytestring conduit containers hspec HUnit
+ resourcet text transformers xml-types
+ ];
+ homepage = "http://github.com/snoyberg/xml";
+ description = "Pure-Haskell utilities for dealing with XML with the conduit package";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"xml-conduit-decode" = callPackage
({ mkDerivation, base, bifunctors, data-default, lens, semigroups
, tasty, tasty-hunit, text, time, xml-conduit, xml-types
@@ -209351,20 +206228,20 @@ self: {
"xmlhtml" = callPackage
({ mkDerivation, base, blaze-builder, blaze-html, blaze-markup
- , bytestring, containers, directory, HUnit, parsec, test-framework
- , test-framework-hunit, text, unordered-containers
+ , bytestring, bytestring-builder, containers, directory, hspec
+ , HUnit, parsec, text, unordered-containers
}:
mkDerivation {
pname = "xmlhtml";
- version = "0.2.4";
- sha256 = "172kwkgpghmda42dj5ppfbdj2m5kh692rlim2hy2x00hzrs06440";
+ version = "0.2.5";
+ sha256 = "0760gankqpb9ljh5plj8kzfpixh4lq02p8d4h1j0bb6vhxg107df";
libraryHaskellDepends = [
- base blaze-builder blaze-html blaze-markup bytestring containers
- parsec text unordered-containers
+ base blaze-builder blaze-html blaze-markup bytestring
+ bytestring-builder containers parsec text unordered-containers
];
testHaskellDepends = [
- base blaze-builder blaze-html blaze-markup bytestring directory
- HUnit test-framework test-framework-hunit text
+ base blaze-builder blaze-html blaze-markup bytestring
+ bytestring-builder directory hspec HUnit text
];
homepage = "https://github.com/snapframework/xmlhtml";
description = "XML parser and renderer with HTML 5 quirks mode";
@@ -209644,17 +206521,18 @@ self: {
}) {};
"xmonad-vanessa" = callPackage
- ({ mkDerivation, base, containers, hspec, process, transformers
- , X11, xmonad, xmonad-contrib
+ ({ mkDerivation, base, composition, containers, hspec, process
+ , transformers, X11, xmonad, xmonad-contrib
}:
mkDerivation {
pname = "xmonad-vanessa";
- version = "0.1.1.2";
- sha256 = "065kcsr7s114sw8g8hdl2i5w0543r9f9ypirvh3bn38x2lv4f9ng";
+ version = "0.1.1.4";
+ sha256 = "1qbapbb72qa78n174x8y9q2zzb1g1bw6dgg260hxxzc7v9kb88xm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base containers process transformers X11 xmonad xmonad-contrib
+ base composition containers process transformers X11 xmonad
+ xmonad-contrib
];
executableHaskellDepends = [ base ];
testHaskellDepends = [ base hspec xmonad ];
@@ -210513,21 +207391,20 @@ self: {
}) {};
"yarn-lock" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, containers, megaparsec
- , protolude, tasty, tasty-hunit, tasty-th, text
+ ({ mkDerivation, ansi-wl-pprint, base, containers, either
+ , megaparsec, neat-interpolation, protolude, tasty, tasty-hunit
+ , tasty-quickcheck, tasty-th, text
}:
mkDerivation {
pname = "yarn-lock";
- version = "0.2.0";
- sha256 = "0jily4hrxbj487450amx6nayxpcm0giwrv0zn3mld906lqr2f990";
- revision = "1";
- editedCabalFile = "1ji64dab6wf59l9yi1czm81xgnx86qgvcawnxwa83wp1fa3flics";
+ version = "0.3.1";
+ sha256 = "0plsv7qhl43y85dwzybbik2fx1bm23lz8m5l1fyhd363v9f2df7x";
libraryHaskellDepends = [
- base containers megaparsec protolude text
+ base containers either megaparsec protolude text
];
testHaskellDepends = [
- ansi-wl-pprint base containers megaparsec protolude tasty
- tasty-hunit tasty-th text
+ ansi-wl-pprint base containers either megaparsec neat-interpolation
+ protolude tasty tasty-hunit tasty-quickcheck tasty-th text
];
homepage = "https://github.com/Profpatsch/yarn-lock#readme";
description = "Represent and parse yarn.lock files";
@@ -211183,40 +208060,6 @@ self: {
}) {};
"yesod-bin" = callPackage
- ({ mkDerivation, async, attoparsec, base, base64-bytestring
- , blaze-builder, bytestring, Cabal, conduit, conduit-extra
- , containers, data-default-class, deepseq, directory, file-embed
- , filepath, fsnotify, http-client, http-client-tls
- , http-reverse-proxy, http-types, lifted-base, network
- , optparse-applicative, parsec, process, project-template
- , resourcet, safe-exceptions, say, shakespeare, split, stm
- , streaming-commons, tar, template-haskell, text, time
- , transformers, transformers-compat, typed-process, unix-compat
- , unordered-containers, wai, wai-extra, warp, warp-tls, yaml, zlib
- }:
- mkDerivation {
- pname = "yesod-bin";
- version = "1.5.2.3";
- sha256 = "1xi3s79j14sa7wav8i1vpp14ry2jgkrbvich13yccd3qkmbw7azf";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- async attoparsec base base64-bytestring blaze-builder bytestring
- Cabal conduit conduit-extra containers data-default-class deepseq
- directory file-embed filepath fsnotify http-client http-client-tls
- http-reverse-proxy http-types lifted-base network
- optparse-applicative parsec process project-template resourcet
- safe-exceptions say shakespeare split stm streaming-commons tar
- template-haskell text time transformers transformers-compat
- typed-process unix-compat unordered-containers wai wai-extra warp
- warp-tls yaml zlib
- ];
- homepage = "http://www.yesodweb.com/";
- description = "The yesod helper executable";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "yesod-bin_1_5_2_5" = callPackage
({ mkDerivation, async, attoparsec, base, base64-bytestring
, blaze-builder, bytestring, Cabal, conduit, conduit-extra
, containers, data-default-class, deepseq, directory, file-embed
@@ -211248,7 +208091,6 @@ self: {
homepage = "http://www.yesodweb.com/";
description = "The yesod helper executable";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-bootstrap" = callPackage
@@ -211349,49 +208191,6 @@ self: {
}) {};
"yesod-core" = callPackage
- ({ mkDerivation, aeson, async, auto-update, base, blaze-builder
- , blaze-html, blaze-markup, byteable, bytestring, case-insensitive
- , cereal, clientsession, conduit, conduit-extra, containers, cookie
- , criterion, data-default, deepseq, deepseq-generics, directory
- , exceptions, fast-logger, hspec, hspec-expectations, http-types
- , HUnit, lifted-base, monad-control, monad-logger, mtl, mwc-random
- , network, old-locale, parsec, path-pieces, primitive, QuickCheck
- , random, resourcet, safe, semigroups, shakespeare
- , streaming-commons, template-haskell, text, time, transformers
- , transformers-base, unix-compat, unordered-containers, vector, wai
- , wai-extra, wai-logger, warp, word8
- }:
- mkDerivation {
- pname = "yesod-core";
- version = "1.4.35.1";
- sha256 = "0m91b4w3yixlsc9y07n0s8k4nzsqk8m8fz2gpxk1rhv6pp1k25cx";
- libraryHaskellDepends = [
- aeson auto-update base blaze-builder blaze-html blaze-markup
- byteable bytestring case-insensitive cereal clientsession conduit
- conduit-extra containers cookie data-default deepseq
- deepseq-generics directory exceptions fast-logger http-types
- lifted-base monad-control monad-logger mtl mwc-random old-locale
- parsec path-pieces primitive random resourcet safe semigroups
- shakespeare template-haskell text time transformers
- transformers-base unix-compat unordered-containers vector wai
- wai-extra wai-logger warp word8
- ];
- testHaskellDepends = [
- async base blaze-builder bytestring clientsession conduit
- conduit-extra containers cookie hspec hspec-expectations http-types
- HUnit lifted-base mwc-random network path-pieces QuickCheck random
- resourcet shakespeare streaming-commons template-haskell text
- transformers wai wai-extra
- ];
- benchmarkHaskellDepends = [
- base blaze-html bytestring criterion shakespeare text transformers
- ];
- homepage = "http://www.yesodweb.com/";
- description = "Creation of type-safe, RESTful web applications";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "yesod-core_1_4_36" = callPackage
({ mkDerivation, aeson, async, auto-update, base, blaze-builder
, blaze-html, blaze-markup, byteable, bytestring, case-insensitive
, cereal, clientsession, conduit, conduit-extra, containers, cookie
@@ -211432,7 +208231,6 @@ self: {
homepage = "http://www.yesodweb.com/";
description = "Creation of type-safe, RESTful web applications";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-crud" = callPackage
@@ -211697,18 +208495,6 @@ self: {
}) {};
"yesod-form-bootstrap4" = callPackage
- ({ mkDerivation, base, classy-prelude-yesod, yesod-form }:
- mkDerivation {
- pname = "yesod-form-bootstrap4";
- version = "0.1.0.0";
- sha256 = "0n8pqa94v3ffx0225zv9mqlknwcwicdwrc0l3vj7iw4dggn1qy81";
- libraryHaskellDepends = [ base classy-prelude-yesod yesod-form ];
- homepage = "https://github.com/ncaq/yesod-form-bootstrap4.git#readme";
- description = "renderBootstrap4";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "yesod-form-bootstrap4_0_1_0_1" = callPackage
({ mkDerivation, base, classy-prelude-yesod, yesod-form }:
mkDerivation {
pname = "yesod-form-bootstrap4";
@@ -211718,7 +208504,6 @@ self: {
homepage = "https://github.com/ncaq/yesod-form-bootstrap4.git#readme";
description = "renderBootstrap4";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-form-json" = callPackage
@@ -211738,23 +208523,6 @@ self: {
}) {};
"yesod-form-richtext" = callPackage
- ({ mkDerivation, base, blaze-builder, blaze-html, shakespeare, text
- , xss-sanitize, yesod-core, yesod-form
- }:
- mkDerivation {
- pname = "yesod-form-richtext";
- version = "0.1.0.1";
- sha256 = "0bmngw13lgacni8xn5jwpnf77qf0nmg3cqhb0mshp7cccky7cg7y";
- libraryHaskellDepends = [
- base blaze-builder blaze-html shakespeare text xss-sanitize
- yesod-core yesod-form
- ];
- homepage = "http://github.com/geraldus/yesod-form-richtext#readme";
- description = "Various rich-text WYSIWYG editors for Yesod forms";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "yesod-form-richtext_0_1_0_2" = callPackage
({ mkDerivation, base, blaze-builder, blaze-html, shakespeare, text
, xss-sanitize, yesod-core, yesod-form
}:
@@ -211769,7 +208537,6 @@ self: {
homepage = "http://github.com/geraldus/yesod-form-richtext#readme";
description = "Various rich-text WYSIWYG editors for Yesod forms";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-gitrepo" = callPackage
@@ -212844,49 +209611,6 @@ self: {
}) {};
"yi-core" = callPackage
- ({ mkDerivation, array, attoparsec, base, binary, bytestring
- , containers, criterion, data-default, deepseq, directory, dlist
- , dynamic-state, dyre, filepath, hashable, ListLike
- , microlens-platform, mtl, old-locale, oo-prototypes, parsec
- , pointedlist, process, process-extras, quickcheck-text, semigroups
- , split, tasty, tasty-hunit, tasty-quickcheck, text, text-icu, time
- , transformers-base, unix, unix-compat, unordered-containers
- , xdg-basedir, yi-language, yi-rope
- }:
- mkDerivation {
- pname = "yi-core";
- version = "0.14.0";
- sha256 = "176frh7q1bd4sa1fx2dgip70a4vyla09qw5n2v58qwhpfq14zwi0";
- libraryHaskellDepends = [
- array attoparsec base binary bytestring containers data-default
- directory dlist dynamic-state dyre filepath hashable ListLike
- microlens-platform mtl old-locale oo-prototypes parsec pointedlist
- process process-extras semigroups split text text-icu time
- transformers-base unix unix-compat unordered-containers xdg-basedir
- yi-language yi-rope
- ];
- testHaskellDepends = [
- array attoparsec base binary bytestring containers data-default
- directory dlist dynamic-state filepath hashable ListLike
- microlens-platform mtl old-locale oo-prototypes parsec pointedlist
- process process-extras quickcheck-text split tasty tasty-hunit
- tasty-quickcheck text text-icu time transformers-base unix
- unix-compat unordered-containers xdg-basedir yi-language yi-rope
- ];
- benchmarkHaskellDepends = [
- array attoparsec base binary bytestring containers criterion
- data-default deepseq directory dlist dynamic-state filepath
- hashable ListLike microlens-platform mtl old-locale oo-prototypes
- parsec pointedlist process process-extras split text text-icu time
- transformers-base unix unix-compat unordered-containers xdg-basedir
- yi-language yi-rope
- ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Yi editor core library";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-core_0_14_1" = callPackage
({ mkDerivation, array, attoparsec, base, binary, bytestring
, containers, criterion, data-default, deepseq, directory, dlist
, dynamic-state, filepath, hashable, ListLike, microlens-platform
@@ -212927,7 +209651,6 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Yi editor core library";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-dynamic-configuration" = callPackage
@@ -212981,24 +209704,6 @@ self: {
}) {};
"yi-frontend-vty" = callPackage
- ({ mkDerivation, base, containers, data-default, dlist
- , microlens-platform, pointedlist, stm, text, vty, yi-core
- , yi-language, yi-rope
- }:
- mkDerivation {
- pname = "yi-frontend-vty";
- version = "0.14.0";
- sha256 = "0055npls7dhlx68fwnhfb7kk4nzpy8vvmlpplm3m36rlvk85gyma";
- libraryHaskellDepends = [
- base containers data-default dlist microlens-platform pointedlist
- stm text vty yi-core yi-language yi-rope
- ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Vty frontend for Yi editor";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-frontend-vty_0_14_1" = callPackage
({ mkDerivation, base, containers, data-default, dlist
, microlens-platform, pointedlist, stm, text, vty, yi-core
, yi-language, yi-rope
@@ -213014,28 +209719,9 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Vty frontend for Yi editor";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-fuzzy-open" = callPackage
- ({ mkDerivation, base, binary, containers, data-default, directory
- , filepath, mtl, text, transformers-base, vector, yi-core
- , yi-language, yi-rope
- }:
- mkDerivation {
- pname = "yi-fuzzy-open";
- version = "0.14.0";
- sha256 = "0plpxc4p3wa2ak32j0s8y0z6ha5x8wgnzpgzj71bs7rkaf5bf8dd";
- libraryHaskellDepends = [
- base binary containers data-default directory filepath mtl text
- transformers-base vector yi-core yi-language yi-rope
- ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Fuzzy open plugin for yi";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-fuzzy-open_0_14_1" = callPackage
({ mkDerivation, base, binary, containers, data-default, directory
, filepath, mtl, text, transformers-base, vector, yi-core
, yi-language, yi-rope
@@ -213051,7 +209737,6 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Fuzzy open plugin for yi";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-gtk" = callPackage
@@ -213067,23 +209752,6 @@ self: {
}) {};
"yi-ireader" = callPackage
- ({ mkDerivation, base, binary, bytestring, containers, data-default
- , microlens-platform, text, yi-core, yi-language, yi-rope
- }:
- mkDerivation {
- pname = "yi-ireader";
- version = "0.14.0";
- sha256 = "0lqxa4m4agha9fd9lwf8xf2cxpj8mh2q93rkjchlksrjav3khz6q";
- libraryHaskellDepends = [
- base binary bytestring containers data-default microlens-platform
- text yi-core yi-language yi-rope
- ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Yi editor incremental reader";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-ireader_0_14_1" = callPackage
({ mkDerivation, base, binary, bytestring, containers, data-default
, microlens-platform, text, yi-core, yi-language, yi-rope
}:
@@ -213098,26 +209766,9 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Yi editor incremental reader";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-keymap-cua" = callPackage
- ({ mkDerivation, base, microlens-platform, text, yi-core
- , yi-keymap-emacs, yi-rope
- }:
- mkDerivation {
- pname = "yi-keymap-cua";
- version = "0.14.0";
- sha256 = "0l7r8vyigmcmp9biskf13qnn8in16s6pliwrc12lxa5ikym7r59r";
- libraryHaskellDepends = [
- base microlens-platform text yi-core yi-keymap-emacs yi-rope
- ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Cua keymap for Yi editor";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-keymap-cua_0_14_1" = callPackage
({ mkDerivation, base, microlens-platform, text, yi-core
, yi-keymap-emacs, yi-rope
}:
@@ -213131,29 +209782,9 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Cua keymap for Yi editor";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-keymap-emacs" = callPackage
- ({ mkDerivation, base, containers, filepath, Hclip
- , microlens-platform, mtl, oo-prototypes, semigroups, text
- , transformers-base, yi-core, yi-language, yi-misc-modes, yi-rope
- }:
- mkDerivation {
- pname = "yi-keymap-emacs";
- version = "0.14.0";
- sha256 = "0mlizcb2aj10kfmcavdzbdli0sxq0id02ihnpr23ix4dk3wgznqn";
- libraryHaskellDepends = [
- base containers filepath Hclip microlens-platform mtl oo-prototypes
- semigroups text transformers-base yi-core yi-language yi-misc-modes
- yi-rope
- ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Emacs keymap for Yi editor";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-keymap-emacs_0_14_1" = callPackage
({ mkDerivation, base, containers, filepath, Hclip
, microlens-platform, mtl, oo-prototypes, semigroups, text
, transformers-base, yi-core, yi-language, yi-misc-modes, yi-rope
@@ -213170,39 +209801,9 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Emacs keymap for Yi editor";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-keymap-vim" = callPackage
- ({ mkDerivation, attoparsec, base, binary, containers, data-default
- , directory, filepath, Hclip, microlens-platform, mtl
- , oo-prototypes, pointedlist, QuickCheck, safe, semigroups, tasty
- , tasty-hunit, tasty-quickcheck, text, transformers-base
- , unordered-containers, yi-core, yi-language, yi-rope
- }:
- mkDerivation {
- pname = "yi-keymap-vim";
- version = "0.14.0";
- sha256 = "1hy36q69a0yhkg5v0n2f2gkmbf85a9y6k5b38gdg18kdnil974q4";
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- attoparsec base binary containers data-default directory filepath
- Hclip microlens-platform mtl oo-prototypes pointedlist safe
- semigroups text transformers-base unordered-containers yi-core
- yi-language yi-rope
- ];
- testHaskellDepends = [
- attoparsec base binary containers data-default directory filepath
- Hclip microlens-platform mtl oo-prototypes pointedlist QuickCheck
- safe semigroups tasty tasty-hunit tasty-quickcheck text
- transformers-base unordered-containers yi-core yi-language yi-rope
- ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Vim keymap for Yi editor";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-keymap-vim_0_14_1" = callPackage
({ mkDerivation, attoparsec, base, binary, containers, data-default
, directory, filepath, Hclip, microlens-platform, mtl
, oo-prototypes, pointedlist, QuickCheck, safe, semigroups, tasty
@@ -213229,38 +209830,9 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Vim keymap for Yi editor";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-language" = callPackage
- ({ mkDerivation, alex, array, base, binary, containers
- , data-default, hashable, microlens-platform, oo-prototypes
- , pointedlist, regex-base, regex-tdfa, tasty, tasty-hspec
- , tasty-quickcheck, template-haskell, transformers-base
- , unordered-containers
- }:
- mkDerivation {
- pname = "yi-language";
- version = "0.14.0";
- sha256 = "1dpiqh46b2z627ry0smq4a0ynna1m166qf0yqhlh80v67myyg9jr";
- libraryHaskellDepends = [
- array base binary containers data-default hashable
- microlens-platform oo-prototypes pointedlist regex-base regex-tdfa
- template-haskell transformers-base unordered-containers
- ];
- libraryToolDepends = [ alex ];
- testHaskellDepends = [
- array base binary containers data-default hashable
- microlens-platform pointedlist regex-base regex-tdfa tasty
- tasty-hspec tasty-quickcheck template-haskell transformers-base
- unordered-containers
- ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Collection of language-related Yi libraries";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-language_0_14_1" = callPackage
({ mkDerivation, alex, array, base, binary, containers
, data-default, hashable, microlens-platform, oo-prototypes
, pointedlist, regex-base, regex-tdfa, tasty, tasty-hspec
@@ -213286,29 +209858,9 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Collection of language-related Yi libraries";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-misc-modes" = callPackage
- ({ mkDerivation, alex, array, base, binary, data-default, filepath
- , microlens-platform, semigroups, text, yi-core, yi-language
- , yi-rope
- }:
- mkDerivation {
- pname = "yi-misc-modes";
- version = "0.14.0";
- sha256 = "0khyy4iacp8fah1lrp6ffvn2vy5xxrgizd4mzdlb6shc7sliaifz";
- libraryHaskellDepends = [
- array base binary data-default filepath microlens-platform
- semigroups text yi-core yi-language yi-rope
- ];
- libraryToolDepends = [ alex ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Yi editor miscellaneous modes";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-misc-modes_0_14_1" = callPackage
({ mkDerivation, alex, array, base, binary, data-default, filepath
, microlens-platform, semigroups, text, yi-core, yi-language
, yi-rope
@@ -213325,28 +209877,9 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Yi editor miscellaneous modes";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-mode-haskell" = callPackage
- ({ mkDerivation, alex, array, base, binary, data-default, filepath
- , microlens-platform, text, yi-core, yi-language, yi-rope
- }:
- mkDerivation {
- pname = "yi-mode-haskell";
- version = "0.14.0";
- sha256 = "0yqwshj1hms1q2r78fi0hsqyrazy5cyv0znxcjpmx2f6mnifjxd9";
- libraryHaskellDepends = [
- array base binary data-default filepath microlens-platform text
- yi-core yi-language yi-rope
- ];
- libraryToolDepends = [ alex ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Yi editor haskell mode";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-mode-haskell_0_14_1" = callPackage
({ mkDerivation, alex, array, base, binary, data-default, filepath
, microlens-platform, text, yi-core, yi-language, yi-rope
}:
@@ -213362,29 +209895,9 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Yi editor haskell mode";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-mode-javascript" = callPackage
- ({ mkDerivation, alex, array, base, binary, data-default, dlist
- , filepath, microlens-platform, mtl, text, yi-core, yi-language
- , yi-rope
- }:
- mkDerivation {
- pname = "yi-mode-javascript";
- version = "0.14.0";
- sha256 = "00ap00h9lz0b2r75m0dn741aasi18455srwq6mcpbbq6j4v3jzfz";
- libraryHaskellDepends = [
- array base binary data-default dlist filepath microlens-platform
- mtl text yi-core yi-language yi-rope
- ];
- libraryToolDepends = [ alex ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Yi editor javascript mode";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-mode-javascript_0_14_1" = callPackage
({ mkDerivation, alex, array, base, binary, data-default, dlist
, filepath, microlens-platform, mtl, text, yi-core, yi-language
, yi-rope
@@ -213401,7 +209914,6 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Yi editor javascript mode";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-monokai" = callPackage
@@ -213439,27 +209951,6 @@ self: {
}) {};
"yi-snippet" = callPackage
- ({ mkDerivation, base, binary, containers, data-default, free
- , microlens-platform, mtl, tasty-hunit, tasty-th, text, vector
- , yi-core, yi-rope
- }:
- mkDerivation {
- pname = "yi-snippet";
- version = "0.14.0";
- sha256 = "152g3bsy50viydnhhx4b7vyyaq4frw43cbb9r3pm56wmnk4ixn7k";
- libraryHaskellDepends = [
- base binary containers data-default free microlens-platform mtl
- text vector yi-core yi-rope
- ];
- testHaskellDepends = [
- base containers tasty-hunit tasty-th yi-rope
- ];
- homepage = "https://github.com/yi-editor/yi#readme";
- description = "Snippet support for yi";
- license = stdenv.lib.licenses.gpl2;
- }) {};
-
- "yi-snippet_0_14_1" = callPackage
({ mkDerivation, base, binary, containers, data-default, free
, microlens-platform, mtl, tasty-hunit, tasty-th, text, vector
, yi-core, yi-rope
@@ -213478,7 +209969,6 @@ self: {
homepage = "https://github.com/yi-editor/yi#readme";
description = "Snippet support for yi";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-solarized" = callPackage
@@ -213703,20 +210193,6 @@ self: {
}) {};
"youtube" = callPackage
- ({ mkDerivation, base, bytestring, process, utility-ht }:
- mkDerivation {
- pname = "youtube";
- version = "0.2.1";
- sha256 = "1lb50xpz032nrxbcfihj08cwbw2cn22sf8f4xlpfqnp36jvn1rvx";
- isLibrary = false;
- isExecutable = true;
- enableSeparateDataOutput = true;
- executableHaskellDepends = [ base bytestring process utility-ht ];
- description = "Upload video to YouTube via YouTube API";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "youtube_0_2_1_1" = callPackage
({ mkDerivation, base, bytestring, process, utility-ht }:
mkDerivation {
pname = "youtube";
@@ -213728,7 +210204,6 @@ self: {
executableHaskellDepends = [ base bytestring process utility-ht ];
description = "Upload video to YouTube via YouTube API";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yql" = callPackage
@@ -214288,8 +210763,8 @@ self: {
}:
mkDerivation {
pname = "zifter-stack";
- version = "0.0.0.4";
- sha256 = "0vgklhbq846xh020n4mp4j96zbpc2asnsn1zk716pfnkgvk9syqn";
+ version = "0.0.0.5";
+ sha256 = "01j6gm276xwlclkanai1hb93q83ml62njw8nsnnjk313jwds6151";
libraryHaskellDepends = [
base Cabal directory filepath path path-io process safe zifter
];
@@ -214400,6 +210875,8 @@ self: {
pname = "zip-archive";
version = "0.3.1.1";
sha256 = "09c3y13r77shyamibr298i4l0rp31i41w3rg1ksnrl3gkrj8x1ly";
+ revision = "1";
+ editedCabalFile = "0n8f1075gz5q2k9mqzadca6is0fi1bgi91sfw1yq2kqakkbrbkqy";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -214516,23 +210993,6 @@ self: {
}) {};
"zippers" = callPackage
- ({ mkDerivation, base, Cabal, cabal-doctest, criterion, doctest
- , lens, profunctors, semigroupoids
- }:
- mkDerivation {
- pname = "zippers";
- version = "0.2.3";
- sha256 = "0pgb33nr1cc6krvzl4wks9mhy5ikbgji8546fhmydqxw4ywlr9qv";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [ base lens profunctors semigroupoids ];
- testHaskellDepends = [ base doctest ];
- benchmarkHaskellDepends = [ base criterion lens ];
- homepage = "http://github.com/ekmett/zippers/";
- description = "Traversal based zippers";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "zippers_0_2_4" = callPackage
({ mkDerivation, base, Cabal, cabal-doctest, criterion, doctest
, lens, profunctors, semigroupoids
}:
@@ -214549,7 +211009,6 @@ self: {
homepage = "http://github.com/ekmett/zippers/";
description = "Traversal based zippers";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zippo" = callPackage
diff --git a/pkgs/development/haskell-modules/hoogle.nix b/pkgs/development/haskell-modules/hoogle.nix
index b6063f6ef97..38e8dfd24c4 100644
--- a/pkgs/development/haskell-modules/hoogle.nix
+++ b/pkgs/development/haskell-modules/hoogle.nix
@@ -52,7 +52,10 @@ let
This index includes documentation for many Haskell modules.
'';
- docPackages = lib.closePropagation packages;
+ # TODO: closePropagation is deprecated; replace
+ docPackages = lib.closePropagation
+ # we grab the doc outputs
+ (map (lib.getOutput "doc") packages);
in
stdenv.mkDerivation {
@@ -64,10 +67,14 @@ stdenv.mkDerivation {
inherit docPackages;
buildPhase = ''
+ ${lib.optionalString (packages != [] -> docPackages == [])
+ ("echo WARNING: localHoogle package list empty, even though"
+ + " the following were specified: "
+ + lib.concatMapStringsSep ", " (p: p.name) packages)}
mkdir -p $out/share/doc/hoogle
echo importing builtin packages
- for docdir in ${ghcDocLibDir}/*; do
+ for docdir in ${ghcDocLibDir}"/"*; do
name="$(basename $docdir)"
${opts isGhcjs ''docdir="$docdir/html"''}
if [[ -d $docdir ]]; then
@@ -76,17 +83,13 @@ stdenv.mkDerivation {
done
echo importing other packages
- for i in $docPackages; do
- if [[ ! $i == $out ]]; then
- for docdir in $i/share/doc/*-${ghcName}-*/* $i/share/doc/*; do
- name="$(basename $docdir)"
- docdir=$docdir/html
- if [[ -d $docdir ]]; then
- ln -sfn $docdir $out/share/doc/hoogle/$name
- fi
- done
- fi
- done
+ ${lib.concatMapStringsSep "\n" (el: ''
+ ln -sfn ${el.haddockDir} "$out/share/doc/hoogle/${el.name}"
+ '')
+ (lib.filter (el: el.haddockDir != null)
+ (builtins.map (p: { haddockDir = if p ? haddockDir then p.haddockDir p else null;
+ name = p.pname; })
+ docPackages))}
echo building hoogle database
hoogle generate --database $out/share/doc/hoogle/default.hoo --local=$out/share/doc/hoogle
@@ -96,8 +99,7 @@ stdenv.mkDerivation {
cd $out/share/doc/hoogle
args=
- for hdfile in `ls -1 */*.haddock | grep -v '/ghc\.haddock' | sort`
- do
+ for hdfile in $(ls -1 *"/"*.haddock | grep -v '/ghc\.haddock' | sort); do
name_version=`echo "$hdfile" | sed 's#/.*##'`
args="$args --read-interface=$name_version,$hdfile"
done
diff --git a/pkgs/development/haskell-modules/lib.nix b/pkgs/development/haskell-modules/lib.nix
index c67b61acd78..43723b80774 100644
--- a/pkgs/development/haskell-modules/lib.nix
+++ b/pkgs/development/haskell-modules/lib.nix
@@ -75,6 +75,9 @@ rec {
sdistTarball = pkg: lib.overrideDerivation pkg (drv: {
name = "${drv.pname}-source-${drv.version}";
+ # Since we disable the haddock phase, we also need to override the
+ # outputs since the separate doc output will not be produced.
+ outputs = ["out"];
buildPhase = "./Setup sdist";
haddockPhase = ":";
checkPhase = ":";
diff --git a/pkgs/development/haskell-modules/make-package-set.nix b/pkgs/development/haskell-modules/make-package-set.nix
index 87f3a04ebf5..5215fe4a552 100644
--- a/pkgs/development/haskell-modules/make-package-set.nix
+++ b/pkgs/development/haskell-modules/make-package-set.nix
@@ -25,7 +25,9 @@
}:
# return value: a function from self to the package set
-self: let
+self:
+
+let
inherit (stdenv.lib) fix' extends makeOverridable;
inherit (haskellLib) overrideCabal;
diff --git a/pkgs/development/libraries/accounts-qt/default.nix b/pkgs/development/libraries/accounts-qt/default.nix
index dc803bf1c37..e45a9f2f387 100644
--- a/pkgs/development/libraries/accounts-qt/default.nix
+++ b/pkgs/development/libraries/accounts-qt/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Qt library for accessing the online accounts database";
- homepage = http://code.google.com/p/accounts-sso/;
+ homepage = https://gitlab.com/accounts-sso;
license = licenses.lgpl21;
maintainers = with maintainers; [ nckx ];
platforms = with platforms; linux;
diff --git a/pkgs/development/libraries/boolstuff/default.nix b/pkgs/development/libraries/boolstuff/default.nix
index 62d61e6cb5d..0f899e4324c 100644
--- a/pkgs/development/libraries/boolstuff/default.nix
+++ b/pkgs/development/libraries/boolstuff/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig }:
-let baseurl = "http://perso.b2b2c.ca/sarrazip/dev"; in
+let baseurl = "https://perso.b2b2c.ca/~sarrazip/dev"; in
stdenv.mkDerivation rec {
name = "boolstuff-0.1.15";
diff --git a/pkgs/development/libraries/c-ares/default.nix b/pkgs/development/libraries/c-ares/default.nix
index 025e11e0755..14ff7a5f16c 100644
--- a/pkgs/development/libraries/c-ares/default.nix
+++ b/pkgs/development/libraries/c-ares/default.nix
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A C library for asynchronous DNS requests";
- homepage = http://c-ares.haxx.se;
+ homepage = https://c-ares.haxx.se;
license = licenses.mit;
platforms = platforms.all;
};
diff --git a/pkgs/development/libraries/geoip/default.nix b/pkgs/development/libraries/geoip/default.nix
index bf671ebecd1..60d40b10aa4 100644
--- a/pkgs/development/libraries/geoip/default.nix
+++ b/pkgs/development/libraries/geoip/default.nix
@@ -1,10 +1,10 @@
# in geoipDatabase, you can insert a package defining ${geoipDatabase}/share/GeoIP
# e.g. geolite-legacy
-{ stdenv, fetchurl, pkgs, drvName ? "geoip", geoipDatabase ? null }:
+{ stdenv, fetchurl, pkgs, drvName ? "geoip", geoipDatabase ? "/var/lib/geoip-databases" }:
-let version = "1.6.2"; in
-
-stdenv.mkDerivation {
+let version = "1.6.2";
+ dataDir = if (stdenv.lib.isDerivation geoipDatabase) then "${toString geoipDatabase}/share/GeoIP" else geoipDatabase;
+in stdenv.mkDerivation {
name = "${drvName}-${version}";
src = fetchurl {
@@ -12,11 +12,8 @@ stdenv.mkDerivation {
sha256 = "0dd6si4cvip73kxdn43apg6yygvaf7dnk5awqfg9w2fd2ll0qnh7";
};
- postInstall = ''
- DB=${toString geoipDatabase}
- if [ -n "$DB" ]; then
- ln -s $DB/share/GeoIP $out/share/GeoIP
- fi
+ postPatch = ''
+ find . -name Makefile.in -exec sed -i -r 's#^pkgdatadir\s*=.+$#pkgdatadir = ${dataDir}#' {} \;
'';
meta = {
diff --git a/pkgs/development/libraries/gstreamer/legacy/gnonlin/default.nix b/pkgs/development/libraries/gstreamer/legacy/gnonlin/default.nix
index 16882c8a57d..608be653889 100644
--- a/pkgs/development/libraries/gstreamer/legacy/gnonlin/default.nix
+++ b/pkgs/development/libraries/gstreamer/legacy/gnonlin/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
urls = [
- "http://gstreamer.freedesktop.org/src/gnonlin/${name}.tar.bz2"
+ "https://gstreamer.freedesktop.org/src/gnonlin/${name}.tar.bz2"
"mirror://gentoo/distfiles/${name}.tar.bz2"
];
sha256 = "0dc9kvr6i7sh91cyhzlbx2bchwg84rfa4679ccppzjf0y65dv8p4";
diff --git a/pkgs/development/libraries/libmspack/default.nix b/pkgs/development/libraries/libmspack/default.nix
index 67aec7fc974..79d4c056341 100644
--- a/pkgs/development/libraries/libmspack/default.nix
+++ b/pkgs/development/libraries/libmspack/default.nix
@@ -1,10 +1,11 @@
{stdenv, fetchurl}:
-stdenv.mkDerivation {
- name = "libmspack-0.5alpha";
+stdenv.mkDerivation rec {
+ name = "libmspack-0.6alpha";
+
src = fetchurl {
- url = "http://www.cabextract.org.uk/libmspack/libmspack-0.5alpha.tar.gz";
- sha256 = "04413hynb7zizxnkgy9riik3612dwirkpr6fcjrnfl2za9sz4rw9";
+ url = "http://www.cabextract.org.uk/libmspack/${name}.tar.gz";
+ sha256 = "08gr2pcinas6bdqz3k0286g5cnksmcx813skmdwyca6bmj1fxnqy";
};
meta = {
diff --git a/pkgs/development/libraries/openssl/chacha.nix b/pkgs/development/libraries/openssl/chacha.nix
index 34721700652..86015abb981 100644
--- a/pkgs/development/libraries/openssl/chacha.nix
+++ b/pkgs/development/libraries/openssl/chacha.nix
@@ -72,7 +72,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- homepage = http://www.openssl.org/;
+ homepage = https://www.openssl.org/;
description = "A cryptographic library that implements the SSL and TLS protocols";
platforms = [ "x86_64-linux" ];
maintainers = [ stdenv.lib.maintainers.cstrahan ];
diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix
index 394eab6c9db..5a4d23b6a39 100644
--- a/pkgs/development/libraries/openssl/default.nix
+++ b/pkgs/development/libraries/openssl/default.nix
@@ -96,7 +96,7 @@ let
};
meta = {
- homepage = http://www.openssl.org/;
+ homepage = https://www.openssl.org/;
description = "A cryptographic library that implements the SSL and TLS protocols";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.peti ];
diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix
index e8edee3ba18..5fcb7d386fa 100644
--- a/pkgs/development/libraries/poppler/default.nix
+++ b/pkgs/development/libraries/poppler/default.nix
@@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
"sed '/^SUBDIRS =/s/ test / /' -i Makefile.in";
meta = with lib; {
- homepage = http://poppler.freedesktop.org/;
+ homepage = https://poppler.freedesktop.org/;
description = "A PDF rendering library";
longDescription = ''
diff --git a/pkgs/development/libraries/readline/7.0.nix b/pkgs/development/libraries/readline/7.0.nix
index fd1a3608377..a7306010a8b 100644
--- a/pkgs/development/libraries/readline/7.0.nix
+++ b/pkgs/development/libraries/readline/7.0.nix
@@ -4,7 +4,7 @@
stdenv.mkDerivation rec {
name = "readline-${version}";
- version = "7.0p0";
+ version = "7.0p${toString (builtins.length upstreamPatches)}";
src = fetchurl {
url = "mirror://gnu/readline/readline-${meta.branch}.tar.gz";
@@ -17,13 +17,7 @@ stdenv.mkDerivation rec {
patchFlags = "-p0";
- patches =
- [ ./link-against-ncurses.patch
- ./no-arch_only-6.3.patch
- ]
- ;
- /*
- ++
+ upstreamPatches =
(let
patch = nr: sha256:
fetchurl {
@@ -32,7 +26,12 @@ stdenv.mkDerivation rec {
};
in
import ./readline-7.0-patches.nix patch);
- */
+
+ patches =
+ [ ./link-against-ncurses.patch
+ ./no-arch_only-6.3.patch
+ ]
+ ++ upstreamPatches;
# Don't run the native `strip' when cross-compiling.
dontStrip = hostPlatform != buildPlatform;
@@ -60,7 +59,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
- maintainers = [ ];
+ maintainers = [ maintainers.vanschelven ];
platforms = platforms.unix;
branch = "7.0";
diff --git a/pkgs/development/libraries/readline/readline-7.0-patches.nix b/pkgs/development/libraries/readline/readline-7.0-patches.nix
new file mode 100644
index 00000000000..45bec6b6481
--- /dev/null
+++ b/pkgs/development/libraries/readline/readline-7.0-patches.nix
@@ -0,0 +1,7 @@
+# Automatically generated by `update-patch-set.sh'; do not edit.
+
+patch: [
+(patch "001" "0xm3sxvwmss7ddyfb11n6pgcqd1aglnpy15g143vzcf75snb7hcs")
+(patch "002" "0n1dxmqsbjgrfxb1hgk5c6lsraw4ncbnzxlsx7m35nym6lncjiw7")
+(patch "003" "1027kmymniizcy0zbdlrczxfx3clxcdln5yq05q9yzlc6y9slhwy")
+]
diff --git a/pkgs/development/lisp-modules/lisp-packages.nix b/pkgs/development/lisp-modules/lisp-packages.nix
index 275a6d405c8..eaae4726751 100644
--- a/pkgs/development/lisp-modules/lisp-packages.nix
+++ b/pkgs/development/lisp-modules/lisp-packages.nix
@@ -34,7 +34,7 @@ let lispPackages = rec {
quicklisp = buildLispPackage rec {
baseName = "quicklisp";
- version = "2016-01-21";
+ version = "2017-03-06";
testSystems = [];
@@ -43,7 +43,7 @@ let lispPackages = rec {
src = pkgs.fetchgit {
url = "https://github.com/quicklisp/quicklisp-client/";
rev = "refs/tags/version-${version}";
- sha256 = "007r1ydbhrkh6ywqgpvzp0xg0yypgrfai3n4mn16gj5w2zz013lx";
+ sha256 = "11ywk7ggc1axivpbqvrd7m1lxsj4yp38d1h9w1d8i9qnn7zjpqj4";
};
overrides = x: rec {
inherit clwrapper;
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix
index 7f60d2dde20..52f0161aecb 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/alexandria.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''alexandria'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''Alexandria is a collection of portable public domain utilities.'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/alexandria/2017-05-16/alexandria-20170516-git.tgz'';
- sha256 = ''0yi2lxy9w7pmw4k7yzp82m6cpambclji7c7km3lx0hazv838rw82'';
+ url = ''http://beta.quicklisp.org/archive/alexandria/2017-06-30/alexandria-20170630-git.tgz'';
+ sha256 = ''1ch7987ijs5gz5dk3i02bqgb2bn7s9p3sfsrwq4fp1sxykwr9fis'';
};
packageName = "alexandria";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM alexandria DESCRIPTION Alexandria is a collection of portable public domain utilities. SHA256 0yi2lxy9w7pmw4k7yzp82m6cpambclji7c7km3lx0hazv838rw82
- URL http://beta.quicklisp.org/archive/alexandria/2017-05-16/alexandria-20170516-git.tgz MD5 9234737872493dd82d2da9cadf6a1484 NAME alexandria TESTNAME NIL
- FILENAME alexandria DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS (alexandria-tests)) */
+/* (SYSTEM alexandria DESCRIPTION Alexandria is a collection of portable public domain utilities. SHA256 1ch7987ijs5gz5dk3i02bqgb2bn7s9p3sfsrwq4fp1sxykwr9fis
+ URL http://beta.quicklisp.org/archive/alexandria/2017-06-30/alexandria-20170630-git.tgz MD5 ce5427881c909981192f870cb52ff59f NAME alexandria TESTNAME NIL
+ FILENAME alexandria DEPS NIL DEPENDENCIES NIL VERSION 20170630-git SIBLINGS (alexandria-tests)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/array-utils.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/array-utils.nix
index 80030739535..20763679a82 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/array-utils.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/array-utils.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''array-utils'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''A few utilities for working with arrays.'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/array-utils/2017-05-16/array-utils-20170516-git.tgz'';
- sha256 = ''0mbzv2w0jkd175bl2flrkg1108f32hir5fl1n4x6cn8kc14af13q'';
+ url = ''http://beta.quicklisp.org/archive/array-utils/2017-06-30/array-utils-20170630-git.tgz'';
+ sha256 = ''1nj42w2q11qdg65cviaj514pcql1gi729mcsj5g2vy17pr298zgb'';
};
packageName = "array-utils";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM array-utils DESCRIPTION A few utilities for working with arrays. SHA256 0mbzv2w0jkd175bl2flrkg1108f32hir5fl1n4x6cn8kc14af13q URL
- http://beta.quicklisp.org/archive/array-utils/2017-05-16/array-utils-20170516-git.tgz MD5 c6e4ccbee8f5d72fb86493b419cd0f59 NAME array-utils TESTNAME NIL
- FILENAME array-utils DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS (array-utils-test)) */
+/* (SYSTEM array-utils DESCRIPTION A few utilities for working with arrays. SHA256 1nj42w2q11qdg65cviaj514pcql1gi729mcsj5g2vy17pr298zgb URL
+ http://beta.quicklisp.org/archive/array-utils/2017-06-30/array-utils-20170630-git.tgz MD5 550b37bc0eccfafa889de00b59c422dc NAME array-utils TESTNAME NIL
+ FILENAME array-utils DEPS NIL DEPENDENCIES NIL VERSION 20170630-git SIBLINGS (array-utils-test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/babel-streams.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/babel-streams.nix
index adc5571a337..e85bb4f8f92 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/babel-streams.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/babel-streams.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''babel-streams'';
- version = ''babel-20170516-git'';
+ version = ''babel-20170630-git'';
description = ''Some useful streams based on Babel's encoding code'';
- deps = [ ];
+ deps = [ args."trivial-gray-streams" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/babel/2017-05-16/babel-20170516-git.tgz'';
- sha256 = ''0igl7vgbbpil8ksfsmj1055m6jcpmvf149zmmzsxr9h608siy7fk'';
+ url = ''http://beta.quicklisp.org/archive/babel/2017-06-30/babel-20170630-git.tgz'';
+ sha256 = ''0w1jfzdklk5zz9vgplr2a0vc6gybrwl8wa72nj6xs4ihp7spf0lx'';
};
packageName = "babel-streams";
@@ -30,6 +30,7 @@ rec {
'';
};
}
-/* (SYSTEM babel-streams DESCRIPTION Some useful streams based on Babel's encoding code SHA256 0igl7vgbbpil8ksfsmj1055m6jcpmvf149zmmzsxr9h608siy7fk URL
- http://beta.quicklisp.org/archive/babel/2017-05-16/babel-20170516-git.tgz MD5 d2ab5a273a436375ba40a8ec7f38d0a9 NAME babel-streams TESTNAME NIL FILENAME
- babel-streams DEPS NIL DEPENDENCIES NIL VERSION babel-20170516-git SIBLINGS (babel-tests babel)) */
+/* (SYSTEM babel-streams DESCRIPTION Some useful streams based on Babel's encoding code SHA256 0w1jfzdklk5zz9vgplr2a0vc6gybrwl8wa72nj6xs4ihp7spf0lx URL
+ http://beta.quicklisp.org/archive/babel/2017-06-30/babel-20170630-git.tgz MD5 aa7eff848b97bb7f7aa6bdb43a081964 NAME babel-streams TESTNAME NIL FILENAME
+ babel-streams DEPS ((NAME trivial-gray-streams FILENAME trivial-gray-streams) (NAME alexandria FILENAME alexandria)) DEPENDENCIES
+ (trivial-gray-streams alexandria) VERSION babel-20170630-git SIBLINGS (babel-tests babel)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/babel.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/babel.nix
index c9b98838862..e567b056b24 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/babel.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/babel.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''babel'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''Babel, a charset conversion library.'';
- deps = [ ];
+ deps = [ args."trivial-features" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/babel/2017-05-16/babel-20170516-git.tgz'';
- sha256 = ''0igl7vgbbpil8ksfsmj1055m6jcpmvf149zmmzsxr9h608siy7fk'';
+ url = ''http://beta.quicklisp.org/archive/babel/2017-06-30/babel-20170630-git.tgz'';
+ sha256 = ''0w1jfzdklk5zz9vgplr2a0vc6gybrwl8wa72nj6xs4ihp7spf0lx'';
};
packageName = "babel";
@@ -30,6 +30,7 @@ rec {
'';
};
}
-/* (SYSTEM babel DESCRIPTION Babel, a charset conversion library. SHA256 0igl7vgbbpil8ksfsmj1055m6jcpmvf149zmmzsxr9h608siy7fk URL
- http://beta.quicklisp.org/archive/babel/2017-05-16/babel-20170516-git.tgz MD5 d2ab5a273a436375ba40a8ec7f38d0a9 NAME babel TESTNAME NIL FILENAME babel DEPS
- NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS (babel-streams babel-tests)) */
+/* (SYSTEM babel DESCRIPTION Babel, a charset conversion library. SHA256 0w1jfzdklk5zz9vgplr2a0vc6gybrwl8wa72nj6xs4ihp7spf0lx URL
+ http://beta.quicklisp.org/archive/babel/2017-06-30/babel-20170630-git.tgz MD5 aa7eff848b97bb7f7aa6bdb43a081964 NAME babel TESTNAME NIL FILENAME babel DEPS
+ ((NAME trivial-features FILENAME trivial-features) (NAME alexandria FILENAME alexandria)) DEPENDENCIES (trivial-features alexandria) VERSION 20170630-git
+ SIBLINGS (babel-streams babel-tests)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/caveman.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/caveman.nix
index 5b5d13bcec1..c01189a491e 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/caveman.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/caveman.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''caveman'';
- version = ''20161031-git'';
+ version = ''20170630-git'';
description = ''Web Application Framework for Common Lisp'';
deps = [ args."myway" args."local-time" args."do-urlencode" args."clack-v1-compat" args."cl-syntax-annot" args."cl-syntax" args."cl-project" args."cl-ppcre" args."cl-emb" args."anaphora" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/caveman/2016-10-31/caveman-20161031-git.tgz'';
- sha256 = ''111zxnlsn99sybmwgyxh0x29avq898nxssysvaf8v4mbb6fva2hi'';
+ url = ''http://beta.quicklisp.org/archive/caveman/2017-06-30/caveman-20170630-git.tgz'';
+ sha256 = ''0wpjnskcvrgvqn9gbr43yqnpcxfmdggbiyaxz9rrhgcis2rwjkj2'';
};
packageName = "caveman";
@@ -30,11 +30,11 @@ rec {
'';
};
}
-/* (SYSTEM caveman DESCRIPTION Web Application Framework for Common Lisp SHA256 111zxnlsn99sybmwgyxh0x29avq898nxssysvaf8v4mbb6fva2hi URL
- http://beta.quicklisp.org/archive/caveman/2016-10-31/caveman-20161031-git.tgz MD5 a6700f14fd7c4bf8fdc573473ff5fab6 NAME caveman TESTNAME NIL FILENAME
+/* (SYSTEM caveman DESCRIPTION Web Application Framework for Common Lisp SHA256 0wpjnskcvrgvqn9gbr43yqnpcxfmdggbiyaxz9rrhgcis2rwjkj2 URL
+ http://beta.quicklisp.org/archive/caveman/2017-06-30/caveman-20170630-git.tgz MD5 774f85fa78792bde012bad78efff4b53 NAME caveman TESTNAME NIL FILENAME
caveman DEPS
((NAME myway FILENAME myway) (NAME local-time FILENAME local-time) (NAME do-urlencode FILENAME do-urlencode)
(NAME clack-v1-compat FILENAME clack-v1-compat) (NAME cl-syntax-annot FILENAME cl-syntax-annot) (NAME cl-syntax FILENAME cl-syntax)
(NAME cl-project FILENAME cl-project) (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-emb FILENAME cl-emb) (NAME anaphora FILENAME anaphora))
- DEPENDENCIES (myway local-time do-urlencode clack-v1-compat cl-syntax-annot cl-syntax cl-project cl-ppcre cl-emb anaphora) VERSION 20161031-git SIBLINGS
+ DEPENDENCIES (myway local-time do-urlencode clack-v1-compat cl-syntax-annot cl-syntax cl-project cl-ppcre cl-emb anaphora) VERSION 20170630-git SIBLINGS
(caveman-middleware-dbimanager caveman-test caveman2-db caveman2-test caveman2)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-grovel.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-grovel.nix
index dba9bfcbc76..e5dd39df1cd 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-grovel.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi-grovel.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''cffi-grovel'';
- version = ''cffi_0.18.0'';
+ version = ''cffi_0.19.0'';
description = ''The CFFI Groveller'';
deps = [ args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cffi/2016-10-31/cffi_0.18.0.tgz'';
- sha256 = ''0g4clx9l9c7iw9hiv94ihzp4zb80yq3i5j6lr3vkz9z2dndzcpzz'';
+ url = ''http://beta.quicklisp.org/archive/cffi/2017-06-30/cffi_0.19.0.tgz'';
+ sha256 = ''12v3ha0qp3f9lq2h3d7y3mwdq216nsdfig0s3c4akw90rsbnydj9'';
};
packageName = "cffi-grovel";
@@ -30,7 +30,7 @@ rec {
'';
};
}
-/* (SYSTEM cffi-grovel DESCRIPTION The CFFI Groveller SHA256 0g4clx9l9c7iw9hiv94ihzp4zb80yq3i5j6lr3vkz9z2dndzcpzz URL
- http://beta.quicklisp.org/archive/cffi/2016-10-31/cffi_0.18.0.tgz MD5 5be207fca26205c7550d7b6307871f4e NAME cffi-grovel TESTNAME NIL FILENAME cffi-grovel
- DEPS ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION cffi_0.18.0 SIBLINGS
+/* (SYSTEM cffi-grovel DESCRIPTION The CFFI Groveller SHA256 12v3ha0qp3f9lq2h3d7y3mwdq216nsdfig0s3c4akw90rsbnydj9 URL
+ http://beta.quicklisp.org/archive/cffi/2017-06-30/cffi_0.19.0.tgz MD5 7589b6437fec19fdabc65892536c3dc3 NAME cffi-grovel TESTNAME NIL FILENAME cffi-grovel
+ DEPS ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION cffi_0.19.0 SIBLINGS
(cffi-examples cffi-libffi cffi-tests cffi-toolchain cffi-uffi-compat cffi)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi.nix
index 9f92871b712..7c09b2ec643 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cffi.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''cffi'';
- version = ''cffi_0.18.0'';
+ version = ''cffi_0.19.0'';
description = ''The Common Foreign Function Interface'';
deps = [ args."uiop" args."trivial-features" args."babel" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cffi/2016-10-31/cffi_0.18.0.tgz'';
- sha256 = ''0g4clx9l9c7iw9hiv94ihzp4zb80yq3i5j6lr3vkz9z2dndzcpzz'';
+ url = ''http://beta.quicklisp.org/archive/cffi/2017-06-30/cffi_0.19.0.tgz'';
+ sha256 = ''12v3ha0qp3f9lq2h3d7y3mwdq216nsdfig0s3c4akw90rsbnydj9'';
};
packageName = "cffi";
@@ -30,8 +30,8 @@ rec {
'';
};
}
-/* (SYSTEM cffi DESCRIPTION The Common Foreign Function Interface SHA256 0g4clx9l9c7iw9hiv94ihzp4zb80yq3i5j6lr3vkz9z2dndzcpzz URL
- http://beta.quicklisp.org/archive/cffi/2016-10-31/cffi_0.18.0.tgz MD5 5be207fca26205c7550d7b6307871f4e NAME cffi TESTNAME NIL FILENAME cffi DEPS
+/* (SYSTEM cffi DESCRIPTION The Common Foreign Function Interface SHA256 12v3ha0qp3f9lq2h3d7y3mwdq216nsdfig0s3c4akw90rsbnydj9 URL
+ http://beta.quicklisp.org/archive/cffi/2017-06-30/cffi_0.19.0.tgz MD5 7589b6437fec19fdabc65892536c3dc3 NAME cffi TESTNAME NIL FILENAME cffi DEPS
((NAME uiop FILENAME uiop) (NAME trivial-features FILENAME trivial-features) (NAME babel FILENAME babel) (NAME alexandria FILENAME alexandria))
- DEPENDENCIES (uiop trivial-features babel alexandria) VERSION cffi_0.18.0 SIBLINGS
+ DEPENDENCIES (uiop trivial-features babel alexandria) VERSION cffi_0.19.0 SIBLINGS
(cffi-examples cffi-grovel cffi-libffi cffi-tests cffi-toolchain cffi-uffi-compat)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl+ssl.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl+ssl.nix
index bfe44d109d5..4f0c1a0421d 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl+ssl.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl+ssl.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''cl+ssl'';
- version = ''cl+ssl-20170403-git'';
+ version = ''cl+ssl-20170725-git'';
description = ''Common Lisp interface to OpenSSL.'';
- deps = [ args."uiop" args."trivial-gray-streams" args."trivial-garbage" args."flexi-streams" args."cffi" args."bordeaux-threads" ];
+ deps = [ args."uiop" args."trivial-gray-streams" args."trivial-garbage" args."trivial-features" args."flexi-streams" args."cffi" args."bordeaux-threads" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl+ssl/2017-04-03/cl+ssl-20170403-git.tgz'';
- sha256 = ''1f1nr1wy6nk0l2n249djcvygl0379ch3x4ndc243jcahcp44x18s'';
+ url = ''http://beta.quicklisp.org/archive/cl+ssl/2017-07-25/cl+ssl-20170725-git.tgz'';
+ sha256 = ''1p5886l5bwz4bj2xy8mpsjswg103b8saqdnw050a4wk9shpj1j69'';
};
packageName = "cl+ssl";
@@ -30,9 +30,11 @@ rec {
'';
};
}
-/* (SYSTEM cl+ssl DESCRIPTION Common Lisp interface to OpenSSL. SHA256 1f1nr1wy6nk0l2n249djcvygl0379ch3x4ndc243jcahcp44x18s URL
- http://beta.quicklisp.org/archive/cl+ssl/2017-04-03/cl+ssl-20170403-git.tgz MD5 e6d22f98947384d0e0bb2eb18230f72d NAME cl+ssl TESTNAME NIL FILENAME cl+ssl
+/* (SYSTEM cl+ssl DESCRIPTION Common Lisp interface to OpenSSL. SHA256 1p5886l5bwz4bj2xy8mpsjswg103b8saqdnw050a4wk9shpj1j69 URL
+ http://beta.quicklisp.org/archive/cl+ssl/2017-07-25/cl+ssl-20170725-git.tgz MD5 3458c83f442395e0492c7e9b9720a1f2 NAME cl+ssl TESTNAME NIL FILENAME cl+ssl
DEPS
((NAME uiop FILENAME uiop) (NAME trivial-gray-streams FILENAME trivial-gray-streams) (NAME trivial-garbage FILENAME trivial-garbage)
- (NAME flexi-streams FILENAME flexi-streams) (NAME cffi FILENAME cffi) (NAME bordeaux-threads FILENAME bordeaux-threads))
- DEPENDENCIES (uiop trivial-gray-streams trivial-garbage flexi-streams cffi bordeaux-threads) VERSION cl+ssl-20170403-git SIBLINGS (cl+ssl.test)) */
+ (NAME trivial-features FILENAME trivial-features) (NAME flexi-streams FILENAME flexi-streams) (NAME cffi FILENAME cffi)
+ (NAME bordeaux-threads FILENAME bordeaux-threads) (NAME alexandria FILENAME alexandria))
+ DEPENDENCIES (uiop trivial-gray-streams trivial-garbage trivial-features flexi-streams cffi bordeaux-threads alexandria) VERSION cl+ssl-20170725-git
+ SIBLINGS (cl+ssl.test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-aa.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-aa.nix
index 5057ddbd9d1..ab800bc1780 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-aa.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-aa.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''cl-aa'';
- version = ''cl-vectors-20170516-git'';
+ version = ''cl-vectors-20170630-git'';
description = ''cl-aa: polygon rasterizer'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-vectors/2017-05-16/cl-vectors-20170516-git.tgz'';
- sha256 = ''0j7cdg6akq5giv8rgbxdv8rwpzkv98r5bv78p5nnrixpprvjhvzx'';
+ url = ''http://beta.quicklisp.org/archive/cl-vectors/2017-06-30/cl-vectors-20170630-git.tgz'';
+ sha256 = ''0820qwi6pp8683rqp37x9l9shm0vh873bc4p9q38cz56ck7il740'';
};
packageName = "cl-aa";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM cl-aa DESCRIPTION cl-aa: polygon rasterizer SHA256 0j7cdg6akq5giv8rgbxdv8rwpzkv98r5bv78p5nnrixpprvjhvzx URL
- http://beta.quicklisp.org/archive/cl-vectors/2017-05-16/cl-vectors-20170516-git.tgz MD5 0258ae7face22f2035c1a85379ee0aae NAME cl-aa TESTNAME NIL FILENAME
- cl-aa DEPS NIL DEPENDENCIES NIL VERSION cl-vectors-20170516-git SIBLINGS (cl-aa-misc cl-paths-ttf cl-paths cl-vectors)) */
+/* (SYSTEM cl-aa DESCRIPTION cl-aa: polygon rasterizer SHA256 0820qwi6pp8683rqp37x9l9shm0vh873bc4p9q38cz56ck7il740 URL
+ http://beta.quicklisp.org/archive/cl-vectors/2017-06-30/cl-vectors-20170630-git.tgz MD5 cee3bb14adbba3142b782c646f7651ce NAME cl-aa TESTNAME NIL FILENAME
+ cl-aa DEPS NIL DEPENDENCIES NIL VERSION cl-vectors-20170630-git SIBLINGS (cl-aa-misc cl-paths-ttf cl-paths cl-vectors)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cli.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cli.nix
new file mode 100644
index 00000000000..f5bee7c03d2
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-cli.nix
@@ -0,0 +1,35 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''cl-cli'';
+ version = ''20151218-git'';
+
+ description = ''Command line parser'';
+
+ deps = [ args."split-sequence" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz'';
+ sha256 = ''0d097wjprljghkai1yacvjqmjm1mwpa46yxbacjnwps8pqwh18ay'';
+ };
+
+ packageName = "cl-cli";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/cl-cli[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM cl-cli DESCRIPTION Command line parser SHA256 0d097wjprljghkai1yacvjqmjm1mwpa46yxbacjnwps8pqwh18ay URL
+ http://beta.quicklisp.org/archive/cl-cli/2015-12-18/cl-cli-20151218-git.tgz MD5 820e5c7dde6800fcfa44b1fbc7a9d62b NAME cl-cli TESTNAME NIL FILENAME cl-cli
+ DEPS ((NAME split-sequence FILENAME split-sequence)) DEPENDENCIES (split-sequence) VERSION 20151218-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-dbi.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-dbi.nix
index 489147c881b..54f3380f490 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-dbi.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-dbi.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''cl-dbi'';
- version = ''20170124-git'';
+ version = ''20170725-git'';
description = '''';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-dbi/2017-01-24/cl-dbi-20170124-git.tgz'';
- sha256 = ''0aqfcxbxmc9q3lagaarx0bqncbwjjv0wrskm6lkzy1fp94sik0qj'';
+ url = ''http://beta.quicklisp.org/archive/cl-dbi/2017-07-25/cl-dbi-20170725-git.tgz'';
+ sha256 = ''1gmd5y44nidqmxw7zk0mxl4mgl3mcjf1v05gjdslp3ginzznrqzl'';
};
packageName = "cl-dbi";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM cl-dbi DESCRIPTION NIL SHA256 0aqfcxbxmc9q3lagaarx0bqncbwjjv0wrskm6lkzy1fp94sik0qj URL
- http://beta.quicklisp.org/archive/cl-dbi/2017-01-24/cl-dbi-20170124-git.tgz MD5 c48d284eda4aac1ff9a10891884f52e5 NAME cl-dbi TESTNAME NIL FILENAME cl-dbi
- DEPS NIL DEPENDENCIES NIL VERSION 20170124-git SIBLINGS (dbd-mysql dbd-postgres dbd-sqlite3 dbi-test dbi)) */
+/* (SYSTEM cl-dbi DESCRIPTION NIL SHA256 1gmd5y44nidqmxw7zk0mxl4mgl3mcjf1v05gjdslp3ginzznrqzl URL
+ http://beta.quicklisp.org/archive/cl-dbi/2017-07-25/cl-dbi-20170725-git.tgz MD5 a9fe67b7fea2640cea9708342a1347bd NAME cl-dbi TESTNAME NIL FILENAME cl-dbi
+ DEPS NIL DEPENDENCIES NIL VERSION 20170725-git SIBLINGS (dbd-mysql dbd-postgres dbd-sqlite3 dbi-test dbi)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-emb.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-emb.nix
index 067e09ab0e1..06a834ff145 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-emb.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-emb.nix
@@ -5,7 +5,7 @@ rec {
description = ''A templating system for Common Lisp'';
- deps = [ ];
+ deps = [ args."cl-ppcre" ];
src = fetchurl {
url = ''http://beta.quicklisp.org/archive/cl-emb/2017-02-27/cl-emb-20170227-git.tgz'';
@@ -32,4 +32,4 @@ rec {
}
/* (SYSTEM cl-emb DESCRIPTION A templating system for Common Lisp SHA256 03n97xvh3v8bz1p75v1vhryfkjm74v0cr5jwg4rakq9zkchhfk80 URL
http://beta.quicklisp.org/archive/cl-emb/2017-02-27/cl-emb-20170227-git.tgz MD5 01d850432cc2f8e920e50b4b36e42d42 NAME cl-emb TESTNAME NIL FILENAME cl-emb
- DEPS NIL DEPENDENCIES NIL VERSION 20170227-git SIBLINGS NIL) */
+ DEPS ((NAME cl-ppcre FILENAME cl-ppcre)) DEPENDENCIES (cl-ppcre) VERSION 20170227-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-paths-ttf.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-paths-ttf.nix
index 964c94c95d5..27f4ef1b71a 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-paths-ttf.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-paths-ttf.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''cl-paths-ttf'';
- version = ''cl-vectors-20170516-git'';
+ version = ''cl-vectors-20170630-git'';
description = ''cl-paths-ttf: vectorial paths manipulation'';
- deps = [ ];
+ deps = [ args."zpb-ttf" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-vectors/2017-05-16/cl-vectors-20170516-git.tgz'';
- sha256 = ''0j7cdg6akq5giv8rgbxdv8rwpzkv98r5bv78p5nnrixpprvjhvzx'';
+ url = ''http://beta.quicklisp.org/archive/cl-vectors/2017-06-30/cl-vectors-20170630-git.tgz'';
+ sha256 = ''0820qwi6pp8683rqp37x9l9shm0vh873bc4p9q38cz56ck7il740'';
};
packageName = "cl-paths-ttf";
@@ -30,6 +30,7 @@ rec {
'';
};
}
-/* (SYSTEM cl-paths-ttf DESCRIPTION cl-paths-ttf: vectorial paths manipulation SHA256 0j7cdg6akq5giv8rgbxdv8rwpzkv98r5bv78p5nnrixpprvjhvzx URL
- http://beta.quicklisp.org/archive/cl-vectors/2017-05-16/cl-vectors-20170516-git.tgz MD5 0258ae7face22f2035c1a85379ee0aae NAME cl-paths-ttf TESTNAME NIL
- FILENAME cl-paths-ttf DEPS NIL DEPENDENCIES NIL VERSION cl-vectors-20170516-git SIBLINGS (cl-aa-misc cl-aa cl-paths cl-vectors)) */
+/* (SYSTEM cl-paths-ttf DESCRIPTION cl-paths-ttf: vectorial paths manipulation SHA256 0820qwi6pp8683rqp37x9l9shm0vh873bc4p9q38cz56ck7il740 URL
+ http://beta.quicklisp.org/archive/cl-vectors/2017-06-30/cl-vectors-20170630-git.tgz MD5 cee3bb14adbba3142b782c646f7651ce NAME cl-paths-ttf TESTNAME NIL
+ FILENAME cl-paths-ttf DEPS ((NAME zpb-ttf FILENAME zpb-ttf)) DEPENDENCIES (zpb-ttf) VERSION cl-vectors-20170630-git SIBLINGS
+ (cl-aa-misc cl-aa cl-paths cl-vectors)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ppcre-template.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ppcre-template.nix
index cf46246063f..6d1b67e28c0 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ppcre-template.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-ppcre-template.nix
@@ -1,7 +1,7 @@
args @ { fetchurl, ... }:
rec {
baseName = ''cl-ppcre-template'';
- version = ''cl-unification-20170516-git'';
+ version = ''cl-unification-20170630-git'';
description = ''A system used to conditionally load the CL-PPCRE Template.
@@ -9,11 +9,11 @@ This system is not required and it is handled only if CL-PPCRE is
available. If it is, then the library provides the
REGULAR-EXPRESSION-TEMPLATE.'';
- deps = [ ];
+ deps = [ args."cl-ppcre" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-unification/2017-05-16/cl-unification-20170516-git.tgz'';
- sha256 = ''0yg2i0vn11skfz0b1zc8wnsqr24gf7fc4hzmwrwj15iz3xzqy9b0'';
+ url = ''http://beta.quicklisp.org/archive/cl-unification/2017-06-30/cl-unification-20170630-git.tgz'';
+ sha256 = ''063xcf2ib3gdpjr39bgkaj6msylzdhbdjsj458w08iyidbxivwlz'';
};
packageName = "cl-ppcre-template";
@@ -39,6 +39,6 @@ REGULAR-EXPRESSION-TEMPLATE.'';
This system is not required and it is handled only if CL-PPCRE is
available. If it is, then the library provides the
REGULAR-EXPRESSION-TEMPLATE.
- SHA256 0yg2i0vn11skfz0b1zc8wnsqr24gf7fc4hzmwrwj15iz3xzqy9b0 URL http://beta.quicklisp.org/archive/cl-unification/2017-05-16/cl-unification-20170516-git.tgz
- MD5 70bcdd486f3444ddd41b5c2c3add119c NAME cl-ppcre-template TESTNAME NIL FILENAME cl-ppcre-template DEPS NIL DEPENDENCIES NIL VERSION
- cl-unification-20170516-git SIBLINGS (cl-unification-lib cl-unification-test cl-unification)) */
+ SHA256 063xcf2ib3gdpjr39bgkaj6msylzdhbdjsj458w08iyidbxivwlz URL http://beta.quicklisp.org/archive/cl-unification/2017-06-30/cl-unification-20170630-git.tgz
+ MD5 f6bf197ca8c79c935efe3a3c25953044 NAME cl-ppcre-template TESTNAME NIL FILENAME cl-ppcre-template DEPS ((NAME cl-ppcre FILENAME cl-ppcre)) DEPENDENCIES
+ (cl-ppcre) VERSION cl-unification-20170630-git SIBLINGS (cl-unification-lib cl-unification-test cl-unification)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unicode.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unicode.nix
index 8b0d35253f4..95d8db3b0cf 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unicode.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unicode.nix
@@ -5,7 +5,7 @@ rec {
description = ''Portable Unicode Library'';
- deps = [ ];
+ deps = [ args."cl-unicode_slash_base" ];
src = fetchurl {
url = ''http://beta.quicklisp.org/archive/cl-unicode/2014-12-17/cl-unicode-0.1.5.tgz'';
@@ -32,4 +32,4 @@ rec {
}
/* (SYSTEM cl-unicode DESCRIPTION Portable Unicode Library SHA256 1jd5qq5ji6l749c4x415z22y9r0k9z18pdi9p9fqvamzh854i46n URL
http://beta.quicklisp.org/archive/cl-unicode/2014-12-17/cl-unicode-0.1.5.tgz MD5 2fd456537bd670126da84466226bc5c5 NAME cl-unicode TESTNAME NIL FILENAME
- cl-unicode DEPS NIL DEPENDENCIES NIL VERSION 0.1.5 SIBLINGS NIL) */
+ cl-unicode DEPS ((NAME cl-unicode/base FILENAME cl-unicode_slash_base)) DEPENDENCIES (cl-unicode/base) VERSION 0.1.5 SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unicode_slash_base.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unicode_slash_base.nix
new file mode 100644
index 00000000000..50a4227fc40
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unicode_slash_base.nix
@@ -0,0 +1,35 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''cl-unicode_slash_base'';
+ version = ''cl-unicode-0.1.5'';
+
+ description = '''';
+
+ deps = [ args."cl-ppcre" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/cl-unicode/2014-12-17/cl-unicode-0.1.5.tgz'';
+ sha256 = ''1jd5qq5ji6l749c4x415z22y9r0k9z18pdi9p9fqvamzh854i46n'';
+ };
+
+ packageName = "cl-unicode/base";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/cl-unicode/base[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM cl-unicode/base DESCRIPTION NIL SHA256 1jd5qq5ji6l749c4x415z22y9r0k9z18pdi9p9fqvamzh854i46n URL
+ http://beta.quicklisp.org/archive/cl-unicode/2014-12-17/cl-unicode-0.1.5.tgz MD5 2fd456537bd670126da84466226bc5c5 NAME cl-unicode/base TESTNAME NIL
+ FILENAME cl-unicode_slash_base DEPS ((NAME cl-ppcre FILENAME cl-ppcre)) DEPENDENCIES (cl-ppcre) VERSION cl-unicode-0.1.5 SIBLINGS (cl-unicode)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unification.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unification.nix
index 7c5e16973ef..93d93b18010 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unification.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-unification.nix
@@ -1,7 +1,7 @@
args @ { fetchurl, ... }:
rec {
baseName = ''cl-unification'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''The CL-UNIFICATION system.
@@ -10,8 +10,8 @@ The system contains the definitions for the 'unification' machinery.'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-unification/2017-05-16/cl-unification-20170516-git.tgz'';
- sha256 = ''0yg2i0vn11skfz0b1zc8wnsqr24gf7fc4hzmwrwj15iz3xzqy9b0'';
+ url = ''http://beta.quicklisp.org/archive/cl-unification/2017-06-30/cl-unification-20170630-git.tgz'';
+ sha256 = ''063xcf2ib3gdpjr39bgkaj6msylzdhbdjsj458w08iyidbxivwlz'';
};
packageName = "cl-unification";
@@ -35,6 +35,6 @@ The system contains the definitions for the 'unification' machinery.'';
/* (SYSTEM cl-unification DESCRIPTION The CL-UNIFICATION system.
The system contains the definitions for the 'unification' machinery.
- SHA256 0yg2i0vn11skfz0b1zc8wnsqr24gf7fc4hzmwrwj15iz3xzqy9b0 URL http://beta.quicklisp.org/archive/cl-unification/2017-05-16/cl-unification-20170516-git.tgz
- MD5 70bcdd486f3444ddd41b5c2c3add119c NAME cl-unification TESTNAME NIL FILENAME cl-unification DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS
+ SHA256 063xcf2ib3gdpjr39bgkaj6msylzdhbdjsj458w08iyidbxivwlz URL http://beta.quicklisp.org/archive/cl-unification/2017-06-30/cl-unification-20170630-git.tgz
+ MD5 f6bf197ca8c79c935efe3a3c25953044 NAME cl-unification TESTNAME NIL FILENAME cl-unification DEPS NIL DEPENDENCIES NIL VERSION 20170630-git SIBLINGS
(cl-unification-lib cl-unification-test cl-ppcre-template)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-vectors.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-vectors.nix
index fef996a845b..081bad6047e 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-vectors.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/cl-vectors.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''cl-vectors'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''cl-paths: vectorial paths manipulation'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-vectors/2017-05-16/cl-vectors-20170516-git.tgz'';
- sha256 = ''0j7cdg6akq5giv8rgbxdv8rwpzkv98r5bv78p5nnrixpprvjhvzx'';
+ url = ''http://beta.quicklisp.org/archive/cl-vectors/2017-06-30/cl-vectors-20170630-git.tgz'';
+ sha256 = ''0820qwi6pp8683rqp37x9l9shm0vh873bc4p9q38cz56ck7il740'';
};
packageName = "cl-vectors";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM cl-vectors DESCRIPTION cl-paths: vectorial paths manipulation SHA256 0j7cdg6akq5giv8rgbxdv8rwpzkv98r5bv78p5nnrixpprvjhvzx URL
- http://beta.quicklisp.org/archive/cl-vectors/2017-05-16/cl-vectors-20170516-git.tgz MD5 0258ae7face22f2035c1a85379ee0aae NAME cl-vectors TESTNAME NIL
- FILENAME cl-vectors DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS (cl-aa-misc cl-aa cl-paths-ttf cl-paths)) */
+/* (SYSTEM cl-vectors DESCRIPTION cl-paths: vectorial paths manipulation SHA256 0820qwi6pp8683rqp37x9l9shm0vh873bc4p9q38cz56ck7il740 URL
+ http://beta.quicklisp.org/archive/cl-vectors/2017-06-30/cl-vectors-20170630-git.tgz MD5 cee3bb14adbba3142b782c646f7651ce NAME cl-vectors TESTNAME NIL
+ FILENAME cl-vectors DEPS NIL DEPENDENCIES NIL VERSION 20170630-git SIBLINGS (cl-aa-misc cl-aa cl-paths-ttf cl-paths)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-socket.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-socket.nix
new file mode 100644
index 00000000000..94b763417d6
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-socket.nix
@@ -0,0 +1,39 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''clack-socket'';
+ version = ''clack-20170630-git'';
+
+ description = '''';
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/clack/2017-06-30/clack-20170630-git.tgz'';
+ sha256 = ''1z3xrwldfzd4nagk2d0gw5hspnr35r6kh19ksqr3kyf6wpn2lybg'';
+ };
+
+ packageName = "clack-socket";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/clack-socket[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM clack-socket DESCRIPTION NIL SHA256 1z3xrwldfzd4nagk2d0gw5hspnr35r6kh19ksqr3kyf6wpn2lybg URL
+ http://beta.quicklisp.org/archive/clack/2017-06-30/clack-20170630-git.tgz MD5 845b25a3cc6f3a1ee1dbd6de73dfb815 NAME clack-socket TESTNAME NIL FILENAME
+ clack-socket DEPS NIL DEPENDENCIES NIL VERSION clack-20170630-git SIBLINGS
+ (clack-handler-fcgi clack-handler-hunchentoot clack-handler-toot clack-handler-wookie clack-test clack-v1-compat clack t-clack-handler-fcgi
+ t-clack-handler-hunchentoot t-clack-handler-toot t-clack-handler-wookie t-clack-v1-compat clack-middleware-auth-basic clack-middleware-clsql
+ clack-middleware-csrf clack-middleware-dbi clack-middleware-oauth clack-middleware-postmodern clack-middleware-rucksack clack-session-store-dbi
+ t-clack-middleware-auth-basic t-clack-middleware-csrf)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-v1-compat.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-v1-compat.nix
index e00c430581f..98b706498dd 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-v1-compat.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack-v1-compat.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''clack-v1-compat'';
- version = ''clack-20170516-git'';
+ version = ''clack-20170630-git'';
description = '''';
- deps = [ ];
+ deps = [ args."uiop" args."trivial-types" args."trivial-mimes" args."trivial-backtrace" args."split-sequence" args."quri" args."marshal" args."local-time" args."lack-util" args."lack" args."ironclad" args."http-body" args."flexi-streams" args."cl-syntax-annot" args."cl-ppcre" args."cl-base64" args."circular-streams" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/clack/2017-05-16/clack-20170516-git.tgz'';
- sha256 = ''1161lsv739z02ijp0p95cb3vbybqhffp03sipb7l1vmmj24d8wgw'';
+ url = ''http://beta.quicklisp.org/archive/clack/2017-06-30/clack-20170630-git.tgz'';
+ sha256 = ''1z3xrwldfzd4nagk2d0gw5hspnr35r6kh19ksqr3kyf6wpn2lybg'';
};
packageName = "clack-v1-compat";
@@ -30,9 +30,19 @@ rec {
'';
};
}
-/* (SYSTEM clack-v1-compat DESCRIPTION NIL SHA256 1161lsv739z02ijp0p95cb3vbybqhffp03sipb7l1vmmj24d8wgw URL
- http://beta.quicklisp.org/archive/clack/2017-05-16/clack-20170516-git.tgz MD5 ecda950881158c3bf209b29f4717fb0a NAME clack-v1-compat TESTNAME NIL FILENAME
- clack-v1-compat DEPS NIL DEPENDENCIES NIL VERSION clack-20170516-git SIBLINGS
+/* (SYSTEM clack-v1-compat DESCRIPTION NIL SHA256 1z3xrwldfzd4nagk2d0gw5hspnr35r6kh19ksqr3kyf6wpn2lybg URL
+ http://beta.quicklisp.org/archive/clack/2017-06-30/clack-20170630-git.tgz MD5 845b25a3cc6f3a1ee1dbd6de73dfb815 NAME clack-v1-compat TESTNAME NIL FILENAME
+ clack-v1-compat DEPS
+ ((NAME uiop FILENAME uiop) (NAME trivial-types FILENAME trivial-types) (NAME trivial-mimes FILENAME trivial-mimes)
+ (NAME trivial-backtrace FILENAME trivial-backtrace) (NAME split-sequence FILENAME split-sequence) (NAME quri FILENAME quri)
+ (NAME marshal FILENAME marshal) (NAME local-time FILENAME local-time) (NAME lack-util FILENAME lack-util) (NAME lack FILENAME lack)
+ (NAME ironclad FILENAME ironclad) (NAME http-body FILENAME http-body) (NAME flexi-streams FILENAME flexi-streams)
+ (NAME cl-syntax-annot FILENAME cl-syntax-annot) (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-base64 FILENAME cl-base64)
+ (NAME circular-streams FILENAME circular-streams) (NAME alexandria FILENAME alexandria))
+ DEPENDENCIES
+ (uiop trivial-types trivial-mimes trivial-backtrace split-sequence quri marshal local-time lack-util lack ironclad http-body flexi-streams cl-syntax-annot
+ cl-ppcre cl-base64 circular-streams alexandria)
+ VERSION clack-20170630-git SIBLINGS
(clack-handler-fcgi clack-handler-hunchentoot clack-handler-toot clack-handler-wookie clack-socket clack-test clack t-clack-handler-fcgi
t-clack-handler-hunchentoot t-clack-handler-toot t-clack-handler-wookie t-clack-v1-compat clack-middleware-auth-basic clack-middleware-clsql
clack-middleware-csrf clack-middleware-dbi clack-middleware-oauth clack-middleware-postmodern clack-middleware-rucksack clack-session-store-dbi
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack.nix
index 43c75bdd6e8..bfd86a7b0de 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/clack.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''clack'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''Web application environment for Common Lisp'';
- deps = [ ];
+ deps = [ args."uiop" args."lack-util" args."lack-middleware-backtrace" args."lack" args."bordeaux-threads" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/clack/2017-05-16/clack-20170516-git.tgz'';
- sha256 = ''1161lsv739z02ijp0p95cb3vbybqhffp03sipb7l1vmmj24d8wgw'';
+ url = ''http://beta.quicklisp.org/archive/clack/2017-06-30/clack-20170630-git.tgz'';
+ sha256 = ''1z3xrwldfzd4nagk2d0gw5hspnr35r6kh19ksqr3kyf6wpn2lybg'';
};
packageName = "clack";
@@ -30,9 +30,11 @@ rec {
'';
};
}
-/* (SYSTEM clack DESCRIPTION Web application environment for Common Lisp SHA256 1161lsv739z02ijp0p95cb3vbybqhffp03sipb7l1vmmj24d8wgw URL
- http://beta.quicklisp.org/archive/clack/2017-05-16/clack-20170516-git.tgz MD5 ecda950881158c3bf209b29f4717fb0a NAME clack TESTNAME NIL FILENAME clack DEPS
- NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS
+/* (SYSTEM clack DESCRIPTION Web application environment for Common Lisp SHA256 1z3xrwldfzd4nagk2d0gw5hspnr35r6kh19ksqr3kyf6wpn2lybg URL
+ http://beta.quicklisp.org/archive/clack/2017-06-30/clack-20170630-git.tgz MD5 845b25a3cc6f3a1ee1dbd6de73dfb815 NAME clack TESTNAME NIL FILENAME clack DEPS
+ ((NAME uiop FILENAME uiop) (NAME lack-util FILENAME lack-util) (NAME lack-middleware-backtrace FILENAME lack-middleware-backtrace)
+ (NAME lack FILENAME lack) (NAME bordeaux-threads FILENAME bordeaux-threads) (NAME alexandria FILENAME alexandria))
+ DEPENDENCIES (uiop lack-util lack-middleware-backtrace lack bordeaux-threads alexandria) VERSION 20170630-git SIBLINGS
(clack-handler-fcgi clack-handler-hunchentoot clack-handler-toot clack-handler-wookie clack-socket clack-test clack-v1-compat t-clack-handler-fcgi
t-clack-handler-hunchentoot t-clack-handler-toot t-clack-handler-wookie t-clack-v1-compat clack-middleware-auth-basic clack-middleware-clsql
clack-middleware-csrf clack-middleware-dbi clack-middleware-oauth clack-middleware-postmodern clack-middleware-rucksack clack-session-store-dbi
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/closer-mop.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/closer-mop.nix
index d73de2e941c..4c1d85ec3be 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/closer-mop.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/closer-mop.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''closer-mop'';
- version = ''20170516-git'';
+ version = ''20170725-git'';
description = ''Closer to MOP is a compatibility layer that rectifies many of the absent or incorrect CLOS MOP features across a broad range of Common Lisp implementations.'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/closer-mop/2017-05-16/closer-mop-20170516-git.tgz'';
- sha256 = ''072nf6d0gg76vkb1wkkzlfcck5ksril4anmjbmylbrwm3mn61p5w'';
+ url = ''http://beta.quicklisp.org/archive/closer-mop/2017-07-25/closer-mop-20170725-git.tgz'';
+ sha256 = ''0qc4zh4zicv3zm4bw8c3s2r2bjbx2bp31j69lwiz1mdl9xg0nhsc'';
};
packageName = "closer-mop";
@@ -32,5 +32,5 @@ rec {
}
/* (SYSTEM closer-mop DESCRIPTION
Closer to MOP is a compatibility layer that rectifies many of the absent or incorrect CLOS MOP features across a broad range of Common Lisp implementations.
- SHA256 072nf6d0gg76vkb1wkkzlfcck5ksril4anmjbmylbrwm3mn61p5w URL http://beta.quicklisp.org/archive/closer-mop/2017-05-16/closer-mop-20170516-git.tgz MD5
- 169ba62f7f8f436e45f182cbe7dd8614 NAME closer-mop TESTNAME NIL FILENAME closer-mop DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS NIL) */
+ SHA256 0qc4zh4zicv3zm4bw8c3s2r2bjbx2bp31j69lwiz1mdl9xg0nhsc URL http://beta.quicklisp.org/archive/closer-mop/2017-07-25/closer-mop-20170725-git.tgz MD5
+ 308f9e8e4ea4573c7b6820055b6f171d NAME closer-mop TESTNAME NIL FILENAME closer-mop DEPS NIL DEPENDENCIES NIL VERSION 20170725-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/clss.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/clss.nix
index 81e50db852b..31ff76c0f09 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/clss.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/clss.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''clss'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''A DOM tree searching engine based on CSS selectors.'';
- deps = [ ];
+ deps = [ args."array-utils" args."plump" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/clss/2017-05-16/clss-20170516-git.tgz'';
- sha256 = ''1c3fizlf4509hj4l6m9gjc64ijvlwnavwvvw3198cvvn6lp49r5f'';
+ url = ''http://beta.quicklisp.org/archive/clss/2017-06-30/clss-20170630-git.tgz'';
+ sha256 = ''0kdkzx7z997lzbf331p4fkqhri0ind7agknl9y992x917m9y4rn0'';
};
packageName = "clss";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM clss DESCRIPTION A DOM tree searching engine based on CSS selectors. SHA256 1c3fizlf4509hj4l6m9gjc64ijvlwnavwvvw3198cvvn6lp49r5f URL
- http://beta.quicklisp.org/archive/clss/2017-05-16/clss-20170516-git.tgz MD5 2e69a5197694a9654c0e9c5fced4152f NAME clss TESTNAME NIL FILENAME clss DEPS NIL
- DEPENDENCIES NIL VERSION 20170516-git SIBLINGS NIL) */
+/* (SYSTEM clss DESCRIPTION A DOM tree searching engine based on CSS selectors. SHA256 0kdkzx7z997lzbf331p4fkqhri0ind7agknl9y992x917m9y4rn0 URL
+ http://beta.quicklisp.org/archive/clss/2017-06-30/clss-20170630-git.tgz MD5 61bbadf22391940813bfc66dfd59d304 NAME clss TESTNAME NIL FILENAME clss DEPS
+ ((NAME array-utils FILENAME array-utils) (NAME plump FILENAME plump)) DEPENDENCIES (array-utils plump) VERSION 20170630-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/clx.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/clx.nix
index b47a7cbd7d4..b85ccdd48f5 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/clx.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/clx.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''clx'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''An implementation of the X Window System protocol in Lisp.'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/clx/2017-05-16/clx-20170516-git.tgz'';
- sha256 = ''00lzm4m74bm5gvy6nss8ab735ddnijbsvimlrkx37sp9v3zln5gs'';
+ url = ''http://beta.quicklisp.org/archive/clx/2017-06-30/clx-20170630-git.tgz'';
+ sha256 = ''0di8h3galjylgmy30qqwa4q8mb5505rcag0y4ia7mv7sls51jbp7'';
};
packageName = "clx";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM clx DESCRIPTION An implementation of the X Window System protocol in Lisp. SHA256 00lzm4m74bm5gvy6nss8ab735ddnijbsvimlrkx37sp9v3zln5gs URL
- http://beta.quicklisp.org/archive/clx/2017-05-16/clx-20170516-git.tgz MD5 1f5d7963802a503d7f7fcf73e1f42dd8 NAME clx TESTNAME NIL FILENAME clx DEPS NIL
- DEPENDENCIES NIL VERSION 20170516-git SIBLINGS NIL) */
+/* (SYSTEM clx DESCRIPTION An implementation of the X Window System protocol in Lisp. SHA256 0di8h3galjylgmy30qqwa4q8mb5505rcag0y4ia7mv7sls51jbp7 URL
+ http://beta.quicklisp.org/archive/clx/2017-06-30/clx-20170630-git.tgz MD5 ccfec3f35979df3bead0b73adc1d798a NAME clx TESTNAME NIL FILENAME clx DEPS NIL
+ DEPENDENCIES NIL VERSION 20170630-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-mysql.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-mysql.nix
index 93d0e3d599b..7251da67498 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-mysql.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-mysql.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''dbd-mysql'';
- version = ''cl-dbi-20170124-git'';
+ version = ''cl-dbi-20170725-git'';
description = ''Database driver for MySQL.'';
deps = [ args."cl-syntax-annot" args."cl-syntax" args."cl-mysql" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-dbi/2017-01-24/cl-dbi-20170124-git.tgz'';
- sha256 = ''0aqfcxbxmc9q3lagaarx0bqncbwjjv0wrskm6lkzy1fp94sik0qj'';
+ url = ''http://beta.quicklisp.org/archive/cl-dbi/2017-07-25/cl-dbi-20170725-git.tgz'';
+ sha256 = ''1gmd5y44nidqmxw7zk0mxl4mgl3mcjf1v05gjdslp3ginzznrqzl'';
};
packageName = "dbd-mysql";
@@ -30,7 +30,7 @@ rec {
'';
};
}
-/* (SYSTEM dbd-mysql DESCRIPTION Database driver for MySQL. SHA256 0aqfcxbxmc9q3lagaarx0bqncbwjjv0wrskm6lkzy1fp94sik0qj URL
- http://beta.quicklisp.org/archive/cl-dbi/2017-01-24/cl-dbi-20170124-git.tgz MD5 c48d284eda4aac1ff9a10891884f52e5 NAME dbd-mysql TESTNAME NIL FILENAME
+/* (SYSTEM dbd-mysql DESCRIPTION Database driver for MySQL. SHA256 1gmd5y44nidqmxw7zk0mxl4mgl3mcjf1v05gjdslp3ginzznrqzl URL
+ http://beta.quicklisp.org/archive/cl-dbi/2017-07-25/cl-dbi-20170725-git.tgz MD5 a9fe67b7fea2640cea9708342a1347bd NAME dbd-mysql TESTNAME NIL FILENAME
dbd-mysql DEPS ((NAME cl-syntax-annot FILENAME cl-syntax-annot) (NAME cl-syntax FILENAME cl-syntax) (NAME cl-mysql FILENAME cl-mysql)) DEPENDENCIES
- (cl-syntax-annot cl-syntax cl-mysql) VERSION cl-dbi-20170124-git SIBLINGS (cl-dbi dbd-postgres dbd-sqlite3 dbi-test dbi)) */
+ (cl-syntax-annot cl-syntax cl-mysql) VERSION cl-dbi-20170725-git SIBLINGS (cl-dbi dbd-postgres dbd-sqlite3 dbi-test dbi)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-postgres.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-postgres.nix
index 3c963b5141e..2d71945081c 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-postgres.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-postgres.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''dbd-postgres'';
- version = ''cl-dbi-20170124-git'';
+ version = ''cl-dbi-20170725-git'';
description = ''Database driver for PostgreSQL.'';
deps = [ args."trivial-garbage" args."cl-syntax-annot" args."cl-syntax" args."cl-postgres" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-dbi/2017-01-24/cl-dbi-20170124-git.tgz'';
- sha256 = ''0aqfcxbxmc9q3lagaarx0bqncbwjjv0wrskm6lkzy1fp94sik0qj'';
+ url = ''http://beta.quicklisp.org/archive/cl-dbi/2017-07-25/cl-dbi-20170725-git.tgz'';
+ sha256 = ''1gmd5y44nidqmxw7zk0mxl4mgl3mcjf1v05gjdslp3ginzznrqzl'';
};
packageName = "dbd-postgres";
@@ -30,9 +30,9 @@ rec {
'';
};
}
-/* (SYSTEM dbd-postgres DESCRIPTION Database driver for PostgreSQL. SHA256 0aqfcxbxmc9q3lagaarx0bqncbwjjv0wrskm6lkzy1fp94sik0qj URL
- http://beta.quicklisp.org/archive/cl-dbi/2017-01-24/cl-dbi-20170124-git.tgz MD5 c48d284eda4aac1ff9a10891884f52e5 NAME dbd-postgres TESTNAME NIL FILENAME
+/* (SYSTEM dbd-postgres DESCRIPTION Database driver for PostgreSQL. SHA256 1gmd5y44nidqmxw7zk0mxl4mgl3mcjf1v05gjdslp3ginzznrqzl URL
+ http://beta.quicklisp.org/archive/cl-dbi/2017-07-25/cl-dbi-20170725-git.tgz MD5 a9fe67b7fea2640cea9708342a1347bd NAME dbd-postgres TESTNAME NIL FILENAME
dbd-postgres DEPS
((NAME trivial-garbage FILENAME trivial-garbage) (NAME cl-syntax-annot FILENAME cl-syntax-annot) (NAME cl-syntax FILENAME cl-syntax)
(NAME cl-postgres FILENAME cl-postgres))
- DEPENDENCIES (trivial-garbage cl-syntax-annot cl-syntax cl-postgres) VERSION cl-dbi-20170124-git SIBLINGS (cl-dbi dbd-mysql dbd-sqlite3 dbi-test dbi)) */
+ DEPENDENCIES (trivial-garbage cl-syntax-annot cl-syntax cl-postgres) VERSION cl-dbi-20170725-git SIBLINGS (cl-dbi dbd-mysql dbd-sqlite3 dbi-test dbi)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-sqlite3.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-sqlite3.nix
index e19565fc277..42f5d82966e 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-sqlite3.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/dbd-sqlite3.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''dbd-sqlite3'';
- version = ''cl-dbi-20170124-git'';
+ version = ''cl-dbi-20170725-git'';
description = ''Database driver for SQLite3.'';
deps = [ args."uiop" args."sqlite" args."cl-syntax-annot" args."cl-syntax" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-dbi/2017-01-24/cl-dbi-20170124-git.tgz'';
- sha256 = ''0aqfcxbxmc9q3lagaarx0bqncbwjjv0wrskm6lkzy1fp94sik0qj'';
+ url = ''http://beta.quicklisp.org/archive/cl-dbi/2017-07-25/cl-dbi-20170725-git.tgz'';
+ sha256 = ''1gmd5y44nidqmxw7zk0mxl4mgl3mcjf1v05gjdslp3ginzznrqzl'';
};
packageName = "dbd-sqlite3";
@@ -30,8 +30,8 @@ rec {
'';
};
}
-/* (SYSTEM dbd-sqlite3 DESCRIPTION Database driver for SQLite3. SHA256 0aqfcxbxmc9q3lagaarx0bqncbwjjv0wrskm6lkzy1fp94sik0qj URL
- http://beta.quicklisp.org/archive/cl-dbi/2017-01-24/cl-dbi-20170124-git.tgz MD5 c48d284eda4aac1ff9a10891884f52e5 NAME dbd-sqlite3 TESTNAME NIL FILENAME
+/* (SYSTEM dbd-sqlite3 DESCRIPTION Database driver for SQLite3. SHA256 1gmd5y44nidqmxw7zk0mxl4mgl3mcjf1v05gjdslp3ginzznrqzl URL
+ http://beta.quicklisp.org/archive/cl-dbi/2017-07-25/cl-dbi-20170725-git.tgz MD5 a9fe67b7fea2640cea9708342a1347bd NAME dbd-sqlite3 TESTNAME NIL FILENAME
dbd-sqlite3 DEPS
((NAME uiop FILENAME uiop) (NAME sqlite FILENAME sqlite) (NAME cl-syntax-annot FILENAME cl-syntax-annot) (NAME cl-syntax FILENAME cl-syntax)) DEPENDENCIES
- (uiop sqlite cl-syntax-annot cl-syntax) VERSION cl-dbi-20170124-git SIBLINGS (cl-dbi dbd-mysql dbd-postgres dbi-test dbi)) */
+ (uiop sqlite cl-syntax-annot cl-syntax) VERSION cl-dbi-20170725-git SIBLINGS (cl-dbi dbd-mysql dbd-postgres dbi-test dbi)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/dexador.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/dexador.nix
index 54f1cf78e40..1eaeddd3118 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/dexador.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/dexador.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''dexador'';
- version = ''20170516-git'';
+ version = ''20170725-git'';
description = ''Yet another HTTP client for Common Lisp'';
- deps = [ ];
+ deps = [ args."usocket" args."trivial-mimes" args."trivial-gray-streams" args."quri" args."fast-io" args."fast-http" args."cl-reexport" args."cl-ppcre" args."cl-cookie" args."cl-base64" args."cl+ssl" args."chunga" args."chipz" args."bordeaux-threads" args."babel" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/dexador/2017-05-16/dexador-20170516-git.tgz'';
- sha256 = ''129ar4z972wl3prhzsfy0mb4r41b0j179zs3mglq6gl7awafq8r6'';
+ url = ''http://beta.quicklisp.org/archive/dexador/2017-07-25/dexador-20170725-git.tgz'';
+ sha256 = ''1x5jw07ydvc7rdw4jyzf3zb2dg2mspbkp9ysjaqpxlvkpdmqdmyl'';
};
packageName = "dexador";
@@ -30,6 +30,15 @@ rec {
'';
};
}
-/* (SYSTEM dexador DESCRIPTION Yet another HTTP client for Common Lisp SHA256 129ar4z972wl3prhzsfy0mb4r41b0j179zs3mglq6gl7awafq8r6 URL
- http://beta.quicklisp.org/archive/dexador/2017-05-16/dexador-20170516-git.tgz MD5 463972f0b98fd2a641ce2bfab4400dc7 NAME dexador TESTNAME NIL FILENAME
- dexador DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS (dexador-test)) */
+/* (SYSTEM dexador DESCRIPTION Yet another HTTP client for Common Lisp SHA256 1x5jw07ydvc7rdw4jyzf3zb2dg2mspbkp9ysjaqpxlvkpdmqdmyl URL
+ http://beta.quicklisp.org/archive/dexador/2017-07-25/dexador-20170725-git.tgz MD5 1ab5cda1ba8d5c81859349e6a5b99b29 NAME dexador TESTNAME NIL FILENAME
+ dexador DEPS
+ ((NAME usocket FILENAME usocket) (NAME trivial-mimes FILENAME trivial-mimes) (NAME trivial-gray-streams FILENAME trivial-gray-streams)
+ (NAME quri FILENAME quri) (NAME fast-io FILENAME fast-io) (NAME fast-http FILENAME fast-http) (NAME cl-reexport FILENAME cl-reexport)
+ (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-cookie FILENAME cl-cookie) (NAME cl-base64 FILENAME cl-base64) (NAME cl+ssl FILENAME cl+ssl)
+ (NAME chunga FILENAME chunga) (NAME chipz FILENAME chipz) (NAME bordeaux-threads FILENAME bordeaux-threads) (NAME babel FILENAME babel)
+ (NAME alexandria FILENAME alexandria))
+ DEPENDENCIES
+ (usocket trivial-mimes trivial-gray-streams quri fast-io fast-http cl-reexport cl-ppcre cl-cookie cl-base64 cl+ssl chunga chipz bordeaux-threads babel
+ alexandria)
+ VERSION 20170725-git SIBLINGS (dexador-test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/documentation-utils.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/documentation-utils.nix
index d9bacd96af8..06710c9a4d1 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/documentation-utils.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/documentation-utils.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''documentation-utils'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''A few simple tools to help you with documenting your library.'';
- deps = [ ];
+ deps = [ args."trivial-indent" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/documentation-utils/2017-05-16/documentation-utils-20170516-git.tgz'';
- sha256 = ''0jb6sv85xx0vl8p9qrhfsvz130d4gw6hpgnvw1mx7skhi6zs82s1'';
+ url = ''http://beta.quicklisp.org/archive/documentation-utils/2017-06-30/documentation-utils-20170630-git.tgz'';
+ sha256 = ''0iz3r5llv0rv8l37fdcjrx9zibbaqf9nd6xhy5n2hf024997bbks'';
};
packageName = "documentation-utils";
@@ -31,6 +31,7 @@ rec {
};
}
/* (SYSTEM documentation-utils DESCRIPTION A few simple tools to help you with documenting your library. SHA256
- 0jb6sv85xx0vl8p9qrhfsvz130d4gw6hpgnvw1mx7skhi6zs82s1 URL
- http://beta.quicklisp.org/archive/documentation-utils/2017-05-16/documentation-utils-20170516-git.tgz MD5 5e04421eb7fd48d8abe1757b5211e310 NAME
- documentation-utils TESTNAME NIL FILENAME documentation-utils DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS NIL) */
+ 0iz3r5llv0rv8l37fdcjrx9zibbaqf9nd6xhy5n2hf024997bbks URL
+ http://beta.quicklisp.org/archive/documentation-utils/2017-06-30/documentation-utils-20170630-git.tgz MD5 7c0541d4207ba221a251c8c3ec7a8cac NAME
+ documentation-utils TESTNAME NIL FILENAME documentation-utils DEPS ((NAME trivial-indent FILENAME trivial-indent)) DEPENDENCIES (trivial-indent) VERSION
+ 20170630-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/drakma.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/drakma.nix
index 16bbac4d03a..33d83765ed6 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/drakma.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/drakma.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''drakma'';
- version = ''2.0.2'';
+ version = ''v2.0.3'';
description = ''Full-featured http/https client based on usocket'';
deps = [ args."usocket" args."puri" args."flexi-streams" args."cl-ppcre" args."cl-base64" args."cl+ssl" args."chunga" args."chipz" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/drakma/2015-10-31/drakma-2.0.2.tgz'';
- sha256 = ''1bpwh19fxd1ncvwai2ab2363bk6qkpwch5sa4csbiawcihyawh2z'';
+ url = ''http://beta.quicklisp.org/archive/drakma/2017-06-30/drakma-v2.0.3.tgz'';
+ sha256 = ''1xbbwd2gg17pq03bblj6imh7lq39z2w3yix6fm25509gyhs76ymd'';
};
packageName = "drakma";
@@ -30,8 +30,8 @@ rec {
'';
};
}
-/* (SYSTEM drakma DESCRIPTION Full-featured http/https client based on usocket SHA256 1bpwh19fxd1ncvwai2ab2363bk6qkpwch5sa4csbiawcihyawh2z URL
- http://beta.quicklisp.org/archive/drakma/2015-10-31/drakma-2.0.2.tgz MD5 eb51e1417c02c912c2b43bd9605dfb50 NAME drakma TESTNAME NIL FILENAME drakma DEPS
+/* (SYSTEM drakma DESCRIPTION Full-featured http/https client based on usocket SHA256 1xbbwd2gg17pq03bblj6imh7lq39z2w3yix6fm25509gyhs76ymd URL
+ http://beta.quicklisp.org/archive/drakma/2017-06-30/drakma-v2.0.3.tgz MD5 3578c67b445cf982414ff78b2fb8d295 NAME drakma TESTNAME NIL FILENAME drakma DEPS
((NAME usocket FILENAME usocket) (NAME puri FILENAME puri) (NAME flexi-streams FILENAME flexi-streams) (NAME cl-ppcre FILENAME cl-ppcre)
(NAME cl-base64 FILENAME cl-base64) (NAME cl+ssl FILENAME cl+ssl) (NAME chunga FILENAME chunga) (NAME chipz FILENAME chipz))
- DEPENDENCIES (usocket puri flexi-streams cl-ppcre cl-base64 cl+ssl chunga chipz) VERSION 2.0.2 SIBLINGS (drakma-test)) */
+ DEPENDENCIES (usocket puri flexi-streams cl-ppcre cl-base64 cl+ssl chunga chipz) VERSION v2.0.3 SIBLINGS (drakma-test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/esrap.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/esrap.nix
index 49c0ff6c8ce..1aeded93799 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/esrap.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/esrap.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''esrap'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''A Packrat / Parsing Grammar / TDPL parser for Common Lisp.'';
- deps = [ ];
+ deps = [ args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/esrap/2017-05-16/esrap-20170516-git.tgz'';
- sha256 = ''06vksigkiprhmxkms2xfwq8ff09z4i4287k87n0m4id0nfl8rfq8'';
+ url = ''http://beta.quicklisp.org/archive/esrap/2017-06-30/esrap-20170630-git.tgz'';
+ sha256 = ''172ph55kb3yr0gciybza1rbi6khlnz4vriijvcjkn6m79kdnk1xh'';
};
packageName = "esrap";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM esrap DESCRIPTION A Packrat / Parsing Grammar / TDPL parser for Common Lisp. SHA256 06vksigkiprhmxkms2xfwq8ff09z4i4287k87n0m4id0nfl8rfq8 URL
- http://beta.quicklisp.org/archive/esrap/2017-05-16/esrap-20170516-git.tgz MD5 6116df281050ee58e6ba195727154ac0 NAME esrap TESTNAME NIL FILENAME esrap DEPS
- NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS NIL) */
+/* (SYSTEM esrap DESCRIPTION A Packrat / Parsing Grammar / TDPL parser for Common Lisp. SHA256 172ph55kb3yr0gciybza1rbi6khlnz4vriijvcjkn6m79kdnk1xh URL
+ http://beta.quicklisp.org/archive/esrap/2017-06-30/esrap-20170630-git.tgz MD5 bfabfebc5f5d49106df318ae2798ac45 NAME esrap TESTNAME NIL FILENAME esrap DEPS
+ ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION 20170630-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-http.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-http.nix
index 7b100d891b9..1d518e7b327 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-http.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-http.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''fast-http'';
- version = ''20170227-git'';
+ version = ''20170630-git'';
description = ''A fast HTTP protocol parser in Common Lisp'';
- deps = [ ];
+ deps = [ args."xsubseq" args."smart-buffer" args."proc-parse" args."cl-utilities" args."babel" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/fast-http/2017-02-27/fast-http-20170227-git.tgz'';
- sha256 = ''0kpfn4i5r12hfnb3j00cl9wq5dcl32n3q67lr2qsb6y3giz335hx'';
+ url = ''http://beta.quicklisp.org/archive/fast-http/2017-06-30/fast-http-20170630-git.tgz'';
+ sha256 = ''0fkqwbwqc9a783ynjbszimcrannpqq4ja6wcf8ybgizr4zvsgj29'';
};
packageName = "fast-http";
@@ -30,6 +30,9 @@ rec {
'';
};
}
-/* (SYSTEM fast-http DESCRIPTION A fast HTTP protocol parser in Common Lisp SHA256 0kpfn4i5r12hfnb3j00cl9wq5dcl32n3q67lr2qsb6y3giz335hx URL
- http://beta.quicklisp.org/archive/fast-http/2017-02-27/fast-http-20170227-git.tgz MD5 5c5e2073702e7504a30c739e25c47c69 NAME fast-http TESTNAME NIL FILENAME
- fast-http DEPS NIL DEPENDENCIES NIL VERSION 20170227-git SIBLINGS (fast-http-test)) */
+/* (SYSTEM fast-http DESCRIPTION A fast HTTP protocol parser in Common Lisp SHA256 0fkqwbwqc9a783ynjbszimcrannpqq4ja6wcf8ybgizr4zvsgj29 URL
+ http://beta.quicklisp.org/archive/fast-http/2017-06-30/fast-http-20170630-git.tgz MD5 d117d59c1f71965e0c32b19e6790cf9a NAME fast-http TESTNAME NIL FILENAME
+ fast-http DEPS
+ ((NAME xsubseq FILENAME xsubseq) (NAME smart-buffer FILENAME smart-buffer) (NAME proc-parse FILENAME proc-parse) (NAME cl-utilities FILENAME cl-utilities)
+ (NAME babel FILENAME babel) (NAME alexandria FILENAME alexandria))
+ DEPENDENCIES (xsubseq smart-buffer proc-parse cl-utilities babel alexandria) VERSION 20170630-git SIBLINGS (fast-http-test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-io.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-io.nix
index 0e819493109..566b3d7bdc3 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-io.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/fast-io.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''fast-io'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''Alternative I/O mechanism to a stream or vector'';
- deps = [ ];
+ deps = [ args."trivial-gray-streams" args."static-vectors" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/fast-io/2017-05-16/fast-io-20170516-git.tgz'';
- sha256 = ''1aw7fjvd7bpq2fh99r48f81vhmqczn8f4jk33i9cgpx217gxigm1'';
+ url = ''http://beta.quicklisp.org/archive/fast-io/2017-06-30/fast-io-20170630-git.tgz'';
+ sha256 = ''0wg40jv6hn4ijks026d2aaz5pr3zfxxzaakyzzjka6981g9rgkrg'';
};
packageName = "fast-io";
@@ -30,6 +30,8 @@ rec {
'';
};
}
-/* (SYSTEM fast-io DESCRIPTION Alternative I/O mechanism to a stream or vector SHA256 1aw7fjvd7bpq2fh99r48f81vhmqczn8f4jk33i9cgpx217gxigm1 URL
- http://beta.quicklisp.org/archive/fast-io/2017-05-16/fast-io-20170516-git.tgz MD5 a9a96c0f6260271446fd43bf2e51e90f NAME fast-io TESTNAME NIL FILENAME
- fast-io DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS (fast-io-test)) */
+/* (SYSTEM fast-io DESCRIPTION Alternative I/O mechanism to a stream or vector SHA256 0wg40jv6hn4ijks026d2aaz5pr3zfxxzaakyzzjka6981g9rgkrg URL
+ http://beta.quicklisp.org/archive/fast-io/2017-06-30/fast-io-20170630-git.tgz MD5 34bfe5f306f2e0f6da128fe024ee242d NAME fast-io TESTNAME NIL FILENAME
+ fast-io DEPS
+ ((NAME trivial-gray-streams FILENAME trivial-gray-streams) (NAME static-vectors FILENAME static-vectors) (NAME alexandria FILENAME alexandria))
+ DEPENDENCIES (trivial-gray-streams static-vectors alexandria) VERSION 20170630-git SIBLINGS (fast-io-test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/fiveam.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/fiveam.nix
new file mode 100644
index 00000000000..7f04b5eb893
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/fiveam.nix
@@ -0,0 +1,37 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''fiveam'';
+ version = ''v1.3'';
+
+ description = ''A simple regression testing framework'';
+
+ deps = [ args."alexandria" args."net_dot_didierverna_dot_asdf-flv" args."trivial-backtrace" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/fiveam/2016-08-25/fiveam-v1.3.tgz'';
+ sha256 = ''0cdjl3lg1xib5mc3rnw80n58zxmf3hz1xa567lq4jvh8kzxl30q2'';
+ };
+
+ packageName = "fiveam";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/fiveam[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM fiveam DESCRIPTION A simple regression testing framework SHA256 0cdjl3lg1xib5mc3rnw80n58zxmf3hz1xa567lq4jvh8kzxl30q2 URL
+ http://beta.quicklisp.org/archive/fiveam/2016-08-25/fiveam-v1.3.tgz MD5 bd03a588915f834031eeae9139c51aa4 NAME fiveam TESTNAME NIL FILENAME fiveam DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME net.didierverna.asdf-flv FILENAME net_dot_didierverna_dot_asdf-flv)
+ (NAME trivial-backtrace FILENAME trivial-backtrace))
+ DEPENDENCIES (alexandria net.didierverna.asdf-flv trivial-backtrace) VERSION v1.3 SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/form-fiddle.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/form-fiddle.nix
index 754d2f8c869..f2d5c3a64ba 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/form-fiddle.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/form-fiddle.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''form-fiddle'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''A collection of utilities to destructure lambda forms.'';
- deps = [ ];
+ deps = [ args."documentation-utils" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/form-fiddle/2017-05-16/form-fiddle-20170516-git.tgz'';
- sha256 = ''00h38gh8absx9pclwlxgknbmbnj20sngkzaj2qa6whg5kgbgj4fh'';
+ url = ''http://beta.quicklisp.org/archive/form-fiddle/2017-06-30/form-fiddle-20170630-git.tgz'';
+ sha256 = ''0w4isi9y2h6vswq418hj50223aac89iadl71y86wxdlznm3kdvjf'';
};
packageName = "form-fiddle";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM form-fiddle DESCRIPTION A collection of utilities to destructure lambda forms. SHA256 00h38gh8absx9pclwlxgknbmbnj20sngkzaj2qa6whg5kgbgj4fh URL
- http://beta.quicklisp.org/archive/form-fiddle/2017-05-16/form-fiddle-20170516-git.tgz MD5 8f0d8b920f6da0c7fd939b7096c30235 NAME form-fiddle TESTNAME NIL
- FILENAME form-fiddle DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS NIL) */
+/* (SYSTEM form-fiddle DESCRIPTION A collection of utilities to destructure lambda forms. SHA256 0w4isi9y2h6vswq418hj50223aac89iadl71y86wxdlznm3kdvjf URL
+ http://beta.quicklisp.org/archive/form-fiddle/2017-06-30/form-fiddle-20170630-git.tgz MD5 9c8eb18dfedebcf43718cc259c910aa1 NAME form-fiddle TESTNAME NIL
+ FILENAME form-fiddle DEPS ((NAME documentation-utils FILENAME documentation-utils)) DEPENDENCIES (documentation-utils) VERSION 20170630-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/fset.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/fset.nix
new file mode 100644
index 00000000000..c3900b7cd26
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/fset.nix
@@ -0,0 +1,40 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''fset'';
+ version = ''20150113-git'';
+
+ description = ''A functional set-theoretic collections library.
+See: http://www.ergy.com/FSet.html
+'';
+
+ deps = [ args."misc-extensions" args."mt19937" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/fset/2015-01-13/fset-20150113-git.tgz'';
+ sha256 = ''1k9c48jahw8i4zhx6dc96n0jzxjy2ascr2wng9hmm8vjhhqs5sl0'';
+ };
+
+ packageName = "fset";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/fset[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM fset DESCRIPTION A functional set-theoretic collections library.
+See: http://www.ergy.com/FSet.html
+
+ SHA256 1k9c48jahw8i4zhx6dc96n0jzxjy2ascr2wng9hmm8vjhhqs5sl0 URL http://beta.quicklisp.org/archive/fset/2015-01-13/fset-20150113-git.tgz MD5
+ 89f958cc900e712aed0750b336efbe15 NAME fset TESTNAME NIL FILENAME fset DEPS
+ ((NAME misc-extensions FILENAME misc-extensions) (NAME mt19937 FILENAME mt19937)) DEPENDENCIES (misc-extensions mt19937) VERSION 20150113-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu.dwim.asdf.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu.dwim.asdf.nix
deleted file mode 100644
index f36b4e931ec..00000000000
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu.dwim.asdf.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-args @ { fetchurl, ... }:
-rec {
- baseName = ''hu.dwim.asdf'';
- version = ''20170516-darcs'';
-
- description = ''Various ASDF extensions such as attached test and documentation system, explicit development support, etc.'';
-
- deps = [ ];
-
- src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/hu.dwim.asdf/2017-05-16/hu.dwim.asdf-20170516-darcs.tgz'';
- sha256 = ''0ky8xby4zkqslgcb4glns8g4v8fzijx4v1888kil3ncxbvz0aqpw'';
- };
-
- packageName = "hu.dwim.asdf";
-
- overrides = x: {
- postInstall = ''
- find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/hu.dwim.asdf[.]asd${"$"}' |
- while read f; do
- env -i \
- NIX_LISP="$NIX_LISP" \
- NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
- (asdf:load-system :$(basename "$f" .asd))
- (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
- (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
- )'" \
- "$out"/bin/*-lisp-launcher.sh ||
- mv "$f"{,.sibling}; done || true
- '';
- };
-}
-/* (SYSTEM hu.dwim.asdf DESCRIPTION Various ASDF extensions such as attached test and documentation system, explicit development support, etc. SHA256
- 0ky8xby4zkqslgcb4glns8g4v8fzijx4v1888kil3ncxbvz0aqpw URL http://beta.quicklisp.org/archive/hu.dwim.asdf/2017-05-16/hu.dwim.asdf-20170516-darcs.tgz MD5
- 041447371d36ceb17f58854671c052f1 NAME hu.dwim.asdf TESTNAME NIL FILENAME hu.dwim.asdf DEPS NIL DEPENDENCIES NIL VERSION 20170516-darcs SIBLINGS
- (hu.dwim.asdf.documentation)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu.dwim.def.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu.dwim.def.nix
deleted file mode 100644
index 2aedd0f6704..00000000000
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu.dwim.def.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-args @ { fetchurl, ... }:
-rec {
- baseName = ''hu.dwim.def'';
- version = ''20170516-darcs'';
-
- description = ''General purpose, homogenous, extensible definer macro.'';
-
- deps = [ ];
-
- src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/hu.dwim.def/2017-05-16/hu.dwim.def-20170516-darcs.tgz'';
- sha256 = ''1x333jiihgqydv234q8wjsy5n8nfr6n4mpwq08f1b497if4fc7by'';
- };
-
- packageName = "hu.dwim.def";
-
- overrides = x: {
- postInstall = ''
- find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/hu.dwim.def[.]asd${"$"}' |
- while read f; do
- env -i \
- NIX_LISP="$NIX_LISP" \
- NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
- (asdf:load-system :$(basename "$f" .asd))
- (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
- (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
- )'" \
- "$out"/bin/*-lisp-launcher.sh ||
- mv "$f"{,.sibling}; done || true
- '';
- };
-}
-/* (SYSTEM hu.dwim.def DESCRIPTION General purpose, homogenous, extensible definer macro. SHA256 1x333jiihgqydv234q8wjsy5n8nfr6n4mpwq08f1b497if4fc7by URL
- http://beta.quicklisp.org/archive/hu.dwim.def/2017-05-16/hu.dwim.def-20170516-darcs.tgz MD5 bd13311ab8da2a67f9247e825369b294 NAME hu.dwim.def TESTNAME NIL
- FILENAME hu.dwim.def DEPS NIL DEPENDENCIES NIL VERSION 20170516-darcs SIBLINGS
- (hu.dwim.def+cl-l10n hu.dwim.def+contextl hu.dwim.def+hu.dwim.common hu.dwim.def+hu.dwim.delico hu.dwim.def+swank hu.dwim.def.documentation
- hu.dwim.def.namespace hu.dwim.def.test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix
index b358ff0562d..b0c127e97e6 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''hu_dot_dwim_dot_asdf'';
- version = ''20170516-darcs'';
+ version = ''20170630-darcs'';
description = ''Various ASDF extensions such as attached test and documentation system, explicit development support, etc.'';
- deps = [ ];
+ deps = [ args."uiop" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/hu.dwim.asdf/2017-05-16/hu.dwim.asdf-20170516-darcs.tgz'';
- sha256 = ''0ky8xby4zkqslgcb4glns8g4v8fzijx4v1888kil3ncxbvz0aqpw'';
+ url = ''http://beta.quicklisp.org/archive/hu.dwim.asdf/2017-06-30/hu.dwim.asdf-20170630-darcs.tgz'';
+ sha256 = ''151l4s0cd6jxhz1q635zhyq48b1sz9ns88agj92r0f2q8igdx0fb'';
};
packageName = "hu.dwim.asdf";
@@ -31,6 +31,6 @@ rec {
};
}
/* (SYSTEM hu.dwim.asdf DESCRIPTION Various ASDF extensions such as attached test and documentation system, explicit development support, etc. SHA256
- 0ky8xby4zkqslgcb4glns8g4v8fzijx4v1888kil3ncxbvz0aqpw URL http://beta.quicklisp.org/archive/hu.dwim.asdf/2017-05-16/hu.dwim.asdf-20170516-darcs.tgz MD5
- 041447371d36ceb17f58854671c052f1 NAME hu.dwim.asdf TESTNAME NIL FILENAME hu_dot_dwim_dot_asdf DEPS NIL DEPENDENCIES NIL VERSION 20170516-darcs SIBLINGS
- (hu.dwim.asdf.documentation)) */
+ 151l4s0cd6jxhz1q635zhyq48b1sz9ns88agj92r0f2q8igdx0fb URL http://beta.quicklisp.org/archive/hu.dwim.asdf/2017-06-30/hu.dwim.asdf-20170630-darcs.tgz MD5
+ b086cb36b6a88641497b20c39937c9d4 NAME hu.dwim.asdf TESTNAME NIL FILENAME hu_dot_dwim_dot_asdf DEPS ((NAME uiop FILENAME uiop)) DEPENDENCIES (uiop) VERSION
+ 20170630-darcs SIBLINGS (hu.dwim.asdf.documentation)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_def.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_def.nix
index 5e5e56be2e5..2dc7c45b39c 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_def.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/hu_dot_dwim_dot_def.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''hu_dot_dwim_dot_def'';
- version = ''20170516-darcs'';
+ version = ''20170630-darcs'';
description = ''General purpose, homogenous, extensible definer macro.'';
- deps = [ ];
+ deps = [ args."metabang-bind" args."iterate" args."anaphora" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/hu.dwim.def/2017-05-16/hu.dwim.def-20170516-darcs.tgz'';
- sha256 = ''1x333jiihgqydv234q8wjsy5n8nfr6n4mpwq08f1b497if4fc7by'';
+ url = ''http://beta.quicklisp.org/archive/hu.dwim.def/2017-06-30/hu.dwim.def-20170630-darcs.tgz'';
+ sha256 = ''0flqwj4lxwsl8yknhzzpa1jqr2iza3gnz3vxk645j4z81ynx1cjf'';
};
packageName = "hu.dwim.def";
@@ -30,8 +30,10 @@ rec {
'';
};
}
-/* (SYSTEM hu.dwim.def DESCRIPTION General purpose, homogenous, extensible definer macro. SHA256 1x333jiihgqydv234q8wjsy5n8nfr6n4mpwq08f1b497if4fc7by URL
- http://beta.quicklisp.org/archive/hu.dwim.def/2017-05-16/hu.dwim.def-20170516-darcs.tgz MD5 bd13311ab8da2a67f9247e825369b294 NAME hu.dwim.def TESTNAME NIL
- FILENAME hu_dot_dwim_dot_def DEPS NIL DEPENDENCIES NIL VERSION 20170516-darcs SIBLINGS
+/* (SYSTEM hu.dwim.def DESCRIPTION General purpose, homogenous, extensible definer macro. SHA256 0flqwj4lxwsl8yknhzzpa1jqr2iza3gnz3vxk645j4z81ynx1cjf URL
+ http://beta.quicklisp.org/archive/hu.dwim.def/2017-06-30/hu.dwim.def-20170630-darcs.tgz MD5 def7e4172cbf5ec86a5d51f644d71f81 NAME hu.dwim.def TESTNAME NIL
+ FILENAME hu_dot_dwim_dot_def DEPS
+ ((NAME metabang-bind FILENAME metabang-bind) (NAME iterate FILENAME iterate) (NAME anaphora FILENAME anaphora) (NAME alexandria FILENAME alexandria))
+ DEPENDENCIES (metabang-bind iterate anaphora alexandria) VERSION 20170630-darcs SIBLINGS
(hu.dwim.def+cl-l10n hu.dwim.def+contextl hu.dwim.def+hu.dwim.common hu.dwim.def+hu.dwim.delico hu.dwim.def+swank hu.dwim.def.documentation
hu.dwim.def.namespace hu.dwim.def.test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/hunchentoot.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/hunchentoot.nix
index e0a2d194f9e..320dcfb7a03 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/hunchentoot.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/hunchentoot.nix
@@ -1,7 +1,7 @@
args @ { fetchurl, ... }:
rec {
baseName = ''hunchentoot'';
- version = ''1.2.35'';
+ version = ''v1.2.37'';
description = ''Hunchentoot is a HTTP server based on USOCKET and
BORDEAUX-THREADS. It supports HTTP 1.1, serves static files, has a
@@ -11,8 +11,8 @@ rec {
deps = [ args."bordeaux-threads" args."chunga" args."cl+ssl" args."cl-base64" args."cl-fad" args."cl-ppcre" args."flexi-streams" args."md5" args."rfc2388" args."trivial-backtrace" args."usocket" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/hunchentoot/2016-03-18/hunchentoot-1.2.35.tgz'';
- sha256 = ''0gp2rgndkijjydb1x3p8414ii1z372gzdy945jy0491bcbhygj74'';
+ url = ''http://beta.quicklisp.org/archive/hunchentoot/2017-07-25/hunchentoot-v1.2.37.tgz'';
+ sha256 = ''1r0p8qasd2zy9a8l58jysz5bb1gj79cz2ikr93in0my8q44pg9lc'';
};
packageName = "hunchentoot";
@@ -37,9 +37,9 @@ rec {
BORDEAUX-THREADS. It supports HTTP 1.1, serves static files, has a
simple framework for user-defined handlers and can be extended
through subclassing.
- SHA256 0gp2rgndkijjydb1x3p8414ii1z372gzdy945jy0491bcbhygj74 URL http://beta.quicklisp.org/archive/hunchentoot/2016-03-18/hunchentoot-1.2.35.tgz MD5
- d1ce17dec454cab119c0f263e8a176d1 NAME hunchentoot TESTNAME NIL FILENAME hunchentoot DEPS
+ SHA256 1r0p8qasd2zy9a8l58jysz5bb1gj79cz2ikr93in0my8q44pg9lc URL http://beta.quicklisp.org/archive/hunchentoot/2017-07-25/hunchentoot-v1.2.37.tgz MD5
+ 3fd6a6c4dd0d32db7b71828b52494325 NAME hunchentoot TESTNAME NIL FILENAME hunchentoot DEPS
((NAME bordeaux-threads FILENAME bordeaux-threads) (NAME chunga FILENAME chunga) (NAME cl+ssl FILENAME cl+ssl) (NAME cl-base64 FILENAME cl-base64)
(NAME cl-fad FILENAME cl-fad) (NAME cl-ppcre FILENAME cl-ppcre) (NAME flexi-streams FILENAME flexi-streams) (NAME md5 FILENAME md5)
(NAME rfc2388 FILENAME rfc2388) (NAME trivial-backtrace FILENAME trivial-backtrace) (NAME usocket FILENAME usocket))
- DEPENDENCIES (bordeaux-threads chunga cl+ssl cl-base64 cl-fad cl-ppcre flexi-streams md5 rfc2388 trivial-backtrace usocket) VERSION 1.2.35 SIBLINGS NIL) */
+ DEPENDENCIES (bordeaux-threads chunga cl+ssl cl-base64 cl-fad cl-ppcre flexi-streams md5 rfc2388 trivial-backtrace usocket) VERSION v1.2.37 SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib.nix
index 404c7a5dee9..ba7ed0ab7d7 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''iolib'';
- version = ''v0.8.2'';
+ version = ''v0.8.3'';
description = ''I/O library.'';
- deps = [ ];
+ deps = [ args."iolib_slash_streams" args."iolib_slash_sockets" args."iolib_slash_multiplex" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/iolib/2017-05-16/iolib-v0.8.2.tgz'';
- sha256 = ''1k0wkkgzy6fmq28dw6xbx86l1j9x3nrmrzpv6jcmcdb078h820pr'';
+ url = ''http://beta.quicklisp.org/archive/iolib/2017-06-30/iolib-v0.8.3.tgz'';
+ sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c'';
};
packageName = "iolib";
@@ -30,6 +30,8 @@ rec {
'';
};
}
-/* (SYSTEM iolib DESCRIPTION I/O library. SHA256 1k0wkkgzy6fmq28dw6xbx86l1j9x3nrmrzpv6jcmcdb078h820pr URL
- http://beta.quicklisp.org/archive/iolib/2017-05-16/iolib-v0.8.2.tgz MD5 cd2d4d2893b7e6d0502d9a16e717a2e9 NAME iolib TESTNAME NIL FILENAME iolib DEPS NIL
- DEPENDENCIES NIL VERSION v0.8.2 SIBLINGS (iolib.asdf iolib.base iolib.common-lisp iolib.conf iolib.examples iolib.grovel iolib.tests)) */
+/* (SYSTEM iolib DESCRIPTION I/O library. SHA256 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL
+ http://beta.quicklisp.org/archive/iolib/2017-06-30/iolib-v0.8.3.tgz MD5 fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib TESTNAME NIL FILENAME iolib DEPS
+ ((NAME iolib/streams FILENAME iolib_slash_streams) (NAME iolib/sockets FILENAME iolib_slash_sockets) (NAME iolib/multiplex FILENAME iolib_slash_multiplex))
+ DEPENDENCIES (iolib/streams iolib/sockets iolib/multiplex) VERSION v0.8.3 SIBLINGS
+ (iolib.asdf iolib.base iolib.common-lisp iolib.conf iolib.examples iolib.grovel iolib.tests)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_multiplex.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_multiplex.nix
new file mode 100644
index 00000000000..a0d26182a8e
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_multiplex.nix
@@ -0,0 +1,36 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''iolib_slash_multiplex'';
+ version = ''iolib-v0.8.3'';
+
+ description = ''I/O multiplexing library.'';
+
+ deps = [ args."iolib_slash_syscalls" args."cffi" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/iolib/2017-06-30/iolib-v0.8.3.tgz'';
+ sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c'';
+ };
+
+ packageName = "iolib/multiplex";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/iolib/multiplex[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM iolib/multiplex DESCRIPTION I/O multiplexing library. SHA256 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL
+ http://beta.quicklisp.org/archive/iolib/2017-06-30/iolib-v0.8.3.tgz MD5 fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib/multiplex TESTNAME NIL FILENAME
+ iolib_slash_multiplex DEPS ((NAME iolib/syscalls FILENAME iolib_slash_syscalls) (NAME cffi FILENAME cffi)) DEPENDENCIES (iolib/syscalls cffi) VERSION
+ iolib-v0.8.3 SIBLINGS (iolib iolib.asdf iolib.base iolib.common-lisp iolib.conf iolib.examples iolib.grovel iolib.tests)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_sockets.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_sockets.nix
new file mode 100644
index 00000000000..a6088dabf97
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_sockets.nix
@@ -0,0 +1,39 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''iolib_slash_sockets'';
+ version = ''iolib-v0.8.3'';
+
+ description = ''Socket library.'';
+
+ deps = [ args."swap-bytes" args."iolib_slash_syscalls" args."iolib_slash_streams" args."idna" args."cffi" args."bordeaux-threads" args."babel" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/iolib/2017-06-30/iolib-v0.8.3.tgz'';
+ sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c'';
+ };
+
+ packageName = "iolib/sockets";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/iolib/sockets[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM iolib/sockets DESCRIPTION Socket library. SHA256 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL
+ http://beta.quicklisp.org/archive/iolib/2017-06-30/iolib-v0.8.3.tgz MD5 fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib/sockets TESTNAME NIL FILENAME
+ iolib_slash_sockets DEPS
+ ((NAME swap-bytes FILENAME swap-bytes) (NAME iolib/syscalls FILENAME iolib_slash_syscalls) (NAME iolib/streams FILENAME iolib_slash_streams)
+ (NAME idna FILENAME idna) (NAME cffi FILENAME cffi) (NAME bordeaux-threads FILENAME bordeaux-threads) (NAME babel FILENAME babel))
+ DEPENDENCIES (swap-bytes iolib/syscalls iolib/streams idna cffi bordeaux-threads babel) VERSION iolib-v0.8.3 SIBLINGS
+ (iolib iolib.asdf iolib.base iolib.common-lisp iolib.conf iolib.examples iolib.grovel iolib.tests)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_streams.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_streams.nix
new file mode 100644
index 00000000000..9caebf0db26
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_streams.nix
@@ -0,0 +1,36 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''iolib_slash_streams'';
+ version = ''iolib-v0.8.3'';
+
+ description = ''Gray streams.'';
+
+ deps = [ args."iolib_slash_multiplex" args."cffi" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/iolib/2017-06-30/iolib-v0.8.3.tgz'';
+ sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c'';
+ };
+
+ packageName = "iolib/streams";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/iolib/streams[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM iolib/streams DESCRIPTION Gray streams. SHA256 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL
+ http://beta.quicklisp.org/archive/iolib/2017-06-30/iolib-v0.8.3.tgz MD5 fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib/streams TESTNAME NIL FILENAME
+ iolib_slash_streams DEPS ((NAME iolib/multiplex FILENAME iolib_slash_multiplex) (NAME cffi FILENAME cffi)) DEPENDENCIES (iolib/multiplex cffi) VERSION
+ iolib-v0.8.3 SIBLINGS (iolib iolib.asdf iolib.base iolib.common-lisp iolib.conf iolib.examples iolib.grovel iolib.tests)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_syscalls.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_syscalls.nix
new file mode 100644
index 00000000000..0ef71a6a95c
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/iolib_slash_syscalls.nix
@@ -0,0 +1,36 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''iolib_slash_syscalls'';
+ version = ''iolib-v0.8.3'';
+
+ description = ''Syscalls and foreign types.'';
+
+ deps = [ args."trivial-features" args."cffi" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/iolib/2017-06-30/iolib-v0.8.3.tgz'';
+ sha256 = ''12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c'';
+ };
+
+ packageName = "iolib/syscalls";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/iolib/syscalls[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM iolib/syscalls DESCRIPTION Syscalls and foreign types. SHA256 12gsvsjyxmclwidcjvyrfvd0773ib54a3qzmf33hmgc9knxlli7c URL
+ http://beta.quicklisp.org/archive/iolib/2017-06-30/iolib-v0.8.3.tgz MD5 fc28d4cad6f8e43972df3baa6a8ac45c NAME iolib/syscalls TESTNAME NIL FILENAME
+ iolib_slash_syscalls DEPS ((NAME trivial-features FILENAME trivial-features) (NAME cffi FILENAME cffi)) DEPENDENCIES (trivial-features cffi) VERSION
+ iolib-v0.8.3 SIBLINGS (iolib iolib.asdf iolib.base iolib.common-lisp iolib.conf iolib.examples iolib.grovel iolib.tests)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/ironclad.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/ironclad.nix
index 944781947fa..6d8e3c4fb0a 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/ironclad.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/ironclad.nix
@@ -5,10 +5,10 @@ rec {
description = ''A cryptographic toolkit written in pure Common Lisp'';
- deps = [ ];
+ deps = [ args."nibbles" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/ironclad/2017-05-16/ironclad-v0.34.tgz'';
+ url = ''http://beta.quicklisp.org/archive/ironclad/2017-06-30/ironclad-v0.34.tgz'';
sha256 = ''08xlnzs7hzbr0sa4aff4xb0b60dxcpad7fb5xsnjn3qjs7yydxk0'';
};
@@ -31,5 +31,5 @@ rec {
};
}
/* (SYSTEM ironclad DESCRIPTION A cryptographic toolkit written in pure Common Lisp SHA256 08xlnzs7hzbr0sa4aff4xb0b60dxcpad7fb5xsnjn3qjs7yydxk0 URL
- http://beta.quicklisp.org/archive/ironclad/2017-05-16/ironclad-v0.34.tgz MD5 82db632975aa83b0dce3412c1aff4a80 NAME ironclad TESTNAME NIL FILENAME ironclad
- DEPS NIL DEPENDENCIES NIL VERSION v0.34 SIBLINGS (ironclad-text)) */
+ http://beta.quicklisp.org/archive/ironclad/2017-06-30/ironclad-v0.34.tgz MD5 82db632975aa83b0dce3412c1aff4a80 NAME ironclad TESTNAME NIL FILENAME ironclad
+ DEPS ((NAME nibbles FILENAME nibbles)) DEPENDENCIES (nibbles) VERSION v0.34 SIBLINGS (ironclad-text)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/ixf.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/ixf.nix
index 3d2da3fa6bc..93e6782f163 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/ixf.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/ixf.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''ixf'';
- version = ''cl-20170516-git'';
+ version = ''cl-20170630-git'';
description = ''Tools to handle IBM PC version of IXF file format'';
- deps = [ ];
+ deps = [ args."alexandria" args."babel" args."cl-ppcre" args."ieee-floats" args."local-time" args."md5" args."split-sequence" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-ixf/2017-05-16/cl-ixf-20170516-git.tgz'';
- sha256 = ''0x32zlayynfj6g676afl0zna63jcgf333n3izapa84y5zgqp3nwf'';
+ url = ''http://beta.quicklisp.org/archive/cl-ixf/2017-06-30/cl-ixf-20170630-git.tgz'';
+ sha256 = ''1qfmsz3lbydas7iv0bxdl4gl5ah4ydjxxqfpyini7qy0cb4wplf2'';
};
packageName = "ixf";
@@ -30,6 +30,8 @@ rec {
'';
};
}
-/* (SYSTEM ixf DESCRIPTION Tools to handle IBM PC version of IXF file format SHA256 0x32zlayynfj6g676afl0zna63jcgf333n3izapa84y5zgqp3nwf URL
- http://beta.quicklisp.org/archive/cl-ixf/2017-05-16/cl-ixf-20170516-git.tgz MD5 1c4c5ff76bb6fa9c19fe47d064c512b9 NAME ixf TESTNAME NIL FILENAME ixf DEPS
- NIL DEPENDENCIES NIL VERSION cl-20170516-git SIBLINGS NIL) */
+/* (SYSTEM ixf DESCRIPTION Tools to handle IBM PC version of IXF file format SHA256 1qfmsz3lbydas7iv0bxdl4gl5ah4ydjxxqfpyini7qy0cb4wplf2 URL
+ http://beta.quicklisp.org/archive/cl-ixf/2017-06-30/cl-ixf-20170630-git.tgz MD5 51db2caba094cac90982396cf552c847 NAME ixf TESTNAME NIL FILENAME ixf DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) (NAME cl-ppcre FILENAME cl-ppcre) (NAME ieee-floats FILENAME ieee-floats)
+ (NAME local-time FILENAME local-time) (NAME md5 FILENAME md5) (NAME split-sequence FILENAME split-sequence))
+ DEPENDENCIES (alexandria babel cl-ppcre ieee-floats local-time md5 split-sequence) VERSION cl-20170630-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/jonathan.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/jonathan.nix
index 841c210a5ae..b86efb3d8ec 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/jonathan.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/jonathan.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''jonathan'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''High performance JSON encoder and decoder. Currently support: SBCL, CCL.'';
- deps = [ ];
+ deps = [ args."trivial-types" args."proc-parse" args."fast-io" args."cl-syntax-annot" args."cl-syntax" args."cl-ppcre" args."cl-annot" args."babel" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/jonathan/2017-05-16/jonathan-20170516-git.tgz'';
- sha256 = ''00bpmarfhcms2nnghyhh02ci9rjpjvzlmy2fdvlybfmv9d48lq3q'';
+ url = ''http://beta.quicklisp.org/archive/jonathan/2017-06-30/jonathan-20170630-git.tgz'';
+ sha256 = ''0vxnxs38f6gxw51b69n09p2qmph17jkhwdvwq02sayiq3p4w10bm'';
};
packageName = "jonathan";
@@ -31,5 +31,9 @@ rec {
};
}
/* (SYSTEM jonathan DESCRIPTION High performance JSON encoder and decoder. Currently support: SBCL, CCL. SHA256
- 00bpmarfhcms2nnghyhh02ci9rjpjvzlmy2fdvlybfmv9d48lq3q URL http://beta.quicklisp.org/archive/jonathan/2017-05-16/jonathan-20170516-git.tgz MD5
- b05ccc0140e70636240f216fdc14e4d3 NAME jonathan TESTNAME NIL FILENAME jonathan DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS (jonathan-test)) */
+ 0vxnxs38f6gxw51b69n09p2qmph17jkhwdvwq02sayiq3p4w10bm URL http://beta.quicklisp.org/archive/jonathan/2017-06-30/jonathan-20170630-git.tgz MD5
+ 5d82723835164f4e3d9c4d031322eb98 NAME jonathan TESTNAME NIL FILENAME jonathan DEPS
+ ((NAME trivial-types FILENAME trivial-types) (NAME proc-parse FILENAME proc-parse) (NAME fast-io FILENAME fast-io)
+ (NAME cl-syntax-annot FILENAME cl-syntax-annot) (NAME cl-syntax FILENAME cl-syntax) (NAME cl-ppcre FILENAME cl-ppcre) (NAME cl-annot FILENAME cl-annot)
+ (NAME babel FILENAME babel))
+ DEPENDENCIES (trivial-types proc-parse fast-io cl-syntax-annot cl-syntax cl-ppcre cl-annot babel) VERSION 20170630-git SIBLINGS (jonathan-test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-middleware-backtrace.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-middleware-backtrace.nix
new file mode 100644
index 00000000000..5023dc63d42
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-middleware-backtrace.nix
@@ -0,0 +1,39 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''lack-middleware-backtrace'';
+ version = ''lack-20170725-git'';
+
+ description = '''';
+
+ deps = [ args."uiop" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/lack/2017-07-25/lack-20170725-git.tgz'';
+ sha256 = ''1c5xlya1zm232zsala03a6m10m11hgqvbgx04kxl29yz0ldp7jbp'';
+ };
+
+ packageName = "lack-middleware-backtrace";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/lack-middleware-backtrace[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM lack-middleware-backtrace DESCRIPTION NIL SHA256 1c5xlya1zm232zsala03a6m10m11hgqvbgx04kxl29yz0ldp7jbp URL
+ http://beta.quicklisp.org/archive/lack/2017-07-25/lack-20170725-git.tgz MD5 ab71d36ac49e4759806e9a2ace50ae53 NAME lack-middleware-backtrace TESTNAME NIL
+ FILENAME lack-middleware-backtrace DEPS ((NAME uiop FILENAME uiop)) DEPENDENCIES (uiop) VERSION lack-20170725-git SIBLINGS
+ (lack-component lack-middleware-accesslog lack-middleware-auth-basic lack-middleware-csrf lack-middleware-mount lack-middleware-session
+ lack-middleware-static lack-request lack-response lack-session-store-dbi lack-session-store-redis lack-test lack-util-writer-stream lack-util lack
+ t-lack-component t-lack-middleware-accesslog t-lack-middleware-auth-basic t-lack-middleware-backtrace t-lack-middleware-csrf t-lack-middleware-mount
+ t-lack-middleware-session t-lack-middleware-static t-lack-request t-lack-session-store-dbi t-lack-session-store-redis t-lack-util t-lack)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-util.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-util.nix
new file mode 100644
index 00000000000..ea5ddc3f96b
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack-util.nix
@@ -0,0 +1,40 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''lack-util'';
+ version = ''lack-20170725-git'';
+
+ description = '''';
+
+ deps = [ args."ironclad" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/lack/2017-07-25/lack-20170725-git.tgz'';
+ sha256 = ''1c5xlya1zm232zsala03a6m10m11hgqvbgx04kxl29yz0ldp7jbp'';
+ };
+
+ packageName = "lack-util";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/lack-util[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM lack-util DESCRIPTION NIL SHA256 1c5xlya1zm232zsala03a6m10m11hgqvbgx04kxl29yz0ldp7jbp URL
+ http://beta.quicklisp.org/archive/lack/2017-07-25/lack-20170725-git.tgz MD5 ab71d36ac49e4759806e9a2ace50ae53 NAME lack-util TESTNAME NIL FILENAME lack-util
+ DEPS ((NAME ironclad FILENAME ironclad)) DEPENDENCIES (ironclad) VERSION lack-20170725-git SIBLINGS
+ (lack-component lack-middleware-accesslog lack-middleware-auth-basic lack-middleware-backtrace lack-middleware-csrf lack-middleware-mount
+ lack-middleware-session lack-middleware-static lack-request lack-response lack-session-store-dbi lack-session-store-redis lack-test
+ lack-util-writer-stream lack t-lack-component t-lack-middleware-accesslog t-lack-middleware-auth-basic t-lack-middleware-backtrace t-lack-middleware-csrf
+ t-lack-middleware-mount t-lack-middleware-session t-lack-middleware-static t-lack-request t-lack-session-store-dbi t-lack-session-store-redis t-lack-util
+ t-lack)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix
index 2e8c2fe291f..0b1c36d7356 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lack.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''lack'';
- version = ''20161204-git'';
+ version = ''20170725-git'';
description = ''A minimal Clack'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/lack/2016-12-04/lack-20161204-git.tgz'';
- sha256 = ''10bnpgbh5nk9lw1xywmvh5661rq91v8sp43ds53x98865ni7flnv'';
+ url = ''http://beta.quicklisp.org/archive/lack/2017-07-25/lack-20170725-git.tgz'';
+ sha256 = ''1c5xlya1zm232zsala03a6m10m11hgqvbgx04kxl29yz0ldp7jbp'';
};
packageName = "lack";
@@ -30,9 +30,9 @@ rec {
'';
};
}
-/* (SYSTEM lack DESCRIPTION A minimal Clack SHA256 10bnpgbh5nk9lw1xywmvh5661rq91v8sp43ds53x98865ni7flnv URL
- http://beta.quicklisp.org/archive/lack/2016-12-04/lack-20161204-git.tgz MD5 bef444eeadf759226539318bee9f0ab5 NAME lack TESTNAME NIL FILENAME lack DEPS NIL
- DEPENDENCIES NIL VERSION 20161204-git SIBLINGS
+/* (SYSTEM lack DESCRIPTION A minimal Clack SHA256 1c5xlya1zm232zsala03a6m10m11hgqvbgx04kxl29yz0ldp7jbp URL
+ http://beta.quicklisp.org/archive/lack/2017-07-25/lack-20170725-git.tgz MD5 ab71d36ac49e4759806e9a2ace50ae53 NAME lack TESTNAME NIL FILENAME lack DEPS NIL
+ DEPENDENCIES NIL VERSION 20170725-git SIBLINGS
(lack-component lack-middleware-accesslog lack-middleware-auth-basic lack-middleware-backtrace lack-middleware-csrf lack-middleware-mount
lack-middleware-session lack-middleware-static lack-request lack-response lack-session-store-dbi lack-session-store-redis lack-test
lack-util-writer-stream lack-util t-lack-component t-lack-middleware-accesslog t-lack-middleware-auth-basic t-lack-middleware-backtrace
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-namespace.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-namespace.nix
new file mode 100644
index 00000000000..49ec6901fd9
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-namespace.nix
@@ -0,0 +1,36 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''lisp-namespace'';
+ version = ''20170630-git'';
+
+ description = ''Provides LISP-N --- extensible namespaces in Common Lisp.'';
+
+ deps = [ args."alexandria" ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/lisp-namespace/2017-06-30/lisp-namespace-20170630-git.tgz'';
+ sha256 = ''06mdrzjwmfynzljcs8ym8dscjlxpbbkmjfg912v68v7p2xzq6d0n'';
+ };
+
+ packageName = "lisp-namespace";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/lisp-namespace[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM lisp-namespace DESCRIPTION Provides LISP-N --- extensible namespaces in Common Lisp. SHA256 06mdrzjwmfynzljcs8ym8dscjlxpbbkmjfg912v68v7p2xzq6d0n URL
+ http://beta.quicklisp.org/archive/lisp-namespace/2017-06-30/lisp-namespace-20170630-git.tgz MD5 f3379a60f7cc896a7cff384ff25a1de5 NAME lisp-namespace
+ TESTNAME NIL FILENAME lisp-namespace DEPS ((NAME alexandria FILENAME alexandria)) DEPENDENCIES (alexandria) VERSION 20170630-git SIBLINGS
+ (lisp-namespace.test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/local-time.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/local-time.nix
index 0740ec0779f..1291499be3d 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/local-time.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/local-time.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''local-time'';
- version = ''20170516-git'';
+ version = ''20170725-git'';
description = ''A library for manipulating dates and times, based on a paper by Erik Naggum'';
- deps = [ ];
+ deps = [ args."cl-fad" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/local-time/2017-05-16/local-time-20170516-git.tgz'';
- sha256 = ''0qqy13pc3mqy4vkrvyfvg66n80kzxga5iax2ps0150ir61hwz35p'';
+ url = ''http://beta.quicklisp.org/archive/local-time/2017-07-25/local-time-20170725-git.tgz'';
+ sha256 = ''05axwla93m5jml9lw6ljwzjhcl8pshfzxyqkvyj1w5l9klh569p9'';
};
packageName = "local-time";
@@ -31,6 +31,6 @@ rec {
};
}
/* (SYSTEM local-time DESCRIPTION A library for manipulating dates and times, based on a paper by Erik Naggum SHA256
- 0qqy13pc3mqy4vkrvyfvg66n80kzxga5iax2ps0150ir61hwz35p URL http://beta.quicklisp.org/archive/local-time/2017-05-16/local-time-20170516-git.tgz MD5
- b2f5b94458f34f4b73cdd614e1304a9a NAME local-time TESTNAME NIL FILENAME local-time DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS
- (cl-postgres+local-time local-time.test)) */
+ 05axwla93m5jml9lw6ljwzjhcl8pshfzxyqkvyj1w5l9klh569p9 URL http://beta.quicklisp.org/archive/local-time/2017-07-25/local-time-20170725-git.tgz MD5
+ 77a79ed1036bc3547f5174f2256c8e93 NAME local-time TESTNAME NIL FILENAME local-time DEPS ((NAME cl-fad FILENAME cl-fad)) DEPENDENCIES (cl-fad) VERSION
+ 20170725-git SIBLINGS (cl-postgres+local-time local-time.test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/lquery.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lquery.nix
index 51c8af197fc..e5224fff18c 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/lquery.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/lquery.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''lquery'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''A library to allow jQuery-like HTML/DOM manipulation.'';
- deps = [ ];
+ deps = [ args."plump" args."form-fiddle" args."clss" args."array-utils" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/lquery/2017-05-16/lquery-20170516-git.tgz'';
- sha256 = ''11i6kwz4d8918a32z826v85qs2alpsfkvlcha4j7mnbfnzgy7gy7'';
+ url = ''http://beta.quicklisp.org/archive/lquery/2017-06-30/lquery-20170630-git.tgz'';
+ sha256 = ''19lpzjidg31lw61b78vdsqzrsdw2js4a9s7zzr5049jpzbspszjm'';
};
packageName = "lquery";
@@ -30,6 +30,7 @@ rec {
'';
};
}
-/* (SYSTEM lquery DESCRIPTION A library to allow jQuery-like HTML/DOM manipulation. SHA256 11i6kwz4d8918a32z826v85qs2alpsfkvlcha4j7mnbfnzgy7gy7 URL
- http://beta.quicklisp.org/archive/lquery/2017-05-16/lquery-20170516-git.tgz MD5 2190045b167685bfffdd01f5af9aa9a1 NAME lquery TESTNAME NIL FILENAME lquery
- DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS (lquery-test)) */
+/* (SYSTEM lquery DESCRIPTION A library to allow jQuery-like HTML/DOM manipulation. SHA256 19lpzjidg31lw61b78vdsqzrsdw2js4a9s7zzr5049jpzbspszjm URL
+ http://beta.quicklisp.org/archive/lquery/2017-06-30/lquery-20170630-git.tgz MD5 aeb03cb5174d682092683da488531a9c NAME lquery TESTNAME NIL FILENAME lquery
+ DEPS ((NAME plump FILENAME plump) (NAME form-fiddle FILENAME form-fiddle) (NAME clss FILENAME clss) (NAME array-utils FILENAME array-utils)) DEPENDENCIES
+ (plump form-fiddle clss array-utils) VERSION 20170630-git SIBLINGS (lquery-test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix
index 1384799d242..c5d86ebb703 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/md5.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''md5'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''The MD5 Message-Digest Algorithm RFC 1321'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/md5/2017-05-16/md5-20170516-git.tgz'';
- sha256 = ''1jmhww8wvd66ky5vppr0g8hi52w6z3q7svsqcmdrgzifr01r0pcv'';
+ url = ''http://beta.quicklisp.org/archive/md5/2017-06-30/md5-20170630-git.tgz'';
+ sha256 = ''0pli483skkfbi9ln8ghxnvzw9p5srs8zyilkygsimkzy8fcc5hyx'';
};
packageName = "md5";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM md5 DESCRIPTION The MD5 Message-Digest Algorithm RFC 1321 SHA256 1jmhww8wvd66ky5vppr0g8hi52w6z3q7svsqcmdrgzifr01r0pcv URL
- http://beta.quicklisp.org/archive/md5/2017-05-16/md5-20170516-git.tgz MD5 1c90df8ab2c6d57b7abaac84cae30ab3 NAME md5 TESTNAME NIL FILENAME md5 DEPS NIL
- DEPENDENCIES NIL VERSION 20170516-git SIBLINGS NIL) */
+/* (SYSTEM md5 DESCRIPTION The MD5 Message-Digest Algorithm RFC 1321 SHA256 0pli483skkfbi9ln8ghxnvzw9p5srs8zyilkygsimkzy8fcc5hyx URL
+ http://beta.quicklisp.org/archive/md5/2017-06-30/md5-20170630-git.tgz MD5 c6a5b3ca5a23fad3dfde23963db84910 NAME md5 TESTNAME NIL FILENAME md5 DEPS NIL
+ DEPENDENCIES NIL VERSION 20170630-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/misc-extensions.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/misc-extensions.nix
new file mode 100644
index 00000000000..044ce4d9358
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/misc-extensions.nix
@@ -0,0 +1,35 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''misc-extensions'';
+ version = ''20150608-git'';
+
+ description = '''';
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/misc-extensions/2015-06-08/misc-extensions-20150608-git.tgz'';
+ sha256 = ''0pkvi1l5djwpvm0p8m0bcdjm61gxvzy0vgn415gngdixvbbchdqj'';
+ };
+
+ packageName = "misc-extensions";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/misc-extensions[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM misc-extensions DESCRIPTION NIL SHA256 0pkvi1l5djwpvm0p8m0bcdjm61gxvzy0vgn415gngdixvbbchdqj URL
+ http://beta.quicklisp.org/archive/misc-extensions/2015-06-08/misc-extensions-20150608-git.tgz MD5 ef8a05dd4382bb9d1e3960aeb77e332e NAME misc-extensions
+ TESTNAME NIL FILENAME misc-extensions DEPS NIL DEPENDENCIES NIL VERSION 20150608-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/mssql.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/mssql.nix
index 3586d5cc21b..8d5450803ce 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/mssql.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/mssql.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''mssql'';
- version = ''cl-20131003-git'';
+ version = ''cl-20170630-git'';
description = '''';
deps = [ args."cffi" args."garbage-pools" args."iterate" args."parse-number" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/cl-mssql/2013-10-03/cl-mssql-20131003-git.tgz'';
- sha256 = ''1ykk8g4h3n21ich60l495v6h5pplx9hfs0kasz8myc5xv8ndljnk'';
+ url = ''http://beta.quicklisp.org/archive/cl-mssql/2017-06-30/cl-mssql-20170630-git.tgz'';
+ sha256 = ''0vwssk39m8pqn8srwvbcnq43wkqlav5rvq64byrnpsrwlfcbfvxy'';
};
packageName = "mssql";
@@ -30,7 +30,7 @@ rec {
'';
};
}
-/* (SYSTEM mssql DESCRIPTION NIL SHA256 1ykk8g4h3n21ich60l495v6h5pplx9hfs0kasz8myc5xv8ndljnk URL
- http://beta.quicklisp.org/archive/cl-mssql/2013-10-03/cl-mssql-20131003-git.tgz MD5 3e9d85a3b0ae7e000723a857ce7c2d44 NAME mssql TESTNAME NIL FILENAME mssql
+/* (SYSTEM mssql DESCRIPTION NIL SHA256 0vwssk39m8pqn8srwvbcnq43wkqlav5rvq64byrnpsrwlfcbfvxy URL
+ http://beta.quicklisp.org/archive/cl-mssql/2017-06-30/cl-mssql-20170630-git.tgz MD5 88e65c72923896df603ecf20039ae305 NAME mssql TESTNAME NIL FILENAME mssql
DEPS ((NAME cffi FILENAME cffi) (NAME garbage-pools FILENAME garbage-pools) (NAME iterate FILENAME iterate) (NAME parse-number FILENAME parse-number))
- DEPENDENCIES (cffi garbage-pools iterate parse-number) VERSION cl-20131003-git SIBLINGS NIL) */
+ DEPENDENCIES (cffi garbage-pools iterate parse-number) VERSION cl-20170630-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/mt19937.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/mt19937.nix
new file mode 100644
index 00000000000..9b581d4f1cc
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/mt19937.nix
@@ -0,0 +1,35 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''mt19937'';
+ version = ''1.1.1'';
+
+ description = ''Portable MT19937 Mersenne Twister random number generator'';
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/mt19937/2011-02-19/mt19937-1.1.1.tgz'';
+ sha256 = ''1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv'';
+ };
+
+ packageName = "mt19937";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/mt19937[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM mt19937 DESCRIPTION Portable MT19937 Mersenne Twister random number generator SHA256 1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv URL
+ http://beta.quicklisp.org/archive/mt19937/2011-02-19/mt19937-1.1.1.tgz MD5 54c63977b6d77abd66ebe0227b77c143 NAME mt19937 TESTNAME NIL FILENAME mt19937 DEPS
+ NIL DEPENDENCIES NIL VERSION 1.1.1 SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/net_dot_didierverna_dot_asdf-flv.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/net_dot_didierverna_dot_asdf-flv.nix
new file mode 100644
index 00000000000..b289feae883
--- /dev/null
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/net_dot_didierverna_dot_asdf-flv.nix
@@ -0,0 +1,36 @@
+args @ { fetchurl, ... }:
+rec {
+ baseName = ''net_dot_didierverna_dot_asdf-flv'';
+ version = ''asdf-flv-version-2.1'';
+
+ description = ''ASDF extension to provide support for file-local variables.'';
+
+ deps = [ ];
+
+ src = fetchurl {
+ url = ''http://beta.quicklisp.org/archive/asdf-flv/2016-04-21/asdf-flv-version-2.1.tgz'';
+ sha256 = ''12k0d4xyv6s9vy6gq18p8c9bm334jsfjly22lhg680kx2zr7y0lc'';
+ };
+
+ packageName = "net.didierverna.asdf-flv";
+
+ overrides = x: {
+ postInstall = ''
+ find "$out/lib/common-lisp/" -name '*.asd' | grep -iv '/net.didierverna.asdf-flv[.]asd${"$"}' |
+ while read f; do
+ env -i \
+ NIX_LISP="$NIX_LISP" \
+ NIX_LISP_PRELAUNCH_HOOK="nix_lisp_run_single_form '(progn
+ (asdf:load-system :$(basename "$f" .asd))
+ (asdf:perform (quote asdf:compile-bundle-op) :$(basename "$f" .asd))
+ (ignore-errors (asdf:perform (quote asdf:deliver-asd-op) :$(basename "$f" .asd)))
+ )'" \
+ "$out"/bin/*-lisp-launcher.sh ||
+ mv "$f"{,.sibling}; done || true
+ '';
+ };
+}
+/* (SYSTEM net.didierverna.asdf-flv DESCRIPTION ASDF extension to provide support for file-local variables. SHA256
+ 12k0d4xyv6s9vy6gq18p8c9bm334jsfjly22lhg680kx2zr7y0lc URL http://beta.quicklisp.org/archive/asdf-flv/2016-04-21/asdf-flv-version-2.1.tgz MD5
+ 2b74b721b7e5335d2230d6b95fc6be56 NAME net.didierverna.asdf-flv TESTNAME NIL FILENAME net_dot_didierverna_dot_asdf-flv DEPS NIL DEPENDENCIES NIL VERSION
+ asdf-flv-version-2.1 SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/pgloader.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/pgloader.nix
index d5ef8606f49..ca1ad414d75 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/pgloader.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/pgloader.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''pgloader'';
- version = ''3.3.2'';
+ version = ''v3.4.1'';
description = ''Load data into PostgreSQL'';
deps = [ args."abnf" args."alexandria" args."cl-base64" args."cl-csv" args."cl-fad" args."cl-log" args."cl-markdown" args."cl-postgres" args."cl-ppcre" args."command-line-arguments" args."db3" args."drakma" args."esrap" args."flexi-streams" args."ixf" args."local-time" args."lparallel" args."metabang-bind" args."mssql" args."postmodern" args."py-configparser" args."qmynd" args."quri" args."simple-date" args."split-sequence" args."sqlite" args."trivial-backtrace" args."uiop" args."usocket" args."uuid" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/pgloader/2016-12-04/pgloader-3.3.2.tgz'';
- sha256 = ''1riz76jvjlszic48lndwfxjn9i72251frivaqi10k61gjfbx03qv'';
+ url = ''http://beta.quicklisp.org/archive/pgloader/2017-07-25/pgloader-v3.4.1.tgz'';
+ sha256 = ''1z6p7dz1ir9cg4gl1vkvbc1f7pv1yfv1jgwjkw29v57fdg4faz9v'';
};
packageName = "pgloader";
@@ -30,8 +30,8 @@ rec {
'';
};
}
-/* (SYSTEM pgloader DESCRIPTION Load data into PostgreSQL SHA256 1riz76jvjlszic48lndwfxjn9i72251frivaqi10k61gjfbx03qv URL
- http://beta.quicklisp.org/archive/pgloader/2016-12-04/pgloader-3.3.2.tgz MD5 fb72ca0db46b80a74b7b31dc5b27e1b8 NAME pgloader TESTNAME NIL FILENAME pgloader
+/* (SYSTEM pgloader DESCRIPTION Load data into PostgreSQL SHA256 1z6p7dz1ir9cg4gl1vkvbc1f7pv1yfv1jgwjkw29v57fdg4faz9v URL
+ http://beta.quicklisp.org/archive/pgloader/2017-07-25/pgloader-v3.4.1.tgz MD5 6741f8e7d2d416942d5c4a1971576d33 NAME pgloader TESTNAME NIL FILENAME pgloader
DEPS
((NAME abnf FILENAME abnf) (NAME alexandria FILENAME alexandria) (NAME cl-base64 FILENAME cl-base64) (NAME cl-csv FILENAME cl-csv)
(NAME cl-fad FILENAME cl-fad) (NAME cl-log FILENAME cl-log) (NAME cl-markdown FILENAME cl-markdown) (NAME cl-postgres FILENAME cl-postgres)
@@ -44,4 +44,4 @@ rec {
DEPENDENCIES
(abnf alexandria cl-base64 cl-csv cl-fad cl-log cl-markdown cl-postgres cl-ppcre command-line-arguments db3 drakma esrap flexi-streams ixf local-time
lparallel metabang-bind mssql postmodern py-configparser qmynd quri simple-date split-sequence sqlite trivial-backtrace uiop usocket uuid)
- VERSION 3.3.2 SIBLINGS NIL) */
+ VERSION v3.4.1 SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/plump.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/plump.nix
index d89e25f8819..e25b89b2cf4 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/plump.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/plump.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''plump'';
- version = ''20170516-git'';
+ version = ''20170725-git'';
description = ''An XML / XHTML / HTML parser that aims to be as lenient as possible.'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/plump/2017-05-16/plump-20170516-git.tgz'';
- sha256 = ''0i7fb1y4dfd7i97w33xf8d1ykza4irl89xkipainydigkk66xaz8'';
+ url = ''http://beta.quicklisp.org/archive/plump/2017-07-25/plump-20170725-git.tgz'';
+ sha256 = ''118ashy1sqi666k18fqjkkzzqcak1f1aq93vm2hiadbdvrwn9s72'';
};
packageName = "plump";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM plump DESCRIPTION An XML / XHTML / HTML parser that aims to be as lenient as possible. SHA256 0i7fb1y4dfd7i97w33xf8d1ykza4irl89xkipainydigkk66xaz8
- URL http://beta.quicklisp.org/archive/plump/2017-05-16/plump-20170516-git.tgz MD5 917a4f25691b3087ce24fd52ee42b4be NAME plump TESTNAME NIL FILENAME plump
- DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS (plump-dom plump-lexer plump-parser)) */
+/* (SYSTEM plump DESCRIPTION An XML / XHTML / HTML parser that aims to be as lenient as possible. SHA256 118ashy1sqi666k18fqjkkzzqcak1f1aq93vm2hiadbdvrwn9s72
+ URL http://beta.quicklisp.org/archive/plump/2017-07-25/plump-20170725-git.tgz MD5 e5e92dd177711a14753ee86961710458 NAME plump TESTNAME NIL FILENAME plump
+ DEPS NIL DEPENDENCIES NIL VERSION 20170725-git SIBLINGS (plump-dom plump-lexer plump-parser)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/py-configparser.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/py-configparser.nix
index 868aae61f6b..96d09bc7dc3 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/py-configparser.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/py-configparser.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''py-configparser'';
- version = ''20131003-svn'';
+ version = ''20170725-svn'';
description = ''Common Lisp implementation of the Python ConfigParser module'';
deps = [ args."parse-number" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/py-configparser/2013-10-03/py-configparser-20131003-svn.tgz'';
- sha256 = ''10csqvl2acsha70igy75np2lf3bx7rrlrgryslsqay2xdzk6alwx'';
+ url = ''http://beta.quicklisp.org/archive/py-configparser/2017-07-25/py-configparser-20170725-svn.tgz'';
+ sha256 = ''08wfjlyhjqn54p3k0kv7ijsf72rsn4abdjnhd2bfkapr2a4jz6zr'';
};
packageName = "py-configparser";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM py-configparser DESCRIPTION Common Lisp implementation of the Python ConfigParser module SHA256 10csqvl2acsha70igy75np2lf3bx7rrlrgryslsqay2xdzk6alwx
- URL http://beta.quicklisp.org/archive/py-configparser/2013-10-03/py-configparser-20131003-svn.tgz MD5 da697259b68f536bcb6b77933b55a5d9 NAME py-configparser
- TESTNAME NIL FILENAME py-configparser DEPS ((NAME parse-number FILENAME parse-number)) DEPENDENCIES (parse-number) VERSION 20131003-svn SIBLINGS NIL) */
+/* (SYSTEM py-configparser DESCRIPTION Common Lisp implementation of the Python ConfigParser module SHA256 08wfjlyhjqn54p3k0kv7ijsf72rsn4abdjnhd2bfkapr2a4jz6zr
+ URL http://beta.quicklisp.org/archive/py-configparser/2017-07-25/py-configparser-20170725-svn.tgz MD5 3486092bb1d56be05dab16036f288a74 NAME py-configparser
+ TESTNAME NIL FILENAME py-configparser DEPS ((NAME parse-number FILENAME parse-number)) DEPENDENCIES (parse-number) VERSION 20170725-svn SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/qmynd.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/qmynd.nix
index b9871752e58..b57bb0d1623 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/qmynd.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/qmynd.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''qmynd'';
- version = ''20160208-git'';
+ version = ''20170630-git'';
description = ''MySQL Native Driver'';
- deps = [ args."usocket" args."trivial-gray-streams" args."salza2" args."list-of" args."ironclad" args."flexi-streams" args."cl+ssl" args."chipz" args."babel" ];
+ deps = [ args."usocket" args."trivial-gray-streams" args."list-of" args."ironclad" args."flexi-streams" args."babel" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/qmynd/2016-02-08/qmynd-20160208-git.tgz'';
- sha256 = ''0x9ml8id3s8l0rsa108bcs5lmyhb2y5a5p7s9ppvmqd4cgxnramq'';
+ url = ''http://beta.quicklisp.org/archive/qmynd/2017-06-30/qmynd-20170630-git.tgz'';
+ sha256 = ''01rg2rm4n19f5g39z2gdjcfy68z7ir51r44524vzzs0x9na9y6bi'';
};
packageName = "qmynd";
@@ -30,9 +30,8 @@ rec {
'';
};
}
-/* (SYSTEM qmynd DESCRIPTION MySQL Native Driver SHA256 0x9ml8id3s8l0rsa108bcs5lmyhb2y5a5p7s9ppvmqd4cgxnramq URL
- http://beta.quicklisp.org/archive/qmynd/2016-02-08/qmynd-20160208-git.tgz MD5 9483ba5330a4240a9d5a8016c16a0084 NAME qmynd TESTNAME NIL FILENAME qmynd DEPS
- ((NAME usocket FILENAME usocket) (NAME trivial-gray-streams FILENAME trivial-gray-streams) (NAME salza2 FILENAME salza2) (NAME list-of FILENAME list-of)
- (NAME ironclad FILENAME ironclad) (NAME flexi-streams FILENAME flexi-streams) (NAME cl+ssl FILENAME cl+ssl) (NAME chipz FILENAME chipz)
- (NAME babel FILENAME babel))
- DEPENDENCIES (usocket trivial-gray-streams salza2 list-of ironclad flexi-streams cl+ssl chipz babel) VERSION 20160208-git SIBLINGS (qmynd-test)) */
+/* (SYSTEM qmynd DESCRIPTION MySQL Native Driver SHA256 01rg2rm4n19f5g39z2gdjcfy68z7ir51r44524vzzs0x9na9y6bi URL
+ http://beta.quicklisp.org/archive/qmynd/2017-06-30/qmynd-20170630-git.tgz MD5 64776472d1e0c4c0e41a1b4a2a24167e NAME qmynd TESTNAME NIL FILENAME qmynd DEPS
+ ((NAME usocket FILENAME usocket) (NAME trivial-gray-streams FILENAME trivial-gray-streams) (NAME list-of FILENAME list-of)
+ (NAME ironclad FILENAME ironclad) (NAME flexi-streams FILENAME flexi-streams) (NAME babel FILENAME babel))
+ DEPENDENCIES (usocket trivial-gray-streams list-of ironclad flexi-streams babel) VERSION 20170630-git SIBLINGS (qmynd-test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix
index 6aa42000e73..952b8686dab 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''stumpwm'';
- version = ''20170516-git'';
+ version = ''20170725-git'';
description = ''A tiling, keyboard driven window manager'';
- deps = [ ];
+ deps = [ args."alexandria" args."cl-ppcre" args."clx" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/stumpwm/2017-05-16/stumpwm-20170516-git.tgz'';
- sha256 = ''0x3x0w1akarp0rjmig9x6d729z6lv6ywfg00b6xszm5kqfbx1659'';
+ url = ''http://beta.quicklisp.org/archive/stumpwm/2017-07-25/stumpwm-20170725-git.tgz'';
+ sha256 = ''1hb01zlm4rk2n9b8lfpiary94pmg6qkw84zg54ws1if7z1yd2ss5'';
};
packageName = "stumpwm";
@@ -30,6 +30,7 @@ rec {
'';
};
}
-/* (SYSTEM stumpwm DESCRIPTION A tiling, keyboard driven window manager SHA256 0x3x0w1akarp0rjmig9x6d729z6lv6ywfg00b6xszm5kqfbx1659 URL
- http://beta.quicklisp.org/archive/stumpwm/2017-05-16/stumpwm-20170516-git.tgz MD5 ed076f733ef138aca3b04b3c3ff748f0 NAME stumpwm TESTNAME NIL FILENAME
- stumpwm DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS NIL) */
+/* (SYSTEM stumpwm DESCRIPTION A tiling, keyboard driven window manager SHA256 1hb01zlm4rk2n9b8lfpiary94pmg6qkw84zg54ws1if7z1yd2ss5 URL
+ http://beta.quicklisp.org/archive/stumpwm/2017-07-25/stumpwm-20170725-git.tgz MD5 a7fb260c6572273c05b828299c0610ce NAME stumpwm TESTNAME NIL FILENAME
+ stumpwm DEPS ((NAME alexandria FILENAME alexandria) (NAME cl-ppcre FILENAME cl-ppcre) (NAME clx FILENAME clx)) DEPENDENCIES (alexandria cl-ppcre clx)
+ VERSION 20170725-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-indent.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-indent.nix
index 05631ab2b93..ea9b21d6eac 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-indent.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-indent.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''trivial-indent'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''A very simple library to allow indentation hints for SWANK.'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/trivial-indent/2017-05-16/trivial-indent-20170516-git.tgz'';
- sha256 = ''0jvwmsn4z5sd2r1g3yml8mzra8pah5ly8n00p0sqqww61l9w06ma'';
+ url = ''http://beta.quicklisp.org/archive/trivial-indent/2017-06-30/trivial-indent-20170630-git.tgz'';
+ sha256 = ''18zag7n2yfjx3x6nm8132cq8lz321i3f3zslb90j198wvpwyrnq7'';
};
packageName = "trivial-indent";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM trivial-indent DESCRIPTION A very simple library to allow indentation hints for SWANK. SHA256 0jvwmsn4z5sd2r1g3yml8mzra8pah5ly8n00p0sqqww61l9w06ma
- URL http://beta.quicklisp.org/archive/trivial-indent/2017-05-16/trivial-indent-20170516-git.tgz MD5 6c8bde35ec010645c8d585c272ae01e8 NAME trivial-indent
- TESTNAME NIL FILENAME trivial-indent DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS NIL) */
+/* (SYSTEM trivial-indent DESCRIPTION A very simple library to allow indentation hints for SWANK. SHA256 18zag7n2yfjx3x6nm8132cq8lz321i3f3zslb90j198wvpwyrnq7
+ URL http://beta.quicklisp.org/archive/trivial-indent/2017-06-30/trivial-indent-20170630-git.tgz MD5 9f11cc1014be3e3ae588a3cd07315be6 NAME trivial-indent
+ TESTNAME NIL FILENAME trivial-indent DEPS NIL DEPENDENCIES NIL VERSION 20170630-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-mimes.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-mimes.nix
index f4a84b5ceef..f31e1bb0a3d 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-mimes.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/trivial-mimes.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''trivial-mimes'';
- version = ''20170516-git'';
+ version = ''20170630-git'';
description = ''Tiny library to detect mime types in files.'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/trivial-mimes/2017-05-16/trivial-mimes-20170516-git.tgz'';
- sha256 = ''1prv15krlcwwb9jwqvskm588y2yh7r2n6c4c80fh0f2r73ysfnj2'';
+ url = ''http://beta.quicklisp.org/archive/trivial-mimes/2017-06-30/trivial-mimes-20170630-git.tgz'';
+ sha256 = ''0rm667w7nfkcrfjqbb7blbdcrjxbr397a6nqmy35qq82fqjr4rvx'';
};
packageName = "trivial-mimes";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM trivial-mimes DESCRIPTION Tiny library to detect mime types in files. SHA256 1prv15krlcwwb9jwqvskm588y2yh7r2n6c4c80fh0f2r73ysfnj2 URL
- http://beta.quicklisp.org/archive/trivial-mimes/2017-05-16/trivial-mimes-20170516-git.tgz MD5 b9cbba4147647ded4042949db3c00f1e NAME trivial-mimes TESTNAME
- NIL FILENAME trivial-mimes DEPS NIL DEPENDENCIES NIL VERSION 20170516-git SIBLINGS NIL) */
+/* (SYSTEM trivial-mimes DESCRIPTION Tiny library to detect mime types in files. SHA256 0rm667w7nfkcrfjqbb7blbdcrjxbr397a6nqmy35qq82fqjr4rvx URL
+ http://beta.quicklisp.org/archive/trivial-mimes/2017-06-30/trivial-mimes-20170630-git.tgz MD5 5aecea17e102bd2dab7e71fecd1f8e44 NAME trivial-mimes TESTNAME
+ NIL FILENAME trivial-mimes DEPS NIL DEPENDENCIES NIL VERSION 20170630-git SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/uffi.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/uffi.nix
index 78085ff1762..67897d46958 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/uffi.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/uffi.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''uffi'';
- version = ''20150923-git'';
+ version = ''20170630-git'';
description = ''Universal Foreign Function Library for Common Lisp'';
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/uffi/2015-09-23/uffi-20150923-git.tgz'';
- sha256 = ''1b3mb1ac5hqpn941pmgwkiy241rnin308haxbs2f4rwp2la7wzyy'';
+ url = ''http://beta.quicklisp.org/archive/uffi/2017-06-30/uffi-20170630-git.tgz'';
+ sha256 = ''1y8f4pw1sw9d7zgaj1lfi87fjws934qc3gl3fan9py967cl5i7jf'';
};
packageName = "uffi";
@@ -30,6 +30,6 @@ rec {
'';
};
}
-/* (SYSTEM uffi DESCRIPTION Universal Foreign Function Library for Common Lisp SHA256 1b3mb1ac5hqpn941pmgwkiy241rnin308haxbs2f4rwp2la7wzyy URL
- http://beta.quicklisp.org/archive/uffi/2015-09-23/uffi-20150923-git.tgz MD5 84babed7d1633cf01610e81f027024da NAME uffi TESTNAME NIL FILENAME uffi DEPS NIL
- DEPENDENCIES NIL VERSION 20150923-git SIBLINGS (uffi-tests)) */
+/* (SYSTEM uffi DESCRIPTION Universal Foreign Function Library for Common Lisp SHA256 1y8f4pw1sw9d7zgaj1lfi87fjws934qc3gl3fan9py967cl5i7jf URL
+ http://beta.quicklisp.org/archive/uffi/2017-06-30/uffi-20170630-git.tgz MD5 8ac448122b79a41ec2b0647f06af7c12 NAME uffi TESTNAME NIL FILENAME uffi DEPS NIL
+ DEPENDENCIES NIL VERSION 20170630-git SIBLINGS (uffi-tests)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/uiop.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/uiop.nix
index 579ad469cda..5f3bd02f90a 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/uiop.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/uiop.nix
@@ -8,7 +8,7 @@ rec {
deps = [ ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/uiop/2017-05-16/uiop-3.2.1.tgz'';
+ url = ''http://beta.quicklisp.org/archive/uiop/2017-06-30/uiop-3.2.1.tgz'';
sha256 = ''1zl661dkbg5clyl5fjj9466krk59xfdmmfzci5mj7n137m0zmf5v'';
};
@@ -31,5 +31,5 @@ rec {
};
}
/* (SYSTEM uiop DESCRIPTION NIL SHA256 1zl661dkbg5clyl5fjj9466krk59xfdmmfzci5mj7n137m0zmf5v URL
- http://beta.quicklisp.org/archive/uiop/2017-05-16/uiop-3.2.1.tgz MD5 3e9ef02ecf9005240b66552d85719700 NAME uiop TESTNAME NIL FILENAME uiop DEPS NIL
+ http://beta.quicklisp.org/archive/uiop/2017-06-30/uiop-3.2.1.tgz MD5 3e9ef02ecf9005240b66552d85719700 NAME uiop TESTNAME NIL FILENAME uiop DEPS NIL
DEPENDENCIES NIL VERSION 3.2.1 SIBLINGS (asdf-driver)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/woo.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/woo.nix
index 086a374d6e7..c04540aaaba 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/woo.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/woo.nix
@@ -1,15 +1,15 @@
args @ { fetchurl, ... }:
rec {
baseName = ''woo'';
- version = ''20170227-git'';
+ version = ''20170725-git'';
description = ''An asynchronous HTTP server written in Common Lisp'';
- deps = [ ];
+ deps = [ args."vom" args."uiop" args."trivial-utf-8" args."swap-bytes" args."static-vectors" args."smart-buffer" args."quri" args."lev" args."fast-io" args."fast-http" args."clack-socket" args."cffi-grovel" args."cffi" args."bordeaux-threads" args."alexandria" ];
src = fetchurl {
- url = ''http://beta.quicklisp.org/archive/woo/2017-02-27/woo-20170227-git.tgz'';
- sha256 = ''0myydz817mpkgs97p9y9n4z0kq00xxr2b65klsdkxasvvfyjw0d1'';
+ url = ''http://beta.quicklisp.org/archive/woo/2017-07-25/woo-20170725-git.tgz'';
+ sha256 = ''11cnqd058mjhkgxppsivbmd687429r4b62v7z5iav0wpha78qfgg'';
};
packageName = "woo";
@@ -30,6 +30,12 @@ rec {
'';
};
}
-/* (SYSTEM woo DESCRIPTION An asynchronous HTTP server written in Common Lisp SHA256 0myydz817mpkgs97p9y9n4z0kq00xxr2b65klsdkxasvvfyjw0d1 URL
- http://beta.quicklisp.org/archive/woo/2017-02-27/woo-20170227-git.tgz MD5 cc37270ad408e093bd28c025466d8f64 NAME woo TESTNAME NIL FILENAME woo DEPS NIL
- DEPENDENCIES NIL VERSION 20170227-git SIBLINGS (clack-handler-woo woo-test)) */
+/* (SYSTEM woo DESCRIPTION An asynchronous HTTP server written in Common Lisp SHA256 11cnqd058mjhkgxppsivbmd687429r4b62v7z5iav0wpha78qfgg URL
+ http://beta.quicklisp.org/archive/woo/2017-07-25/woo-20170725-git.tgz MD5 bd901d8dfa7df3d19c6da73ea101f65b NAME woo TESTNAME NIL FILENAME woo DEPS
+ ((NAME vom FILENAME vom) (NAME uiop FILENAME uiop) (NAME trivial-utf-8 FILENAME trivial-utf-8) (NAME swap-bytes FILENAME swap-bytes)
+ (NAME static-vectors FILENAME static-vectors) (NAME smart-buffer FILENAME smart-buffer) (NAME quri FILENAME quri) (NAME lev FILENAME lev)
+ (NAME fast-io FILENAME fast-io) (NAME fast-http FILENAME fast-http) (NAME clack-socket FILENAME clack-socket) (NAME cffi-grovel FILENAME cffi-grovel)
+ (NAME cffi FILENAME cffi) (NAME bordeaux-threads FILENAME bordeaux-threads) (NAME alexandria FILENAME alexandria))
+ DEPENDENCIES
+ (vom uiop trivial-utf-8 swap-bytes static-vectors smart-buffer quri lev fast-io fast-http clack-socket cffi-grovel cffi bordeaux-threads alexandria)
+ VERSION 20170725-git SIBLINGS (clack-handler-woo woo-test)) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-output/wookie.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-output/wookie.nix
index 46262fb78f4..3b78ba6f79e 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-output/wookie.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-output/wookie.nix
@@ -5,7 +5,7 @@ rec {
description = ''An evented webserver for Common Lisp.'';
- deps = [ ];
+ deps = [ args."alexandria" args."babel" args."blackbird" args."chunga" args."cl-async" args."cl-async-ssl" args."cl-fad" args."cl-ppcre" args."do-urlencode" args."fast-http" args."fast-io" args."quri" args."vom" ];
src = fetchurl {
url = ''http://beta.quicklisp.org/archive/wookie/2017-02-27/wookie-20170227-git.tgz'';
@@ -32,4 +32,10 @@ rec {
}
/* (SYSTEM wookie DESCRIPTION An evented webserver for Common Lisp. SHA256 0i1wrgr5grg387ldv1zfswws1g3xvrkxxvp1m58m9hj0c1vmm6v0 URL
http://beta.quicklisp.org/archive/wookie/2017-02-27/wookie-20170227-git.tgz MD5 aeb084106facdc9c8dab100c97e05b92 NAME wookie TESTNAME NIL FILENAME wookie
- DEPS NIL DEPENDENCIES NIL VERSION 20170227-git SIBLINGS NIL) */
+ DEPS
+ ((NAME alexandria FILENAME alexandria) (NAME babel FILENAME babel) (NAME blackbird FILENAME blackbird) (NAME chunga FILENAME chunga)
+ (NAME cl-async FILENAME cl-async) (NAME cl-async-ssl FILENAME cl-async-ssl) (NAME cl-fad FILENAME cl-fad) (NAME cl-ppcre FILENAME cl-ppcre)
+ (NAME do-urlencode FILENAME do-urlencode) (NAME fast-http FILENAME fast-http) (NAME fast-io FILENAME fast-io) (NAME quri FILENAME quri)
+ (NAME vom FILENAME vom))
+ DEPENDENCIES (alexandria babel blackbird chunga cl-async cl-async-ssl cl-fad cl-ppcre do-urlencode fast-http fast-io quri vom) VERSION 20170227-git
+ SIBLINGS NIL) */
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
index a760e0cb684..877389811d0 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
@@ -15,6 +15,13 @@ in
preConfigure = ''
export configureFlags="$configureFlags --with-$NIX_LISP=common-lisp.sh";
'';
+ postInstall = ''
+ "$out/bin/stumpwm-lisp-launcher.sh" --eval '(asdf:make :stumpwm)' \
+ --eval '(setf (asdf/system:component-entry-point (asdf:find-system :stumpwm)) (function stumpwm:stumpwm))' \
+ --eval '(asdf:perform (quote asdf:program-op) :stumpwm)'
+
+ cp "$out/lib/common-lisp/stumpwm/stumpwm" "$out/bin"
+ '';
};
propagatedBuildInputs = (x.propagatedBuildInputs or []) ++ (with qlnp; [
alexandria cl-ppcre clx
@@ -54,6 +61,25 @@ in
sha256 = "0pa86bf3jrysnmhasbc0lm6cid9xzril4jsg02g3gziav1xw5x2m";
};
};
+ iolib_slash_syscalls = x: rec {
+ propagatedBuildInputs = (x.propagatedBuildInputs or [])
+ ++ (with pkgs; [libfixposix gcc])
+ ++ (with qlnp; [
+ alexandria split-sequence cffi bordeaux-threads idna swap-bytes
+ ])
+ ;
+ testSystems = ["iolib" "iolib/syscalls" "iolib/multiplex" "iolib/streams"
+ "iolib/zstreams" "iolib/sockets" "iolib/trivial-sockets"
+ "iolib/pathnames" "iolib/os"];
+
+ version = "0.8.3";
+ src = pkgs.fetchFromGitHub {
+ owner = "sionescu";
+ repo = "iolib";
+ rev = "v${version}";
+ sha256 = "0pa86bf3jrysnmhasbc0lm6cid9xzril4jsg02g3gziav1xw5x2m";
+ };
+ };
cl-unicode = addDeps (with qlnp; [cl-ppcre flexi-streams]);
clack = addDeps (with qlnp;[lack bordeaux-threads prove]);
clack-v1-compat = addDeps (with qlnp;[
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt b/pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt
index 74946f07f07..07b069f8b7b 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt
@@ -1,20 +1,24 @@
3bmd
alexandria
array-utils
+asdf-system-connections
babel
blackbird
bordeaux-threads
caveman
cffi
+cffi-grovel
chipz
circular-streams
clack
clack-v1-compat
+cl-ansi-text
cl-async
cl-async-base
cl-async-repl
cl-async-ssl
cl-base64
+cl-cli
cl-colors
cl-cookie
cl-dbi
@@ -58,8 +62,10 @@ esrap
external-program
fast-http
fast-io
+fiveam
flexi-streams
form-fiddle
+fset
http-body
hu.dwim.asdf
hu.dwim.def
@@ -70,10 +76,14 @@ iolib
ironclad
iterate
lack
+let-plus
lev
+lisp-namespace
local-time
lquery
marshal
+misc-extensions
+mt19937
nibbles
optima
parenscript
@@ -82,6 +92,7 @@ pgloader
plump
proc-parse
prove
+prove
query-fs
quri
salza2
@@ -95,6 +106,7 @@ trivial-indent
trivial-mimes
trivial-types
trivial-utf-8
+uffi
usocket
woo
wookie
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix.nix b/pkgs/development/lisp-modules/quicklisp-to-nix.nix
index c87b827112c..a257b7095cb 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix.nix
@@ -6,14 +6,6 @@ let quicklisp-to-nix-packages = rec {
buildLispPackage = callPackage ./define-package.nix;
qlOverrides = callPackage ./quicklisp-to-nix-overrides.nix {};
- "asdf-system-connections" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."asdf-system-connections" or (x: {}))
- (import ./quicklisp-to-nix-output/asdf-system-connections.nix {
- inherit fetchurl;
- }));
-
-
"closure-common" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."closure-common" or (x: {}))
@@ -84,6 +76,16 @@ let quicklisp-to-nix-packages = rec {
}));
+ "iolib_slash_syscalls" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."iolib_slash_syscalls" or (x: {}))
+ (import ./quicklisp-to-nix-output/iolib_slash_syscalls.nix {
+ inherit fetchurl;
+ "trivial-features" = quicklisp-to-nix-packages."trivial-features";
+ "cffi" = quicklisp-to-nix-packages."cffi";
+ }));
+
+
"cxml-xml" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cxml-xml" or (x: {}))
@@ -100,6 +102,8 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."babel-streams" or (x: {}))
(import ./quicklisp-to-nix-output/babel-streams.nix {
inherit fetchurl;
+ "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -111,13 +115,11 @@ let quicklisp-to-nix-packages = rec {
}));
- "cl-ansi-text" = buildLispPackage
+ "clack-socket" = buildLispPackage
((f: x: (x // (f x)))
- (qlOverrides."cl-ansi-text" or (x: {}))
- (import ./quicklisp-to-nix-output/cl-ansi-text.nix {
+ (qlOverrides."clack-socket" or (x: {}))
+ (import ./quicklisp-to-nix-output/clack-socket.nix {
inherit fetchurl;
- "cl-colors" = quicklisp-to-nix-packages."cl-colors";
- "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -146,12 +148,9 @@ let quicklisp-to-nix-packages = rec {
inherit fetchurl;
"usocket" = quicklisp-to-nix-packages."usocket";
"trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
- "salza2" = quicklisp-to-nix-packages."salza2";
"list-of" = quicklisp-to-nix-packages."list-of";
"ironclad" = quicklisp-to-nix-packages."ironclad";
"flexi-streams" = quicklisp-to-nix-packages."flexi-streams";
- "cl+ssl" = quicklisp-to-nix-packages."cl+ssl";
- "chipz" = quicklisp-to-nix-packages."chipz";
"babel" = quicklisp-to-nix-packages."babel";
}));
@@ -202,6 +201,13 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."ixf" or (x: {}))
(import ./quicklisp-to-nix-output/ixf.nix {
inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "babel" = quicklisp-to-nix-packages."babel";
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ "ieee-floats" = quicklisp-to-nix-packages."ieee-floats";
+ "local-time" = quicklisp-to-nix-packages."local-time";
+ "md5" = quicklisp-to-nix-packages."md5";
+ "split-sequence" = quicklisp-to-nix-packages."split-sequence";
}));
@@ -264,6 +270,41 @@ let quicklisp-to-nix-packages = rec {
}));
+ "iolib_slash_multiplex" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."iolib_slash_multiplex" or (x: {}))
+ (import ./quicklisp-to-nix-output/iolib_slash_multiplex.nix {
+ inherit fetchurl;
+ "iolib_slash_syscalls" = quicklisp-to-nix-packages."iolib_slash_syscalls";
+ "cffi" = quicklisp-to-nix-packages."cffi";
+ }));
+
+
+ "iolib_slash_sockets" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."iolib_slash_sockets" or (x: {}))
+ (import ./quicklisp-to-nix-output/iolib_slash_sockets.nix {
+ inherit fetchurl;
+ "swap-bytes" = quicklisp-to-nix-packages."swap-bytes";
+ "iolib_slash_syscalls" = quicklisp-to-nix-packages."iolib_slash_syscalls";
+ "iolib_slash_streams" = quicklisp-to-nix-packages."iolib_slash_streams";
+ "idna" = quicklisp-to-nix-packages."idna";
+ "cffi" = quicklisp-to-nix-packages."cffi";
+ "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
+ "babel" = quicklisp-to-nix-packages."babel";
+ }));
+
+
+ "iolib_slash_streams" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."iolib_slash_streams" or (x: {}))
+ (import ./quicklisp-to-nix-output/iolib_slash_streams.nix {
+ inherit fetchurl;
+ "iolib_slash_multiplex" = quicklisp-to-nix-packages."iolib_slash_multiplex";
+ "cffi" = quicklisp-to-nix-packages."cffi";
+ }));
+
+
"rfc2388" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."rfc2388" or (x: {}))
@@ -284,6 +325,30 @@ let quicklisp-to-nix-packages = rec {
((f: x: (x // (f x)))
(qlOverrides."jonathan" or (x: {}))
(import ./quicklisp-to-nix-output/jonathan.nix {
+ inherit fetchurl;
+ "trivial-types" = quicklisp-to-nix-packages."trivial-types";
+ "proc-parse" = quicklisp-to-nix-packages."proc-parse";
+ "fast-io" = quicklisp-to-nix-packages."fast-io";
+ "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot";
+ "cl-syntax" = quicklisp-to-nix-packages."cl-syntax";
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ "cl-annot" = quicklisp-to-nix-packages."cl-annot";
+ "babel" = quicklisp-to-nix-packages."babel";
+ }));
+
+
+ "net_dot_didierverna_dot_asdf-flv" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."net_dot_didierverna_dot_asdf-flv" or (x: {}))
+ (import ./quicklisp-to-nix-output/net_dot_didierverna_dot_asdf-flv.nix {
+ inherit fetchurl;
+ }));
+
+
+ "puri" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."puri" or (x: {}))
+ (import ./quicklisp-to-nix-output/puri.nix {
inherit fetchurl;
}));
@@ -297,14 +362,6 @@ let quicklisp-to-nix-packages = rec {
}));
- "puri" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."puri" or (x: {}))
- (import ./quicklisp-to-nix-output/puri.nix {
- inherit fetchurl;
- }));
-
-
"sqlite" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."sqlite" or (x: {}))
@@ -374,6 +431,7 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."cl-paths-ttf" or (x: {}))
(import ./quicklisp-to-nix-output/cl-paths-ttf.nix {
inherit fetchurl;
+ "zpb-ttf" = quicklisp-to-nix-packages."zpb-ttf";
}));
@@ -385,6 +443,15 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cl-unicode_slash_base" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-unicode_slash_base" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-unicode_slash_base.nix {
+ inherit fetchurl;
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ }));
+
+
"cl-markup" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-markup" or (x: {}))
@@ -418,14 +485,6 @@ let quicklisp-to-nix-packages = rec {
}));
- "uffi" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."uffi" or (x: {}))
- (import ./quicklisp-to-nix-output/uffi.nix {
- inherit fetchurl;
- }));
-
-
"metabang-bind" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."metabang-bind" or (x: {}))
@@ -452,25 +511,6 @@ let quicklisp-to-nix-packages = rec {
}));
- "cffi-grovel" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."cffi-grovel" or (x: {}))
- (import ./quicklisp-to-nix-output/cffi-grovel.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- }));
-
-
- "let-plus" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."let-plus" or (x: {}))
- (import ./quicklisp-to-nix-output/let-plus.nix {
- inherit fetchurl;
- "alexandria" = quicklisp-to-nix-packages."alexandria";
- "anaphora" = quicklisp-to-nix-packages."anaphora";
- }));
-
-
"cl-async-util" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-async-util" or (x: {}))
@@ -485,6 +525,24 @@ let quicklisp-to-nix-packages = rec {
}));
+ "lack-middleware-backtrace" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."lack-middleware-backtrace" or (x: {}))
+ (import ./quicklisp-to-nix-output/lack-middleware-backtrace.nix {
+ inherit fetchurl;
+ "uiop" = quicklisp-to-nix-packages."uiop";
+ }));
+
+
+ "lack-util" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."lack-util" or (x: {}))
+ (import ./quicklisp-to-nix-output/lack-util.nix {
+ inherit fetchurl;
+ "ironclad" = quicklisp-to-nix-packages."ironclad";
+ }));
+
+
"trivial-gray-streams" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."trivial-gray-streams" or (x: {}))
@@ -493,14 +551,6 @@ let quicklisp-to-nix-packages = rec {
}));
- "trivial-features" = buildLispPackage
- ((f: x: (x // (f x)))
- (qlOverrides."trivial-features" or (x: {}))
- (import ./quicklisp-to-nix-output/trivial-features.nix {
- inherit fetchurl;
- }));
-
-
"uiop" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."uiop" or (x: {}))
@@ -571,6 +621,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "trivial-features" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."trivial-features" or (x: {}))
+ (import ./quicklisp-to-nix-output/trivial-features.nix {
+ inherit fetchurl;
+ }));
+
+
"yason" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."yason" or (x: {}))
@@ -602,6 +660,19 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."wookie" or (x: {}))
(import ./quicklisp-to-nix-output/wookie.nix {
inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "babel" = quicklisp-to-nix-packages."babel";
+ "blackbird" = quicklisp-to-nix-packages."blackbird";
+ "chunga" = quicklisp-to-nix-packages."chunga";
+ "cl-async" = quicklisp-to-nix-packages."cl-async";
+ "cl-async-ssl" = quicklisp-to-nix-packages."cl-async-ssl";
+ "cl-fad" = quicklisp-to-nix-packages."cl-fad";
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ "do-urlencode" = quicklisp-to-nix-packages."do-urlencode";
+ "fast-http" = quicklisp-to-nix-packages."fast-http";
+ "fast-io" = quicklisp-to-nix-packages."fast-io";
+ "quri" = quicklisp-to-nix-packages."quri";
+ "vom" = quicklisp-to-nix-packages."vom";
}));
@@ -610,6 +681,21 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."woo" or (x: {}))
(import ./quicklisp-to-nix-output/woo.nix {
inherit fetchurl;
+ "vom" = quicklisp-to-nix-packages."vom";
+ "uiop" = quicklisp-to-nix-packages."uiop";
+ "trivial-utf-8" = quicklisp-to-nix-packages."trivial-utf-8";
+ "swap-bytes" = quicklisp-to-nix-packages."swap-bytes";
+ "static-vectors" = quicklisp-to-nix-packages."static-vectors";
+ "smart-buffer" = quicklisp-to-nix-packages."smart-buffer";
+ "quri" = quicklisp-to-nix-packages."quri";
+ "lev" = quicklisp-to-nix-packages."lev";
+ "fast-io" = quicklisp-to-nix-packages."fast-io";
+ "fast-http" = quicklisp-to-nix-packages."fast-http";
+ "clack-socket" = quicklisp-to-nix-packages."clack-socket";
+ "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel";
+ "cffi" = quicklisp-to-nix-packages."cffi";
+ "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -622,6 +708,14 @@ let quicklisp-to-nix-packages = rec {
}));
+ "uffi" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."uffi" or (x: {}))
+ (import ./quicklisp-to-nix-output/uffi.nix {
+ inherit fetchurl;
+ }));
+
+
"trivial-utf-8" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."trivial-utf-8" or (x: {}))
@@ -676,6 +770,9 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."stumpwm" or (x: {}))
(import ./quicklisp-to-nix-output/stumpwm.nix {
inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ "clx" = quicklisp-to-nix-packages."clx";
}));
@@ -851,6 +948,22 @@ let quicklisp-to-nix-packages = rec {
}));
+ "mt19937" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."mt19937" or (x: {}))
+ (import ./quicklisp-to-nix-output/mt19937.nix {
+ inherit fetchurl;
+ }));
+
+
+ "misc-extensions" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."misc-extensions" or (x: {}))
+ (import ./quicklisp-to-nix-output/misc-extensions.nix {
+ inherit fetchurl;
+ }));
+
+
"marshal" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."marshal" or (x: {}))
@@ -864,6 +977,10 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."lquery" or (x: {}))
(import ./quicklisp-to-nix-output/lquery.nix {
inherit fetchurl;
+ "plump" = quicklisp-to-nix-packages."plump";
+ "form-fiddle" = quicklisp-to-nix-packages."form-fiddle";
+ "clss" = quicklisp-to-nix-packages."clss";
+ "array-utils" = quicklisp-to-nix-packages."array-utils";
}));
@@ -872,6 +989,16 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."local-time" or (x: {}))
(import ./quicklisp-to-nix-output/local-time.nix {
inherit fetchurl;
+ "cl-fad" = quicklisp-to-nix-packages."cl-fad";
+ }));
+
+
+ "lisp-namespace" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."lisp-namespace" or (x: {}))
+ (import ./quicklisp-to-nix-output/lisp-namespace.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -884,6 +1011,16 @@ let quicklisp-to-nix-packages = rec {
}));
+ "let-plus" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."let-plus" or (x: {}))
+ (import ./quicklisp-to-nix-output/let-plus.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ }));
+
+
"lack" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."lack" or (x: {}))
@@ -905,6 +1042,7 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."ironclad" or (x: {}))
(import ./quicklisp-to-nix-output/ironclad.nix {
inherit fetchurl;
+ "nibbles" = quicklisp-to-nix-packages."nibbles";
}));
@@ -913,6 +1051,9 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."iolib" or (x: {}))
(import ./quicklisp-to-nix-output/iolib.nix {
inherit fetchurl;
+ "iolib_slash_streams" = quicklisp-to-nix-packages."iolib_slash_streams";
+ "iolib_slash_sockets" = quicklisp-to-nix-packages."iolib_slash_sockets";
+ "iolib_slash_multiplex" = quicklisp-to-nix-packages."iolib_slash_multiplex";
}));
@@ -957,6 +1098,10 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."hu_dot_dwim_dot_def" or (x: {}))
(import ./quicklisp-to-nix-output/hu_dot_dwim_dot_def.nix {
inherit fetchurl;
+ "metabang-bind" = quicklisp-to-nix-packages."metabang-bind";
+ "iterate" = quicklisp-to-nix-packages."iterate";
+ "anaphora" = quicklisp-to-nix-packages."anaphora";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -965,6 +1110,7 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."hu_dot_dwim_dot_asdf" or (x: {}))
(import ./quicklisp-to-nix-output/hu_dot_dwim_dot_asdf.nix {
inherit fetchurl;
+ "uiop" = quicklisp-to-nix-packages."uiop";
}));
@@ -984,11 +1130,22 @@ let quicklisp-to-nix-packages = rec {
}));
+ "fset" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."fset" or (x: {}))
+ (import ./quicklisp-to-nix-output/fset.nix {
+ inherit fetchurl;
+ "misc-extensions" = quicklisp-to-nix-packages."misc-extensions";
+ "mt19937" = quicklisp-to-nix-packages."mt19937";
+ }));
+
+
"form-fiddle" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."form-fiddle" or (x: {}))
(import ./quicklisp-to-nix-output/form-fiddle.nix {
inherit fetchurl;
+ "documentation-utils" = quicklisp-to-nix-packages."documentation-utils";
}));
@@ -1001,11 +1158,25 @@ let quicklisp-to-nix-packages = rec {
}));
+ "fiveam" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."fiveam" or (x: {}))
+ (import ./quicklisp-to-nix-output/fiveam.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ "net_dot_didierverna_dot_asdf-flv" = quicklisp-to-nix-packages."net_dot_didierverna_dot_asdf-flv";
+ "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace";
+ }));
+
+
"fast-io" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."fast-io" or (x: {}))
(import ./quicklisp-to-nix-output/fast-io.nix {
inherit fetchurl;
+ "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
+ "static-vectors" = quicklisp-to-nix-packages."static-vectors";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -1014,6 +1185,12 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."fast-http" or (x: {}))
(import ./quicklisp-to-nix-output/fast-http.nix {
inherit fetchurl;
+ "xsubseq" = quicklisp-to-nix-packages."xsubseq";
+ "smart-buffer" = quicklisp-to-nix-packages."smart-buffer";
+ "proc-parse" = quicklisp-to-nix-packages."proc-parse";
+ "cl-utilities" = quicklisp-to-nix-packages."cl-utilities";
+ "babel" = quicklisp-to-nix-packages."babel";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -1031,6 +1208,7 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."esrap" or (x: {}))
(import ./quicklisp-to-nix-output/esrap.nix {
inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -1055,6 +1233,7 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."documentation-utils" or (x: {}))
(import ./quicklisp-to-nix-output/documentation-utils.nix {
inherit fetchurl;
+ "trivial-indent" = quicklisp-to-nix-packages."trivial-indent";
}));
@@ -1063,6 +1242,22 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."dexador" or (x: {}))
(import ./quicklisp-to-nix-output/dexador.nix {
inherit fetchurl;
+ "usocket" = quicklisp-to-nix-packages."usocket";
+ "trivial-mimes" = quicklisp-to-nix-packages."trivial-mimes";
+ "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
+ "quri" = quicklisp-to-nix-packages."quri";
+ "fast-io" = quicklisp-to-nix-packages."fast-io";
+ "fast-http" = quicklisp-to-nix-packages."fast-http";
+ "cl-reexport" = quicklisp-to-nix-packages."cl-reexport";
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ "cl-cookie" = quicklisp-to-nix-packages."cl-cookie";
+ "cl-base64" = quicklisp-to-nix-packages."cl-base64";
+ "cl+ssl" = quicklisp-to-nix-packages."cl+ssl";
+ "chunga" = quicklisp-to-nix-packages."chunga";
+ "chipz" = quicklisp-to-nix-packages."chipz";
+ "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
+ "babel" = quicklisp-to-nix-packages."babel";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -1189,6 +1384,7 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."cl-unicode" or (x: {}))
(import ./quicklisp-to-nix-output/cl-unicode.nix {
inherit fetchurl;
+ "cl-unicode_slash_base" = quicklisp-to-nix-packages."cl-unicode_slash_base";
}));
@@ -1235,9 +1431,11 @@ let quicklisp-to-nix-packages = rec {
"uiop" = quicklisp-to-nix-packages."uiop";
"trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams";
"trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage";
+ "trivial-features" = quicklisp-to-nix-packages."trivial-features";
"flexi-streams" = quicklisp-to-nix-packages."flexi-streams";
"cffi" = quicklisp-to-nix-packages."cffi";
"bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -1246,6 +1444,8 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."clss" or (x: {}))
(import ./quicklisp-to-nix-output/clss.nix {
inherit fetchurl;
+ "array-utils" = quicklisp-to-nix-packages."array-utils";
+ "plump" = quicklisp-to-nix-packages."plump";
}));
@@ -1294,6 +1494,7 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."cl-ppcre-template" or (x: {}))
(import ./quicklisp-to-nix-output/cl-ppcre-template.nix {
inherit fetchurl;
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
}));
@@ -1391,6 +1592,7 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."cl-emb" or (x: {}))
(import ./quicklisp-to-nix-output/cl-emb.nix {
inherit fetchurl;
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
}));
@@ -1425,6 +1627,15 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cl-cli" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-cli" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-cli.nix {
+ inherit fetchurl;
+ "split-sequence" = quicklisp-to-nix-packages."split-sequence";
+ }));
+
+
"cl-base64" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-base64" or (x: {}))
@@ -1481,11 +1692,39 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cl-ansi-text" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cl-ansi-text" or (x: {}))
+ (import ./quicklisp-to-nix-output/cl-ansi-text.nix {
+ inherit fetchurl;
+ "cl-colors" = quicklisp-to-nix-packages."cl-colors";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ }));
+
+
"clack-v1-compat" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."clack-v1-compat" or (x: {}))
(import ./quicklisp-to-nix-output/clack-v1-compat.nix {
inherit fetchurl;
+ "uiop" = quicklisp-to-nix-packages."uiop";
+ "trivial-types" = quicklisp-to-nix-packages."trivial-types";
+ "trivial-mimes" = quicklisp-to-nix-packages."trivial-mimes";
+ "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace";
+ "split-sequence" = quicklisp-to-nix-packages."split-sequence";
+ "quri" = quicklisp-to-nix-packages."quri";
+ "marshal" = quicklisp-to-nix-packages."marshal";
+ "local-time" = quicklisp-to-nix-packages."local-time";
+ "lack-util" = quicklisp-to-nix-packages."lack-util";
+ "lack" = quicklisp-to-nix-packages."lack";
+ "ironclad" = quicklisp-to-nix-packages."ironclad";
+ "http-body" = quicklisp-to-nix-packages."http-body";
+ "flexi-streams" = quicklisp-to-nix-packages."flexi-streams";
+ "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot";
+ "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
+ "cl-base64" = quicklisp-to-nix-packages."cl-base64";
+ "circular-streams" = quicklisp-to-nix-packages."circular-streams";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -1494,6 +1733,12 @@ let quicklisp-to-nix-packages = rec {
(qlOverrides."clack" or (x: {}))
(import ./quicklisp-to-nix-output/clack.nix {
inherit fetchurl;
+ "uiop" = quicklisp-to-nix-packages."uiop";
+ "lack-util" = quicklisp-to-nix-packages."lack-util";
+ "lack-middleware-backtrace" = quicklisp-to-nix-packages."lack-middleware-backtrace";
+ "lack" = quicklisp-to-nix-packages."lack";
+ "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
}));
@@ -1515,6 +1760,15 @@ let quicklisp-to-nix-packages = rec {
}));
+ "cffi-grovel" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."cffi-grovel" or (x: {}))
+ (import ./quicklisp-to-nix-output/cffi-grovel.nix {
+ inherit fetchurl;
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ }));
+
+
"cffi" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cffi" or (x: {}))
@@ -1567,6 +1821,16 @@ let quicklisp-to-nix-packages = rec {
((f: x: (x // (f x)))
(qlOverrides."babel" or (x: {}))
(import ./quicklisp-to-nix-output/babel.nix {
+ inherit fetchurl;
+ "trivial-features" = quicklisp-to-nix-packages."trivial-features";
+ "alexandria" = quicklisp-to-nix-packages."alexandria";
+ }));
+
+
+ "asdf-system-connections" = buildLispPackage
+ ((f: x: (x // (f x)))
+ (qlOverrides."asdf-system-connections" or (x: {}))
+ (import ./quicklisp-to-nix-output/asdf-system-connections.nix {
inherit fetchurl;
}));
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix/ql-to-nix.lisp b/pkgs/development/lisp-modules/quicklisp-to-nix/ql-to-nix.lisp
index 141fb0f34eb..f408ceeb3f5 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix/ql-to-nix.lisp
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix/ql-to-nix.lisp
@@ -49,6 +49,24 @@
(#\. "_dot_")
(t x)))))
+(defun system-depends-on (system-name)
+ (labels
+ ((decode (name)
+ (typecase name
+ (string
+ name)
+ (cons
+ (ecase (car name)
+ (:version (second name)))))))
+ (let* ((asdf-dependencies (asdf:system-depends-on (asdf:find-system system-name)))
+ (decoded-asdf-dependencies (mapcar #'decode asdf-dependencies))
+ (clean-asdf-dependencies (remove-if-not 'ql-dist:find-system decoded-asdf-dependencies))
+ (ql-dependencies (ql-dist:required-systems (ql-dist:find-system system-name)))
+ (all-dependencies (concatenate 'list clean-asdf-dependencies ql-dependencies))
+ (sorted-dependencies (sort all-dependencies #'string<))
+ (unique-dependencies (remove-duplicates sorted-dependencies :test #'equal)))
+ unique-dependencies)))
+
(defun system-data (system)
(let*
((asdf-system
@@ -69,7 +87,7 @@
(nix-prefetch-url local-url)))
(ideal-md5 (ql-dist:archive-md5 ql-release))
(file-md5 (getf archive-data :md5))
- (raw-dependencies (ql-dist:required-systems ql-system))
+ (raw-dependencies (system-depends-on system))
(name (string-downcase (format nil "~a" system)))
(ql-sibling-names
(remove name (mapcar 'ql-dist:name ql-sibling-systems)
diff --git a/pkgs/development/mobile/androidenv/androidndk.nix b/pkgs/development/mobile/androidenv/androidndk.nix
index c6ee22e4d3c..8ef58471d6a 100644
--- a/pkgs/development/mobile/androidenv/androidndk.nix
+++ b/pkgs/development/mobile/androidenv/androidndk.nix
@@ -64,6 +64,11 @@ stdenv.mkDerivation rec {
sed -i -e ${sed_script_2} ndk-which
# a bash script
patchShebangs ndk-which
+ # wrap
+ for i in ndk-build ndk-gdb ndk-gdb-py ndk-which
+ do
+ wrapProgram "$(pwd)/$i" --prefix PATH : "${runtime_paths}"
+ done
# make some executables available in PATH
mkdir -pv ${bin_path}
for i in \
@@ -71,11 +76,6 @@ stdenv.mkDerivation rec {
do
ln -sf ${pkg_path}/$i ${bin_path}/$i
done
- # wrap
- for i in ndk-build ndk-gdb ndk-gdb-py ndk-which
- do
- wrapProgram "${bin_path}/$i" --prefix PATH : "${runtime_paths}"
- done
'';
meta = {
diff --git a/pkgs/development/mobile/androidenv/androidndk_r8e.nix b/pkgs/development/mobile/androidenv/androidndk_r8e.nix
index 4239dc55e7c..ccf22d6b953 100644
--- a/pkgs/development/mobile/androidenv/androidndk_r8e.nix
+++ b/pkgs/development/mobile/androidenv/androidndk_r8e.nix
@@ -64,6 +64,11 @@ stdenv.mkDerivation rec {
sed -i -e ${sed_script_2} ndk-which
# a bash script
patchShebangs ndk-which
+ # wrap
+ for i in ndk-build ndk-gdb ndk-gdb-py ndk-which
+ do
+ wrapProgram "$(pwd)/$i" --prefix PATH : "${runtime_paths}"
+ done
# make some executables available in PATH
mkdir -pv ${bin_path}
for i in \
@@ -71,10 +76,5 @@ stdenv.mkDerivation rec {
do
ln -sf ${pkg_path}/$i ${bin_path}/$i
done
- # wrap
- for i in ndk-build ndk-gdb ndk-gdb-py ndk-which
- do
- wrapProgram "${bin_path}/$i" --prefix PATH : "${runtime_paths}"
- done
'';
}
diff --git a/pkgs/development/node-packages/composition-v4.nix b/pkgs/development/node-packages/composition-v4.nix
index 8c4a5390f55..dc5899ebf1a 100644
--- a/pkgs/development/node-packages/composition-v4.nix
+++ b/pkgs/development/node-packages/composition-v4.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.2.0. Do not edit!
+# This file has been generated by node2nix 1.3.0. Do not edit!
{pkgs ? import {
inherit system;
diff --git a/pkgs/development/node-packages/composition-v6.nix b/pkgs/development/node-packages/composition-v6.nix
index ea30c5b04c4..0c01a169af4 100644
--- a/pkgs/development/node-packages/composition-v6.nix
+++ b/pkgs/development/node-packages/composition-v6.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.2.0. Do not edit!
+# This file has been generated by node2nix 1.3.0. Do not edit!
{pkgs ? import {
inherit system;
diff --git a/pkgs/development/node-packages/node-packages-v4.nix b/pkgs/development/node-packages/node-packages-v4.nix
index c8924937cac..e2d9b5c348e 100644
--- a/pkgs/development/node-packages/node-packages-v4.nix
+++ b/pkgs/development/node-packages/node-packages-v4.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.2.0. Do not edit!
+# This file has been generated by node2nix 1.3.0. Do not edit!
{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
@@ -73,7 +73,7 @@ let
version = "3.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
- sha1 = "5166e286457f03306064be5497e8dbb0c3d32083";
+ sha512 = "1879a3j85h92ypvb7lpv1dqpcxl49rqnbgs5la18zmj1yqhwl60c2m74254wbr5pp3znckqpkg9dvjyrz6hfz8b9vag5a3j910db4f8";
};
};
"once-1.4.0" = {
@@ -640,7 +640,7 @@ let
version = "2.3.3";
src = fetchurl {
url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz";
- sha1 = "368f2512d79f9d46fdfc71349ae7878bbc1eb95c";
+ sha512 = "1wlizkv2wnz2nyb0lfxgs1m27zzcvasp3n5cfrd7hm4ch1wn79df2nbhzfadba5qqdfb28vhmw3drhp46vk2q6xk524qagvr76v7slv";
};
};
"xtend-4.0.1" = {
@@ -676,7 +676,7 @@ let
version = "5.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz";
- sha1 = "893312af69b2123def71f57889001671eeb2c853";
+ sha512 = "1p28rllll1w65yzq5azi4izx962399xdsdlfbaynn7vmp981hiss05jhiy9hm7sbbfk3b4dhlcv0zy07fc59mnc07hdv6wcgqkcvawh";
};
};
"string_decoder-1.0.3" = {
@@ -685,7 +685,7 @@ let
version = "1.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz";
- sha1 = "0fc67d7c141825de94282dd536bec6b9bce860ab";
+ sha512 = "22vw5mmwlyblqc2zyqwl39wyhyahhpiyknim8iz5fk6xi002x777gkswiq8fh297djs5ii4pgrys57wq33hr5zf3xfd0d7kjxkzl0g0";
};
};
"util-deprecate-1.0.2" = {
@@ -793,7 +793,7 @@ let
version = "1.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz";
- sha1 = "a75be01c53da25d934a98ebd0e4c4a7312f92a86";
+ sha512 = "3aygixvrv5l6jm5n2dfgzyx4z86l3q2v7c2rln6znai3877q0r5ajlxgdaj4qm9h70yp7grmg9kmvr77ww2zckc7bm22zzfldafqvk9";
};
};
"detect-file-0.1.0" = {
@@ -955,7 +955,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
- sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1";
+ sha512 = "2vdly17xk5kw7bfzajrjdnw4ml3wrfblx8064n0i4fxlchcscx2mvnwkq2bnnqvbqvdy4vs9ad462lz0rid7khysly9m9vzjiblly1g";
};
};
"expand-range-1.8.2" = {
@@ -1018,7 +1018,7 @@ let
version = "1.1.7";
src = fetchurl {
url = "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz";
- sha1 = "c7abe9cc8b87c0baa876b19fde83fd464797e38c";
+ sha512 = "2is2kipfnz3hl4yxgqk07rll6956cq3zzf9cddai3f0lij5acq76v98qv14qkpljh1pqfsyb8p69xa9cyaww6p0j91s4vc9zj6594hg";
};
};
"repeat-string-1.6.1" = {
@@ -1066,13 +1066,13 @@ let
sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4";
};
};
- "remove-trailing-separator-1.0.2" = {
+ "remove-trailing-separator-1.1.0" = {
name = "remove-trailing-separator";
packageName = "remove-trailing-separator";
- version = "1.0.2";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz";
- sha1 = "69b062d978727ad14dc6b56ba4ab772fd8d70511";
+ url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
+ sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
};
};
"for-own-0.1.5" = {
@@ -1216,7 +1216,7 @@ let
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz";
- sha1 = "ff04bdfc010ee547d780bec38e1ac1c2777d253a";
+ sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5";
};
};
"parse-passwd-1.0.0" = {
@@ -1252,7 +1252,7 @@ let
version = "2.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
- sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677";
+ sha512 = "0xgsjz9m3kg5pm36lcchblxk53qay59ya7wi5jgdmz0dsl5b0j2j7wcd48yyfaip1m70mj9aqf8kib02fn62k0hy0vxg2hng60yk4w7";
};
};
"object.defaults-1.1.0" = {
@@ -1711,7 +1711,7 @@ let
version = "7.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
- sha1 = "c19c9df9a028702d678612384a6552404c636d15";
+ sha512 = "08vjxzixc9dwc1hn5pd60yyij98krk2pr758aiga97r02ncvaqx1hidi95wk470k1v84gg4alls9bm52m77174z128bgf13b61x951h";
};
};
"graceful-fs-4.1.11" = {
@@ -1729,7 +1729,7 @@ let
version = "4.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz";
- sha1 = "08a7f2a8bf734604779a9efa4ad5cc717abb954b";
+ sha512 = "2967mavp7zw0aawf5fadqf4pmn7vy5gya1yx2s9wwppvivhd9q4mpdnszfqvd7p6yks649bwbpj8iviw86g0hpp4f93d5ca7dmjmrfs";
};
};
"osenv-0.1.4" = {
@@ -1837,7 +1837,7 @@ let
version = "1.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz";
- sha1 = "45c6629094de4e96f693ef7eab74ae079c240fc1";
+ sha512 = "0zmgm7vf91vxk5hdvkwhfnzjxz9r6hwpn8dlbpasaax8rxx7z1qqdmh8l631vawj7y1bkpsd0v0mhjh9agggkjl72f3vlnfhy61m5k6";
};
};
"has-unicode-2.0.1" = {
@@ -1882,7 +1882,7 @@ let
version = "1.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz";
- sha1 = "571e0f1b0604636ebc0dfc21b0339bbe31341710";
+ sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a";
};
};
"code-point-at-1.1.0" = {
@@ -2098,7 +2098,7 @@ let
version = "3.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz";
- sha1 = "3dd3d3e790abc24d7b0d3a034ffababe28ebbc04";
+ sha512 = "3x5mi85l1559nkb35pfksjjgiyfyqrcvmcf0nly1xjl1kb0d37jnxd6sk0b8d331waadnqbf60nfssb563x9pvnjcw87lrh976sv18c";
};
};
"delayed-stream-1.0.0" = {
@@ -2665,7 +2665,7 @@ let
version = "2.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz";
- sha1 = "12f95a307d58352075a04907b84ac8be98ac012f";
+ sha512 = "01wzws79ps84ylshjb7rfpjykgiqxnpr89s52p2yyzfx8nfvyh5flvf1almiiavsi75xgi8g3s5davc1mmgz7gn8yvlqz6gnhax8f7n";
};
};
"read-pkg-up-1.0.1" = {
@@ -2728,7 +2728,7 @@ let
version = "2.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz";
- sha1 = "6d60e34b3abbc8313062c3b798ef8d901a07af3c";
+ sha512 = "355g980qsk8k9hkv60z58llbvpscjl5yqkh4wx719s8jcq2swzn4ynzinj8azmvdgs10r22wb297rmixh9vvsml55sbysdf2i8ipn54";
};
};
"is-builtin-module-1.0.0" = {
@@ -3043,7 +3043,7 @@ let
version = "1.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.4.tgz";
- sha1 = "18574f2e7c4b98b8ae3b230c21f201f31bdb3fb7";
+ sha512 = "2vbps6iw562i2zxd973z5mmbs8ggx3wbz4g1jqwvkjibiwrk9ym8bxcvvwnlmxqad92x120x5xz5nyfq68nd8akk355bkk0qjppzafp";
};
};
"fresh-0.5.0" = {
@@ -3115,7 +3115,7 @@ let
version = "6.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/qs/-/qs-6.5.0.tgz";
- sha1 = "8d04954d364def3efc55b5a0793e1e2c8b1e6e49";
+ sha512 = "2d5w08p3vr4l6rjcn5n5ph8g5wr0nzpypg1b7axvz3q3r9pp5jxanhywvd76wk76nqjcqb4p6n4l4ifjw8164bcahhs71kjdy6ladby";
};
};
"range-parser-1.2.0" = {
@@ -3340,7 +3340,7 @@ let
version = "5.4.1";
src = fetchurl {
url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz";
- sha1 = "e059c09d8571f0540823733433505d3a2f00b18e";
+ sha512 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar";
};
};
"tar-pack-3.4.0" = {
@@ -3502,7 +3502,7 @@ let
version = "9.2.9";
src = fetchurl {
url = "https://registry.npmjs.org/cacache/-/cacache-9.2.9.tgz";
- sha1 = "f9d7ffe039851ec94c28290662afa4dd4bb9e8dd";
+ sha512 = "11qjza6qy62lkvynngcvx7nf2vhxvvp4g0l07a8zw5pzqc5iy0zznxzgs0dw1bb2i10dr2v7i624x6v9pkzp55snam9wk5jjf7ka642";
};
};
"call-limit-1.1.0" = {
@@ -3601,7 +3601,7 @@ let
version = "1.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/fstream-npm/-/fstream-npm-1.2.1.tgz";
- sha1 = "08c4a452f789dcbac4c89a4563c902b2c862fd5b";
+ sha512 = "07r7qvmx5fjjk2ra3hjrz31ciy4vhfq2k8a3wjscjl7y52885zwfvz4caa5xr3kab8l3y4c9rsz1nkpjl530irrs6q5l3z6yadyj4c8";
};
};
"iferr-0.1.5" = {
@@ -3637,7 +3637,7 @@ let
version = "9.2.3";
src = fetchurl {
url = "https://registry.npmjs.org/libnpx/-/libnpx-9.2.3.tgz";
- sha1 = "f6fb833dae64044c93dc31eff99cff4a019dc304";
+ sha512 = "0ki52cm2pf27r9pkpfbrx6y1myg7yx1mghwnvv6mw4kmgscif08qlj0xzlc88kpfl549xip4z1ap64s22l7v3q26ygz6x12cch87wsr";
};
};
"lockfile-1.0.3" = {
@@ -3700,7 +3700,7 @@ let
version = "4.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz";
- sha1 = "622e32e82488b49279114a4f9ecf45e7cd6bba55";
+ sha512 = "1xz91sizgyzh8plz5jx1labzpygapm6xy3qpxriaj00yvnhy4lnmhqcb20qln4lh80c5g3yzp4j5i6g63njq1r5sl9c0zlkh9xjk2xb";
};
};
"mississippi-1.3.0" = {
@@ -3754,7 +3754,7 @@ let
version = "5.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-5.1.2.tgz";
- sha1 = "fb18d17bb61e60900d6312619919bd753755ab37";
+ sha512 = "36g1gm57qcvdgb4lm6ibl9pgma8lgx8l8i2jzap6w3v36wfzsqa7vb411zd26yp9rgcq23951vl5j6pac22qd5h9x7jm9raznnnr460";
};
};
"npm-registry-client-8.4.0" = {
@@ -3763,7 +3763,7 @@ let
version = "8.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.4.0.tgz";
- sha1 = "d52b901685647fc62a4c03eafecb6ceaa5018d4c";
+ sha512 = "20ka7w1mdgrazm20d5jihqam7gpiz0rnm2r6i91ax11mq96zn81ywwmmy3jr3yjddrc1bzcljxbs86wlwwrrzsgki2igj95mnm5ylrx";
};
};
"npm-user-validate-1.0.0" = {
@@ -3790,7 +3790,7 @@ let
version = "2.7.38";
src = fetchurl {
url = "https://registry.npmjs.org/pacote/-/pacote-2.7.38.tgz";
- sha1 = "5091f8774298c26c3eca24606037f1bb73db74c1";
+ sha512 = "0a0ar6lns179qdszia13prhj7gjpdjy334xafq791h48q00259lr6gpkzp17dagfcnff9pgcgxm7b68nidpj5qs0yah1v81fk4d84az";
};
};
"path-is-inside-1.0.2" = {
@@ -3838,13 +3838,13 @@ let
sha1 = "ff9b8b67f187d1e4c29b9feb31f6b223acd19067";
};
};
- "read-package-json-2.0.10" = {
+ "read-package-json-2.0.11" = {
name = "read-package-json";
packageName = "read-package-json";
- version = "2.0.10";
+ version = "2.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.10.tgz";
- sha1 = "dc0229f6dde6b4b705b39e25b2d970ebe95685ae";
+ url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.11.tgz";
+ sha512 = "1y74w8zm70x1zc7qgg6fxg72pb78dmafg2bf5x4gn1z8d4amjrw2q3d4j9035ginsrigk372scwj57p0ll5ck9yxdgnyjpzcd5fj7wy";
};
};
"read-package-tree-5.1.6" = {
@@ -3853,7 +3853,7 @@ let
version = "5.1.6";
src = fetchurl {
url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.6.tgz";
- sha1 = "4f03e83d0486856fb60d97c94882841c2a7b1b7a";
+ sha512 = "0v1k32zqj8bnqzyp5h0jxnkvpgpzpa6z7iyqbpm3p0ylqafbb2zm656mw6gs16zf98l7y218ygpx2kzks00qcycwwx2cny67mlza98l";
};
};
"retry-0.10.1" = {
@@ -3907,7 +3907,7 @@ let
version = "4.1.6";
src = fetchurl {
url = "https://registry.npmjs.org/ssri/-/ssri-4.1.6.tgz";
- sha1 = "0cb49b6ac84457e7bdd466cb730c3cb623e9a25b";
+ sha512 = "283n1p781cl2pj3jk32blcvwjdlaixng0v5x2f9qi3ndxrmyg3hk4clsjpcfsszkymy40q426yz5skax4ivsmll2p9hhcc00ivc4ijr";
};
};
"strip-ansi-4.0.0" = {
@@ -3979,7 +3979,7 @@ let
version = "1.4.1";
src = fetchurl {
url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.4.1.tgz";
- sha1 = "a438bc993a7a7d133bcb6547c95eca7cff4897d8";
+ sha512 = "0vh5z2d6q3zgf7j3g5ngyq4piqq1y613wacfyildfnm2c2klb4h2gw32grgk6pv9ssyiliyfvj4p4alpaa85cqcj2nznb4q0fv400dn";
};
};
"write-file-atomic-2.1.0" = {
@@ -3988,7 +3988,7 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.1.0.tgz";
- sha1 = "1769f4b551eedce419f0505deae2e26763542d37";
+ sha512 = "0jpbx5znf640m7icywa21hdgyss5h6c811z27mzk7mh1yhv8sqcqd2y0cwgkrnigx57k2chv5cqwv0z8ff8z32gpdw8jw5imz8pcdni";
};
};
"debuglog-1.0.1" = {
@@ -4150,7 +4150,7 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz";
- sha1 = "42bc2900a6b5b8bd17376c8e882b65afccf24bf2";
+ sha512 = "0lafrp0i2ajapsnma0x74q7zscn97a56i5hh58a0nyig2igfx9fqn4ain9kvjrr06as5gzdrv2wdf52qc5m861fd0f4cv69ghdjbjyy";
};
};
"read-pkg-up-2.0.0" = {
@@ -4186,7 +4186,7 @@ let
version = "2.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
- sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e";
+ sha512 = "29s1fqgr4mnhfxwczgdghfmmc1f792m9hysvcjxw2h5lfj8ndf2b6gm02m96qk5m75g4aisijvng4pk618anwbr8i9ay2jyszkqgslw";
};
};
"which-module-2.0.0" = {
@@ -4447,7 +4447,7 @@ let
version = "3.5.1";
src = fetchurl {
url = "https://registry.npmjs.org/duplexify/-/duplexify-3.5.1.tgz";
- sha1 = "4e1516be68838bc90a49994f0b39a6e5960befcd";
+ sha512 = "0cyjpkdqc1lkh2fh7z9p2i6va4fvwazvpn4153ndpb2ng8w0q9x9kb0hk07yy0baj50s1kl58m7f7zmx8fqdfcp2vsl0m7hfk22i64g";
};
};
"end-of-stream-1.4.0" = {
@@ -4564,7 +4564,7 @@ let
version = "2.4.13";
src = fetchurl {
url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-2.4.13.tgz";
- sha1 = "3139ba2f4230a8384e7ba394534816c872ecbf4b";
+ sha512 = "0j8sgm5sh7lb4mdpg52yz9rv0jpgkd3bf701i30gd5s3aqxb0i2lq8qm4bndqqfcb8jgiw8wj6dwpv2497khvxmmx3bfj0iad7aqw7g";
};
};
"npm-pick-manifest-1.0.4" = {
@@ -4573,7 +4573,7 @@ let
version = "1.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-1.0.4.tgz";
- sha1 = "a5ee6510c1fe7221c0bc0414e70924c14045f7e8";
+ sha512 = "02pmkjkn2nbr1ypwzwybyd6bfckdwr8cr0nah5bwadz21yd7cd9fbvxqalfdc41n88p1zv8qbgp149knkaixnrl8l7jnrwfxislvb1h";
};
};
"promise-retry-1.1.1" = {
@@ -4618,7 +4618,7 @@ let
version = "3.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.3.0.tgz";
- sha1 = "6d5de5829afd3be2712201a39275fd11c651857c";
+ sha512 = "0svpj8gbh57a1l3zcds9kd8dkh4r2fyacpkrxvffbpj5pgvbf26h93q31niqbqsciswdxlx0fhikljqwg40lvmwxl299nb2gfjmqa7p";
};
};
"http-cache-semantics-3.7.3" = {
@@ -4645,16 +4645,16 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.1.0.tgz";
- sha1 = "1391bee7fd66aeabc0df2a1fa90f58954f43e443";
+ sha512 = "17fg8xbji1zam9ksqgdfsyhqfw1nyniz8gwp54q0z7rz1pxw2m3agniawm870nn4j88m1w9l0lfkw5wa4qf1593if0cwicv814xad7w";
};
};
- "node-fetch-npm-2.0.1" = {
+ "node-fetch-npm-2.0.2" = {
name = "node-fetch-npm";
packageName = "node-fetch-npm";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/node-fetch-npm/-/node-fetch-npm-2.0.1.tgz";
- sha1 = "4dd3355ce526c01bc5ab29ccdf48352dc8a79465";
+ url = "https://registry.npmjs.org/node-fetch-npm/-/node-fetch-npm-2.0.2.tgz";
+ sha512 = "0bw6m444q0jc2gmw1yb0im1jv6vhky6d071p72c26ajvf2a7710jq8cp5ampf8j7kdbki7j0mbsi15dh93vrhkpvqpkw0i6ajdk34lw";
};
};
"socks-proxy-agent-3.0.0" = {
@@ -4663,7 +4663,7 @@ let
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.0.tgz";
- sha1 = "ea23085cd2bde94d084a62448f31139ca7ed6245";
+ sha512 = "3zn9cz2ry5m1akapj7hvhgkxfq7ffwynia46lmwipsw2jk5sv8dvs32dc4hfx3xvp34i1jff1bg870a1xnknsgk5dl021jd4gwi75v0";
};
};
"humanize-ms-1.2.1" = {
@@ -4681,7 +4681,7 @@ let
version = "4.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/agent-base/-/agent-base-4.1.1.tgz";
- sha1 = "92d8a4fc2524a3b09b3666a33b6c97960f23d6a4";
+ sha512 = "2naw79i4m7pj1n5qw9xq6c0c8cdjfcqhdqk4j552nbrpb4c60hic13jfikqw7xga8xywpr57z2y5z70gn5xiihq47vzs3wrc1998qf9";
};
};
"es6-promisify-5.0.0" = {
@@ -4699,7 +4699,7 @@ let
version = "4.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.1.1.tgz";
- sha1 = "8811e90915d9a0dba36274f0b242dbda78f9c92a";
+ sha512 = "2g2gkw8cxy2lww5lqjbv0imkxkhy684pagbq4qaw6np46xcx1r6rbkg7qy4wjv12b7jy7zs208iilim7clc9v6ws2dzy9g0g223b99r";
};
};
"encoding-0.1.12" = {
@@ -4711,13 +4711,13 @@ let
sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb";
};
};
- "json-parse-helpfulerror-1.0.3" = {
- name = "json-parse-helpfulerror";
- packageName = "json-parse-helpfulerror";
- version = "1.0.3";
+ "json-parse-better-errors-1.0.1" = {
+ name = "json-parse-better-errors";
+ packageName = "json-parse-better-errors";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz";
- sha1 = "13f14ce02eed4e981297b64eb9e3b932e2dd13dc";
+ url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz";
+ sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967";
};
};
"iconv-lite-0.4.18" = {
@@ -4726,16 +4726,7 @@ let
version = "0.4.18";
src = fetchurl {
url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz";
- sha1 = "23d8656b16aae6742ac29732ea8f0336a4789cf2";
- };
- };
- "jju-1.3.0" = {
- name = "jju";
- packageName = "jju";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jju/-/jju-1.3.0.tgz";
- sha1 = "dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa";
+ sha512 = "2l97vd6kax8syr9aggcqhiyhd3b2rf506wdq6wapfrc74qwpdzqf2a3891kq9ri3g5sdzayph2sz4zkr8kbbps58z9h2lvpk115kgdj";
};
};
"socks-1.1.10" = {
@@ -4852,7 +4843,7 @@ let
version = "3.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz";
- sha1 = "094ee662ab83fad9917678de114faaea8fcdca90";
+ sha512 = "2zmidvkp20q25yv6a5d7k1daawdg0w6ppgayxzpwfhyvmgwybkkv7ni0j4b2j9c8wjn8z33zf5d4bjr8jywb5qixc75vypyy87n90z6";
};
};
"import-lazy-2.1.0" = {
@@ -4915,7 +4906,7 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/chalk/-/chalk-2.1.0.tgz";
- sha1 = "ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e";
+ sha512 = "1fnn3znivja3xq1lacvsdwkl2s8ki9w95sylnf2pkmaia1mjz3llbdb5r2dxsflqfky3h8f1bh0piv0l5waw2bkdniqnyv0yx5wch9d";
};
};
"cli-boxes-1.0.0" = {
@@ -4951,7 +4942,7 @@ let
version = "3.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz";
- sha1 = "c159b8d5be0f9e5a6f346dab94f16ce022161b88";
+ sha512 = "2x19fs1qvg7ifsdvii4g8kqpa5hir1lm0k0y0fz6dhm5c8gh4z9il4wqczl078p2ikmrav23dmj86cxy8y1j22k4mv59d8qq6c8wx1n";
};
};
"supports-color-4.2.1" = {
@@ -4960,7 +4951,7 @@ let
version = "4.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/supports-color/-/supports-color-4.2.1.tgz";
- sha1 = "65a4bb2631e90e02420dba5554c375a4754bb836";
+ sha512 = "1ldz0jkrkclywnr7gwh85p6kljs5rm4jczbpj55vb9w5c81iyrf1ahgkw88nnzahgw2xvlg041vqk7gynxkwcqkzfagxjpphsrdh75b";
};
};
"color-convert-1.9.0" = {
@@ -4996,7 +4987,7 @@ let
version = "4.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz";
- sha1 = "1f19e0c2e1aa0e32797c49799f2837ac6af69c57";
+ sha512 = "2wyv9brsq3dzp724y1q5z5j5ja83y834hgc193lnarfdycwz1ii3xg02qxx3dg05x3skwjm1di5s5a8hqi8l5v1afx2bia436pifhxm";
};
};
"make-dir-1.0.0" = {
@@ -5590,7 +5581,7 @@ let
version = "2.11.0";
src = fetchurl {
url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz";
- sha1 = "157152fd1e7a6c8d98a5b715cf376df928004563";
+ sha512 = "2yi2hwf0bghfnv1fdgd4wvh7s0acjrgqbgww97ncm6i6s6ffs1zahnj48f6gqpqj6fsf0jigvnr0civ25k2160c38281r80wvg7jkkg";
};
};
"is-my-json-valid-2.16.0" = {
@@ -5710,7 +5701,7 @@ in
version = "1.12.7";
src = fetchurl {
url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz";
- sha1 = "c05dae0cb79591d05b3070a8433a98c9a89ccc53";
+ sha512 = "29mq40padyvizg4f141b00p0p74hx9v06d7gxk84ggsiyw6rf5bb65gnfwk1i02r276jwqybmi5hx98s943slyazjnqd69jmj389dvw";
};
buildInputs = globalBuildInputs;
meta = {
@@ -5973,7 +5964,7 @@ in
})
(sources."normalize-path-2.1.1" // {
dependencies = [
- sources."remove-trailing-separator-1.0.2"
+ sources."remove-trailing-separator-1.1.0"
];
})
(sources."object.omit-2.0.1" // {
@@ -7614,7 +7605,7 @@ in
version = "5.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/npm/-/npm-5.3.0.tgz";
- sha1 = "e2ae85ef09d53f7f570a05578692899bf7879f17";
+ sha512 = "29izly6jqqdaslak9xz3i3bsr7qgg5vjcbzf55as0hh630z4aml48n5a7dz6skqn34d02fg3bk2zwkq7n67z787wn14vr3na9chx6v4";
};
dependencies = [
(sources."JSONStream-1.3.1" // {
@@ -8031,18 +8022,14 @@ in
})
];
})
- (sources."node-fetch-npm-2.0.1" // {
+ (sources."node-fetch-npm-2.0.2" // {
dependencies = [
(sources."encoding-0.1.12" // {
dependencies = [
sources."iconv-lite-0.4.18"
];
})
- (sources."json-parse-helpfulerror-1.0.3" // {
- dependencies = [
- sources."jju-1.3.0"
- ];
- })
+ sources."json-parse-better-errors-1.0.1"
];
})
(sources."socks-proxy-agent-3.0.0" // {
@@ -8118,13 +8105,9 @@ in
sources."util-extend-1.0.3"
];
})
- (sources."read-package-json-2.0.10" // {
+ (sources."read-package-json-2.0.11" // {
dependencies = [
- (sources."json-parse-helpfulerror-1.0.3" // {
- dependencies = [
- sources."jju-1.3.0"
- ];
- })
+ sources."json-parse-better-errors-1.0.1"
];
})
sources."read-package-tree-5.1.6"
diff --git a/pkgs/development/node-packages/node-packages-v6.nix b/pkgs/development/node-packages/node-packages-v6.nix
index bff856d910d..da1d79e02ed 100644
--- a/pkgs/development/node-packages/node-packages-v6.nix
+++ b/pkgs/development/node-packages/node-packages-v6.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.2.0. Do not edit!
+# This file has been generated by node2nix 1.3.0. Do not edit!
{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
@@ -82,7 +82,7 @@ let
version = "1.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz";
- sha1 = "a75be01c53da25d934a98ebd0e4c4a7312f92a86";
+ sha512 = "3aygixvrv5l6jm5n2dfgzyx4z86l3q2v7c2rln6znai3877q0r5ajlxgdaj4qm9h70yp7grmg9kmvr77ww2zckc7bm22zzfldafqvk9";
};
};
"global-paths-0.1.2" = {
@@ -424,7 +424,7 @@ let
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz";
- sha1 = "ff04bdfc010ee547d780bec38e1ac1c2777d253a";
+ sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5";
};
};
"parse-passwd-1.0.0" = {
@@ -1162,7 +1162,7 @@ let
version = "3.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz";
- sha1 = "3dd3d3e790abc24d7b0d3a034ffababe28ebbc04";
+ sha512 = "3x5mi85l1559nkb35pfksjjgiyfyqrcvmcf0nly1xjl1kb0d37jnxd6sk0b8d331waadnqbf60nfssb563x9pvnjcw87lrh976sv18c";
};
};
"validator-5.2.0" = {
@@ -1270,7 +1270,7 @@ let
version = "5.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz";
- sha1 = "893312af69b2123def71f57889001671eeb2c853";
+ sha512 = "1p28rllll1w65yzq5azi4izx962399xdsdlfbaynn7vmp981hiss05jhiy9hm7sbbfk3b4dhlcv0zy07fc59mnc07hdv6wcgqkcvawh";
};
};
"buffer-equal-constant-time-1.0.1" = {
@@ -1615,13 +1615,13 @@ let
sha1 = "0e3c4f24a3f052b231b12d5049085a0a099be782";
};
};
- "@types/node-7.0.39" = {
+ "@types/node-7.0.42" = {
name = "@types/node";
packageName = "@types/node";
- version = "7.0.39";
+ version = "7.0.42";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-7.0.39.tgz";
- sha1 = "8aced4196387038113f6f9aa4014ab4c51edab3c";
+ url = "https://registry.npmjs.org/@types/node/-/node-7.0.42.tgz";
+ sha512 = "3qxigqldpssvqrmzvaq4zsshk19240ad5284716hgf2h1ibp97pbqcjxxpx1zc0kkcpx2vf2zf7mk5a3cdahhvxgabywkh8f94gcpvh";
};
};
"@types/request-0.0.45" = {
@@ -1630,7 +1630,7 @@ let
version = "0.0.45";
src = fetchurl {
url = "https://registry.npmjs.org/@types/request/-/request-0.0.45.tgz";
- sha1 = "c6e52be8b108eb035c35aa9af56a38a260c3e7e6";
+ sha512 = "37apdgz29nhb3cpz9l2m1j1vj646727yzrk6ch66ji4yz0al4529gp3zlwdqcsi2w1kw43n2jsr2jq4vs9n7i4qgklrkwpr6h9130iq";
};
};
"@types/uuid-2.0.30" = {
@@ -1639,7 +1639,7 @@ let
version = "2.0.30";
src = fetchurl {
url = "https://registry.npmjs.org/@types/uuid/-/uuid-2.0.30.tgz";
- sha1 = "4dca12da43ae530f89f46d6d203935d2199652d5";
+ sha512 = "117asm25fci0i0w2igvz0mxydd0m4vsz1l55kibx36d19j8md4s9fmvispcy83m7zlf9w9s4di7v0j8rawnyn67xci916gn0b88jr4y";
};
};
"is-stream-1.1.0" = {
@@ -1657,7 +1657,7 @@ let
version = "2.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/@types/form-data/-/form-data-2.2.0.tgz";
- sha1 = "a98aac91dc99857b6af24caef7ca6df302f31565";
+ sha512 = "26fb719b154ab3x89bbgpp3fk4jcrfal0y909ik8zss3d8ykn1dsh9wm3q08j5pzpy3wvfy41h0yzfhbl7k3lb4zjqm9swwq8d4wvmy";
};
};
"debug-0.7.4" = {
@@ -1774,7 +1774,7 @@ let
version = "7.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
- sha1 = "c19c9df9a028702d678612384a6552404c636d15";
+ sha512 = "08vjxzixc9dwc1hn5pd60yyij98krk2pr758aiga97r02ncvaqx1hidi95wk470k1v84gg4alls9bm52m77174z128bgf13b61x951h";
};
};
"fs.realpath-1.0.0" = {
@@ -1801,7 +1801,7 @@ let
version = "3.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
- sha1 = "5166e286457f03306064be5497e8dbb0c3d32083";
+ sha512 = "1879a3j85h92ypvb7lpv1dqpcxl49rqnbgs5la18zmj1yqhwl60c2m74254wbr5pp3znckqpkg9dvjyrz6hfz8b9vag5a3j910db4f8";
};
};
"once-1.4.0" = {
@@ -2089,7 +2089,7 @@ let
version = "2.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/async/-/async-2.5.0.tgz";
- sha1 = "843190fd6b7357a0b9e1c956edddd5ec8462b54d";
+ sha512 = "1ijrwmifg76a8wwhhfqxg23kd0rsjhzklwvj2czvqxs2k25ii6p3y6s3vhbcc5hnr87b0gfc4nb54b8bph2hn9c6z1f6nldjw04ksbv";
};
};
"lodash-4.17.4" = {
@@ -2116,7 +2116,7 @@ let
version = "2.11.0";
src = fetchurl {
url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz";
- sha1 = "157152fd1e7a6c8d98a5b715cf376df928004563";
+ sha512 = "2yi2hwf0bghfnv1fdgd4wvh7s0acjrgqbgww97ncm6i6s6ffs1zahnj48f6gqpqj6fsf0jigvnr0civ25k2160c38281r80wvg7jkkg";
};
};
"is-my-json-valid-2.16.0" = {
@@ -2512,7 +2512,7 @@ let
version = "2.3.3";
src = fetchurl {
url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz";
- sha1 = "368f2512d79f9d46fdfc71349ae7878bbc1eb95c";
+ sha512 = "1wlizkv2wnz2nyb0lfxgs1m27zzcvasp3n5cfrd7hm4ch1wn79df2nbhzfadba5qqdfb28vhmw3drhp46vk2q6xk524qagvr76v7slv";
};
};
"string_decoder-1.0.3" = {
@@ -2521,7 +2521,7 @@ let
version = "1.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz";
- sha1 = "0fc67d7c141825de94282dd536bec6b9bce860ab";
+ sha512 = "22vw5mmwlyblqc2zyqwl39wyhyahhpiyknim8iz5fk6xi002x777gkswiq8fh297djs5ii4pgrys57wq33hr5zf3xfd0d7kjxkzl0g0";
};
};
"http-basic-2.5.1" = {
@@ -2539,7 +2539,7 @@ let
version = "7.3.1";
src = fetchurl {
url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz";
- sha1 = "064b72602b18f90f29192b8b1bc418ffd1ebd3bf";
+ sha512 = "17cn4nns2nxh9r0pdiqsqx3fpvaa82c1mhcr8r84k2a9hkpb0mj4bxzfbg3l9iy74yn9hj6mh2gsddsi3v939a1zp7ycbzqkxfm12cy";
};
};
"asap-2.0.6" = {
@@ -2665,7 +2665,7 @@ let
version = "5.4.1";
src = fetchurl {
url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz";
- sha1 = "e059c09d8571f0540823733433505d3a2f00b18e";
+ sha512 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar";
};
};
"temp-0.8.3" = {
@@ -2746,7 +2746,7 @@ let
version = "2.2.2";
src = fetchurl {
url = "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz";
- sha1 = "0b98e64ed82f5acf0f2931babf69212ef52ddd37";
+ sha512 = "0a77zmipy5silq8yx7adj0hw82ccvshbs5alv3h8l0vk83lkm5m7pw6y2781wnbks8h98ixyn2q3q065l6m8pwbrhxa3bcvrf191r5v";
};
};
"meow-3.7.0" = {
@@ -2809,7 +2809,7 @@ let
version = "2.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz";
- sha1 = "12f95a307d58352075a04907b84ac8be98ac012f";
+ sha512 = "01wzws79ps84ylshjb7rfpjykgiqxnpr89s52p2yyzfx8nfvyh5flvf1almiiavsi75xgi8g3s5davc1mmgz7gn8yvlqz6gnhax8f7n";
};
};
"object-assign-4.1.1" = {
@@ -2890,7 +2890,7 @@ let
version = "2.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz";
- sha1 = "6d60e34b3abbc8313062c3b798ef8d901a07af3c";
+ sha512 = "355g980qsk8k9hkv60z58llbvpscjl5yqkh4wx719s8jcq2swzn4ynzinj8azmvdgs10r22wb297rmixh9vvsml55sbysdf2i8ipn54";
};
};
"is-builtin-module-1.0.0" = {
@@ -3250,7 +3250,7 @@ let
version = "5.0.7";
src = fetchurl {
url = "https://registry.npmjs.org/buffer/-/buffer-5.0.7.tgz";
- sha1 = "570a290b625cf2603290c1149223d27ccf04db97";
+ sha512 = "2p32xxvhb1b3dp3hjy1ga0iajddqfxqi25wx44lhd94jjry1g758zywadx6hq04c8zsrcnmjyjrlymxrfmgyxib837jd93rd1fqgrrm";
};
};
"cached-path-relative-1.0.1" = {
@@ -3295,7 +3295,7 @@ let
version = "3.11.1";
src = fetchurl {
url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.11.1.tgz";
- sha1 = "948945efc6757a400d6e5e5af47194d10064279f";
+ sha512 = "2alsgx5iqvf0nr641lz4g24bpvfgv6lza2h9n34d24jhvs3s0dklnds2x2nzs2w9sfiadi6zy93c2szm5ajn50wwnb8dalf02bxkbim";
};
};
"defined-1.0.0" = {
@@ -3484,7 +3484,7 @@ let
version = "2.7.2";
src = fetchurl {
url = "https://registry.npmjs.org/stream-http/-/stream-http-2.7.2.tgz";
- sha1 = "40a050ec8dc3b53b33d9909415c02c0bf1abfbad";
+ sha512 = "09n1hj53jy075fnbsaaiknry7in0l4yarh912abwgvk4hwl33lvn8wrfw891zg5bkfa7sxlmd5yz3xxd4dmcln19bnkahyvd87r6k3k";
};
};
"subarg-1.0.0" = {
@@ -3646,7 +3646,7 @@ let
version = "1.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz";
- sha1 = "a91947da1f4a516ea38e5b4ec0ec3773675e0886";
+ sha512 = "0dhi66vsajfcm04s11xqklh5lj3abs4ncnl8h3689964aqam3ps9spmc454hz94rz3x1x5l1ad03jrba67mq9zc9vq9a1gchma581bp";
};
};
"ieee754-1.1.8" = {
@@ -3727,7 +3727,7 @@ let
version = "3.0.13";
src = fetchurl {
url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.13.tgz";
- sha1 = "c37d295531e786b1da3e3eadc840426accb0ae25";
+ sha512 = "3crgpf13g3zshm39jjfgnp4lfg5jilllwk6ixi07nzyf4yghmxrhrdmhsgr5jr855ma790a21hd4bcvpx8bv9h5irnk6xpy6728gl7r";
};
};
"public-encrypt-4.0.0" = {
@@ -3745,7 +3745,7 @@ let
version = "2.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.5.tgz";
- sha1 = "dc009a246b8d09a177b4b7a0ae77bc570f4b1b79";
+ sha512 = "293m4ffiafbjg0b99a2k78wiffmlwc2v7cigrn5l3n7555x7qxyr34sp0s4p713vwlaf0ny5n57iysgkz08slld3hzw8ci1a2gxjgpi";
};
};
"browserify-aes-1.0.6" = {
@@ -3790,7 +3790,7 @@ let
version = "1.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz";
- sha1 = "8760e4ecc272f4c363532f926d874aae2c1397de";
+ sha512 = "3cm9kdc1sv7pakzlhrc1pazdvg9lk4hv31lximwbcrgmwfzg6imxrndszgx9yzlizknfh2b73cr7b5mfcv50bldpyq6jr5s4zknsj1a";
};
};
"des.js-1.0.0" = {
@@ -3817,7 +3817,7 @@ let
version = "4.11.8";
src = fetchurl {
url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz";
- sha1 = "2cde09eb5ee341f484746bb0309b3253b1b1442f";
+ sha512 = "20bg51v29zygy89w84qb64pkjikxfjdsgjs0ry6pvv8fkwn5kd1izrqn022d838q3rcaq8dmy033g7q8b6960j4f8ipan74y9ydimr2";
};
};
"browserify-rsa-4.0.1" = {
@@ -3862,7 +3862,7 @@ let
version = "1.1.3";
src = fetchurl {
url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz";
- sha1 = "340dedbe6290187151c1ea1d777a3448935df846";
+ sha512 = "0f88i7rv3ib8lwdh5z5lwrml404frzb1a9n3g25y85jpfng82vzsv7m3c5fbyrpq5ki4c3pa8823z3s61xfigm45q469nqnzp416hgx";
};
};
"hmac-drbg-1.0.1" = {
@@ -4270,13 +4270,13 @@ let
sha1 = "68261be4efb48840239b5791af23ee3b8bd79808";
};
};
- "xml2js-0.4.17" = {
+ "xml2js-0.4.18" = {
name = "xml2js";
packageName = "xml2js";
- version = "0.4.17";
+ version = "0.4.18";
src = fetchurl {
- url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.17.tgz";
- sha1 = "17be93eaae3f3b779359c795b419705a8817e868";
+ url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.18.tgz";
+ sha512 = "2hgm5fp1zqiy89nn0i4j11j3h53h1hh0w2kbnfja16f8xbzkam62blrvz46xm8jnnaixwpxg8ydifvzmmyly0aml2c7k8gj1a9jvi9h";
};
};
"xspfr-0.3.1" = {
@@ -4780,7 +4780,7 @@ let
version = "4.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/parse-torrent-file/-/parse-torrent-file-4.0.3.tgz";
- sha1 = "3e2ab0a464a803cc35d1357a1029d1cbd11dae37";
+ sha512 = "2shaz6cv4fgbmy1hq6hc59spkja51qg0vvx514r1nqsspdnsq6xzxabk0gs17x3n8s03y9mj8hx1xn5c0bkq9fvx59sxms2a4mlig9r";
};
};
"simple-get-2.6.0" = {
@@ -4816,7 +4816,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/bencode/-/bencode-1.0.0.tgz";
- sha1 = "0b83aea885b3547b579ada0c6a5e7739fe4d073e";
+ sha512 = "1kvjv5hs1c53b5g2vghpnncn4zj397sa0vpbx1pzpn8ngq52s3xq9923gnl2kzkh1mhyrl277jrh87a766yks89qvz8b4jczr44xr9p";
};
};
"simple-sha1-2.1.0" = {
@@ -5023,7 +5023,7 @@ let
version = "1.8.1";
src = fetchurl {
url = "https://registry.npmjs.org/random-access-file/-/random-access-file-1.8.1.tgz";
- sha1 = "b1a54a0f924fbd4d45731a5771aea36be2166532";
+ sha512 = "3pvi9knrjp8krj1hsg8i2qmv5097fid3qnyz4wh2dvpr37x2ga6qqk7afh5f1i5sb9dsw169bara13knccdmjwnivb62xgywz868j7r";
};
};
"run-parallel-1.1.6" = {
@@ -5257,7 +5257,7 @@ let
version = "1.7.1";
src = fetchurl {
url = "https://registry.npmjs.org/k-rpc-socket/-/k-rpc-socket-1.7.1.tgz";
- sha1 = "e6e92a00b2c74906ad69c42b6ea213dce8914d95";
+ sha512 = "1xigw4j1na5gxiff1dad35vn0h91i77a9jzwsczl47rypanm2vfwyx2zchzdgny7mrxrn14bk9xss16nj2k3vng60v8pc7snjdc6q8n";
};
};
"bencode-0.8.0" = {
@@ -5671,7 +5671,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/voc/-/voc-1.0.0.tgz";
- sha1 = "5465c0ce11d0881f7d8e36d8ca587043f33a25ae";
+ sha512 = "1zss1rcd373slj9qjmy4zp7ann95isbkvjlrgp2dirpazvn1sy23hgnw6p72w0mj8hcgqpxvs0ls035zmb8isilqhqqpkmya9d3234r";
};
};
"exit-on-epipe-1.0.1" = {
@@ -5680,7 +5680,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz";
- sha1 = "0bdd92e87d5285d267daa8171d0eb06159689692";
+ sha512 = "2kxcf7dq1q9z2wqwwfjagn77kpzg2zpjqf2kd3vj5drx576gwglbsfly2b1imabj3svgcz5xsx79kspq1xsdgm4wwg1fksfnjdgjv47";
};
};
"sax-1.2.4" = {
@@ -5689,16 +5689,16 @@ let
version = "1.2.4";
src = fetchurl {
url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz";
- sha1 = "2816234e2378bddc4e5354fab5caa895df7100d9";
+ sha512 = "1dn291mjsda42w8kldlbmngk6dhjxfbvvd5lckyqmwbjaj6069iq3wx0nvcfglwnpddz2qa93lzf4hv77iz43bd2qixa079sjzl799n";
};
};
- "xmlbuilder-4.2.1" = {
+ "xmlbuilder-9.0.4" = {
name = "xmlbuilder";
packageName = "xmlbuilder";
- version = "4.2.1";
+ version = "9.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.2.1.tgz";
- sha1 = "aa58a3041a066f90eaa16c2f5389ff19f3f461a5";
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.4.tgz";
+ sha1 = "519cb4ca686d005a8420d3496f3f0caeecca580f";
};
};
"configstore-2.1.0" = {
@@ -6157,7 +6157,7 @@ let
version = "5.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/acorn/-/acorn-5.1.1.tgz";
- sha1 = "53fe161111f912ab999ee887a90a0bc52822fd75";
+ sha512 = "1rkrq8iizbb4v8qv16qdknj2m9cjbxyl6d0jlp1jsnkys56b7xnn50f7qxbcsmz5z1m9r8j1pas6ai7bnhlmvmv88pyvdhw8fw3msdw";
};
};
"foreach-2.0.5" = {
@@ -6427,7 +6427,7 @@ let
version = "1.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.4.tgz";
- sha1 = "18574f2e7c4b98b8ae3b230c21f201f31bdb3fb7";
+ sha512 = "2vbps6iw562i2zxd973z5mmbs8ggx3wbz4g1jqwvkjibiwrk9ym8bxcvvwnlmxqad92x120x5xz5nyfq68nd8akk355bkk0qjppzafp";
};
};
"fresh-0.5.0" = {
@@ -6499,7 +6499,7 @@ let
version = "6.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/qs/-/qs-6.5.0.tgz";
- sha1 = "8d04954d364def3efc55b5a0793e1e2c8b1e6e49";
+ sha512 = "2d5w08p3vr4l6rjcn5n5ph8g5wr0nzpypg1b7axvz3q3r9pp5jxanhywvd76wk76nqjcqb4p6n4l4ifjw8164bcahhs71kjdy6ladby";
};
};
"send-0.15.4" = {
@@ -6634,7 +6634,7 @@ let
version = "5.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-5.1.2.tgz";
- sha1 = "fb18d17bb61e60900d6312619919bd753755ab37";
+ sha512 = "36g1gm57qcvdgb4lm6ibl9pgma8lgx8l8i2jzap6w3v36wfzsqa7vb411zd26yp9rgcq23951vl5j6pac22qd5h9x7jm9raznnnr460";
};
};
"promzard-0.3.0" = {
@@ -6646,13 +6646,13 @@ let
sha1 = "26a5d6ee8c7dee4cb12208305acfb93ba382a9ee";
};
};
- "read-package-json-2.0.10" = {
+ "read-package-json-2.0.11" = {
name = "read-package-json";
packageName = "read-package-json";
- version = "2.0.10";
+ version = "2.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.10.tgz";
- sha1 = "dc0229f6dde6b4b705b39e25b2d970ebe95685ae";
+ url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.11.tgz";
+ sha512 = "1y74w8zm70x1zc7qgg6fxg72pb78dmafg2bf5x4gn1z8d4amjrw2q3d4j9035ginsrigk372scwj57p0ll5ck9yxdgnyjpzcd5fj7wy";
};
};
"validate-npm-package-name-3.0.0" = {
@@ -6664,22 +6664,13 @@ let
sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
};
};
- "json-parse-helpfulerror-1.0.3" = {
- name = "json-parse-helpfulerror";
- packageName = "json-parse-helpfulerror";
- version = "1.0.3";
+ "json-parse-better-errors-1.0.1" = {
+ name = "json-parse-better-errors";
+ packageName = "json-parse-better-errors";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz";
- sha1 = "13f14ce02eed4e981297b64eb9e3b932e2dd13dc";
- };
- };
- "jju-1.3.0" = {
- name = "jju";
- packageName = "jju";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jju/-/jju-1.3.0.tgz";
- sha1 = "dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa";
+ url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz";
+ sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967";
};
};
"builtins-1.0.3" = {
@@ -7633,7 +7624,7 @@ let
version = "3.5.1";
src = fetchurl {
url = "https://registry.npmjs.org/duplexify/-/duplexify-3.5.1.tgz";
- sha1 = "4e1516be68838bc90a49994f0b39a6e5960befcd";
+ sha512 = "0cyjpkdqc1lkh2fh7z9p2i6va4fvwazvpn4153ndpb2ng8w0q9x9kb0hk07yy0baj50s1kl58m7f7zmx8fqdfcp2vsl0m7hfk22i64g";
};
};
"infinity-agent-2.0.3" = {
@@ -8165,7 +8156,7 @@ let
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz";
- sha1 = "b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7";
+ sha512 = "15lvjac4av3h7xmks8jgd56vryz5xb27r8xcpfwhfyr9dv305lms5llc1x6nx6nfvha873d4vg04nfi89aj4jkxplrnjiyc9kjf34hf";
};
};
"nan-2.6.2" = {
@@ -8900,13 +8891,13 @@ let
sha1 = "cac328f7bee45730d404b692203fcb590e172d5e";
};
};
- "aws-sdk-2.95.0" = {
+ "aws-sdk-2.100.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.95.0";
+ version = "2.100.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.95.0.tgz";
- sha1 = "26e21db149443b1f063949dc87984f0d17700e6a";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.100.0.tgz";
+ sha1 = "fc0fbca7690d6c28effd28bd51fe85f7dba42bff";
};
};
"request-2.81.0" = {
@@ -8954,6 +8945,24 @@ let
sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64";
};
};
+ "xml2js-0.4.17" = {
+ name = "xml2js";
+ packageName = "xml2js";
+ version = "0.4.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.17.tgz";
+ sha1 = "17be93eaae3f3b779359c795b419705a8817e868";
+ };
+ };
+ "xmlbuilder-4.2.1" = {
+ name = "xmlbuilder";
+ packageName = "xmlbuilder";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.2.1.tgz";
+ sha1 = "aa58a3041a066f90eaa16c2f5389ff19f3f461a5";
+ };
+ };
"caseless-0.12.0" = {
name = "caseless";
packageName = "caseless";
@@ -9059,7 +9068,7 @@ let
version = "1.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/conf/-/conf-1.1.2.tgz";
- sha1 = "a164003022dd1643cd5abd9653071bd3b0a19f50";
+ sha512 = "0x5jhmsdnq5y7m1wdvvcdg2rxf6435lw7s00gim8zsb4l2z4slvb2g7macl1376v9mcznfvl9p65m7xzm6f3cb20yfq3v2xi1qfd6yi";
};
};
"got-7.1.0" = {
@@ -9068,7 +9077,7 @@ let
version = "7.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/got/-/got-7.1.0.tgz";
- sha1 = "05450fd84094e6bbea56f451a43a9c289166385a";
+ sha512 = "0phvycaq4yl6jjpyc9vwmgghfy7a6nnpynscpgpbx74zjaa5dbpl1ag0jf7jvimfk0vf6xfjqgh67xdlvi0ycgvp1kasajapjiqr5b3";
};
};
"has-ansi-3.0.0" = {
@@ -9086,7 +9095,7 @@ let
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/import-jsx/-/import-jsx-1.3.0.tgz";
- sha1 = "079df1da943b3274f46932fb740c9b56dd6351fb";
+ sha512 = "26xxz57vqm8p6mg0syr21risma4h5h9n8kn4zv4pcxqap4zxicc210w5m7vz6a4zldhd102sbi7giwzmw0wjlpr6rb1hycr8iv703b1";
};
};
"ink-0.3.1" = {
@@ -9095,7 +9104,7 @@ let
version = "0.3.1";
src = fetchurl {
url = "https://registry.npmjs.org/ink/-/ink-0.3.1.tgz";
- sha1 = "551047276cb93baa3f14eafaef2ae5b1526e8213";
+ sha512 = "0km0z5smnzrh4c5386h3vbmvps6m45m6hbbf62as9wl4vw370q411gpxxhqz3i83n0qjds7py2ylgjx2y3915m5v77c1sf428w4wwkv";
};
};
"ink-text-input-1.1.0" = {
@@ -9104,7 +9113,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/ink-text-input/-/ink-text-input-1.1.0.tgz";
- sha1 = "887a9623c23fd5c6f173b9704e6cc6029d0a15c1";
+ sha512 = "3dlsk820l687ixfmi4qx8czzb7cr0hfz5gijxvm5x0qrnhrcg4kqzhvph2hrf50whjj3cxcbyx6ldqxnp6msw7ai5rs3b4vs50vcpak";
};
};
"lodash.debounce-4.0.8" = {
@@ -9194,7 +9203,7 @@ let
version = "4.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz";
- sha1 = "622e32e82488b49279114a4f9ecf45e7cd6bba55";
+ sha512 = "1xz91sizgyzh8plz5jx1labzpygapm6xy3qpxriaj00yvnhy4lnmhqcb20qln4lh80c5g3yzp4j5i6g63njq1r5sl9c0zlkh9xjk2xb";
};
};
"shebang-command-1.2.0" = {
@@ -9230,7 +9239,7 @@ let
version = "4.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz";
- sha1 = "1f19e0c2e1aa0e32797c49799f2837ac6af69c57";
+ sha512 = "2wyv9brsq3dzp724y1q5z5j5ja83y834hgc193lnarfdycwz1ii3xg02qxx3dg05x3skwjm1di5s5a8hqi8l5v1afx2bia436pifhxm";
};
};
"env-paths-1.0.0" = {
@@ -9338,7 +9347,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz";
- sha1 = "b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67";
+ sha512 = "3vs53bpdrwiwwcql2xs20jmd8qha27k4iypdhr0b3isgdaj18vz80nhxwvvqxk6y3x5vj3slchxl0r91gjhz487xmkkp52gridg5zyl";
};
};
"p-cancelable-0.3.0" = {
@@ -9347,7 +9356,7 @@ let
version = "0.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz";
- sha1 = "b9e123800bcebb7ac13a479be195b507b98d30fa";
+ sha512 = "35jir2yjv2l3v8aj062w0hfinzgwpb1sbhmaym8h4xn78j498naj7mkf4rpv74n5bfkysxb7l893l2yw3dpqk5dgb2yiwr8pcydjmj5";
};
};
"p-timeout-1.2.0" = {
@@ -9401,7 +9410,7 @@ let
version = "1.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.0.tgz";
- sha1 = "49d7bcde85c2409be38ac327e3e119a451657c7b";
+ sha512 = "0ldd58k8nhlbx35b3bbvyq9w38sdg9ac3334s6bxjw2zn803aa8zal9jvg793561g11yhwrlj4bw160ppmmswidhpwh3s33zww9sws7";
};
};
"is-object-1.0.1" = {
@@ -9419,7 +9428,7 @@ let
version = "1.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.0.tgz";
- sha1 = "442d89b1d0ac6cf5ff2f7b916ee539869b93a256";
+ sha512 = "14khsaf360hn87pdlz9scgn3c5s1ndihc6prcsi5k2rkiapz4ag3lg448a69srpsvdk7jyp4hf4a9fp113nkprdmnadrx2n7cn6slqp";
};
};
"ansi-regex-3.0.0" = {
@@ -9431,13 +9440,13 @@ let
sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
};
};
- "babel-core-6.25.0" = {
+ "babel-core-6.26.0" = {
name = "babel-core";
packageName = "babel-core";
- version = "6.25.0";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-core/-/babel-core-6.25.0.tgz";
- sha1 = "7dd42b0463c742e9d5296deb3ec67a9322dad729";
+ url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz";
+ sha1 = "af32f78b31a6fcef119c87b0fd8d9753f03a0bb8";
};
};
"babel-plugin-transform-es2015-destructuring-6.23.0" = {
@@ -9449,13 +9458,13 @@ let
sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d";
};
};
- "babel-plugin-transform-object-rest-spread-6.23.0" = {
+ "babel-plugin-transform-object-rest-spread-6.26.0" = {
name = "babel-plugin-transform-object-rest-spread";
packageName = "babel-plugin-transform-object-rest-spread";
- version = "6.23.0";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz";
- sha1 = "875d6bc9be761c58a2ae3feee5dc4895d8c7f921";
+ url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz";
+ sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06";
};
};
"babel-plugin-transform-react-jsx-6.24.1" = {
@@ -9494,22 +9503,22 @@ let
sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
};
};
- "babel-code-frame-6.22.0" = {
+ "babel-code-frame-6.26.0" = {
name = "babel-code-frame";
packageName = "babel-code-frame";
- version = "6.22.0";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz";
- sha1 = "027620bee567a88c32561574e7fd0801d33118e4";
+ url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
+ sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
};
};
- "babel-generator-6.25.0" = {
+ "babel-generator-6.26.0" = {
name = "babel-generator";
packageName = "babel-generator";
- version = "6.25.0";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.25.0.tgz";
- sha1 = "33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc";
+ url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz";
+ sha1 = "ac1ae20070b79f6e3ca1d3269613053774f20dc5";
};
};
"babel-helpers-6.24.1" = {
@@ -9530,58 +9539,58 @@ let
sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e";
};
};
- "babel-template-6.25.0" = {
- name = "babel-template";
- packageName = "babel-template";
- version = "6.25.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-template/-/babel-template-6.25.0.tgz";
- sha1 = "665241166b7c2aa4c619d71e192969552b10c071";
- };
- };
- "babel-runtime-6.25.0" = {
- name = "babel-runtime";
- packageName = "babel-runtime";
- version = "6.25.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.25.0.tgz";
- sha1 = "33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c";
- };
- };
- "babel-register-6.24.1" = {
+ "babel-register-6.26.0" = {
name = "babel-register";
packageName = "babel-register";
- version = "6.24.1";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-register/-/babel-register-6.24.1.tgz";
- sha1 = "7e10e13a2f71065bdfad5a1787ba45bca6ded75f";
+ url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz";
+ sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071";
};
};
- "babel-traverse-6.25.0" = {
+ "babel-runtime-6.26.0" = {
+ name = "babel-runtime";
+ packageName = "babel-runtime";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz";
+ sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
+ };
+ };
+ "babel-template-6.26.0" = {
+ name = "babel-template";
+ packageName = "babel-template";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz";
+ sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
+ };
+ };
+ "babel-traverse-6.26.0" = {
name = "babel-traverse";
packageName = "babel-traverse";
- version = "6.25.0";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.25.0.tgz";
- sha1 = "2257497e2fcd19b89edc13c4c91381f9512496f1";
+ url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz";
+ sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
};
};
- "babel-types-6.25.0" = {
+ "babel-types-6.26.0" = {
name = "babel-types";
packageName = "babel-types";
- version = "6.25.0";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-types/-/babel-types-6.25.0.tgz";
- sha1 = "70afb248d5660e5d18f811d91c8303b54134a18e";
+ url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz";
+ sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
};
};
- "babylon-6.17.4" = {
+ "babylon-6.18.0" = {
name = "babylon";
packageName = "babylon";
- version = "6.17.4";
+ version = "6.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babylon/-/babylon-6.17.4.tgz";
- sha1 = "3e8b7402b88d22c3423e137a1577883b15ff869a";
+ url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz";
+ sha512 = "1qk460vyxfs08g8586jdc02wqzyy2y06596qcn1na9bz7yxra6vgh6177qf345xai0virpaz56bkpgmfcrd8yx5l2vjkn49y66h9xdb";
};
};
"convert-source-map-1.5.0" = {
@@ -9674,15 +9683,6 @@ let
sha1 = "569c050918be6486b3837552028ae0466b717086";
};
};
- "regenerator-runtime-0.10.5" = {
- name = "regenerator-runtime";
- packageName = "regenerator-runtime";
- version = "0.10.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz";
- sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658";
- };
- };
"home-or-tmp-2.0.0" = {
name = "home-or-tmp";
packageName = "home-or-tmp";
@@ -9692,13 +9692,22 @@ let
sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8";
};
};
- "source-map-support-0.4.15" = {
+ "source-map-support-0.4.16" = {
name = "source-map-support";
packageName = "source-map-support";
- version = "0.4.15";
+ version = "0.4.16";
src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.15.tgz";
- sha1 = "03202df65c06d2bd8c7ec2362a193056fef8d3b1";
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.16.tgz";
+ sha512 = "2p8x22bgrc6cyxz8j73zzcwpqcb7fszycq7qrvbb0wd4g5wvdrz40lv3hyagx5if3xw0x1sjisx1a298gl51xl2mxizj7rvsv4ybaq3";
+ };
+ };
+ "regenerator-runtime-0.11.0" = {
+ name = "regenerator-runtime";
+ packageName = "regenerator-runtime";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz";
+ sha512 = "3a1pn2aankj443h5v8png8dbgrlyb7fcdn66vjglxwqvdpivpq959qsl2n44i6zwf1k5y6y23xwhim0x077yy275dyr6vwiny83987x";
};
};
"globals-9.18.0" = {
@@ -9707,7 +9716,7 @@ let
version = "9.18.0";
src = fetchurl {
url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz";
- sha1 = "aa3896b3e69b487f17e31ed2143d69a8e30c2d8a";
+ sha512 = "18psd5ig23apaw07k4mma3z1hi2ndfwsqkm05hxashnf5lf7mpfs6kjiircc0x3x3q15j2x2j4zfzsqacxvfsmw40zjchn44bfccjab";
};
};
"invariant-2.2.2" = {
@@ -9746,13 +9755,13 @@ let
sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5";
};
};
- "babel-helper-builder-react-jsx-6.24.1" = {
+ "babel-helper-builder-react-jsx-6.26.0" = {
name = "babel-helper-builder-react-jsx";
packageName = "babel-helper-builder-react-jsx";
- version = "6.24.1";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz";
- sha1 = "0ad7917e33c8d751e646daca4e77cc19377d2cbc";
+ url = "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz";
+ sha1 = "39ff8313b75c8b65dceff1f31d383e0ff2a408a0";
};
};
"babel-plugin-syntax-jsx-6.18.0" = {
@@ -9797,7 +9806,7 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/chalk/-/chalk-2.1.0.tgz";
- sha1 = "ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e";
+ sha512 = "1fnn3znivja3xq1lacvsdwkl2s8ki9w95sylnf2pkmaia1mjz3llbdb5r2dxsflqfky3h8f1bh0piv0l5waw2bkdniqnyv0yx5wch9d";
};
};
"indent-string-3.2.0" = {
@@ -9851,7 +9860,7 @@ let
version = "3.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz";
- sha1 = "c159b8d5be0f9e5a6f346dab94f16ce022161b88";
+ sha512 = "2x19fs1qvg7ifsdvii4g8kqpa5hir1lm0k0y0fz6dhm5c8gh4z9il4wqczl078p2ikmrav23dmj86cxy8y1j22k4mv59d8qq6c8wx1n";
};
};
"supports-color-4.2.1" = {
@@ -9860,7 +9869,7 @@ let
version = "4.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/supports-color/-/supports-color-4.2.1.tgz";
- sha1 = "65a4bb2631e90e02420dba5554c375a4754bb836";
+ sha512 = "1ldz0jkrkclywnr7gwh85p6kljs5rm4jczbpj55vb9w5c81iyrf1ahgkw88nnzahgw2xvlg041vqk7gynxkwcqkzfagxjpphsrdh75b";
};
};
"color-convert-1.9.0" = {
@@ -9950,7 +9959,7 @@ let
version = "2.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
- sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e";
+ sha512 = "29s1fqgr4mnhfxwczgdghfmmc1f792m9hysvcjxw2h5lfj8ndf2b6gm02m96qk5m75g4aisijvng4pk618anwbr8i9ay2jyszkqgslw";
};
};
"strip-ansi-4.0.0" = {
@@ -10022,7 +10031,7 @@ let
version = "1.7.2";
src = fetchurl {
url = "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.2.tgz";
- sha1 = "c54e9aac57e432875233525f3c891c4159ffefd7";
+ sha512 = "250k1k343w8g1ndd16h1lqcdvp989id6agsppfqi9a6lcqk89ga56xjz78hhy1dqn86vha8n8s551pwpyd1n87mkw4a7143djmm95n5";
};
};
"whatwg-fetch-2.0.3" = {
@@ -10049,7 +10058,7 @@ let
version = "0.4.18";
src = fetchurl {
url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz";
- sha1 = "23d8656b16aae6742ac29732ea8f0336a4789cf2";
+ sha512 = "2l97vd6kax8syr9aggcqhiyhd3b2rf506wdq6wapfrc74qwpdzqf2a3891kq9ri3g5sdzayph2sz4zkr8kbbps58z9h2lvpk115kgdj";
};
};
"unicode-emoji-modifier-base-1.0.0" = {
@@ -10142,13 +10151,13 @@ let
sha1 = "432352e57accd87ab3110e82d3fea0e47812156d";
};
};
- "inquirer-3.2.1" = {
+ "inquirer-3.2.2" = {
name = "inquirer";
packageName = "inquirer";
- version = "3.2.1";
+ version = "3.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-3.2.1.tgz";
- sha1 = "06ceb0f540f45ca548c17d6840959878265fa175";
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-3.2.2.tgz";
+ sha512 = "0gsmdyd280pgvy7aqam9hdjhpljwmyn2axwmf2gp6qrc8cxrykrshan1kr1s1f9cb8pf13m3jav92df9dbn1gwkk7i08m698768nckd";
};
};
"is-resolvable-1.0.0" = {
@@ -10166,7 +10175,7 @@ let
version = "3.9.1";
src = fetchurl {
url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.1.tgz";
- sha1 = "08775cebdfdd359209f0d2acd383c8f86a6904a0";
+ sha512 = "31wxw267vdf4nnjpksnzcb4i603366sjrw7g08bkxi3cwlrfl67458v7rvj72vbxcycq43z4ldkrfvqjrsvrjqrb2kfzmabpzghddq9";
};
};
"levn-0.3.0" = {
@@ -10292,7 +10301,7 @@ let
version = "0.3.3";
src = fetchurl {
url = "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz";
- sha1 = "815c99ea84f6809529d2f45791bdf82711352d66";
+ sha512 = "3hadrrn41znfv3gbqjxf0ckzjmns7w7zgsqw73sdz8nclaff9b0cg1mqhz3zxw3ndnmqqvrdcfykkfpv2v1pv4jdyzcccbn3hsbg4ji";
};
};
"del-2.2.2" = {
@@ -10427,7 +10436,7 @@ let
version = "1.5.1";
src = fetchurl {
url = "https://registry.npmjs.org/jschardet/-/jschardet-1.5.1.tgz";
- sha1 = "c519f629f86b3a5bedba58a88d311309eec097f9";
+ sha512 = "3c44v9rz6j4z6i7gj2v3wmfcqv5i47psysgd1p4jcgz114vfk99fif1n1r08jbsdkp4g3smv1wx7x4ikwa7q9dp5i1bc77la17s2kdw";
};
};
"tmp-0.0.31" = {
@@ -10472,7 +10481,7 @@ let
version = "4.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz";
- sha1 = "4499eddcd1110e0b218bacf2fa7f7f59f55ca804";
+ sha512 = "27mkhd94y9vrr8pb97br0ym5h85rawwb0biswgwdfp31x0387y12k9p9598bi4fc83fif6crfzqiqmmjs4x7gcb22ml3z1fldqm7yx1";
};
};
"prelude-ls-1.1.2" = {
@@ -10610,13 +10619,13 @@ let
sha1 = "80078dd2b92a934af66a3ad72a5b910694ede51a";
};
};
- "phantomjs-prebuilt-2.1.14" = {
+ "phantomjs-prebuilt-2.1.15" = {
name = "phantomjs-prebuilt";
packageName = "phantomjs-prebuilt";
- version = "2.1.14";
+ version = "2.1.15";
src = fetchurl {
- url = "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.14.tgz";
- sha1 = "d53d311fcfb7d1d08ddb24014558f1188c516da0";
+ url = "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.15.tgz";
+ sha1 = "20f86e82d3349c505917527745b7a411e08b3903";
};
};
"promise-phantom-3.1.6" = {
@@ -10634,7 +10643,7 @@ let
version = "0.5.2";
src = fetchurl {
url = "https://registry.npmjs.org/zen-observable/-/zen-observable-0.5.2.tgz";
- sha1 = "845a1cfda804a13419ec8ec12343e1f4c45cd07a";
+ sha512 = "3sy4za4hd6lczig5ah6ksh92i4ds0pk9b8nn4nwjwpsyyabywrnayf78zh41jf7amm6khqyjb3iknbp2mc3nfgvpkvphj3a993py6hf";
};
};
"cli-spinners-1.0.0" = {
@@ -10664,13 +10673,13 @@ let
sha1 = "7882f30adde5b240ccfa7f7d78c548330951ae42";
};
};
- "extract-zip-1.5.0" = {
+ "extract-zip-1.6.5" = {
name = "extract-zip";
packageName = "extract-zip";
- version = "1.5.0";
+ version = "1.6.5";
src = fetchurl {
- url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz";
- sha1 = "92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4";
+ url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.5.tgz";
+ sha1 = "99a06735b6ea20ea9b705d779acffcc87cff0440";
};
};
"fs-extra-1.0.0" = {
@@ -10709,13 +10718,13 @@ let
sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08";
};
};
- "concat-stream-1.5.0" = {
- name = "concat-stream";
- packageName = "concat-stream";
- version = "1.5.0";
+ "debug-2.2.0" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz";
- sha1 = "53f7d43c51c5e43f81c8fdd03321c631be68d611";
+ url = "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz";
+ sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da";
};
};
"mkdirp-0.5.0" = {
@@ -10736,6 +10745,15 @@ let
sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005";
};
};
+ "ms-0.7.1" = {
+ name = "ms";
+ packageName = "ms";
+ version = "0.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz";
+ sha1 = "9cd13c03adbff25b65effde7ce864ee952017098";
+ };
+ };
"fd-slicer-1.0.1" = {
name = "fd-slicer";
packageName = "fd-slicer";
@@ -10949,7 +10967,7 @@ let
version = "1.3.2";
src = fetchurl {
url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz";
- sha1 = "553dcb8f91e3c889845dfdba34c77721b90b9d7a";
+ sha512 = "269dbx666z4ws49vag1dma5kdpjlx83s74c1jlngrn2672rhvbc47i5ay5h40spmrzgvbvcm33i4yrp88rrc6lg70v78k155z45lwyi";
};
};
"async-each-1.0.1" = {
@@ -11003,7 +11021,7 @@ let
version = "1.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/fsevents/-/fsevents-1.1.2.tgz";
- sha1 = "3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4";
+ sha512 = "25k3z64r4fhzjs1crh981lkkvkrhn2xv67k7y00zpnpsl571y5apg0r0kanddirms8kxf2xgf4yx9n2hzs9ml3v3p9qcnqhkh9khzja";
};
};
"micromatch-2.3.11" = {
@@ -11111,7 +11129,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
- sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1";
+ sha512 = "2vdly17xk5kw7bfzajrjdnw4ml3wrfblx8064n0i4fxlchcscx2mvnwkq2bnnqvbqvdy4vs9ad462lz0rid7khysly9m9vzjiblly1g";
};
};
"expand-range-1.8.2" = {
@@ -11174,7 +11192,7 @@ let
version = "1.1.7";
src = fetchurl {
url = "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz";
- sha1 = "c7abe9cc8b87c0baa876b19fde83fd464797e38c";
+ sha512 = "2is2kipfnz3hl4yxgqk07rll6956cq3zzf9cddai3f0lij5acq76v98qv14qkpljh1pqfsyb8p69xa9cyaww6p0j91s4vc9zj6594hg";
};
};
"is-number-3.0.0" = {
@@ -11267,22 +11285,22 @@ let
sha1 = "207bab91638499c07b2adf240a41a87210034575";
};
};
- "remove-trailing-separator-1.0.2" = {
+ "remove-trailing-separator-1.1.0" = {
name = "remove-trailing-separator";
packageName = "remove-trailing-separator";
- version = "1.0.2";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz";
- sha1 = "69b062d978727ad14dc6b56ba4ab772fd8d70511";
+ url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
+ sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
};
};
- "binary-extensions-1.9.0" = {
+ "binary-extensions-1.10.0" = {
name = "binary-extensions";
packageName = "binary-extensions";
- version = "1.9.0";
+ version = "1.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.9.0.tgz";
- sha1 = "66506c16ce6f4d6928a5b3cd6a33ca41e941e37b";
+ url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.10.0.tgz";
+ sha1 = "9aeb9a6c5e88638aad171e167f5900abe24835d0";
};
};
"set-immediate-shim-1.0.1" = {
@@ -11309,7 +11327,7 @@ let
version = "4.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz";
- sha1 = "08a7f2a8bf734604779a9efa4ad5cc717abb954b";
+ sha512 = "2967mavp7zw0aawf5fadqf4pmn7vy5gya1yx2s9wwppvivhd9q4mpdnszfqvd7p6yks649bwbpj8iviw86g0hpp4f93d5ca7dmjmrfs";
};
};
"tar-pack-3.4.0" = {
@@ -11354,7 +11372,7 @@ let
version = "1.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz";
- sha1 = "45c6629094de4e96f693ef7eab74ae079c240fc1";
+ sha512 = "0zmgm7vf91vxk5hdvkwhfnzjxz9r6hwpn8dlbpasaax8rxx7z1qqdmh8l631vawj7y1bkpsd0v0mhjh9agggkjl72f3vlnfhy61m5k6";
};
};
"string-width-1.0.2" = {
@@ -11372,7 +11390,7 @@ let
version = "1.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz";
- sha1 = "571e0f1b0604636ebc0dfc21b0339bbe31341710";
+ sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a";
};
};
"event-stream-0.5.3" = {
@@ -11526,7 +11544,7 @@ let
version = "1.12.7";
src = fetchurl {
url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz";
- sha1 = "c05dae0cb79591d05b3070a8433a98c9a89ccc53";
+ sha512 = "29mq40padyvizg4f141b00p0p74hx9v06d7gxk84ggsiyw6rf5bb65gnfwk1i02r276jwqybmi5hx98s943slyazjnqd69jmj389dvw";
};
};
"jade-1.11.0" = {
@@ -12237,7 +12255,7 @@ let
version = "2.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
- sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677";
+ sha512 = "0xgsjz9m3kg5pm36lcchblxk53qay59ya7wi5jgdmz0dsl5b0j2j7wcd48yyfaip1m70mj9aqf8kib02fn62k0hy0vxg2hng60yk4w7";
};
};
"object.defaults-1.1.0" = {
@@ -12789,13 +12807,13 @@ let
sha1 = "dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d";
};
};
- "@reactivex/rxjs-5.4.2" = {
+ "@reactivex/rxjs-5.4.3" = {
name = "@reactivex/rxjs";
packageName = "@reactivex/rxjs";
- version = "5.4.2";
+ version = "5.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@reactivex/rxjs/-/rxjs-5.4.2.tgz";
- sha1 = "ab530dbbdab71071369828ef11c8d7ae558d5116";
+ url = "https://registry.npmjs.org/@reactivex/rxjs/-/rxjs-5.4.3.tgz";
+ sha512 = "20pswi06vxjrv64d6i7z1zcsml98fma05a3xbyaycyfn7xmhbg8zwhnswx9pd03hrlxr4ypgikjgr65a0kkycjcyw9819gffaw95jvm";
};
};
"chai-4.1.1" = {
@@ -12813,7 +12831,7 @@ let
version = "7.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-7.1.1.tgz";
- sha1 = "08645d825deb8696ee61725dbf590c012eb00ca0";
+ sha512 = "1lf4xj5gc7gxbqjx1pmshsddaqah4zlvzm1r4rbrf4rsgjgf2zj9lx8rccgy0y7ps7wv2i1wf259dwd6mj8aaryxdpfryi2rb2glckb";
};
};
"fast-json-patch-2.0.4" = {
@@ -12834,6 +12852,15 @@ let
sha1 = "a969a80a1fbff6b78f28776594d7bc2bdfab6aad";
};
};
+ "jaeger-client-3.5.3" = {
+ name = "jaeger-client";
+ packageName = "jaeger-client";
+ version = "3.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jaeger-client/-/jaeger-client-3.5.3.tgz";
+ sha1 = "30a3989642ee3e8ea06d10c2b9f9e046d424d8ed";
+ };
+ };
"mz-2.6.0" = {
name = "mz";
packageName = "mz";
@@ -12894,7 +12921,7 @@ let
version = "3.3.1";
src = fetchurl {
url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.3.1.tgz";
- sha1 = "b7857be58b97af664a8cdd071c91891d6c7d6a67";
+ sha512 = "1dwznr02qr6wd7886k3i7y3vxgzqdm14gc5vs892vrc8azhh6hl79bvl5lgc05004lzqbazj9p7vdkbms62f1iys92h5w1xpvdldfc8";
};
};
"vscode-languageserver-3.3.0" = {
@@ -12903,7 +12930,7 @@ let
version = "3.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.3.0.tgz";
- sha1 = "f547d4f0e5702f88ff3695bae5905f9604c8cc62";
+ sha512 = "380fi37ifwdgndnglvymyrb844aybpm5mjpwmq4p3dm1b93iqdfr00pr2b692d15k5hn9x82h98zw0bs0k7287pwdvdkv3v75pc92zi";
};
};
"vscode-languageserver-types-3.3.0" = {
@@ -12912,7 +12939,7 @@ let
version = "3.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.3.0.tgz";
- sha1 = "8964dc7c2247536fbefd2d6836bf3febac80dd00";
+ sha512 = "1xjiay30jyp6sj9nq55zwjmxyq5ajcdrv4bw9ypkplv7mg57h4skiqvcsd6wbizidpx3xanqmnl04l66491fmlrwijn9ph3rsa044z4";
};
};
"symbol-observable-1.0.4" = {
@@ -12987,6 +13014,78 @@ let
sha1 = "46d0cc8553abb7b13a352b0d6dea2fd58f2d9b55";
};
};
+ "node-int64-0.4.0" = {
+ name = "node-int64";
+ packageName = "node-int64";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz";
+ sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b";
+ };
+ };
+ "thriftrw-3.11.1" = {
+ name = "thriftrw";
+ packageName = "thriftrw";
+ version = "3.11.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thriftrw/-/thriftrw-3.11.1.tgz";
+ sha1 = "5a2f5165d665bb195e665e5b5b9f8897dac23acc";
+ };
+ };
+ "xorshift-0.2.1" = {
+ name = "xorshift";
+ packageName = "xorshift";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xorshift/-/xorshift-0.2.1.tgz";
+ sha1 = "fcd82267e9351c13f0fb9c73307f25331d29c63a";
+ };
+ };
+ "opentracing-0.13.0" = {
+ name = "opentracing";
+ packageName = "opentracing";
+ version = "0.13.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opentracing/-/opentracing-0.13.0.tgz";
+ sha1 = "6a341442f09d7d866bc11ed03de1e3828e3d6aab";
+ };
+ };
+ "bufrw-1.2.1" = {
+ name = "bufrw";
+ packageName = "bufrw";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bufrw/-/bufrw-1.2.1.tgz";
+ sha1 = "93f222229b4f5f5e2cd559236891407f9853663b";
+ };
+ };
+ "error-7.0.2" = {
+ name = "error";
+ packageName = "error";
+ version = "7.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/error/-/error-7.0.2.tgz";
+ sha1 = "a5f75fff4d9926126ddac0ea5dc38e689153cb02";
+ };
+ };
+ "ansi-color-0.2.1" = {
+ name = "ansi-color";
+ packageName = "ansi-color";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-color/-/ansi-color-0.2.1.tgz";
+ sha1 = "3e75c037475217544ed763a8db5709fa9ae5bf9a";
+ };
+ };
+ "string-template-0.2.1" = {
+ name = "string-template";
+ packageName = "string-template";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz";
+ sha1 = "42932e598a352d01fc22ec3367d9d84eec6c9add";
+ };
+ };
"any-promise-1.3.0" = {
name = "any-promise";
packageName = "any-promise";
@@ -13032,13 +13131,13 @@ let
sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14";
};
};
- "editorconfig-0.13.2" = {
+ "editorconfig-0.13.3" = {
name = "editorconfig";
packageName = "editorconfig";
- version = "0.13.2";
+ version = "0.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/editorconfig/-/editorconfig-0.13.2.tgz";
- sha1 = "8e57926d9ee69ab6cb999f027c2171467acceb35";
+ url = "https://registry.npmjs.org/editorconfig/-/editorconfig-0.13.3.tgz";
+ sha512 = "08ysphnfa9fynh31z9sbxq8nyw0v2w2q6xkvqpy13xr16mh58na9xrxjxj0r6vwr01xjna3jyz6njwbxw0dvyrq509y5fs2sm8fqj2s";
};
};
"bluebird-3.5.0" = {
@@ -13185,6 +13284,15 @@ let
sha1 = "8e667b7761ff1c7ffdb0efa05d64035387c823eb";
};
};
+ "json-parse-helpfulerror-1.0.3" = {
+ name = "json-parse-helpfulerror";
+ packageName = "json-parse-helpfulerror";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz";
+ sha1 = "13f14ce02eed4e981297b64eb9e3b932e2dd13dc";
+ };
+ };
"lodash-id-0.13.0" = {
name = "lodash-id";
packageName = "lodash-id";
@@ -13320,6 +13428,15 @@ let
sha1 = "59fde0f435badacba103a84e9d3bc64e96b9937d";
};
};
+ "jju-1.3.0" = {
+ name = "jju";
+ packageName = "jju";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jju/-/jju-1.3.0.tgz";
+ sha1 = "dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa";
+ };
+ };
"steno-0.4.4" = {
name = "steno";
packageName = "steno";
@@ -13587,7 +13704,7 @@ let
version = "3.6.3";
src = fetchurl {
url = "https://registry.npmjs.org/connect/-/connect-3.6.3.tgz";
- sha1 = "f7320d46a25b4be7b483a2236517f24b1e27e301";
+ sha512 = "2fkfixwv0fqqxw5rhmzrczj8ayxccwnxwkgyv4w8sxnkz52sl6dsx2nirg1vryxxqdlwph4ag9vc17yzzydmzshc73gpi6m12m9kd0q";
};
};
"di-0.0.1" = {
@@ -14022,15 +14139,6 @@ let
sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20";
};
};
- "debug-2.2.0" = {
- name = "debug";
- packageName = "debug";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz";
- sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da";
- };
- };
"json3-3.3.2" = {
name = "json3";
packageName = "json3";
@@ -14040,15 +14148,6 @@ let
sha1 = "3c0434743df93e2f5c42aee7b19bcb483575f4e1";
};
};
- "ms-0.7.1" = {
- name = "ms";
- packageName = "ms";
- version = "0.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz";
- sha1 = "9cd13c03adbff25b65effde7ce864ee952017098";
- };
- };
"lru-cache-2.2.4" = {
name = "lru-cache";
packageName = "lru-cache";
@@ -14067,13 +14166,13 @@ let
sha1 = "0c2903ee5c54e63d65a96170764703550665a3de";
};
};
- "passport-0.3.2" = {
+ "passport-0.4.0" = {
name = "passport";
packageName = "passport";
- version = "0.3.2";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/passport/-/passport-0.3.2.tgz";
- sha1 = "9dd009f915e8fe095b0124a01b8f82da07510102";
+ url = "https://registry.npmjs.org/passport/-/passport-0.4.0.tgz";
+ sha1 = "c5095691347bd5ad3b5e180238c3914d16f05811";
};
};
"passport-google-oauth-1.0.0" = {
@@ -14568,7 +14667,7 @@ let
version = "1.3.2";
src = fetchurl {
url = "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-1.3.2.tgz";
- sha1 = "33abf2b5720a9b094df38e81741ccb502e1a4125";
+ sha512 = "0mvmzv0c23159jkmwd32hlbilf9lby2iz7xpmxi6i5ym75am5m355dpfv0wwkw2s41f8lncgnx6plxl361bqkfbmds8083llmf6dkv7";
};
};
"conventional-recommended-bump-1.0.1" = {
@@ -14577,7 +14676,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-1.0.1.tgz";
- sha1 = "56b8ae553a8a1152fa069e767599e1f6948bd36c";
+ sha512 = "0cn224cp4qa787r0gkxg66f8m3s6l4nimfi2hm9mi5b0fh1365nqcipq3p5g1l82lkz6xdc9ihv46pvrx7gr8l0lh563dvh8bqw8nnq";
};
};
"dedent-0.7.0" = {
@@ -14676,7 +14775,7 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.1.0.tgz";
- sha1 = "1769f4b551eedce419f0505deae2e26763542d37";
+ sha512 = "0jpbx5znf640m7icywa21hdgyss5h6c811z27mzk7mh1yhv8sqcqd2y0cwgkrnigx57k2chv5cqwv0z8ff8z32gpdw8jw5imz8pcdni";
};
};
"write-json-file-2.2.0" = {
@@ -14739,7 +14838,7 @@ let
version = "1.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-1.4.0.tgz";
- sha1 = "118b9f7d41a3d99500bfb6bea1f3525e055e8b9b";
+ sha512 = "2cp0yhzf0kjmhawbj1v8kq71ddksbx8g7k1h7snwxijqy2xdgl6y6c63q6qg8ck3ar6n6wcs7yxzrq6kc9ddphclaqdg5s9d7drfhms";
};
};
"conventional-changelog-atom-0.1.1" = {
@@ -14748,7 +14847,7 @@ let
version = "0.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-0.1.1.tgz";
- sha1 = "d40a9b297961b53c745e5d1718fd1a3379f6a92f";
+ sha512 = "0h2y3wj5pfwir1ynh6i7qibcv30z2vy6l6q11nh9z9vzl15433c00bvjy1iz9zirkb57g4xyilak59hdzfzinadxqi8h3r2wgznxng8";
};
};
"conventional-changelog-codemirror-0.1.0" = {
@@ -14919,7 +15018,7 @@ let
version = "1.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-1.2.1.tgz";
- sha1 = "6ccd2a52e735b736748dc762444fcd9588e27490";
+ sha512 = "16mn1j3vray2l88lrl57pkaxz3bvv4ahnx3qr6r3hkdjarzqn1d8w99n44mn39y4kdmcva1z6annx92h06r870yq05382f76jvv2p3w";
};
};
"conventional-commits-filter-1.0.0" = {
@@ -14937,7 +15036,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz";
- sha1 = "605bd9be303aa59fb35f9229fbea0ddec9ea07d9";
+ sha512 = "2916kdi862ik0dlvr2wf2kvzmw8i8wk5spbr9wpdcksrkhrl3m0082jj1q4mqzvv50mlah5s4vcy6k18nacbj09kxbzp2pbysh8wg4r";
};
};
"is-subset-0.1.1" = {
@@ -15036,7 +15135,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-2.0.0.tgz";
- sha1 = "71d01910cb0a99aeb20c144e50f81f4df3178447";
+ sha512 = "0mh43bfdx21ll5dn629cyh7p65drm2zcrazqvi6kq0m17h0y27brzsf8shjpi4idj3h9sqqa1dnq47xdwa00y4saswih5iqmy1pm1zj";
};
};
"jsonfile-3.0.1" = {
@@ -15144,7 +15243,7 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz";
- sha1 = "42bc2900a6b5b8bd17376c8e882b65afccf24bf2";
+ sha512 = "0lafrp0i2ajapsnma0x74q7zscn97a56i5hh58a0nyig2igfx9fqn4ain9kvjrr06as5gzdrv2wdf52qc5m861fd0f4cv69ghdjbjyy";
};
};
"which-module-2.0.0" = {
@@ -15543,40 +15642,40 @@ let
sha1 = "9adc26ee729a0f95095851a5489f87a5258d57a9";
};
};
- "npm-registry-client-7.1.2" = {
+ "npm-registry-client-8.4.0" = {
name = "npm-registry-client";
packageName = "npm-registry-client";
- version = "7.1.2";
+ version = "8.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-7.1.2.tgz";
- sha1 = "ddf243a2bd149d35172fe680aff40dfa20054bc3";
+ url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.4.0.tgz";
+ sha512 = "20ka7w1mdgrazm20d5jihqam7gpiz0rnm2r6i91ax11mq96zn81ywwmmy3jr3yjddrc1bzcljxbs86wlwwrrzsgki2igj95mnm5ylrx";
};
};
- "npmconf-2.0.9" = {
+ "npmconf-2.1.2" = {
name = "npmconf";
packageName = "npmconf";
- version = "2.0.9";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/npmconf/-/npmconf-2.0.9.tgz";
- sha1 = "5c87e5fb308104eceeca781e3d9115d216351ef2";
+ url = "https://registry.npmjs.org/npmconf/-/npmconf-2.1.2.tgz";
+ sha1 = "66606a4a736f1e77a059aa071a79c94ab781853a";
};
};
- "tar-1.0.3" = {
+ "tar-3.1.15" = {
name = "tar";
packageName = "tar";
- version = "1.0.3";
+ version = "3.1.15";
src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-1.0.3.tgz";
- sha1 = "15bcdab244fa4add44e4244a0176edb8aa9a2b44";
+ url = "https://registry.npmjs.org/tar/-/tar-3.1.15.tgz";
+ sha512 = "1ryql8hyrrhd0gdd71ishbj3cnr8ay0i0wpvy9mj3hjiy35cc1wa0h07wz8jwils98j00gr03ix3cf2j1xm43xjn9bsavwn1yr4a0x5";
};
};
- "fs.extra-1.2.1" = {
+ "fs.extra-1.3.2" = {
name = "fs.extra";
packageName = "fs.extra";
- version = "1.2.1";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/fs.extra/-/fs.extra-1.2.1.tgz";
- sha1 = "060bf20264f35e39ad247e5e9d2121a2a75a1733";
+ url = "https://registry.npmjs.org/fs.extra/-/fs.extra-1.3.2.tgz";
+ sha1 = "dd023f93013bee24531f1b33514c37b20fd93349";
};
};
"findit-2.0.0" = {
@@ -15597,31 +15696,13 @@ let
sha1 = "dbf8f4a0acafbe3b8d9b71c24cbd1d851de6c31a";
};
};
- "retry-0.8.0" = {
- name = "retry";
- packageName = "retry";
- version = "0.8.0";
+ "ssri-4.1.6" = {
+ name = "ssri";
+ packageName = "ssri";
+ version = "4.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/retry/-/retry-0.8.0.tgz";
- sha1 = "2367628dc0edb247b1eab649dc53ac8628ac2d5f";
- };
- };
- "npmlog-3.1.2" = {
- name = "npmlog";
- packageName = "npmlog";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npmlog/-/npmlog-3.1.2.tgz";
- sha1 = "2d46fa874337af9498a2f12bb43d8d0be4a36873";
- };
- };
- "gauge-2.6.0" = {
- name = "gauge";
- packageName = "gauge";
- version = "2.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/gauge/-/gauge-2.6.0.tgz";
- sha1 = "d35301ad18e96902b4751dcbbe40f4218b942a46";
+ url = "https://registry.npmjs.org/ssri/-/ssri-4.1.6.tgz";
+ sha512 = "283n1p781cl2pj3jk32blcvwjdlaixng0v5x2f9qi3ndxrmyg3hk4clsjpcfsszkymy40q426yz5skax4ivsmll2p9hhcc00ivc4ijr";
};
};
"uid-number-0.0.5" = {
@@ -15633,6 +15714,33 @@ let
sha1 = "5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e";
};
};
+ "minipass-2.2.1" = {
+ name = "minipass";
+ packageName = "minipass";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.2.1.tgz";
+ sha512 = "3yy9s65iwrx5hndcqbxrks88xi9cf8hra6zalgf8xfr4ahpp31s0i8lv6jpyb42p0y7z55ac3390sbqxcgcvan3xls449agbjb98mmv";
+ };
+ };
+ "minizlib-1.0.3" = {
+ name = "minizlib";
+ packageName = "minizlib";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minizlib/-/minizlib-1.0.3.tgz";
+ sha1 = "d5c1abf77be154619952e253336eccab9b2a32f5";
+ };
+ };
+ "yallist-3.0.2" = {
+ name = "yallist";
+ packageName = "yallist";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz";
+ sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9";
+ };
+ };
"fs-extra-0.6.4" = {
name = "fs-extra";
packageName = "fs-extra";
@@ -15642,13 +15750,13 @@ let
sha1 = "f46f0c75b7841f8d200b3348cd4d691d5a099d15";
};
};
- "walk-2.2.1" = {
+ "walk-2.3.9" = {
name = "walk";
packageName = "walk";
- version = "2.2.1";
+ version = "2.3.9";
src = fetchurl {
- url = "https://registry.npmjs.org/walk/-/walk-2.2.1.tgz";
- sha1 = "5ada1f8e49e47d4b7445d8be7a2e1e631ab43016";
+ url = "https://registry.npmjs.org/walk/-/walk-2.3.9.tgz";
+ sha1 = "31b4db6678f2ae01c39ea9fb8725a9031e558a7b";
};
};
"jsonfile-1.0.1" = {
@@ -15660,22 +15768,13 @@ let
sha1 = "ea5efe40b83690b98667614a7392fc60e842c0dd";
};
};
- "forEachAsync-2.2.1" = {
- name = "forEachAsync";
- packageName = "forEachAsync";
- version = "2.2.1";
+ "foreachasync-3.0.0" = {
+ name = "foreachasync";
+ packageName = "foreachasync";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/forEachAsync/-/forEachAsync-2.2.1.tgz";
- sha1 = "e3723f00903910e1eb4b1db3ad51b5c64a319fec";
- };
- };
- "sequence-2.2.1" = {
- name = "sequence";
- packageName = "sequence";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sequence/-/sequence-2.2.1.tgz";
- sha1 = "7f5617895d44351c0a047e764467690490a16b03";
+ url = "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz";
+ sha1 = "5502987dc8714be3392097f32e0071c9dee07cf6";
};
};
"biased-opener-0.2.8" = {
@@ -15990,7 +16089,7 @@ let
version = "1.2.4";
src = fetchurl {
url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.2.4.tgz";
- sha1 = "355e8f4d16876b43f577b0d5ce2668b9723214ea";
+ sha512 = "2mxs6nll208xgqy9asgc0iq4k9ynd2aanig2qkfi3drd8axdafhhx36a58ssksmjgl6s1m2bh2j8igrlpm3k11cg58nhmqbxhlkmv2a";
};
};
"fs.notify-0.0.4" = {
@@ -16035,7 +16134,7 @@ let
version = "1.2.6";
src = fetchurl {
url = "https://registry.npmjs.org/jsonata/-/jsonata-1.2.6.tgz";
- sha1 = "d44fea5a54145600c1a3875e942ab6727adbddb5";
+ sha512 = "3bpyhs9imacbmpq0r7l65qvkx0dfnx92qz5vm59i983h2xvw2yrr1934i979accigkr33b65n51m5zx73glbi3pwl8n6zm5b3y74a8a";
};
};
"mqtt-2.9.0" = {
@@ -16044,7 +16143,7 @@ let
version = "2.9.0";
src = fetchurl {
url = "https://registry.npmjs.org/mqtt/-/mqtt-2.9.0.tgz";
- sha1 = "379ceb787a52fc15cb8fc96d558a32c123f12a9d";
+ sha512 = "181qi8xb0lxxqvwq2xcslv35dbhphyr67w02bad6n4rlibcm6z0j055dyfpdh12mrrvgjzfj11cjylsj26y7vr17cvk1kbgkiqgzpb9";
};
};
"multer-1.3.0" = {
@@ -16074,6 +16173,15 @@ let
sha1 = "f2ddc0115d635d0480746249c00f0ea1a9c51ba8";
};
};
+ "passport-0.3.2" = {
+ name = "passport";
+ packageName = "passport";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport/-/passport-0.3.2.tgz";
+ sha1 = "9dd009f915e8fe095b0124a01b8f82da07510102";
+ };
+ };
"passport-http-bearer-1.0.1" = {
name = "passport-http-bearer";
packageName = "passport-http-bearer";
@@ -16107,7 +16215,7 @@ let
version = "3.0.20";
src = fetchurl {
url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.0.20.tgz";
- sha1 = "cb35b2bcfe478051b6f3282be8db4e4add49a1e5";
+ sha512 = "3apvpzjbs9vds18x8pxb8ysn94658xnajl5zfagr23xpbfhgbmlmajm0lnmz9h4jk99snzf51vcc1r0l0g4gmbdzcn574vvvzy3dxrv";
};
};
"when-3.7.8" = {
@@ -16386,7 +16494,7 @@ let
version = "2.1.5";
src = fetchurl {
url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz";
- sha1 = "2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a";
+ sha512 = "2h6492mk9v9dzy26i5wfajinhi2pg729ksbcsmm0sp8s32hlr432q19g97qghfp5x98hsm77hmzwdzhgi3vhm2drz53ax7rabhydw98";
};
};
"retry-0.6.1" = {
@@ -16467,7 +16575,7 @@ let
version = "5.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-5.4.0.tgz";
- sha1 = "387104c06aa68fbb9f8159d0c722dd5c3e45df22";
+ sha512 = "2d1hvibps8d4xlw8wm937ykc76yb02rp2065hd6186vygjx3wixjjzrn3fia4wfj7d38ic8gh5ij5rsi9389kl6gpxxjbdcbjwpn8yf";
};
};
"reinterval-1.1.0" = {
@@ -16485,7 +16593,7 @@ let
version = "5.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/websocket-stream/-/websocket-stream-5.0.1.tgz";
- sha1 = "51cb992988c2eeb4525ccd90eafbac52a5ac6700";
+ sha512 = "3w842xsi7pgjjr5fkdzbx9dfsjl87x6c8wrvxgy8i1lr399yjiggbwrfdvpccv698f7n4ywvf7dbc8g61ly99yw1lf7fwpfrypg8x9p";
};
};
"leven-1.0.2" = {
@@ -16548,7 +16656,7 @@ let
version = "3.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/ws/-/ws-3.1.0.tgz";
- sha1 = "8afafecdeab46d572e5397ee880739367aa2f41c";
+ sha512 = "07wdh2llaz8j5nbjpvl1zbbksw2pikqnw243c6a1ifmshp095hgam79vv5nbp1pjwnlm120m4d3sih9iwm5mkc46im03jb5l6l3ykjd";
};
};
"append-field-0.1.0" = {
@@ -17133,7 +17241,7 @@ let
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/debug/-/debug-3.0.0.tgz";
- sha1 = "1d2feae53349047b08b264ec41906ba17a8516e4";
+ sha512 = "3ra092awfmss9asigji0v03n1n27376c2h94zyzv5sr206nd0p3p6hyzaadlyfz8vj1pcypk2bmjqmnx1v0iasvrkz2dc4v3b3hf2ax";
};
};
"qs-0.5.1" = {
@@ -17466,7 +17574,7 @@ let
version = "9.2.9";
src = fetchurl {
url = "https://registry.npmjs.org/cacache/-/cacache-9.2.9.tgz";
- sha1 = "f9d7ffe039851ec94c28290662afa4dd4bb9e8dd";
+ sha512 = "11qjza6qy62lkvynngcvx7nf2vhxvvp4g0l07a8zw5pzqc5iy0zznxzgs0dw1bb2i10dr2v7i624x6v9pkzp55snam9wk5jjf7ka642";
};
};
"call-limit-1.1.0" = {
@@ -17484,7 +17592,7 @@ let
version = "1.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/fstream-npm/-/fstream-npm-1.2.1.tgz";
- sha1 = "08c4a452f789dcbac4c89a4563c902b2c862fd5b";
+ sha512 = "07r7qvmx5fjjk2ra3hjrz31ciy4vhfq2k8a3wjscjl7y52885zwfvz4caa5xr3kab8l3y4c9rsz1nkpjl530irrs6q5l3z6yadyj4c8";
};
};
"lazy-property-1.0.0" = {
@@ -17502,7 +17610,7 @@ let
version = "9.2.3";
src = fetchurl {
url = "https://registry.npmjs.org/libnpx/-/libnpx-9.2.3.tgz";
- sha1 = "f6fb833dae64044c93dc31eff99cff4a019dc304";
+ sha512 = "0ki52cm2pf27r9pkpfbrx6y1myg7yx1mghwnvv6mw4kmgscif08qlj0xzlc88kpfl549xip4z1ap64s22l7v3q26ygz6x12cch87wsr";
};
};
"lodash._baseuniq-4.6.0" = {
@@ -17577,15 +17685,6 @@ let
sha1 = "d4aecdfd51a53e3723b7b2f93b2ee28e307bc0d7";
};
};
- "npm-registry-client-8.4.0" = {
- name = "npm-registry-client";
- packageName = "npm-registry-client";
- version = "8.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.4.0.tgz";
- sha1 = "d52b901685647fc62a4c03eafecb6ceaa5018d4c";
- };
- };
"npm-user-validate-1.0.0" = {
name = "npm-user-validate";
packageName = "npm-user-validate";
@@ -17610,7 +17709,7 @@ let
version = "2.7.38";
src = fetchurl {
url = "https://registry.npmjs.org/pacote/-/pacote-2.7.38.tgz";
- sha1 = "5091f8774298c26c3eca24606037f1bb73db74c1";
+ sha512 = "0a0ar6lns179qdszia13prhj7gjpdjy334xafq791h48q00259lr6gpkzp17dagfcnff9pgcgxm7b68nidpj5qs0yah1v81fk4d84az";
};
};
"promise-inflight-1.0.1" = {
@@ -17628,7 +17727,7 @@ let
version = "5.1.6";
src = fetchurl {
url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.6.tgz";
- sha1 = "4f03e83d0486856fb60d97c94882841c2a7b1b7a";
+ sha512 = "0v1k32zqj8bnqzyp5h0jxnkvpgpzpa6z7iyqbpm3p0ylqafbb2zm656mw6gs16zf98l7y218ygpx2kzks00qcycwwx2cny67mlza98l";
};
};
"sorted-union-stream-2.1.3" = {
@@ -17640,15 +17739,6 @@ let
sha1 = "c7794c7e077880052ff71a8d4a2dbb4a9a638ac7";
};
};
- "ssri-4.1.6" = {
- name = "ssri";
- packageName = "ssri";
- version = "4.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/ssri/-/ssri-4.1.6.tgz";
- sha1 = "0cb49b6ac84457e7bdd466cb730c3cb623e9a25b";
- };
- };
"unique-filename-1.1.0" = {
name = "unique-filename";
packageName = "unique-filename";
@@ -17673,7 +17763,7 @@ let
version = "1.4.1";
src = fetchurl {
url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.4.1.tgz";
- sha1 = "a438bc993a7a7d133bcb6547c95eca7cff4897d8";
+ sha512 = "0vh5z2d6q3zgf7j3g5ngyq4piqq1y613wacfyildfnm2c2klb4h2gw32grgk6pv9ssyiliyfvj4p4alpaa85cqcj2nznb4q0fv400dn";
};
};
"lodash._baseindexof-3.1.0" = {
@@ -17790,7 +17880,7 @@ let
version = "2.4.13";
src = fetchurl {
url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-2.4.13.tgz";
- sha1 = "3139ba2f4230a8384e7ba394534816c872ecbf4b";
+ sha512 = "0j8sgm5sh7lb4mdpg52yz9rv0jpgkd3bf701i30gd5s3aqxb0i2lq8qm4bndqqfcb8jgiw8wj6dwpv2497khvxmmx3bfj0iad7aqw7g";
};
};
"npm-pick-manifest-1.0.4" = {
@@ -17799,7 +17889,7 @@ let
version = "1.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-1.0.4.tgz";
- sha1 = "a5ee6510c1fe7221c0bc0414e70924c14045f7e8";
+ sha512 = "02pmkjkn2nbr1ypwzwybyd6bfckdwr8cr0nah5bwadz21yd7cd9fbvxqalfdc41n88p1zv8qbgp149knkaixnrl8l7jnrwfxislvb1h";
};
};
"promise-retry-1.1.1" = {
@@ -17835,7 +17925,7 @@ let
version = "3.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.3.0.tgz";
- sha1 = "6d5de5829afd3be2712201a39275fd11c651857c";
+ sha512 = "0svpj8gbh57a1l3zcds9kd8dkh4r2fyacpkrxvffbpj5pgvbf26h93q31niqbqsciswdxlx0fhikljqwg40lvmwxl299nb2gfjmqa7p";
};
};
"http-cache-semantics-3.7.3" = {
@@ -17862,16 +17952,16 @@ let
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.1.0.tgz";
- sha1 = "1391bee7fd66aeabc0df2a1fa90f58954f43e443";
+ sha512 = "17fg8xbji1zam9ksqgdfsyhqfw1nyniz8gwp54q0z7rz1pxw2m3agniawm870nn4j88m1w9l0lfkw5wa4qf1593if0cwicv814xad7w";
};
};
- "node-fetch-npm-2.0.1" = {
+ "node-fetch-npm-2.0.2" = {
name = "node-fetch-npm";
packageName = "node-fetch-npm";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/node-fetch-npm/-/node-fetch-npm-2.0.1.tgz";
- sha1 = "4dd3355ce526c01bc5ab29ccdf48352dc8a79465";
+ url = "https://registry.npmjs.org/node-fetch-npm/-/node-fetch-npm-2.0.2.tgz";
+ sha512 = "0bw6m444q0jc2gmw1yb0im1jv6vhky6d071p72c26ajvf2a7710jq8cp5ampf8j7kdbki7j0mbsi15dh93vrhkpvqpkw0i6ajdk34lw";
};
};
"socks-proxy-agent-3.0.0" = {
@@ -17880,7 +17970,7 @@ let
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.0.tgz";
- sha1 = "ea23085cd2bde94d084a62448f31139ca7ed6245";
+ sha512 = "3zn9cz2ry5m1akapj7hvhgkxfq7ffwynia46lmwipsw2jk5sv8dvs32dc4hfx3xvp34i1jff1bg870a1xnknsgk5dl021jd4gwi75v0";
};
};
"humanize-ms-1.2.1" = {
@@ -17898,7 +17988,7 @@ let
version = "4.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/agent-base/-/agent-base-4.1.1.tgz";
- sha1 = "92d8a4fc2524a3b09b3666a33b6c97960f23d6a4";
+ sha512 = "2naw79i4m7pj1n5qw9xq6c0c8cdjfcqhdqk4j552nbrpb4c60hic13jfikqw7xga8xywpr57z2y5z70gn5xiihq47vzs3wrc1998qf9";
};
};
"es6-promisify-5.0.0" = {
@@ -17916,7 +18006,7 @@ let
version = "4.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.1.1.tgz";
- sha1 = "8811e90915d9a0dba36274f0b242dbda78f9c92a";
+ sha512 = "2g2gkw8cxy2lww5lqjbv0imkxkhy684pagbq4qaw6np46xcx1r6rbkg7qy4wjv12b7jy7zs208iilim7clc9v6ws2dzy9g0g223b99r";
};
};
"socks-1.1.10" = {
@@ -17988,7 +18078,7 @@ let
version = "3.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz";
- sha1 = "094ee662ab83fad9917678de114faaea8fcdca90";
+ sha512 = "2zmidvkp20q25yv6a5d7k1daawdg0w6ppgayxzpwfhyvmgwybkkv7ni0j4b2j9c8wjn8z33zf5d4bjr8jywb5qixc75vypyy87n90z6";
};
};
"import-lazy-2.1.0" = {
@@ -18117,15 +18207,6 @@ let
sha1 = "6b13df5cddf370f2e3a606ca40f202c419173f07";
};
};
- "fs.extra-1.3.2" = {
- name = "fs.extra";
- packageName = "fs.extra";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs.extra/-/fs.extra-1.3.2.tgz";
- sha1 = "dd023f93013bee24531f1b33514c37b20fd93349";
- };
- };
"findit-1.2.0" = {
name = "findit";
packageName = "findit";
@@ -18234,24 +18315,6 @@ let
sha1 = "5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2";
};
};
- "walk-2.3.9" = {
- name = "walk";
- packageName = "walk";
- version = "2.3.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/walk/-/walk-2.3.9.tgz";
- sha1 = "31b4db6678f2ae01c39ea9fb8725a9031e558a7b";
- };
- };
- "foreachasync-3.0.0" = {
- name = "foreachasync";
- packageName = "foreachasync";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz";
- sha1 = "5502987dc8714be3392097f32e0071c9dee07cf6";
- };
- };
"cint-8.2.1" = {
name = "cint";
packageName = "cint";
@@ -18324,13 +18387,13 @@ let
sha1 = "27d92fec34d27cfa42707d3b40d025ae9855f2df";
};
};
- "snyk-1.38.1" = {
+ "snyk-1.38.3" = {
name = "snyk";
packageName = "snyk";
- version = "1.38.1";
+ version = "1.38.3";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.38.1.tgz";
- sha1 = "8a7527cc89811daa400780ea9051f5a73e737f23";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.38.3.tgz";
+ sha1 = "76988492a24030ee1b496fd6c0b45aedaf349ec4";
};
};
"spawn-please-0.3.0" = {
@@ -18387,6 +18450,15 @@ let
sha1 = "14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab";
};
};
+ "npmlog-3.1.2" = {
+ name = "npmlog";
+ packageName = "npmlog";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npmlog/-/npmlog-3.1.2.tgz";
+ sha1 = "2d46fa874337af9498a2f12bb43d8d0be4a36873";
+ };
+ };
"path-array-1.0.1" = {
name = "path-array";
packageName = "path-array";
@@ -18396,6 +18468,15 @@ let
sha1 = "7e2f0f35f07a2015122b868b7eac0eb2c4fec271";
};
};
+ "gauge-2.6.0" = {
+ name = "gauge";
+ packageName = "gauge";
+ version = "2.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gauge/-/gauge-2.6.0.tgz";
+ sha1 = "d35301ad18e96902b4751dcbbe40f4218b942a46";
+ };
+ };
"array-index-1.0.0" = {
name = "array-index";
packageName = "array-index";
@@ -18423,13 +18504,13 @@ let
sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f";
};
};
- "es5-ext-0.10.26" = {
+ "es5-ext-0.10.27" = {
name = "es5-ext";
packageName = "es5-ext";
- version = "0.10.26";
+ version = "0.10.27";
src = fetchurl {
- url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.26.tgz";
- sha1 = "51b2128a531b70c4f6764093a73cbebb82186372";
+ url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.27.tgz";
+ sha512 = "39v1b13qiq02g8qwdjqnnqla20yy3bbhvvk66vhjyywbha8bjb9ry6q4hk8zlckvws880azkrxyw994dkkfcwpiqmxkfpfaii2wk9fw";
};
};
"es6-iterator-2.0.1" = {
@@ -18483,7 +18564,7 @@ let
version = "1.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-1.0.3.tgz";
- sha1 = "9583df8bda478d4a20070d577b1da2e1cb6499ef";
+ sha512 = "0mfvgmyrysvs5vfwnv6scysgkjq2917zay5s5x884a0xv0rdzr6rcc283lmkzm9g4rwikf06mz5aq99j59vl168iwpcfdk2q4w0l8l9";
};
};
"snyk-module-1.8.1" = {
@@ -18501,7 +18582,7 @@ let
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-1.0.0.tgz";
- sha1 = "99ae297b7ae40fa8df78a39fa13816dc513c2d10";
+ sha512 = "01vcacjw51v7n21nb72chxlgqnzslg4dxqf2m5v4dlig0mk03jbvhhib2a48ji9kda2gplnq94xnjgqkc6ckp4xjyv7ajqacdabfwnv";
};
};
"snyk-policy-1.7.1" = {
@@ -18513,13 +18594,13 @@ let
sha1 = "e413b6bd4af6050c5e5f445287909e4e98a09b22";
};
};
- "snyk-python-plugin-1.2.2" = {
+ "snyk-python-plugin-1.2.3" = {
name = "snyk-python-plugin";
packageName = "snyk-python-plugin";
- version = "1.2.2";
+ version = "1.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.2.2.tgz";
- sha1 = "296948cba5ac80d2ce178a5cb7ecfcff88fdf263";
+ url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.2.3.tgz";
+ sha512 = "32brr3jb8vs1253ls0bmhmnp26873sc40805wvxl3x40i84czzr5nrnf5x2ikwk8hb4nwcy5bwpm192wj43z7g0gcd2k19afq8ixifn";
};
};
"snyk-recursive-readdir-2.0.0" = {
@@ -18555,7 +18636,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-1.1.0.tgz";
- sha1 = "922bc70220ee95f26fbb1e482ff1dcbccdd1f050";
+ sha512 = "20rfszcqyzsbkrq0289dg335kdls788r81chv7kwhp440hj7aqckzydc1hdgkcqpq7qic1v6bzknl06jkrbh5mb1nysxi3qz8y11333";
};
};
"snyk-tree-1.0.0" = {
@@ -19108,7 +19189,7 @@ let
version = "3.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/msgpack5/-/msgpack5-3.5.0.tgz";
- sha1 = "193b3e864959a826d33074460c2651d1ed04b07a";
+ sha512 = "2sgk5bgncdhki1x3pl5lc9l4j1p1p9v2nkrc24gb1gkmycc8svqgx3712h0nmb00zbn1nkzgfzrsy708cpgxfmwkyvbvb9q56nvys2f";
};
};
"dom-storage-2.0.2" = {
@@ -19345,13 +19426,13 @@ let
sha1 = "899f11d9686e5e05cb91b35d5f0e63b773cfc901";
};
};
- "dns-packet-1.1.1" = {
+ "dns-packet-1.2.2" = {
name = "dns-packet";
packageName = "dns-packet";
- version = "1.1.1";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.1.1.tgz";
- sha1 = "2369d45038af045f3898e6fa56862aed3f40296c";
+ url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.2.2.tgz";
+ sha512 = "0770ymyc0rv6a11mj3990d0z1jl1b2qxp4bapqa819y269sszfd96wn2y7pb6aw8bdgsn3bvpr7bmig5lcmkrxya13d5vc5y66q7pwh";
};
};
"external-editor-1.1.1" = {
@@ -19453,6 +19534,15 @@ let
sha1 = "9fe85dee25853ca6babe25bd2ad68710863e91c2";
};
};
+ "extract-zip-1.5.0" = {
+ name = "extract-zip";
+ packageName = "extract-zip";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz";
+ sha1 = "92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4";
+ };
+ };
"request-2.67.0" = {
name = "request";
packageName = "request";
@@ -19462,6 +19552,15 @@ let
sha1 = "8af74780e2bf11ea0ae9aa965c11f11afd272742";
};
};
+ "concat-stream-1.5.0" = {
+ name = "concat-stream";
+ packageName = "concat-stream";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz";
+ sha1 = "53f7d43c51c5e43f81c8fdd03321c631be68d611";
+ };
+ };
"bl-1.0.3" = {
name = "bl";
packageName = "bl";
@@ -20594,7 +20693,7 @@ let
version = "1.15.5";
src = fetchurl {
url = "https://registry.npmjs.org/express-session/-/express-session-1.15.5.tgz";
- sha1 = "f49a18227263b316f6f8544da5fee25a540259ec";
+ sha512 = "0xr0b4wp67nzril9h59g1ag2siwazl9kkfy45cq317w0x9q6apr82i9hvqrmjpp9zfvzfidz0vvd1pczsa7namwsdwk1anp9zl74584";
};
};
"forever-monitor-1.1.0" = {
@@ -20687,13 +20786,13 @@ let
sha1 = "1fe63268c92e75606626437e3b906662c15ba6ee";
};
};
- "raven-2.1.1" = {
+ "raven-2.1.2" = {
name = "raven";
packageName = "raven";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/raven/-/raven-2.1.1.tgz";
- sha1 = "b3a974c6c29315c677c079e168435ead196525cd";
+ url = "https://registry.npmjs.org/raven/-/raven-2.1.2.tgz";
+ sha512 = "136ylazswrblh2b1kc29xsmzk3i3bhm6vcirl1zb60fv9h0nf3hipz7qm91vs6my1lry00xrzpy1x96y51siciwwq7k3fs0ynl2j6m4";
};
};
"signals-1.0.0" = {
@@ -20765,7 +20864,7 @@ let
version = "3.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/diff/-/diff-3.3.0.tgz";
- sha1 = "056695150d7aa93237ca7e378ac3b1682b7963b9";
+ sha512 = "0vcr20wa3j8j9b5xs7d5wnkm74g7ka45zfmw813s6ibwk8gbzyj87ifas3qklfdj7ydrqjfcylhazar038qzaf6jqfl17snn6wxjif3";
};
};
"hogan.js-3.0.2" = {
@@ -20927,7 +21026,7 @@ let
version = "2.2.11";
src = fetchurl {
url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.11.tgz";
- sha1 = "0796b31f8d7688007ff0b93a8088d34aa17c0f72";
+ sha512 = "3sn0n3ncghvdrhy082cysiswswps9d5824ppjkl7gl1z1r6f11ij6z9nvs3l8gbp7vys1kgamrnikas3azjh7dwaqi1j4haffpkxvw7";
};
};
"update-notifier-2.1.0" = {
@@ -21101,6 +21200,15 @@ let
sha1 = "4424aca20e14d255c0b0889af6f6b8973da10e0d";
};
};
+ "tmp-0.0.33" = {
+ name = "tmp";
+ packageName = "tmp";
+ version = "0.0.33";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz";
+ sha512 = "0drg2bck1cj8677rgs1l98v7vqaxawcqh6ja87qilwnd719l5y0lzv5ssn3pcwa37fdbg4188y6x15a90vkllyvfpd9v7fai2b8j44d";
+ };
+ };
"follow-redirects-0.0.3" = {
name = "follow-redirects";
packageName = "follow-redirects";
@@ -21152,7 +21260,7 @@ let
version = "0.5.7";
src = fetchurl {
url = "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz";
- sha1 = "dca14a70235ff82f0ac9a3abeb60d337a365185d";
+ sha512 = "3iwy9jwca9hg6h1k7cmcdlsygn2qzjv7w72fsrfjfpdrcyd4xc5fb11sf664rvnzrfmz24f19kvi3qawif4n63lggvpg5pv73qfrcs0";
};
};
"loader-runner-2.3.0" = {
@@ -21215,7 +21323,7 @@ let
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.0.1.tgz";
- sha1 = "c7356436a4d13123be2e2426a05d1dad9cbe65cf";
+ sha512 = "27l6lhqai0bhgk7mbchvf608bgmrgbqmgjd07k1rsg7xh12lnaflr459cy7ay108jr7dk8g5ybx70xi7cbz6lm5c7m022sl5b34r6yk";
};
};
"es6-map-0.1.5" = {
@@ -21281,49 +21389,13 @@ let
sha1 = "63fc4ccee5d2d7763d26bbf8601078e6c2e0044f";
};
};
- "timers-browserify-2.0.3" = {
+ "timers-browserify-2.0.4" = {
name = "timers-browserify";
packageName = "timers-browserify";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.3.tgz";
- sha1 = "41fd0bdc926a5feedc33a17a8e1f7d491925f7fc";
- };
- };
- "global-4.3.2" = {
- name = "global";
- packageName = "global";
- version = "4.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/global/-/global-4.3.2.tgz";
- sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f";
- };
- };
- "min-document-2.19.0" = {
- name = "min-document";
- packageName = "min-document";
- version = "2.19.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz";
- sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685";
- };
- };
- "process-0.5.2" = {
- name = "process";
- packageName = "process";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/process/-/process-0.5.2.tgz";
- sha1 = "1638d8a8e34c2f440a91db95ab9aeb677fc185cf";
- };
- };
- "dom-walk-0.1.1" = {
- name = "dom-walk";
- packageName = "dom-walk";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz";
- sha1 = "672226dc74c8f799ad35307df936aba11acd6018";
+ url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.4.tgz";
+ sha512 = "2pddj1k7206wrs3q5z7dzwc657rbdd2m00llzz0h1241fp0y5i32qi2slmfys217hqszbqmvnmjr32msgbjgzh33nxw6py49p4j35mr";
};
};
"source-list-map-2.0.0" = {
@@ -21332,7 +21404,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz";
- sha1 = "aaa47403f7b245a92fbc97ea08f250d6087ed085";
+ sha512 = "3q09f2w67qqhl3lwiisj4422mj9nfldg4cxmidfrjcwn3k7spm9g46x4n1j6kv39bi9khmcpyvfa3fwski488ibivyg9bwijjw2cr93";
};
};
"death-1.1.0" = {
@@ -21350,7 +21422,7 @@ let
version = "1.4.1";
src = fetchurl {
url = "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.1.tgz";
- sha1 = "39c72ed89d1b49ba708e18776500488902a52027";
+ sha512 = "3d6jyhcq21cxy2n6mnalnxcdxl9i00n8qka7awrqamggss8yllz57msx7c480knv037snkzkymq6npl36wlpl71h54x511dlchavnxa";
};
};
"leven-2.1.0" = {
@@ -21368,7 +21440,7 @@ let
version = "1.8.1";
src = fetchurl {
url = "https://registry.npmjs.org/node-emoji/-/node-emoji-1.8.1.tgz";
- sha1 = "6eec6bfb07421e2148c75c6bba72421f8530a826";
+ sha512 = "1bdm7sms59bj5fa575nda007mvn4nibjla4hm9bf9ry70kgqw7slmz3l4md4cyx2j4zda0dh0mcjildkzq7ba3i9qzapha93l14qjzs";
};
};
"object-path-0.11.4" = {
@@ -21566,7 +21638,7 @@ let
version = "2.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.0.2.tgz";
- sha1 = "504ece28e11b5ac487e90b97d8189afa38db4331";
+ sha512 = "2wkqnb0q3hbfvgxiyi21kaw7rcn4grpxaajnhxry03y05xfr39xh25c9nqj4drp6c89snssd741ra24v5ibngj460hgs4ldsz90w5r0";
};
};
"yosay-2.0.1" = {
@@ -21575,7 +21647,7 @@ let
version = "2.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/yosay/-/yosay-2.0.1.tgz";
- sha1 = "078167f0365732e5c82d3f64633f9cd3a0526d2f";
+ sha512 = "1n6z65vkm1r31a1ms8wn32m9q61vrlz9isn43lm00qka1zvnich78zbnp29xwy72z361is2yimrpglmc55w97hbi9pas5pqlnvqbpw4";
};
};
"filter-obj-1.1.0" = {
@@ -21593,7 +21665,7 @@ let
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/p-any/-/p-any-1.1.0.tgz";
- sha1 = "1d03835c7eed1e34b8e539c47b7b60d0d015d4e1";
+ sha512 = "3da1hqkqhwx9xiw283nnq04pvsj1a69k7k0np5126v33dmpgxyhg19s99bz6djzd6sp713yg02h3h636wlgi9v2099rlrq2mrajvz8i";
};
};
"p-try-1.0.0" = {
@@ -21620,7 +21692,7 @@ let
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/p-some/-/p-some-2.0.0.tgz";
- sha1 = "60b408e21f5da11a417fad13740bf20f9024ab3b";
+ sha512 = "23lpz1jyj01f06bndx53w1k931l6ki6m94mgf9lqpxka3366q0w1ql0igm7bj5nc0imzdjv3x5825c05mjnhkgahw99hd0h1kk5ri0a";
};
};
"aggregate-error-1.0.0" = {
@@ -22292,7 +22364,7 @@ in
sources."has-color-0.1.7"
sources."ansi-styles-1.0.0"
sources."strip-ansi-0.1.1"
- sources."@types/node-7.0.39"
+ sources."@types/node-7.0.42"
sources."@types/request-0.0.45"
sources."@types/uuid-2.0.30"
sources."is-buffer-1.1.5"
@@ -22800,10 +22872,9 @@ in
sources."router-0.6.2"
sources."srt2vtt-1.3.1"
sources."stream-transcoder-0.0.5"
- (sources."xml2js-0.4.17" // {
+ (sources."xml2js-0.4.18" // {
dependencies = [
- sources."xmlbuilder-4.2.1"
- sources."lodash-4.17.4"
+ sources."xmlbuilder-9.0.4"
];
})
sources."xspfr-0.3.1"
@@ -23126,7 +23197,7 @@ in
version = "1.12.7";
src = fetchurl {
url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz";
- sha1 = "c05dae0cb79591d05b3070a8433a98c9a89ccc53";
+ sha512 = "29mq40padyvizg4f141b00p0p74hx9v06d7gxk84ggsiyw6rf5bb65gnfwk1i02r276jwqybmi5hx98s943slyazjnqd69jmj389dvw";
};
buildInputs = globalBuildInputs;
meta = {
@@ -23511,7 +23582,7 @@ in
sources."npm-package-arg-5.1.2"
sources."promzard-0.3.0"
sources."read-1.0.7"
- (sources."read-package-json-2.0.10" // {
+ (sources."read-package-json-2.0.11" // {
dependencies = [
sources."glob-7.1.2"
];
@@ -23520,9 +23591,8 @@ in
sources."validate-npm-package-name-3.0.0"
sources."hosted-git-info-2.5.0"
sources."mute-stream-0.0.7"
- sources."json-parse-helpfulerror-1.0.3"
+ sources."json-parse-better-errors-1.0.1"
sources."normalize-package-data-2.4.0"
- sources."jju-1.3.0"
sources."is-builtin-module-1.0.0"
sources."builtin-modules-1.1.1"
sources."spdx-correct-1.0.2"
@@ -23786,7 +23856,7 @@ in
version = "0.2.9";
src = fetchurl {
url = "https://registry.npmjs.org/dhcp/-/dhcp-0.2.9.tgz";
- sha1 = "204208be1cef2788d528744fb263f60a528363a2";
+ sha512 = "0xvz5ppq82s4yhrp4alp1ni696v960p9a8hycwns0bj33qjdsd2nn9h2xzpgssn9c27jbr91h9fr851rnc7sz7nd2ycblcsfy193sj0";
};
dependencies = [
sources."minimist-1.2.0"
@@ -24097,13 +24167,13 @@ in
version = "3.3.1";
src = fetchurl {
url = "https://registry.npmjs.org/elasticdump/-/elasticdump-3.3.1.tgz";
- sha1 = "84218b1184cec4859e63ae2ef44b5a7d877e4fe4";
+ sha512 = "21mmlyi12vnfg5s88vh8i7jk43m69bp4qhgkch8i2qbzf9fv4hqn7b6wcxkbbdxzdvnkkpklb2xxpxi5nflwl513w08d6ykvac2ambh";
};
dependencies = [
sources."JSONStream-1.3.1"
sources."async-2.5.0"
sources."aws4-1.6.0"
- sources."aws-sdk-2.95.0"
+ sources."aws-sdk-2.100.0"
sources."ini-1.3.4"
sources."optimist-0.6.1"
sources."request-2.81.0"
@@ -24211,7 +24281,7 @@ in
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/emoj/-/emoj-2.0.0.tgz";
- sha1 = "6f6faf41a8f48e6080bffb2012041fc89491dd9f";
+ sha512 = "06w3hpcnxg63wg262ldhw4s2shyr1f1bvilqshy88i4svamgxk0qzdhhma2rwcwq7qpjwjlr8m1z2qbmqw9faff5f8hl45yj3jxrs3z";
};
dependencies = [
sources."auto-bind-1.1.0"
@@ -24281,23 +24351,23 @@ in
sources."has-symbol-support-x-1.4.0"
sources."prepend-http-1.0.4"
sources."ansi-regex-3.0.0"
- sources."babel-core-6.25.0"
+ sources."babel-core-6.26.0"
sources."babel-plugin-transform-es2015-destructuring-6.23.0"
- sources."babel-plugin-transform-object-rest-spread-6.23.0"
+ sources."babel-plugin-transform-object-rest-spread-6.26.0"
sources."babel-plugin-transform-react-jsx-6.24.1"
sources."caller-path-2.0.0"
sources."require-from-string-1.2.1"
sources."resolve-from-3.0.0"
- sources."babel-code-frame-6.22.0"
- sources."babel-generator-6.25.0"
+ sources."babel-code-frame-6.26.0"
+ sources."babel-generator-6.26.0"
sources."babel-helpers-6.24.1"
sources."babel-messages-6.23.0"
- sources."babel-template-6.25.0"
- sources."babel-runtime-6.25.0"
- sources."babel-register-6.24.1"
- sources."babel-traverse-6.25.0"
- sources."babel-types-6.25.0"
- sources."babylon-6.17.4"
+ sources."babel-register-6.26.0"
+ sources."babel-runtime-6.26.0"
+ sources."babel-template-6.26.0"
+ sources."babel-traverse-6.26.0"
+ sources."babel-types-6.26.0"
+ sources."babylon-6.18.0"
sources."convert-source-map-1.5.0"
sources."debug-2.6.8"
sources."json5-0.5.1"
@@ -24330,13 +24400,13 @@ in
sources."is-finite-1.0.2"
sources."number-is-nan-1.0.1"
sources."core-js-2.5.0"
- sources."regenerator-runtime-0.10.5"
sources."home-or-tmp-2.0.0"
sources."mkdirp-0.5.1"
- sources."source-map-support-0.4.15"
+ sources."source-map-support-0.4.16"
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."minimist-0.0.8"
+ sources."regenerator-runtime-0.11.0"
sources."globals-9.18.0"
sources."invariant-2.2.2"
sources."loose-envify-1.3.1"
@@ -24346,7 +24416,7 @@ in
sources."balanced-match-1.0.0"
sources."concat-map-0.0.1"
sources."babel-plugin-syntax-object-rest-spread-6.13.0"
- sources."babel-helper-builder-react-jsx-6.24.1"
+ sources."babel-helper-builder-react-jsx-6.26.0"
sources."babel-plugin-syntax-jsx-6.18.0"
sources."caller-callsite-2.0.0"
sources."callsites-2.0.0"
@@ -24451,7 +24521,7 @@ in
};
dependencies = [
sources."ajv-5.2.2"
- sources."babel-code-frame-6.22.0"
+ sources."babel-code-frame-6.26.0"
sources."chalk-1.1.3"
sources."concat-stream-1.6.0"
sources."cross-spawn-5.1.0"
@@ -24468,7 +24538,7 @@ in
sources."globals-9.18.0"
sources."ignore-3.3.3"
sources."imurmurhash-0.1.4"
- (sources."inquirer-3.2.1" // {
+ (sources."inquirer-3.2.2" // {
dependencies = [
sources."chalk-2.1.0"
sources."strip-ansi-4.0.0"
@@ -24617,7 +24687,7 @@ in
version = "5.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/eslint_d/-/eslint_d-5.1.0.tgz";
- sha1 = "937da79d43f4411c92837c8aec22cf307bc6a572";
+ sha512 = "3a69fni3gypbhmr458lzxnz7qpik5v7zsxhv4sfb85a7ygngibaxazv5z4i39zvcyivab5z8mnayn496z7v6m0r8j0zkfm39d6i5gwq";
};
dependencies = [
(sources."chalk-1.1.3" // {
@@ -24639,7 +24709,7 @@ in
sources."strip-ansi-3.0.1"
sources."ansi-regex-2.1.1"
sources."ajv-5.2.2"
- sources."babel-code-frame-6.22.0"
+ sources."babel-code-frame-6.26.0"
sources."concat-stream-1.6.0"
sources."cross-spawn-5.1.0"
sources."debug-2.6.8"
@@ -24655,7 +24725,7 @@ in
sources."globals-9.18.0"
sources."ignore-3.3.3"
sources."imurmurhash-0.1.4"
- (sources."inquirer-3.2.1" // {
+ (sources."inquirer-3.2.2" // {
dependencies = [
sources."chalk-2.1.0"
sources."strip-ansi-4.0.0"
@@ -24826,7 +24896,7 @@ in
sources."onetime-2.0.1"
];
})
- sources."phantomjs-prebuilt-2.1.14"
+ sources."phantomjs-prebuilt-2.1.15"
sources."promise-phantom-3.1.6"
sources."zen-observable-0.5.2"
sources."ansi-styles-2.2.1"
@@ -24886,16 +24956,16 @@ in
sources."log-symbols-1.0.2"
sources."mimic-fn-1.1.0"
sources."es6-promise-4.0.5"
- sources."extract-zip-1.5.0"
+ sources."extract-zip-1.6.5"
sources."fs-extra-1.0.0"
sources."hasha-2.2.0"
sources."kew-0.7.0"
sources."progress-1.1.8"
- sources."request-2.79.0"
+ sources."request-2.81.0"
sources."request-progress-2.0.1"
sources."which-1.2.14"
- sources."concat-stream-1.5.0"
- sources."debug-0.7.4"
+ sources."concat-stream-1.6.0"
+ sources."debug-2.2.0"
(sources."mkdirp-0.5.0" // {
dependencies = [
sources."minimist-0.0.8"
@@ -24904,12 +24974,14 @@ in
sources."yauzl-2.4.1"
sources."inherits-2.0.3"
sources."typedarray-0.0.6"
- sources."readable-stream-2.0.6"
+ sources."readable-stream-2.3.3"
sources."core-util-is-1.0.2"
sources."isarray-1.0.0"
sources."process-nextick-args-1.0.7"
- sources."string_decoder-0.10.31"
+ sources."safe-buffer-5.1.1"
+ sources."string_decoder-1.0.3"
sources."util-deprecate-1.0.2"
+ sources."ms-0.7.1"
sources."fd-slicer-1.0.1"
sources."pend-1.2.0"
sources."jsonfile-2.4.0"
@@ -24917,12 +24989,12 @@ in
sources."is-stream-1.1.0"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.1"
sources."forever-agent-0.6.1"
sources."form-data-2.1.4"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
@@ -24930,20 +25002,19 @@ in
sources."json-stringify-safe-5.0.1"
sources."mime-types-2.1.16"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.2"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.1.0"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."commander-2.11.0"
- sources."is-my-json-valid-2.16.0"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
+ sources."ajv-4.11.8"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
@@ -24985,15 +25056,9 @@ in
sources."punycode-1.4.1"
sources."throttleit-1.0.0"
sources."isexe-2.0.0"
- sources."co-4.6.0"
sources."mkpath-1.0.0"
- (sources."node-phantom-simple-2.2.4" // {
- dependencies = [
- sources."debug-2.6.8"
- ];
- })
+ sources."node-phantom-simple-2.2.4"
sources."tmp-0.0.31"
- sources."ms-2.0.0"
sources."os-tmpdir-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -25146,8 +25211,8 @@ in
sources."is-dotfile-1.0.3"
sources."is-equal-shallow-0.1.3"
sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.0.2"
- sources."binary-extensions-1.9.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."binary-extensions-1.10.0"
sources."graceful-fs-4.1.11"
sources."readable-stream-2.3.3"
sources."set-immediate-shim-1.0.1"
@@ -25398,7 +25463,7 @@ in
sources."asap-2.0.6"
];
})
- sources."xml2js-0.4.17"
+ sources."xml2js-0.4.18"
sources."msgpack-1.0.2"
sources."character-parser-1.2.1"
(sources."clean-css-3.4.28" // {
@@ -25464,8 +25529,7 @@ in
sources."pop-iterate-1.0.1"
sources."weak-map-1.0.5"
sources."sax-1.2.4"
- sources."xmlbuilder-4.2.1"
- sources."lodash-4.17.4"
+ sources."xmlbuilder-9.0.4"
sources."nan-2.6.2"
];
buildInputs = globalBuildInputs;
@@ -25613,7 +25677,7 @@ in
sources."repeat-string-1.6.1"
sources."is-buffer-1.1.5"
sources."is-posix-bracket-0.1.1"
- sources."remove-trailing-separator-1.0.2"
+ sources."remove-trailing-separator-1.1.0"
sources."for-own-0.1.5"
sources."is-extendable-0.1.1"
sources."for-in-1.0.2"
@@ -25921,13 +25985,13 @@ in
javascript-typescript-langserver = nodeEnv.buildNodePackage {
name = "javascript-typescript-langserver";
packageName = "javascript-typescript-langserver";
- version = "2.1.0";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.1.0.tgz";
- sha1 = "439c52c899e6f722276739dbb52b3211fc868caf";
+ url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.2.1.tgz";
+ sha1 = "26c2f378cad3ad94282f8dcf0f2b1b8ddc33c612";
};
dependencies = [
- sources."@reactivex/rxjs-5.4.2"
+ sources."@reactivex/rxjs-5.4.3"
sources."chai-4.1.1"
sources."chai-as-promised-7.1.1"
sources."chalk-2.1.0"
@@ -25935,6 +25999,11 @@ in
sources."fast-json-patch-2.0.4"
sources."glob-7.1.2"
sources."iterare-0.0.8"
+ (sources."jaeger-client-3.5.3" // {
+ dependencies = [
+ sources."opentracing-0.13.0"
+ ];
+ })
sources."lodash-4.17.4"
sources."mz-2.6.0"
sources."object-hash-1.1.8"
@@ -25973,6 +26042,15 @@ in
sources."brace-expansion-1.1.8"
sources."balanced-match-1.0.0"
sources."concat-map-0.0.1"
+ sources."node-int64-0.4.0"
+ sources."thriftrw-3.11.1"
+ sources."xorshift-0.2.1"
+ sources."bufrw-1.2.1"
+ sources."error-7.0.2"
+ sources."long-2.4.0"
+ sources."ansi-color-0.2.1"
+ sources."xtend-4.0.1"
+ sources."string-template-0.2.1"
sources."any-promise-1.3.0"
sources."object-assign-4.1.1"
sources."thenify-all-1.6.0"
@@ -25992,7 +26070,7 @@ in
version = "0.3.2";
src = fetchurl {
url = "https://registry.npmjs.org/jayschema/-/jayschema-0.3.2.tgz";
- sha1 = "7630ef74577274e95ad6d386ddfa091fcee8df4b";
+ sha512 = "0v4070gii05w3qhq7bnl5jp358f3dibvjml3vnmphqhgdn2g9i94a2mrvmcyrhpa7k9f3gp63p6vgpmhihja5b3is5xc8mv4vdy8wjh";
};
dependencies = [
sources."when-3.4.6"
@@ -26081,7 +26159,7 @@ in
};
dependencies = [
sources."config-chain-1.1.11"
- sources."editorconfig-0.13.2"
+ sources."editorconfig-0.13.3"
sources."mkdirp-0.5.1"
sources."nopt-3.0.6"
sources."proto-list-1.2.4"
@@ -26089,6 +26167,7 @@ in
sources."bluebird-3.5.0"
sources."commander-2.11.0"
sources."lru-cache-3.2.0"
+ sources."semver-5.4.1"
sources."sigmund-1.0.1"
sources."pseudomap-1.0.2"
sources."minimist-0.0.8"
@@ -26201,7 +26280,7 @@ in
version = "0.12.0";
src = fetchurl {
url = "https://registry.npmjs.org/json-server/-/json-server-0.12.0.tgz";
- sha1 = "e8764bcb2fccbbe2a0c3bc406ea1ef04e9007308";
+ sha512 = "2iqk65hy94j010zlqsl4rzfkz4f9ic1pqbvsf5w1lrgmda9wmhxl5kmvnmwikjilmn6kz9kniqzl7rpq3xv3cmpx8rppb7ipk5ddhzj";
};
dependencies = [
sources."body-parser-1.17.2"
@@ -26504,7 +26583,7 @@ in
version = "3.9.1";
src = fetchurl {
url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.1.tgz";
- sha1 = "08775cebdfdd359209f0d2acd383c8f86a6904a0";
+ sha512 = "31wxw267vdf4nnjpksnzcb4i603366sjrw7g08bkxi3cwlrfl67458v7rvj72vbxcycq43z4ldkrfvqjrsvrjqrb2kfzmabpzghddq9";
};
dependencies = [
sources."argparse-1.0.9"
@@ -26651,8 +26730,8 @@ in
sources."is-dotfile-1.0.3"
sources."is-equal-shallow-0.1.3"
sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.0.2"
- sources."binary-extensions-1.9.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."binary-extensions-1.10.0"
sources."readable-stream-2.3.3"
sources."set-immediate-shim-1.0.1"
sources."core-util-is-1.0.2"
@@ -26875,14 +26954,14 @@ in
};
dependencies = [
sources."express-3.21.2"
- (sources."passport-0.3.2" // {
+ (sources."passport-0.4.0" // {
dependencies = [
sources."pause-0.0.1"
];
})
sources."passport-google-oauth-1.0.0"
sources."connect-restreamer-1.0.3"
- sources."xml2js-0.4.17"
+ sources."xml2js-0.4.18"
sources."basic-auth-1.0.4"
sources."connect-2.30.2"
sources."content-disposition-0.5.0"
@@ -27012,8 +27091,7 @@ in
sources."passport-oauth2-1.4.0"
sources."uid2-0.0.3"
sources."sax-1.2.4"
- sources."xmlbuilder-4.2.1"
- sources."lodash-4.17.4"
+ sources."xmlbuilder-9.0.4"
];
buildInputs = globalBuildInputs;
meta = {
@@ -27050,7 +27128,7 @@ in
sources."glob-7.1.2"
sources."globby-6.1.0"
sources."graceful-fs-4.1.11"
- (sources."inquirer-3.2.1" // {
+ (sources."inquirer-3.2.2" // {
dependencies = [
sources."chalk-2.1.0"
sources."strip-ansi-4.0.0"
@@ -27486,7 +27564,7 @@ in
sources."repeat-string-1.6.1"
sources."is-buffer-1.1.5"
sources."is-posix-bracket-0.1.1"
- sources."remove-trailing-separator-1.0.2"
+ sources."remove-trailing-separator-1.1.0"
sources."for-own-0.1.5"
sources."is-extendable-0.1.1"
sources."for-in-1.0.2"
@@ -27558,7 +27636,7 @@ in
version = "3.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/mocha/-/mocha-3.5.0.tgz";
- sha1 = "1328567d2717f997030f8006234bce9b8cd72465";
+ sha512 = "0ygdqmd1pxvdrgyympyhfy8cg90632jkggbv7l7irnzl0gaxdmyrrs9bf634046q8xq41bfxysabapgwdy8ssd58vc8nggbk0y3d1d4";
};
dependencies = [
sources."browser-stdout-1.3.0"
@@ -27626,47 +27704,42 @@ in
node2nix = nodeEnv.buildNodePackage {
name = "node2nix";
packageName = "node2nix";
- version = "1.2.0";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node2nix/-/node2nix-1.2.0.tgz";
- sha1 = "3c0a578ffebc231a14f0c0e9078b8063ff776408";
+ url = "https://registry.npmjs.org/node2nix/-/node2nix-1.3.0.tgz";
+ sha1 = "e830a3bc5880dd22ae47be71a147f776542850cc";
};
dependencies = [
sources."optparse-1.0.5"
- sources."semver-5.3.0"
- sources."npm-registry-client-7.1.2"
- (sources."npmconf-2.0.9" // {
+ sources."semver-5.4.1"
+ sources."npm-registry-client-8.4.0"
+ (sources."npmconf-2.1.2" // {
dependencies = [
sources."once-1.3.3"
sources."semver-4.3.6"
];
})
- sources."tar-1.0.3"
- (sources."temp-0.8.3" // {
- dependencies = [
- sources."rimraf-2.2.8"
- ];
- })
- (sources."fs.extra-1.2.1" // {
+ sources."tar-3.1.15"
+ sources."temp-0.8.3"
+ (sources."fs.extra-1.3.2" // {
dependencies = [
sources."mkdirp-0.3.5"
];
})
sources."findit-2.0.0"
+ sources."base64-js-1.2.1"
sources."slasp-0.0.4"
sources."nijs-0.0.23"
- sources."chownr-1.0.1"
sources."concat-stream-1.6.0"
sources."graceful-fs-4.1.11"
- sources."mkdirp-0.5.1"
sources."normalize-package-data-2.4.0"
- sources."npm-package-arg-4.2.1"
+ sources."npm-package-arg-5.1.2"
sources."once-1.4.0"
sources."request-2.81.0"
- sources."retry-0.8.0"
- sources."rimraf-2.6.1"
+ sources."retry-0.10.1"
sources."slide-1.1.6"
- sources."npmlog-3.1.2"
+ sources."ssri-4.1.6"
+ sources."npmlog-4.1.2"
sources."inherits-2.0.3"
sources."typedarray-0.0.6"
sources."readable-stream-2.3.3"
@@ -27676,7 +27749,6 @@ in
sources."safe-buffer-5.1.1"
sources."string_decoder-1.0.3"
sources."util-deprecate-1.0.2"
- sources."minimist-0.0.8"
sources."hosted-git-info-2.5.0"
sources."is-builtin-module-1.0.0"
sources."validate-npm-package-license-3.0.1"
@@ -27684,6 +27756,11 @@ in
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
+ sources."osenv-0.1.4"
+ sources."validate-npm-package-name-3.0.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."builtins-1.0.3"
sources."wrappy-1.0.2"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
@@ -27752,21 +27829,12 @@ in
sources."bcrypt-pbkdf-1.0.1"
sources."mime-db-1.29.0"
sources."punycode-1.4.1"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
sources."are-we-there-yet-1.1.4"
sources."console-control-strings-1.1.0"
- sources."gauge-2.6.0"
+ sources."gauge-2.7.4"
sources."set-blocking-2.0.0"
sources."delegates-1.0.0"
sources."aproba-1.1.2"
- sources."has-color-0.1.7"
sources."has-unicode-2.0.1"
sources."object-assign-4.1.1"
sources."signal-exit-3.0.2"
@@ -27779,26 +27847,25 @@ in
sources."ansi-regex-2.1.1"
sources."config-chain-1.1.11"
sources."ini-1.3.4"
+ sources."mkdirp-0.5.1"
sources."nopt-3.0.6"
- sources."osenv-0.1.4"
sources."uid-number-0.0.5"
sources."proto-list-1.2.4"
+ sources."minimist-0.0.8"
sources."abbrev-1.1.0"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."block-stream-0.0.9"
- sources."fstream-1.0.11"
+ sources."minipass-2.2.1"
+ sources."minizlib-1.0.3"
+ sources."yallist-3.0.2"
+ sources."rimraf-2.2.8"
(sources."fs-extra-0.6.4" // {
dependencies = [
sources."mkdirp-0.3.5"
- sources."rimraf-2.2.8"
];
})
- sources."walk-2.2.1"
+ sources."walk-2.3.9"
sources."ncp-0.4.2"
sources."jsonfile-1.0.1"
- sources."forEachAsync-2.2.1"
- sources."sequence-2.2.1"
+ sources."foreachasync-3.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -28452,8 +28519,8 @@ in
sources."is-dotfile-1.0.3"
sources."is-equal-shallow-0.1.3"
sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.0.2"
- sources."binary-extensions-1.9.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."binary-extensions-1.10.0"
sources."graceful-fs-4.1.11"
sources."readable-stream-2.3.3"
sources."set-immediate-shim-1.0.1"
@@ -28845,7 +28912,7 @@ in
sources."is-negated-glob-1.0.0"
sources."ordered-read-streams-1.0.1"
sources."pumpify-1.3.5"
- sources."remove-trailing-separator-1.0.2"
+ sources."remove-trailing-separator-1.1.0"
sources."to-absolute-glob-2.0.1"
sources."unique-stream-2.2.1"
sources."fs.realpath-1.0.0"
@@ -29232,7 +29299,7 @@ in
version = "5.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/npm/-/npm-5.3.0.tgz";
- sha1 = "e2ae85ef09d53f7f570a05578692899bf7879f17";
+ sha512 = "29izly6jqqdaslak9xz3i3bsr7qgg5vjcbzf55as0hh630z4aml48n5a7dz6skqn34d02fg3bk2zwkq7n67z787wn14vr3na9chx6v4";
};
dependencies = [
sources."JSONStream-1.3.1"
@@ -29304,7 +29371,7 @@ in
sources."read-1.0.7"
sources."read-cmd-shim-1.0.1"
sources."read-installed-4.0.3"
- sources."read-package-json-2.0.10"
+ sources."read-package-json-2.0.11"
sources."read-package-tree-5.1.6"
sources."readable-stream-2.3.3"
sources."request-2.81.0"
@@ -29479,7 +29546,7 @@ in
sources."http-cache-semantics-3.7.3"
sources."http-proxy-agent-2.0.0"
sources."https-proxy-agent-2.1.0"
- sources."node-fetch-npm-2.0.1"
+ sources."node-fetch-npm-2.0.2"
sources."socks-proxy-agent-3.0.0"
sources."humanize-ms-1.2.1"
sources."ms-2.0.0"
@@ -29488,9 +29555,8 @@ in
sources."es6-promisify-5.0.0"
sources."es6-promise-4.1.1"
sources."encoding-0.1.12"
- sources."json-parse-helpfulerror-1.0.3"
+ sources."json-parse-better-errors-1.0.1"
sources."iconv-lite-0.4.18"
- sources."jju-1.3.0"
sources."socks-1.1.10"
sources."ip-1.1.5"
sources."smart-buffer-1.1.15"
@@ -29847,7 +29913,7 @@ in
version = "2.12.1";
src = fetchurl {
url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-2.12.1.tgz";
- sha1 = "9a41006f5186e8a59da7fd2b466fee9e896d865d";
+ sha512 = "2p62mjf7a9bjycq3x1jbp3vsvn8ww3ccrfx96syp7p19bzgg58q80didz4ygwn8cf1xxiyqhr3v3mwi7v9v90gnb8lsas4yz62z55ac";
};
dependencies = [
sources."bluebird-3.5.0"
@@ -29874,7 +29940,7 @@ in
sources."require-dir-0.3.2"
sources."semver-5.4.1"
sources."semver-utils-1.1.1"
- (sources."snyk-1.38.1" // {
+ (sources."snyk-1.38.3" // {
dependencies = [
sources."update-notifier-0.5.0"
sources."latest-version-1.0.1"
@@ -29987,7 +30053,7 @@ in
sources."read-1.0.7"
sources."read-cmd-shim-1.0.1"
sources."read-installed-4.0.3"
- sources."read-package-json-2.0.10"
+ sources."read-package-json-2.0.11"
sources."read-package-tree-5.1.6"
(sources."readable-stream-2.1.5" // {
dependencies = [
@@ -30060,7 +30126,7 @@ in
sources."es6-symbol-3.1.1"
sources."ms-2.0.0"
sources."d-1.0.0"
- sources."es5-ext-0.10.26"
+ sources."es5-ext-0.10.27"
sources."es6-iterator-2.0.1"
sources."is-builtin-module-1.0.0"
sources."builtin-modules-1.1.1"
@@ -30080,6 +30146,7 @@ in
sources."os-tmpdir-1.0.2"
sources."mute-stream-0.0.7"
sources."util-extend-1.0.3"
+ sources."json-parse-better-errors-1.0.1"
sources."buffer-shims-1.0.0"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
@@ -30180,7 +30247,7 @@ in
sources."snyk-module-1.8.1"
sources."snyk-mvn-plugin-1.0.0"
sources."snyk-policy-1.7.1"
- sources."snyk-python-plugin-1.2.2"
+ sources."snyk-python-plugin-1.2.3"
(sources."snyk-recursive-readdir-2.0.0" // {
dependencies = [
sources."minimatch-3.0.2"
@@ -30759,7 +30826,7 @@ in
version = "0.37.0";
src = fetchurl {
url = "https://registry.npmjs.org/peerflix/-/peerflix-0.37.0.tgz";
- sha1 = "535019f8dcbae8932bd38b28533bf61c0f979048";
+ sha512 = "0i2j5pgw72bkg5s5crh3p534sz6m6yvbyg174kkgyj1l0sgaqmzj22xmh0dvxqk7r3rp79w2vs27gdqzb8azmlr6ag13m17h20cyhhf";
};
dependencies = [
sources."airplayer-2.0.0"
@@ -30851,7 +30918,7 @@ in
sources."dns-txt-2.0.2"
sources."multicast-dns-6.1.1"
sources."multicast-dns-service-types-1.1.0"
- sources."dns-packet-1.1.1"
+ sources."dns-packet-1.2.2"
sources."thunky-0.1.0"
sources."ip-1.1.5"
sources."meow-3.7.0"
@@ -31758,7 +31825,7 @@ in
version = "5.4.1";
src = fetchurl {
url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz";
- sha1 = "e059c09d8571f0540823733433505d3a2f00b18e";
+ sha512 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar";
};
buildInputs = globalBuildInputs;
meta = {
@@ -32339,7 +32406,7 @@ in
version = "3.0.27";
src = fetchurl {
url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.0.27.tgz";
- sha1 = "a97db8c8ba6b9dba4e2f88d86aa9548fa6320034";
+ sha512 = "111q9l8r0c6pfhpdpx4wi99f71n1ykfdc2h73ycdy0q1cnk78qvw837j0994nf337bm1irdj1mgzhrillmplw4vpyv8wl6p2fdh4gqw";
};
dependencies = [
sources."commander-2.11.0"
@@ -32456,7 +32523,7 @@ in
sources."os-homedir-1.0.2"
sources."passport-0.3.2"
sources."passport-local-1.0.0"
- (sources."raven-2.1.1" // {
+ (sources."raven-2.1.2" // {
dependencies = [
sources."json-stringify-safe-5.0.1"
sources."stack-trace-0.0.9"
@@ -32728,7 +32795,7 @@ in
sources."read-1.0.7"
sources."read-cmd-shim-1.0.1"
sources."read-installed-4.0.3"
- sources."read-package-json-2.0.10"
+ sources."read-package-json-2.0.11"
sources."read-package-tree-5.1.6"
sources."realize-package-specifier-3.0.3"
sources."retry-0.10.1"
@@ -32869,8 +32936,7 @@ in
sources."os-tmpdir-1.0.2"
sources."mute-stream-0.0.7"
sources."util-extend-1.0.3"
- sources."json-parse-helpfulerror-1.0.3"
- sources."jju-1.3.0"
+ sources."json-parse-better-errors-1.0.1"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
sources."caseless-0.12.0"
@@ -33127,7 +33193,7 @@ in
sources."kew-0.7.0"
];
})
- sources."tmp-0.0.31"
+ sources."tmp-0.0.33"
sources."follow-redirects-0.0.3"
(sources."config-chain-1.1.11" // {
dependencies = [
@@ -33273,10 +33339,10 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "3.5.2";
+ version = "3.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-3.5.2.tgz";
- sha1 = "a9601066e23af3c80f3bf9758fd794ca9778f251";
+ url = "https://registry.npmjs.org/webpack/-/webpack-3.5.5.tgz";
+ sha512 = "079rx5l3h8prapxbrdddakxp5s7cbcmzy2hlmzvydmn7c4cpnlba7cprhxqazzs26iv63hm8lrc3crrwk6lx3davvwv4y0vfbi33rd9";
};
dependencies = [
sources."acorn-5.1.1"
@@ -33335,7 +33401,7 @@ in
sources."esrecurse-4.2.0"
sources."estraverse-4.2.0"
sources."d-1.0.0"
- sources."es5-ext-0.10.26"
+ sources."es5-ext-0.10.27"
sources."es6-iterator-2.0.1"
sources."es6-set-0.1.5"
sources."es6-symbol-3.1.1"
@@ -33369,7 +33435,7 @@ in
sources."querystring-es3-0.2.1"
sources."stream-browserify-2.0.1"
sources."stream-http-2.7.2"
- sources."timers-browserify-2.0.3"
+ sources."timers-browserify-2.0.4"
sources."tty-browserify-0.0.0"
(sources."url-0.11.0" // {
dependencies = [
@@ -33418,14 +33484,7 @@ in
sources."builtin-status-codes-3.0.0"
sources."to-arraybuffer-1.0.1"
sources."xtend-4.0.1"
- (sources."global-4.3.2" // {
- dependencies = [
- sources."process-0.5.2"
- ];
- })
sources."setimmediate-1.0.5"
- sources."min-document-2.19.0"
- sources."dom-walk-0.1.1"
sources."querystring-0.2.0"
sources."indexof-0.0.1"
sources."has-flag-2.0.0"
@@ -33494,8 +33553,8 @@ in
sources."is-dotfile-1.0.3"
sources."is-equal-shallow-0.1.3"
sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.0.2"
- sources."binary-extensions-1.9.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."binary-extensions-1.10.0"
sources."minimatch-3.0.4"
sources."set-immediate-shim-1.0.1"
sources."brace-expansion-1.1.8"
@@ -33702,7 +33761,7 @@ in
sha1 = "06fe67d8040802993f9f1e1923d671cbf9ead5d1";
};
dependencies = [
- sources."babel-runtime-6.25.0"
+ sources."babel-runtime-6.26.0"
sources."bytes-2.5.0"
sources."camelcase-4.1.0"
sources."chalk-1.1.3"
@@ -33714,7 +33773,7 @@ in
sources."glob-7.1.2"
sources."gunzip-maybe-1.4.1"
sources."ini-1.3.4"
- (sources."inquirer-3.2.1" // {
+ (sources."inquirer-3.2.2" // {
dependencies = [
sources."chalk-2.1.0"
sources."strip-ansi-4.0.0"
@@ -33745,7 +33804,7 @@ in
sources."v8-compile-cache-1.1.0"
sources."validate-npm-package-license-3.0.1"
sources."core-js-2.5.0"
- sources."regenerator-runtime-0.10.5"
+ sources."regenerator-runtime-0.11.0"
sources."ansi-styles-2.2.1"
sources."escape-string-regexp-1.0.5"
sources."has-ansi-2.0.0"
@@ -33852,7 +33911,7 @@ in
sources."repeat-string-1.6.1"
sources."is-buffer-1.1.5"
sources."is-posix-bracket-0.1.1"
- sources."remove-trailing-separator-1.0.2"
+ sources."remove-trailing-separator-1.1.0"
sources."for-own-0.1.5"
sources."is-extendable-0.1.1"
sources."for-in-1.0.2"
@@ -33950,7 +34009,7 @@ in
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/yo/-/yo-2.0.0.tgz";
- sha1 = "0cd75211379ed87105f99510885759062147b517";
+ sha512 = "3maxk0a2p7xyz9bkfyx3jd0inm9y7a3wc8b7rqx8p5fsmx8qkqnbvhxwn4210l689vd5p3xphn147dyclqsqmmgp7cqyswyyfsmm1lr";
};
dependencies = [
sources."async-2.5.0"
@@ -33962,7 +34021,7 @@ in
sources."fullname-3.3.0"
sources."got-6.7.1"
sources."humanize-string-1.0.1"
- (sources."inquirer-3.2.1" // {
+ (sources."inquirer-3.2.2" // {
dependencies = [
sources."chalk-2.1.0"
sources."strip-ansi-4.0.0"
diff --git a/pkgs/development/ocaml-modules/ocamlnet/default.nix b/pkgs/development/ocaml-modules/ocamlnet/default.nix
index 7e0cad538d5..51a30d7c91a 100644
--- a/pkgs/development/ocaml-modules/ocamlnet/default.nix
+++ b/pkgs/development/ocaml-modules/ocamlnet/default.nix
@@ -1,23 +1,14 @@
{ stdenv, fetchurl, pkgconfig, ncurses, ocaml, findlib, ocaml_pcre, camlzip
, gnutls, nettle }:
-let param =
- if stdenv.lib.versionAtLeast ocaml.version "4.03"
- then {
- version = "4.1.3";
- sha256 = "1ifm3izml9hnr7cic1413spnd8x8ka795awsm2xpam3cs8z3j0ca";
- } else {
- version = "4.1.2";
- sha256 = "1n0l9zlq7dc5yr43bpa4a0b6bxj3iyjkadbb41g59zlwa8hkk34i";
- };
-in
+let version = "4.1.4"; in
stdenv.mkDerivation {
- name = "ocaml${ocaml.version}-ocamlnet-${param.version}";
+ name = "ocaml${ocaml.version}-ocamlnet-${version}";
src = fetchurl {
- url = "http://download.camlcity.org/download/ocamlnet-${param.version}.tar.gz";
- inherit (param) sha256;
+ url = "http://download.camlcity.org/download/ocamlnet-${version}.tar.gz";
+ sha256 = "0hhi3s4xas5i3p7214qfji5pvr7d30d89vnmkznxsfqj4v7dmhs6";
};
buildInputs = [ ncurses ocaml findlib ocaml_pcre camlzip gnutls pkgconfig nettle ];
diff --git a/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix b/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix
index 5cd197b9d3f..a136e61e554 100644
--- a/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix
+++ b/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix
@@ -1,11 +1,11 @@
{ fetchurl, buildPerlPackage, zlib, stdenv }:
buildPerlPackage rec {
- name = "Compress-Raw-Zlib-2.071";
+ name = "Compress-Raw-Zlib-2.074";
src = fetchurl {
url = "mirror://cpan/authors/id/P/PM/PMQS/${name}.tar.gz";
- sha256 = "0dk7pcmhnl7n811q3p4rrz5ijdhz6jx367h6rypgvg1y39z4arfs";
+ sha256 = "08bpx9v6i40n54rdcj6invlj294z20amrl8wvwf9b83aldwdwsd3";
};
preConfigure = ''
@@ -18,9 +18,7 @@ buildPerlPackage rec {
EOF
'';
- # Try untested for now. Upstream bug:
- # https://rt.cpan.org/Public/Bug/Display.html?id=119762
- doCheck = false && !stdenv.isDarwin;
+ doCheck = !stdenv.isDarwin;
meta = {
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
diff --git a/pkgs/development/python-modules/buildout-nix/default.nix b/pkgs/development/python-modules/buildout-nix/default.nix
index 9ff8df02ac9..fcb46f4bac1 100644
--- a/pkgs/development/python-modules/buildout-nix/default.nix
+++ b/pkgs/development/python-modules/buildout-nix/default.nix
@@ -1,11 +1,13 @@
{ fetchurl, stdenv, buildPythonPackage }:
-buildPythonPackage {
- name = "zc.buildout-nix-2.5.3";
+buildPythonPackage rec {
+ pname = "zc.buildout";
+ version = "2.9.4";
+ name = "${pname}-nix-${version}";
src = fetchurl {
- url = "https://pypi.python.org/packages/e4/7b/63863f09bec5f5d7b9474209a6d4d3fc1e0bca02ecfb4c17f0cdd7b554b6/zc.buildout-2.5.3.tar.gz";
- sha256 = "3e5f3afcc64416604c5efc554c2fa0901b60657e012a710c320e2eb510efcfb9";
+ url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${pname}-${version}.tar.gz";
+ sha256 = "df56cc55735e984510986c633090ad0d64f59d7e42d1aac57ecf04ab183d1053";
};
patches = [ ./nix.patch ];
diff --git a/pkgs/development/python-modules/buildout-nix/nix.patch b/pkgs/development/python-modules/buildout-nix/nix.patch
index f358544d36a..49f3c6d90f0 100644
--- a/pkgs/development/python-modules/buildout-nix/nix.patch
+++ b/pkgs/development/python-modules/buildout-nix/nix.patch
@@ -1,6 +1,19 @@
---- a/src/zc/buildout/easy_install.py 2013-08-27 22:28:40.233718116 +0200
-+++ b/src/zc/buildout/easy_install.py 2013-10-07 00:29:31.077413935 +0200
-@@ -227,6 +227,12 @@
+--- a/src/zc/buildout/buildout.py 2017-08-18 10:06:24.946428977 +0300
++++ b/src/zc/buildout/buildout.py 2017-08-18 10:08:49.115613364 +0300
+@@ -382,6 +382,10 @@
+ if k not in versions
+ ))
+
++ # Override versions with available (nix) system packages
++ for dist in pkg_resources.working_set:
++ versions[dist.project_name] = SectionKey(dist.version, dist.location)
++
+ # Absolutize some particular directory, handling also the ~/foo form,
+ # and considering the location of the configuration file that generated
+ # the setting as the base path, falling back to the main configuration
+--- a/src/zc/buildout/easy_install.py 2017-08-18 10:06:24.948428980 +0300
++++ b/src/zc/buildout/easy_install.py 2017-08-18 10:07:37.462521740 +0300
+@@ -321,6 +321,12 @@
def _satisfied(self, req, source=None):
dists = [dist for dist in self._env[req.project_name] if dist in req]
diff --git a/pkgs/development/python-modules/easydict/default.nix b/pkgs/development/python-modules/easydict/default.nix
new file mode 100644
index 00000000000..12e0f6934d9
--- /dev/null
+++ b/pkgs/development/python-modules/easydict/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchPypi, buildPythonPackage }:
+
+buildPythonPackage rec {
+ name = "${pname}-${version}";
+ pname = "easydict";
+ version = "1.7";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1xpnwjdw4x5kficjgcajqcal6bxcb0ax8l6hdkww9fp6lrh28x8v";
+ };
+
+ docheck = false; # No tests in archive
+
+ meta = {
+ homepage = https://github.com/makinacorpus/easydict;
+ license = with stdenv.lib; licenses.lgpl3;
+ description = "Access dict values as attributes (works recursively)";
+ };
+}
diff --git a/pkgs/development/tools/analysis/radare2/default.nix b/pkgs/development/tools/analysis/radare2/default.nix
index 0d4b55bb472..1572fff40b9 100644
--- a/pkgs/development/tools/analysis/radare2/default.nix
+++ b/pkgs/development/tools/analysis/radare2/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, pkgconfig, libusb, readline, libewf, perl, zlib, openssl,
+{stdenv, fetchFromGitHub, fetchurl, pkgconfig, libusb, readline, libewf, perl, zlib, openssl,
gtk2 ? null, vte ? null, gtkdialog ? null,
python ? null,
ruby ? null,
@@ -10,17 +10,35 @@ assert rubyBindings -> ruby != null;
assert pythonBindings -> python != null;
let
- optional = stdenv.lib.optional;
+ inherit (stdenv.lib) optional;
in
stdenv.mkDerivation rec {
- version = "1.4.0";
+ version = "1.6.0";
name = "radare2-${version}";
- src = fetchurl {
- url = "http://cloud.radare.org/get/${version}/${name}.tar.gz";
- sha256 = "bf6e9ad94fd5828d3936563b8b13218433fbf44231cacfdf37a7312ae2b3e93e";
+ src = fetchFromGitHub {
+ owner = "radare";
+ repo = "radare2";
+ rev = version;
+ sha256 = "0kb7y0b5kw2p1kxpzjgc8pnwdkqyzkijzp5d2a9zs2ira96668zd";
};
+ postPatch = let
+ cs_ver = "3.0.4"; # version from $sourceRoot/shlr/Makefile
+ capstone = fetchurl {
+ url = "https://github.com/aquynh/capstone/archive/${cs_ver}.tar.gz";
+ sha256 = "1whl5c8j6vqvz2j6ay2pyszx0jg8d3x8hq66cvgghmjchvsssvax";
+ };
+ in ''
+ if ! grep -F "CS_VER=${cs_ver}" shlr/Makefile; then echo "CS_VER mismatch"; exit 1; fi
+ substituteInPlace shlr/Makefile --replace CS_RELEASE=0 CS_RELEASE=1
+ cp ${capstone} shlr/capstone-${cs_ver}.tar.gz
+
+ # make compiler happy (fixed in upstream 2017-08-11)
+ substituteInPlace libr/asm/arch/hexagon/gnu/hexagon-dis.c --replace \
+ '(*info->fprintf_func) (info->stream, errmsg);' \
+ '(*info->fprintf_func) (info->stream, "%s", errmsg);'
+ '';
buildInputs = [pkgconfig readline libusb libewf perl zlib openssl]
++ optional useX11 [gtkdialog vte gtk2]
@@ -28,6 +46,13 @@ stdenv.mkDerivation rec {
++ optional pythonBindings [python]
++ optional luaBindings [lua];
+ postInstall = ''
+ # replace symlinks pointing into the build directory with the files they point to
+ rm $out/bin/{r2-docker,r2-indent}
+ cp sys/r2-docker.sh $out/bin/r2-docker
+ cp sys/indent.sh $out/bin/r2-indent
+ '';
+
meta = {
description = "unix-like reverse engineering framework and commandline tools";
homepage = http://radare.org/;
diff --git a/pkgs/development/tools/build-managers/gradle/2.5.nix b/pkgs/development/tools/build-managers/gradle/2.5.nix
deleted file mode 100644
index b140a07609e..00000000000
--- a/pkgs/development/tools/build-managers/gradle/2.5.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ stdenv, fetchurl, unzip, jdk, makeWrapper }:
-
-stdenv.mkDerivation rec {
- name = "gradle-2.5";
-
- src = fetchurl {
- url = "http://services.gradle.org/distributions/${name}-bin.zip";
- sha256 = "0mc5lf6phkncx77r0papzmfvyiqm0y26x50ipvmzkcsbn463x59z";
- };
-
- installPhase = ''
- mkdir -pv $out/gradle
- cp -rv lib $out/gradle
-
- gradle_launcher_jar=$(echo $out/gradle/lib/gradle-launcher-*.jar)
- test -f $gradle_launcher_jar
- makeWrapper ${jdk}/bin/java $out/bin/gradle \
- --set JAVA_HOME ${jdk} \
- --add-flags "-classpath $gradle_launcher_jar org.gradle.launcher.GradleMain"
- '';
-
- phases = "unpackPhase installPhase";
-
- buildInputs = [ unzip jdk makeWrapper ];
-
- meta = {
- description = "Enterprise-grade build system";
- longDescription = ''
- Gradle is a build system which offers you ease, power and freedom.
- You can choose the balance for yourself. It has powerful multi-project
- build support. It has a layer on top of Ivy that provides a
- build-by-convention integration for Ivy. It gives you always the choice
- between the flexibility of Ant and the convenience of a
- build-by-convention behavior.
- '';
- homepage = http://www.gradle.org/;
- license = stdenv.lib.licenses.asl20;
- };
-}
diff --git a/pkgs/development/tools/godot/default.nix b/pkgs/development/tools/godot/default.nix
index 62bf6557f68..d9171ca09f2 100644
--- a/pkgs/development/tools/godot/default.nix
+++ b/pkgs/development/tools/godot/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- homepage = "http://godotengine.org";
+ homepage = "https://godotengine.org";
description = "Free and Open Source 2D and 3D game engine";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux;
diff --git a/pkgs/development/tools/selenium/chromedriver/default.nix b/pkgs/development/tools/selenium/chromedriver/default.nix
index bdf71f7d218..b349b389997 100644
--- a/pkgs/development/tools/selenium/chromedriver/default.nix
+++ b/pkgs/development/tools/selenium/chromedriver/default.nix
@@ -6,17 +6,17 @@ let
allSpecs = {
"i686-linux" = {
system = "linux32";
- sha256 = "70845d81304c5f5f0b7f65274216e613e867e621676a09790c8aa8ef81ea9766";
+ sha256 = "1qi49rcm7r4b8yqx4akmirilp4ifip89n7inji0pihdqzaw604d4";
};
"x86_64-linux" = {
system = "linux64";
- sha256 = "bb2cf08f2c213f061d6fbca9658fc44a367c1ba7e40b3ee1e3ae437be0f901c2";
+ sha256 = "1845nh7kj8scgn85yqwp4nsx7fabcb09w23jp8xa1cxyfvv2wdry";
};
"x86_64-darwin" = {
system = "mac64";
- sha256 = "6c30bba7693ec2d9af7cd9a54729e10aeae85c0953c816d9c4a40a1a72fd8be0";
+ sha256 = "0zyv8i4dbzyk58g4hr5143akgsfaaq9659bwj1m41jwi965grcxa";
};
};
@@ -25,7 +25,7 @@ let
in
stdenv.mkDerivation rec {
name = "chromedriver-${version}";
- version = "2.29";
+ version = "2.31";
src = fetchurl {
url = "http://chromedriver.storage.googleapis.com/${version}/chromedriver_${spec.system}.zip";
diff --git a/pkgs/misc/themes/albatross/default.nix b/pkgs/misc/themes/albatross/default.nix
index 965ee82a826..14fe0f21d80 100644
--- a/pkgs/misc/themes/albatross/default.nix
+++ b/pkgs/misc/themes/albatross/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = {
description = "A desktop Suite for Xfce";
- homepage = http://shimmerproject.org/our-projects/albatross/;
+ homepage = https://github.com/shimmerproject/Albatross;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
};
diff --git a/pkgs/misc/themes/paper/default.nix b/pkgs/misc/themes/paper/default.nix
index 3a337520d93..8bcb48812a3 100644
--- a/pkgs/misc/themes/paper/default.nix
+++ b/pkgs/misc/themes/paper/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth";
- homepage = http://snwh.org/paper;
+ homepage = https://snwh.org/paper;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.simonvandel maintainers.romildo ];
diff --git a/pkgs/misc/vscode-extensions/default.nix b/pkgs/misc/vscode-extensions/default.nix
new file mode 100644
index 00000000000..12900907c00
--- /dev/null
+++ b/pkgs/misc/vscode-extensions/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, lib, fetchurl, vscode-utils }:
+
+let
+ inherit (vscode-utils) buildVscodeExtension buildVscodeMarketplaceExtension;
+in
+
+rec {
+ nix = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "nix";
+ publisher = "bbenoist";
+ version = "1.0.1";
+ sha256 = "0zd0n9f5z1f0ckzfjr38xw2zzmcxg1gjrava7yahg5cvdcw6l35b";
+ };
+
+ # TODO: Fill meta with appropriate information.
+ };
+}
\ No newline at end of file
diff --git a/pkgs/misc/vscode-extensions/vscode-utils.nix b/pkgs/misc/vscode-extensions/vscode-utils.nix
new file mode 100644
index 00000000000..759449a745b
--- /dev/null
+++ b/pkgs/misc/vscode-extensions/vscode-utils.nix
@@ -0,0 +1,92 @@
+{ stdenv, lib, fetchurl, runCommand, vscode, which }:
+
+let
+ extendedPkgVersion = lib.getVersion vscode;
+ extendedPkgName = lib.removeSuffix "-${extendedPkgVersion}" vscode.name;
+
+ mktplcExtRefToFetchArgs = ext: {
+ url = "https://${ext.publisher}.gallery.vsassets.io/_apis/public/gallery/publisher/${ext.publisher}/extension/${ext.name}/${ext.version}/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage";
+ sha256 = ext.sha256;
+ name = "${ext.name}.vsix";
+ };
+
+ buildVscodeExtension = a@{
+ name,
+ namePrefix ? "${extendedPkgName}-extension-",
+ src,
+ configurePhase ? ":",
+ buildPhase ? ":",
+ dontPatchELF ? true,
+ dontStrip ? true,
+ buildInputs ? [],
+ ...
+ }:
+ stdenv.mkDerivation (a // {
+
+ name = namePrefix + name;
+
+ inherit configurePhase buildPhase dontPatchELF dontStrip;
+
+ # TODO: `which` is an encapsulation leak. It should have been hardwired
+ # as part of the `code` wrapper.
+ buildInputs = [ vscode which ] ++ buildInputs;
+
+ unpackPhase = ''
+ # TODO: Unfortunately, 'code' systematically creates its '.vscode' directory
+ # even tough it has nothing to write in it. We need to redirect this
+ # to a writeable location as the nix environment already has (but
+ # to a non writeable one) otherwise the write will fail.
+ # It would be preferrable if we could intercept / fix this at the source.
+ HOME="$PWD/code_null_home" code \
+ --extensions-dir "$PWD" \
+ --install-extension "${toString src}"
+
+ rm -Rf "$PWD/code_null_home"
+ cd "$(find . -mindepth 1 -type d -print -quit)"
+ ls -la
+ '';
+
+
+ installPhase = ''
+ mkdir -p "$out/share/${extendedPkgName}/extensions/${name}"
+ find . -mindepth 1 -maxdepth 1 | xargs mv -t "$out/share/${extendedPkgName}/extensions/${name}/"
+ '';
+
+ });
+
+
+ fetchVsixFromVscodeMarketplace = mktplcExtRef:
+ fetchurl((mktplcExtRefToFetchArgs mktplcExtRef));
+
+ buildVscodeMarketplaceExtension = a@{
+ name ? "",
+ src ? null,
+ mktplcRef,
+ ...
+ }: assert "" == name; assert null == src;
+ buildVscodeExtension ((removeAttrs a [ "mktplcRef" ]) // {
+ name = "${mktplcRef.name}-${mktplcRef.version}";
+ src = fetchVsixFromVscodeMarketplace mktplcRef;
+ });
+
+ mktplcRefAttrList = [
+ "name"
+ "publisher"
+ "version"
+ "sha256"
+ ];
+
+ mktplcExtRefToExtDrv = ext:
+ buildVscodeMarketplaceExtension ((removeAttrs ext mktplcRefAttrList) // {
+ mktplcRef = ext;
+ });
+
+ extensionsFromVscodeMarketplace = mktplcExtRefList:
+ builtins.map mktplcExtRefToExtDrv mktplcExtRefList;
+
+in
+
+{
+ inherit fetchVsixFromVscodeMarketplace buildVscodeExtension
+ buildVscodeMarketplaceExtension extensionsFromVscodeMarketplace;
+}
\ No newline at end of file
diff --git a/pkgs/os-specific/linux/acpitool/default.nix b/pkgs/os-specific/linux/acpitool/default.nix
index 9b2a984f3ae..ce47932587c 100644
--- a/pkgs/os-specific/linux/acpitool/default.nix
+++ b/pkgs/os-specific/linux/acpitool/default.nix
@@ -43,7 +43,7 @@ in stdenv.mkDerivation rec {
meta = {
description = "A small, convenient command-line ACPI client with a lot of features";
- homepage = http://freeunix.dyndns.org:8000/site2/acpitool.shtml;
+ homepage = https://sourceforge.net/projects/acpitool/;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.guibert ];
platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/os-specific/linux/kernel/linux-4.12.nix b/pkgs/os-specific/linux/kernel/linux-4.12.nix
index a7b6442cb6e..c223584c92d 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.12.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.12.nix
@@ -1,12 +1,12 @@
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
- version = "4.12.7";
+ version = "4.12.8";
extraMeta.branch = "4.12";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "14xyh5wyvp4pmvw4mz9lccw1ijshm7500ijmxzhc9ipjnmp5rhky";
+ sha256 = "0z4viglsqk9mv3hp6svwihncpxdgxdkzap74say1cqlbm1dqrdyi";
};
kernelPatches = args.kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/linux-4.9.nix b/pkgs/os-specific/linux/kernel/linux-4.9.nix
index 40c99cbfd88..0c5a82c0290 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.9.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.9.nix
@@ -1,12 +1,12 @@
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
- version = "4.9.43";
+ version = "4.9.44";
extraMeta.branch = "4.9";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1h0fv24pmrwmnpa6zzknqk7swq15z7dhkvy1hvzkjz4bfqgb28mx";
+ sha256 = "18z3ijxdb6gmk6n37016233hq15bf9wkfqrkw67xlhyqa1hki9j4";
};
kernelPatches = args.kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/linux-hardened-copperhead.nix b/pkgs/os-specific/linux/kernel/linux-hardened-copperhead.nix
index 1e54985ba59..9e0c55fed6e 100644
--- a/pkgs/os-specific/linux/kernel/linux-hardened-copperhead.nix
+++ b/pkgs/os-specific/linux/kernel/linux-hardened-copperhead.nix
@@ -1,9 +1,9 @@
{ stdenv, hostPlatform, fetchFromGitHub, perl, buildLinux, ... } @ args:
let
- version = "4.12.7";
+ version = "4.12.8";
revision = "a";
- sha256 = "1kj0s5r7fx2d0crak7576jv9r6q7yx4aqmxpib6mhj1zfhsczdp0";
+ sha256 = "03ldbgs4w70q756bl5gsxr2z428njnlslh6293y34r54gz5li9a3";
in
import ./generic.nix (args // {
diff --git a/pkgs/servers/irc/charybdis/default.nix b/pkgs/servers/irc/charybdis/default.nix
index b2288336d57..befb4039ea0 100644
--- a/pkgs/servers/irc/charybdis/default.nix
+++ b/pkgs/servers/irc/charybdis/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "IRCv3 server designed to be highly scalable";
- homepage = http://www.charybdis.io/;
+ homepage = http://atheme.org/projects/charybdis.html;
license = licenses.gpl2;
maintainers = with maintainers; [ lassulus fpletz ];
platforms = platforms.unix;
diff --git a/pkgs/shells/bash/bash-4.3-patches.nix b/pkgs/shells/bash/bash-4.3-patches.nix
deleted file mode 100644
index a09e56e4699..00000000000
--- a/pkgs/shells/bash/bash-4.3-patches.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-# Automatically generated by `update-patch-set.sh'; do not edit.
-
-patch: [
-(patch "001" "0hip2n2s5hws8p4nfcz37379zn6cak83ljsm64z52rw6ckrdzczc")
-(patch "002" "0ashj5d1g3zbyr7zf0r72s5wnk96cz1xj919y3jajadbc9qcvrzf")
-(patch "003" "0z88q4daq7dmw93iqd9c5i5d1sndklih3nrh0v75746da2n6w3h0")
-(patch "004" "0f0kh9j5k4ym6knshscx31przm50x5cc7ifkwqk0swh6clna982y")
-(patch "005" "1ym3b8b7lgmdp3dklp8qaqhyq965wd5392namq8mz7rb0d231j0s")
-(patch "006" "04q20igq49py49ynb0f83f6f52cdkyqwd9bpic6akr0m5pkqwr50")
-(patch "007" "18zkz23d9myshrwfcwcdjk7qmkqp8az5n91ni9jaixlwqlhy64qi")
-(patch "008" "0pprcwvh7ngdli0x95pc1cpssg4qg7layi9xrv2jq6c7965ajhcr")
-(patch "009" "19a0pf0alp30d1bjj0zf3zq2f5n0s6y91w7brm9jyswl51kns8n0")
-(patch "010" "1dzhr5ammyijisz48cqi5vaw26hfr5vh9smnqxq4qc9p06f7j1ff")
-(patch "011" "0fvzdzzi142a8rf3v965r6gbpn0k7fv2gif1yq8a4160vcn40qvw")
-(patch "012" "04lcgfcyz7p3zagb4hkia3hkpd7lii9m8ycy9qqwzyrm1c1pj4ry")
-(patch "013" "0y9cqi378z6flapkd5k5lfl4lq3ivzg4njj3i3wmw7xb6r9wma5z")
-(patch "014" "04xcb0k9fxxq4vashgzb98567xzdnm4655nlm4jvfvjv6si6ykas")
-(patch "015" "13ay6lldy1p00xj41nfjpq8lai3vw2qwca79gx6s80z04j53wa8k")
-(patch "016" "0wq7bvx3pfw90pnfb86yg5nr9jgjsvm2nq5rrkqxf6zn977hpmlj")
-(patch "017" "103p7sibihv6cshqj12k546zsbz0dnd5cv5vlx1719avddfc4rqj")
-(patch "018" "0n1x3812y1brb9xbabaj3fvr4cpvm2225iwckmqk2fcpkq5b9a3s")
-(patch "019" "08rd1p7zpzgbpmmmnj2im8wj2pcwmbbx51psr9vdc5c049si9ad7")
-(patch "020" "163c6g05qpag2plx5q795pmw3f3m904jy7z93xj2i08pgzc8cpna")
-(patch "021" "1a90cl3h10dh8k9f2ddrsjmw5ywaw2d5x78xb4fd2sryi039yhs1")
-(patch "022" "120s0s4qcqd0q12j1iv0hkpf9fp3w5jnqw646kv66n66jnxlfkgx")
-(patch "023" "1m00sfi88p2akgiyrg4hw0gvz3s1586pkzjdr3dm73vs773m1hls")
-(patch "024" "0v0gjqzjsqjfgj5x17fq7g649k94jn8zq92qsxkhc2d6l215hl1v")
-(patch "025" "0lcj96i659q35f1jcmwwbnw3p7w7vvlxjxqi989vn6d6qksqcl8y")
-(patch "026" "0k919ir0inwn4wai2vdzpbwqq5h54fnrlkmgccxjg91v3ch15k1f")
-(patch "027" "1gnsfvq6bhb3srlbh0cannj2hackdsipcg7z0ds7zlk1hp96mdqy")
-(patch "028" "17a65c4fn4c5rgsiw9gqqnzhznh3gwnd2xzzv2dppyi48znxpc78")
-(patch "029" "14k27p28r5l2fz3r03kd0x72vvsq8bja8c6hjz5kxikbzsbs7i2c")
-(patch "030" "0nrqb0m7s89qsrbfaffpilc5gcf82bx9yvgzld4hr79p5y54yhw5")
-(patch "031" "07d62bl3z7qa8v6kgk47vzzazw563mlk9zhrsr4xsbqgvmcrylnd")
-(patch "032" "0jjgapfq4qhmndfrw8c3q3lva8xjdhlbd9cc631v41b0kb95g4w8")
-(patch "033" "05ma5rlxiadnfh925p4y7s0vvk917kmsdb1mfdx05gizl63pfapv")
-(patch "034" "12gq9whkq3naa3iy7c7x5pfpvrg7d0kwqld8609zxphhy424ysgi")
-(patch "035" "1qy1jflmbazjykq766gwabkaiswnx7pwa66whqiny0w02zjqa39p")
-(patch "036" "0z6jbyy70lfdm6d3x0sbazbqdxb3xnpn9bmz7madpvrnbd284pxc")
-(patch "037" "04sqr8zkl6s5fccfvb775ppn3ldij5imria9swc39aq0fkfp1w9k")
-(patch "038" "0rv3g14mpgv8br267bf7rmgqlgwnc4v6g3g8y0sjba571i8amgmd")
-(patch "039" "1v3l3vkc3g2b6fjycqwlakr8xhiw6bmw6q0zd6bi0m0m4bnxr55b")
-(patch "040" "0sypv66vsldmc95gwvf7ylz1k7y37vnvdsjg8ajjr6b2j9mkkfw4")
-(patch "041" "06ic2gdpbi1afik3wqf9d4vh95if4bz8bmhcgr555621dsb35i2f")
-(patch "042" "06a90k0p6bqc4wk2dsmapna69124an76xvlnlj3xm497vci968dc")
-(patch "043" "1031g97w8gamimb41jr9r2qm7mn10k5mr3sd3y12avml0p0a7a27")
-(patch "044" "16bzaq9fs2kaw2n2k6vvljkjw5k5kx06isnq8hxkfrxz60384f4k")
-(patch "045" "08q02mj9imp2njpgm6f5q5m61i7qzp33rbxxzarixalyisbw6vms")
-(patch "046" "13v8dymwj83wcvrfayjqrs5kqar05bcj4zpiacrjkkchnsk5dd5k")
-(patch "047" "0jkwqviwkqdc13wv3q0g0kapjr68ggs1xzhqy696pfkqgvg4i4n6")
-(patch "048" "18nzlk1idwkq0xd54s83lx8kam8kcvz7yc0mw6hnq2ax3i2ib0jv")
-]
diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix
index 2eeab14b1c7..d5d156137f2 100644
--- a/pkgs/stdenv/darwin/default.nix
+++ b/pkgs/stdenv/darwin/default.nix
@@ -167,9 +167,9 @@ in rec {
extraBuildInputs = [];
};
- persistent0 = _: _: _: {};
-
- stage1 = prevStage: with prevStage; stageFun 1 prevStage {
+ stage1 = prevStage: let
+ persistent = _: _: {};
+ in with prevStage; stageFun 1 prevStage {
extraPreHook = "export NIX_CFLAGS_COMPILE+=\" -F${bootstrapTools}/Library/Frameworks\"";
extraNativeBuildInputs = [];
extraBuildInputs = [ pkgs.libcxx ];
@@ -177,23 +177,23 @@ in rec {
allowedRequisites =
[ bootstrapTools ] ++ (with pkgs; [ libcxx libcxxabi ]) ++ [ pkgs.darwin.Libsystem ];
- overrides = persistent0 prevStage;
+ overrides = persistent;
};
- persistent1 = prevStage: self: super: with prevStage; {
- inherit
- zlib patchutils m4 scons flex perl bison unifdef unzip openssl python
- libxml2 gettext sharutils gmp libarchive ncurses pkg-config libedit groff
- openssh sqlite sed serf openldap db cyrus-sasl expat apr-util subversion xz
- findfreetype libssh curl cmake autoconf automake libtool ed cpio coreutils;
+ stage2 = prevStage: let
+ persistent = self: super: with prevStage; {
+ inherit
+ zlib patchutils m4 scons flex perl bison unifdef unzip openssl python
+ libxml2 gettext sharutils gmp libarchive ncurses pkg-config libedit groff
+ openssh sqlite sed serf openldap db cyrus-sasl expat apr-util subversion xz
+ findfreetype libssh curl cmake autoconf automake libtool ed cpio coreutils;
- darwin = super.darwin // {
- inherit (darwin)
- dyld Libsystem xnu configd ICU libdispatch libclosure launchd;
+ darwin = super.darwin // {
+ inherit (darwin)
+ dyld Libsystem xnu configd ICU libdispatch libclosure launchd;
+ };
};
- };
-
- stage2 = prevStage: with prevStage; stageFun 2 prevStage {
+ in with prevStage; stageFun 2 prevStage {
extraPreHook = ''
export PATH_LOCALE=${pkgs.darwin.locale}/share/locale
'';
@@ -206,24 +206,24 @@ in rec {
(with pkgs; [ xz.bin xz.out libcxx libcxxabi ]) ++
(with pkgs.darwin; [ dyld Libsystem CF ICU locale ]);
- overrides = persistent1 prevStage;
+ overrides = persistent;
};
- persistent2 = prevStage: self: super: with prevStage; {
- inherit
- patchutils m4 scons flex perl bison unifdef unzip openssl python
- gettext sharutils libarchive pkg-config groff bash subversion
- openssh sqlite sed serf openldap db cyrus-sasl expat apr-util
- findfreetype libssh curl cmake autoconf automake libtool cpio
- libcxx libcxxabi;
+ stage3 = prevStage: let
+ persistent = self: super: with prevStage; {
+ inherit
+ patchutils m4 scons flex perl bison unifdef unzip openssl python
+ gettext sharutils libarchive pkg-config groff bash subversion
+ openssh sqlite sed serf openldap db cyrus-sasl expat apr-util
+ findfreetype libssh curl cmake autoconf automake libtool cpio
+ libcxx libcxxabi;
- darwin = super.darwin // {
- inherit (darwin)
- dyld Libsystem xnu configd libdispatch libclosure launchd libiconv locale;
+ darwin = super.darwin // {
+ inherit (darwin)
+ dyld Libsystem xnu configd libdispatch libclosure launchd libiconv locale;
+ };
};
- };
-
- stage3 = prevStage: with prevStage; stageFun 3 prevStage {
+ in with prevStage; stageFun 3 prevStage {
shell = "${pkgs.bash}/bin/bash";
# We have a valid shell here (this one has no bootstrap-tools runtime deps) so stageFun
@@ -243,55 +243,56 @@ in rec {
(with pkgs; [ xz.bin xz.out bash libcxx libcxxabi ]) ++
(with pkgs.darwin; [ dyld ICU Libsystem locale ]);
- overrides = persistent2 prevStage;
+ overrides = persistent;
};
- persistent3 = prevStage: self: super: with prevStage; {
- inherit
- gnumake gzip gnused bzip2 gawk ed xz patch bash
- libcxxabi libcxx ncurses libffi zlib gmp pcre gnugrep
- coreutils findutils diffutils patchutils;
+ stage4 = prevStage: let
+ persistent = self: super: with prevStage; {
+ inherit
+ gnumake gzip gnused bzip2 gawk ed xz patch bash
+ libcxxabi libcxx ncurses libffi zlib gmp pcre gnugrep
+ coreutils findutils diffutils patchutils;
- llvmPackages = let llvmOverride = llvmPackages.llvm.override { inherit libcxxabi; };
- in super.llvmPackages // {
- llvm = llvmOverride;
- clang-unwrapped = llvmPackages.clang-unwrapped.override { llvm = llvmOverride; };
- };
+ llvmPackages = let llvmOverride = llvmPackages.llvm.override { inherit libcxxabi; };
+ in super.llvmPackages // {
+ llvm = llvmOverride;
+ clang-unwrapped = llvmPackages.clang-unwrapped.override { llvm = llvmOverride; };
+ };
- darwin = super.darwin // {
- inherit (darwin) dyld Libsystem libiconv locale;
+ darwin = super.darwin // {
+ inherit (darwin) dyld Libsystem libiconv locale;
+ };
};
- };
-
- stage4 = prevStage: with prevStage; stageFun 4 prevStage {
+ in with prevStage; stageFun 4 prevStage {
shell = "${pkgs.bash}/bin/bash";
extraNativeBuildInputs = with pkgs; [ xz pkgs.bash ];
extraBuildInputs = with pkgs; [ darwin.CF libcxx ];
extraPreHook = ''
export PATH_LOCALE=${pkgs.darwin.locale}/share/locale
'';
- overrides = persistent3 prevStage;
+ overrides = persistent;
};
- persistent4 = prevStage: self: super: with prevStage; {
- inherit
- gnumake gzip gnused bzip2 gawk ed xz patch bash
- libcxxabi libcxx ncurses libffi zlib llvm gmp pcre gnugrep
- coreutils findutils diffutils patchutils;
+ stdenvDarwin = prevStage: let
+ pkgs = prevStage;
+ persistent = self: super: with prevStage; {
+ inherit
+ gnumake gzip gnused bzip2 gawk ed xz patch bash
+ libcxxabi libcxx ncurses libffi zlib llvm gmp pcre gnugrep
+ coreutils findutils diffutils patchutils;
- llvmPackages = super.llvmPackages // {
- inherit (llvmPackages) llvm clang-unwrapped;
+ llvmPackages = super.llvmPackages // {
+ inherit (llvmPackages) llvm clang-unwrapped;
+ };
+
+ darwin = super.darwin // {
+ inherit (darwin) dyld ICU Libsystem cctools libiconv;
+ };
+ } // lib.optionalAttrs (super.targetPlatform == localSystem) {
+ # Need to get rid of these when cross-compiling.
+ inherit binutils binutils-raw;
};
-
- darwin = super.darwin // {
- inherit (darwin) dyld ICU Libsystem cctools libiconv;
- };
- } // lib.optionalAttrs (super.targetPlatform == localSystem) {
- # Need to get rid of these when cross-compiling.
- inherit binutils binutils-raw;
- };
-
- stdenvDarwin = prevStage: let pkgs = prevStage; in import ../generic rec {
+ in import ../generic rec {
inherit config;
inherit (pkgs.stdenv) fetchurlBoot;
@@ -351,9 +352,9 @@ in rec {
]);
overrides = self: super:
- let persistent = persistent4 prevStage self super; in persistent // {
+ let persistent' = persistent self super; in persistent' // {
clang = cc;
- llvmPackages = persistent.llvmPackages // { clang = cc; };
+ llvmPackages = persistent'.llvmPackages // { clang = cc; };
inherit cc;
};
};
diff --git a/pkgs/tools/X11/xzoom/default.nix b/pkgs/tools/X11/xzoom/default.nix
new file mode 100644
index 00000000000..05154e28263
--- /dev/null
+++ b/pkgs/tools/X11/xzoom/default.nix
@@ -0,0 +1,33 @@
+{stdenv, fetchurl, libX11, imake, libXext, libXt}:
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}.${patchlevel}";
+ pname = "xzoom";
+ version = "0.3";
+ patchlevel = "24";
+
+ # or fetchFromGitHub(owner,repo,rev) or fetchgit(rev)
+ src = fetchurl {
+ url = "http://www.ibiblio.org/pub/linux/libs/X/${pname}-${version}.tgz";
+ sha256 = "0jzl5py4ny4n4i58lxx2hdwq9zphqf7h3m14spl3079y5mlzssxj";
+ };
+ patches = [
+ (fetchurl {
+ url = "http://http.debian.net/debian/pool/main/x/xzoom/xzoom_${version}-${patchlevel}.diff.gz";
+ sha256 = "0zhc06whbvaz987bzzzi2bz6h9jp6rv812qs7b71drivvd820qbh";
+ })
+ ];
+ buildInputs = [libX11 imake libXext libXt];
+
+ configurePhase = ''
+ xmkmf
+ makeFlags="$makeFlags PREFIX=$out BINDIR=$out/bin MANPATH=$out/share/man"
+ '';
+
+ meta = {
+ inherit version;
+ description = "An X11 screen zoom tool";
+ license = stdenv.lib.licenses.free ;
+ maintainers = [stdenv.lib.maintainers.raskin];
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
diff --git a/pkgs/tools/misc/plowshare/default.nix b/pkgs/tools/misc/plowshare/default.nix
index 8282c2a1cd9..191f8980d83 100644
--- a/pkgs/tools/misc/plowshare/default.nix
+++ b/pkgs/tools/misc/plowshare/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "plowshare-${version}";
- version = "2.1.6";
+ version = "2.1.7";
src = fetchFromGitHub {
owner = "mcrapet";
repo = "plowshare";
rev = "v${version}";
- sha256 = "116291w0z1r61xm3a3zjlh85f05pk4ng9f1wbj9kv1j3xrjn4v4c";
+ sha256 = "1p8s60dlzaldp006yj710s371aan915asyjhd99188vrj4jj1x79";
};
buildInputs = [ makeWrapper ];
diff --git a/pkgs/tools/misc/ttylog/default.nix b/pkgs/tools/misc/ttylog/default.nix
index 99a648ef5bc..fa45b0f8bd2 100644
--- a/pkgs/tools/misc/ttylog/default.nix
+++ b/pkgs/tools/misc/ttylog/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
- homepage = http://ttylog.sourceforg.net;
+ homepage = http://ttylog.sourceforge.net;
description = "Simple serial port logger";
longDescription = ''
A serial port logger which can be used to print everything to stdout
diff --git a/pkgs/tools/networking/dd-agent/default.nix b/pkgs/tools/networking/dd-agent/default.nix
index d1171a3c835..805b0dddcac 100644
--- a/pkgs/tools/networking/dd-agent/default.nix
+++ b/pkgs/tools/networking/dd-agent/default.nix
@@ -87,7 +87,7 @@ in stdenv.mkDerivation rec {
meta = {
description = "Event collector for the DataDog analysis service";
- homepage = http://www.datadoghq.com;
+ homepage = https://www.datadoghq.com;
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.all;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice domenkozar ];
diff --git a/pkgs/tools/security/browserpass/default.nix b/pkgs/tools/security/browserpass/default.nix
index 9f8a00c5956..c078c3a21c5 100644
--- a/pkgs/tools/security/browserpass/default.nix
+++ b/pkgs/tools/security/browserpass/default.nix
@@ -3,7 +3,7 @@
buildGoPackage rec {
name = "browserpass-${version}";
- version = "1.0.5";
+ version = "1.0.6";
goPackagePath = "github.com/dannyvankooten/browserpass";
@@ -11,7 +11,7 @@ buildGoPackage rec {
repo = "browserpass";
owner = "dannyvankooten";
rev = version;
- sha256 = "1r9x1asgblay7pry2jpgfisfgb3423x3cqd3g68q8b98zvc9l9lz";
+ sha256 = "07wkvwb9klzxnlrm9a07kxzj3skpy0lymc9ijr8ykfbz6l0bpbqy";
};
postInstall = ''
@@ -31,5 +31,6 @@ buildGoPackage rec {
homepage = https://github.com/dannyvankooten/browserpass;
license = licenses.mit;
platforms = with platforms; linux ++ darwin ++ openbsd;
+ maintainers = with maintainers; [ rvolosatovs ];
};
}
diff --git a/pkgs/tools/security/keybase/default.nix b/pkgs/tools/security/keybase/default.nix
index 474455258a4..5294f32864d 100644
--- a/pkgs/tools/security/keybase/default.nix
+++ b/pkgs/tools/security/keybase/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "keybase-${version}";
- version = "1.0.27";
+ version = "1.0.28";
goPackagePath = "github.com/keybase/client";
subPackages = [ "go/keybase" ];
@@ -13,7 +13,7 @@ buildGoPackage rec {
owner = "keybase";
repo = "client";
rev = "v${version}";
- sha256 = "0s68awgaq32hl5rvcrnhn9i98dwh23kws0l4czcghyn6imx8h89i";
+ sha256 = "03ldg7r0d9glccbx2xb3g3xyla82j5hkmmwfvzdqg43740l51mci";
};
buildFlags = [ "-tags production" ];
@@ -22,6 +22,6 @@ buildGoPackage rec {
homepage = https://www.keybase.io/;
description = "The Keybase official command-line utility and service.";
platforms = platforms.linux;
- maintainers = with maintainers; [ carlsverre np ];
+ maintainers = with maintainers; [ carlsverre np rvolosatovs ];
};
}
diff --git a/pkgs/tools/security/pass/default.nix b/pkgs/tools/security/pass/default.nix
index 331a75495ed..24922db2e77 100644
--- a/pkgs/tools/security/pass/default.nix
+++ b/pkgs/tools/security/pass/default.nix
@@ -84,7 +84,7 @@ in stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Stores, retrieves, generates, and synchronizes passwords securely";
- homepage = http://www.passwordstore.org/;
+ homepage = https://www.passwordstore.org/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ lovek323 the-kenny fpletz ];
platforms = platforms.unix;
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 73c2ffce527..1cf76d498cc 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1429,10 +1429,11 @@ with pkgs;
m17n = callPackage ../tools/inputmethods/ibus-engines/ibus-m17n { };
- mozc = callPackage ../tools/inputmethods/ibus-engines/ibus-mozc {
+ mozc = callPackage ../tools/inputmethods/ibus-engines/ibus-mozc rec {
+ clangStdenv = libcxxStdenv; # workaround for https://github.com/NixOS/nixpkgs/issues/28223
python = python2;
inherit (python2Packages) gyp;
- protobuf = protobuf3_2.override { stdenv = clangStdenv; };
+ protobuf = protobuf3_2.overrideDerivation (oldAttrs: { stdenv = clangStdenv; });
};
table = callPackage ../tools/inputmethods/ibus-engines/ibus-table {
@@ -1902,10 +1903,11 @@ with pkgs;
m17n = callPackage ../tools/inputmethods/fcitx-engines/fcitx-m17n { };
- mozc = callPackage ../tools/inputmethods/fcitx-engines/fcitx-mozc {
+ mozc = callPackage ../tools/inputmethods/fcitx-engines/fcitx-mozc rec {
+ clangStdenv = libcxxStdenv; # workaround for https://github.com/NixOS/nixpkgs/issues/28223
python = python2;
inherit (python2Packages) gyp;
- protobuf = protobuf3_2.override { stdenv = clangStdenv; };
+ protobuf = protobuf3_2.overrideDerivation (oldAttrs: { stdenv = clangStdenv; });
};
table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { };
@@ -3829,6 +3831,8 @@ with pkgs;
popfile = callPackage ../tools/text/popfile { };
+ poretools = callPackage ../applications/science/biology/poretools { };
+
postscript-lexmark = callPackage ../misc/drivers/postscript-lexmark { };
povray = callPackage ../tools/graphics/povray { };
@@ -9730,6 +9734,8 @@ with pkgs;
cmake = cmake_2_8;
};
+ open-wbo = callPackage ../applications/science/logic/open-wbo {};
+
openwsman = callPackage ../development/libraries/openwsman {};
ortp = callPackage ../development/libraries/ortp { };
@@ -16569,6 +16575,12 @@ with pkgs;
vscode = callPackage ../applications/editors/vscode { };
+ vscode-with-extensions = callPackage ../applications/editors/vscode-with-extensions {};
+
+ vscode-utils = callPackage ../misc/vscode-extensions/vscode-utils.nix {};
+
+ vscode-extensions = recurseIntoAttrs (callPackage ../misc/vscode-extensions {});
+
vue = callPackage ../applications/misc/vue { };
vwm = callPackage ../applications/window-managers/vwm { };
@@ -19098,6 +19110,8 @@ with pkgs;
};
};
+ xzoom = callPackage ../tools/X11/xzoom {};
+
yabause = callPackage ../misc/emulators/yabause {
qt = qt4;
};
diff --git a/pkgs/top-level/impure.nix b/pkgs/top-level/impure.nix
index c0cf8fb0911..a4d313a1b99 100644
--- a/pkgs/top-level/impure.nix
+++ b/pkgs/top-level/impure.nix
@@ -40,18 +40,36 @@ in
# collections of packages. These collection of packages are part of the
# fix-point made by Nixpkgs.
overlays ? let
- dirPath = try (if pathExists then else "") "";
- dirHome = homeDir + "/.config/nixpkgs/overlays";
- dirCheck = dir: dir != "" && pathExists (dir + "/.");
- overlays = dir:
- let content = readDir dir; in
- map (n: import (dir + ("/" + n)))
- (builtins.filter (n: builtins.match ".*\.nix" n != null || pathExists (dir + ("/" + n + "/default.nix")))
- (attrNames content));
+ isDir = path: pathExists (path + "/.");
+ pathOverlays = try "";
+ homeOverlaysFile = homeDir + "/.config/nixpkgs/overlays.nix";
+ homeOverlaysDir = homeDir + "/.config/nixpkgs/overlays";
+ overlays = path:
+ # check if the path is a directory or a file
+ if isDir path then
+ # it's a directory, so the set of overlays from the directory, ordered lexicographically
+ let content = readDir path; in
+ map (n: import (path + ("/" + n)))
+ (builtins.filter (n: builtins.match ".*\.nix" n != null || pathExists (path + ("/" + n + "/default.nix")))
+ (attrNames content))
+ else
+ # it's a file, so the result is the contents of the file itself
+ import path;
in
- if dirPath != "" then
- overlays dirPath
- else if dirCheck dirHome then overlays dirHome
+ if pathOverlays != "" && pathExists pathOverlays then overlays pathOverlays
+ else if pathExists homeOverlaysFile && pathExists homeOverlaysDir then
+ throw ''
+ Nixpkgs overlays can be specified with ${homeOverlaysFile} or ${homeOverlaysDir}, but not both.
+ Please remove one of them and try again.
+ ''
+ else if pathExists homeOverlaysFile then
+ if isDir homeOverlaysFile then
+ throw (homeOverlaysFile + " should be a file")
+ else overlays homeOverlaysFile
+ else if pathExists homeOverlaysDir then
+ if !(isDir homeOverlaysDir) then
+ throw (homeOverlaysDir + " should be a directory")
+ else overlays homeOverlaysDir
else []
, ...
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 39caa9d875a..f23ed5a9b5c 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -1609,10 +1609,10 @@ let self = _self // overrides; _self = with self; {
};
CGI = buildPerlPackage rec {
- name = "CGI-4.35";
+ name = "CGI-4.36";
src = fetchurl {
url = "mirror://cpan/authors/id/L/LE/LEEJO/${name}.tar.gz";
- sha256 = "07gwnlc7vq58fjwmfsrv0hfyirqqdrpjhf89caq34rjrkz2wsd0b";
+ sha256 = "142la7jagpni5z7m4s9h9v5vpg0pisc3y3z8kdzqc7j6yba89zpy";
};
buildInputs = [ TestDeep TestWarn ];
propagatedBuildInputs = [ HTMLParser self."if" ];
@@ -5113,12 +5113,13 @@ let self = _self // overrides; _self = with self; {
};
};
- ExtUtilsLibBuilder = buildPerlModule {
- name = "ExtUtils-LibBuilder-0.04";
+ ExtUtilsLibBuilder = buildPerlModule rec {
+ name = "ExtUtils-LibBuilder-0.08";
src = fetchurl {
- url = mirror://cpan/authors/id/A/AM/AMBS/ExtUtils/ExtUtils-LibBuilder-0.04.tar.gz;
- sha256 = "0j4rhx3w6nbvmxqjg6q09gm10nnpkcmqmh29cgxsfc9k14d8bb6w";
+ url = "mirror://cpan/authors/id/A/AM/AMBS/${name}.tar.gz";
+ sha256 = "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5";
};
+ perlPreHook = "export LD=$CC";
meta = {
description = "A tool to build C libraries";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
@@ -6492,11 +6493,11 @@ let self = _self // overrides; _self = with self; {
};
};
- HTMLParser = buildPerlPackage {
- name = "HTML-Parser-3.71";
+ HTMLParser = buildPerlPackage rec {
+ name = "HTML-Parser-3.72";
src = fetchurl {
- url = mirror://cpan/authors/id/G/GA/GAAS/HTML-Parser-3.71.tar.gz;
- sha256 = "00nqzdgl7c3jilx7mil19k5jwcw3as14pvkjgxi97zyk94vqp4dy";
+ url = "mirror://cpan/authors/id/G/GA/GAAS/${name}.tar.gz";
+ sha256 = "12v05ywlnsi9lc17z32k9jxx3sj1viy7y1wpl7n4az76v7hwfa7c";
};
propagatedBuildInputs = [ HTMLTagset ];
meta = {
@@ -14221,7 +14222,7 @@ let self = _self // overrides; _self = with self; {
url = "mirror://cpan/authors/id/A/AM/AMBS/${name}.tar.gz";
sha256 = "0dig1zlglm8rwm8fhnz087lx6gixj9jx10kxn1fx3swdkfblhsmf";
};
- perlPreHook = "export LD=gcc";
+ perlPreHook = "export LD=$CC";
meta = {
description = "Interface to read and parse BibTeX files";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index aaf31757b17..6c4bcfb041f 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -2070,7 +2070,7 @@ in {
blaze = callPackage ../development/python-modules/blaze { };
# Needed for FlexGet 1.2.337 and calibre 2.76.0
- html5lib_0_9999999 = self.html5lib.override rec {
+ html5lib_0_9999999 = self.html5lib.overridePythonAttrs rec {
name = "html5lib-${version}";
buildInputs = with self; [ nose flake8 ];
propagatedBuildInputs = with self; [ six ];
@@ -5459,6 +5459,8 @@ in {
};
};
+ easydict = callPackage ../development/python-modules/easydict { };
+
EasyProcess = buildPythonPackage rec {
name = "EasyProcess-0.2.3";
@@ -26085,12 +26087,14 @@ EOF
# Should be bumped along with EFL!
pythonefl = buildPythonPackage rec {
name = "python-efl-${version}";
- version = "1.19.0";
+ version = "1.20.0";
src = pkgs.fetchurl {
url = "http://download.enlightenment.org/rel/bindings/python/${name}.tar.xz";
- sha256 = "105qykdd04mlyzwzyscw6mlc7ajl4wbwhq87ncy1jvw8jjh6jads";
+ sha256 = "18qfqdkkjydqjk0nxs7wnnzdnqlbj3fhkjm0bbd927myzbihxpkh";
};
+ hardeningDisable = [ "format" ];
+
preConfigure = ''
export NIX_CFLAGS_COMPILE="$(pkg-config --cflags efl) -I${self.dbus-python}/include/dbus-1.0 $NIX_CFLAGS_COMPILE"
'';