diff --git a/doc/stdenv.xml b/doc/stdenv.xml
index 00fa7567c07..fa3a7ef056e 100644
--- a/doc/stdenv.xml
+++ b/doc/stdenv.xml
@@ -718,7 +718,7 @@ the Nix store under out. The default
install.
- Variables controlling the check phase
+ Variables controlling the install phase
makeFlags /
@@ -797,7 +797,7 @@ following:
- Variables controlling the check phase
+ Variables controlling the fixup phase
dontStrip
diff --git a/lib/maintainers.nix b/lib/maintainers.nix
index feb3bd95372..fff8a372e29 100644
--- a/lib/maintainers.nix
+++ b/lib/maintainers.nix
@@ -108,6 +108,7 @@
manveru = "Michael Fellinger ";
marcweber = "Marc Weber ";
matejc = "Matej Cotman ";
+ matthiasbeyer = "Matthias Beyer ";
meditans = "Carlo Nucera ";
meisternu = "Matt Miemiec ";
michelk = "Michel Kuhlmann ";
diff --git a/maintainers/scripts/vanity-manual-equalities.txt b/maintainers/scripts/vanity-manual-equalities.txt
index 9b31e9dc07c..4a7bc3aea44 100644
--- a/maintainers/scripts/vanity-manual-equalities.txt
+++ b/maintainers/scripts/vanity-manual-equalities.txt
@@ -4,3 +4,4 @@ Pjotr Prins pjotr.public05@thebird.nl
Wouter den Breejen wbreejen
MarcWeber marcweber
Ricardo Correia Ricardo M. Correia
+ertesx@gmx.de ertes
diff --git a/maintainers/scripts/vanity.sh b/maintainers/scripts/vanity.sh
index 6759df444ef..fd8f78ac5ef 100755
--- a/maintainers/scripts/vanity.sh
+++ b/maintainers/scripts/vanity.sh
@@ -47,11 +47,11 @@ fetchGithubName () {
# For RDF
normalize_name () {
- sed -e 's/%/%25/g; s/ /%20/g; s/'\''/%27/g; s/"/%22/g; s/`/%60/g'
+ sed -e 's/%/%25/g; s/ /%20/g; s/'\''/%27/g; s/"/%22/g; s/`/%60/g; s/\^/%5e/g; '
}
denormalize_name () {
- sed -e 's/%20/ /g; s/%27/'\''/g; s/%22/"/g; s/%60/`/g; s/%25/%/g;';
+ sed -e 's/%20/ /g; s/%27/'\''/g; s/%22/"/g; s/%60/`/g; s/%5e/^/g; s/%25/%/g;';
}
n3="$(mktemp --suffix .n3)"
diff --git a/nixos/modules/hardware/video/bumblebee.nix b/nixos/modules/hardware/video/bumblebee.nix
index 7b48d9d1fcf..e20ebc3041e 100644
--- a/nixos/modules/hardware/video/bumblebee.nix
+++ b/nixos/modules/hardware/video/bumblebee.nix
@@ -1,7 +1,13 @@
{ config, lib, pkgs, ... }:
-let kernel = config.boot.kernelPackages; in
with lib;
+let
+ kernel = config.boot.kernelPackages;
+ bumblebee = if config.hardware.bumblebee.connectDisplay
+ then pkgs.bumblebee_display
+ else pkgs.bumblebee;
+
+in
{
@@ -23,6 +29,17 @@ with lib;
type = types.uniq types.str;
description = ''Group for bumblebee socket'';
};
+ hardware.bumblebee.connectDisplay = mkOption {
+ default = false;
+ type = types.bool;
+ description = ''
+ Set to true if you intend to connect your discrete card to a
+ monitor. This option will set up your Nvidia card for EDID
+ discovery and to turn on the monitor signal.
+
+ Only nvidia driver is supported so far.
+ '';
+ };
};
config = mkIf config.hardware.bumblebee.enable {
@@ -30,13 +47,13 @@ with lib;
boot.kernelModules = [ "bbswitch" ];
boot.extraModulePackages = [ kernel.bbswitch kernel.nvidia_x11 ];
- environment.systemPackages = [ pkgs.bumblebee pkgs.primus ];
+ environment.systemPackages = [ bumblebee pkgs.primus ];
systemd.services.bumblebeed = {
description = "Bumblebee Hybrid Graphics Switcher";
wantedBy = [ "display-manager.service" ];
script = "bumblebeed --use-syslog -g ${config.hardware.bumblebee.group}";
- path = [ kernel.bbswitch pkgs.bumblebee ];
+ path = [ kernel.bbswitch bumblebee ];
serviceConfig = {
Restart = "always";
RestartSec = 60;
diff --git a/nixos/modules/installer/tools/nixos-install.sh b/nixos/modules/installer/tools/nixos-install.sh
index 9dfc322b9f7..bfb42d40b06 100644
--- a/nixos/modules/installer/tools/nixos-install.sh
+++ b/nixos/modules/installer/tools/nixos-install.sh
@@ -77,6 +77,7 @@ mkdir -m 0755 -p $mountPoint/dev $mountPoint/proc $mountPoint/sys $mountPoint/et
mkdir -m 01777 -p $mountPoint/tmp
mkdir -m 0755 -p $mountPoint/tmp/root
mkdir -m 0755 -p $mountPoint/var/setuid-wrappers
+mkdir -m 0700 -p $mountPoint/root
mount --rbind /dev $mountPoint/dev
mount --rbind /proc $mountPoint/proc
mount --rbind /sys $mountPoint/sys
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index bd9551fa199..2a2a7b00416 100755
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -54,8 +54,8 @@
./misc/version.nix
./programs/atop.nix
./programs/bash/bash.nix
- ./programs/bash/command-not-found.nix
./programs/blcr.nix
+ ./programs/command-not-found/command-not-found.nix
./programs/dconf.nix
./programs/environment.nix
./programs/info.nix
@@ -238,6 +238,7 @@
./services/networking/dnscrypt-proxy.nix
./services/networking/dnsmasq.nix
./services/networking/ejabberd.nix
+ ./services/networking/firefox/sync-server.nix
./services/networking/firewall.nix
./services/networking/flashpolicyd.nix
./services/networking/freenet.nix
diff --git a/nixos/modules/programs/bash/command-not-found.nix b/nixos/modules/programs/command-not-found/command-not-found.nix
similarity index 68%
rename from nixos/modules/programs/bash/command-not-found.nix
rename to nixos/modules/programs/command-not-found/command-not-found.nix
index 8c86d48b080..bead2dcdcf9 100644
--- a/nixos/modules/programs/bash/command-not-found.nix
+++ b/nixos/modules/programs/command-not-found/command-not-found.nix
@@ -44,6 +44,26 @@ in
}
'';
+ programs.zsh.interactiveShellInit =
+ ''
+ # This function is called whenever a command is not found.
+ command_not_found_handler() {
+ local p=/run/current-system/sw/bin/command-not-found
+ if [ -x $p -a -f /nix/var/nix/profiles/per-user/root/channels/nixos/programs.sqlite ]; then
+ # Run the helper program.
+ $p "$1"
+
+ # Retry the command if we just installed it.
+ if [ $? = 126 ]; then
+ "$@"
+ fi
+ else
+ # Indicate than there was an error so ZSH falls back to its default handler
+ return 127
+ fi
+ }
+ '';
+
environment.systemPackages = [ commandNotFound ];
# TODO: tab completion for uninstalled commands! :-)
diff --git a/nixos/modules/programs/bash/command-not-found.pl b/nixos/modules/programs/command-not-found/command-not-found.pl
similarity index 100%
rename from nixos/modules/programs/bash/command-not-found.pl
rename to nixos/modules/programs/command-not-found/command-not-found.pl
diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix
index 1fb7102e7f3..50ff1b38db1 100644
--- a/nixos/modules/services/mail/dovecot.nix
+++ b/nixos/modules/services/mail/dovecot.nix
@@ -45,8 +45,6 @@ let
pop3_uidl_format = %08Xv%08Xu
'' + cfg.extraConfig;
- confFile = pkgs.writeText "dovecot.conf" dovecotConf;
-
in
{
@@ -88,6 +86,12 @@ in
description = "Additional entries to put verbatim into Dovecot's config file.";
};
+ configFile = mkOption {
+ default = null;
+ description = "Config file used for the whole dovecot configuration.";
+ apply = v: if v != null then v else pkgs.writeText "dovecot.conf" dovecotConf;
+ };
+
mailLocation = mkOption {
default = "maildir:/var/spool/mail/%u"; /* Same as inbox, as postfix */
example = "maildir:~/mail:INBOX=/var/spool/mail/%u";
@@ -144,10 +148,11 @@ in
gid = config.ids.gids.dovecot2;
};
- jobs.dovecot2 =
+ systemd.services.dovecot2 =
{ description = "Dovecot IMAP/POP3 server";
- startOn = "started networking";
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
preStart =
''
@@ -155,7 +160,13 @@ in
${pkgs.coreutils}/bin/chown -R ${cfg.user}:${cfg.group} /var/run/dovecot2
'';
- exec = "${pkgs.dovecot}/sbin/dovecot -F -c ${confFile}";
+ serviceConfig = {
+ ExecStart = "${pkgs.dovecot}/sbin/dovecot -F -c ${cfg.configFile}";
+ Restart = "on-failure";
+ RestartSec = "1s";
+ StartLimitInterval = "1min";
+ };
+
};
environment.systemPackages = [ pkgs.dovecot ];
diff --git a/nixos/modules/services/networking/firefox/sync-server.nix b/nixos/modules/services/networking/firefox/sync-server.nix
new file mode 100644
index 00000000000..79f32f3358c
--- /dev/null
+++ b/nixos/modules/services/networking/firefox/sync-server.nix
@@ -0,0 +1,142 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.firefox.syncserver;
+ syncServerIni = pkgs.writeText "syncserver.ini" ''
+ [DEFAULT]
+ overrides = ${cfg.privateConfig}
+
+ [server:main]
+ use = egg:Paste#http
+ host = ${cfg.listen.address}
+ port = ${toString cfg.listen.port}
+
+ [app:main]
+ use = egg:syncserver
+
+ [syncserver]
+ public_url = ${cfg.publicUrl}
+ ${optionalString (cfg.sqlUri != "") "sqluri = ${cfg.sqlUri}"}
+ allow_new_users = ${if cfg.allowNewUsers then "true" else "false"}
+
+ [browserid]
+ backend = tokenserver.verifiers.LocalVerifier
+ audiences = ${removeSuffix "/" cfg.publicUrl}
+ '';
+in
+
+{
+ options = {
+ services.firefox.syncserver = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ example = true;
+ description = ''
+ Whether to enable a Firefox Sync Server, this give the opportunity to
+ Firefox users to store all synchronized data on their own server. To use this
+ server, Firefox users should visit the , and
+ replicate the following change
+
+
+ services.sync.tokenServerURI: http://localhost:5000/token/1.0/sync/1.5
+
+
+ where corresponds to the
+ public url of the server.
+ '';
+ };
+
+ listen.address = mkOption {
+ type = types.str;
+ default = "127.0.0.1";
+ example = "0.0.0.0";
+ description = ''
+ Address on which the sync server listen to.
+ '';
+ };
+
+ listen.port = mkOption {
+ type = types.int;
+ default = 5000;
+ description = ''
+ Port on which the sync server listen to.
+ '';
+ };
+
+ publicUrl = mkOption {
+ type = types.str;
+ default = "http://localhost:5000/";
+ example = "http://sync.example.com/";
+ description = ''
+ Public URL with which firefox users can use to access the sync server.
+ '';
+ };
+
+ allowNewUsers = mkOption {
+ type = types.bool;
+ default = true;
+ example = false;
+ description = ''
+ Whether to allow new-user signups on the server. Only request by
+ existing accounts will be honored.
+ '';
+ };
+
+ sqlUri = mkOption {
+ type = types.str;
+ default = "sqlite:////var/db/firefox-sync-server.db";
+ example = "postgresql://scott:tiger@localhost/test";
+ description = ''
+ The location of the database. This URL is composed of
+ ,
+ where is a database name such as
+ , , ,
+ etc., and the name of a DBAPI, such as
+ , , ,
+ etc. The
+ SQLAlchemy documentation provides more examples and describe the syntax of
+ the expected URL.
+ '';
+ };
+
+ privateConfig = mkOption {
+ type = types.str;
+ default = "/etc/firefox/syncserver-secret.ini";
+ description = ''
+ The private config file is used to extend the generated config with confidential
+ information, such as the setting if it contains a
+ password, and the setting is used by the server to
+ generate cryptographically-signed authentication tokens.
+
+ If this file does not exists, then it is created with a generated
+ settings.
+ '';
+ };
+ };
+ };
+
+ config = mkIf cfg.enable {
+
+ systemd.services.syncserver = {
+ after = [ "network.target" ];
+ description = "Firefox Sync Server";
+ wantedBy = [ "multi-user.target" ];
+ path = [ pkgs.pythonPackages.pasteScript pkgs.coreutils ];
+ environment.PYTHONPATH = "${pkgs.pythonPackages.syncserver}/lib/${pkgs.pythonPackages.python.libPrefix}/site-packages";
+ preStart = ''
+ if ! test -e ${cfg.privateConfig}; then
+ umask u=rwx,g=x,o=x
+ mkdir -p $(dirname ${cfg.privateConfig})
+ echo > ${cfg.privateConfig} '[syncserver]'
+ echo >> ${cfg.privateConfig} "secret = $(head -c 20 /dev/urandom | sha1sum | tr -d ' -')"
+ fi
+ '';
+ serviceConfig.ExecStart = "paster serve ${syncServerIni}";
+ };
+
+ };
+}
diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix
index bb3bf2519d4..679aa81a13d 100644
--- a/nixos/modules/services/printing/cupsd.nix
+++ b/nixos/modules/services/printing/cupsd.nix
@@ -4,7 +4,7 @@ with lib;
let
- inherit (pkgs) cups;
+ inherit (pkgs) cups cups_filters;
cfg = config.services.printing;
@@ -123,6 +123,19 @@ in
'';
};
+ browsedConf = mkOption {
+ type = types.lines;
+ default = "";
+ example =
+ ''
+ BrowsePoll cups.example.com
+ '';
+ description = ''
+ The contents of the configuration. file of the CUPS Browsed daemon
+ (cups-browsed.conf)
+ '';
+ };
+
drivers = mkOption {
type = types.listOf types.path;
example = literalExample "[ pkgs.splix ]";
@@ -161,6 +174,7 @@ in
environment.etc."cups/client.conf".text = cfg.clientConf;
environment.etc."cups/cups-files.conf".text = cfg.cupsFilesConf;
environment.etc."cups/cupsd.conf".text = cfg.cupsdConf;
+ environment.etc."cups/cups-browsed.conf".text = cfg.browsedConf;
services.dbus.packages = [ cups ];
@@ -195,6 +209,22 @@ in
];
};
+ systemd.services.cups-browsed =
+ { description = "Make remote CUPS printers available locally";
+
+ wantedBy = [ "multi-user.target" ];
+ wants = [ "cups.service" "avahi-daemon.service" ];
+ after = [ "cups.service" "avahi-daemon.service" ];
+
+ path = [ cups ];
+
+ serviceConfig.ExecStart = "${cups_filters}/bin/cups-browsed";
+
+ restartTriggers =
+ [ config.environment.etc."cups/cups-browsed.conf".source
+ ];
+ };
+
services.printing.drivers =
[ cups pkgs.ghostscript pkgs.cups_filters additionalBackends
pkgs.perl pkgs.coreutils pkgs.gnused pkgs.bc pkgs.gawk pkgs.gnugrep
diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh
index 3762bda94a5..356a440b17a 100644
--- a/nixos/modules/system/boot/stage-2-init.sh
+++ b/nixos/modules/system/boot/stage-2-init.sh
@@ -91,6 +91,7 @@ mkdir -m 01777 -p /tmp
mkdir -m 0755 -p /var /var/log /var/lib /var/db
mkdir -m 0755 -p /nix/var
mkdir -m 0700 -p /root
+chmod 0700 /root
mkdir -m 0755 -p /bin # for the /bin/sh symlink
mkdir -m 0755 -p /home
mkdir -m 0755 -p /etc/nixos
diff --git a/nixos/modules/system/boot/systemd-unit-options.nix b/nixos/modules/system/boot/systemd-unit-options.nix
index 20851c626d7..2f4786c7896 100644
--- a/nixos/modules/system/boot/systemd-unit-options.nix
+++ b/nixos/modules/system/boot/systemd-unit-options.nix
@@ -58,7 +58,7 @@ let
"simple" "forking" "oneshot" "dbus" "notify" "idle"
])
(assertValueOneOf "Restart" [
- "no" "on-success" "on-failure" "on-abort" "always"
+ "no" "on-success" "on-failure" "on-abnormal" "on-abort" "always"
])
];
diff --git a/nixos/modules/system/etc/setup-etc.pl b/nixos/modules/system/etc/setup-etc.pl
index d7e15eccefc..89a49b972ff 100644
--- a/nixos/modules/system/etc/setup-etc.pl
+++ b/nixos/modules/system/etc/setup-etc.pl
@@ -12,8 +12,8 @@ sub atomicSymlink {
my ($source, $target) = @_;
my $tmp = "$target.tmp";
unlink $tmp;
- symlink $source, $tmp or return 1;
- rename $tmp, $target or return 1;
+ symlink $source, $tmp or return 0;
+ rename $tmp, $target or return 0;
return 1;
}
diff --git a/nixos/modules/testing/test-instrumentation.nix b/nixos/modules/testing/test-instrumentation.nix
index 4b4284d8531..f37bbd0246d 100644
--- a/nixos/modules/testing/test-instrumentation.nix
+++ b/nixos/modules/testing/test-instrumentation.nix
@@ -38,6 +38,11 @@ let kernel = config.boot.kernelPackages.kernel; in
systemd.services."serial-getty@ttyS0".enable = false;
systemd.services."serial-getty@hvc0".enable = false;
+ # Don't use a pager when executing backdoor actions. Because we
+ # use a tty, commands like systemctl or nix-store get confused
+ # into thinking they're running interactively.
+ environment.variables.PAGER = "";
+
boot.initrd.postDeviceCommands =
''
# Using acpi_pm as a clock source causes the guest clock to
diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix
index 3b7f3e248d5..075ec0ea227 100644
--- a/nixos/modules/virtualisation/containers.nix
+++ b/nixos/modules/virtualisation/containers.nix
@@ -194,7 +194,7 @@ in
script =
''
mkdir -p -m 0755 "$root/etc" "$root/var/lib"
- mkdir -p -m 0700 "$root/var/lib/private"
+ mkdir -p -m 0700 "$root/var/lib/private" "$root/root"
if ! [ -e "$root/etc/os-release" ]; then
touch "$root/etc/os-release"
fi
diff --git a/nixos/modules/virtualisation/ec2-data.nix b/nixos/modules/virtualisation/ec2-data.nix
index 93a83a3e42a..15114b1e76a 100644
--- a/nixos/modules/virtualisation/ec2-data.nix
+++ b/nixos/modules/virtualisation/ec2-data.nix
@@ -44,7 +44,7 @@ with lib;
# into the image (a Nova feature).
if ! [ -e /root/.ssh/authorized_keys ]; then
echo "obtaining SSH key..."
- mkdir -p /root/.ssh
+ mkdir -m 0700 -p /root/.ssh
$wget http://169.254.169.254/1.0/meta-data/public-keys/0/openssh-key > /root/key.pub
if [ $? -eq 0 -a -e /root/key.pub ]; then
if ! grep -q -f /root/key.pub /root/.ssh/authorized_keys; then
diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix
index 41c7dd62f3e..4d493b3896f 100644
--- a/nixos/modules/virtualisation/google-compute-image.nix
+++ b/nixos/modules/virtualisation/google-compute-image.nix
@@ -139,7 +139,7 @@ in
# Don't download the SSH key if it has already been downloaded
if ! [ -e /root/.ssh/authorized_keys ]; then
echo "obtaining SSH key..."
- mkdir -p /root/.ssh
+ mkdir -m 0700 -p /root/.ssh
${wget} -O /root/authorized-keys-metadata http://metadata/0.1/meta-data/authorized-keys
if [ $? -eq 0 -a -e /root/authorized-keys-metadata ]; then
cat /root/authorized-keys-metadata | cut -d: -f2- > /root/key.pub
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index 641ff924e14..af9e6365a9f 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -190,6 +190,9 @@ let
$machine->succeed("test -e /boot/grub");
+ # Check whether /root has correct permissions.
+ $machine->succeed("stat -c '%a' /root") =~ /700/ or die;
+
# Did the swap device get activated?
# uncomment once https://bugs.freedesktop.org/show_bug.cgi?id=86930 is resolved
#$machine->waitForUnit("swap.target");
diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix
index 5180be3c940..3142b2c52fc 100644
--- a/pkgs/applications/audio/ardour/default.nix
+++ b/pkgs/applications/audio/ardour/default.nix
@@ -6,7 +6,21 @@
, perl, pkgconfig, python, serd, sord, sratom, suil }:
let
+
+ # Ardour git repo uses a mix of annotated and lightweight tags. Annotated
+ # tags are used for MAJOR.MINOR versioning, and lightweight tags are used
+ # in-between; MAJOR.MINOR.REV where REV is the number of commits since the
+ # last annotated tag. A slightly different version string format is needed
+ # for the 'revision' info that is built into the binary; it is the format of
+ # "git describe" when _not_ on an annotated tag(!): MAJOR.MINOR-REV-HASH.
+
+ # Version to build.
tag = "3.5.403";
+
+ # Version info that is built into the binary. Keep in sync with 'tag'. The
+ # last 8 digits is a (fake) commit id.
+ revision = "3.5-403-00000000";
+
in
stdenv.mkDerivation rec {
@@ -15,7 +29,7 @@ stdenv.mkDerivation rec {
src = fetchgit {
url = git://git.ardour.org/ardour/ardour.git;
rev = "refs/tags/${tag}";
- sha256 = "7d7c8e2c7ccccca6c8324fd874509e1b0d89f3f42cb92982c50d212797463f4c";
+ sha256 = "0k1z8sbjf88dqn12kf9cykrqj38vkr879n2g6b4adk6cghn8wz3x";
};
buildInputs =
@@ -27,10 +41,7 @@ stdenv.mkDerivation rec {
];
patchPhase = ''
- # The funny revision number is from `git describe rev`
- printf '#include "libs/ardour/ardour/revision.h"\nnamespace ARDOUR { const char* revision = \"${tag}-g2f6065b\"; }\n' > libs/ardour/revision.cc
- # Note the different version number
- sed -i '33i rev = \"3.5-380-g2f6065b\"' wscript
+ printf '#include "libs/ardour/ardour/revision.h"\nnamespace ARDOUR { const char* revision = \"${revision}\"; }\n' > libs/ardour/revision.cc
sed 's|/usr/include/libintl.h|${glibc}/include/libintl.h|' -i wscript
sed -e 's|^#!/usr/bin/perl.*$|#!${perl}/bin/perl|g' -i tools/fmt-bindings
sed -e 's|^#!/usr/bin/env.*$|#!${perl}/bin/perl|g' -i tools/*.pl
diff --git a/pkgs/applications/misc/3dfsb/default.nix b/pkgs/applications/misc/3dfsb/default.nix
new file mode 100644
index 00000000000..96bcfbd6bfe
--- /dev/null
+++ b/pkgs/applications/misc/3dfsb/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, makeWrapper, glibc, fetchgit, pkgconfig, SDL, SDL_image, SDL_stretch,
+ mesa, mesa_glu, freeglut, gst_all_1, gtk2, file, imagemagick }:
+
+stdenv.mkDerivation {
+ name = "3dfsb-1.0";
+
+ meta = with stdenv.lib; {
+ description = "3D File System Browser - cleaned up and improved fork of the old tdfsb which runs on GNU/Linux and should also run on BeOS/Haiku and FreeBSD";
+ homepage = "https://github.com/tomvanbraeckel/3dfsb";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ eduarrrd ];
+ };
+
+ src = fetchgit {
+ url = "git://github.com/tomvanbraeckel/3dfsb.git";
+ rev = "a69a9dfad42acbe2816328d11b58b65f4186c4c5";
+ sha256 = "191ndg4vfanjfx4qh186sszyy4pphx3l41rchins9mg8y5rm5ffp";
+ };
+
+ buildInputs = with gst_all_1; [ makeWrapper glibc pkgconfig SDL SDL_image SDL_stretch mesa_glu freeglut gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav gtk2 file imagemagick ];
+
+ buildPhase = "sh ./compile.sh";
+ dontStrip = true;
+
+ installPhase = "mkdir $out/bin/ && cp 3dfsb $out/bin/";
+
+ preFixup = ''
+ wrapProgram $out/bin/3dfsb \
+ --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \
+ '';
+}
diff --git a/pkgs/applications/misc/cortex/default.nix b/pkgs/applications/misc/cortex/default.nix
new file mode 100644
index 00000000000..79d19f45a25
--- /dev/null
+++ b/pkgs/applications/misc/cortex/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchgit, python3 }:
+
+stdenv.mkDerivation {
+ name = "cortex";
+
+ src = fetchgit {
+ url = "https://github.com/gglucas/cortex";
+ rev = "e749de6c21aae02386f006fd0401d22b9dcca424";
+ sha256 = "d5d59c5257107344122c701eb370f3740f9957b6b898ac798d797a4f152f614c";
+ };
+
+ buildInputs = [ stdenv python3 ];
+
+ prePatch = ''
+ substituteInPlace cortex --replace "/usr/bin/env python3" "${python3}/bin/python3"
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp cortex $out/bin/
+ chmod +x $out/bin/cortex
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = "http://cortex.glacicle.org";
+ description = "An ncurses reddit browser and monitor";
+ license = licenses.mit;
+ maintainers = with maintainers; [ matthiasbeyer ];
+ };
+
+}
diff --git a/pkgs/applications/misc/ctodo/default.nix b/pkgs/applications/misc/ctodo/default.nix
new file mode 100644
index 00000000000..3978a369d06
--- /dev/null
+++ b/pkgs/applications/misc/ctodo/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, cmake, fetchurl, ncurses }:
+
+let
+ version = "1.1";
+in
+stdenv.mkDerivation {
+ name = "ctodo-${version}";
+
+ src = fetchurl {
+ url = "https://github.com/Acolarh/ctodo/archive/v1.1.tar.gz";
+ sha256 = "1sv5p1b08pp73qshakz4qy4pjglxz2pvx2cjfx52i3532hd3xcaf";
+ };
+
+ buildInputs = [ stdenv cmake ncurses ];
+
+ configurePhase = ''
+ cmake -DCMAKE_INSTALL_PREFIX=$out .
+ '';
+
+ meta = {
+ homepage = "http://ctodo.apakoh.dk/";
+ description = "A simple ncurses-based task list manager.";
+ license = stdenv.lib.licenses.mit;
+ maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/pytrainer/default.nix b/pkgs/applications/misc/pytrainer/default.nix
new file mode 100644
index 00000000000..843d0ab93d8
--- /dev/null
+++ b/pkgs/applications/misc/pytrainer/default.nix
@@ -0,0 +1,48 @@
+{ stdenv, fetchurl, pythonPackages, sqlite, gpsbabel }:
+
+let
+
+ # Pytrainer needs a matplotlib with GTK backend. Also ensure we are
+ # using the pygtk with glade support as needed by pytrainer.
+ matplotlibGtk = pythonPackages.matplotlib.override {
+ enableGtk2 = true;
+ pygtk = pythonPackages.pyGtkGlade;
+ };
+
+in
+
+pythonPackages.buildPythonPackage rec {
+ name = "pytrainer-${version}";
+ version = "1.10.0";
+
+ src = fetchurl {
+ url = "https://github.com/pytrainer/pytrainer/archive/v${version}.tar.gz";
+ sha256 = "0l42p630qhymgrcvxgry8chrpzcp6nr3d1vd7vhifh2npfq9l09y";
+ };
+
+ namePrefix = "";
+
+ # The existing use of pywebkitgtk shows raw HTML text instead of
+ # map. This patch solves the problems by showing the file from a
+ # string, which allows setting an explicit MIME type.
+ patches = [ ./pytrainer-webkit.patch ];
+
+ pythonPath = with pythonPackages; [
+ dateutil lxml matplotlibGtk pyGtkGlade pywebkitgtk
+ sqlalchemy sqlalchemy_migrate
+ ];
+
+ buildInputs = [gpsbabel sqlite] ++ pythonPath;
+
+ # This package contains no binaries to patch or strip.
+ dontPatchELF = true;
+ dontStrip = true;
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/pytrainer/pytrainer/wiki;
+ description = "Application for logging and graphing sporting excursions";
+ maintainers = [ maintainers.rycee ];
+ license = licenses.gpl2Plus;
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/pytrainer/pytrainer-webkit.patch b/pkgs/applications/misc/pytrainer/pytrainer-webkit.patch
new file mode 100644
index 00000000000..0f894c46a53
--- /dev/null
+++ b/pkgs/applications/misc/pytrainer/pytrainer-webkit.patch
@@ -0,0 +1,14 @@
+diff -Nurp pytrainer-1.10.0-orig/pytrainer/extensions/mapviewer.py pytrainer-1.10.0/pytrainer/extensions/mapviewer.py
+--- pytrainer-1.10.0-orig/pytrainer/extensions/mapviewer.py 2013-03-31 12:28:29.000000000 +0200
++++ pytrainer-1.10.0/pytrainer/extensions/mapviewer.py 2014-12-22 11:44:44.367032126 +0100
+@@ -46,7 +46,9 @@ class MapViewer:
+ logging.debug(">>")
+ if htmlfile is None:
+ htmlfile = self.createErrorHtml()
+- self.wkview.load_uri("file://%s" % (htmlfile))
++ content = open(htmlfile, 'r').read()
++ self.wkview.load_string(content, 'text/html', 'UTF-8', 'file:///')
++ #self.wkview.load_uri("file://%s" % (htmlfile))
+ #self.box.show_all()
+ logging.debug("<<")
+
diff --git a/pkgs/applications/misc/stag/default.nix b/pkgs/applications/misc/stag/default.nix
new file mode 100644
index 00000000000..8856e5be52f
--- /dev/null
+++ b/pkgs/applications/misc/stag/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchgit, curses }:
+
+stdenv.mkDerivation {
+ name = "stag-1.0";
+
+ src = fetchgit {
+ url = https://github.com/seenaburns/stag.git;
+ rev = "90e2964959ea8242349250640d24cee3d1966ad6";
+ sha256 = "88628dfa07a0772c7eca0cc66ef2d8f3e20297deec021c776a82fe1323bafb0f";
+ };
+
+ buildInputs = [ stdenv curses ];
+
+ installPhase = ''
+ make install PREFIX=$out
+ '';
+
+ meta = {
+ homepage = "https://github.com/seenaburns/stag";
+ description = "Terminal streaming bar graph passed through stdin";
+ license = stdenv.lib.licenses.bsdOriginal;
+ maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
+ };
+}
diff --git a/pkgs/applications/misc/taskwarrior/default.nix b/pkgs/applications/misc/taskwarrior/default.nix
index 51bb13eb55e..35bba7ee28c 100644
--- a/pkgs/applications/misc/taskwarrior/default.nix
+++ b/pkgs/applications/misc/taskwarrior/default.nix
@@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake libuuid gnutls ];
+ postInstall = ''
+ mkdir -p "$out/etc/bash_completion.d"
+ ln -s "../../share/doc/task/scripts/bash/task.sh" "$out/etc/bash_completion.d/"
+ '';
+
meta = {
description = "GTD (getting things done) implementation";
homepage = http://taskwarrior.org;
diff --git a/pkgs/applications/misc/xiphos/default.nix b/pkgs/applications/misc/xiphos/default.nix
index d2739dbec50..78d49939677 100644
--- a/pkgs/applications/misc/xiphos/default.nix
+++ b/pkgs/applications/misc/xiphos/default.nix
@@ -12,11 +12,11 @@
stdenv.mkDerivation rec {
name = "xiphos-${version}";
- version = "3.2.2";
+ version = "4.0.0";
src = fetchurl {
url = "http://downloads.sourceforge.net/project/gnomesword/Xiphos/${version}/${name}.tar.gz";
- sha256 = "1imd3v8knb5y3kddlfzp67p927zpfy0adjri89n7vcnipb9fy9i3";
+ sha256 = "0rk9xhnaqm17af9ppjf2yqpy9p8s0z7m5ax586b7p16lylcqjh68";
};
buildInputs = [ pkgconfig python intltool docbook2x docbook_xml_dtd_412 libxslt
diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix
index dbb93b69019..db69301044a 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix
@@ -4,185 +4,183 @@
# ruby generate_source.rb > source.nix
{
- version = "34.0.5";
+ version = "35.0";
sources = [
- { locale = "ach"; arch = "linux-i686"; sha1 = "2122f58004eec918c2a6f30e6d8a35fcee793f8d"; }
- { locale = "ach"; arch = "linux-x86_64"; sha1 = "c304799de726df6c6c99aa4d7b2cc2ae552b92c1"; }
- { locale = "af"; arch = "linux-i686"; sha1 = "1e367d63ab86049ba4f3f4121fd3a9531a9cd00f"; }
- { locale = "af"; arch = "linux-x86_64"; sha1 = "1e2d3e17bed3aac9e53493f25d1e9a22a70f2710"; }
- { locale = "an"; arch = "linux-i686"; sha1 = "cba77e9401b2ce16030cc46e7083c0a87c244165"; }
- { locale = "an"; arch = "linux-x86_64"; sha1 = "adc7bb9a86596332c37a3cab118942c4953ec7e9"; }
- { locale = "ar"; arch = "linux-i686"; sha1 = "59a85dcbc756752ff2ba07ffb12fecf10beb2bf9"; }
- { locale = "ar"; arch = "linux-x86_64"; sha1 = "0c9b4c4ef3d39e3e44885359e1a85e03c47b57e3"; }
- { locale = "as"; arch = "linux-i686"; sha1 = "69633541cad0a8fbf1798d4b47047adc2ac23cf3"; }
- { locale = "as"; arch = "linux-x86_64"; sha1 = "b628ace403803425ab5f8e485f1107ace00e36a4"; }
- { locale = "ast"; arch = "linux-i686"; sha1 = "adefb5324db5cb21ed46c2edee4b476e451d39d5"; }
- { locale = "ast"; arch = "linux-x86_64"; sha1 = "734cbe739065246084cc452ca60e79248b3abada"; }
- { locale = "az"; arch = "linux-i686"; sha1 = "12a7a57784563982df4fa9c7da1e0ff830afe81f"; }
- { locale = "az"; arch = "linux-x86_64"; sha1 = "b8713205b616a81cea2675e477ef29db576f1ab0"; }
- { locale = "be"; arch = "linux-i686"; sha1 = "cb60c04c2abab2ad59d6e19a08a425744f0135a9"; }
- { locale = "be"; arch = "linux-x86_64"; sha1 = "b1bd0faf18a2f1cb7617d7c1946d586ec7db2fd1"; }
- { locale = "bg"; arch = "linux-i686"; sha1 = "c260de634b14ed00a2396f09871fa726c5b24d09"; }
- { locale = "bg"; arch = "linux-x86_64"; sha1 = "0a723d9d1b5abadb8250b9be5e6af8b7615231c4"; }
- { locale = "bn-BD"; arch = "linux-i686"; sha1 = "292e7f58b2ca6b603949cc22965de0e568811dfb"; }
- { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "c6f8afcd2e2269c5092dce8779e6068fd2e09540"; }
- { locale = "bn-IN"; arch = "linux-i686"; sha1 = "3d93fbcb16a6161740cdee5c91fb2b9e6d5de77a"; }
- { locale = "bn-IN"; arch = "linux-x86_64"; sha1 = "570cb383c4dcd09f90a02aa6898504295cad25e6"; }
- { locale = "br"; arch = "linux-i686"; sha1 = "92fb316eae04d94320dd623d22d7b8c2a76018f6"; }
- { locale = "br"; arch = "linux-x86_64"; sha1 = "a7410ed0ec67ae9746f652177664c292b727fdfc"; }
- { locale = "bs"; arch = "linux-i686"; sha1 = "7f08e9920875f59b6df051acc68d1bb508615396"; }
- { locale = "bs"; arch = "linux-x86_64"; sha1 = "654d90383abc26272d017b914627516b3aa33147"; }
- { locale = "ca"; arch = "linux-i686"; sha1 = "645133ed542917fa32518279b375cf9dc4149dd7"; }
- { locale = "ca"; arch = "linux-x86_64"; sha1 = "3eaff9df7e51971f9c1e37028430f0159ddcda9c"; }
- { locale = "cs"; arch = "linux-i686"; sha1 = "4b283d1393fe06c80f412848b146295519e1957d"; }
- { locale = "cs"; arch = "linux-x86_64"; sha1 = "5830a2bc46234d1adac6127fd470223ff750f5e7"; }
- { locale = "csb"; arch = "linux-i686"; sha1 = "36c7bd7ccafdd5225d6f6dcde6928e4ca9aff603"; }
- { locale = "csb"; arch = "linux-x86_64"; sha1 = "e5070bc33436df13e68e9ce63f091b1f60a96b5d"; }
- { locale = "cy"; arch = "linux-i686"; sha1 = "7f6e35e997082406036864fb1cfc4bfd9380d156"; }
- { locale = "cy"; arch = "linux-x86_64"; sha1 = "2c2ac492181ccdf10ae88c6cf1ec14a9d81c6019"; }
- { locale = "da"; arch = "linux-i686"; sha1 = "cf2be147f015d40d0eecc1f00326856b06acdedd"; }
- { locale = "da"; arch = "linux-x86_64"; sha1 = "01804683989d0731826d7dda67d6d7a46fb8de48"; }
- { locale = "de"; arch = "linux-i686"; sha1 = "be8909ee0a9cf86869479c9173ea20f27d6e841a"; }
- { locale = "de"; arch = "linux-x86_64"; sha1 = "377f54230cbe9d8dfd6242043fc8e9e43e392688"; }
- { locale = "dsb"; arch = "linux-i686"; sha1 = "d50f0fca6b2036aca565a694bf70112121acc009"; }
- { locale = "dsb"; arch = "linux-x86_64"; sha1 = "f532c3ac7f45682aa916f5cde32c5921a83fe9cf"; }
- { locale = "el"; arch = "linux-i686"; sha1 = "2cf025815a5b9d7c1b7f353a592b700377797ff2"; }
- { locale = "el"; arch = "linux-x86_64"; sha1 = "2a3c3b79072d6196cfcd00d4ffe546415e5c3c2b"; }
- { locale = "en-GB"; arch = "linux-i686"; sha1 = "c638ac1b0f94d7afdf52b580108d9d9f0fbb4642"; }
- { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "3a89c58a1a391268de63de380f379cf47956873c"; }
- { locale = "en-US"; arch = "linux-i686"; sha1 = "9f83d949c426b798268a038c1173bad1efb8076f"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha1 = "e9f99d0fd1fadd62ba44606f0fe67cc829b64da3"; }
- { locale = "en-ZA"; arch = "linux-i686"; sha1 = "a84f15bb02673c849721290858de31ca9697448f"; }
- { locale = "en-ZA"; arch = "linux-x86_64"; sha1 = "28984e2a5d91f27247eb40db48f3055a24e77f3c"; }
- { locale = "eo"; arch = "linux-i686"; sha1 = "9951a09c2132d468ff1b8c647af195ddb3ecb050"; }
- { locale = "eo"; arch = "linux-x86_64"; sha1 = "ec90facdeced4b969547a8193dc9f196a13a5c0c"; }
- { locale = "es-AR"; arch = "linux-i686"; sha1 = "a4df107f065e950fe2702871fb10d1d7ddc704dc"; }
- { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "6cd0464702921be32a70eb5b68be45f5f6a65ff4"; }
- { locale = "es-CL"; arch = "linux-i686"; sha1 = "21325f12a6ed59c471a86a8273efd76fdc9dc3bd"; }
- { locale = "es-CL"; arch = "linux-x86_64"; sha1 = "b6660728d8ac2ba89a9bb522a8fd7552c7b0fd84"; }
- { locale = "es-ES"; arch = "linux-i686"; sha1 = "00b2c86d3f7f6431760e2bdf6228090b46703b21"; }
- { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "d75ee1d75eb8c1d7f43fd082575cdb9d5657a719"; }
- { locale = "es-MX"; arch = "linux-i686"; sha1 = "6e7d188ae57eeb457a5af93cef77a3e0fd3e4138"; }
- { locale = "es-MX"; arch = "linux-x86_64"; sha1 = "905ae336894a4d7efdfd5890c43579fcbc4f63e6"; }
- { locale = "et"; arch = "linux-i686"; sha1 = "49f5495d4fe4166f46f3d2cc784b0adadad40973"; }
- { locale = "et"; arch = "linux-x86_64"; sha1 = "80706f89b23dd019718888c2308596ec63c0cd6c"; }
- { locale = "eu"; arch = "linux-i686"; sha1 = "2531d3d157aee3c20616fd94606668cc78ce71f5"; }
- { locale = "eu"; arch = "linux-x86_64"; sha1 = "6c84eab337a4b43d604f34e7ea2b563500a52f37"; }
- { locale = "fa"; arch = "linux-i686"; sha1 = "61fe70954eca24f1d7fa8908f6cfaab1b4abfad2"; }
- { locale = "fa"; arch = "linux-x86_64"; sha1 = "f43b28a2b0af9ba18da35c69824370cec628d056"; }
- { locale = "ff"; arch = "linux-i686"; sha1 = "2c1f4c5a2f3639328af873e59afd6c6a479f69ae"; }
- { locale = "ff"; arch = "linux-x86_64"; sha1 = "8737e7d4263e66fafbf372568587173e58816f6a"; }
- { locale = "fi"; arch = "linux-i686"; sha1 = "3a5b5171449e3629b0e22d08a9bf9a5bb0428a19"; }
- { locale = "fi"; arch = "linux-x86_64"; sha1 = "1c901117715d8ac9d869bd79d7ffda778562b4bd"; }
- { locale = "fr"; arch = "linux-i686"; sha1 = "3962280160df7f786cc26275025976df9c267174"; }
- { locale = "fr"; arch = "linux-x86_64"; sha1 = "cc2f1f433b88b5f73e5c7e4683d85e5275720734"; }
- { locale = "fy-NL"; arch = "linux-i686"; sha1 = "ed2b578e76aa9e56a85d3a02a3d9d6d25e07d624"; }
- { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "110741b45050dbc896424a6e9cf32b9f8555d657"; }
- { locale = "ga-IE"; arch = "linux-i686"; sha1 = "32fa55c45a7fbd57a7823135e87c288d463440ee"; }
- { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "4d0c00130026b892cfc259d8ffb6c57338e8398d"; }
- { locale = "gd"; arch = "linux-i686"; sha1 = "2fbafdbe1218eb34ec48a5d92904c0bd07b23690"; }
- { locale = "gd"; arch = "linux-x86_64"; sha1 = "90810697ad8206eced9e4c4330c9242c4f3baafa"; }
- { locale = "gl"; arch = "linux-i686"; sha1 = "2be76249fc1afde7ed156beb5df2d2eef50a485e"; }
- { locale = "gl"; arch = "linux-x86_64"; sha1 = "d400c5692a767b14dabce47303aa195bc17af3c5"; }
- { locale = "gu-IN"; arch = "linux-i686"; sha1 = "15704df5ff619aa6818521904d557eea65165206"; }
- { locale = "gu-IN"; arch = "linux-x86_64"; sha1 = "c19923c4e9d5ae89bf9f1aa441b9f92d6f2fd02c"; }
- { locale = "he"; arch = "linux-i686"; sha1 = "39694a4f966ad488ff77592dc490302449104df3"; }
- { locale = "he"; arch = "linux-x86_64"; sha1 = "deb058d0798eadc5fe3920996421d86d446ca82e"; }
- { locale = "hi-IN"; arch = "linux-i686"; sha1 = "8d28e60f8920001184dc20cc1f381f9474c9a6fd"; }
- { locale = "hi-IN"; arch = "linux-x86_64"; sha1 = "3e9c18fc995fc013d3bd8bc87f8accc951599e79"; }
- { locale = "hr"; arch = "linux-i686"; sha1 = "6ced9bd6614b921600cca7520c8698f265087a31"; }
- { locale = "hr"; arch = "linux-x86_64"; sha1 = "8ef625b32212c387a367b8059c4d0bf62d5814da"; }
- { locale = "hsb"; arch = "linux-i686"; sha1 = "49ecea386737f963db43f8c13c8d7e9b036523f3"; }
- { locale = "hsb"; arch = "linux-x86_64"; sha1 = "7aba537cb8ffc7b7106dba4b378024c5a0356652"; }
- { locale = "hu"; arch = "linux-i686"; sha1 = "1d406c76c8846b4ec81e62a958d662b582f75357"; }
- { locale = "hu"; arch = "linux-x86_64"; sha1 = "4f582fd196573f5ab1c93dc6652a2e86617a0be7"; }
- { locale = "hy-AM"; arch = "linux-i686"; sha1 = "d71daf124c8a16d4bd1d9d17df47cf10d5a5137c"; }
- { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "b8f124244441a6ce474860731452760e92e575c4"; }
- { locale = "id"; arch = "linux-i686"; sha1 = "8e4c0ec82aaeee6fdcf7541f6fd0bab8811ec5ae"; }
- { locale = "id"; arch = "linux-x86_64"; sha1 = "3b6a5ff08f1c7f81c0da50fa7d2ed17e7d7da645"; }
- { locale = "is"; arch = "linux-i686"; sha1 = "0aa678cd3b58706ac7d9a36399abcc3a8f05a894"; }
- { locale = "is"; arch = "linux-x86_64"; sha1 = "e2a815e45fd6c20b37085aea0b2fe6e23848fde7"; }
- { locale = "it"; arch = "linux-i686"; sha1 = "8213e082043b61872df49709732d0f209956f858"; }
- { locale = "it"; arch = "linux-x86_64"; sha1 = "f411672ad5fb62ddc6cc2f9e89fea611de0d6356"; }
- { locale = "ja"; arch = "linux-i686"; sha1 = "a540dd09786c0701a1ec22adbd1a19d6cbf0eb60"; }
- { locale = "ja"; arch = "linux-x86_64"; sha1 = "decfa3a81bd81c0d04c62d1ff70858bcbfe505c2"; }
- { locale = "kk"; arch = "linux-i686"; sha1 = "bfda7cdf57eafd6248bd5f32cf6ba84a3a05f202"; }
- { locale = "kk"; arch = "linux-x86_64"; sha1 = "6a12ec04401251b9382a8b8b927f4684f7268971"; }
- { locale = "km"; arch = "linux-i686"; sha1 = "06dc00c095690aa1eabd87d3dd425d3481349a09"; }
- { locale = "km"; arch = "linux-x86_64"; sha1 = "901e1755688474d888ebcc524ca6912280fa5c11"; }
- { locale = "kn"; arch = "linux-i686"; sha1 = "ccc86b5b46f3444f0a09b8d70ba804a9245e55f4"; }
- { locale = "kn"; arch = "linux-x86_64"; sha1 = "b84394b314bd99a0bf856e0330d537f14dc624f1"; }
- { locale = "ko"; arch = "linux-i686"; sha1 = "3e3d97975c5c67db99785ccca608ad170e870523"; }
- { locale = "ko"; arch = "linux-x86_64"; sha1 = "1575641404e5b6239745eeae202ddbb5b8ede6d0"; }
- { locale = "lij"; arch = "linux-i686"; sha1 = "4abdf303280a82ededf5cb2a8433f169a4d2959a"; }
- { locale = "lij"; arch = "linux-x86_64"; sha1 = "974f1c26ee02e3eb20daf8cb7a991e83dbeb8c60"; }
- { locale = "lt"; arch = "linux-i686"; sha1 = "18cdb106a6866bb1ce33c3712011602e2503799e"; }
- { locale = "lt"; arch = "linux-x86_64"; sha1 = "fbf52dab19307bf8f8b7d84e32d7bcddfcb4693b"; }
- { locale = "lv"; arch = "linux-i686"; sha1 = "a383ddf03d269575eee7b7fe44ae334aa8d648e9"; }
- { locale = "lv"; arch = "linux-x86_64"; sha1 = "91f4b3cfbd5651e0227e2d9c40cbc1eda94e3413"; }
- { locale = "mai"; arch = "linux-i686"; sha1 = "62318920bdcb6aa26fb31e2b80e861eeef0f4da6"; }
- { locale = "mai"; arch = "linux-x86_64"; sha1 = "1811f361ed1b6d2864f0e7cc3950668ba8633288"; }
- { locale = "mk"; arch = "linux-i686"; sha1 = "9b2f802e0543719a3fa13027b283af062278466e"; }
- { locale = "mk"; arch = "linux-x86_64"; sha1 = "5b22cb28cfd1390dce8534674fcecb201f431ebd"; }
- { locale = "ml"; arch = "linux-i686"; sha1 = "25862ddddd1d9f7ddcbff8780a39ab2609fdff74"; }
- { locale = "ml"; arch = "linux-x86_64"; sha1 = "eb5fa58184b6bd10434c5371834eaf2ee343bb6e"; }
- { locale = "mr"; arch = "linux-i686"; sha1 = "b4dc26f1d52da326046173765832c8e06eb27adb"; }
- { locale = "mr"; arch = "linux-x86_64"; sha1 = "d8e5968afee45607b2874845f2782add083f3d0a"; }
- { locale = "ms"; arch = "linux-i686"; sha1 = "fce3550b0e03cf6c78d55f1e89afe27bea3ed0fa"; }
- { locale = "ms"; arch = "linux-x86_64"; sha1 = "7bc8f231ac82827d9095ce896cb16f60c92b1053"; }
- { locale = "nb-NO"; arch = "linux-i686"; sha1 = "7d077713f9cf02833fa9e3ef69a5dac11d88f59e"; }
- { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "642851c8ead7a0e673d9d8d0329a551cd9282337"; }
- { locale = "nl"; arch = "linux-i686"; sha1 = "f0cd799d98840d8ca7825caac582035761347a94"; }
- { locale = "nl"; arch = "linux-x86_64"; sha1 = "beaa7e385b655c82999dc38eb39af31e7e9de69a"; }
- { locale = "nn-NO"; arch = "linux-i686"; sha1 = "04ed2d080ef687b0504f3d42bea97b2e56876795"; }
- { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "857fbeef81cf00def5eaaa02effb1731eac15a1f"; }
- { locale = "or"; arch = "linux-i686"; sha1 = "a208556246b7574d5e71eec8a56d8a2ab3c43767"; }
- { locale = "or"; arch = "linux-x86_64"; sha1 = "f7b223bfe82d2ab7a0f2dba0b93e682ef5c833e3"; }
- { locale = "pa-IN"; arch = "linux-i686"; sha1 = "b67c2aa36065ece0526a280cbe33adcb38a20843"; }
- { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "73aef7a4e318625d18cade40090ec112667de295"; }
- { locale = "pl"; arch = "linux-i686"; sha1 = "3446a41365fb0852684d0808d1fa85ddabcf0958"; }
- { locale = "pl"; arch = "linux-x86_64"; sha1 = "0c1b1f1279e1639e71acdccaa4a687bf26aca19f"; }
- { locale = "pt-BR"; arch = "linux-i686"; sha1 = "a3ec0b02796f67a798bbb895cf926f9bd7ccbe8d"; }
- { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "e3b74fcb0ec26c440acedfe282a3ef0902a10d2b"; }
- { locale = "pt-PT"; arch = "linux-i686"; sha1 = "0b942ec4a8fee50595a7b34e76636bfa83d2dfc0"; }
- { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "d20698edd8193185342c2487433af4ea39fb6a3a"; }
- { locale = "rm"; arch = "linux-i686"; sha1 = "442b8ac786b05e655b415a76427cca7ee0aa1abf"; }
- { locale = "rm"; arch = "linux-x86_64"; sha1 = "250cb2a8e3fe869ae150de97b15e6d8f8fd30da3"; }
- { locale = "ro"; arch = "linux-i686"; sha1 = "3a796ab446e77064ad3a094464c54d578b5ca910"; }
- { locale = "ro"; arch = "linux-x86_64"; sha1 = "a512c2bd2cdd21f108ff1f77a747c606f28f8621"; }
- { locale = "ru"; arch = "linux-i686"; sha1 = "2a907a348dd1f61e2ee8b6027e2085ee2e7e71bf"; }
- { locale = "ru"; arch = "linux-x86_64"; sha1 = "228cad14512e25a445c1a5a92262ddf8fbb2f5c5"; }
- { locale = "si"; arch = "linux-i686"; sha1 = "69ad63bfa75e1279bdcfe3d4127d83bb49b134b4"; }
- { locale = "si"; arch = "linux-x86_64"; sha1 = "851e02e6ab551af88f41655cb3fe15883e536a62"; }
- { locale = "sk"; arch = "linux-i686"; sha1 = "56c439e0dca6d75aa218e995187d10c0f88d3390"; }
- { locale = "sk"; arch = "linux-x86_64"; sha1 = "43b69972b4e785069eba3ca7db1d8563f5ea76d8"; }
- { locale = "sl"; arch = "linux-i686"; sha1 = "64bad6a92fa3eb1c98e2ce038e4fafdddb699690"; }
- { locale = "sl"; arch = "linux-x86_64"; sha1 = "ace07b787362d893be563c9d59ec7e616f3a1d11"; }
- { locale = "son"; arch = "linux-i686"; sha1 = "6a027929d81d9c36f62d0f092d4d7f1451713077"; }
- { locale = "son"; arch = "linux-x86_64"; sha1 = "ebb4fd0f3dcabefd3d5e19a67d3e0e02a70918fa"; }
- { locale = "sq"; arch = "linux-i686"; sha1 = "3048cc7c6837dbad7c654b37b44ee1c3a588633c"; }
- { locale = "sq"; arch = "linux-x86_64"; sha1 = "d4ef1a51d0bf973fe4bfc614f8878f021ec46f5b"; }
- { locale = "sr"; arch = "linux-i686"; sha1 = "d10e7c6619d2a2879eaab9d8c3a1a7f7458f60bb"; }
- { locale = "sr"; arch = "linux-x86_64"; sha1 = "5b140de3d590ea84f91165396b7e154acc247172"; }
- { locale = "sv-SE"; arch = "linux-i686"; sha1 = "57efc1f16710acd31a6db186673995f0713dba6f"; }
- { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "d65d51b861eb62a5cdc99491f3c91dbb02638511"; }
- { locale = "ta"; arch = "linux-i686"; sha1 = "aead4b55accc679c8fd49a099d12de95410bc480"; }
- { locale = "ta"; arch = "linux-x86_64"; sha1 = "fcca6081e4fa248f86d77bc8d7aad658e82ef4c7"; }
- { locale = "te"; arch = "linux-i686"; sha1 = "dbcdd1cc740d82f075c71bb6e3d087312ab7700d"; }
- { locale = "te"; arch = "linux-x86_64"; sha1 = "901df9c92377dec49e66b17c7efd5a3d8f8ea5d5"; }
- { locale = "th"; arch = "linux-i686"; sha1 = "a150db665c6a1e5ceb3d6a27896431890b5631c5"; }
- { locale = "th"; arch = "linux-x86_64"; sha1 = "144489c6c53d1fdc32a42d2ebb6905946369c70a"; }
- { locale = "tr"; arch = "linux-i686"; sha1 = "ccfc01ef15ee5345a2f0e07b1c4bcf8ac4459554"; }
- { locale = "tr"; arch = "linux-x86_64"; sha1 = "563862e9a8b355b12c3dca36fc4d8c219707820a"; }
- { locale = "uk"; arch = "linux-i686"; sha1 = "9885b14de8ca7d1a25adec103e245dc6d54c226d"; }
- { locale = "uk"; arch = "linux-x86_64"; sha1 = "8d9d3e4a14d0288dc6d82cb652752712e0e4b577"; }
- { locale = "vi"; arch = "linux-i686"; sha1 = "a70b8c7d9a7bbda992faf8f3762e55412b12a08d"; }
- { locale = "vi"; arch = "linux-x86_64"; sha1 = "17661185644f68902eb946a3cd179c77f9681881"; }
- { locale = "xh"; arch = "linux-i686"; sha1 = "1f1c9a8c1a614e5855d7303d808e661e54536de9"; }
- { locale = "xh"; arch = "linux-x86_64"; sha1 = "17490957c9f3064ea5ea35562c0d669a557ea1ae"; }
- { locale = "zh-CN"; arch = "linux-i686"; sha1 = "5140d26ab69f0645ae512d8a9d277ae6efc7dc45"; }
- { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "cc09fcde7062e5bac4952b239354152855b8c52a"; }
- { locale = "zh-TW"; arch = "linux-i686"; sha1 = "e923cb157faa256852ead1aef8e1c5e420e4fb27"; }
- { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "d801a229474eaee5229137f2e69629abdf60e36b"; }
+ { locale = "ach"; arch = "linux-i686"; sha1 = "171c24f002bceacbe7a29ca807f3e13cab20cb09"; }
+ { locale = "ach"; arch = "linux-x86_64"; sha1 = "4b9936b23e3a14603a87fbc3ca3ffdf6cac51ab3"; }
+ { locale = "af"; arch = "linux-i686"; sha1 = "2ec4b773acddb8b7ca6edd77c87d7f6018eebe6a"; }
+ { locale = "af"; arch = "linux-x86_64"; sha1 = "3ff150a7956464802550de974901d77f8fdeaa2c"; }
+ { locale = "an"; arch = "linux-i686"; sha1 = "c87ab9f8d6ff800b8d4524fbb31f5eda93f04d0b"; }
+ { locale = "an"; arch = "linux-x86_64"; sha1 = "4424f5a5ee97ef17786242c0ed8fbd235892792c"; }
+ { locale = "ar"; arch = "linux-i686"; sha1 = "626055151dbd2b6324b9a78f0d52f908d851ef27"; }
+ { locale = "ar"; arch = "linux-x86_64"; sha1 = "46eb6f9a7d79ab0935e53f8adcbb39ef9eb23958"; }
+ { locale = "as"; arch = "linux-i686"; sha1 = "5bdb6329d9b87e844f54c76e6a1d3a01bb549a47"; }
+ { locale = "as"; arch = "linux-x86_64"; sha1 = "c3d9a75ed9624f55b28be6537e66d3d008f2f8e0"; }
+ { locale = "ast"; arch = "linux-i686"; sha1 = "afdef9abc432e29db0105359436feb799cf4b4d8"; }
+ { locale = "ast"; arch = "linux-x86_64"; sha1 = "6bc04d5d929b6e8c507080d7d9c6a38cdbd8cdfc"; }
+ { locale = "az"; arch = "linux-i686"; sha1 = "08c01dbc10d092dd1bed279b61a718494f306934"; }
+ { locale = "az"; arch = "linux-x86_64"; sha1 = "7cd459c801cb13a632bf8dbe0e935924731378be"; }
+ { locale = "be"; arch = "linux-i686"; sha1 = "1086d708700b1e78943aff8b5525fefdc57f6b4b"; }
+ { locale = "be"; arch = "linux-x86_64"; sha1 = "61ef1b7d3e7f10024a688940177906094504375e"; }
+ { locale = "bg"; arch = "linux-i686"; sha1 = "63c097425c56a2aebd6519013bd39719e22b8869"; }
+ { locale = "bg"; arch = "linux-x86_64"; sha1 = "d2f27d7c96ff11b03f44f7d1aee9b2f0b042946e"; }
+ { locale = "bn-BD"; arch = "linux-i686"; sha1 = "cf9368ef310017d68c06eb1cbb14e83656adb94f"; }
+ { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "c45797b2747cf9688250c3b9816b31333c76218c"; }
+ { locale = "bn-IN"; arch = "linux-i686"; sha1 = "a664464f41b2bc8cdcb6f9cbf2945da66743f923"; }
+ { locale = "bn-IN"; arch = "linux-x86_64"; sha1 = "4b17670ee1204fe6fc99ac60466b630a67fb377d"; }
+ { locale = "br"; arch = "linux-i686"; sha1 = "004c18d0270d0964b69b9d574ee0085f95f79d5f"; }
+ { locale = "br"; arch = "linux-x86_64"; sha1 = "974c674138cdfd4983ee89e11d9b8ea905318e07"; }
+ { locale = "bs"; arch = "linux-i686"; sha1 = "3c76d0e794a9f90313438a77cc71c4917e6d0963"; }
+ { locale = "bs"; arch = "linux-x86_64"; sha1 = "de062d16baa844bef4d46278b922e55c24446013"; }
+ { locale = "ca"; arch = "linux-i686"; sha1 = "1fc3fd7ff88fa47be3e63c6d18fb7ea0f96ea182"; }
+ { locale = "ca"; arch = "linux-x86_64"; sha1 = "034e54f38b3905afa9265adcd7028ecaeef0b0ea"; }
+ { locale = "cs"; arch = "linux-i686"; sha1 = "da6c2109d0749e3fb02d39608bfc097e0d4b7e94"; }
+ { locale = "cs"; arch = "linux-x86_64"; sha1 = "564dfbadd8a4da4d27a5980be2c037c38f798be3"; }
+ { locale = "cy"; arch = "linux-i686"; sha1 = "4e601b99d70c68884efa386cd7d9e73d27f58fcc"; }
+ { locale = "cy"; arch = "linux-x86_64"; sha1 = "6d8b101a0cf704501f737867ec139481457d4925"; }
+ { locale = "da"; arch = "linux-i686"; sha1 = "bf228d3a5a62fbdb1169029722fa0e3b5ed88b32"; }
+ { locale = "da"; arch = "linux-x86_64"; sha1 = "cdd695b5e0983c6602d9a351b3b132c4063c0b4b"; }
+ { locale = "de"; arch = "linux-i686"; sha1 = "117fc06f022e5508a0d15be0e1a7a3db4745c8d6"; }
+ { locale = "de"; arch = "linux-x86_64"; sha1 = "85d4ab75a06eefb41bcd16c9eb870f704cc41d69"; }
+ { locale = "dsb"; arch = "linux-i686"; sha1 = "8518aa683ae83d230067a72ed541e3d190933548"; }
+ { locale = "dsb"; arch = "linux-x86_64"; sha1 = "ed174cf13bd4ea448e4c86e1c05632728da2138e"; }
+ { locale = "el"; arch = "linux-i686"; sha1 = "3d78f1b8b814da0f9b64e06275a46675e52baee7"; }
+ { locale = "el"; arch = "linux-x86_64"; sha1 = "4ceca57c924cbd80dbd6578c0fbcfdc0dbedad36"; }
+ { locale = "en-GB"; arch = "linux-i686"; sha1 = "b96227ce0f152eb901ca9cdfa579634d943e8ee1"; }
+ { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "d8ebb59b19d1bab937b53cd7af14a07537688218"; }
+ { locale = "en-US"; arch = "linux-i686"; sha1 = "80b63f903b0182f939436e8ec7a54b0c7bcfddad"; }
+ { locale = "en-US"; arch = "linux-x86_64"; sha1 = "1e5d88aa9fade0f39be239d4fc88a63be7fba1fb"; }
+ { locale = "en-ZA"; arch = "linux-i686"; sha1 = "f16c3e3d6904ee327002788e2374bf126c40d5b5"; }
+ { locale = "en-ZA"; arch = "linux-x86_64"; sha1 = "f4a411e5ab5ad73b524ef92c5ed465f25d9411e3"; }
+ { locale = "eo"; arch = "linux-i686"; sha1 = "dd9ba1358f4359ce0e686c9f04f2603398cc70e7"; }
+ { locale = "eo"; arch = "linux-x86_64"; sha1 = "e7c5a2688c9ec3cca5005caa25fa7d8d97044a3a"; }
+ { locale = "es-AR"; arch = "linux-i686"; sha1 = "7bf4fc268ef16dbac4bf1697aeb127b00f024b23"; }
+ { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "de4b641021139e2a3a14db6ae9ccd0202d36380e"; }
+ { locale = "es-CL"; arch = "linux-i686"; sha1 = "afc1ee57a9eb78d53fdf9416fdde4ed519482810"; }
+ { locale = "es-CL"; arch = "linux-x86_64"; sha1 = "e91d0e394bf54562297dbfcf79cd2998d3824292"; }
+ { locale = "es-ES"; arch = "linux-i686"; sha1 = "c7c1f11f1767116b1a3f0ed7a72cbfe5ec72f4ad"; }
+ { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "e02cf16977b0ad6b76e1f50b8dce6634e7688740"; }
+ { locale = "es-MX"; arch = "linux-i686"; sha1 = "8e5462e20a5f7916bb2db78d438573f7d0da9706"; }
+ { locale = "es-MX"; arch = "linux-x86_64"; sha1 = "7337351eb8bd38f010c805ce1e00d74b9379d8c1"; }
+ { locale = "et"; arch = "linux-i686"; sha1 = "ea958109c28d185d250a199d935285edb7099e8c"; }
+ { locale = "et"; arch = "linux-x86_64"; sha1 = "fa5fd96f8ebe24ec343c2bd834dce571153c0e73"; }
+ { locale = "eu"; arch = "linux-i686"; sha1 = "66b24e265d01d1775dab8edc4e6b3e2f2566ba22"; }
+ { locale = "eu"; arch = "linux-x86_64"; sha1 = "e8be6ebbd667459206c8f66bd069ded86784d8ab"; }
+ { locale = "fa"; arch = "linux-i686"; sha1 = "824ce366ab30abd33e9a7c2f5d57cfde4d60c00d"; }
+ { locale = "fa"; arch = "linux-x86_64"; sha1 = "12b4a0bfb18f893a0eecdec56a4eda02372396ce"; }
+ { locale = "ff"; arch = "linux-i686"; sha1 = "218082c202a7699a162901d9093f519811a5f378"; }
+ { locale = "ff"; arch = "linux-x86_64"; sha1 = "93d3acad0e144b884d3a1a30ac6336fca4e17e77"; }
+ { locale = "fi"; arch = "linux-i686"; sha1 = "c74d417d4f26061008a9cbd7c7f121fb1e656cfc"; }
+ { locale = "fi"; arch = "linux-x86_64"; sha1 = "e0da9d2c6cdd1b5c3b26bef6b3401e4fa6452e4b"; }
+ { locale = "fr"; arch = "linux-i686"; sha1 = "830599b504839b9995414982ba655331619609ec"; }
+ { locale = "fr"; arch = "linux-x86_64"; sha1 = "4a5c334689e844358e22aba8389849594b6a1891"; }
+ { locale = "fy-NL"; arch = "linux-i686"; sha1 = "1e9a7b2e57802850c1efb3046b4913499fad07d2"; }
+ { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "ae86e5252bd7b2a4422bc8c6f777ade07242176e"; }
+ { locale = "ga-IE"; arch = "linux-i686"; sha1 = "4c94ec105da0f91a2b87ba8013eb7b832c2fee12"; }
+ { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "dab8398e904f8392c01313314bbaf76bd0decd8f"; }
+ { locale = "gd"; arch = "linux-i686"; sha1 = "7d3c9ebcb0ee1aec567d0676c78038a35faf746f"; }
+ { locale = "gd"; arch = "linux-x86_64"; sha1 = "4b4c20766fe95c6dd69c8e29a2ffcea007940b74"; }
+ { locale = "gl"; arch = "linux-i686"; sha1 = "eb960637873424213035846cee85dc5cd3bcffaa"; }
+ { locale = "gl"; arch = "linux-x86_64"; sha1 = "c467354f5c4197880c42205c5385cfd62a115413"; }
+ { locale = "gu-IN"; arch = "linux-i686"; sha1 = "a25db0f49e9ca9b8238a321480cc6913195ab000"; }
+ { locale = "gu-IN"; arch = "linux-x86_64"; sha1 = "8241b15c08fa66e05da25a5d0ad5ffbc50cc6388"; }
+ { locale = "he"; arch = "linux-i686"; sha1 = "9c6e3df8063a8c4ee859dc0e58ac6f36c2f26659"; }
+ { locale = "he"; arch = "linux-x86_64"; sha1 = "ec00dfcaf552aa94322b2bcdec1ec8bfc6b5fb6a"; }
+ { locale = "hi-IN"; arch = "linux-i686"; sha1 = "5165b5ebfa7af89fa61d994ecf5d77087d455828"; }
+ { locale = "hi-IN"; arch = "linux-x86_64"; sha1 = "3c52f08951f65d45a5623bc3f88cf7c8e10140c1"; }
+ { locale = "hr"; arch = "linux-i686"; sha1 = "2b8e12856d5ac25ae101fd717713c46f02836567"; }
+ { locale = "hr"; arch = "linux-x86_64"; sha1 = "0e3848584959c4123d40da34d6ed25b749cebd15"; }
+ { locale = "hsb"; arch = "linux-i686"; sha1 = "9a290473f24f9f2347ab64a5851a1f14aed713f7"; }
+ { locale = "hsb"; arch = "linux-x86_64"; sha1 = "95a66e9f36b6984a341cd801297db84f4ed0c0f3"; }
+ { locale = "hu"; arch = "linux-i686"; sha1 = "bf1ba19941a5f51c32ac4ac58886165ac258d47e"; }
+ { locale = "hu"; arch = "linux-x86_64"; sha1 = "710cc727bad72b0f7e85ba84171983b5729e3ea7"; }
+ { locale = "hy-AM"; arch = "linux-i686"; sha1 = "914e85645210db9f3887751ca8dd68011dc35afc"; }
+ { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "1253e742d911defc9d4cc6334f9eefdc33ac594b"; }
+ { locale = "id"; arch = "linux-i686"; sha1 = "a3775040046ec7170fecc0a76f97a1c1ebf77097"; }
+ { locale = "id"; arch = "linux-x86_64"; sha1 = "ae66b28ea0ba09d4f6fa43efd13db774a3e196c7"; }
+ { locale = "is"; arch = "linux-i686"; sha1 = "6a36025b57fc9ffcf136d377d4b8b0da0ad70561"; }
+ { locale = "is"; arch = "linux-x86_64"; sha1 = "f2e31c725ee85e70be0aa04fe10463c0e93ab403"; }
+ { locale = "it"; arch = "linux-i686"; sha1 = "640db9133bd8dad4c0317f1ca47570aedbac6f05"; }
+ { locale = "it"; arch = "linux-x86_64"; sha1 = "ab4782eb61e9aab81b899b355416a7cac1434fc5"; }
+ { locale = "ja"; arch = "linux-i686"; sha1 = "3306c8a43d605d43a459915cbe537fd96d38fc1f"; }
+ { locale = "ja"; arch = "linux-x86_64"; sha1 = "49b7be7d6237cde197daa9dc6eed39f27eb8afda"; }
+ { locale = "kk"; arch = "linux-i686"; sha1 = "f8c201f166bd7a11b118bd16a9056e386c8a6fb1"; }
+ { locale = "kk"; arch = "linux-x86_64"; sha1 = "e4e970289b0370e1c7fac171e0c704f089a7daef"; }
+ { locale = "km"; arch = "linux-i686"; sha1 = "5f5e99bdd7d0581bdbf866ea4e11a7ceab11633e"; }
+ { locale = "km"; arch = "linux-x86_64"; sha1 = "a1c7adaf6986d96119f4ee5941b8e37eb7a5eb99"; }
+ { locale = "kn"; arch = "linux-i686"; sha1 = "cc54a5fd8b361bb64e74cb25c886b3f7acec564b"; }
+ { locale = "kn"; arch = "linux-x86_64"; sha1 = "72159be6e48f786ae3c3393ddac54f38d26a5b78"; }
+ { locale = "ko"; arch = "linux-i686"; sha1 = "e4ec61472d4abe31cbced6077edd091a5905f0da"; }
+ { locale = "ko"; arch = "linux-x86_64"; sha1 = "1f8297062d8898a288e11dfb8acfdaaa47add0ee"; }
+ { locale = "lij"; arch = "linux-i686"; sha1 = "78c3a4d2caf84ccf89cf8da4fc3ef183bc9cf70a"; }
+ { locale = "lij"; arch = "linux-x86_64"; sha1 = "ab9ac9e5f0e29e5380c09256f10eb69767ced505"; }
+ { locale = "lt"; arch = "linux-i686"; sha1 = "bb8f2a6ecba549fac49337a057e9a4db4129b79d"; }
+ { locale = "lt"; arch = "linux-x86_64"; sha1 = "fe5c477631d72f8ccee29177431d3dea0be9f180"; }
+ { locale = "lv"; arch = "linux-i686"; sha1 = "2c2d06266a4d98ec20bf2f5e52b9c3c0bb609c76"; }
+ { locale = "lv"; arch = "linux-x86_64"; sha1 = "8dfed7ad4f1783e6760221373358f231f4f0da0f"; }
+ { locale = "mai"; arch = "linux-i686"; sha1 = "757b62b448f83e9d69c66d1615da966107c931a3"; }
+ { locale = "mai"; arch = "linux-x86_64"; sha1 = "713c610d63083ea8021f01d321b930b0c847f780"; }
+ { locale = "mk"; arch = "linux-i686"; sha1 = "366089fb3c938ea35a5dffe7f7ca760054f567b0"; }
+ { locale = "mk"; arch = "linux-x86_64"; sha1 = "efdd56a4cc63066096446ad360549447647348de"; }
+ { locale = "ml"; arch = "linux-i686"; sha1 = "3c2e550f836f0cefcfb5c38411b1ac2f3a637bcf"; }
+ { locale = "ml"; arch = "linux-x86_64"; sha1 = "36a2ec196849c1f469e74b3053c3f12396b01504"; }
+ { locale = "mr"; arch = "linux-i686"; sha1 = "be2e5712afc9d4cc4c7f1934e596f7c1957544c2"; }
+ { locale = "mr"; arch = "linux-x86_64"; sha1 = "e73b9d865474ffa5acbeb231d4e685937be1975f"; }
+ { locale = "ms"; arch = "linux-i686"; sha1 = "4fbc2a641867d394f28a4742b5c5133731f546d5"; }
+ { locale = "ms"; arch = "linux-x86_64"; sha1 = "87631ece4d7b74baedd781d1f6b2a57b2eeda412"; }
+ { locale = "nb-NO"; arch = "linux-i686"; sha1 = "68f83785a6df96389cf76870d98090c786fdfc31"; }
+ { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "8e2d292250b23dd76e5661fe52de979d0c5d9205"; }
+ { locale = "nl"; arch = "linux-i686"; sha1 = "f0d738d05df36c876882f8c301331869d83f7294"; }
+ { locale = "nl"; arch = "linux-x86_64"; sha1 = "eea2560db78a13f0c04aad6825d328b8bc55eb08"; }
+ { locale = "nn-NO"; arch = "linux-i686"; sha1 = "c6034e46de8466295d0e359274b6a55d55d0184a"; }
+ { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "10ec7c2904189566a938325ea815723e0bb0b2cb"; }
+ { locale = "or"; arch = "linux-i686"; sha1 = "0df41d06162817cd34b1bb53515c90cfad3de511"; }
+ { locale = "or"; arch = "linux-x86_64"; sha1 = "3c12b50d07447911fc0f509ad00e385124bf7ec3"; }
+ { locale = "pa-IN"; arch = "linux-i686"; sha1 = "0ce146883573be7eb5daed17699230da82ada4cf"; }
+ { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "c01aa06a17bd8d621ed6aded5e74e71370e9e4c8"; }
+ { locale = "pl"; arch = "linux-i686"; sha1 = "2164863aa00224f593290194767f3996811e638a"; }
+ { locale = "pl"; arch = "linux-x86_64"; sha1 = "567697d04976120296727b8a3ea4c26b747a4588"; }
+ { locale = "pt-BR"; arch = "linux-i686"; sha1 = "9d157740a17808968351dc8adec6aa537cec0a44"; }
+ { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "d4bd135c4e13f82a8a2809e3e1d8e09cf7f80f42"; }
+ { locale = "pt-PT"; arch = "linux-i686"; sha1 = "3dbf64a4e9ed9900f2ac9581f89f0df723129a14"; }
+ { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "e3d930beb3fb127d9528b4ff296fbbeeebb14bb8"; }
+ { locale = "rm"; arch = "linux-i686"; sha1 = "a579c6c9a0564add3bda66a003318fe2947f69cc"; }
+ { locale = "rm"; arch = "linux-x86_64"; sha1 = "030cfc69fa37be23b88b70d4ac80e459efb5a059"; }
+ { locale = "ro"; arch = "linux-i686"; sha1 = "47d39cfef7f363504a626ac82f913e41742be0e8"; }
+ { locale = "ro"; arch = "linux-x86_64"; sha1 = "bc5d110d4ce4953d213bea29e1052b7ca1718410"; }
+ { locale = "ru"; arch = "linux-i686"; sha1 = "8944e82080ac7371dba99e3e602b7ad03e589655"; }
+ { locale = "ru"; arch = "linux-x86_64"; sha1 = "6c224dc91d8fd60056a6c72dc54de8c68a279b6d"; }
+ { locale = "si"; arch = "linux-i686"; sha1 = "baee23301b0d140248030b1fd68fc04e5c10f939"; }
+ { locale = "si"; arch = "linux-x86_64"; sha1 = "828160c350a4dd71f88b0d1f17c8692e6d4b14d1"; }
+ { locale = "sk"; arch = "linux-i686"; sha1 = "5ef8b1e005286bbf3e2e1f7eefa4addf8f3767d0"; }
+ { locale = "sk"; arch = "linux-x86_64"; sha1 = "30bcc039ccd95b1a0c488b1b805ae0a767856b16"; }
+ { locale = "sl"; arch = "linux-i686"; sha1 = "8352a59403334665bc88604e6a40581a3eb7aac0"; }
+ { locale = "sl"; arch = "linux-x86_64"; sha1 = "3e0939fe78cd88350748690598b786dd4e335855"; }
+ { locale = "son"; arch = "linux-i686"; sha1 = "09f0bb79c4c9c1a865a5e14c7e621c3fc2d416cc"; }
+ { locale = "son"; arch = "linux-x86_64"; sha1 = "86e4c2fb90a17b068a5c62843ab16803c1b101e9"; }
+ { locale = "sq"; arch = "linux-i686"; sha1 = "016fe63fcaa5a6a1335d27c4e7ad97dd5aaad9e4"; }
+ { locale = "sq"; arch = "linux-x86_64"; sha1 = "1c4d68de1b8a6d29dd9b9d3433ffb7859832c4ed"; }
+ { locale = "sr"; arch = "linux-i686"; sha1 = "011eaee136b1e34d0a0b2eeab2e0a53edecece88"; }
+ { locale = "sr"; arch = "linux-x86_64"; sha1 = "2d54163e9219d192908f162b338bbc7cce43569a"; }
+ { locale = "sv-SE"; arch = "linux-i686"; sha1 = "3616fdf8cb30580246243b42efcd11dc13ee0bc4"; }
+ { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "33139dfd37b085fe77b48a0b7f3f9ad6ce12bf05"; }
+ { locale = "ta"; arch = "linux-i686"; sha1 = "a043b01750615c594d0d079681e47c523601419e"; }
+ { locale = "ta"; arch = "linux-x86_64"; sha1 = "16650e9b5c34faa71fe597e5a86eac16a85b8a63"; }
+ { locale = "te"; arch = "linux-i686"; sha1 = "e565fe7184e4c1e60804c1258d241af4d8f989cc"; }
+ { locale = "te"; arch = "linux-x86_64"; sha1 = "e0cd4d67f800b86c7f84a816adfd4c94c4e4ec3c"; }
+ { locale = "th"; arch = "linux-i686"; sha1 = "069e3a10f95d0d5abd9f44548e482523ba688728"; }
+ { locale = "th"; arch = "linux-x86_64"; sha1 = "f8678da72a388623718a2ea0b9e8e7df735c87b4"; }
+ { locale = "tr"; arch = "linux-i686"; sha1 = "cef7ea6c46da2fb39802b5ed6d6626addd0842e1"; }
+ { locale = "tr"; arch = "linux-x86_64"; sha1 = "a1476e81269f11fd966b74ddadf009356d7d8811"; }
+ { locale = "uk"; arch = "linux-i686"; sha1 = "694d8dc5aa067ed1efbe6912f38ddcb501692741"; }
+ { locale = "uk"; arch = "linux-x86_64"; sha1 = "68e4329c7ffc622d5e98923348c0eebde3d0a05d"; }
+ { locale = "vi"; arch = "linux-i686"; sha1 = "421289cfe38233038c6b67c341779997cb0f7e91"; }
+ { locale = "vi"; arch = "linux-x86_64"; sha1 = "5d6b9ed16a8cefe6ec79716d43f9d984270da12d"; }
+ { locale = "xh"; arch = "linux-i686"; sha1 = "ac7648d08f55449fa4c7833edf3ac229290b3b56"; }
+ { locale = "xh"; arch = "linux-x86_64"; sha1 = "29bce5966c7ed1b806706855611329c857ce0c89"; }
+ { locale = "zh-CN"; arch = "linux-i686"; sha1 = "7f8867dc3839573234685355965490c600c3c73e"; }
+ { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "2f9df8cb2c6d5de83f4c77aa6938a16d93d70020"; }
+ { locale = "zh-TW"; arch = "linux-i686"; sha1 = "dd5abdc714ce34b3999e9f021b26131dfabcaece"; }
+ { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "b5f9f4b7cdce79b0627069318fc9a0bacd251980"; }
];
}
diff --git a/pkgs/applications/networking/browsers/jumanji/default.nix b/pkgs/applications/networking/browsers/jumanji/default.nix
new file mode 100644
index 00000000000..ff4fea90bff
--- /dev/null
+++ b/pkgs/applications/networking/browsers/jumanji/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchgit, pkgconfig, girara, gtk, webkitgtk, glib_networking, makeWrapper }:
+
+stdenv.mkDerivation rec {
+ name = "jumanji-${version}";
+ version = "20140622";
+
+ src = fetchgit {
+ url = git://pwmt.org/jumanji.git;
+ rev = "8f40487304a6a931487c411b25001f2bb5cf8d4f";
+ sha256 = "1hdk09rayyv2knxzn4n7d41dvh34gdk9ra75x7g9n985w13pkinv";
+ };
+
+ buildInputs = [ girara pkgconfig gtk webkitgtk makeWrapper ];
+
+ makeFlags = [ "PREFIX=$(out)" ];
+
+ preFixup=''
+ wrapProgram "$out/bin/jumanji" \
+ --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Minimal web browser";
+ homepage = http://pwmt.org/projects/jumanji/;
+ platforms = platforms.all;
+ maintainers = [ maintainers.koral ];
+ };
+}
diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
index e51c3f68d7f..595272b900a 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
@@ -4,117 +4,117 @@
# ruby generate_source.rb > source.nix
{
- version = "31.3.0";
+ version = "31.4.0";
sources = [
- { locale = "ar"; arch = "linux-i686"; sha1 = "2579ce59d7c26bdd345732d6ab164fbf6e531b0a"; }
- { locale = "ar"; arch = "linux-x86_64"; sha1 = "55b912f4424b06972cc9d3b14cab3eaa75abdff0"; }
- { locale = "ast"; arch = "linux-i686"; sha1 = "101de138543ae46b667cc9800e45d30a59c31ea0"; }
- { locale = "ast"; arch = "linux-x86_64"; sha1 = "0e290b8222ec3085d2848eb219fa2a950ab38f96"; }
- { locale = "be"; arch = "linux-i686"; sha1 = "80db08139076f5e2810edd931af353bc3c9f6326"; }
- { locale = "be"; arch = "linux-x86_64"; sha1 = "0569479306e0e5fbaa9b87d9f547eec875cdc673"; }
- { locale = "bg"; arch = "linux-i686"; sha1 = "072900fc768486d525fa89ef4a289b3135ec7d1e"; }
- { locale = "bg"; arch = "linux-x86_64"; sha1 = "b99da8534a06e89380b8a9c62e7ac848995cd648"; }
- { locale = "bn-BD"; arch = "linux-i686"; sha1 = "89303e18aa4bc22b1cb91f4d990eb2e3896336e9"; }
- { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "142a507fd977c81e18580acea9dc3e60fb6e6cca"; }
- { locale = "br"; arch = "linux-i686"; sha1 = "987b861d55d333d552e22fd6ce4d5d8fa3031e95"; }
- { locale = "br"; arch = "linux-x86_64"; sha1 = "8c088d8f374e4cab6477ed5e071861d3875513fb"; }
- { locale = "ca"; arch = "linux-i686"; sha1 = "0517ffca37a556548a9b8ded4d7084df0ad70d53"; }
- { locale = "ca"; arch = "linux-x86_64"; sha1 = "a617ae22a924d458ed633e5728f44838d0b42c64"; }
- { locale = "cs"; arch = "linux-i686"; sha1 = "9ae7115dfc0c11528ec276d62925815f93f49dd0"; }
- { locale = "cs"; arch = "linux-x86_64"; sha1 = "2155ef2017e5411a9279b66142306f5d5b9b2b0d"; }
- { locale = "da"; arch = "linux-i686"; sha1 = "dfb5ee11a096128f53cebe016156e34aa762a5be"; }
- { locale = "da"; arch = "linux-x86_64"; sha1 = "8549835e2c3a120aea39c274d7cb1c7f54035649"; }
- { locale = "de"; arch = "linux-i686"; sha1 = "3032a8b87835781d919cab8862057a2612a52af3"; }
- { locale = "de"; arch = "linux-x86_64"; sha1 = "6a9a99636cbfbff3950c5f31681ed2aefbb170b9"; }
- { locale = "el"; arch = "linux-i686"; sha1 = "33bd8a4a7cdaab9937a7880f17c27177a667f1f5"; }
- { locale = "el"; arch = "linux-x86_64"; sha1 = "e32d2382a8322cb65ed3b2b4d634cc818bf94d58"; }
- { locale = "en-GB"; arch = "linux-i686"; sha1 = "2e85dcaa7450e2cd605ab41849693c6eb94aa4b8"; }
- { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "5a229b46fca9bfe736254bc9a65259c5722dac37"; }
- { locale = "en-US"; arch = "linux-i686"; sha1 = "40d0e9a5530812d2ffc471f9c1e9c64ec39bc3aa"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha1 = "5dc64b9a0fa7e4df1ed232b56478d52986c3b4ad"; }
- { locale = "es-AR"; arch = "linux-i686"; sha1 = "5b3cec2e5ddfd9a12eadc5ac270aba85acfe0051"; }
- { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "bceb273367d49b927f5de022009fdd27b707d4eb"; }
- { locale = "es-ES"; arch = "linux-i686"; sha1 = "9911086185272ac2a5c6ee9b36170f1a7352b5a4"; }
- { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "df164ccdb2ec8ac50c663fe5771a63cb51b991a8"; }
- { locale = "et"; arch = "linux-i686"; sha1 = "1e98b4c19dc16e52a65e66a0b518626924a098b1"; }
- { locale = "et"; arch = "linux-x86_64"; sha1 = "2153b56a7336fdba78797025ebba8deb0c5796ed"; }
- { locale = "eu"; arch = "linux-i686"; sha1 = "864ae993a8e87b09ba2ebfa5d12a8cc9b36c9c27"; }
- { locale = "eu"; arch = "linux-x86_64"; sha1 = "ad4a01b18e2c9d38d048f9ee28a19c00dd1dc122"; }
- { locale = "fi"; arch = "linux-i686"; sha1 = "d2ebe588dda618a29de4af0fbadbdd1daddd059c"; }
- { locale = "fi"; arch = "linux-x86_64"; sha1 = "3c5eb0bb4dec968678c812eda5d723b50ca2f150"; }
- { locale = "fr"; arch = "linux-i686"; sha1 = "c71f67ab5942cb49add9a044d6eeb69523f416c9"; }
- { locale = "fr"; arch = "linux-x86_64"; sha1 = "60c5a7037de5439ffebc39980c87e5e1065e2d8c"; }
- { locale = "fy-NL"; arch = "linux-i686"; sha1 = "09d4f2786ede2aff43250d4ed8f151f73c1cb983"; }
- { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "839bea8234ccc71f9402487f022a3fcee13da341"; }
- { locale = "ga-IE"; arch = "linux-i686"; sha1 = "07635c04802c1023a9c6ec6d66c2d9ed9c210800"; }
- { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "ff584fe726ca1be184c453d2eec250577d7747b4"; }
- { locale = "gd"; arch = "linux-i686"; sha1 = "3cbb34e8eba1ad0db2f25b51390b6b66efbdbd6b"; }
- { locale = "gd"; arch = "linux-x86_64"; sha1 = "78703fbf8e9c7cf4db1522baaea837450972f568"; }
- { locale = "gl"; arch = "linux-i686"; sha1 = "1aab34a16224d84c958aa65f4a0e8100a96003f4"; }
- { locale = "gl"; arch = "linux-x86_64"; sha1 = "a8beb35a764b040a1d495e8e34623a884c1911c8"; }
- { locale = "he"; arch = "linux-i686"; sha1 = "73fe49520af05bb79e20c202836fce347466c957"; }
- { locale = "he"; arch = "linux-x86_64"; sha1 = "1780d0a0f342fc6c64e9365a548c13770f9d02f3"; }
- { locale = "hr"; arch = "linux-i686"; sha1 = "f2c570b88fe3368fa30a53f42357a02b610acb36"; }
- { locale = "hr"; arch = "linux-x86_64"; sha1 = "b3bb417879fd039222062f2df8f64811c1472cd6"; }
- { locale = "hu"; arch = "linux-i686"; sha1 = "3369f82671a7e56ca24161ac2a1dd7cd0ae9ba85"; }
- { locale = "hu"; arch = "linux-x86_64"; sha1 = "996b00fb13c2cfd826597eb817bdf8098b523f1b"; }
- { locale = "hy-AM"; arch = "linux-i686"; sha1 = "c805817f9463d74bb73cad273d91c15d04ef1786"; }
- { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "20abe54c61fa4760a507da630c1b919cfe36cf6a"; }
- { locale = "id"; arch = "linux-i686"; sha1 = "76e1659be7d8fbfcd2a6b0bcefdc3988d59e81fa"; }
- { locale = "id"; arch = "linux-x86_64"; sha1 = "cff15be3455dcf7ed714e8e69d34dc2ad016b60f"; }
- { locale = "is"; arch = "linux-i686"; sha1 = "be8238cddd980bbd7de2a21541b260fd6689a8d7"; }
- { locale = "is"; arch = "linux-x86_64"; sha1 = "1fcabd1b1b43ac25f7f5d2eca896ba7d5ea82102"; }
- { locale = "it"; arch = "linux-i686"; sha1 = "df18fd291ffbb80323dfd823aa04692bcf6f251f"; }
- { locale = "it"; arch = "linux-x86_64"; sha1 = "196fae349e7b06029e9738a12fb78f24ca691598"; }
- { locale = "ja"; arch = "linux-i686"; sha1 = "a888ba62981b73d96ba39892a3372b36f0ffb2b3"; }
- { locale = "ja"; arch = "linux-x86_64"; sha1 = "00e2be4b037a37429ee708d49c82af5ffafe8ca1"; }
- { locale = "ko"; arch = "linux-i686"; sha1 = "634ea25e7246ff1c23a0d57bdf928372ca867cd6"; }
- { locale = "ko"; arch = "linux-x86_64"; sha1 = "cfa4acb0970ab87f44e3bbfe46717d1664c63e99"; }
- { locale = "lt"; arch = "linux-i686"; sha1 = "50d2764febdfb206c704cc0eb14e0679e42dffc3"; }
- { locale = "lt"; arch = "linux-x86_64"; sha1 = "1a975a34ddcb0637957def46bd6cc3785a9630df"; }
- { locale = "nb-NO"; arch = "linux-i686"; sha1 = "c0cf3563e2322724447d1c6730a7d4674c9bad7a"; }
- { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "0c7267858bf95345dc09f9b03b56283e3198f8a4"; }
- { locale = "nl"; arch = "linux-i686"; sha1 = "8c8db046ca1f21c11d00914613010836e0c5aefc"; }
- { locale = "nl"; arch = "linux-x86_64"; sha1 = "acd50182d4e1f255ef70bf3d7dfc9ef963535def"; }
- { locale = "nn-NO"; arch = "linux-i686"; sha1 = "ca1728b39e052bd9975d2b2ec8cffa6290098316"; }
- { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "05a3bed8b8c0ccea66ceef02184f4ecd95e141f8"; }
- { locale = "pa-IN"; arch = "linux-i686"; sha1 = "e0aa8fca5e1df6adf5b5bf41d9c8f2a195e5b598"; }
- { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "fd4f63140ffc56095c7b66a3ff560409a43ad018"; }
- { locale = "pl"; arch = "linux-i686"; sha1 = "9dc57337681fd57c5eb51240463e25543385d23d"; }
- { locale = "pl"; arch = "linux-x86_64"; sha1 = "2c27721db5b96a8d488ce7a74e3ebf350f71f76a"; }
- { locale = "pt-BR"; arch = "linux-i686"; sha1 = "c4d3e3f02375533bfb734155327832b4bcddbbe5"; }
- { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "81d1cfacaf3f6a2830af0fceda7ac463867afa90"; }
- { locale = "pt-PT"; arch = "linux-i686"; sha1 = "f59639147c77344d7fbe49c8c3320ec382ce261c"; }
- { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "76d04ef5ac5ce644c04621adcc08059f4d509cdd"; }
- { locale = "rm"; arch = "linux-i686"; sha1 = "a9d4485e9740572e1c5b8579a171c381797c3f97"; }
- { locale = "rm"; arch = "linux-x86_64"; sha1 = "9d699390b577ec97842e75118ee6f0579c386fe0"; }
- { locale = "ro"; arch = "linux-i686"; sha1 = "e03991f23cd9da6e5f14e37a4f84faee64f529b1"; }
- { locale = "ro"; arch = "linux-x86_64"; sha1 = "7137b302ed8c1079ed8f7efa2eaaeaeeb900cc28"; }
- { locale = "ru"; arch = "linux-i686"; sha1 = "7cc98ffeebf3f450c5f29b177eca3e127184c89d"; }
- { locale = "ru"; arch = "linux-x86_64"; sha1 = "c087c970e9456d60265f7f9f6be83100b3990ef9"; }
- { locale = "si"; arch = "linux-i686"; sha1 = "4197c63d5669be0cd6856d17883f5dbb9690438f"; }
- { locale = "si"; arch = "linux-x86_64"; sha1 = "753e858aba8212d86ce9a6855dfaa2223d2ce3bd"; }
- { locale = "sk"; arch = "linux-i686"; sha1 = "64ca38cce9a99b7cf281faf0c53e5b646cb8e7f7"; }
- { locale = "sk"; arch = "linux-x86_64"; sha1 = "78e10824e31d2aee74d852d7b657dd3239cfbaa2"; }
- { locale = "sl"; arch = "linux-i686"; sha1 = "6d38031ef73b82a11193fe2333ba7bfc31e0da49"; }
- { locale = "sl"; arch = "linux-x86_64"; sha1 = "c1ba73354f662da9f541978b5611acc41ee60356"; }
- { locale = "sq"; arch = "linux-i686"; sha1 = "3bc7482b81a754abc01e4c1face0aa4e65aa3ea6"; }
- { locale = "sq"; arch = "linux-x86_64"; sha1 = "2463ac4d17d95c41e5bfebf31c3127e3404caa02"; }
- { locale = "sr"; arch = "linux-i686"; sha1 = "28f762f06a526f93b9a3ff3bd5a52a1bd4c6b314"; }
- { locale = "sr"; arch = "linux-x86_64"; sha1 = "69bbca2b8cea57a76cb3791029f0d55da8383594"; }
- { locale = "sv-SE"; arch = "linux-i686"; sha1 = "ddbfd64533c198deeb3e56cb137af3707cc22912"; }
- { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "992b3a896d619393a829b0b404f6c69bc6d11263"; }
- { locale = "ta-LK"; arch = "linux-i686"; sha1 = "dcc7382a20d316eabd500c9d7cfaa84b9e406d43"; }
- { locale = "ta-LK"; arch = "linux-x86_64"; sha1 = "4202e74f6cb4e7bb22ae08a5e28d02cac8dd4861"; }
- { locale = "tr"; arch = "linux-i686"; sha1 = "1cb9db5a71df0990758a93728d1cccc229797aaa"; }
- { locale = "tr"; arch = "linux-x86_64"; sha1 = "8406829869881ed3228f44531c32106f51ef8671"; }
- { locale = "uk"; arch = "linux-i686"; sha1 = "e9d259c9872336d96e854208d08d0d09aeb98f47"; }
- { locale = "uk"; arch = "linux-x86_64"; sha1 = "3a65b5a21c2310dcb243abbf1cfdc7ec097a6018"; }
- { locale = "vi"; arch = "linux-i686"; sha1 = "60070b3d0488aa80aa331cfb0ea1f37301d074d4"; }
- { locale = "vi"; arch = "linux-x86_64"; sha1 = "ffe662b33db700fe795972a08320370592de365b"; }
- { locale = "zh-CN"; arch = "linux-i686"; sha1 = "9722b296495a4ac01bb80952df97a1f1a92eed27"; }
- { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "014e0cd18afceeb662d7c2e9f4541e7a4ef0260a"; }
- { locale = "zh-TW"; arch = "linux-i686"; sha1 = "f5174db5a7852d27bdfcca4b57fdf5ffd5294680"; }
- { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "0014eea1f648f9ddcf977f56f7a82044b41c136e"; }
+ { locale = "ar"; arch = "linux-i686"; sha1 = "5e6592c5f0569fb56613ed34db895a2fa6c77f66"; }
+ { locale = "ar"; arch = "linux-x86_64"; sha1 = "7f270aebf5de8c2f4a988d87b37cbdf12542a86a"; }
+ { locale = "ast"; arch = "linux-i686"; sha1 = "611bbfb96b6f2b39c9a7b83311ba7f96e0294501"; }
+ { locale = "ast"; arch = "linux-x86_64"; sha1 = "5b8dbb29e1dfce40d0414b75a2e889e40ba62b1b"; }
+ { locale = "be"; arch = "linux-i686"; sha1 = "8aef167276d82e3243912f1773ce42bc5831d6a8"; }
+ { locale = "be"; arch = "linux-x86_64"; sha1 = "81448779fcdcace457e7b3e37262345df9b100ec"; }
+ { locale = "bg"; arch = "linux-i686"; sha1 = "4f82e7bfd24086e98721c6283156781a0a65e23f"; }
+ { locale = "bg"; arch = "linux-x86_64"; sha1 = "c3ddd6613f7591ff7d4aad1e39358f7107e56b5d"; }
+ { locale = "bn-BD"; arch = "linux-i686"; sha1 = "68340eea06073ddf2c64f2808d5136295962ebb5"; }
+ { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "c080fda6eb86414e3157a54befcd9bf7e5a87148"; }
+ { locale = "br"; arch = "linux-i686"; sha1 = "087a853427912f6aef3802851cf61d8c36aaad93"; }
+ { locale = "br"; arch = "linux-x86_64"; sha1 = "b574ee98d1771d4a4be77a5e1f7573d03329d497"; }
+ { locale = "ca"; arch = "linux-i686"; sha1 = "4e56ed5b93e8aede015b4ba3b86d0121f5225e21"; }
+ { locale = "ca"; arch = "linux-x86_64"; sha1 = "8ca5266e9ad8c1f24a9426cd41b4f9af764308b1"; }
+ { locale = "cs"; arch = "linux-i686"; sha1 = "3e612559375de82f227fbdfad847bef58392ed64"; }
+ { locale = "cs"; arch = "linux-x86_64"; sha1 = "3aeb7ca07b82258353b1085705e6f0f18c3a3813"; }
+ { locale = "da"; arch = "linux-i686"; sha1 = "7d09b5f73738ea9ea16c515434299df8654bbc1e"; }
+ { locale = "da"; arch = "linux-x86_64"; sha1 = "3c7b5dafca343afa0be3d107078c42d525149ab7"; }
+ { locale = "de"; arch = "linux-i686"; sha1 = "5273088e2ad5278fbec29a3d80ff81123807bdb1"; }
+ { locale = "de"; arch = "linux-x86_64"; sha1 = "d18893827828640ff83df8b3d340ed96312d4bfb"; }
+ { locale = "el"; arch = "linux-i686"; sha1 = "dc0f3ecb015568805634ee78f5ec314d2502ae63"; }
+ { locale = "el"; arch = "linux-x86_64"; sha1 = "ca7c336b9902c7f109c58e20d944c019cc3003dd"; }
+ { locale = "en-GB"; arch = "linux-i686"; sha1 = "a7164e94562e7c711e0a8ca98cb9994c75aa4538"; }
+ { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "f53acad0af7a080e310b7a875b6cb6776d691fcd"; }
+ { locale = "en-US"; arch = "linux-i686"; sha1 = "7c31b23b0dfe89c17c0eef61cc605f2ea6a5fca3"; }
+ { locale = "en-US"; arch = "linux-x86_64"; sha1 = "f837d7d1916d687e4482abb87b74de90c4131b4d"; }
+ { locale = "es-AR"; arch = "linux-i686"; sha1 = "80d6ad181ba25b3b65eb9fd990f03a1aadd68a7b"; }
+ { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "f40f6514a2357aecabdc34708bbc819fb6546a70"; }
+ { locale = "es-ES"; arch = "linux-i686"; sha1 = "7c0d9500321fe5c854ba7f1f11cd1cfcec895919"; }
+ { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "afa2780e35a8fb95b26f43595c2e7729e7d37360"; }
+ { locale = "et"; arch = "linux-i686"; sha1 = "711bf1da10758f784e5c31b3673eb612604775b9"; }
+ { locale = "et"; arch = "linux-x86_64"; sha1 = "02ee282d0b54ad6490e742f7a3b29763bf1d0545"; }
+ { locale = "eu"; arch = "linux-i686"; sha1 = "940125468f0129138e20a048fe09d3d489bab478"; }
+ { locale = "eu"; arch = "linux-x86_64"; sha1 = "357a64c3b49e3d058ed715de24296fa6533dbe59"; }
+ { locale = "fi"; arch = "linux-i686"; sha1 = "abe4633376f244efffbd3faa7be4381a5dce0dcc"; }
+ { locale = "fi"; arch = "linux-x86_64"; sha1 = "f401ae0b0e51603249f6a7b925166bf287023dc7"; }
+ { locale = "fr"; arch = "linux-i686"; sha1 = "f563e7f6638da931c3e8b3b8055d8ea1923af204"; }
+ { locale = "fr"; arch = "linux-x86_64"; sha1 = "5ebfc7889ad5fa147c50e70a66b42238dc289ffd"; }
+ { locale = "fy-NL"; arch = "linux-i686"; sha1 = "a7c6c74459ac9ecae0b325765ae9fb3e2adab1c5"; }
+ { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "923de165c7eb693316d4a81ad13e32636c1de990"; }
+ { locale = "ga-IE"; arch = "linux-i686"; sha1 = "6685e21a2b20ebb35da479604dfbf719b0822c3e"; }
+ { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "35d4f00f26c3bc18c7a6ebcc6d6d2ccd0a4499d4"; }
+ { locale = "gd"; arch = "linux-i686"; sha1 = "7ad9d25363f3b98085758fb2815d4fbf0b898b28"; }
+ { locale = "gd"; arch = "linux-x86_64"; sha1 = "ddb0b68b311e51f602248924b4b49481a64ac175"; }
+ { locale = "gl"; arch = "linux-i686"; sha1 = "216df56d5dde4f27d0f14cfaafd7af08a2732bf2"; }
+ { locale = "gl"; arch = "linux-x86_64"; sha1 = "4c30c0ba4bbe22522565679b49b06d62673fbd74"; }
+ { locale = "he"; arch = "linux-i686"; sha1 = "7f67f2fe2166d207f7fa39feb85faae4595cbdbc"; }
+ { locale = "he"; arch = "linux-x86_64"; sha1 = "f5949cb31f01b11cb6a43a045798da64abea52af"; }
+ { locale = "hr"; arch = "linux-i686"; sha1 = "c6d784d2cd3f3baf6737dfd2d28c03f9b1c37623"; }
+ { locale = "hr"; arch = "linux-x86_64"; sha1 = "b5598bc5a19b45ee17cfd259f7da581735f90430"; }
+ { locale = "hu"; arch = "linux-i686"; sha1 = "21699446dbcc9e0fb53e06dafec8efdbf6ab484b"; }
+ { locale = "hu"; arch = "linux-x86_64"; sha1 = "e64a219956f4aa017ee742cc1768567052593282"; }
+ { locale = "hy-AM"; arch = "linux-i686"; sha1 = "a60b5d60e8436355ee24029a4398168108ce8aea"; }
+ { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "583af341312ea29b50a7eaa86d2c9758ce2f5735"; }
+ { locale = "id"; arch = "linux-i686"; sha1 = "2471ebfc64a84e8711d7bc26783a16d6300ada07"; }
+ { locale = "id"; arch = "linux-x86_64"; sha1 = "d67b28477e36501a03ce8fd79a23090d068a696e"; }
+ { locale = "is"; arch = "linux-i686"; sha1 = "f53018a38f84c7e4fc8d5a3ee952478d4a1c9ebe"; }
+ { locale = "is"; arch = "linux-x86_64"; sha1 = "f886bcdb98af1c217a837c10a5e0737cbd357ef0"; }
+ { locale = "it"; arch = "linux-i686"; sha1 = "000d8e56b62768aee6dba9cb14b733f78908e751"; }
+ { locale = "it"; arch = "linux-x86_64"; sha1 = "27ffbd773f977b67903a62b9131b1dcda27dd7f2"; }
+ { locale = "ja"; arch = "linux-i686"; sha1 = "cd743c00682001094d3a7decd8396b6ce9b1e67e"; }
+ { locale = "ja"; arch = "linux-x86_64"; sha1 = "64b8ba26bb1f85788321bd2ba38b4813859ebede"; }
+ { locale = "ko"; arch = "linux-i686"; sha1 = "445731309b578c262547f22364dfe1fd0eaf68d5"; }
+ { locale = "ko"; arch = "linux-x86_64"; sha1 = "9bc2efd19b17c0e09b55e6ae310e59147212d726"; }
+ { locale = "lt"; arch = "linux-i686"; sha1 = "35a275d39c2a780b86749891c14ee77ca36f03bf"; }
+ { locale = "lt"; arch = "linux-x86_64"; sha1 = "c70f2f57e1fd8c40da949a18314c30380728f7bd"; }
+ { locale = "nb-NO"; arch = "linux-i686"; sha1 = "c94ace97f23a6fce1e736bb334ddf6af3d5a0ff4"; }
+ { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "b00717ab99a47ef3477fecb79d55dc5817c60c1e"; }
+ { locale = "nl"; arch = "linux-i686"; sha1 = "a5864e976675278cb9fb7e65c1edb88f704557f1"; }
+ { locale = "nl"; arch = "linux-x86_64"; sha1 = "dba80bc2bc1ec67ba932525d05253803292bc9d8"; }
+ { locale = "nn-NO"; arch = "linux-i686"; sha1 = "161e1361b1ecc5f1ee31227b7e65705ab5355432"; }
+ { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "8051e55e5f7fbc42c7d75b5ad28834d11b699833"; }
+ { locale = "pa-IN"; arch = "linux-i686"; sha1 = "91c8812e39baaa1974d4d1c316c7c08022f3408f"; }
+ { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "948a679c843cee3f8da80f0a45b5416c7cc3b37c"; }
+ { locale = "pl"; arch = "linux-i686"; sha1 = "43005f6337f33171f745f2e493d8cf2a8371d143"; }
+ { locale = "pl"; arch = "linux-x86_64"; sha1 = "78fea3bc7e24eb96aefb2e52b01657437fc9dfd6"; }
+ { locale = "pt-BR"; arch = "linux-i686"; sha1 = "0a5b4e14446c0f8f44004178f873bb289176e1b6"; }
+ { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "727d4a82754118749ea48e4b7ab6d182570957ad"; }
+ { locale = "pt-PT"; arch = "linux-i686"; sha1 = "8b4418f18b3569991ff2aca4528e70dd49247d81"; }
+ { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "0ffbee08f3e43fde37913679037d59b68a47d49b"; }
+ { locale = "rm"; arch = "linux-i686"; sha1 = "79606026969e837b4b9a1be73b71b0b183757504"; }
+ { locale = "rm"; arch = "linux-x86_64"; sha1 = "0680dfa0417688e2ad6307b10f90c766db139789"; }
+ { locale = "ro"; arch = "linux-i686"; sha1 = "d06f4e7f748ffa8202bfc1dc0c4bc94894feb223"; }
+ { locale = "ro"; arch = "linux-x86_64"; sha1 = "a998af6413eec1123c9e4698ce217dc856c2bb4e"; }
+ { locale = "ru"; arch = "linux-i686"; sha1 = "062a1ba9c8a5c06972895ebb11e12d90a50c450d"; }
+ { locale = "ru"; arch = "linux-x86_64"; sha1 = "fd149bdbdc4a697cfab1d04b818b09718a3b945c"; }
+ { locale = "si"; arch = "linux-i686"; sha1 = "50105a554db09e57ad99aee5c3b9c9f35eef3431"; }
+ { locale = "si"; arch = "linux-x86_64"; sha1 = "ed360ef7cbf2ecc70b08922c27cdf3525c392137"; }
+ { locale = "sk"; arch = "linux-i686"; sha1 = "34dee72d71916209a3cad28e6adfa1b3270567c6"; }
+ { locale = "sk"; arch = "linux-x86_64"; sha1 = "cfe76d345c17ab8711a723779d263c3baa0016ff"; }
+ { locale = "sl"; arch = "linux-i686"; sha1 = "391a923ff56ba6adf15817b12eec4555ede578fe"; }
+ { locale = "sl"; arch = "linux-x86_64"; sha1 = "b6c3ad0b50610fd2470a2366c58a2e4947a96698"; }
+ { locale = "sq"; arch = "linux-i686"; sha1 = "f422d3adca0f15b70d53c9c9b9bae09d651ef535"; }
+ { locale = "sq"; arch = "linux-x86_64"; sha1 = "d3c8c82a0531a20480ac93dc6e0c981068a327fc"; }
+ { locale = "sr"; arch = "linux-i686"; sha1 = "9d7ab49903107da8cd9859d09ae62dea661130a9"; }
+ { locale = "sr"; arch = "linux-x86_64"; sha1 = "24f770326910db0ebd3d521b7573f57c4db2afdd"; }
+ { locale = "sv-SE"; arch = "linux-i686"; sha1 = "b93a538462e364202cf0a7ef9867f3bcaad5256d"; }
+ { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "b2c6c917b6575002f2f9f548ba1ae0aa3bd7a064"; }
+ { locale = "ta-LK"; arch = "linux-i686"; sha1 = "e0d34774514f264bb02a2c5db76270bc228e80a8"; }
+ { locale = "ta-LK"; arch = "linux-x86_64"; sha1 = "8119ba8f521da39af4d729fe52841c76e6a9c6f1"; }
+ { locale = "tr"; arch = "linux-i686"; sha1 = "76b9c748286ac40cb77b2dfe98e44b1ebadc6d9b"; }
+ { locale = "tr"; arch = "linux-x86_64"; sha1 = "779ed971dac93d55e45a63e0ff4d3f6118317116"; }
+ { locale = "uk"; arch = "linux-i686"; sha1 = "784a6432f04dc12f6abb405e4375540bb3c1bfac"; }
+ { locale = "uk"; arch = "linux-x86_64"; sha1 = "d6ec1ca2015c723d05e4f7a6e6006cb0f5f45667"; }
+ { locale = "vi"; arch = "linux-i686"; sha1 = "e494cb50a3c99b4e96794544b1a7948663d0ae28"; }
+ { locale = "vi"; arch = "linux-x86_64"; sha1 = "e9a8d6fb2b9328f7ea80c0d7be9943daaf37e71d"; }
+ { locale = "zh-CN"; arch = "linux-i686"; sha1 = "14624e631eb3bdfb9cde339dbf132e048f68f1c3"; }
+ { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "1197fa99680d978b10c41ccac7183117c264f375"; }
+ { locale = "zh-TW"; arch = "linux-i686"; sha1 = "78c73c73363b41b3ae36cea01cc64bc715602278"; }
+ { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "76faeef7919eb2fb594773502ee5202ed11b67e4"; }
];
}
diff --git a/pkgs/applications/networking/sync/backintime/common.nix b/pkgs/applications/networking/sync/backintime/common.nix
index fa722747e5f..e77fc5a522a 100644
--- a/pkgs/applications/networking/sync/backintime/common.nix
+++ b/pkgs/applications/networking/sync/backintime/common.nix
@@ -1,20 +1,16 @@
-{stdenv, fetchurl, makeWrapper, gettext, python2, python2Packages }:
+{stdenv, fetchurl, makeWrapper, gettext, python3, python3Packages, rsync, cron, openssh, sshfsFuse, encfs }:
stdenv.mkDerivation rec {
- version = "1.0.36";
+ version = "1.1.0";
name = "backintime-common-${version}";
src = fetchurl {
- url = "https://launchpad.net/backintime/1.0/${version}/+download/backintime-${version}.tar.gz";
- md5 = "28630bc7bd5f663ba8fcfb9ca6a742d8";
+ url = "https://launchpad.net/backintime/1.1/${version}/+download/backintime-${version}.tar.gz";
+ md5 = "21e15538c38d0c440c1281457319c7f1";
};
- # because upstream tarball has no top-level directory.
- # https://bugs.launchpad.net/backintime/+bug/1359076
- sourceRoot = ".";
-
- buildInputs = [ makeWrapper gettext python2 python2Packages.dbus ];
+ buildInputs = [ makeWrapper gettext python3 python3Packages.dbus python3Packages.keyring openssh cron rsync sshfsFuse encfs ];
installFlags = [ "DEST=$(out)" ];
@@ -43,4 +39,4 @@ stdenv.mkDerivation rec {
done by taking snapshots of a specified set of directories.
'';
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/applications/networking/sync/backintime/gnome.nix b/pkgs/applications/networking/sync/backintime/gnome.nix
deleted file mode 100644
index 56d0f6c5481..00000000000
--- a/pkgs/applications/networking/sync/backintime/gnome.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{stdenv, fetchurl, makeWrapper, gettext, python2, python2Packages, gnome2, pkgconfig, pygobject, glib, libtool, backintime-common }:
-
-stdenv.mkDerivation rec {
- inherit (backintime-common) version src sourceRoot installFlags meta;
-
- name = "backintime-gnome-${version}";
-
- buildInputs = [ makeWrapper gettext python2 python2Packages.dbus backintime-common python2Packages.pygtk python2Packages.notify gnome2.gnome_python ];
-
- preConfigure = "cd gnome";
- configureFlags = [ "--no-check" ];
-
- preFixup =
- ''
- # Make sure all Python files refer to $prefix/share/backintime
- # instead of config.get_app_path() which returns the path of the
- # 'common' module, not the path of the 'gnome' module.
- filelist=$(mktemp)
- find "$out/share/backintime/gnome" -name "*.py" -print0 > $filelist
- while IFS="" read -r -d "" file <&9; do
- substituteInPlace "$file" \
- --replace "glade_file = os.path.join(config.get_app_path()," \
- "glade_file = os.path.join('$prefix/share/backintime'," \
- --replace "glade_file = os.path.join(self.config.get_app_path()," \
- "glade_file = os.path.join('$prefix/share/backintime',"
- done 9< "$filelist"
- rm "$filelist"
-
- substituteInPlace "$out/bin/backintime-gnome" \
- --replace "=\"/usr/share" "=\"$prefix/share"
-
- wrapProgram "$out/bin/backintime-gnome" \
- --prefix PYTHONPATH : "${gnome2.gnome_python}/lib/python2.7/site-packages/gtk-2.0:${backintime-common}/share/backintime/common:$PYTHONPATH" \
- --prefix PATH : "${backintime-common}/bin:$PATH"
- '';
-
-}
diff --git a/pkgs/applications/networking/sync/backintime/qt4.nix b/pkgs/applications/networking/sync/backintime/qt4.nix
new file mode 100644
index 00000000000..67d521d272a
--- /dev/null
+++ b/pkgs/applications/networking/sync/backintime/qt4.nix
@@ -0,0 +1,25 @@
+{stdenv, fetchurl, makeWrapper, gettext, pkgconfig, libtool, backintime-common, python3, python3Packages }:
+
+stdenv.mkDerivation rec {
+ inherit (backintime-common) version src installFlags meta;
+
+ name = "backintime-gnome-${version}";
+
+ buildInputs = [ makeWrapper gettext python3 python3Packages.pyqt4 backintime-common python3 ];
+
+ preConfigure = "cd qt4";
+ configureFlags = [ ];
+
+ dontAddPrefix = true;
+
+ preFixup =
+ ''
+ substituteInPlace "$out/bin/backintime-qt4" \
+ --replace "=\"/usr/share" "=\"$prefix/share"
+
+ wrapProgram "$out/bin/backintime-qt4" \
+ --prefix PYTHONPATH : "${backintime-common}/share/backintime/common:$PYTHONPATH" \
+ --prefix PATH : "${backintime-common}/bin:$PATH"
+ '';
+
+}
diff --git a/pkgs/applications/networking/znc/modules.nix b/pkgs/applications/networking/znc/modules.nix
index 478900bae4c..9836d1fbb3b 100644
--- a/pkgs/applications/networking/znc/modules.nix
+++ b/pkgs/applications/networking/znc/modules.nix
@@ -53,4 +53,21 @@ in rec {
};
};
+ privmsg = zncDerivation rec {
+ name = "znc-privmsg-c9f98690be";
+ module_name = "privmsg";
+
+ src = fetchgit {
+ url = meta.repositories.git;
+ rev = "c9f98690beb4e3a7681468d5421ff11dc8e1ee8b";
+ sha256 = "dfeb28878b12b98141ab204191288cb4c3f7df153a01391ebf6ed6a32007247f";
+ };
+
+ meta = {
+ description = "ZNC privmsg module";
+ homepage = https://github.com/kylef/znc-contrib;
+ repositories.git = https://github.com/kylef/znc-contrib.git;
+ };
+ };
+
}
diff --git a/pkgs/applications/office/abiword/default.nix b/pkgs/applications/office/abiword/default.nix
index 43b8f1f0115..2aaf1e8f032 100644
--- a/pkgs/applications/office/abiword/default.nix
+++ b/pkgs/applications/office/abiword/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
name = "abiword-${version}";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchurl {
url = "http://www.abisource.org/downloads/abiword/${version}/source/${name}.tar.gz";
- sha256 = "00dc3w48k2z3l1hh5b0jhzfrskqxic4lp6g7w19v6kpz02632zni";
+ sha256 = "1ik591rx15nn3n1297cwykl8wvrlgj78i528id9wbidgy3xzd570";
};
enableParallelBuilding = true;
diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix
index 91972838230..b2bffc781b3 100644
--- a/pkgs/build-support/grsecurity/default.nix
+++ b/pkgs/build-support/grsecurity/default.nix
@@ -10,6 +10,7 @@ let
mode = "auto";
sysctl = false;
denyChrootChmod = false;
+ denyUSB = false;
restrictProc = false;
restrictProcWithGroup = true;
unrestrictProcGid = 121; # Ugh, an awful hack. See grsecurity NixOS gid
@@ -106,6 +107,7 @@ let
GRKERNSEC_SYSCTL ${boolToKernOpt cfg.config.sysctl}
GRKERNSEC_CHROOT_CHMOD ${boolToKernOpt cfg.config.denyChrootChmod}
+ GRKERNSEC_DENYUSB ${boolToKernOpt cfg.config.denyUSB}
GRKERNSEC_NO_RBAC ${boolToKernOpt cfg.config.disableRBAC}
${restrictLinks}
diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix
index 10bb59ccae0..ba916c12cfc 100644
--- a/pkgs/build-support/vm/default.nix
+++ b/pkgs/build-support/vm/default.nix
@@ -1604,22 +1604,22 @@ rec {
debian70x86_64 = debian7x86_64;
debian7i386 = {
- name = "debian-7.7-wheezy-i386";
- fullName = "Debian 7.7 Wheezy (i386)";
+ name = "debian-7.8-wheezy-i386";
+ fullName = "Debian 7.8 Wheezy (i386)";
packagesList = fetchurl {
url = mirror://debian/dists/wheezy/main/binary-i386/Packages.bz2;
- sha256 = "f2fd890597b6f0d82c5d66ccc8b12a963937a0576a377dd0ccbe47de4c1b09c8";
+ sha256 = "d86c28cb4f1aa178e678c253944c674a60991a367349e58a90d9a3e939e4e4bc";
};
urlPrefix = mirror://debian;
packages = commonDebianPackages;
};
debian7x86_64 = {
- name = "debian-7.7-wheezy-amd64";
- fullName = "Debian 7.7 Wheezy (amd64)";
+ name = "debian-7.8-wheezy-amd64";
+ fullName = "Debian 7.8 Wheezy (amd64)";
packagesList = fetchurl {
url = mirror://debian/dists/wheezy/main/binary-amd64/Packages.bz2;
- sha256 = "8ce14e88febc58310a1c13350f016ce583f068d10031ed4f0cb50985707786d8";
+ sha256 = "c8257d74c9411e2f0b9891a21f5dbf5fb088b46d1df043907a4d390b32da2931";
};
urlPrefix = mirror://debian;
packages = commonDebianPackages;
diff --git a/pkgs/data/fonts/open-dyslexic/default.nix b/pkgs/data/fonts/open-dyslexic/default.nix
new file mode 100644
index 00000000000..5d9bb584360
--- /dev/null
+++ b/pkgs/data/fonts/open-dyslexic/default.nix
@@ -0,0 +1,30 @@
+{stdenv, fetchgit}:
+
+stdenv.mkDerivation rec {
+ name = "open-dyslexic-${version}";
+ version = "2014-11-11";
+
+ src = fetchgit {
+ url = "https://github.com/antijingoist/open-dyslexic.git";
+ rev = "f4b5ba89018b44d633608907e15f93fb3fabbabc";
+ sha256 = "04pa7c2cary6pqxsmxqrg7wi19szg7xh8panmvqvmc7jas0mzg6q";
+ };
+
+ phases = ["unpackPhase" "installPhase"];
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/opentype
+ cp -v 'otf/'*.otf $out/share/fonts/opentype
+
+ mkdir -p $out/share/doc/open-dyslexic
+ cp -v README.md $out/share/doc/open-dyslexic
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = http://opendyslexic.org/;
+ description = "Font created to increase readability for readers with dyslexia";
+ license = "Bitstream Vera License (http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts)";
+ platforms = platforms.all;
+ maintainers = [maintainers.rycee];
+ };
+}
diff --git a/pkgs/data/fonts/source-han-sans/base.nix b/pkgs/data/fonts/source-han-sans/base.nix
deleted file mode 100644
index d319f41f2e5..00000000000
--- a/pkgs/data/fonts/source-han-sans/base.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{version ? "1.000", prefix, url, sha256, description}:
-
-{stdenv, fetchurl, unzip}:
-
-stdenv.mkDerivation rec {
- inherit version;
- name = "${prefix}-${version}";
-
- src = fetchurl {
- inherit url sha256;
- };
-
- buildInputs = [ unzip ];
-
- installPhase = ''
- mkdir -p $out/share/fonts/truetype
- cp $( find . -name '*.otf' ) $out/share/fonts/truetype
- '';
-
- meta = {
- inherit description;
-
- homepage = http://sourceforge.net/adobe/source-han-sans/;
- license = stdenv.lib.licenses.asl20;
- };
-}
diff --git a/pkgs/data/fonts/source-han-sans/default.nix b/pkgs/data/fonts/source-han-sans/default.nix
new file mode 100644
index 00000000000..9e0bf750571
--- /dev/null
+++ b/pkgs/data/fonts/source-han-sans/default.nix
@@ -0,0 +1,47 @@
+{stdenv, fetchurl}:
+
+let
+ makePackage = {language, region, description}: stdenv.mkDerivation rec {
+ version = "1.001R";
+ name = "source-han-sans-${language}-${version}";
+
+ src = fetchurl {
+ url = "https://github.com/adobe-fonts/source-han-sans/archive/${version}.tar.gz";
+ sha256 = "0cwz3d8jancl0a7vbjxhnh1vgwsjba62lahfjya9yrjkp1ndxlap";
+ };
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/opentype
+ cp $( find SubsetOTF/${region} -name '*.otf' ) $out/share/fonts/opentype
+ '';
+
+ meta = {
+ inherit description;
+
+ homepage = https://github.com/adobe-fonts/source-han-sans;
+ license = stdenv.lib.licenses.asl20;
+ };
+ };
+in
+{
+ japanese = makePackage {
+ language = "japanese";
+ region = "JP";
+ description = "Japanese subset of an open source Pan-CJK typeface";
+ };
+ korean = makePackage {
+ language = "korean";
+ region = "KR";
+ description = "Korean subset of an open source Pan-CJK typeface";
+ };
+ simplified-chinese = makePackage {
+ language = "simplified-chinese";
+ region = "CN";
+ description = "Simplified Chinese subset of an open source Pan-CJK typeface";
+ };
+ traditional-chinese = makePackage {
+ language = "traditional-chinese";
+ region = "TW";
+ description = "Traditional Chinese subset of an open source Pan-CJK typeface";
+ };
+}
diff --git a/pkgs/data/fonts/source-han-sans/japanese.nix b/pkgs/data/fonts/source-han-sans/japanese.nix
deleted file mode 100644
index 4aacdbf62e2..00000000000
--- a/pkgs/data/fonts/source-han-sans/japanese.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-import ./base.nix {
- prefix = "source-han-sans-japanese";
- url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansJP-1.000.zip";
- sha256 = "c5930036660bea22ffceaa9e2df765776494800d330a59be7936ab3c763c4c82";
- description = "Japanese subset of an open source Pan-CJK typeface";
-}
\ No newline at end of file
diff --git a/pkgs/data/fonts/source-han-sans/korean.nix b/pkgs/data/fonts/source-han-sans/korean.nix
deleted file mode 100644
index cf3ecd9e12e..00000000000
--- a/pkgs/data/fonts/source-han-sans/korean.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-import ./base.nix {
- prefix = "source-han-sans-korean";
- url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansKR-1.000.zip";
- sha256 = "8eed4ad092fcf640e44f73ba510e0ed1c1cabf79776f68d02820734bbba21cf8";
- description = "Korean subset of an open source Pan-CJK typeface";
-}
\ No newline at end of file
diff --git a/pkgs/data/fonts/source-han-sans/simplified-chinese.nix b/pkgs/data/fonts/source-han-sans/simplified-chinese.nix
deleted file mode 100644
index 8e920455e45..00000000000
--- a/pkgs/data/fonts/source-han-sans/simplified-chinese.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-import ./base.nix {
- prefix = "source-han-sans-simplified-chinese";
- url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansCN-1.000.zip";
- sha256 = "88117aa8f8b4ab65d6f7a919a5e1b06d6c00f75b1abecccf120246536123754d";
- description = "Simplified Chinese subset of an open source Pan-CJK typeface";
-}
\ No newline at end of file
diff --git a/pkgs/data/fonts/source-han-sans/traditional-chinese.nix b/pkgs/data/fonts/source-han-sans/traditional-chinese.nix
deleted file mode 100644
index b25db8a2515..00000000000
--- a/pkgs/data/fonts/source-han-sans/traditional-chinese.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-import ./base.nix {
- prefix = "source-han-sans-traditional-chinese";
- url = "mirror://sourceforge/source-han-sans.adobe/SourceHanSansTWHK-1.000.zip";
- sha256 = "2371a726757a51322243b1ed7a9fde562621b0813b5e6d6443e06847ad7bbd20";
- description = "Traditional Chinese subset of an open source Pan-CJK typeface";
-}
\ No newline at end of file
diff --git a/pkgs/desktops/kde-4.14/kde-workspace.nix b/pkgs/desktops/kde-4.14/kde-workspace.nix
index 4231a1d7c0b..c3af4f71442 100644
--- a/pkgs/desktops/kde-4.14/kde-workspace.nix
+++ b/pkgs/desktops/kde-4.14/kde-workspace.nix
@@ -6,11 +6,12 @@
kde {
#todo: wayland, xmms, libusb isn't found
+#note: xorg.libXft is needed to build kfontview and kfontinst though this isn't reflected in the build log
buildInputs =
[ kdelibs qimageblitz libdbusmenu_qt xorg.libxcb xorg.xcbutilimage libjpeg
xorg.xcbutilrenderutil xorg.xcbutilkeysyms xorg.libpthreadstubs xorg.libXdmcp
xorg.libxkbfile xorg.libXcomposite xorg.libXtst
- xorg.libXdamage
+ xorg.libXdamage xorg.libXft
python boost qjson lm_sensors gpsd libraw1394 pciutils udev
akonadi pam libusb1 libqalculate kdepimlibs prison
diff --git a/pkgs/desktops/kde-4.14/kdepim.nix b/pkgs/desktops/kde-4.14/kdepim.nix
index 9f266e596a6..df41c85c8ac 100644
--- a/pkgs/desktops/kde-4.14/kdepim.nix
+++ b/pkgs/desktops/kde-4.14/kdepim.nix
@@ -15,7 +15,7 @@ kde {
nativeBuildInputs = [ pkgconfig ];
- passthru.propagatedUserEnvPackages = [ akonadi kdepimlibs kdepim_runtime ];
+ propagatedUserEnvPkgs = [ akonadi kdepimlibs kdepim_runtime ];
meta = {
description = "KDE PIM tools";
diff --git a/pkgs/desktops/kde-4.14/kdeutils/print-manager.nix b/pkgs/desktops/kde-4.14/kdeutils/print-manager.nix
index ae72becd1e4..e786c8f7041 100644
--- a/pkgs/desktops/kde-4.14/kdeutils/print-manager.nix
+++ b/pkgs/desktops/kde-4.14/kdeutils/print-manager.nix
@@ -9,16 +9,10 @@ kde rec {
pythonPath = [ cups pyqt4 pykde4 pycups s_c_p ];
- passthru.propagatedUserEnvPackages = [ s_c_p ];
+ # system-config-printer supplies some D-Bus policy that we need.
+ propagatedUserEnvPkgs = [ s_c_p ];
- postInstall =
- ''
- wrapPythonPrograms
-
- # "system-config-printer" supplies some D-Bus policy that we need.
- mkdir -p $out/nix-support
- echo ${s_c_p} > $out/nix-support/propagated-user-env-packages
- '';
+ postInstall = "wrapPythonPrograms";
meta = {
description = "KDE printer manager";
diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix
index 3844633839e..d769072acb7 100644
--- a/pkgs/desktops/xfce/default.nix
+++ b/pkgs/desktops/xfce/default.nix
@@ -60,13 +60,28 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
xfce4icontheme = callPackage ./art/xfce4-icon-theme.nix { };
- #### PANEL PLUGINS from "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2"
+ #### PANEL PLUGINS from "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.{bz2,gz}"
+
- xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
- xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { };
- xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { };
- xfce4_datetime_plugin = callPackage ./panel-plugins/xfce4-datetime-plugin.nix { };
xfce4_battery_plugin = callPackage ./panel-plugins/xfce4-battery-plugin.nix { };
+ xfce4_clipman_plugin = callPackage ./panel-plugins/xfce4-clipman-plugin.nix { };
+ xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { };
+ xfce4_cpugraph_plugin = callPackage ./panel-plugins/xfce4-cpugraph-plugin.nix { };
+ xfce4_datetime_plugin = callPackage ./panel-plugins/xfce4-datetime-plugin.nix { };
+ xfce4_dict_plugin = callPackage ./panel-plugins/xfce4-dict-plugin.nix { };
+ xfce4_embed_plugin = callPackage ./panel-plugins/xfce4-embed-plugin.nix { };
+ xfce4_eyes_plugin = callPackage ./panel-plugins/xfce4-eyes-plugin.nix { };
+ xfce4_fsguard_plugin = callPackage ./panel-plugins/xfce4-fsguard-plugin.nix { };
+ xfce4_genmon_plugin = callPackage ./panel-plugins/xfce4-genmon-plugin.nix { };
+
+ xfce4_netload_plugin = callPackage ./panel-plugins/xfce4-netload-plugin.nix { };
+ xfce4_notes_plugin = callPackage ./panel-plugins/xfce4-notes-plugin.nix { };
+ xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
+ xfce4_verve_plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { };
+ xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { };
+
+
+
}; # xfce_self
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-battery-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-battery-plugin.nix
index dd93c851c7b..3438791cd78 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-battery-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-battery-plugin.nix
@@ -1,13 +1,14 @@
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+with stdenv.lib;
stdenv.mkDerivation rec {
p_name = "xfce4-battery-plugin";
ver_maj = "1.0";
- ver_min = "0";
+ ver_min = "5";
src = fetchurl {
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
- sha256 = "07qji9gh7ail06kwf1lniph5fdccvrsjwsxwnlbw0cmrws0bb2y2";
+ sha256 = "04gbplcj8z4vg5xbks8cc2jjf62mmf9sdymg90scjwmb82pv2ngn";
};
name = "${p_name}-${ver_maj}.${ver_min}";
@@ -17,6 +18,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "Battery plugin for Xfce panel";
- platforms = stdenv.lib.platforms.linux;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
};
}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin.nix
new file mode 100644
index 00000000000..4e173370428
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, pkgconfig, intltool, glib, exo, libXtst, xproto, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ p_name = "xfce4-clipman-plugin";
+ ver_maj = "1.2";
+ ver_min = "6";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
+ sha256 = "19a8gwcqc0r5qqi8w28dc8arqip34m8yxdb87lgps9g5qfcky113";
+ };
+ name = "${p_name}-${ver_maj}.${ver_min}";
+
+ buildInputs = [ pkgconfig intltool glib exo libXtst xproto libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
+ preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
+
+ meta = {
+ homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+ description = "Clipboard manager for Xfce panel";
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-cpufreq-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-cpufreq-plugin.nix
index 18d043c51fd..f2a8ef4d9ea 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-cpufreq-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-cpufreq-plugin.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+with stdenv.lib;
stdenv.mkDerivation rec {
p_name = "xfce4-cpufreq-plugin";
ver_maj = "1.0";
@@ -17,6 +18,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "CPU Freq load plugin for Xfce panel";
- platforms = stdenv.lib.platforms.linux;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
};
}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-cpugraph-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-cpugraph-plugin.nix
new file mode 100644
index 00000000000..ad9c45820af
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-cpugraph-plugin.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, pkgconfig, intltool, glib, exo, libXtst, xproto, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ p_name = "xfce4-cpugraph-plugin";
+ ver_maj = "1.0";
+ ver_min = "5";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
+ sha256 = "1izl53q95m5xm2fiq7385vb1i9nwgjizxkmgpgh33zdckb40xnl5";
+ };
+ name = "${p_name}-${ver_maj}.${ver_min}";
+
+ buildInputs = [ pkgconfig intltool glib exo libXtst xproto libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
+ preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
+
+ meta = {
+ homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+ description = "CPU graph show for Xfce panel";
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin.nix
index 267a8b77ff1..4ca19d73449 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin.nix
@@ -1,16 +1,17 @@
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, libxfcegui4, xfce4panel
, gtk }:
+with stdenv.lib;
stdenv.mkDerivation rec {
p_name = "xfce4-datetime-plugin";
ver_maj = "0.6";
- ver_min = "1";
+ ver_min = "2";
name = "${p_name}-${ver_maj}.${ver_min}";
src = fetchurl {
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
- sha256 = "06xvh22y5y0bcy7zb9ylvjpcl09wdyb751r7gwyg7m3h44f0qd7v";
+ sha256 = "0b4yril07qgkmywjym1qp12r4g35bnh96879zbjps7cd3rkxld4p";
};
buildInputs = [ pkgconfig intltool libxfce4util libxfcegui4 xfce4panel gtk ];
@@ -18,6 +19,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "Shows the date and time in the panel, and a calendar appears when you left-click on it";
- platforms = stdenv.lib.platforms.linux;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
};
}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-dict-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-dict-plugin.nix
new file mode 100644
index 00000000000..ede0495b8de
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-dict-plugin.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ p_name = "xfce4-dict-plugin";
+ ver_maj = "0.3";
+ ver_min = "0";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.gz";
+ sha256 = "1x0imfnsdfq7fbhka8bc0yjjspkcljc1jafhrwzb08qi9bk2wbar";
+ };
+ name = "${p_name}-${ver_maj}.${ver_min}";
+
+ buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
+
+ meta = {
+ homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+ description = "Dictionary plugin for Xfce panel";
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin.nix
new file mode 100644
index 00000000000..0acf503abe7
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ p_name = "xfce4-embed-plugin";
+ ver_maj = "1.4";
+ ver_min = "1";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
+ sha256 = "0s0zlg7nvjaqvma4l8bhxk171yjrpncsz6v0ff1cxl3z6ya6hbxq";
+ };
+ name = "${p_name}-${ver_maj}.${ver_min}";
+
+ buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
+
+ meta = {
+ homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+ description = "Embed arbitrary app windows on Xfce panel";
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-eyes-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-eyes-plugin.nix
new file mode 100644
index 00000000000..29b23767eb0
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-eyes-plugin.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ p_name = "xfce4-eyes-plugin";
+ ver_maj = "4.4";
+ ver_min = "3";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
+ sha256 = "0z4161i14m73i515ymhj34c1ycz5fmjmbczdd8plx3nvrxdk76jb";
+ };
+ name = "${p_name}-${ver_maj}.${ver_min}";
+
+ buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
+
+ meta = {
+ homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+ description = "Eyes following you!";
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-fsguard-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-fsguard-plugin.nix
new file mode 100644
index 00000000000..539f1332004
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-fsguard-plugin.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ p_name = "xfce4-fsguard-plugin";
+ ver_maj = "1.0";
+ ver_min = "1";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
+ sha256 = "1dxa6gpw4a07ixccafd9fnk38r4fax4bhll73fchpv39jzh7xyzz";
+ };
+ name = "${p_name}-${ver_maj}.${ver_min}";
+
+ buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
+
+ meta = {
+ homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+ description = "Filesystem monitor";
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin.nix
new file mode 100644
index 00000000000..8b6552e4e6c
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-genmon-plugin.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ p_name = "xfce4-genmon-plugin";
+ ver_maj = "3.4";
+ ver_min = "0";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
+ sha256 = "11q3g6lmgz3d5lyh6614mxkd9cblfdyf9jgki7f26mn895xk79dh";
+ };
+ name = "${p_name}-${ver_maj}.${ver_min}";
+
+ buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
+
+ meta = {
+ homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+ description = "Cyclically spawns a command and captures its output";
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-netload-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-netload-plugin.nix
new file mode 100644
index 00000000000..710ca70b021
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-netload-plugin.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ p_name = "xfce4-netload-plugin";
+ ver_maj = "1.2";
+ ver_min = "4";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
+ sha256 = "1lrhhzxmybcfl52hnadr2dvasis9wmk6a48pcy02s09ch8cfkb7z";
+ };
+ name = "${p_name}-${ver_maj}.${ver_min}";
+
+ buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
+ preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
+
+ meta = {
+ homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+ description = "Battery plugin for Xfce panel";
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix
new file mode 100644
index 00000000000..8e402edbeb6
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-notes-plugin.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk, libunique }:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ p_name = "xfce4-notes-plugin";
+ ver_maj = "1.7";
+ ver_min = "7";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
+ sha256 = "05sjbwgch1j93m3r23ksbjnpfk11sf7xjmbb9pm5vl3snc2s3fm7";
+ };
+ name = "${p_name}-${ver_maj}.${ver_min}";
+
+ buildInputs = [ pkgconfig intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk libunique ];
+
+ meta = {
+ homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+ description = "Sticky notes plugin for Xfce panel";
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-systemload-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-systemload-plugin.nix
index dda5dc89def..200e3ccb071 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-systemload-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-systemload-plugin.nix
@@ -1,13 +1,14 @@
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, gtk}:
+with stdenv.lib;
stdenv.mkDerivation rec {
p_name = "xfce4-systemload-plugin";
ver_maj = "1.1";
- ver_min = "1";
+ ver_min = "2";
src = fetchurl {
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
- sha256 = "1bnrr30h6kgb37ixcq7frx2gvj2p99bpa1jyzppwjxp5x7xkxh8s";
+ sha256 = "0z4as6sxdz93d4jpgv0665dg4sykfvc5068mc689phlfl2rvcsdl";
};
name = "${p_name}-${ver_maj}.${ver_min}";
@@ -16,6 +17,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "System load plugin for Xfce panel";
- platforms = stdenv.lib.platforms.linux;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
};
}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix
new file mode 100644
index 00000000000..e73ad925630
--- /dev/null
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-verve-plugin.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, pkgconfig, intltool, glib, exo, pcre
+, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+
+with stdenv.lib;
+stdenv.mkDerivation rec {
+ p_name = "xfce4-verve-plugin";
+ ver_maj = "1.0";
+ ver_min = "0";
+
+ src = fetchurl {
+ url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
+ sha256 = "18zi8lam82xwjm5zdnilg3ffxpp5z8vjad3kjvdsyxdhsdza84fh";
+ };
+ name = "${p_name}-${ver_maj}.${ver_min}";
+
+ buildInputs = [ pkgconfig intltool glib exo pcre libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf gtk ];
+
+ meta = {
+ homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+ description = "A command-line plugin";
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
+}
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin.nix
index 37962a20562..b9bd520f001 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-xkb-plugin.nix
@@ -2,6 +2,7 @@
, gtk, libxklavier, librsvg, libwnck
}:
+with stdenv.lib;
stdenv.mkDerivation rec {
p_name = "xfce4-xkb-plugin";
ver_maj = "0.5";
@@ -20,6 +21,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "Allows you to setup and use multiple keyboard layouts";
- platforms = stdenv.lib.platforms.linux;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
};
}
diff --git a/pkgs/development/compilers/emscripten-fastcomp/default.nix b/pkgs/development/compilers/emscripten-fastcomp/default.nix
index a8180947f4a..36c05195e37 100644
--- a/pkgs/development/compilers/emscripten-fastcomp/default.nix
+++ b/pkgs/development/compilers/emscripten-fastcomp/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchgit, python }:
let
- tag = "1.21.0";
+ tag = "1.29.3";
in
stdenv.mkDerivation rec {
@@ -10,13 +10,13 @@ stdenv.mkDerivation rec {
srcFC = fetchgit {
url = git://github.com/kripken/emscripten-fastcomp;
rev = "refs/tags/${tag}";
- sha256 = "0mcxzg2cfg0s1vfm3bh1ar4xsddb6xkv1dsdbgnpx38lbj1mvfs1";
+ sha256 = "ab44554dc43eee5552ea04c134a5aaff2cd32f6f6528f58a24025bcd8fd1d46e";
};
srcFL = fetchgit {
url = git://github.com/kripken/emscripten-fastcomp-clang;
rev = "refs/tags/${tag}";
- sha256 = "0s2jcn36d236cfpryjpgaazjp3cg83d0h78g6kk1j6vdppv3vgnp";
+ sha256 = "cc6dd704f5eba64fda931833479003bf3c8d9cf781bbaac3aa22a7b2644ccb26";
};
buildInputs = [ python ];
diff --git a/pkgs/development/compilers/emscripten/default.nix b/pkgs/development/compilers/emscripten/default.nix
index 43f256b58b0..cc7982345d4 100644
--- a/pkgs/development/compilers/emscripten/default.nix
+++ b/pkgs/development/compilers/emscripten/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchgit, emscriptenfastcomp, python, nodejs, closurecompiler, jre }:
let
- tag = "1.21.0";
+ tag = "1.29.3";
in
stdenv.mkDerivation rec {
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
src = fetchgit {
url = git://github.com/kripken/emscripten;
rev = "refs/tags/${tag}";
- sha256 = "0y17ab4nhd3521b50sv2i2667w0rlcnmlkpkgw5j3fsh8awxgf32";
+ sha256 = "7f65d1d5cc1c1866554cd79ff83f87fc72a7df59cf1dfd6481e3f0aed5c7dc1f";
};
buildCommand = ''
diff --git a/pkgs/development/compilers/ghc/6.10.1-binary.nix b/pkgs/development/compilers/ghc/6.10.1-binary.nix
deleted file mode 100644
index 02e37cc42cf..00000000000
--- a/pkgs/development/compilers/ghc/6.10.1-binary.nix
+++ /dev/null
@@ -1,103 +0,0 @@
-{stdenv, fetchurl, perl, libedit, ncurses, gmp}:
-
-stdenv.mkDerivation rec {
- version = "6.10.1";
-
- name = "ghc-${version}-binary";
-
- src =
- if stdenv.system == "i686-linux" then
- fetchurl {
- # This binary requires libedit.so.0 (rather than libedit.so.2).
- url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-unknown-linux.tar.bz2";
- sha256 = "18l0vwlf7y86s65klpdvz4ccp8kydvcmyh03c86hld8jvx16q7zz";
- }
- else if stdenv.system == "x86_64-linux" then
- fetchurl {
- # Idem.
- url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-unknown-linux.tar.bz2";
- sha256 = "14jvvn333i36wm7mmvi47jr93f5hxrw1h2dpjvqql0rp00svhzzg";
- }
- else if stdenv.system == "i686-darwin" then
- fetchurl {
- # Idem.
- url = "http://haskell.org/ghc/dist/${version}/maeder/ghc-${version}-i386-apple-darwin.tar.bz2";
- sha256 = "0lax61cfzxkrjb7an3magdax6c8fygsirpw9qfmc651k2sfby1mq";
- }
- else throw "cannot bootstrap GHC on this platform";
-
- buildInputs = [perl];
-
- postUnpack =
- # Strip is harmful, see also below. It's important that this happens
- # first. The GHC Cabal build system makes use of strip by default and
- # has hardcoded paths to /usr/bin/strip in many places. We replace
- # those below, making them point to our dummy script.
- ''
- mkdir "$TMP/bin"
- for i in strip; do
- echo '#! ${stdenv.shell}' > "$TMP/bin/$i"
- chmod +x "$TMP/bin/$i"
- done
- PATH="$TMP/bin:$PATH"
- '' +
- # On Linux, use patchelf to modify the executables so that they can
- # find editline/gmp.
- (if stdenv.isLinux then ''
- find . -type f -perm +100 \
- -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath "${libedit}/lib:${ncurses}/lib:${gmp}/lib" {} \;
- for prog in ld ar gcc strip ranlib; do
- find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \;
- done
- '' else "");
-
- configurePhase = ''
- ${if stdenv.isDarwin then "export DYLD_LIBRARY_PATH=${gmp}/lib" else ""}
- cp $(type -P pwd) utils/pwd/pwd
- ./configure --prefix=$out --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include
- '';
-
- # Stripping combined with patchelf breaks the executables (they die
- # with a segfault or the kernel even refuses the execve). (NIXPKGS-85)
- dontStrip = true;
-
- # No building is necessary, but calling make without flags ironically
- # calls install-strip ...
- buildPhase = "true";
-
- # The binaries for Darwin use frameworks, so fake those frameworks,
- # and create some wrapper scripts that set DYLD_FRAMEWORK_PATH so
- # that the executables work with no special setup.
- postInstall =
- (if stdenv.isDarwin then
- ''
- mv $out/bin $out/bin-orig
- mkdir $out/bin
- for i in $(cd $out/bin-orig && ls); do
- echo "#! $SHELL -e" >> $out/bin/$i
- echo "export DYLD_LIBRARY_PATH=\"${gmp}/lib:${libedit}/lib\"" >> $out/bin/$i
- echo "exec $out/bin-orig/$i \"\$@\"" >> $out/bin/$i
- chmod +x $out/bin/$i
- done
- '' else "")
- +
- ''
- # bah, the passing gmp doesn't work, so let's add it to the final package.conf in a quick but dirty way
- sed -i "s@^\(.*pkgName = PackageName \"rts\".*\libraryDirs = \\[\)\(.*\)@\\1\"${gmp}/lib\",\2@" $out/lib/ghc-${version}/package.conf
-
- # Sanity check, can ghc create executables?
- cd $TMP
- mkdir test-ghc; cd test-ghc
- cat > main.hs << EOF
- module Main where
- main = putStrLn "yes"
- EOF
- $out/bin/ghc --make main.hs
- echo compilation ok
- [ $(./main) == "yes" ]
- '';
-
- meta.license = stdenv.lib.licenses.bsd3;
- meta.platforms = ["i686-darwin" "x86_64-linux" "i686-linux"];
-}
diff --git a/pkgs/development/compilers/ghc/6.10.1.nix b/pkgs/development/compilers/ghc/6.10.1.nix
deleted file mode 100644
index 7c18d76626e..00000000000
--- a/pkgs/development/compilers/ghc/6.10.1.nix
+++ /dev/null
@@ -1,59 +0,0 @@
-{stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses}:
-
-stdenv.mkDerivation rec {
- version = "6.10.1";
-
- name = "ghc-${version}";
-
- homepage = "http://haskell.org/ghc";
-
- src = fetchurl {
- url = "${homepage}/dist/${version}/${name}-src.tar.bz2";
- sha256 = "16q08cxxsmh4hgjhvkl739pc1hh81gljycfq1d2z6m1ld3jpbi22";
- };
-
- buildInputs = [ghc libedit perl gmp];
-
- configureFlags=[
- "--with-gmp-libraries=${gmp}/lib"
- "--with-gmp-includes=${gmp}/include"
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- meta = {
- inherit homepage;
- description = "The Glasgow Haskell Compiler";
- inherit (ghc.meta) license platforms;
- };
-
-
- passthru = {
- corePackages = [
- [ "Cabal" "1.6.0.1" ]
- [ "array" "0.2.0.0" ]
- [ "base" "3.0.3.0" ]
- [ "base" "4.0.0.0" ]
- [ "bytestring" "0.9.1.4" ]
- [ "containers" "0.2.0.0" ]
- [ "directory" "1.0.0.2" ]
- [ "editline" "0.2.1.0" ]
- [ "filepath" "1.1.0.1" ]
- [ "(ghc" "6.10.1)" ]
- [ "ghc-prim" "0.1.0.0" ]
- [ "haddock" "2.3.0" ]
- [ "haskell98" "1.0.1.0" ]
- [ "hpc" "0.5.0.2" ]
- [ "integer" "0.1.0.0" ]
- [ "old-locale" "1.0.0.1" ]
- [ "old-time" "1.0.0.1" ]
- [ "packedstring" "0.1.0.1" ]
- [ "pretty" "1.0.1.0" ]
- [ "process" "1.0.1.0" ]
- [ "random" "1.0.0.1" ]
- [ "rts" "1.0" ]
- [ "syb" "0.1.0.0" ]
- [ "template-haskell" "2.3.0.0" ]
- [ "unix" "2.3.1.0" ]
- ];
- };
-}
diff --git a/pkgs/development/compilers/ghc/6.10.2.nix b/pkgs/development/compilers/ghc/6.10.2.nix
deleted file mode 100644
index 9261ead80d7..00000000000
--- a/pkgs/development/compilers/ghc/6.10.2.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses}:
-
-stdenv.mkDerivation rec {
- version = "6.10.2";
-
- name = "ghc-${version}";
-
- homepage = "http://haskell.org/ghc";
-
- src = fetchurl {
- url = "${homepage}/dist/${version}/${name}-src.tar.bz2";
- sha256 = "0q3wgp8svfl54kpyp55a1kh63cni5vzz811hqjsps84jdg0lg56m";
- };
-
- buildInputs = [ghc libedit perl gmp];
-
- configureFlags=[
- "--with-gmp-libraries=${gmp}/lib"
- "--with-gmp-includes=${gmp}/include"
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- meta = {
- inherit homepage;
- description = "The Glasgow Haskell Compiler";
- inherit (ghc.meta) license platforms;
- };
-
- passthru = {
- corePackages = [
- [ "Cabal" "1.6.0.3" ]
- [ "array" "0.2.0.0" ]
- [ "base" "3.0.3.1" ]
- [ "base" "4.1.0.0" ]
- [ "bytestring" "0.9.1.4" ]
- [ "containers" "0.2.0.1" ]
- [ "directory" "1.0.0.3" ]
- [ "editline" "0.2.1.0" ]
- [ "filepath" "1.1.0.2" ]
- [ "(ghc" "6.10.2)" ]
- [ "ghc-prim" "0.1.0.0" ]
- [ "haddock" "2.4.2" ]
- [ "haskell98" "1.0.1.0" ]
- [ "hpc" "0.5.0.3" ]
- [ "integer" "0.1.0.1" ]
- [ "old-locale" "1.0.0.1" ]
- [ "old-time" "1.0.0.2" ]
- [ "packedstring" "0.1.0.1" ]
- [ "pretty" "1.0.1.0" ]
- [ "process" "1.0.1.1" ]
- [ "random" "1.0.0.1" ]
- [ "rts" "1.0" ]
- [ "syb" "0.1.0.1" ]
- [ "template-haskell" "2.3.0.1" ]
- [ "unix" "2.3.2.0" ]
- ];
- };
-}
diff --git a/pkgs/development/compilers/ghc/6.10.3.nix b/pkgs/development/compilers/ghc/6.10.3.nix
deleted file mode 100644
index 9ab6e2076b5..00000000000
--- a/pkgs/development/compilers/ghc/6.10.3.nix
+++ /dev/null
@@ -1,59 +0,0 @@
-{stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses}:
-
-stdenv.mkDerivation rec {
- version = "6.10.3";
-
- name = "ghc-${version}";
-
- homepage = "http://haskell.org/ghc";
-
- src = fetchurl {
- url = "${homepage}/dist/${version}/${name}-src.tar.bz2";
- sha256 = "82d104ab8b24f27c3566b5693316c779427794a137237b3df925c55e20905893";
- };
-
- buildInputs = [ghc libedit perl gmp];
-
- configureFlags=[
- "--with-gmp-libraries=${gmp}/lib"
- "--with-gmp-includes=${gmp}/include"
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- meta = {
- inherit homepage;
- description = "The Glasgow Haskell Compiler";
- inherit (ghc.meta) license platforms;
- };
-
-
- passthru = {
- corePackages = [
- [ "Cabal" "1.6.0.3" ]
- [ "array" "0.2.0.0" ]
- [ "base" "3.0.3.1" ]
- [ "base" "4.1.0.0" ]
- [ "bytestring" "0.9.1.4" ]
- [ "containers" "0.2.0.1" ]
- [ "directory" "1.0.0.3" ]
- [ "extensible-exceptions" "0.1.1.0" ]
- [ "filepath" "1.1.0.2" ]
- [ "ghc" "6.10.3" ]
- [ "ghc-prim" "0.1.0.0" ]
- [ "haddock" "2.4.2" ]
- [ "haskell98" "1.0.1.0" ]
- [ "hpc" "0.5.0.3" ]
- [ "integer" "0.1.0.1" ]
- [ "old-locale" "1.0.0.1" ]
- [ "old-time" "1.0.0.2" ]
- [ "packedstring" "0.1.0.1" ]
- [ "pretty" "1.0.1.0" ]
- [ "process" "1.0.1.1" ]
- [ "random" "1.0.0.1" ]
- [ "rts" "1.0" ]
- [ "syb" "0.1.0.1" ]
- [ "template-haskell" "2.3.0.1" ]
- [ "unix" "2.3.2.0" ]
- ];
- };
-}
diff --git a/pkgs/development/compilers/ghc/6.11.nix b/pkgs/development/compilers/ghc/6.11.nix
deleted file mode 100644
index 8d57ecd59ac..00000000000
--- a/pkgs/development/compilers/ghc/6.11.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses, happy, alex}:
-
-stdenv.mkDerivation rec {
- version = "6.11.20090916";
-
- name = "ghc-${version}";
-
- homepage = "http://haskell.org/ghc";
-
- src = fetchurl {
- url = "${homepage}/dist/current/dist/${name}-src.tar.bz2";
- sha256 = "a229c5052f401d03cdb77b8a96643eb80ba3faf1a9d0578c6fede1ce2a63cede";
- };
-
- buildInputs = [ghc libedit perl gmp happy alex];
-
- configureFlags=[
- "--with-gmp-libraries=${gmp}/lib"
- "--with-gmp-includes=${gmp}/include"
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- preConfigure=[
- "make distclean"
- ];
-
- meta = {
- inherit homepage;
- description = "The Glasgow Haskell Compiler";
- inherit (ghc.meta) license platforms;
- };
-}
diff --git a/pkgs/development/compilers/ghc/6.12.1-binary.nix b/pkgs/development/compilers/ghc/6.12.1-binary.nix
deleted file mode 100644
index 8d03ca40452..00000000000
--- a/pkgs/development/compilers/ghc/6.12.1-binary.nix
+++ /dev/null
@@ -1,104 +0,0 @@
-{stdenv, fetchurl, perl, ncurses, gmp}:
-
-stdenv.mkDerivation rec {
- version = "6.12.1";
-
- name = "ghc-${version}-binary";
-
- src =
- if stdenv.system == "i686-linux" then
- fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-unknown-linux-n.tar.bz2";
- sha256 = "15kp8mnm4ig6a7k1a1j12lyhdcs75myv6ralfywjzpl27pd77gmk";
- }
- else if stdenv.system == "x86_64-linux" then
- fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-unknown-linux-n.tar.bz2";
- sha256 = "08cb4bgyj23qsbqay4pqs81jha40njkx63ng7l827cydx2pm3qxs";
- }
- else throw "cannot bootstrap GHC on this platform";
-
- buildInputs = [perl];
-
- postUnpack =
- # Strip is harmful, see also below. It's important that this happens
- # first. The GHC Cabal build system makes use of strip by default and
- # has hardcoded paths to /usr/bin/strip in many places. We replace
- # those below, making them point to our dummy script.
- ''
- mkdir "$TMP/bin"
- for i in strip; do
- echo '#! ${stdenv.shell}' > "$TMP/bin/$i"
- chmod +x "$TMP/bin/$i"
- done
- PATH="$TMP/bin:$PATH"
- '' +
- # We have to patch the GMP paths for the integer-gmp package.
- ''
- find . -name integer-gmp.buildinfo \
- -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp}/lib@" {} \;
- '' +
- # On Linux, use patchelf to modify the executables so that they can
- # find editline/gmp.
- (if stdenv.isLinux then ''
- find . -type f -perm +100 \
- -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath "${ncurses}/lib:${gmp}/lib" {} \;
- sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
- sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
- for prog in ld ar gcc strip ranlib; do
- find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \;
- done
- '' else "");
-
- configurePhase = ''
- ./configure --prefix=$out --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include
- '';
-
- # Stripping combined with patchelf breaks the executables (they die
- # with a segfault or the kernel even refuses the execve). (NIXPKGS-85)
- dontStrip = true;
-
- # No building is necessary, but calling make without flags ironically
- # calls install-strip ...
- buildPhase = "true";
-
- # The binaries for Darwin use frameworks, so fake those frameworks,
- # and create some wrapper scripts that set DYLD_FRAMEWORK_PATH so
- # that the executables work with no special setup.
- postInstall =
- (if stdenv.isDarwin then
- ''
- mkdir -p $out/frameworks/GMP.framework/Versions/A
- ln -s ${gmp}/lib/libgmp.dylib $out/frameworks/GMP.framework/GMP
- ln -s ${gmp}/lib/libgmp.dylib $out/frameworks/GMP.framework/Versions/A/GMP
- # !!! fix this
-
- mv $out/bin $out/bin-orig
- mkdir $out/bin
- for i in $(cd $out/bin-orig && ls); do
- echo \"#! $SHELL -e\" >> $out/bin/$i
- echo \"DYLD_FRAMEWORK_PATH=$out/frameworks exec $out/bin-orig/$i -framework-path $out/frameworks \\\"\\$@\\\"\" >> $out/bin/$i
- chmod +x $out/bin/$i
- done
- '' else "")
- +
- ''
- # bah, the passing gmp doesn't work, so let's add it to the final package.conf in a quick but dirty way
- # sed -i "s@^\(.*pkgName = PackageName \"rts\".*\libraryDirs = \\[\)\(.*\)@\\1\"${gmp}/lib\",\2@" $out/lib/ghc-${version}/package.conf
-
- # Sanity check, can ghc create executables?
- cd $TMP
- mkdir test-ghc; cd test-ghc
- cat > main.hs << EOF
- module Main where
- main = putStrLn "yes"
- EOF
- $out/bin/ghc --make main.hs
- echo compilation ok
- [ $(./main) == "yes" ]
- '';
-
- meta.license = stdenv.lib.licenses.bsd3;
- meta.platforms = ["x86_64-linux" "i686-linux"];
-}
diff --git a/pkgs/development/compilers/ghc/6.12.1.nix b/pkgs/development/compilers/ghc/6.12.1.nix
deleted file mode 100644
index 66b277dc376..00000000000
--- a/pkgs/development/compilers/ghc/6.12.1.nix
+++ /dev/null
@@ -1,81 +0,0 @@
-{stdenv, fetchurl, ghc, perl, gmp, ncurses}:
-
-stdenv.mkDerivation rec {
- version = "6.12.1";
-
- name = "ghc-${version}";
-
- src = fetchurl {
- url = http://haskell.org/ghc/dist/6.12.1/ghc-6.12.1-src.tar.bz2;
- sha256 = "0ajm4sypk4zgjp0m6i03fadyv5dm9vlqfnvsx1g94yk7vnd9zyfd";
- };
-
- buildInputs = [ghc perl gmp ncurses];
-
- buildMK = ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
- '';
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- '';
-
- configureFlags=[
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = "http://haskell.org/ghc";
- description = "The Glasgow Haskell Compiler";
- maintainers = [
- stdenv.lib.maintainers.marcweber
- stdenv.lib.maintainers.andres
- ];
- inherit (ghc.meta) license platforms;
- };
-
- # TODO: requires a comment as to what it does and why it is needed.
- passthru = {
- corePackages = [
- [ "Cabal" "1.8.0.2" ]
- [ "array" "0.3.0.0" ]
- [ "base" "3.0.3.2" ]
- [ "base" "4.2.0.0" ]
- [ "bin-package-db" "0.0.0.0" ]
- [ "bytestring" "0.9.1.5" ]
- [ "containers" "0.3.0.0" ]
- [ "directory" "1.0.1.0" ]
- [ "dph-base" "0.4.0" ]
- [ "dph-par" "0.4.0" ]
- [ "dph-prim-interface" "0.4.0" ]
- [ "dph-prim-par" "0.4.0" ]
- [ "dph-prim-seq" "0.4.0" ]
- [ "dph-seq" "0.4.0" ]
- [ "extensible-exceptions" "0.1.1.1" ]
- [ "ffi" "1.0" ]
- [ "filepath" "1.1.0.3" ]
- [ "ghc" "6.12.1" ]
- [ "ghc-binary" "0.5.0.2" ]
- [ "ghc-prim" "0.2.0.0" ]
- [ "haskell98" "1.0.1.1" ]
- [ "hpc" "0.5.0.4" ]
- [ "integer-gmp" "0.2.0.0" ]
- [ "old-locale" "1.0.0.2" ]
- [ "old-time" "1.0.0.3" ]
- [ "pretty" "1.0.1.1" ]
- [ "process" "1.0.1.2" ]
- [ "random" "1.0.0.2" ]
- [ "rts" "1.0" ]
- [ "syb" "0.1.0.2" ]
- [ "template-haskell" "2.4.0.0" ]
- [ "time" "1.1.4" ]
- [ "unix" "2.4.0.0" ]
- [ "utf8-string" "0.3.4" ]
- ];
- };
-}
diff --git a/pkgs/development/compilers/ghc/6.12.2.nix b/pkgs/development/compilers/ghc/6.12.2.nix
deleted file mode 100644
index a7252a7931d..00000000000
--- a/pkgs/development/compilers/ghc/6.12.2.nix
+++ /dev/null
@@ -1,81 +0,0 @@
-{stdenv, fetchurl, ghc, perl, gmp, ncurses}:
-
-stdenv.mkDerivation rec {
- version = "6.12.2";
-
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";
- sha256 = "7f1e39f0b3ddaca35b55cd430ca058d1c4678445a7177391c9cb6342b7c41a30";
- };
-
- buildInputs = [ghc perl gmp ncurses];
-
- buildMK = ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
- '';
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- '';
-
- configureFlags=[
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = "http://haskell.org/ghc";
- description = "The Glasgow Haskell Compiler";
- maintainers = [
- stdenv.lib.maintainers.marcweber
- stdenv.lib.maintainers.andres
- ];
- inherit (ghc.meta) license platforms;
- };
-
- # TODO: requires a comment as to what it does and why it is needed.
- passthru = {
- corePackages = [
- [ "Cabal" "1.8.0.2" ]
- [ "array" "0.3.0.0" ]
- [ "base" "3.0.3.2" ]
- [ "base" "4.2.0.0" ]
- [ "bin-package-db" "0.0.0.0" ]
- [ "bytestring" "0.9.1.5" ]
- [ "containers" "0.3.0.0" ]
- [ "directory" "1.0.1.0" ]
- [ "dph-base" "0.4.0" ]
- [ "dph-par" "0.4.0" ]
- [ "dph-prim-interface" "0.4.0" ]
- [ "dph-prim-par" "0.4.0" ]
- [ "dph-prim-seq" "0.4.0" ]
- [ "dph-seq" "0.4.0" ]
- [ "extensible-exceptions" "0.1.1.1" ]
- [ "ffi" "1.0" ]
- [ "filepath" "1.1.0.3" ]
- [ "ghc" "6.12.1" ]
- [ "ghc-binary" "0.5.0.2" ]
- [ "ghc-prim" "0.2.0.0" ]
- [ "haskell98" "1.0.1.1" ]
- [ "hpc" "0.5.0.4" ]
- [ "integer-gmp" "0.2.0.0" ]
- [ "old-locale" "1.0.0.2" ]
- [ "old-time" "1.0.0.3" ]
- [ "pretty" "1.0.1.1" ]
- [ "process" "1.0.1.2" ]
- [ "random" "1.0.0.2" ]
- [ "rts" "1.0" ]
- [ "syb" "0.1.0.2" ]
- [ "template-haskell" "2.4.0.0" ]
- [ "time" "1.1.4" ]
- [ "unix" "2.4.0.0" ]
- [ "utf8-string" "0.3.4" ]
- ];
- };
-}
diff --git a/pkgs/development/compilers/ghc/6.12.3.nix b/pkgs/development/compilers/ghc/6.12.3.nix
index a1cc16e1f9e..05eff1b5d90 100644
--- a/pkgs/development/compilers/ghc/6.12.3.nix
+++ b/pkgs/development/compilers/ghc/6.12.3.nix
@@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
buildMK = ''
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib"
'';
preConfigure = ''
diff --git a/pkgs/development/compilers/ghc/6.4.2-binary.nix b/pkgs/development/compilers/ghc/6.4.2-binary.nix
deleted file mode 100644
index 5485326e2e7..00000000000
--- a/pkgs/development/compilers/ghc/6.4.2-binary.nix
+++ /dev/null
@@ -1,67 +0,0 @@
-{stdenv, fetchurl, perl, readline, ncurses, gmp}:
-
-stdenv.mkDerivation {
- name = if stdenv.system == "i686-darwin" then "ghc-6.6.1-binary" else "ghc-6.4.2-binary";
-
- src =
- if stdenv.system == "i686-linux" then
- fetchurl {
- url = http://tarballs.nixos.org/ghc-6.4.2-i386-unknown-linux.tar.bz2;
- md5 = "092fe2e25dab22b926babe97cc77db1f";
- }
- else if stdenv.system == "x86_64-linux" then
- fetchurl {
- url = http://haskell.org/ghc/dist/6.4.2/ghc-6.4.2-x86_64-unknown-linux.tar.bz2;
- md5 = "8f5fe48798f715cd05214a10987bf6d5";
- }
- else if stdenv.system == "i686-darwin" then
- /* Yes, this isn't GHC 6.4.2. But IIRC either there was no
- 6.4.2 binary for Darwin, or it didn't work. In any case, in
- Nixpkgs we just need this bootstrapping a "real" GHC. */
- fetchurl {
- url = http://www.haskell.org/ghc/dist/6.6.1/ghc-6.6.1-i386-apple-darwin.tar.bz2;
- sha256 = "1drbsicanr6jlykvs4vs6gbi2q9ac1bcaxz2vzwh3pfv3lfibwia";
- }
- else throw "cannot bootstrap GHC on this platform";
-
- buildInputs = [perl];
-
- # On Linux, use patchelf to modify the executables so that they can
- # find readline/gmp.
- postBuild = if stdenv.isLinux then "
- find . -type f -perm +100 \\
- -exec patchelf --interpreter \"$(cat $NIX_CC/nix-support/dynamic-linker)\" \\
- --set-rpath \"${readline}/lib:${ncurses}/lib:${gmp}/lib\" {} \\;
- " else "";
-
- # Stripping combined with patchelf breaks the executables (they die
- # with a segfault or the kernel even refuses the execve). (NIXPKGS-85)
- dontStrip = true;
-
- # The binaries for Darwin use frameworks, so fake those frameworks,
- # and create some wrapper scripts that set DYLD_FRAMEWORK_PATH so
- # that the executables work with no special setup.
- postInstall = if stdenv.isDarwin then ''
-
- mkdir -p $out/frameworks/GMP.framework/Versions/A
- ln -s ${gmp}/lib/libgmp.dylib $out/frameworks/GMP.framework/GMP
- ln -s ${gmp}/lib/libgmp.dylib $out/frameworks/GMP.framework/Versions/A/GMP
- mkdir -p $out/frameworks/GNUreadline.framework/Versions/A
- ln -s ${readline}/lib/libreadline.dylib $out/frameworks/GNUreadline.framework/GNUreadline
- ln -s ${readline}/lib/libreadline.dylib $out/frameworks/GNUreadline.framework/Versions/A/GNUreadline
-
- mkdir $out/bin-orig
- for i in $(cd $out/bin && ls *); do
- mv $out/bin/$i $out/bin-orig/$i
- echo "#! $SHELL -e" >> $out/bin/$i
- extraFlag=
- if test $i != ghc-pkg; then extraFlag="-framework-path $out/frameworks"; fi
- echo "DYLD_FRAMEWORK_PATH=$out/frameworks exec $out/bin-orig/$i $extraFlag \"\$@\"" >> $out/bin/$i
- chmod +x $out/bin/$i
- done
-
- '' else "";
-
- meta.license = stdenv.lib.licenses.bsd3;
- meta.platforms = ["i686-darwin" "x86_64-linux" "i686-linux"];
-}
diff --git a/pkgs/development/compilers/ghc/6.4.2.nix b/pkgs/development/compilers/ghc/6.4.2.nix
deleted file mode 100644
index dfd38cc6a1a..00000000000
--- a/pkgs/development/compilers/ghc/6.4.2.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{stdenv, fetchurl, perl, ghc, m4, readline, ncurses, gmp}:
-
-stdenv.mkDerivation {
- name = "ghc-6.4.2";
-
- src = fetchurl {
- url = http://www.haskell.org/ghc/dist/6.4.2/ghc-6.4.2-src.tar.bz2;
- md5 = "a394bf14e94c3bca5507d568fcc03375";
- };
-
- buildInputs = [perl ghc m4];
-
- propagatedBuildInputs = [readline ncurses gmp];
-
- configureFlags = "--with-gcc=${stdenv.cc}/bin/gcc";
-
- preConfigure =
- ''
- # Don't you hate build processes that write in $HOME? :-(
- export HOME=$(pwd)/fake-home
- mkdir -p $HOME
- '';
-
- meta = {
- description = "The Glasgow Haskell Compiler";
- inherit (ghc.meta) license platforms;
- };
-}
diff --git a/pkgs/development/compilers/ghc/6.6.1.nix b/pkgs/development/compilers/ghc/6.6.1.nix
deleted file mode 100644
index 0f91b9d5052..00000000000
--- a/pkgs/development/compilers/ghc/6.6.1.nix
+++ /dev/null
@@ -1,46 +0,0 @@
-{stdenv, fetchurl, readline, ghc, perl58, m4, gmp, ncurses}:
-
-stdenv.mkDerivation (rec {
- name = "ghc-6.6.1";
-
- src = map fetchurl [
- { url = http://www.haskell.org/ghc/dist/6.6.1/ghc-6.6.1-src.tar.bz2;
- md5 = "ba9f4aec2fde5ff1e1548ae69b78aeb0";
- }
- { url = http://www.haskell.org/ghc/dist/6.6.1/ghc-6.6.1-src-extralibs.tar.bz2;
- md5 = "43a26b81608b206c056adc3032f7da2a";
- }
- ];
-
- buildInputs = [ghc readline perl58 m4 gmp];
-
- meta = {
- description = "The Glasgow Haskell Compiler";
- inherit (ghc.meta) license platforms;
- };
-
- postInstall = ''
- mkdir -p "$out/nix-support"
- echo "# Path to the GHC compiler directory in the store" > $out/nix-support/setup-hook
- echo "ghc=$out" >> $out/nix-support/setup-hook
- echo "" >> $out/nix-support/setup-hook
- cat $setupHook >> $out/nix-support/setup-hook
- '';
-
- configureFlags=[
- "--with-gmp-libraries=${gmp}/lib"
- "--with-readline-libraries=${readline}/lib"
- "--with-gmp-includes=${gmp}/include"
- "--with-gcc=${gcc}/bin/gcc"
- ];
-
- preConfigure = ''
- # still requires a hack for ncurses
- sed -i "s|^\(library-dirs.*$\)|\1 \"${ncurses}/lib\"|" libraries/readline/package.conf.in
- # fix for gcc 4.2
- echo "SplitObjs=NO" >> mk/build.mk
- '';
-
- inherit (stdenv) gcc;
- inherit readline gmp ncurses;
-})
diff --git a/pkgs/development/compilers/ghc/6.8.2.nix b/pkgs/development/compilers/ghc/6.8.2.nix
deleted file mode 100644
index 0f649745a1e..00000000000
--- a/pkgs/development/compilers/ghc/6.8.2.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{stdenv, fetchurl, readline, ghc, perl, m4, gmp, ncurses}:
-
-stdenv.mkDerivation (rec {
- version = "6.8.2";
- name = "ghc-${version}";
- homepage = "http://www.haskell.org/ghc";
-
- src = map fetchurl [
- { url = "${homepage}/dist/${version}/${name}-src.tar.bz2";
- sha256 = "2d10f973c35e8d7d9f62b53e26fef90177a9a15105cda4b917340ba7696a22d9";
- }
- { url = "${homepage}/dist/${version}/${name}-src-extralibs.tar.bz2";
- md5 = "d199c50814188fb77355d41058b8613c";
- }
- ];
-
- buildInputs = [ghc readline perl m4 gmp];
-
- meta = {
- description = "The Glasgow Haskell Compiler";
- inherit (ghc.meta) license platforms;
- };
-
- configureFlags=[
- "--with-gmp-libraries=${gmp}/lib"
- "--with-gmp-includes=${gmp}/include"
- "--with-readline-libraries=${readline}/lib"
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- preConfigure = "
- # still requires a hack for ncurses
- sed -i \"s|^\\\(ld-options.*$\\\)|\\\1 -L${ncurses}/lib|\" libraries/readline/readline.buildinfo.in
- ";
-})
diff --git a/pkgs/development/compilers/ghc/6.8.3.nix b/pkgs/development/compilers/ghc/6.8.3.nix
deleted file mode 100644
index ea116781afb..00000000000
--- a/pkgs/development/compilers/ghc/6.8.3.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{stdenv, fetchurl, readline, ghc, perl, m4, gmp, ncurses, haddock}:
-
-stdenv.mkDerivation rec {
- version = "6.8.3";
- name = "ghc-${version}";
- homepage = "http://www.haskell.org/ghc";
-
- src = map fetchurl [
- { url = "${homepage}/dist/${version}/${name}-src.tar.bz2";
- sha256 = "1fc1ff82a555532f1c9d2dc628fd9de5e6ebab2ce6ee9490a34174ceb6f76e6b";
- }
- { url = "${homepage}/dist/${version}/${name}-src-extralibs.tar.bz2";
- sha256 = "ee2f5ba6a46157fc53eae515cb6fa1ed3c5023e7eac15981d92af0af00ee2ba2";
- }
- ];
-
- buildInputs = [ghc readline perl m4 gmp haddock];
-
- meta = {
- description = "The Glasgow Haskell Compiler";
- inherit (ghc.meta) license platforms;
- };
-
- configureFlags=[
- "--with-gmp-libraries=${gmp}/lib"
- "--with-gmp-includes=${gmp}/include"
- "--with-readline-libraries=${readline}/lib"
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- preConfigure = ''
- # still requires a hack for ncurses
- sed -i "s|^\(ld-options.*$\)|\1 -L${ncurses}/lib|" libraries/readline/readline.buildinfo.in
- # build haddock docs
- echo "HADDOCK_DOCS = YES" >> mk/build.mk
- '';
-}
diff --git a/pkgs/development/compilers/ghc/7.0.1.nix b/pkgs/development/compilers/ghc/7.0.1.nix
deleted file mode 100644
index 3f992bb16ff..00000000000
--- a/pkgs/development/compilers/ghc/7.0.1.nix
+++ /dev/null
@@ -1,81 +0,0 @@
-{stdenv, fetchurl, ghc, perl, gmp, ncurses}:
-
-stdenv.mkDerivation rec {
- version = "7.0.1";
-
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://www.haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";
- sha256 = "1iciljngxmqy465cw3pkl6jp0ydiils4bfz6ixfaxk7aqv7r7xsi";
- };
-
- buildInputs = [ghc perl gmp ncurses];
-
- buildMK = ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
- '';
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- '';
-
- configureFlags=[
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = "http://haskell.org/ghc";
- description = "The Glasgow Haskell Compiler";
- maintainers = [
- stdenv.lib.maintainers.marcweber
- stdenv.lib.maintainers.andres
- ];
- inherit (ghc.meta) license platforms;
- };
-
- # TODO: requires a comment as to what it does and why it is needed.
- passthru = {
- corePackages = [
- [ "Cabal" "1.8.0.2" ]
- [ "array" "0.3.0.0" ]
- [ "base" "3.0.3.2" ]
- [ "base" "4.2.0.0" ]
- [ "bin-package-db" "0.0.0.0" ]
- [ "bytestring" "0.9.1.5" ]
- [ "containers" "0.3.0.0" ]
- [ "directory" "1.0.1.0" ]
- [ "dph-base" "0.4.0" ]
- [ "dph-par" "0.4.0" ]
- [ "dph-prim-interface" "0.4.0" ]
- [ "dph-prim-par" "0.4.0" ]
- [ "dph-prim-seq" "0.4.0" ]
- [ "dph-seq" "0.4.0" ]
- [ "extensible-exceptions" "0.1.1.1" ]
- [ "ffi" "1.0" ]
- [ "filepath" "1.1.0.3" ]
- [ "ghc" "6.12.1" ]
- [ "ghc-binary" "0.5.0.2" ]
- [ "ghc-prim" "0.2.0.0" ]
- [ "haskell98" "1.0.1.1" ]
- [ "hpc" "0.5.0.4" ]
- [ "integer-gmp" "0.2.0.0" ]
- [ "old-locale" "1.0.0.2" ]
- [ "old-time" "1.0.0.3" ]
- [ "pretty" "1.0.1.1" ]
- [ "process" "1.0.1.2" ]
- [ "random" "1.0.0.2" ]
- [ "rts" "1.0" ]
- [ "syb" "0.1.0.2" ]
- [ "template-haskell" "2.4.0.0" ]
- [ "time" "1.1.4" ]
- [ "unix" "2.4.0.0" ]
- [ "utf8-string" "0.3.4" ]
- ];
- };
-}
diff --git a/pkgs/development/compilers/ghc/7.0.2.nix b/pkgs/development/compilers/ghc/7.0.2.nix
deleted file mode 100644
index 3fb982e2a71..00000000000
--- a/pkgs/development/compilers/ghc/7.0.2.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
-
-stdenv.mkDerivation rec {
- version = "7.0.2";
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";
- sha256 = "f0551f1af2f008a8a14a888b70c0557e00dd04f9ae309ac91897306cd04a6668";
- };
-
- buildInputs = [ ghc perl gmp ncurses ];
-
- buildMK = ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
- '';
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '';
-
- configureFlags=[
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = "http://haskell.org/ghc";
- description = "The Glasgow Haskell Compiler";
- maintainers = [
- stdenv.lib.maintainers.marcweber
- stdenv.lib.maintainers.andres
- ];
- inherit (ghc.meta) license platforms;
- broken = true;
- };
-
-}
diff --git a/pkgs/development/compilers/ghc/7.0.3.nix b/pkgs/development/compilers/ghc/7.0.3.nix
deleted file mode 100644
index b2040751370..00000000000
--- a/pkgs/development/compilers/ghc/7.0.3.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
-
-stdenv.mkDerivation rec {
- version = "7.0.3";
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";
- sha256 = "1nfc2c6bdcdfg3f3d9q5v109jrrwhz6by3qa4qi7k0xbip16jq8m";
- };
-
- buildInputs = [ ghc perl gmp ncurses ];
-
- buildMK = ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
- '';
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '';
-
- configureFlags=[
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = "http://haskell.org/ghc";
- description = "The Glasgow Haskell Compiler";
- maintainers = [
- stdenv.lib.maintainers.marcweber
- stdenv.lib.maintainers.andres
- ];
- inherit (ghc.meta) license platforms;
- broken = true;
- };
-
-}
diff --git a/pkgs/development/compilers/ghc/7.0.4.nix b/pkgs/development/compilers/ghc/7.0.4.nix
index bcce5ec03ae..fe7ec94c00d 100644
--- a/pkgs/development/compilers/ghc/7.0.4.nix
+++ b/pkgs/development/compilers/ghc/7.0.4.nix
@@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
buildMK = ''
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib"
'';
preConfigure = ''
diff --git a/pkgs/development/compilers/ghc/7.10.1.nix b/pkgs/development/compilers/ghc/7.10.1.nix
new file mode 100644
index 00000000000..f09de480c5d
--- /dev/null
+++ b/pkgs/development/compilers/ghc/7.10.1.nix
@@ -0,0 +1,51 @@
+{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
+
+let
+
+ buildMK = ''
+ libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
+ libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib"
+ DYNAMIC_BY_DEFAULT = NO
+ '';
+
+in
+
+stdenv.mkDerivation rec {
+ version = "7.10.0.20141222";
+ name = "ghc-${version}";
+
+ src = fetchurl {
+ url = "https://downloads.haskell.org/~ghc/7.10.1-rc1/ghc-7.10.0.20141222-src.tar.xz";
+ sha256 = "0nncvvwksqqz1d991jbag3b4174i275nn0psadriq5hi3px11dkl";
+ };
+
+ buildInputs = [ ghc perl ];
+
+ preConfigure = ''
+ echo >mk/build.mk "${buildMK}"
+ sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
+ '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
+ export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
+ '';
+
+ configureFlags = [
+ "--with-gcc=${stdenv.cc}/bin/cc"
+ "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib"
+ ];
+
+ enableParallelBuilding = true;
+
+ # required, because otherwise all symbols from HSffi.o are stripped, and
+ # that in turn causes GHCi to abort
+ stripDebugFlags = [ "-S" "--keep-file-symbols" ];
+
+ meta = {
+ homepage = "http://haskell.org/ghc";
+ description = "The Glasgow Haskell Compiler";
+ maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ];
+ inherit (ghc.meta) license platforms;
+ };
+
+}
diff --git a/pkgs/development/compilers/ghc/7.2.1.nix b/pkgs/development/compilers/ghc/7.2.1.nix
deleted file mode 100644
index 5a3af0f6492..00000000000
--- a/pkgs/development/compilers/ghc/7.2.1.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
-
-stdenv.mkDerivation rec {
- version = "7.2.1";
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";
- sha256 = "099w2bvx07jq4b1k8f1hspri30wbk35dz6ilsivxr2xg661c2qjm";
- };
-
- buildInputs = [ ghc perl gmp ncurses ];
-
- buildMK = ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
- '';
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '';
-
- configureFlags=[
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = "http://haskell.org/ghc";
- description = "The Glasgow Haskell Compiler";
- maintainers = [
- stdenv.lib.maintainers.marcweber
- stdenv.lib.maintainers.andres
- stdenv.lib.maintainers.simons
- ];
- inherit (ghc.meta) license platforms;
- };
-
-}
diff --git a/pkgs/development/compilers/ghc/7.2.2.nix b/pkgs/development/compilers/ghc/7.2.2.nix
index 51d94af4051..fbf37f62837 100644
--- a/pkgs/development/compilers/ghc/7.2.2.nix
+++ b/pkgs/development/compilers/ghc/7.2.2.nix
@@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
buildMK = ''
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib"
'';
preConfigure = ''
diff --git a/pkgs/development/compilers/ghc/7.4.1.nix b/pkgs/development/compilers/ghc/7.4.1.nix
deleted file mode 100644
index f666299c5b0..00000000000
--- a/pkgs/development/compilers/ghc/7.4.1.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
-
-stdenv.mkDerivation rec {
- version = "7.4.1";
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";
- sha256 = "0ycscsagyy9n796a59q6761s6ar50d8inibvnrcp96siksj0j73j";
- };
-
- buildInputs = [ ghc perl gmp ncurses ];
-
- buildMK = ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
- '';
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '';
-
- configureFlags=[
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = "http://haskell.org/ghc";
- description = "The Glasgow Haskell Compiler";
- maintainers = [
- stdenv.lib.maintainers.marcweber
- stdenv.lib.maintainers.andres
- stdenv.lib.maintainers.simons
- ];
- platforms = ["x86_64-linux" "i686-linux" "i686-darwin" "x86_64-darwin"];
- };
-
-}
diff --git a/pkgs/development/compilers/ghc/7.4.2-binary.nix b/pkgs/development/compilers/ghc/7.4.2-binary.nix
index 8dc585e7cda..9fd1f038e7c 100644
--- a/pkgs/development/compilers/ghc/7.4.2-binary.nix
+++ b/pkgs/development/compilers/ghc/7.4.2-binary.nix
@@ -62,8 +62,9 @@ stdenv.mkDerivation rec {
'' else "");
configurePhase = ''
- ./configure --prefix=$out --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include \
- ${if stdenv.isDarwin then "--with-gcc=${./gcc-clang-wrapper.sh}" else "--with-clang"}
+ ./configure --prefix=$out \
+ --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include \
+ ${stdenv.lib.optionalString stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}"}
'';
# Stripping combined with patchelf breaks the executables (they die
diff --git a/pkgs/development/compilers/ghc/7.4.2.nix b/pkgs/development/compilers/ghc/7.4.2.nix
index 2f577f12bc4..d5a3fb49c9b 100644
--- a/pkgs/development/compilers/ghc/7.4.2.nix
+++ b/pkgs/development/compilers/ghc/7.4.2.nix
@@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
buildMK = ''
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib"
'';
preConfigure = ''
diff --git a/pkgs/development/compilers/ghc/7.6.1.nix b/pkgs/development/compilers/ghc/7.6.1.nix
deleted file mode 100644
index 8f1a6951966..00000000000
--- a/pkgs/development/compilers/ghc/7.6.1.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
-
-stdenv.mkDerivation rec {
- version = "7.6.1";
-
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://haskell.org/ghc/dist/7.6.1/${name}-src.tar.bz2";
- sha256 = "1q5rqp8z90mq6ysf7h28zkbhfaxlrpva2qy0wnkr43d7214dzp7i";
- };
-
- buildInputs = [ ghc perl gmp ncurses ];
-
- buildMK = ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
- '';
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '';
-
- configureFlags=[
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = "http://haskell.org/ghc";
- description = "The Glasgow Haskell Compiler";
- maintainers = [
- stdenv.lib.maintainers.marcweber
- stdenv.lib.maintainers.andres
- stdenv.lib.maintainers.simons
- ];
- inherit (ghc.meta) license platforms;
- };
-
-}
diff --git a/pkgs/development/compilers/ghc/7.6.2.nix b/pkgs/development/compilers/ghc/7.6.2.nix
deleted file mode 100644
index d2ea2ebce05..00000000000
--- a/pkgs/development/compilers/ghc/7.6.2.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
-
-stdenv.mkDerivation rec {
- version = "7.6.2";
-
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";
- sha256 = "d5f45184abeacf7e9c6b4f63c7101a5c1d7b4fe9007901159e2287ecf38de533";
- };
-
- buildInputs = [ ghc perl gmp ncurses ];
-
-
- buildMK = ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
- '';
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '';
-
- configureFlags = [
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = "http://haskell.org/ghc";
- description = "The Glasgow Haskell Compiler";
- maintainers = [
- stdenv.lib.maintainers.marcweber
- stdenv.lib.maintainers.andres
- stdenv.lib.maintainers.simons
- ];
- inherit (ghc.meta) license platforms;
- };
-
-}
diff --git a/pkgs/development/compilers/ghc/7.6.3.nix b/pkgs/development/compilers/ghc/7.6.3.nix
index 9866ea38e86..7db52d1eeec 100644
--- a/pkgs/development/compilers/ghc/7.6.3.nix
+++ b/pkgs/development/compilers/ghc/7.6.3.nix
@@ -22,7 +22,8 @@ in stdenv.mkDerivation rec {
buildMK = ''
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
-
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib"
'' + stdenv.lib.optionalString stdenv.isLinux ''
# Set ghcFlags for building ghc itself
SRC_HC_OPTS += ${ghcFlags}
diff --git a/pkgs/development/compilers/ghc/7.8.3-binary.nix b/pkgs/development/compilers/ghc/7.8.3-binary.nix
deleted file mode 100644
index 91a156ab4e2..00000000000
--- a/pkgs/development/compilers/ghc/7.8.3-binary.nix
+++ /dev/null
@@ -1,78 +0,0 @@
-{stdenv, fetchurl, perl, ncurses, gmp}:
-
-stdenv.mkDerivation rec {
- version = "7.8.3";
-
- name = "ghc-${version}-binary";
-
- src =
- if stdenv.system == "x86_64-darwin" then
- fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-apple-darwin.tar.bz2";
- sha256 = "1ja0cq5xyjcvjpvjmm4nzhkpmwfs2kjlldbc48lxcs9rmqi7rnay";
- }
- else throw "cannot bootstrap GHC on this platform";
-
- buildInputs = [perl];
-
- postUnpack =
- # Strip is harmful, see also below. It's important that this happens
- # first. The GHC Cabal build system makes use of strip by default and
- # has hardcoded paths to /usr/bin/strip in many places. We replace
- # those below, making them point to our dummy script.
- ''
- mkdir "$TMP/bin"
- for i in strip; do
- echo '#! ${stdenv.shell}' > "$TMP/bin/$i"
- chmod +x "$TMP/bin/$i"
- done
- PATH="$TMP/bin:$PATH"
- '' +
- # We have to patch the GMP paths for the integer-gmp package.
- ''
- find . -name integer-gmp.buildinfo \
- -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp}/lib@" {} \;
- '' +
- # On Linux, use patchelf to modify the executables so that they can
- # find editline/gmp.
- (if stdenv.isLinux then ''
- find . -type f -perm +100 \
- -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath "${ncurses}/lib:${gmp}/lib" {} \;
- sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
- sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
- for prog in ld ar gcc strip ranlib; do
- find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \;
- done
- '' else "");
-
- configurePhase = ''
- ./configure --prefix=$out --with-gmp-libraries=${gmp}/lib \
- --with-gmp-includes=${gmp}/include
- '';
-
- # Stripping combined with patchelf breaks the executables (they die
- # with a segfault or the kernel even refuses the execve). (NIXPKGS-85)
- dontStrip = true;
-
- # No building is necessary, but calling make without flags ironically
- # calls install-strip ...
- buildPhase = "true";
-
- postInstall =
- ''
- # Sanity check, can ghc create executables?
- cd $TMP
- mkdir test-ghc; cd test-ghc
- cat > main.hs << EOF
- module Main where
- main = putStrLn "yes"
- EOF
- $out/bin/ghc --make main.hs
- echo compilation ok
- [ $(./main) == "yes" ]
- '';
-
- meta.license = stdenv.lib.licenses.bsd3;
- meta.platforms = ["x86_64-darwin"];
-}
diff --git a/pkgs/development/compilers/ghc/7.8.4.nix b/pkgs/development/compilers/ghc/7.8.4.nix
index ccc3f4c875b..1634524fc03 100644
--- a/pkgs/development/compilers/ghc/7.8.4.nix
+++ b/pkgs/development/compilers/ghc/7.8.4.nix
@@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
buildMK = ''
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib"
DYNAMIC_BY_DEFAULT = NO
'';
diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix
index c79cdfbe342..71b51cf64ff 100644
--- a/pkgs/development/compilers/ghc/head.nix
+++ b/pkgs/development/compilers/ghc/head.nix
@@ -1,18 +1,30 @@
-{ stdenv, fetchurl, ghc, perl, gmp, ncurses, happy, alex }:
+{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
+
+let
+
+ buildMK = ''
+ libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
+ libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include"
+ libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib"
+ DYNAMIC_BY_DEFAULT = NO
+ '';
+
+in
stdenv.mkDerivation rec {
- version = "7.10.0.20141222";
+ version = "7.11.20150118";
name = "ghc-${version}";
src = fetchurl {
- url = "https://downloads.haskell.org/~ghc/7.10.1-rc1/ghc-7.10.0.20141222-src.tar.xz";
- sha256 = "0nncvvwksqqz1d991jbag3b4174i275nn0psadriq5hi3px11dkl";
+ url = "http://deb.haskell.org/dailies/2015-01-18/ghc_7.11.20150118.orig.tar.bz2";
+ sha256 = "1zy960q2faq03camq2n4834bd748vkc15h83bapswc68dqncqj20";
};
- buildInputs = [ ghc perl ncurses happy alex ];
+ buildInputs = [ ghc perl ];
preConfigure = ''
- echo >mk/build.mk "DYNAMIC_BY_DEFAULT = NO"
+ echo >mk/build.mk "${buildMK}"
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
diff --git a/pkgs/development/compilers/pakcs/default.nix b/pkgs/development/compilers/pakcs/default.nix
index 433301e7ac0..739804646c2 100644
--- a/pkgs/development/compilers/pakcs/default.nix
+++ b/pkgs/development/compilers/pakcs/default.nix
@@ -50,7 +50,6 @@ stdenv.mkDerivation rec {
buildPhase = ''
# Some comments in files are in UTF-8, so include the locale needed by GHC runtime.
- export LOCALE_ARCHIVE=${glibcLocales}/lib/locale/locale-archive
export LC_ALL=en_US.UTF-8
# PAKCS must be build in place due to embedded filesystem references placed by swi.
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 3ae1e0d9d29..5d928851a74 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -5,8 +5,8 @@ with import ./lib.nix { inherit pkgs; };
self: super: {
# Some packages need a non-core version of Cabal.
- Cabal_1_18_1_6 = doJailbreak (dontCheck super.Cabal_1_18_1_6);
- Cabal_1_20_0_3 = doJailbreak (dontCheck super.Cabal_1_20_0_3);
+ Cabal_1_18_1_6 = dontCheck super.Cabal_1_18_1_6;
+ Cabal_1_20_0_3 = dontCheck super.Cabal_1_20_0_3;
Cabal_1_22_0_0 = dontCheck super.Cabal_1_22_0_0;
cabal-install = dontCheck (super.cabal-install.override { Cabal = self.Cabal_1_22_0_0; });
@@ -31,10 +31,6 @@ self: super: {
elm-make = super.elm-make.override { optparse-applicative = self.optparse-applicative_0_10_0; };
elm-package = super.elm-package.override { optparse-applicative = self.optparse-applicative_0_10_0; };
- # elm-compiler jail-break can be removed after next elm-compiler
- # release: bumped language-ecmascript's limit in git already.
- elm-compiler = doJailbreak super.elm-compiler;
-
# https://github.com/acid-state/safecopy/issues/17
safecopy = dontCheck super.safecopy;
@@ -62,27 +58,12 @@ self: super: {
# https://github.com/haskell/time/issues/23
time_1_5_0_1 = dontCheck super.time_1_5_0_1;
- # Won't accept recent random: https://bitbucket.org/dafis/arithmoi/issue/14/outdated-dependency-on-random.
- arithmoi = doJailbreak super.arithmoi;
-
# Doesn't accept modern versions of hashtable.
- Agda = dontHaddock (doJailbreak super.Agda);
+ Agda = dontHaddock super.Agda;
# Cannot compile its own test suite: https://github.com/haskell/network-uri/issues/10.
network-uri = dontCheck super.network-uri;
- # 0.7.0.2 doesn't accept recent versions of HaXml.
- encoding = doJailbreak super.encoding;
-
- # Doesn't accept recent versions of vector-space.
- active = doJailbreak super.active;
- diagrams-core = doJailbreak super.diagrams-core; # https://github.com/diagrams/diagrams-core/issues/78
- diagrams-contrib = doJailbreak super.diagrams-contrib;
- diagrams-lib = doJailbreak super.diagrams-lib;
- diagrams-svg = doJailbreak super.diagrams-svg;
- force-layout = doJailbreak super.force-layout;
- vector-space-points = doJailbreak super.vector-space-points;
-
# The Haddock phase fails for one reason or another.
attoparsec-conduit = dontHaddock super.attoparsec-conduit;
blaze-builder-conduit = dontHaddock super.blaze-builder-conduit;
@@ -118,9 +99,6 @@ self: super: {
# https://github.com/techtangents/ablist/issues/1
ABList = dontCheck super.ABList;
- # https://github.com/gcross/AbortT-transformers/issues/1
- AbortT-transformers = doJailbreak super.AbortT-transformers;
-
# Depends on broken NewBinary package.
ASN1 = markBroken super.ASN1;
@@ -136,28 +114,26 @@ self: super: {
# depends on broken hbro package.
hbro-contrib = markBroken super.hbro-contrib;
- # https://github.com/goldfirere/th-desugar/issues/21
- th-desugar = dontCheck super.th-desugar;
+ # https://github.com/haskell/vector/issues/47
+ vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector;
- # https://github.com/dzhus/snaplet-redis/pull/11
- snaplet-redis = doJailbreak super.snaplet-redis;
+ # Does not compile: .
+ base_4_7_0_2 = markBroken super.base_4_7_0_2;
- # https://github.com/michaelschade/hs-stripe/pull/37
- stripe = doJailbreak super.stripe;
+ # Obsolete: https://github.com/massysett/prednote/issues/1.
+ prednote-test = markBroken super.prednote-test;
- # https://github.com/LukeHoersten/snaplet-stripe/pull/4
- snaplet-stripe = doJailbreak super.snaplet-stripe;
+ # Doesn't compile: .
+ integer-gmp_0_5_1_0 = markBroken super.integer-gmp_0_5_1_0;
- # https://github.com/prowdsponsor/fb/pull/33
- fb = doJailbreak (overrideCabal super.fb (drv: {
- patches = [
- (pkgs.fetchpatch {
- url = https://github.com/prowdsponsor/fb/pull/33.patch;
- sha256 = "0xfbfyg86lrimwhfd2s41xy5axcsnw0rqvic8ak72rq2sssyljpg";
- })
- ];
- }));
+ # https://github.com/haskell/bytestring/issues/41
+ bytestring_0_10_4_1 = dontCheck super.bytestring_0_10_4_1;
+ # https://github.com/zmthy/http-media/issues/6
+ http-media = dontCheck super.http-media;
+
+ # tests don't compile for some odd reason
+ jwt = dontCheck super.jwt;
}
// {
# Not on Hackage yet.
@@ -165,20 +141,27 @@ self: super: {
pname = "cabal2nix";
version = "2.0";
src = pkgs.fetchgit {
- url = "git://github.com/NixOS/cabal2nix.git";
- sha256 = "b9dde970f8e64fd5faff9402f5788ee832874d7584a67210f59f2c5e504ce631";
- rev = "6398667f4ad670eb3aa3334044a65a06971494d0";
+ url = "http://github.com/NixOS/cabal2nix.git";
+ sha256 = "8e1943affa70bf664d6b306f6331bad9332ca74816078f298d4acff0921c8520";
+ rev = "a5db30dbd55d7b4ec5df8fa116083b786bcf81c4";
};
isLibrary = false;
isExecutable = true;
buildDepends = with self; [
- aeson base bytestring Cabal containers deepseq directory filepath
- hackage-db monad-par monad-par-extras mtl pretty process
+ aeson base bytestring Cabal containers deepseq deepseq-generics
+ directory filepath hackage-db monad-par monad-par-extras mtl pretty
+ prettyclass process QuickCheck regex-posix SHA split transformers
+ utf8-string
+ ];
+ testDepends = with self; [
+ aeson base bytestring Cabal containers deepseq deepseq-generics
+ directory doctest filepath hackage-db hspec monad-par
+ monad-par-extras mtl pretty prettyclass process QuickCheck
regex-posix SHA split transformers utf8-string
];
- testDepends = with self; [ base doctest ];
homepage = "http://github.com/NixOS/cabal2nix";
description = "Convert Cabal files into Nix build instructions";
license = pkgs.stdenv.lib.licenses.bsd3;
};
+
}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
new file mode 100644
index 00000000000..6641b27f0fd
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
@@ -0,0 +1,65 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: {
+
+ # Disable GHC 6.12.x core libraries.
+ array = null;
+ base = null;
+ bin-package-db = null;
+ bytestring = null;
+ Cabal = null;
+ containers = null;
+ directory = null;
+ dph-base = null;
+ dph-par = null;
+ dph-prim-interface = null;
+ dph-prim-par = null;
+ dph-prim-seq = null;
+ dph-seq = null;
+ extensible-exceptions = null;
+ ffi = null;
+ filepath = null;
+ ghc-binary = null;
+ ghc-prim = null;
+ haskell98 = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ random = null;
+ rts = null;
+ syb = null;
+ template-haskell = null;
+ time = null;
+ unix = null;
+
+ # binary is not a core library for this compiler.
+ binary = self.binary_0_7_2_3;
+
+ # deepseq is not a core library for this compiler.
+ deepseq = self.deepseq_1_4_0_0;
+
+ # transformers is not a core library for this compiler.
+ transformers = self.transformers_0_4_2_0;
+ mtl = self.mtl_2_2_1;
+ transformers-compat = disableCabalFlag super.transformers-compat "three";
+
+ # https://github.com/tibbe/hashable/issues/85
+ hashable = dontCheck super.hashable;
+
+ # Needs Cabal >= 1.18.x.
+ jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; };
+
+ # Haddock chokes on the prologue from the cabal file.
+ ChasingBottoms = dontHaddock super.ChasingBottoms;
+
+ # https://github.com/glguy/utf8-string/issues/9
+ utf8-string = overrideCabal super.utf8-string (drv: {
+ patchPhase = "sed -ir -e 's|Extensions: | Extensions: UndecidableInstances, |' utf8-string.cabal";
+ });
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
new file mode 100644
index 00000000000..bd8b09d040d
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
@@ -0,0 +1,54 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: {
+
+ # Disable GHC 7.0.x core libraries.
+ array = null;
+ base = null;
+ bin-package-db = null;
+ bytestring = null;
+ Cabal = null;
+ containers = null;
+ directory = null;
+ extensible-exceptions = null;
+ ffi = null;
+ filepath = null;
+ ghc-binary = null;
+ ghc-prim = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ random = null;
+ rts = null;
+ template-haskell = null;
+ time = null;
+ unix = null;
+
+ # binary is not a core library for this compiler.
+ binary = self.binary_0_7_2_3;
+
+ # deepseq is not a core library for this compiler.
+ deepseq = self.deepseq_1_4_0_0;
+
+ # transformers is not a core library for this compiler.
+ transformers = self.transformers_0_4_2_0;
+ mtl = self.mtl_2_2_1;
+ transformers-compat = disableCabalFlag super.transformers-compat "three";
+
+ # https://github.com/tibbe/hashable/issues/85
+ hashable = dontCheck super.hashable;
+
+ # Needs Cabal >= 1.18.x.
+ jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; };
+
+ # Haddock chokes on the prologue from the cabal file.
+ ChasingBottoms = dontHaddock super.ChasingBottoms;
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
similarity index 98%
rename from pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix
rename to pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index 37ebda6f238..4dfb4ab96b9 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -4,7 +4,7 @@ with import ./lib.nix { inherit pkgs; };
self: super: {
- # Disable GHC 7.9.x core libraries.
+ # Disable GHC 7.10.x core libraries.
array = null;
base = null;
binary = null;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
new file mode 100644
index 00000000000..c5ec38c5194
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
@@ -0,0 +1,54 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: {
+
+ # Disable GHC 7.2.x core libraries.
+ array = null;
+ base = null;
+ binary = null;
+ bin-package-db = null;
+ bytestring = null;
+ Cabal = null;
+ containers = null;
+ directory = null;
+ extensible-exceptions = null;
+ ffi = null;
+ filepath = null;
+ ghc-prim = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ time = null;
+ unix = null;
+
+ # deepseq is not a core library for this compiler.
+ deepseq = self.deepseq_1_4_0_0;
+
+ # transformers is not a core library for this compiler.
+ transformers = self.transformers_0_4_2_0;
+ mtl = self.mtl_2_2_1;
+ transformers-compat = disableCabalFlag super.transformers-compat "three";
+
+ # https://github.com/haskell/cabal/issues/2322
+ Cabal_1_22_0_0 = super.Cabal_1_22_0_0.override { binary = self.binary_0_7_2_3; process = self.process_1_2_1_0; };
+
+ # https://github.com/tibbe/hashable/issues/85
+ hashable = dontCheck super.hashable;
+
+ # Needs Cabal >= 1.18.x.
+ jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; };
+
+ # Haddock chokes on the prologue from the cabal file.
+ ChasingBottoms = dontHaddock super.ChasingBottoms;
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
new file mode 100644
index 00000000000..6ad8564d89a
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
@@ -0,0 +1,57 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: {
+
+ # Disable GHC 7.4.x core libraries.
+ array = null;
+ base = null;
+ binary = null;
+ bin-package-db = null;
+ bytestring = null;
+ Cabal = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ extensible-exceptions = null;
+ filepath = null;
+ ghc-prim = null;
+ haskell2010 = null;
+ haskell98 = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ old-locale = null;
+ old-time = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ time = null;
+ unix = null;
+
+ # transformers is not a core library for this compiler.
+ transformers = self.transformers_0_4_2_0;
+ mtl = self.mtl_2_2_1;
+ transformers-compat = disableCabalFlag super.transformers-compat "three";
+
+ # https://github.com/haskell/cabal/issues/2322
+ Cabal_1_22_0_0 = super.Cabal_1_22_0_0.override { binary = self.binary_0_7_2_3; };
+
+ # https://github.com/tibbe/hashable/issues/85
+ hashable = dontCheck super.hashable;
+
+ # Needs Cabal >= 1.18.x.
+ jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; };
+
+ # Haddock chokes on the prologue from the cabal file.
+ ChasingBottoms = dontHaddock super.ChasingBottoms;
+
+ # https://github.com/haskell/primitive/issues/16
+ primitive = dontCheck super.primitive;
+
+ # https://github.com/tibbe/unordered-containers/issues/96
+ unordered-containers = dontCheck super.unordered-containers;
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
index 55d2395cdcb..820a44c6b4f 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
@@ -16,7 +16,7 @@ self: super: {
directory = null;
filepath = null;
ghc-prim = null;
- haskeline = self.haskeline_0_7_1_3; # GHC's version is broken: https://github.com/NixOS/nixpkgs/issues/5616.
+ haskeline = null;
haskell2010 = null;
haskell98 = null;
hoopl = null;
@@ -28,7 +28,7 @@ self: super: {
process = null;
rts = null;
template-haskell = null;
- terminfo = self.terminfo_0_4_0_0; # GHC's version is broken: https://github.com/NixOS/nixpkgs/issues/5616.
+ terminfo = null;
time = null;
unix = null;
@@ -42,4 +42,11 @@ self: super: {
# https://github.com/tibbe/hashable/issues/85
hashable = dontCheck super.hashable;
+
+ # Needs Cabal >= 1.18.x.
+ jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; };
+
+ # Haddock chokes on the prologue from the cabal file.
+ ChasingBottoms = dontHaddock super.ChasingBottoms;
+
}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
index 63e49196580..0ced8929c8f 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
@@ -16,7 +16,7 @@ self: super: {
directory = null;
filepath = null;
ghc-prim = null;
- haskeline = self.haskeline_0_7_1_3; # GHC's version is broken: https://github.com/NixOS/nixpkgs/issues/5616.
+ haskeline = null;
haskell2010 = null;
haskell98 = null;
hoopl = null;
@@ -28,7 +28,7 @@ self: super: {
process = null;
rts = null;
template-haskell = null;
- terminfo = self.terminfo_0_4_0_0; # GHC's version is broken: https://github.com/NixOS/nixpkgs/issues/5616.
+ terminfo = null;
time = null;
transformers = null;
unix = null;
@@ -42,12 +42,16 @@ self: super: {
mkDerivation = drv: super.mkDerivation (drv // { doCheck = false; });
transformers = super.transformers_0_4_2_0;
transformers-compat = disableCabalFlag super.transformers-compat "three";
+ haskeline = self.haskeline_0_7_1_3;
mtl = super.mtl_2_2_1;
})) (drv: {
jailbreak = true; # idris is scared of lens 4.7
patchPhase = "find . -name '*.hs' -exec sed -i -s 's|-Werror||' {} +";
}); # warning: "Module ‘Control.Monad.Error’ is deprecated"
+ # Depends on time == 0.1.5, which we don't have.
+ HStringTemplate_0_8 = dontDistribute super.HStringTemplate_0_8;
+
}
// # packages relating to amazonka
@@ -58,7 +62,7 @@ self: super: {
doCheck = false;
hyperlinkSource = false;
extraLibraries = (drv.extraLibraries or []) ++ [ (
- if builtins.elem drv.pname [
+ if pkgs.stdenv.lib.elem drv.pname [
"Cabal"
"time"
"unix"
@@ -70,15 +74,12 @@ self: super: {
});
mtl = self.mtl_2_2_1;
transformers = self.transformers_0_4_2_0;
- transformers-compat = overrideCabal super.transformers-compat (drv: { configureFlags = []; });
- aeson = disableCabalFlag super.aeson "old-locale";
+ transformers-compat = disableCabalFlag super.transformers-compat "three";
hscolour = super.hscolour;
time = self.time_1_5_0_1;
unix = self.unix_2_7_1_0;
directory = self.directory_1_2_1_0;
- process = overrideCabal self.process_1_2_1_0 (drv: {
- coreSetup = true;
- });
+ process = overrideCabal self.process_1_2_1_0 (drv: { coreSetup = true; });
inherit amazonka-core amazonkaEnv amazonka amazonka-cloudwatch;
};
Cabal = self.Cabal_1_18_1_6.overrideScope amazonkaEnv;
@@ -86,11 +87,10 @@ self: super: {
overrideCabal (super.amazonka-core.overrideScope amazonkaEnv) (drv: {
# https://github.com/brendanhay/amazonka/pull/57
prePatch = "sed -i 's|nats >= 0.1.3 && < 1|nats|' amazonka-core.cabal";
-
extraLibraries = (drv.extraLibraries or []) ++ [ Cabal ];
});
useEnvCabal = p: overrideCabal (p.overrideScope amazonkaEnv) (drv: {
- extraLibraries = (drv.extraLibraries or []) ++ [ Cabal ];
+ buildDepends = (drv.buildDepends or []) ++ [ Cabal ];
});
amazonka = useEnvCabal super.amazonka;
amazonka-cloudwatch = useEnvCabal super.amazonka-cloudwatch;
diff --git a/pkgs/development/haskell-modules/configuration-ghc-head.nix b/pkgs/development/haskell-modules/configuration-ghc-head.nix
new file mode 100644
index 00000000000..4c4065e8889
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-ghc-head.nix
@@ -0,0 +1,85 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: {
+
+ # Disable GHC 7.11.x core libraries.
+ array = null;
+ base = null;
+ binary = null;
+ bin-package-db = null;
+ bytestring = null;
+ Cabal = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ haskeline = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ terminfo = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # We have Cabal 1.22.x.
+ jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; };
+
+ # GHC 7.10.x's Haddock binary cannot generate hoogle files.
+ # https://ghc.haskell.org/trac/ghc/ticket/9921
+ mkDerivation = drv: super.mkDerivation (drv // { doHoogle = false; });
+
+ # haddock: No input file(s).
+ nats = dontHaddock super.nats;
+
+ # These used to be core packages in GHC 7.8.x.
+ old-locale = self.old-locale_1_0_0_7;
+ old-time = self.old-time_1_1_0_3;
+
+ # We have transformers 4.x
+ mtl = self.mtl_2_2_1;
+ transformers-compat = disableCabalFlag super.transformers-compat "three";
+
+ # We have time 1.5
+ aeson = disableCabalFlag super.aeson "old-locale";
+
+ # Setup: At least the following dependencies are missing: base <4.8
+ hspec-expectations = overrideCabal super.hspec-expectations (drv: {
+ patchPhase = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";
+ });
+ utf8-string = overrideCabal super.utf8-string (drv: {
+ patchPhase = "sed -i -e 's|base >= 3 && < 4.8|base|' utf8-string.cabal";
+ });
+
+ # bos/attoparsec#92
+ attoparsec = dontCheck super.attoparsec;
+
+ # test suite hangs silently for at least 10 minutes
+ split = dontCheck super.split;
+
+ # Test suite fails with some (seemingly harmless) error.
+ # https://code.google.com/p/scrapyourboilerplate/issues/detail?id=24
+ syb = dontCheck super.syb;
+
+ # Test suite has stricter version bounds
+ retry = dontCheck super.retry;
+
+ # Test suite fails with time >= 1.5
+ http-date = dontCheck super.http-date;
+
+ # Version 1.19.5 fails its test suite.
+ happy = dontCheck super.happy;
+
+ # Test suite hangs silently without consuming any CPU.
+ # https://github.com/ndmitchell/extra/issues/4
+ extra = dontCheck super.extra;
+
+}
diff --git a/pkgs/development/haskell-modules/default.nix b/pkgs/development/haskell-modules/default.nix
index 8978486e930..973ff83c42d 100644
--- a/pkgs/development/haskell-modules/default.nix
+++ b/pkgs/development/haskell-modules/default.nix
@@ -21,7 +21,7 @@ let
inherit (self) ghc jailbreak-cabal;
hscolour = overrideCabal self.hscolour (drv: {
isLibrary = false;
- noHaddock = true;
+ doHaddock = false;
hyperlinkSource = false; # Avoid depending on hscolour for this build.
postFixup = "rm -rf $out/lib $out/share $out/nix-support";
});
@@ -29,7 +29,7 @@ let
mkDerivation = drv: super.mkDerivation (drv // {
enableSharedExecutables = false;
enableSharedLibraries = false;
- noHaddock = true;
+ doHaddock = false;
useCpphs = false;
});
})) (drv: {
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index 7290bb947e1..9fe6c1a78ba 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -7,6 +7,7 @@
, sha256 ? null
, src ? fetchurl { url = "mirror://hackage/${pname}-${version}.tar.gz"; inherit sha256; }
, buildDepends ? []
+, buildTarget ? ""
, buildTools ? []
, configureFlags ? []
, description ? ""
@@ -26,7 +27,7 @@
, jailbreak ? false
, license
, maintainers ? []
-, noHaddock ? false
+, doHaddock ? true
, passthru ? {}
, pkgconfigDepends ? []
, platforms ? ghc.meta.platforms
@@ -40,7 +41,7 @@
, checkPhase ? "", preCheck ? "", postCheck ? ""
, preFixup ? "", postFixup ? ""
, coreSetup ? false # Use only core packages to build Setup.hs.
-, useCpphs ? stdenv.isDarwin
+, useCpphs ? false
}:
assert pkgconfigDepends != [] -> pkgconfig != null;
@@ -50,12 +51,31 @@ let
inherit (stdenv.lib) optional optionals optionalString versionOlder
concatStringsSep enableFeature optionalAttrs;
+ newCabalFile = fetchurl {
+ url = "http://hackage.haskell.org/package/${pname}-${version}/${pname}.cabal";
+ sha256 = editedCabalFile;
+ };
+
defaultSetupHs = builtins.toFile "Setup.hs" ''
import Distribution.Simple
main = defaultMain
'';
+ ghc76xOrLater = stdenv.lib.versionOlder "7.6" ghc.version;
+ packageDbFlag = if ghc76xOrLater then "package-db" else "package-conf";
+
+ hasActiveLibrary = isLibrary && (enableStaticLibraries || enableSharedLibraries || enableLibraryProfiling);
+
+ enableParallelBuilding = versionOlder "7.8" ghc.version && !hasActiveLibrary;
+
defaultConfigureFlags = [
+ "--verbose" "--prefix=$out" "--libdir=\\$prefix/lib/\\$compiler" "--libsubdir=\\$pkgid"
+ "--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}")
+ (optionalString (enableSharedExecutables && stdenv.isDarwin) "--ghc-option=-optl=-Wl,-headerpad_max_install_names")
+ (optionalString enableParallelBuilding "--ghc-option=-j$NIX_BUILD_CORES")
+ (optionalString (useCpphs) "--with-cpphs=${cpphs}/bin/cpphs --ghc-options=-cpp --ghc-options=-pgmP${cpphs}/bin/cpphs --ghc-options=-optP--cpp")
(enableFeature enableSplitObjs "split-objs")
(enableFeature enableLibraryProfiling "library-profiling")
(enableFeature enableSharedLibraries "shared")
@@ -64,21 +84,21 @@ let
(optionalString (versionOlder "7" ghc.version) (enableFeature doCheck "tests"))
];
- hasActiveLibrary = isLibrary && (enableStaticLibraries || enableSharedLibraries);
+ setupCompileFlags = [
+ (optionalString (!coreSetup) "-${packageDbFlag}=$packageConfDir")
+ (optionalString (versionOlder "7.8" ghc.version) "-j$NIX_BUILD_CORES")
+ ];
- newCabalFile = fetchurl {
- url = "http://hackage.haskell.org/package/${pname}-${version}/${pname}.cabal";
- sha256 = editedCabalFile;
- };
-
- isHaskellPkg = x: (x ? pname) && (x ? version);
+ isHaskellPkg = x: (x ? pname) && (x ? version) && (x ? env);
isSystemPkg = x: !isHaskellPkg x;
- allBuildInputs = stdenv.lib.filter (x: x != null) (
- buildDepends ++ extraLibraries ++ buildTools ++
+ propagatedBuildInputs = buildDepends;
+ otherBuildInputs = extraLibraries ++
+ buildTools ++
optionals (pkgconfigDepends != []) ([pkgconfig] ++ pkgconfigDepends) ++
- optionals doCheck testDepends
- );
+ optionals doCheck testDepends;
+ allBuildInputs = propagatedBuildInputs ++ otherBuildInputs;
+
haskellBuildInputs = stdenv.lib.filter isHaskellPkg allBuildInputs;
systemBuildInputs = stdenv.lib.filter isSystemPkg allBuildInputs;
@@ -88,46 +108,31 @@ in
stdenv.mkDerivation ({
name = "${optionalString hasActiveLibrary "haskell-"}${pname}-${version}";
+ prePhases = ["setupCompilerEnvironmentPhase"];
+ preConfigurePhases = ["jailbreakPhase" "compileBuildDriverPhase"];
+ preInstallPhases = ["haddockPhase"];
+
inherit src;
- nativeBuildInputs = extraLibraries ++ buildTools ++
- optionals (pkgconfigDepends != []) ([pkgconfig] ++ pkgconfigDepends) ++
- optionals doCheck testDepends ++
- optionals (!hasActiveLibrary) buildDepends;
- propagatedNativeBuildInputs = optionals hasActiveLibrary buildDepends;
+ nativeBuildInputs = otherBuildInputs ++ optionals (!hasActiveLibrary) propagatedBuildInputs;
+ propagatedNativeBuildInputs = optionals hasActiveLibrary propagatedBuildInputs;
- # GHC needs the locale configured during the Haddock phase.
- LANG = "en_US.UTF-8";
+ LANG = "en_US.UTF-8"; # GHC needs the locale configured during the Haddock phase.
LOCALE_ARCHIVE = optionalString stdenv.isLinux "${glibcLocales}/lib/locale/locale-archive";
- configurePhase = ''
- runHook preConfigure
+ setupCompilerEnvironmentPhase = ''
+ runHook preSetupCompilerEnvironment
echo "Building with ${ghc}."
export PATH="${ghc}/bin:$PATH"
${optionalString (hasActiveLibrary && hyperlinkSource) "export PATH=${hscolour}/bin:$PATH"}
- configureFlags="--verbose --prefix=$out --libdir=\$prefix/lib/\$compiler --libsubdir=\$pkgid $configureFlags"
- configureFlags+=' ${concatStringsSep " " defaultConfigureFlags}'
- ${optionalString (enableSharedExecutables && stdenv.isLinux) ''
- configureFlags+=" --ghc-option=-optl=-Wl,-rpath=$out/lib/${ghc.name}/${pname}-${version}"
- ''}
- ${optionalString (enableSharedExecutables && stdenv.isDarwin) ''
- configureFlags+=" --ghc-option=-optl=-Wl,-headerpad_max_install_names"
- ''}
- ${optionalString (versionOlder "7.8" ghc.version && !isLibrary) ''
- configureFlags+=" --ghc-option=-j$NIX_BUILD_CORES"
- setupCompileFlags="-j$NIX_BUILD_CORES"
- ''}${optionalString stdenv.isDarwin ''
- configureFlags+=" --with-gcc=$CC" # Cabal won't find clang without help.
- ''}${optionalString useCpphs ''
- configureFlags+=" --with-cpphs=${cpphs}/bin/cpphs"
- configureFlags+=" --ghc-options=-cpp --ghc-options=-pgmP${cpphs}/bin/cpphs --ghc-options=-optP--cpp"
- ''}
-
packageConfDir="$TMP/package.conf.d"
mkdir -p $packageConfDir
+ setupCompileFlags="${concatStringsSep " " setupCompileFlags}"
+ configureFlags="${concatStringsSep " " defaultConfigureFlags} $configureFlags"
+
local inputClosure=""
for i in $propagatedNativeBuildInputs $nativeBuildInputs; do
findInputs $i inputClosure propagated-native-build-inputs
@@ -146,26 +151,44 @@ stdenv.mkDerivation ({
fi
done
done
- ghc-pkg --package-db="$packageConfDir" recache
- configureFlags+=" --package-db=$packageConfDir"
+ ghc-pkg --${packageDbFlag}="$packageConfDir" recache
+
+ runHook postSetupCompilerEnvironment
+ '';
+
+ jailbreakPhase = ''
+ runHook preJailbreak
${optionalString (editedCabalFile != null) ''
echo "Replacing Cabal file with edited version ${newCabalFile}."
cp ${newCabalFile} ${pname}.cabal
- ''}
-
- ${optionalString jailbreak ''
+ ''}${optionalString jailbreak ''
echo "Running jailbreak-cabal to lift version restrictions on build inputs."
${jailbreak-cabal}/bin/jailbreak-cabal ${pname}.cabal
''}
+ runHook postJailbreak
+ '';
+
+ compileBuildDriverPhase = ''
+ runHook preCompileBuildDriver
+
for i in Setup.hs Setup.lhs ${defaultSetupHs}; do
test -f $i && break
done
- ghc ${optionalString (! coreSetup) "-package-db=$packageConfDir "}$setupCompileFlags --make -o Setup -odir $TMPDIR -hidir $TMPDIR $i
+
+ echo setupCompileFlags: $setupCompileFlags
+ ghc $setupCompileFlags --make -o Setup -odir $TMPDIR -hidir $TMPDIR $i
+
+ runHook postCompileBuildDriver
+ '';
+
+ configurePhase = ''
+ runHook preConfigure
+
+ unset GHC_PACKAGE_PATH # Cabal complains if this variable is set during configure.
echo configureFlags: $configureFlags
- unset GHC_PACKAGE_PATH # Cabal complains if this variable is set during configure.
./Setup configure $configureFlags 2>&1 | ${coreutils}/bin/tee "$NIX_BUILD_TOP/cabal-configure.log"
if ${gnugrep}/bin/egrep -q '^Warning:.*depends on multiple versions' "$NIX_BUILD_TOP/cabal-configure.log"; then
echo >&2 "*** abort because of serious configure-time warning from Cabal"
@@ -179,12 +202,7 @@ stdenv.mkDerivation ({
buildPhase = ''
runHook preBuild
- ./Setup build
- ${optionalString (!noHaddock && hasActiveLibrary) ''
- ./Setup haddock --html \
- ${optionalString doHoogle "--hoogle"} \
- ${optionalString (hasActiveLibrary && hyperlinkSource) "--hyperlink-source"}
- ''}
+ ./Setup build ${buildTarget}
runHook postBuild
'';
@@ -194,6 +212,16 @@ stdenv.mkDerivation ({
runHook postCheck
'';
+ haddockPhase = ''
+ runHook preHaddock
+ ${optionalString (doHaddock && hasActiveLibrary) ''
+ ./Setup haddock --html \
+ ${optionalString doHoogle "--hoogle"} \
+ ${optionalString (hasActiveLibrary && hyperlinkSource) "--hyperlink-source"}
+ ''}
+ runHook postHaddock
+ '';
+
installPhase = ''
runHook preInstall
@@ -239,10 +267,11 @@ stdenv.mkDerivation ({
};
- meta = { inherit homepage license platforms hydraPlatforms; }
+ meta = { inherit homepage license platforms; }
// optionalAttrs broken { inherit broken; }
// optionalAttrs (description != "") { inherit description; }
// optionalAttrs (maintainers != []) { inherit maintainers; }
+ // optionalAttrs (hydraPlatforms != platforms) { inherit hydraPlatforms; }
;
}
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index fdcc32bf3b0..612dd54d469 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -13,6 +13,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base GLUT OpenGL random ];
+ jailbreak = true;
homepage = "http://darcs.wolfgang.jeltsch.info/haskell/3d-graphics-examples";
description = "Examples of 3D graphics programming with OpenGL";
license = stdenv.lib.licenses.bsd3;
@@ -25,9 +26,11 @@ self: {
version = "0.3.0";
sha256 = "00pp8g1b59950i5ik9ycimxd284vsv1hnfgxgg1mjvxwaj2pbyhr";
buildDepends = [ attoparsec base bytestring linear packer ];
+ jailbreak = true;
homepage = "https://github.com/capsjac/3dmodels";
description = "3D model parsers";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"4Blocks" = callPackage
@@ -39,9 +42,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base cairo containers gtk haskell98 mtl ];
+ jailbreak = true;
homepage = "http://lambdacolyte.wordpress.com/2009/08/06/tetris-in-haskell/";
description = "A tetris-like game (works with GHC 6.8.3 and Gtk2hs 0.9.13)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ABList" = callPackage
@@ -92,6 +97,7 @@ self: {
buildDepends = [ base ];
description = "Detect which OS you're running on";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AC-Colour" = callPackage
@@ -114,6 +120,7 @@ self: {
buildDepends = [ array base gtk ];
description = "GTK+ pixel plotting";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AC-HalfInteger" = callPackage
@@ -125,6 +132,7 @@ self: {
buildDepends = [ base ];
description = "Efficient half-integer type";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AC-MiniTest" = callPackage
@@ -169,6 +177,7 @@ self: {
buildDepends = [ ansi-terminal base ];
description = "Trivial wrapper over ansi-terminal";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AC-VanillaArray" = callPackage
@@ -178,8 +187,10 @@ self: {
version = "1.1.2";
sha256 = "044kiwc5g2irky0k3fg9l2qqnvcnh9vdx0yz8m1awnkab6mk0i3v";
buildDepends = [ base ghc-prim ];
+ jailbreak = true;
description = "Immutable arrays with plain integer indicies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AC-Vector" = callPackage
@@ -235,6 +246,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion";
description = "Efficient, high-level dynamic programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AERN-Basics" = callPackage
@@ -251,9 +263,11 @@ self: {
base containers criterion deepseq directory QuickCheck random
test-framework test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://code.google.com/p/aern/";
description = "foundational type classes for approximating exact real numbers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AERN-Net" = callPackage
@@ -267,9 +281,11 @@ self: {
buildDepends = [
AERN-Real AERN-RnToRm base binary containers html stm time
];
+ jailbreak = true;
homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN";
description = "Compositional lazy dataflow networks for exact real number computation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AERN-Real" = callPackage
@@ -284,9 +300,11 @@ self: {
AERN-Basics base criterion QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://code.google.com/p/aern/";
description = "arbitrary precision real interval arithmetic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AERN-Real-Double" = callPackage
@@ -304,9 +322,11 @@ self: {
AERN-Basics AERN-Real AERN-Real-Interval base criterion ieee-utils
QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://code.google.com/p/aern/";
description = "arbitrary precision real interval arithmetic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AERN-Real-Interval" = callPackage
@@ -321,9 +341,11 @@ self: {
AERN-Basics AERN-Real base deepseq QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://code.google.com/p/aern/";
description = "arbitrary precision real interval arithmetic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AERN-RnToRm" = callPackage
@@ -338,9 +360,11 @@ self: {
AERN-Real base binary containers directory filepath html QuickCheck
time
];
+ jailbreak = true;
homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN";
description = "polynomial function enclosures (PFEs) approximating exact real functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AERN-RnToRm-Plot" = callPackage
@@ -356,9 +380,11 @@ self: {
AERN-Real AERN-RnToRm base binary containers directory filepath
glade glib gtk gtkglext mtl OpenGL stm time
];
+ jailbreak = true;
homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN";
description = "GL plotting of polynomial function enclosures (PFEs)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AES" = callPackage
@@ -384,7 +410,6 @@ self: {
version = "1.3";
sha256 = "1h0hcdvdjs635inq96fpyh2g3d482ilpqn474vk1xkycww0xgsnv";
buildDepends = [ base mtl network parsec random syb unix ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://src.seereason.com/haskell-agi";
description = "A library for writing AGI scripts for Asterisk";
license = stdenv.lib.licenses.bsd3;
@@ -398,7 +423,6 @@ self: {
sha256 = "02kfyb4g7sfjfzqlddxqbjffrj4a0gfrzkisdpbj2lw67j1gq5dp";
buildDepends = [ base OpenAL OpenGL ];
extraLibraries = [ freealut ];
- configureFlags = [ "-fusenativewindowslibraries" ];
homepage = "https://github.com/haskell-openal/ALUT";
description = "A binding for the OpenAL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
@@ -418,6 +442,7 @@ self: {
homepage = "http://redmine.iportnov.ru/projects/ami";
description = "Low-level bindings for Asterisk Manager Interface (AMI)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ANum" = callPackage
@@ -443,7 +468,6 @@ self: {
buildDepends = [
base containers HUnit mtl NewBinary old-time pretty QuickCheck
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://www.haskell.org/asn1";
description = "ASN.1 support for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -469,6 +493,7 @@ self: {
buildDepends = [ base regex-compat Win32 ];
description = "A binding to a part of the ANSI escape code for the console";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AbortT-monadstf" = callPackage
@@ -508,6 +533,7 @@ self: {
base HUnit QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 transformers
];
+ jailbreak = true;
homepage = "http://github.com/gcross/AbortT-transformers";
description = "A monad and monadic transformer providing \"abort\" functionality";
license = stdenv.lib.licenses.bsd3;
@@ -528,9 +554,11 @@ self: {
template-haskell
];
testDepends = [ base hspec ];
+ jailbreak = true;
homepage = "https://github.com/egonSchiele/actionkid";
description = "An easy-to-use video game framework for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Adaptive" = callPackage
@@ -568,8 +596,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base haskell98 mtl ];
+ jailbreak = true;
description = "Lisperati's adventure game in Lisp translated to Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AesonBson" = callPackage
@@ -584,9 +614,11 @@ self: {
aeson attoparsec base bson unordered-containers vector
];
testDepends = [ aeson base bson hspec HUnit text ];
+ jailbreak = true;
homepage = "https://github.com/nh2/AesonBson";
description = "Mapping between Aeson's JSON and Bson objects";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Agata" = callPackage
@@ -600,8 +632,10 @@ self: {
buildDepends = [
base containers mtl QuickCheck tagged template-haskell
];
+ jailbreak = true;
description = "Generator-generator for QuickCheck";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Agda" = callPackage
@@ -626,7 +660,7 @@ self: {
unordered-containers xhtml zlib
];
buildTools = [ alex cpphs emacs happy ];
- configureFlags = [ "-f-epic" "-fcpphs" ];
+ jailbreak = true;
postInstall = ''
$out/bin/agda -c --no-main $(find $out/share -name Primitive.agda)
$out/bin/agda-mode compile
@@ -645,6 +679,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ Agda base ];
+ jailbreak = true;
homepage = "http://wiki.portal.chalmers.se/agda/";
description = "Command-line program for type-checking and compiling Agda programs";
license = "unknown";
@@ -695,10 +730,10 @@ self: {
base containers enummapset-th filepath LambdaHack template-haskell
text
];
- configureFlags = [ "-frelease" ];
homepage = "http://allureofthestars.com";
description = "Near-future Sci-Fi roguelike and tactical squad game";
license = "AGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AndroidViewHierarchyImporter" = callPackage
@@ -716,8 +751,10 @@ self: {
base bytestring cmdtheline containers mtl network opml pretty
process QuickCheck split transformers xml
];
+ jailbreak = true;
description = "Android view hierarchy importer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Animas" = callPackage
@@ -730,6 +767,7 @@ self: {
homepage = "https://github.com/eamsden/Animas";
description = "Updated version of Yampa: a library for programming hybrid systems";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Annotations" = callPackage
@@ -739,8 +777,10 @@ self: {
version = "0.2";
sha256 = "0i6qicmvz1jryv4zkdcpclfwxg20yvwgx6vhf46mxjzs3kw1a6z3";
buildDepends = [ base mtl multirec parsec ];
+ jailbreak = true;
description = "Constructing, analyzing and destructing annotated trees";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Ansi2Html" = callPackage
@@ -772,6 +812,7 @@ self: {
];
description = "Library for Apple Push Notification Service";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AppleScript" = callPackage
@@ -784,6 +825,7 @@ self: {
homepage = "https://github.com/reinerp/haskell-AppleScript";
description = "Call AppleScript from Haskell, and then call back into Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ArrayRef" = callPackage
@@ -796,6 +838,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Library/ArrayRef";
description = "Unboxed references, dynamic arrays and more";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AspectAG" = callPackage
@@ -808,6 +851,7 @@ self: {
homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/AspectAG";
description = "Attribute Grammars in the form of an EDSL";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AttoBencode" = callPackage
@@ -826,9 +870,11 @@ self: {
base bytestring containers QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://bitbucket.org/FlorianHartwig/attobencode";
description = "Fast Bencode encoding and parsing library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AttoJson" = callPackage
@@ -846,6 +892,7 @@ self: {
homepage = "http://github.com/konn/AttoJSON";
description = "Simple lightweight JSON parser, generator & manipulator based on ByteString";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Attrac" = callPackage
@@ -857,6 +904,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base colour GLUT OpenGL random ];
+ jailbreak = true;
homepage = "http://patch-tag.com/r/rhz/StrangeAttractors";
description = "Visualisation of Strange Attractors in 3-Dimensions";
license = stdenv.lib.licenses.bsd3;
@@ -889,6 +937,7 @@ self: {
homepage = "http://autoforms.sourceforge.net/";
description = "GUI library based upon generic programming (SYB3)";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"AvlTree" = callPackage
@@ -900,6 +949,7 @@ self: {
buildDepends = [ base COrdering ];
description = "Balanced binary trees using the AVL algorithm";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BASIC" = callPackage
@@ -911,6 +961,7 @@ self: {
buildDepends = [ base containers llvm random timeit ];
description = "Embedded BASIC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BNFC" = callPackage
@@ -951,6 +1002,7 @@ self: {
];
description = "Deriving Parsers and Quasi-Quoters from BNF Grammars";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Baggins" = callPackage
@@ -961,6 +1013,7 @@ self: {
sha256 = "0mgxq8zqyfmwkvn91y91c2vjhrni3br0vgiih2ynlafnas1ji0bc";
editedCabalFile = "654cbc7a4109bf3baaa2491f10a7f49d1831008129d4d5ef9e0e558a5a374098";
buildDepends = [ base cairo containers mtl ];
+ jailbreak = true;
homepage = "http://pageperso.lif.univ-mrs.fr/~pierre-etienne.meunier/Baggins";
description = "Tools for self-assembly";
license = stdenv.lib.licenses.gpl3;
@@ -978,6 +1031,7 @@ self: {
homepage = "https://github.com/5outh/Bang/";
description = "A Drum Machine DSL for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Barracuda" = callPackage
@@ -1001,6 +1055,7 @@ self: {
homepage = "http://sep07.mroot.net/";
description = "An ad-hoc P2P chat program";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Befunge93" = callPackage
@@ -1012,9 +1067,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base mtl random ];
+ jailbreak = true;
homepage = "http://coder.bsimmons.name/blog/2010/05/befunge-93-interpreter-on-hackage";
description = "An interpreter for the Befunge-93 Programming Language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BerkeleyDB" = callPackage
@@ -1031,7 +1088,7 @@ self: {
}) { inherit (pkgs) db;};
"BerkeleyDBXML" = callPackage
- ({ mkDerivation, base, BerkeleyDB, bytestring, db, dbxml, xerces-c
+ ({ mkDerivation, base, BerkeleyDB, bytestring, db, dbxml, xercesc
, xqilla
}:
mkDerivation {
@@ -1039,11 +1096,12 @@ self: {
version = "0.7.2";
sha256 = "1ymdi5qi4hxaikqf8min830r1rs1z4bvy9bdybsq378v7mrgfihp";
buildDepends = [ base BerkeleyDB bytestring ];
- extraLibraries = [ db dbxml xerces-c xqilla ];
+ extraLibraries = [ db dbxml xercesc xqilla ];
homepage = "http://www.haskell.org/haskellwiki/BerkeleyDBXML";
description = "Berkeley DB XML binding";
license = stdenv.lib.licenses.bsd3;
- }) { inherit (pkgs) db; dbxml = null; xerces-c = null;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) { inherit (pkgs) db; dbxml = null; inherit (pkgs) xercesc;
xqilla = null;};
"BerlekampAlgorithm" = callPackage
@@ -1053,6 +1111,7 @@ self: {
version = "0.1.0.0";
sha256 = "14wjpfr9d8fpgl1jkpm2123lprr3hf3a6smkaflzkgxqlgcrkmyr";
buildDepends = [ base besout ];
+ jailbreak = true;
description = "Factorization of polynomials over finite field";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -1099,9 +1158,11 @@ self: {
ParsecTools primitive PrimitiveArray split tuple utility-ht vector
vector-read-instances zlib
];
+ jailbreak = true;
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "Base library for bioinformatics";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseBlast" = callPackage
@@ -1114,6 +1175,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "BLAST-related tools";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseDotP" = callPackage
@@ -1126,6 +1188,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "Vienna / DotBracket / ExtSS parsers";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseFR3D" = callPackage
@@ -1139,9 +1202,11 @@ self: {
buildDepends = [
base BiobaseXNA bytestring containers filemanip iteratee tuple
];
+ jailbreak = true;
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "Importer for FR3D resources";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseFasta" = callPackage
@@ -1157,9 +1222,11 @@ self: {
buildDepends = [
base biocore bytestring cmdargs conduit containers transformers
];
+ jailbreak = true;
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "conduit-based FASTA parser";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseInfernal" = callPackage
@@ -1177,9 +1244,11 @@ self: {
bytestring-lexing conduit containers either-unwrap lens primitive
PrimitiveArray repa transformers tuple vector
];
+ jailbreak = true;
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "Infernal data structures and tools";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseMAF" = callPackage
@@ -1192,6 +1261,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "Multiple Alignment Format";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseTrainingData" = callPackage
@@ -1208,9 +1278,11 @@ self: {
base BiobaseDotP BiobaseFR3D BiobaseXNA bytestring cmdargs
either-unwrap iteratee vector
];
+ jailbreak = true;
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "RNA folding training data";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseTurner" = callPackage
@@ -1229,6 +1301,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "Import Turner RNA parameters";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseTypes" = callPackage
@@ -1238,8 +1311,10 @@ self: {
version = "0.0.2.2";
sha256 = "03h7a95njbsl67bbg7wfxjjlibsqhkm62f04hhv6s14cgrvh0b3g";
buildDepends = [ base primitive vector ];
+ jailbreak = true;
description = "(deprecated) Ring class, with several instances";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseVienna" = callPackage
@@ -1256,6 +1331,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "Import Vienna energy parameters";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BiobaseXNA" = callPackage
@@ -1287,8 +1363,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base haskell98 ];
+ jailbreak = true;
description = "A preprocessor for Bird-style Literate Haskell comments with Haddock markup";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BitSyntax" = callPackage
@@ -1305,6 +1383,7 @@ self: {
homepage = "http://www.imperialviolet.org/bitsyntax";
description = "A module to aid in the (de)serialisation of binary data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Bitly" = callPackage
@@ -1317,6 +1396,7 @@ self: {
homepage = "http://bitbucket.org/jetxee/hs-bitly/";
description = "A library to access bit.ly URL shortener.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BlastHTTP" = callPackage
@@ -1353,6 +1433,7 @@ self: {
homepage = "http://www.cs.york.ac.uk/fp/darcs/Blobs/";
description = "Diagram editor";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BlogLiterately" = callPackage
@@ -1375,6 +1456,7 @@ self: {
hscolour lens mtl pandoc pandoc-citeproc pandoc-types parsec
process split strict temporary transformers utf8-string
];
+ jailbreak = true;
homepage = "http://byorgey.wordpress.com/blogliterately/";
description = "A tool for posting Haskelly articles to blogs";
license = "GPL";
@@ -1397,6 +1479,7 @@ self: {
];
description = "Include images in blog posts with inline diagrams code";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BluePrintCSS" = callPackage
@@ -1406,7 +1489,6 @@ self: {
version = "0.1";
sha256 = "0ryjgi70isgfv3nw3djzvb1saky40xqy536h6sr3mfpy2iqnim0c";
buildDepends = [ base mtl ];
- configureFlags = [ "-f-blaze" "-f-hsx" ];
homepage = "http://git.ierton.ru/?p=BluePrint.git;a=summary";
description = "Html document layout library";
license = stdenv.lib.licenses.bsd3;
@@ -1421,6 +1503,7 @@ self: {
homepage = "http://github.com/gcross/Blueprint";
description = "Preview of a new build system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Bookshelf" = callPackage
@@ -1477,10 +1560,11 @@ self: {
base haskell-src-exts haskell-src-meta mtl parsec syb
template-haskell
];
- configureFlags = [ "-fnewth" "-fbase4" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Bravo";
description = "Static text template generation library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Buster" = callPackage
@@ -1503,9 +1587,11 @@ self: {
base bytestring errors hslogger hspec hspec-expectations
http-conduit http-types string-qq temporary unix yaml
];
+ jailbreak = true;
homepage = "http://github.com/michaelxavier/Buster";
description = "Hits a set of urls periodically to bust caches";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CBOR" = callPackage
@@ -1527,6 +1613,7 @@ self: {
homepage = "https://github.com/orclev/CBOR";
description = "Encode/Decode values to/from CBOR";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CC-delcont" = callPackage
@@ -1555,6 +1642,7 @@ self: {
testDepends = [ base doctest mtl ];
description = "Three new monad transformers for multi-prompt delimited control";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CC-delcont-cxe" = callPackage
@@ -1602,21 +1690,23 @@ self: {
}) {};
"CCA" = callPackage
- ({ mkDerivation, array, base, containers, ghc-prim, haskell-src
- , syb, template-haskell
+ ({ mkDerivation, array, base, containers, ghc-prim, happy
+ , haskell-src, syb, template-haskell
}:
mkDerivation {
pname = "CCA";
- version = "0.1.5";
- sha256 = "04wiyx9z73b3m6j2mck21hngw30jvic8zg9rqpp95kjqr1bl914s";
+ version = "0.1.5.1";
+ sha256 = "11q33gpaiyvmd6amlh48k4i3wrj6axrnvyrvsrg6xhnlvvbibvwj";
isLibrary = true;
isExecutable = true;
buildDepends = [
array base containers ghc-prim haskell-src syb template-haskell
];
+ buildTools = [ happy ];
homepage = "not available";
description = "preprocessor and library for Causal Commutative Arrows (CCA)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CHXHtml" = callPackage
@@ -1661,9 +1751,11 @@ self: {
buildDepends = [
array base BiobaseInfernal BiobaseXNA cmdargs containers lens
];
+ jailbreak = true;
homepage = "http://www.tbi.univie.ac.at/software/cmcompare/";
description = "Infernal covariance model comparison";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CMQ" = callPackage
@@ -1692,6 +1784,7 @@ self: {
buildDepends = [ base ];
description = "An algebraic data type similar to Prelude Ordering";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CPBrainfuck" = callPackage
@@ -1705,6 +1798,7 @@ self: {
buildDepends = [ base haskell98 ];
description = "A simple Brainfuck interpretter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CPL" = callPackage
@@ -1716,9 +1810,9 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base containers mtl parsec readline ];
- configureFlags = [ "-fhaskeline" "-freadline" ];
description = "An interpreter of Hagino's Categorical Programming Language (CPL)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CSPM-CoreLanguage" = callPackage
@@ -1744,9 +1838,9 @@ self: {
base containers CSPM-CoreLanguage mtl parallel-tree-search
tree-monad
];
- configureFlags = [ "-f-quickcheck" ];
description = "Firing rules semantic of CSPM";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CSPM-Frontend" = callPackage
@@ -1764,6 +1858,7 @@ self: {
buildTools = [ alex ];
description = "A CSP-M parser compatible with FDR-2.91";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CSPM-Interpreter" = callPackage
@@ -1780,6 +1875,7 @@ self: {
];
description = "An interpreter for CSPM";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CSPM-ToProlog" = callPackage
@@ -1795,6 +1891,7 @@ self: {
];
description = "some modules specific for the ProB tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CSPM-cspm" = callPackage
@@ -1815,6 +1912,7 @@ self: {
];
description = "cspm command line tool for analyzing CSPM specifications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CTRex" = callPackage
@@ -1857,10 +1955,11 @@ self: {
opencv_flann opencv_gpu opencv_highgui opencv_imgproc opencv_legacy
opencv_ml opencv_objdetect opencv_video
];
- configureFlags = [ "-f-opencv24" "-fopencv23" ];
+ jailbreak = true;
homepage = "http://aleator.github.com/CV/";
description = "OpenCV based machine vision library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { opencv_calib3d = null; opencv_contrib = null;
opencv_core = null; opencv_features2d = null;
opencv_flann = null; opencv_gpu = null; opencv_highgui = null;
@@ -1911,6 +2010,7 @@ self: {
process QuickCheck regex-posix test-framework test-framework-hunit
test-framework-quickcheck2 unix
];
+ jailbreak = true;
preCheck = "unset GHC_PACKAGE_PATH; export HOME=$NIX_BUILD_TOP";
homepage = "http://www.haskell.org/cabal/";
description = "A framework for packaging Haskell software";
@@ -1956,6 +2056,7 @@ self: {
buildDepends = [
base bytestring directory filepath HDBC HDBC-sqlite3 process unix
];
+ jailbreak = true;
homepage = "http://github.com/brinchj/cabalsearch";
description = "Search cabal packages by name";
license = stdenv.lib.licenses.bsd3;
@@ -1968,9 +2069,11 @@ self: {
version = "0.1.0.0";
sha256 = "0nd5yvhbxmabs0890y9gjjiq37h8c3blpplv2m13k29zkijwad04";
buildDepends = [ base compdata directory free unix ];
+ jailbreak = true;
homepage = "https://github.com/Icelandjack/Capabilities";
description = "Separate and contain effects of IO monad";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Cardinality" = callPackage
@@ -2018,9 +2121,11 @@ self: {
version = "0.1.0.0";
sha256 = "1ih8ydc29axckgidc5xvsdac5558gprscw667msh8qh41j9sshng";
buildDepends = [ base comonad ghc-prim mtl void ];
+ jailbreak = true;
homepage = "http://github.com/rampion/Cascade";
description = "Playing with reified categorical composition";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Catana" = callPackage
@@ -2040,8 +2145,8 @@ self: {
}:
mkDerivation {
pname = "Chart";
- version = "1.3.2";
- sha256 = "0y4xkqdmbyyaxf810dgz0zsfmywlx07c26s9wkk155iriz0yz4m9";
+ version = "1.3.3";
+ sha256 = "1shq0320mc47kjbfw3vqrmjshb8fd3afd009kqxd8nn9g7m48019";
buildDepends = [
array base colour data-default-class lens mtl old-locale
operational time
@@ -2057,8 +2162,8 @@ self: {
}:
mkDerivation {
pname = "Chart-cairo";
- version = "1.3.2";
- sha256 = "19ghd5xav7pn3z5igbkbsa81vhlpvy55xscc42vbxx1v9f6shq7g";
+ version = "1.3.3";
+ sha256 = "1x1bs5xlzw91qx2rgfak1i5q15l6hij6hhir6qw7bgl57n1046ah";
buildDepends = [
array base cairo Chart colour data-default-class lens mtl
old-locale operational time
@@ -2076,8 +2181,8 @@ self: {
}:
mkDerivation {
pname = "Chart-diagrams";
- version = "1.3.2";
- sha256 = "0q5qvzzl5wirlj26a6zpnyq95lpzzkwiqq0mkh25aa3qzzbg4y6g";
+ version = "1.3.3";
+ sha256 = "1bvlfy2gmv0w99jr32srdvrh7g0fzgvwhmzw8sf2iii12a7xwf56";
buildDepends = [
base blaze-svg bytestring Chart colour containers
data-default-class diagrams-core diagrams-lib diagrams-postscript
@@ -2094,8 +2199,8 @@ self: {
}:
mkDerivation {
pname = "Chart-gtk";
- version = "1.3.2";
- sha256 = "175bqh5pl4z0gx50z34afg149g94qw8sk87gbp9mavh5bnpj5a07";
+ version = "1.3.3";
+ sha256 = "0b8c7f2mha45iaw8vpzvhyxsqg3lrfm2cn89an27vsw9k72qric2";
buildDepends = [
array base cairo Chart Chart-cairo colour data-default-class gtk
mtl old-locale time
@@ -2103,6 +2208,7 @@ self: {
homepage = "https://github.com/timbod7/haskell-chart/wiki";
description = "Utility functions for using the chart library with GTK";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Chart-simple" = callPackage
@@ -2111,8 +2217,8 @@ self: {
}:
mkDerivation {
pname = "Chart-simple";
- version = "1.3.2";
- sha256 = "0bbf63q2zzjmz0aa1lg70jqb7rhv78d4xkqklgzci8c8w7ki1s3q";
+ version = "1.3.3";
+ sha256 = "0kk81jz4lciga8qc78gm9khw02n84snyclzf5lcmlz9rs50z3v5r";
buildDepends = [
array base cairo Chart Chart-cairo Chart-gtk colour
data-default-class gtk mtl old-locale time
@@ -2120,6 +2226,7 @@ self: {
homepage = "https://github.com/timbod7/haskell-chart/wiki";
description = "A wrapper for the chart library to assist with basic plots (Deprecated - use the Easy module instead)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ChasingBottoms" = callPackage
@@ -2157,6 +2264,7 @@ self: {
version = "0.0.0.2";
sha256 = "1mr323rhh3lr6a5ni60n2kxz2k57763a3rrf7c6i18hxs9d4w2s4";
buildDepends = [ base text ];
+ jailbreak = true;
description = "Inbuilt checking for ultra reliable computing";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -2173,6 +2281,7 @@ self: {
homepage = "https://github.com/ckkashyap/Chitra";
description = "A platform independent mechanism to render graphics using vnc";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ChristmasTree" = callPackage
@@ -2186,6 +2295,7 @@ self: {
buildDepends = [
base containers fgl template-haskell TTTAS uulib
];
+ jailbreak = true;
homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/TTTAS";
description = "Alternative approach of 'read' that composes grammars instead of parsers";
license = "LGPL";
@@ -2198,9 +2308,11 @@ self: {
version = "0.3.1.0";
sha256 = "1277vn384hpxd7xnzg0gpr7ilnw5cqhsi11c24g9zsfqa36llwgk";
buildDepends = [ base ChasingBottoms mtl QuickCheck ];
+ jailbreak = true;
homepage = "http://wiki.portal.chalmers.se/cse/pmwiki.php/FP/ClassLaws";
description = "Stating and checking laws for type class methods";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ClassyPrelude" = callPackage
@@ -2212,6 +2324,7 @@ self: {
buildDepends = [ base strict ];
description = "Prelude replacement using classes instead of concrete types where reasonable";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Clean" = callPackage
@@ -2221,8 +2334,10 @@ self: {
version = "0.6";
sha256 = "0kr9i13ch2wbcnxchrnx562r8ar7kb84gmk3cqxc40x5w416205f";
buildDepends = [ base containers ];
+ jailbreak = true;
description = "A light, clean and powerful utility library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Clipboard" = callPackage
@@ -2263,9 +2378,11 @@ self: {
array base bytestring bytestring-csv containers directory fgl
filepath mtl old-time pretty pureMD5 safe utf8-string
];
+ jailbreak = true;
homepage = "http://iki.fi/matti.niemenmaa/coadjute/";
description = "A generic build tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Codec-Compression-LZF" = callPackage
@@ -2290,6 +2407,7 @@ self: {
extraLibraries = [ libdevil ];
description = "An FFI interface to the DevIL library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) libdevil;};
"Combinatorrent" = callPackage
@@ -2312,9 +2430,9 @@ self: {
random-shuffle stm test-framework test-framework-hunit
test-framework-quickcheck2 time
];
- configureFlags = [ "-f-threadscope" "-f-debug" ];
description = "A concurrent bittorrent client";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Command" = callPackage
@@ -2324,7 +2442,6 @@ self: {
version = "0.0.7";
sha256 = "043dwvjkc1m2cz0rgiib7gv19ds1vn4cmf27lyw68nmc0lcm2v3d";
buildDepends = [ base directory process ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/command";
description = "A replacement for System.Exit and System.Process";
license = stdenv.lib.licenses.bsd3;
@@ -2344,6 +2461,7 @@ self: {
base data-default fsnotify optparse-applicative process
system-fileio system-filepath text
];
+ jailbreak = true;
homepage = "https://github.com/sordina/Commando";
description = "Watch some files; Rerun a command";
license = stdenv.lib.licenses.mit;
@@ -2395,9 +2513,11 @@ self: {
testDepends = [
base binary Cabal containers glider-nlp HUnit text
];
+ jailbreak = true;
homepage = "https://github.com/klangner/Condor";
description = "Information retrieval library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ConfigFile" = callPackage
@@ -2409,7 +2529,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers MissingH mtl parsec ];
- configureFlags = [ "-f-buildtests" ];
homepage = "http://software.complete.org/configfile";
description = "Configuration file reading & writing";
license = stdenv.lib.licenses.bsd3;
@@ -2444,6 +2563,7 @@ self: {
version = "0.1.0.0";
sha256 = "1if0hff6fn7zjj1vh16gxf2kldibh1dkscm8n33d1admvpjpw9sb";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/tel/Configurable";
description = "Declare types as Configurable then specialize them all in one place";
license = stdenv.lib.licenses.mit;
@@ -2470,6 +2590,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base process ];
+ jailbreak = true;
homepage = "https://github.com/sordina/Conscript";
description = "Restart a command on STDIN activity";
license = stdenv.lib.licenses.mit;
@@ -2482,6 +2603,7 @@ self: {
version = "1.3.0";
sha256 = "0rhy5wq3v5hdryjn8pcsgqy4k772agj1rgq3021pjki7n3zm3dza";
buildDepends = [ base dlist ghc-prim vector ];
+ jailbreak = true;
description = "Repackages standard type classes with the ConstraintKinds extension";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -2505,6 +2627,7 @@ self: {
version = "0.0.5";
sha256 = "1paj8wx2k86i5xb11scbyca4fb2fnxgln5d661mcwxvs0i91jj1b";
buildDepends = [ arrows base ];
+ jailbreak = true;
description = "Control.Arrow.Transformer.Cont";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -2519,6 +2642,7 @@ self: {
homepage = "http://www.cs.kent.ac.uk/~oc/contracts.html";
description = "Practical typed lazy contracts";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Control-Engine" = callPackage
@@ -2550,6 +2674,7 @@ self: {
homepage = "https://github.com/kevinbackhouse/Control-Monad-MultiPass";
description = "A Library for Writing Multi-Pass Algorithms";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Control-Monad-ST2" = callPackage
@@ -2577,7 +2702,6 @@ self: {
version = "0.0.2";
sha256 = "1wiwk4947h5x2swi9k6bh4zyhp849ibxhc5458kn5vipngrp4k78";
buildDepends = [ base parsec pretty ];
- configureFlags = [ "-fsplit-base" ];
homepage = "http://github.com/amtal/CoreErlang";
description = "Manipulating Core Erlang source code";
license = stdenv.lib.licenses.bsd3;
@@ -2597,9 +2721,11 @@ self: {
tagged text time transformers vector
];
buildTools = [ c2hs ];
+ jailbreak = true;
homepage = "https://github.com/reinerp/CoreFoundation";
description = "Bindings to Mac OSX's CoreFoundation framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Coroutine" = callPackage
@@ -2611,6 +2737,7 @@ self: {
buildDepends = [ base ];
description = "Type-safe coroutines using lightweight session types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"CouchDB" = callPackage
@@ -2627,9 +2754,11 @@ self: {
testDepends = [
base bytestring containers HTTP HUnit json mtl network utf8-string
];
+ jailbreak = true;
homepage = "http://github.com/arjunguha/haskell-couchdb/";
description = "CouchDB interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Craft3e" = callPackage
@@ -2644,6 +2773,7 @@ self: {
homepage = "http://www.haskellcraft.com/";
description = "Code for Haskell: the Craft of Functional Programming, 3rd ed";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Crypto" = callPackage
@@ -2655,7 +2785,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base HUnit pretty QuickCheck random ];
- configureFlags = [ "-fsmall_base" ];
description = "Collects together existing Haskell cryptographic functions into a package";
license = "unknown";
}) {};
@@ -2688,6 +2817,7 @@ self: {
];
description = "CurryDB: In-memory Key/Value Database";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DAG-Tournament" = callPackage
@@ -2705,6 +2835,7 @@ self: {
];
description = "Real-Time Game Tournament Evaluator";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DAV" = callPackage
@@ -2726,7 +2857,6 @@ self: {
network network-uri optparse-applicative transformers
transformers-base utf8-string xml-conduit xml-hamlet
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://floss.scru.org/hDAV";
description = "RFC 4918 WebDAV support";
license = stdenv.lib.licenses.gpl3;
@@ -2741,6 +2871,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers parsec ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/DBlimited/";
description = "A command-line SQL interface for flat files (tdf,csv,etc.)";
license = stdenv.lib.licenses.bsd3;
@@ -2756,6 +2887,7 @@ self: {
homepage = "https://github.com/alexkay/hdbus";
description = "D-Bus bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DMuCheck" = callPackage
@@ -2774,9 +2906,7 @@ self: {
distributed-process-simplelocalnet hint MuCheck
network-transport-tcp unix
];
- configureFlags = [
- "-f-hspec" "-f-hunit" "-f-smallcheck" "-f-quickcheck"
- ];
+ jailbreak = true;
homepage = "https://bitbucket.com/osu-testing/d-mucheck";
description = "Distributed Mutation Analysis framework for MuCheck";
license = stdenv.lib.licenses.gpl2;
@@ -2789,8 +2919,10 @@ self: {
version = "2.0.1";
sha256 = "13zj4jg78y5s05gfi3j83izxw6d2csbvznd7mq900zlv4xwddw2b";
buildDepends = [ base mtl WebBits ];
+ jailbreak = true;
description = "DOM Level 2 bindings for the WebBits package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DP" = callPackage
@@ -2804,9 +2936,11 @@ self: {
buildDepends = [
array base containers list-tries mtl QuickCheck safe semiring
];
+ jailbreak = true;
homepage = "http://github.com/srush/SemiRings/tree/master";
description = "Pragmatic framework for dynamic programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DPM" = callPackage
@@ -2827,9 +2961,10 @@ self: {
regex-posix split syb time unix
];
buildTools = [ alex happy ];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
description = "Darcs Patch Manager";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DRBG" = callPackage
@@ -2851,7 +2986,6 @@ self: {
crypto-api-tests cryptohash-cryptoapi entropy HUnit mtl parallel
prettyclass QuickCheck tagged test-framework test-framework-hunit
];
- configureFlags = [ "-f-test" ];
description = "Deterministic random bit generator (aka RNG, PRNG) based HMACs, Hashes, and Ciphers";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -2878,9 +3012,9 @@ self: {
base containers HDBC HDBC-postgresql HUnit QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2 text
];
- configureFlags = [ "-f-debuggraph" "-f-debugcomp" ];
description = "Database Supported Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DSTM" = callPackage
@@ -2896,6 +3030,7 @@ self: {
buildDepends = [ base containers haskell98 network process unix ];
description = "A framework for using STM within distributed systems";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DTC" = callPackage
@@ -2908,6 +3043,7 @@ self: {
homepage = "https://github.com/Daniel-Diaz/DTC";
description = "Data To Class transformation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Dangerous" = callPackage
@@ -2944,6 +3080,7 @@ self: {
];
description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DarcsHelpers" = callPackage
@@ -2953,8 +3090,10 @@ self: {
version = "0.1";
sha256 = "02nqaphxd3xlh191wxpx3rcixms70v8d6h4a3lxg24d7lcyf82n3";
buildDepends = [ base HaXml mtl parsec safe xml-parsec ];
+ jailbreak = true;
description = "Code used by Patch-Shack that seemed sensible to open for reusability";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Data-Hash-Consistent" = callPackage
@@ -2968,7 +3107,6 @@ self: {
buildDepends = [
base bytestring digest utf8-string vector vector-algorithms
];
- configureFlags = [ "-fsplitbase" ];
homepage = "https://github.com/bradclawsie/haskell-Data.Hash.Consistent";
description = "Provide a simple consistent hashing mechanism";
license = stdenv.lib.licenses.bsd3;
@@ -2983,6 +3121,7 @@ self: {
buildDepends = [ base bytestring unix ];
description = "Ropes, an alternative to (Byte)Strings";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DataTreeView" = callPackage
@@ -3000,6 +3139,7 @@ self: {
];
description = "A GTK widget for displaying arbitrary Data.Data.Data instances";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Deadpan-DDP" = callPackage
@@ -3064,6 +3204,7 @@ self: {
homepage = "http://page.mi.fu-berlin.de/~aneumann/decisiontree.html";
description = "A very simple implementation of decision trees for discrete attributes";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DeepArrow" = callPackage
@@ -3096,6 +3237,7 @@ self: {
homepage = "http://github.com/yairchu/defend/tree";
description = "A simple RTS game";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DescriptiveKeys" = callPackage
@@ -3105,7 +3247,6 @@ self: {
version = "0.0.4";
sha256 = "0ywipcmnr3ysmx8m61yrymyn10lnizjfkk2q2scdfkrkgh7ayj7v";
buildDepends = [ base containers xmonad xmonad-contrib ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://bitbucket.org/dibblego/descriptive-keys/";
description = "A library for specifying xmonad key bindings with functionality";
license = stdenv.lib.licenses.bsd3;
@@ -3125,6 +3266,7 @@ self: {
];
description = "Processing Real-time event streams";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Diff" = callPackage
@@ -3134,7 +3276,6 @@ self: {
version = "0.3.0";
sha256 = "0k7fj4icnh25x21cmrnbqq0sjgxrr2ffhn8bz89qmy5h9dznvy98";
buildDepends = [ array base pretty ];
- configureFlags = [ "-fsmall-base" ];
description = "O(ND) diff algorithm in haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -3146,9 +3287,11 @@ self: {
version = "0.1.0.4";
sha256 = "0ylpn6bksf6alxzk45cg88ff8xgffh88x3csvjlhb6zn8ik0w99a";
buildDepends = [ base containers fgl FirstOrderTheory HUnit ];
+ jailbreak = true;
homepage = "https://github.com/dillonhuff/DifferenceLogic";
description = "A theory solver for conjunctions of literals in difference logic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DifferentialEvolution" = callPackage
@@ -3162,9 +3305,11 @@ self: {
buildDepends = [
base deepseq fclabels mtl mwc-random parallel primitive vector
];
+ jailbreak = true;
homepage = "http://yousource.it.jyu.fi/optimization-with-haskell";
description = "Global optimization using Differential Evolution";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Digit" = callPackage
@@ -3179,7 +3324,6 @@ self: {
base HUnit QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/digit";
description = "A data-type representing digits 0-9";
license = stdenv.lib.licenses.bsd3;
@@ -3212,6 +3356,7 @@ self: {
buildDepends = [ base ];
description = "An n-dimensional hash using Morton numbers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DirectSound" = callPackage
@@ -3222,10 +3367,10 @@ self: {
sha256 = "1x78y1na375nwgk4izsjprj3yrg0xbrhqv6nrzfbvbfdyqlf5kyz";
buildDepends = [ base Win32 ];
extraLibraries = [ dsound ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "Partial binding to the Microsoft DirectSound API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { dsound = null;};
"DisTract" = callPackage
@@ -3246,6 +3391,7 @@ self: {
homepage = "http://distract.wellquite.org/";
description = "Distributed Bug Tracking System";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DiscussionSupportSystem" = callPackage
@@ -3258,6 +3404,7 @@ self: {
sha256 = "0iqcv3b06r9sqj1adxfq08vq5mlq4b7z88c2cw4qa7l9xw2p2js3";
buildDepends = [ base blaze-html blaze-markup html parsers ];
testDepends = [ base doctest ];
+ jailbreak = true;
homepage = "https://github.com/minamiyama1994/DiscussionSupportSystem";
description = "Discussion support system";
license = stdenv.lib.licenses.gpl3;
@@ -3272,6 +3419,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring ];
+ jailbreak = true;
homepage = "http://github.com/zcourts/Dish";
description = "Hash modules (currently Murmur3)";
license = stdenv.lib.licenses.bsd3;
@@ -3325,6 +3473,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "Frameshift-aware alignment of protein sequences with DNA sequences";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DocTest" = callPackage
@@ -3340,9 +3489,11 @@ self: {
buildDepends = [
base containers ghc ghc-paths haddock HUnit process
];
+ jailbreak = true;
homepage = "http://haskell.org/haskellwiki/DocTest";
description = "Test interactive Haskell examples";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Docs" = callPackage
@@ -3371,10 +3522,11 @@ self: {
array base containers haskell-src-exts mtl pointless-haskell pretty
syb
];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://haskell.di.uminho.pt/wiki/DrHylo";
description = "A tool for deriving hylomorphisms";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DrIFT" = callPackage
@@ -3442,6 +3594,7 @@ self: {
];
description = "Polymorphic protocol engine";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Dust-crypto" = callPackage
@@ -3468,6 +3621,7 @@ self: {
extraLibraries = [ openssl ];
description = "Cryptographic operations";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) openssl;};
"Dust-tools" = callPackage
@@ -3488,6 +3642,7 @@ self: {
];
description = "Network filtering exploration tools";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Dust-tools-pcap" = callPackage
@@ -3509,6 +3664,7 @@ self: {
];
description = "Network filtering exploration tools that rely on pcap";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DysFRP" = callPackage
@@ -3533,6 +3689,7 @@ self: {
homepage = "https://github.com/tilk/DysFRP";
description = "dysFunctional Reactive Programming on Cairo";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"DysFRP-Craftwerk" = callPackage
@@ -3550,6 +3707,7 @@ self: {
homepage = "https://github.com/tilk/DysFRP";
description = "dysFunctional Reactive Programming on Craftwerk";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"EEConfig" = callPackage
@@ -3561,6 +3719,7 @@ self: {
buildDepends = [ base containers ];
description = "ExtremlyEasyConfig - Extremly Simple parser for config files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Ebnf2ps" = callPackage
@@ -3623,6 +3782,7 @@ self: {
homepage = "http://github.com/bspaans/EditTimeReport";
description = "Query language and report generator for edit logs";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"EitherT" = callPackage
@@ -3637,8 +3797,10 @@ self: {
buildDepends = [
base monad-control transformers transformers-base
];
+ jailbreak = true;
description = "EitherT monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Elm" = callPackage
@@ -3670,9 +3832,11 @@ self: {
test-framework-hunit test-framework-quickcheck2 text transformers
union-find unordered-containers
];
+ jailbreak = true;
homepage = "http://elm-lang.org";
description = "The Elm language module";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Emping" = callPackage
@@ -3687,6 +3851,7 @@ self: {
homepage = "http://www.muitovar.com";
description = "derives heuristic rules from nominal data";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Encode" = callPackage
@@ -3710,6 +3875,7 @@ self: {
version = "0.1";
sha256 = "14ckpgaviny3c0d1jn3blkkpri0cm8ac264y7kak965knjccq0k8";
buildDepends = [ base containers deepseq ];
+ jailbreak = true;
description = "Simple Enum-class-based int containers";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -3721,8 +3887,10 @@ self: {
version = "0.0.2";
sha256 = "1v3jp1l95kybvdlpvp6bd0ryihxrvlnpkqz7fl1n4vazhkqk6zjz";
buildDepends = [ base containers ];
+ jailbreak = true;
description = "More general IntMap replacement";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Eq" = callPackage
@@ -3739,9 +3907,10 @@ self: {
array base containers filepath HaXml mtl parsec template-haskell
transformers
];
- configureFlags = [ "-foptimize" "-f-staticlinking" "-f-debug" ];
+ jailbreak = true;
description = "Render math formula in ASCII, and perform some simplifications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"EqualitySolver" = callPackage
@@ -3751,6 +3920,7 @@ self: {
version = "0.1.0.2";
sha256 = "0ynzzl9mmn5hxkcndx60lnxn455nm065v7nk7rhpq1yigwz0cl1g";
buildDepends = [ base containers HUnit mtl union-find-array ];
+ jailbreak = true;
description = "A theory solver for conjunctions of literals in the theory of uninterpreted functions with equality";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -3770,10 +3940,11 @@ self: {
base base-unicode-symbols bindings-EsounD monad-control network
regions safer-file-handles storablevector transformers unix
];
- configureFlags = [ "-f-build-examples" ];
+ jailbreak = true;
homepage = "http://cielonegro.org/EsounD.html";
description = "Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"EtaMOO" = callPackage
@@ -3793,7 +3964,6 @@ self: {
unordered-containers vector
];
extraLibraries = [ pcre ];
- configureFlags = [ "-f-llvm" ];
homepage = "https://github.com/verement/etamoo";
description = "A new implementation of the LambdaMOO server";
license = stdenv.lib.licenses.bsd3;
@@ -3813,6 +3983,7 @@ self: {
homepage = "http://mitar.tnode.com";
description = "A general data-flow framework";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Etage-Graph" = callPackage
@@ -3828,9 +3999,11 @@ self: {
buildDepends = [
array base containers deepseq Etage fgl mtl parallel random time
];
+ jailbreak = true;
homepage = "http://mitar.tnode.com";
description = "Data-flow based graph algorithms";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Eternal10Seconds" = callPackage
@@ -3845,6 +4018,7 @@ self: {
homepage = "http://www.kryozahiro.org/eternal10/";
description = "A 2-D shooting game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Etherbunny" = callPackage
@@ -3862,6 +4036,7 @@ self: {
homepage = "http://etherbunny.anytini.com/";
description = "A network analysis toolkit for Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) libpcap;};
"EuroIT" = callPackage
@@ -3891,9 +4066,11 @@ self: {
syb template-haskell UISF
];
testDepends = [ ansi-terminal base Cabal QuickCheck ];
+ jailbreak = true;
homepage = "http://haskell.cs.yale.edu/";
description = "Library for computer music research and education";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"EventSocket" = callPackage
@@ -3909,6 +4086,7 @@ self: {
];
description = "Interfaces with FreeSwitch Event Socket";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Extra" = callPackage
@@ -3926,7 +4104,6 @@ self: {
network-uri old-locale old-time pretty process pureMD5 QuickCheck
random regex-compat time unix Unixutils zlib
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "https://github.com/ddssff/haskell-extra";
description = "A grab bag of modules";
license = stdenv.lib.licenses.bsd3;
@@ -3948,9 +4125,10 @@ self: {
instant-generics ListLike midi mtl QuickCheck random
template-haskell time uu-parsinglib
];
- configureFlags = [ "-fquickcheck2" ];
+ jailbreak = true;
description = "Compose music";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FM-SBLEX" = callPackage
@@ -3965,6 +4143,7 @@ self: {
homepage = "http://spraakbanken.gu.se/eng/research/swefn/fm-sblex";
description = "A set of computational morphology tools for Swedish diachronic lexicons";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FModExRaw" = callPackage
@@ -3978,6 +4157,7 @@ self: {
homepage = "https://github.com/skypers/hsFModEx";
description = "The Haskell FModEx raw API";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { fmodex64 = null;};
"FPretty" = callPackage
@@ -4049,6 +4229,7 @@ self: {
buildDepends = [
AC-Angle base containers digits QuickCheck template-haskell
];
+ jailbreak = true;
description = "A collection of facts about the real world";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -4062,6 +4243,7 @@ self: {
buildDepends = [ base base-unicode-symbols mmtl ];
description = "Failure Monad Transformer";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FenwickTree" = callPackage
@@ -4095,6 +4277,7 @@ self: {
homepage = "http://www.scannedinavian.com/";
description = "Annotate ps and pdf documents";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FerryCore" = callPackage
@@ -4128,6 +4311,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/FieldTrip";
description = "Functional 3D";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FileManip" = callPackage
@@ -4141,9 +4325,9 @@ self: {
buildDepends = [
base bytestring directory extensible-exceptions filepath mtl unix
];
- configureFlags = [ "-fsplitbase" ];
description = "Expressive file and directory manipulation for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FileManipCompat" = callPackage
@@ -4157,7 +4341,6 @@ self: {
buildDepends = [
base bytestring directory filepath mtl unix-compat
];
- configureFlags = [ "-fsplitbase" ];
description = "Expressive file and directory manipulation for Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -4174,7 +4357,6 @@ self: {
base comonad comonad-transformers data-lens directory filepath mtl
transformers
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/filepather";
description = "Functions on System.FilePath";
license = stdenv.lib.licenses.bsd3;
@@ -4191,9 +4373,11 @@ self: {
buildDepends = [
base binary bytestring directory filepath mtl old-time
];
+ jailbreak = true;
homepage = "http://ddiaz.asofilak.es/packages/FileSystem";
description = "File system data structure and monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Finance-Quote-Yahoo" = callPackage
@@ -4210,6 +4394,7 @@ self: {
homepage = "http://www.b7j0c.org/stuff/haskell-yquote.xhtml";
description = "Obtain quote data from finance.yahoo.com";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Finance-Treasury" = callPackage
@@ -4224,10 +4409,10 @@ self: {
base containers HTTP HTTP-Simple hxt hxt-filter network old-locale
time
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.ecoin.net/haskell/Finance-Treasury.html";
description = "Obtain Treasury yield curve data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FindBin" = callPackage
@@ -4251,6 +4436,7 @@ self: {
buildDepends = [ base haskell98 ];
description = "A finite map implementation, derived from the paper: Efficient sets: a balancing act, S. Adams, Journal of functional programming 3(4) Oct 1993, pp553-562";
license = "BSD4";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FirstOrderTheory" = callPackage
@@ -4260,8 +4446,10 @@ self: {
version = "0.1.0.6";
sha256 = "1941ickx8aj3qbkry4gz8ni6snh26gkdrgabpx9z588518q4x27i";
buildDepends = [ base containers Proper ];
+ jailbreak = true;
description = "Grammar and typeclass for first order theories";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FixedPoint-simple" = callPackage
@@ -4292,6 +4480,7 @@ self: {
homepage = "http://www.flippac.org/projects/flippi/";
description = "Wiki";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Focus" = callPackage
@@ -4317,6 +4506,7 @@ self: {
homepage = "https://github.com/dillonhuff/Folly";
description = "A first order logic library in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FontyFruity" = callPackage
@@ -4352,6 +4542,7 @@ self: {
homepage = "http://www.ict.kth.se/forsyde/";
description = "ForSyDe's Haskell-embedded Domain Specific Language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ForkableT" = callPackage
@@ -4361,6 +4552,7 @@ self: {
version = "0.1.0.1";
sha256 = "1qw4qyfpax8y3pmb0sx717a294aamjb2mgvqhrkbqx2yi5d8jl66";
buildDepends = [ base monad-control mtl resourcet ];
+ jailbreak = true;
homepage = "https://github.com/exFalso/ForkableT/";
description = "Forkable monad transformers";
license = stdenv.lib.licenses.bsd3;
@@ -4386,6 +4578,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/gramprod/";
description = "(Context-free) grammars in formal language theory";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FpMLv53" = callPackage
@@ -4412,6 +4605,7 @@ self: {
homepage = "http://personal.cis.strath.ac.uk/~conor/pub/Frank/";
description = "An experimental programming language with typed algebraic effects";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FreeTypeGL" = callPackage
@@ -4423,9 +4617,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base freetype2 OpenGL ];
- configureFlags = [ "-f-examples" "-f-use_font_config" ];
+ jailbreak = true;
description = "Loadable texture fonts for OpenGL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"FunGEn" = callPackage
@@ -4437,6 +4632,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base GLUT OpenGL random ];
+ jailbreak = true;
homepage = "http://joyful.com/fungen";
description = "A lightweight, cross-platform, OpenGL/GLUT-based game engine";
license = stdenv.lib.licenses.bsd3;
@@ -4459,6 +4655,7 @@ self: {
];
description = "An interpreter for Funge-98 programming languages, including Befunge";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GA" = callPackage
@@ -4480,7 +4677,6 @@ self: {
version = "0.0.4";
sha256 = "0ab6dngl8gjkj8wvjvrjijgqb59aq88c1ra2z92iqky2d0plrfca";
buildDepends = [ array base process ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.cs.kent.ac.uk/people/staff/cr3/toolbox/haskell/GHood";
description = "A graphical viewer for Hood";
license = stdenv.lib.licenses.bsd3;
@@ -4494,7 +4690,6 @@ self: {
sha256 = "0yqvfkg9p5h5bv3ak6b89am9kan9lbcq26kg1wk53xl6mz1aaijf";
buildDepends = [ base OpenGL ];
extraLibraries = [ libX11 mesa ];
- configureFlags = [ "-f-dynamic" ];
homepage = "http://haskell.org/haskellwiki/GLFW";
description = "A Haskell binding for GLFW";
license = stdenv.lib.licenses.bsd3;
@@ -4511,6 +4706,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/GLFW-OGL";
description = "A binding for GLFW (OGL)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.xlibs) libX11;
inherit (pkgs.xlibs) libXrandr;};
@@ -4541,6 +4737,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base GLFW-b mtl OpenGL pretty stm transformers ];
+ jailbreak = true;
description = "GLFW-b demo";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -4558,17 +4755,16 @@ self: {
}) {};
"GLHUI" = callPackage
- ({ mkDerivation, base, libX11, mesa, rt }:
+ ({ mkDerivation, base, libX11, mesa }:
mkDerivation {
pname = "GLHUI";
version = "1.1.0";
sha256 = "043xw36hrwzc6xdr5vlydbsv5m8675vnk8pfxycr7qixzwljn0aa";
buildDepends = [ base ];
- extraLibraries = [ libX11 mesa rt ];
+ extraLibraries = [ libX11 mesa ];
description = "Open OpenGL context windows in X11 with libX11";
license = stdenv.lib.licenses.bsd3;
- }) { inherit (pkgs.xlibs) libX11; inherit (pkgs) mesa;
- rt = null;};
+ }) { inherit (pkgs.xlibs) libX11; inherit (pkgs) mesa;};
"GLMatrix" = callPackage
({ mkDerivation, base, OpenGLRaw }:
@@ -4577,6 +4773,7 @@ self: {
version = "0.1.0.1";
sha256 = "13n80rplyl73ahk8cxgvs9gf655l063sd55spx0zvhw774vvxwv4";
buildDepends = [ base OpenGLRaw ];
+ jailbreak = true;
homepage = "https://github.com/fiendfan1/GLMatrix";
description = "Utilities for working with OpenGL matrices";
license = stdenv.lib.licenses.gpl3;
@@ -4590,7 +4787,6 @@ self: {
sha256 = "10sy0zag1wfrrq137azv3xazcgs21zb6bp84xzh518qbhiiycjhg";
buildDepends = [ base OpenGLRaw ];
extraLibraries = [ freeglut mesa ];
- configureFlags = [ "-fusenativewindowslibraries" ];
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A raw binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
@@ -4606,7 +4802,6 @@ self: {
sha256 = "1j298vs4wly29d972w106l0ra44gsbpjwrrjhk3qm5ql25i12pvh";
buildDepends = [ array base containers OpenGL OpenGLRaw ];
extraLibraries = [ freeglut libICE libSM libXi libXmu mesa ];
- configureFlags = [ "-fusenativewindowslibraries" ];
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A binding for the OpenGL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
@@ -4644,10 +4839,11 @@ self: {
base comonad comonad-transformers containers data-lens hxt newtype
xsd
];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
homepage = "https://github.com/tonymorris/geo-gpx";
description = "Parse GPX files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GPipe" = callPackage
@@ -4662,9 +4858,11 @@ self: {
base Boolean containers GLUT list-tries OpenGL transformers Vec
Vec-Boolean
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GPipe";
description = "A functional graphics API for programmable GPUs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GPipe-Collada" = callPackage
@@ -4674,9 +4872,11 @@ self: {
version = "0.1.4";
sha256 = "0aqvyv50gx0qx7icp70pw73gr3p6y05dkn347nqx82jc9dyxjghw";
buildDepends = [ array base containers GPipe HaXml mtl Vec ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GPipe";
description = "Load GPipe meshes from Collada files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GPipe-Examples" = callPackage
@@ -4694,6 +4894,7 @@ self: {
];
description = "Examples for the GPipes package";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GPipe-TextureLoad" = callPackage
@@ -4706,6 +4907,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/GPipe";
description = "Load GPipe textures from filesystem";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GTALib" = callPackage
@@ -4720,9 +4922,11 @@ self: {
base containers deepseq parallel template-haskell
];
testDepends = [ base HUnit test-framework test-framework-hunit ];
+ jailbreak = true;
homepage = "https://bitbucket.org/emoto/gtalib";
description = "A library for GTA programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Gamgine" = callPackage
@@ -4740,8 +4944,10 @@ self: {
filepath GLFW-b ListZipper mtl OpenGLRaw parsec pretty-show
StateVar time unordered-containers utility-ht Vec zlib
];
+ jailbreak = true;
description = "Some kind of game library or set of utilities";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Ganymede" = callPackage
@@ -4757,9 +4963,11 @@ self: {
buildDepends = [
base containers directory filepath mtl parsec transformers
];
+ jailbreak = true;
homepage = "https://github.com/BMeph/Ganymede";
description = "An Io interpreter in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GaussQuadIntegration" = callPackage
@@ -4782,9 +4990,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base directory random wx wxcore ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GeBoP";
description = "Several games";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GenI" = callPackage
@@ -4811,10 +5021,11 @@ self: {
test-framework-quickcheck2 test-framework-smallcheck text
transformers
];
- configureFlags = [ "-f-static" ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/GenI";
description = "A natural language generator (specifically, an FB-LTAG surface realiser)";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GenSmsPdu" = callPackage
@@ -4828,6 +5039,7 @@ self: {
buildDepends = [ base haskell98 QuickCheck random ];
description = "Automatic SMS message generator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Genbank" = callPackage
@@ -4868,6 +5080,7 @@ self: {
buildDepends = [ base bytestring bytestring-mmap syb ];
description = "Pure bindings for the MaxMind IP database";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Geodetic" = callPackage
@@ -4877,7 +5090,6 @@ self: {
version = "0.4";
sha256 = "1nb0q5hs9qqgygw35rbvanbjf9l6vjxrl6l4jp9dqwlnl1kdd88q";
buildDepends = [ base ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.google.com/p/geodetic/";
description = "Geodetic calculations";
license = stdenv.lib.licenses.bsd3;
@@ -4903,6 +5115,7 @@ self: {
buildDepends = [ base GeomPredicates ];
description = "Geometric predicates (Intel SSE)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GiST" = callPackage
@@ -4912,6 +5125,7 @@ self: {
version = "0.0.1";
sha256 = "0ykvsjqpi7pd81857n2gqycgpnm0j8dxnpf345h7pgzrkz10qi9f";
buildDepends = [ base text ];
+ jailbreak = true;
description = "A Haskell implementation of a Generalized Search Tree (GiST)";
license = "GPL";
}) {};
@@ -4942,6 +5156,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Glome";
description = "Ray Tracing Library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GlomeVec" = callPackage
@@ -4973,6 +5188,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Glome";
description = "SDL Frontend for Glome ray tracer";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GoogleChart" = callPackage
@@ -5001,6 +5217,7 @@ self: {
homepage = "https://github.com/favilo/GoogleDirections.git";
description = "Haskell Interface to Google Directions API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GoogleSB" = callPackage
@@ -5016,6 +5233,7 @@ self: {
];
description = "Interface to Google Safe Browsing API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GoogleSuggest" = callPackage
@@ -5039,6 +5257,7 @@ self: {
buildDepends = [ AttoJson base bytestring dataenc download-curl ];
description = "Interface to Google Translate API";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GotoT-transformers" = callPackage
@@ -5073,6 +5292,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/gramprod";
description = "Grammar products and higher-dimensional grammars";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Graph500" = callPackage
@@ -5117,6 +5337,7 @@ self: {
buildDepends = [ array base containers Graph500 GraphHammer mtl ];
description = "Test harness for TriangleCount analysis";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GraphSCC" = callPackage
@@ -5126,7 +5347,6 @@ self: {
version = "1.0.4";
sha256 = "1wbcx3wb02adb7l4nchxla3laliz0h5q074vfw4z0ic833k977bq";
buildDepends = [ array base containers ];
- configureFlags = [ "-f-use-maps" ];
description = "Tarjan's algorithm for computing the strongly connected components of a graph";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -5144,6 +5364,7 @@ self: {
array base bktrees containers directory fgl filepath graphviz
old-locale pandoc process random text time
];
+ jailbreak = true;
description = "Graph-Theoretic Analysis library";
license = "unknown";
}) {};
@@ -5159,9 +5380,9 @@ self: {
buildDepends = [
array base containers mtl QuickCheck template-haskell th-lift
];
- configureFlags = [ "-ftest" ];
description = "Embedded grammar DSL and LALR parser generator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GroteTrap" = callPackage
@@ -5171,6 +5392,7 @@ self: {
version = "0.5";
sha256 = "1a43iig84bvmgpjmk6lqzhm3fq5p5hac36icwj4yfyrvzyfn0x7m";
buildDepends = [ base mtl parsec QuickCheck ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GroteTrap";
description = "Parser and selection library for expression languages";
license = stdenv.lib.licenses.bsd3;
@@ -5192,9 +5414,11 @@ self: {
definitive-filesystem definitive-parser definitive-reactive
directory filepath old-locale primitive process time unix vector
];
+ jailbreak = true;
homepage = "http://coiffier.net/projects/grow.html";
description = "A declarative make-like interpreter";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GrowlNotify" = callPackage
@@ -5210,6 +5434,7 @@ self: {
buildDepends = [ base binary bytestring Crypto haskell98 network ];
description = "Notification utility for Growl";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Gtk2hsGenerics" = callPackage
@@ -5225,6 +5450,7 @@ self: {
];
description = "Convenience functions to extend Gtk2hs";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GtkGLTV" = callPackage
@@ -5240,6 +5466,7 @@ self: {
];
description = "OpenGL support for Gtk-based GUIs for Tangible Values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GtkTV" = callPackage
@@ -5252,6 +5479,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/GtkTV";
description = "Gtk-based GUIs for Tangible Values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GuiHaskell" = callPackage
@@ -5271,6 +5499,7 @@ self: {
homepage = "http://www-users.cs.york.ac.uk/~ndm/guihaskell/";
description = "A graphical REPL and development environment for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"GuiTV" = callPackage
@@ -5283,6 +5512,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/GuiTV";
description = "GUIs for Tangible Values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HARM" = callPackage
@@ -5311,9 +5541,10 @@ self: {
base binary bytestring containers HAppS-Util HaXml mtl pretty syb
syb-with-class template-haskell
];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
description = "HAppS data manipulation libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HAppS-IxSet" = callPackage
@@ -5328,8 +5559,8 @@ self: {
base containers HAppS-Data HAppS-State HAppS-Util hslogger mtl syb
syb-with-class template-haskell
];
- configureFlags = [ "-fbase4" ];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HAppS-Server" = callPackage
@@ -5348,9 +5579,10 @@ self: {
old-locale old-time parsec process random syb template-haskell unix
xhtml
];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
description = "Web related tools and services";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HAppS-State" = callPackage
@@ -5368,9 +5600,10 @@ self: {
HAppS-Util HaXml hslogger hspread mtl network old-locale old-time
random stm syb template-haskell unix
];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
description = "Event-based distributed state";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HAppS-Util" = callPackage
@@ -5385,9 +5618,9 @@ self: {
array base bytestring directory hslogger mtl old-time process
template-haskell
];
- configureFlags = [ "-fbase4" ];
description = "Web framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HAppSHelpers" = callPackage
@@ -5398,6 +5631,7 @@ self: {
sha256 = "1hwxh60b26chcd466vlpxc7hx3smdnfl40mfxpyh8j1597v2aqa3";
description = "OBSOLETE. Please use happstack-helpers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HCL" = callPackage
@@ -5409,9 +5643,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers mtl QuickCheck random ];
+ jailbreak = true;
homepage = "http://github.com/m4dc4p/hcl/tree/master";
description = "High-level library for building command line interfaces";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HCard" = callPackage
@@ -5453,7 +5689,6 @@ self: {
base bytestring containers convertible mtl old-locale old-time text
time utf8-string
];
- configureFlags = [ "-f-buildtests" "-fsplitbase" ];
homepage = "https://github.com/hdbc/hdbc";
description = "Haskell Database Connectivity";
license = stdenv.lib.licenses.bsd3;
@@ -5469,6 +5704,7 @@ self: {
homepage = "http://github.com/bos/hdbc-mysql";
description = "MySQL driver for HDBC";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HDBC-odbc" = callPackage
@@ -5483,7 +5719,6 @@ self: {
isExecutable = true;
buildDepends = [ base bytestring HDBC mtl time utf8-string ];
extraLibraries = [ unixODBC ];
- configureFlags = [ "-f-buildstresstest" "-f-buildtests" ];
homepage = "https://github.com/hdbc/hdbc-odbc";
description = "ODBC driver for HDBC";
license = stdenv.lib.licenses.bsd3;
@@ -5504,7 +5739,6 @@ self: {
time utf8-string
];
extraLibraries = [ postgresql ];
- configureFlags = [ "-f-buildtests" "-fsplitbase" ];
homepage = "http://github.com/hdbc/hdbc-postgresql";
description = "PostgreSQL driver for HDBC";
license = stdenv.lib.licenses.bsd3;
@@ -5517,6 +5751,7 @@ self: {
version = "0.0.1.2";
sha256 = "0657a1qy51bihh9gvpwpqpm4gch68rw32plnjcfdbc37yjq5dj1d";
buildDepends = [ attoparsec base containers HDBC text ];
+ jailbreak = true;
homepage = "https://bitbucket.org/dpwiz/hdbc-postgresql-hstore";
description = "Manipulate data in PostgreSQL \"hstore\" columns";
license = stdenv.lib.licenses.mit;
@@ -5545,7 +5780,6 @@ self: {
isExecutable = true;
buildDepends = [ base bytestring HDBC mtl utf8-string ];
extraLibraries = [ sqlite ];
- configureFlags = [ "-f-buildtests" "-fsplitbase" ];
homepage = "http://software.complete.org/hdbc-sqlite3";
description = "Sqlite v3 driver for HDBC";
license = stdenv.lib.licenses.bsd3;
@@ -5561,9 +5795,11 @@ self: {
sha256 = "0rkykxmqpqiclvxlvfd0v9rrvkkb25shyajdmajxisfqxl684y0g";
buildDepends = [ array base colour containers mtl unix ];
extraLibraries = [ pfstools ];
+ jailbreak = true;
homepage = "http://vis.renci.org/jeff/pfs";
description = "Utilities for reading, manipulating, and writing HDR images";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) pfstools;};
"HERA" = callPackage
@@ -5575,6 +5811,7 @@ self: {
buildDepends = [ base ];
extraLibraries = [ mpfr ];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) mpfr;};
"HFuse" = callPackage
@@ -5587,7 +5824,6 @@ self: {
isExecutable = true;
buildDepends = [ base bytestring unix ];
extraLibraries = [ fuse ];
- configureFlags = [ "-f-developer" ];
preConfigure = ''
sed -i -e "s@ Extra-Lib-Dirs: /usr/local/lib@ Extra-Lib-Dirs: ${fuse}/lib@" HFuse.cabal
'';
@@ -5603,7 +5839,6 @@ self: {
version = "3.2.0.5";
sha256 = "0z8dfxg2x530lawx7gyv9d25wcfpwvbfmknq17d5wgkxz47j95wb";
buildDepends = [ array base X11 ];
- configureFlags = [ "-fsplit-base" ];
description = "A simple graphics library based on X11 or Win32";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -5624,6 +5859,7 @@ self: {
homepage = "http://www.hgamer3d.org";
description = "A Toolset for the Haskell Game Programmer";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HGamer3D-API" = callPackage
@@ -5638,9 +5874,11 @@ self: {
base haskell98 HGamer3D-Data HGamer3D-Ogre-Binding
HGamer3D-SFML-Binding
];
+ jailbreak = true;
homepage = "http://www.althainz.de/HGamer3D.html";
description = "Library to enable 3D game development for Haskell - API";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HGamer3D-Audio" = callPackage
@@ -5657,6 +5895,7 @@ self: {
homepage = "http://www.hgamer3d.org";
description = "Toolset for the Haskell Game Programmer - Audio Functionality";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HGamer3D-Bullet-Binding" = callPackage
@@ -5680,9 +5919,11 @@ self: {
sha256 = "1q69ffhnnh4iaghb1g8s6bqlsry7jy5sbp5vpg4lprnr4wna5ya1";
buildDepends = [ base haskell98 HGamer3D-Data ];
extraLibraries = [ HGamer3DCAudio015 ];
+ jailbreak = true;
homepage = "http://www.althainz.de/HGamer3D.html";
description = "Library to enable 3D game development for Haskell - cAudio Bindings";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { HGamer3DCAudio015 = null;};
"HGamer3D-CEGUI-Binding" = callPackage
@@ -5698,6 +5939,7 @@ self: {
homepage = "http://www.hgamer3d.org";
description = "A Toolset for the Haskell Game Programmer - CEGUI Bindings";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { CEGUIBase = null; CEGUIOgreRenderer = null;
hg3dcegui050 = null;};
@@ -5745,6 +5987,7 @@ self: {
homepage = "http://www.hgamer3d.org";
description = "Enet Binding for HGamer3D";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) enet; hg3denet050 = null;};
"HGamer3D-GUI" = callPackage
@@ -5758,9 +6001,11 @@ self: {
buildDepends = [
base HGamer3D-CEGUI-Binding HGamer3D-Data HGamer3D-WinEvent split
];
+ jailbreak = true;
homepage = "http://www.hgamer3d.org";
description = "GUI Functionality for HGamer3D";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HGamer3D-Graphics3D" = callPackage
@@ -5781,6 +6026,7 @@ self: {
homepage = "http://www.hgamer3d.org";
description = "Toolset for the Haskell Game Programmer - 3D Graphics Functionality";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HGamer3D-InputSystem" = callPackage
@@ -5798,6 +6044,7 @@ self: {
homepage = "http://www.hgamer3d.org";
description = "Joystick, Mouse and Keyboard Functionality for HGamer3D";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HGamer3D-Network" = callPackage
@@ -5814,6 +6061,7 @@ self: {
homepage = "http://www.hgamer3d.org";
description = "Networking Functionality for HGamer3D";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HGamer3D-OIS-Binding" = callPackage
@@ -5828,9 +6076,11 @@ self: {
base haskell98 HGamer3D-Data HGamer3D-Ogre-Binding
];
extraLibraries = [ HGamer3DOIS015 ];
+ jailbreak = true;
homepage = "http://www.althainz.de/HGamer3D.html";
description = "Library to enable 3D game development for Haskell - OIS Bindings";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { HGamer3DOIS015 = null;};
"HGamer3D-Ogre-Binding" = callPackage
@@ -5850,6 +6100,7 @@ self: {
homepage = "http://www.hgamer3d.org";
description = "Ogre Binding for HGamer3D";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { OgreMain = null; OgrePaging = null; OgreProperty = null;
OgreRTShaderSystem = null; OgreTerrain = null;
hg3dogre050 = null;};
@@ -5867,6 +6118,7 @@ self: {
homepage = "http://www.hgamer3d.org";
description = "SDL2 Binding for HGamer3D";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) SDL2; hg3dsdl2050 = null;
inherit (pkgs.xlibs) libX11;};
@@ -5885,6 +6137,7 @@ self: {
homepage = "http://www.hgamer3d.org";
description = "SFML Binding for HGamer3D";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { hg3dsfml050 = null; sfml-audio = null; sfml-network = null;
sfml-system = null; sfml-window = null;};
@@ -5896,9 +6149,11 @@ self: {
version = "0.4.0";
sha256 = "0d3vjlgpzzb473dmhllxvi05lnh010vgfdbizlj4yxywrp6aas9a";
buildDepends = [ base HGamer3D-Data HGamer3D-SDL2-Binding text ];
+ jailbreak = true;
homepage = "http://www.hgamer3d.org";
description = "Windowing and Event Functionality for HGamer3D";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HGamer3D-Wire" = callPackage
@@ -5914,9 +6169,11 @@ self: {
base containers HGamer3D HGamer3D-Audio HGamer3D-Data HGamer3D-GUI
HGamer3D-InputSystem HGamer3D-WinEvent mtl netwire transformers
];
+ jailbreak = true;
homepage = "http://www.hgamer3d.org";
description = "Wire Functionality for HGamer3D";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HHDL" = callPackage
@@ -5926,9 +6183,11 @@ self: {
version = "0.1.0.0";
sha256 = "1215nz6l3bbkld2fqqsc494xw4qw4vqavznaqxgja2p60w9mwg0q";
buildDepends = [ base containers mtl template-haskell ];
+ jailbreak = true;
homepage = "http://thesz.mskhug.ru/svn/hhdl/hackage/hhdl/";
description = "Hardware Description Language embedded in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HJScript" = callPackage
@@ -5964,6 +6223,7 @@ self: {
homepage = "https://github.com/JPMoresmau/HJVM";
description = "A library to create a Java Virtual Machine and manipulate Java objects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { jvm = null;};
"HJavaScript" = callPackage
@@ -5990,9 +6250,11 @@ self: {
base ConstraintKinds containers deepseq hashable MonadRandom
parallel random template-haskell vector vector-heterogenous
];
+ jailbreak = true;
homepage = "http://github.com/mikeizbicki/HLearn/";
description = "Algebraic foundation for homomorphic learning";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HLearn-approximation" = callPackage
@@ -6009,6 +6271,7 @@ self: {
HLearn-datastructures HLearn-distributions list-extras vector
];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HLearn-classification" = callPackage
@@ -6028,8 +6291,10 @@ self: {
math-functions MonadRandom normaldistribution parsec primitive
QuickCheck statistics vector vector-th-unbox
];
+ jailbreak = true;
homepage = "http://github.com/mikeizbicki/HLearn/";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HLearn-datastructures" = callPackage
@@ -6045,6 +6310,7 @@ self: {
MonadRandom QuickCheck vector
];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HLearn-distributions" = callPackage
@@ -6067,6 +6333,7 @@ self: {
homepage = "http://github.com/mikeizbicki/HLearn/";
description = "Distributions for use with the HLearn library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HList" = callPackage
@@ -6099,6 +6366,7 @@ self: {
homepage = "http://code.haskell.org/~aavogt/HListPP";
description = "A preprocessor for HList labelable labels";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HLogger" = callPackage
@@ -6110,9 +6378,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base old-locale time ];
+ jailbreak = true;
homepage = "http://www.pontarius.org/sub-projects/hlogger/";
description = "Simple, concurrent and easy-to-use logging library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HMM" = callPackage
@@ -6124,6 +6394,7 @@ self: {
homepage = "https://github.com/mikeizbicki/hmm";
description = "A hidden markov model library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HMap" = callPackage
@@ -6155,6 +6426,7 @@ self: {
homepage = "http://sert.homedns.org/hs/hnm/";
description = "Happy Network Manager";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HODE" = callPackage
@@ -6167,6 +6439,7 @@ self: {
extraLibraries = [ ode ];
description = "Binding to libODE";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) ode;};
"HOpenCV" = callPackage
@@ -6213,9 +6486,11 @@ self: {
base Cabal containers directory filepath haskell-src-exts mtl
parsec utf8-string
];
+ jailbreak = true;
homepage = "http://github.com/solidsnack/HPath";
description = "Extract Haskell declarations by name";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HPi" = callPackage
@@ -6225,6 +6500,7 @@ self: {
version = "0.4.0";
sha256 = "0d0r89a92lavbaf6svkqwd7fvc1q4kwbdvr0jvxarx2xgrhl342a";
buildDepends = [ base bytestring ];
+ jailbreak = true;
homepage = "https://github.com/WJWH/HPi";
description = "GPIO and I2C functions for the Raspberry Pi";
license = stdenv.lib.licenses.bsd3;
@@ -6241,9 +6517,11 @@ self: {
buildDepends = [ base glade glib gtk ];
buildTools = [ c2hs ];
pkgconfigDepends = [ plplotd-gnome2 ];
+ jailbreak = true;
homepage = "http://yakov.cc/HPlot.html";
description = "A minimal monadic PLplot interface for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { plplotd-gnome2 = null;};
"HPong" = callPackage
@@ -6262,6 +6540,7 @@ self: {
homepage = "http://bonsaicode.wordpress.com/2009/04/23/hpong-012/";
description = "A simple OpenGL Pong game based on GLFW";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HROOT" = callPackage
@@ -6280,6 +6559,7 @@ self: {
homepage = "http://ianwookim.org/HROOT";
description = "Haskell binding to ROOT RooFit modules";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HROOT-core" = callPackage
@@ -6292,6 +6572,7 @@ self: {
homepage = "http://ianwookim.org/HROOT";
description = "Haskell binding to ROOT Core modules";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HROOT-graf" = callPackage
@@ -6304,6 +6585,7 @@ self: {
homepage = "http://ianwookim.org/HROOT";
description = "Haskell binding to ROOT Graf modules";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HROOT-hist" = callPackage
@@ -6316,6 +6598,7 @@ self: {
homepage = "http://ianwookim.org/HROOT";
description = "Haskell binding to ROOT Hist modules";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HROOT-io" = callPackage
@@ -6328,6 +6611,7 @@ self: {
homepage = "http://ianwookim.org/HROOT";
description = "Haskell binding to ROOT IO modules";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HROOT-math" = callPackage
@@ -6340,6 +6624,7 @@ self: {
homepage = "http://ianwookim.org/HROOT";
description = "Haskell binding to ROOT Math modules";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HRay" = callPackage
@@ -6354,6 +6639,7 @@ self: {
homepage = "http://boegel.kejo.be/ELIS/Haskell/HRay/";
description = "Haskell raytracer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HSFFIG" = callPackage
@@ -6369,9 +6655,11 @@ self: {
buildDepends = [
array base Cabal containers directory filepath parsec process unix
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/HSFFIG";
description = "Generate FFI import declarations from C include files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HSGEP" = callPackage
@@ -6408,7 +6696,6 @@ self: {
base bytestring directory filepath hslogger MissingH mtl process
regex-base regex-compat regex-posix unix
];
- configureFlags = [ "-f-buildtests" ];
homepage = "http://software.complete.org/hsh";
description = "Library to mix shell scripting with Haskell programs";
license = "LGPL";
@@ -6427,8 +6714,10 @@ self: {
base bytestring DebugTraceHelpers directory filepath HSH
HStringTemplateHelpers MissingH mtl regex-pcre unix
];
+ jailbreak = true;
description = "Convenience functions that use HSH, instances for HSH";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HSlippyMap" = callPackage
@@ -6438,6 +6727,7 @@ self: {
version = "2.2";
sha256 = "17n1kpva97lwhwg2vs7875bfqlwcq6xpl2agqc53qb7j4153p559";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/j4/HSlippyMap";
description = "OpenStreetMap Slippy Map";
license = stdenv.lib.licenses.bsd3;
@@ -6456,9 +6746,11 @@ self: {
unordered-containers vector
];
testDepends = [ aeson attoparsec base HTF text ];
+ jailbreak = true;
homepage = "https://github.com/agrafix/HSmarty";
description = "Small template engine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HSoundFile" = callPackage
@@ -6472,10 +6764,10 @@ self: {
buildDepends = [
base binary bytestring filepath haskell98 mtl parallel
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://mml.music.utexas.edu/jwlato/HSoundFile";
description = "Audio file reading/writing";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HStringTemplate" = callPackage
@@ -6511,6 +6803,7 @@ self: {
filepath mtl parsec pretty syb template-haskell text time
utf8-string void
];
+ jailbreak = true;
description = "StringTemplate implementation in Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -6527,7 +6820,6 @@ self: {
base containers directory FileManipCompat filepath HSH
HStringTemplate mtl safe strict
];
- configureFlags = [ "-fbase4" ];
homepage = "http://patch-tag.com/tphyahoo/r/tphyahoo/HStringTemplateHelpers";
description = "Convenience functions and instances for HStringTemplate";
license = "GPL";
@@ -6542,6 +6834,7 @@ self: {
buildDepends = [ base containers ];
description = "Haskell Bindings for libsvm";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HTF" = callPackage
@@ -6591,10 +6884,6 @@ self: {
http-types httpd-shed HUnit mtl network network-uri pureMD5 split
test-framework test-framework-hunit wai warp
];
- configureFlags = [
- "-fnetwork-uri" "-fwarp-tests" "-f-conduit10" "-f-network23"
- "-f-warn-as-error" "-f-mtl1"
- ];
homepage = "https://github.com/haskell/HTTP";
description = "A library for client-side HTTP";
license = stdenv.lib.licenses.bsd3;
@@ -6610,6 +6899,7 @@ self: {
homepage = "http://www.b7j0c.org/content/haskell-http.html";
description = "DEPRECATED Enable simple wrappers to Network.HTTP";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HTab" = callPackage
@@ -6625,10 +6915,10 @@ self: {
buildDepends = [
base cmdargs containers deepseq hylolib mtl strict
];
- configureFlags = [ "-f-static" ];
homepage = "http://www.glyc.dc.uba.ar/intohylo/htab.php";
description = "Tableau based theorem prover for hybrid logics";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HTicTacToe" = callPackage
@@ -6644,6 +6934,7 @@ self: {
homepage = "http://github.com/snkkid/HTicTacToe";
description = "An SDL tic-tac-toe game";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HUnit" = callPackage
@@ -6653,7 +6944,6 @@ self: {
version = "1.2.5.2";
sha256 = "0hcs6qh8bqhip1kkjjnw7ccgcsmawdz5yvffjj5y8zd2vcsavx8a";
buildDepends = [ base deepseq ];
- configureFlags = [ "-fbase4" ];
homepage = "http://hunit.sourceforge.net/";
description = "A unit testing framework for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -6666,9 +6956,11 @@ self: {
version = "0.1";
sha256 = "0dlsx6qicnrqkhb52jbgh31f0y6lxh32yl5gr6bg3fnqr36vc6x6";
buildDepends = [ ansi-terminal base Diff groom HUnit ];
+ jailbreak = true;
homepage = "https://github.com/dag/HUnit-Diff";
description = "Assertions for HUnit with difference reporting";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HUnit-Plus" = callPackage
@@ -6691,6 +6983,7 @@ self: {
homepage = "https://github.com/emc2/HUnit-Plus";
description = "A test framework building on HUnit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HUnit-approx" = callPackage
@@ -6723,9 +7016,11 @@ self: {
network pureMD5 random regex-posix text transformers utf8-string
xml-enumerator xml-types
];
+ jailbreak = true;
homepage = "http://www.pontarius.org/sub-projects/hxmpp/";
description = "A (prototyped) easy to use XMPP library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HXQ" = callPackage
@@ -6740,10 +7035,10 @@ self: {
array base haskeline haskell98 HTTP mtl regex-base regex-compat
template-haskell
];
- configureFlags = [ "-f-base3" "-f-sqlite" "-f-mysql" ];
homepage = "http://lambda.uta.edu/HXQ/";
description = "A Compiler from XQuery to Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HaLeX" = callPackage
@@ -6758,6 +7053,7 @@ self: {
homepage = "http://www.di.uminho.pt/~jas/Research/HaLeX/HaLeX.html";
description = "HaLeX enables modelling, manipulation and animation of regular languages";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HaMinitel" = callPackage
@@ -6767,6 +7063,7 @@ self: {
version = "0.1.0.0";
sha256 = "0q7fq5z0wrk2qg9n715033yp25dpl73g6iqkbvxbg2ahp9caq458";
buildDepends = [ base bytestring serialport stm ];
+ jailbreak = true;
homepage = "https://github.com/Zigazou/HaMinitel";
description = "An Haskell library to drive the french Minitel through a serial port";
license = stdenv.lib.licenses.gpl3;
@@ -6779,6 +7076,7 @@ self: {
version = "0.1.1.0";
sha256 = "1gxxhyidcn3lcvmbjby364cypk6xmmsv5qdd0m16d06688cl9mq7";
buildDepends = [ base template-haskell th-lift ];
+ jailbreak = true;
homepage = "https://github.com/sakana/HaPy";
description = "Haskell bindings for Python";
license = stdenv.lib.licenses.mit;
@@ -6811,9 +7109,11 @@ self: {
rosezipper semigroups silently Strafunski-StrategyLib stringbuilder
syb syz time transformers
];
+ jailbreak = true;
homepage = "https://github.com/RefactoringTools/HaRe/wiki";
description = "the Haskell Refactorer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HaTeX" = callPackage
@@ -6849,8 +7149,10 @@ self: {
base Cabal containers directory filepath ghc haddock
haskell-src-exts mtl parsec
];
+ jailbreak = true;
description = "This package is deprecated. From version 3, HaTeX does not need this anymore.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HaVSA" = callPackage
@@ -6867,8 +7169,10 @@ self: {
base HUnit logict QuickCheck test-framework test-framework-hunit
test-framework-quickcheck
];
+ jailbreak = true;
description = "An implementation of the Version Space Algebra learning framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HaXml" = callPackage
@@ -6885,7 +7189,6 @@ self: {
base bytestring containers directory filepath polyparse pretty
random
];
- configureFlags = [ "-f-bytestringinbase" "-fsplitbase" ];
homepage = "http://projects.haskell.org/HaXml/";
description = "Utilities for manipulating XML documents";
license = "LGPL";
@@ -6907,6 +7210,7 @@ self: {
homepage = "http://github.com/dmalikov/HaCh";
description = "Simple chat";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HackMail" = callPackage
@@ -6943,6 +7247,7 @@ self: {
homepage = "https://github.com/Pold87/Haggressive";
description = "Aggression analysis for Tweets on Twitter";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HandlerSocketClient" = callPackage
@@ -6972,7 +7277,6 @@ self: {
parsec transformers
];
testDepends = [ base hspec hxt ];
- configureFlags = [ "-f-buildexamples" "-fnetwork-uri" ];
homepage = "https://github.com/egonSchiele/HandsomeSoup";
description = "Work with HTML more easily in HXT";
license = stdenv.lib.licenses.bsd3;
@@ -6996,9 +7300,11 @@ self: {
ListLike mtl parallel parseargs process sox template-haskell
uu-parsinglib vector
];
+ jailbreak = true;
homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/HarmTrace";
description = "Harmony Analysis and Retrieval of Music";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HarmTrace-Base" = callPackage
@@ -7015,9 +7321,11 @@ self: {
testDepends = [
base binary containers ghc-prim ListLike QuickCheck uu-parsinglib
];
+ jailbreak = true;
homepage = "https://bitbucket.org/bash/harmtrace-base";
description = "Parsing and unambiguously representing musical chords";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HasGP" = callPackage
@@ -7031,9 +7339,11 @@ self: {
buildDepends = [
base haskell98 hmatrix hmatrix-special mtl parsec random
];
+ jailbreak = true;
homepage = "http://www.cl.cam.ac.uk/~sbh11/HasGP";
description = "A Haskell library for inference using Gaussian processes";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Haschoo" = callPackage
@@ -7049,6 +7359,7 @@ self: {
buildDepends = [
array base list-tries monad-loops mtl numbers parsec
];
+ jailbreak = true;
homepage = "http://iki.fi/matti.niemenmaa/misc-projects.html#haschoo";
description = "Minimalist R5RS Scheme interpreter";
license = stdenv.lib.licenses.bsd3;
@@ -7068,8 +7379,10 @@ self: {
base directory ghc haskell98 parsec process readline regex-compat
unix
];
+ jailbreak = true;
description = "Simple shell written in Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HaskellForMaths" = callPackage
@@ -7104,6 +7417,7 @@ self: {
buildDepends = [ base hmatrix random ];
description = "High Performance Neural Network in Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HaskellNet" = callPackage
@@ -7114,6 +7428,7 @@ self: {
pname = "HaskellNet";
version = "0.4.1";
sha256 = "1zm7h76vzn3amgz3c862a4531dvmw0f4rvdw3l2gafrlnwpmvay9";
+ editedCabalFile = "b935aab9d2a5b0d2c66c5d4db07cf81597fbdc10da42af04f690ccfe15bc0feb";
buildDepends = [
array base base64-string bytestring cryptohash mime-mail mtl
network old-time pretty text
@@ -7134,7 +7449,6 @@ self: {
buildDepends = [
base bytestring connection data-default HaskellNet network tls
];
- configureFlags = [ "-f-noupperbounds" ];
homepage = "https://github.com/dpwright/HaskellNet-SSL";
description = "Helpers to connect to SSL/TLS mail servers with HaskellNet";
license = stdenv.lib.licenses.bsd3;
@@ -7158,9 +7472,9 @@ self: {
random-shuffle test-framework test-framework-hunit
test-framework-quickcheck2 time
];
- configureFlags = [ "-f-threadscope" "-f-debug" ];
description = "A concurrent bittorrent client";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HaskellTutorials" = callPackage
@@ -7172,6 +7486,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base cmdargs text ];
+ jailbreak = true;
homepage = "https://github.com/mrLSD/HaskellTutorials";
description = "Haskell Tutorials by Evgeny Ukhanov";
license = stdenv.lib.licenses.mit;
@@ -7190,9 +7505,11 @@ self: {
buildDepends = [
base containers HGL hmatrix MonadRandom random Yampa
];
+ jailbreak = true;
homepage = "http://www.matthewhayden.co.uk";
description = "A reproduction of the Atari 1979 classic \"Asteroids\"";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Hawk" = callPackage
@@ -7212,8 +7529,10 @@ self: {
hslogger hslogger-template HTTP hxt json-b MonadCatchIO-mtl mtl
network regex-posix SHA template-haskell time utf8-string
];
+ jailbreak = true;
description = "Haskell Web Application Kit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Hayoo" = callPackage
@@ -7238,10 +7557,11 @@ self: {
MonadCatchIO-transformers mtl network old-time parsec process snap
snap-core snap-server tar text transformers xhtml-combinators zlib
];
- configureFlags = [ "-f-hashedindex" "-fhayoosnap4" ];
+ jailbreak = true;
homepage = "http://holumbus.fh-wedel.de";
description = "The Hayoo! search engine for Haskell API search on hackage";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Hclip" = callPackage
@@ -7272,6 +7592,7 @@ self: {
];
description = "Line oriented editor";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Hermes" = callPackage
@@ -7288,8 +7609,10 @@ self: {
old-time random random-shuffle RSA SHA2 stm syb time transformers
unamb yjtools
];
+ jailbreak = true;
description = "Message-based middleware layer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Hieroglyph" = callPackage
@@ -7305,9 +7628,11 @@ self: {
array base buster bytestring cairo colour containers glib GLUT gtk
gtkglext IfElse mtl OpenGL parallel pretty random
];
+ jailbreak = true;
homepage = "http://vis.renci.org/jeff/hieroglyph";
description = "Purely functional 2D graphics for visualization";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HiggsSet" = callPackage
@@ -7325,6 +7650,7 @@ self: {
homepage = "http://github.com/lpeterse/HiggsSet";
description = "A multi-index set with advanced query capabilites";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Hipmunk" = callPackage
@@ -7334,9 +7660,6 @@ self: {
version = "5.2.0.16";
sha256 = "0jnidzky0004xh1yzkcg41df21vbvqhk075d183jv6iwjiljsh3s";
buildDepends = [ array base containers StateVar transformers ];
- configureFlags = [
- "-f-system-chipmunk" "-f-debug" "-fsmall_base"
- ];
homepage = "https://github.com/meteficha/Hipmunk";
description = "A Haskell binding for Chipmunk";
license = "unknown";
@@ -7355,7 +7678,7 @@ self: {
buildDepends = [
base containers GLFW Hipmunk OpenGL StateVar transformers
];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
homepage = "https://github.com/meteficha/HipmunkPlayground";
description = "A playground for testing Hipmunk";
license = "unknown";
@@ -7386,6 +7709,7 @@ self: {
];
description = "An MPD client designed for a Home Theatre PC";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Hoed" = callPackage
@@ -7397,7 +7721,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base template-haskell ];
- configureFlags = [ "-f-buildexamples" ];
homepage = "http://maartenfaddegon.nl/pub";
description = "Debug anything without recompiling everything!";
license = stdenv.lib.licenses.bsd3;
@@ -7433,6 +7756,7 @@ self: {
homepage = "http://holumbus.fh-wedel.de";
description = "intra- and inter-program communication";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Holumbus-MapReduce" = callPackage
@@ -7455,6 +7779,7 @@ self: {
homepage = "http://holumbus.fh-wedel.de";
description = "a distributed MapReduce framework";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Holumbus-Searchengine" = callPackage
@@ -7476,6 +7801,7 @@ self: {
homepage = "http://holumbus.fh-wedel.de";
description = "A search and indexing engine";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Holumbus-Storage" = callPackage
@@ -7496,6 +7822,7 @@ self: {
homepage = "http://holumbus.fh-wedel.de";
description = "a distributed storage system";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Homology" = callPackage
@@ -7525,8 +7852,10 @@ self: {
unix-bytestring unordered-containers
];
testDepends = [ base process random ];
+ jailbreak = true;
description = "A Simple Key Value Store";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Hricket" = callPackage
@@ -7538,9 +7867,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers ];
+ jailbreak = true;
homepage = "http://github.com/Raynes/Hricket";
description = "A Cricket scoring application";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Hs2lib" = callPackage
@@ -7561,9 +7892,11 @@ self: {
];
testDepends = [ base directory filepath process ];
buildTools = [ cpphs ];
+ jailbreak = true;
homepage = "http://blog.zhox.com/category/hs2lib/";
description = "A Library and Preprocessor that makes it easier to create shared libs from Haskell programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HsASA" = callPackage
@@ -7587,6 +7920,7 @@ self: {
buildDepends = [ base ];
description = "Haskell binding to libharu (http://libharu.sourceforge.net/)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HsHyperEstraier" = callPackage
@@ -7601,9 +7935,11 @@ self: {
base base-unicode-symbols bytestring network text
];
pkgconfigDepends = [ hyperestraier qdbm ];
+ jailbreak = true;
homepage = "http://cielonegro.org/HsHyperEstraier.html";
description = "HyperEstraier binding for Haskell";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { hyperestraier = null; qdbm = null;};
"HsJudy" = callPackage
@@ -7617,6 +7953,7 @@ self: {
homepage = "http://www.pugscode.org/";
description = "Judy bindings, and some nice APIs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { Judy = null;};
"HsOpenSSL" = callPackage
@@ -7634,7 +7971,6 @@ self: {
base bytestring HUnit test-framework test-framework-hunit
];
extraLibraries = [ openssl ];
- configureFlags = [ "-ffast-bignum" ];
homepage = "https://github.com/phonohawk/HsOpenSSL";
description = "Partial OpenSSL binding for Haskell";
license = stdenv.lib.licenses.publicDomain;
@@ -7649,6 +7985,7 @@ self: {
buildDepends = [ base bytestring HsSyck pretty pugs-DrIFT ];
description = "Haskell integration with Parrot virtual machine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HsPerl5" = callPackage
@@ -7660,6 +7997,7 @@ self: {
buildDepends = [ base ];
description = "Haskell interface to embedded Perl 5 interpreter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HsSVN" = callPackage
@@ -7672,6 +8010,7 @@ self: {
homepage = "https://github.com/phonohawk/HsSVN";
description = "Partial Subversion (SVN) binding for Haskell";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HsSyck" = callPackage
@@ -7717,6 +8056,7 @@ self: {
homepage = "http://github.com/rukav/Hsed";
description = "Stream Editor in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Hsmtlib" = callPackage
@@ -7731,9 +8071,11 @@ self: {
buildDepends = [
base containers parsec pretty process smtLib transformers
];
+ jailbreak = true;
homepage = "https://github.com/MfesGA/Hsmtlib";
description = "Haskell library for easy interaction with SMT-LIB 2 compliant solvers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"HueAPI" = callPackage
@@ -7773,8 +8115,10 @@ self: {
version = "0.1";
sha256 = "1p4h2hxwzp0bxkzh864vkqbwychi0j2c3rqck9vk5kfax5i1jfz8";
buildDepends = [ base containers directory ];
+ jailbreak = true;
description = "Indexable, serializable form of Data.Dynamic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"IFS" = callPackage
@@ -7786,7 +8130,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base bytestring containers random ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.alpheccar.org";
description = "Iterated Function System generation for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -7806,10 +8149,10 @@ self: {
base containers directory haskell98 HaXml polyparse pretty process
wx wxcore
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://haskell.di.uminho.pt/jmvilaca/INblobs/";
description = "Editor and interpreter for Interaction Nets";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"IOR" = callPackage
@@ -7821,6 +8164,7 @@ self: {
buildDepends = [ base mtl ];
description = "Region based resource management for the IO monad";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"IORefCAS" = callPackage
@@ -7836,6 +8180,7 @@ self: {
homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki";
description = "Atomic compare and swap for IORefs and STRefs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"IOSpec" = callPackage
@@ -7875,6 +8220,7 @@ self: {
version = "0.1.2";
sha256 = "0ryb2q5xfddcx2qg019jajac7xvaw2ci5wi094gbrqhhflj7wc8n";
buildDepends = [ array base GlomeVec ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/IcoGrid";
description = "Library for generating grids of hexagons and pentagons mapped to a sphere";
license = "GPL";
@@ -7892,15 +8238,15 @@ self: {
}) {};
"Imlib" = callPackage
- ({ mkDerivation, array, base, Imlib2, X11 }:
+ ({ mkDerivation, array, base, imlib2, X11 }:
mkDerivation {
pname = "Imlib";
version = "0.1.2";
sha256 = "075x1vcrxdwknzbad05l08i5c79svf714yvv6990ffvsfykiilry";
buildDepends = [ array base X11 ];
- extraLibraries = [ Imlib2 ];
+ extraLibraries = [ imlib2 ];
license = stdenv.lib.licenses.bsd3;
- }) { Imlib2 = null;};
+ }) { inherit (pkgs) imlib2;};
"ImperativeHaskell" = callPackage
({ mkDerivation, base, mtl, template-haskell }:
@@ -7912,6 +8258,7 @@ self: {
homepage = "https://github.com/mmirman/ImperativeHaskell";
description = "A library for writing Imperative style haskell";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"IndentParser" = callPackage
@@ -7947,6 +8294,7 @@ self: {
buildDepends = [ base haskell98 ];
description = "liftA2 for infix operators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Interpolation" = callPackage
@@ -7993,6 +8341,7 @@ self: {
buildDepends = [ base random time ];
description = "Haskell FRP binding to the Irrlicht game engine";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"IsNull" = callPackage
@@ -8028,9 +8377,9 @@ self: {
aeson attoparsec base bytestring bytestring-trie containers failure
hjson json JSONb parsec text vector
];
- configureFlags = [ "-fsmall_base" ];
description = "A combinator library on top of a generalised JSON type";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"JSON-Combinator-Examples" = callPackage
@@ -8040,9 +8389,9 @@ self: {
version = "0.0.1";
sha256 = "1s5grfgnklnwh55yn5mlg2ibdm7mx2i7hwqs7649gkapda054ywg";
buildDepends = [ base bytestring json JSON-Combinator JSONb ];
- configureFlags = [ "-fsmall_base" ];
description = "Example uses of the JSON-Combinator library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"JSONb" = callPackage
@@ -8059,10 +8408,10 @@ self: {
attoparsec base bytestring bytestring-nums bytestring-trie
containers utf8-string
];
- configureFlags = [ "-f-cli" ];
homepage = "http://github.com/solidsnack/JSONb/";
description = "JSON parser that uses byte strings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"JYU-Utils" = callPackage
@@ -8080,6 +8429,7 @@ self: {
lazysmallcheck mtl mwc-random parallel process QuickCheck random
stm template-haskell unix zlib
];
+ jailbreak = true;
description = "Some utility functions for JYU projects";
license = stdenv.lib.licenses.mit;
}) {};
@@ -8094,6 +8444,7 @@ self: {
homepage = "http://www.renickbell.net/doku.php?id=jackminimix";
description = "control JackMiniMix";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Javasf" = callPackage
@@ -8106,9 +8457,9 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base binary bytestring language-java-classfile ];
- configureFlags = [ "-fsmall_base" ];
description = "A utility to print the SourceFile attribute of one or more Java class files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Javav" = callPackage
@@ -8120,9 +8471,9 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-fsmall_base" ];
description = "A utility to print the target version of Java class files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"JsContracts" = callPackage
@@ -8139,9 +8490,11 @@ self: {
base containers directory filepath mtl parsec pretty syb WebBits
WebBits-Html
];
+ jailbreak = true;
homepage = "http://www.cs.brown.edu/research/plt/";
description = "Design-by-contract for JavaScript";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"JsonGrammar" = callPackage
@@ -8163,6 +8516,7 @@ self: {
aeson base HUnit language-typescript stack-prism test-framework
test-framework-hunit text
];
+ jailbreak = true;
homepage = "https://github.com/MedeaMelana/JsonGrammar2";
description = "Combinators for bidirectional JSON parsing";
license = stdenv.lib.licenses.bsd3;
@@ -8180,7 +8534,6 @@ self: {
base binary bytestring containers deepseq mtl primitive
transformers vector zlib
];
- configureFlags = [ "-f-mmap" ];
homepage = "https://github.com/Twinside/Juicy.Pixels";
description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)";
license = stdenv.lib.licenses.bsd3;
@@ -8233,6 +8586,7 @@ self: {
aeson base binary bytestring conduit data-default directory
filepath mtl network resourcet
];
+ jailbreak = true;
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -8247,7 +8601,9 @@ self: {
buildDepends = [
base bytestring conduit directory filepath JunkDB mtl resourcet
];
+ jailbreak = true;
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"JunkDB-driver-hashtables" = callPackage
@@ -8261,6 +8617,7 @@ self: {
buildDepends = [
base bytestring conduit hashable hashtables JunkDB mtl resourcet
];
+ jailbreak = true;
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -8314,9 +8671,11 @@ self: {
buildDepends = [
base base64-bytestring bytestring directory mime-types network text
];
+ jailbreak = true;
homepage = "https://github.com/Hamcha/Ketchup";
description = "A super small web framework for those who don't like big and fancy codebases";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"KiCS" = callPackage
@@ -8338,6 +8697,7 @@ self: {
homepage = "http://www.curry-language.org";
description = "A compiler from Curry to Haskell";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { kics = null;};
"KiCS-debugger" = callPackage
@@ -8354,9 +8714,11 @@ self: {
base containers curry-base directory filepath haskell-src haskell98
KiCS KiCS-prophecy mtl readline syb
];
+ jailbreak = true;
homepage = "http://curry-language.org";
description = "debug features for kics";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"KiCS-prophecy" = callPackage
@@ -8368,9 +8730,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base filepath KiCS ];
+ jailbreak = true;
homepage = "http://curry-language.org";
description = "a transformation used by the kics debugger";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Kleislify" = callPackage
@@ -8391,9 +8755,11 @@ self: {
version = "0.1.0.0";
sha256 = "113jxbaw8b17j91aakxli3r3zdvnx3gvf2m57sx5d7mfk2qx28r6";
buildDepends = [ base containers parsec ];
+ jailbreak = true;
homepage = "http://www.gkayaalp.com/p/konf.html";
description = "A configuration language and a parser";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"KyotoCabinet" = callPackage
@@ -8409,6 +8775,7 @@ self: {
homepage = "https://code.google.com/p/kyotocabinet-hs/";
description = "Kyoto Cabinet DB bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) kyotocabinet;};
"L-seed" = callPackage
@@ -8424,14 +8791,15 @@ self: {
buildDepends = [
base cairo containers gtk mtl old-time parsec random
];
- configureFlags = [ "-frenderercairo" "-f-webtools" "-f-database" ];
+ jailbreak = true;
homepage = "http://www.entropia.de/wiki/L-seed";
description = "Plant growing programming game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"LDAP" = callPackage
- ({ mkDerivation, base, lber, ldap }:
+ ({ mkDerivation, base, lber, openldap }:
mkDerivation {
pname = "LDAP";
version = "0.6.10";
@@ -8439,12 +8807,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- extraLibraries = [ lber ldap ];
- configureFlags = [ "-f-buildtests" ];
+ extraLibraries = [ lber openldap ];
homepage = "https://github.com/ezyang/ldap-haskell";
description = "Haskell binding for C LDAP API";
license = stdenv.lib.licenses.bsd3;
- }) { lber = null; ldap = null;};
+ }) { lber = null; inherit (pkgs) openldap;};
"LRU" = callPackage
({ mkDerivation, base, containers, QuickCheck }:
@@ -8515,12 +8882,10 @@ self: {
vector-binary-instances zlib
];
pkgconfigDepends = [ gtk ];
- configureFlags = [
- "-frelease" "-f-expose_internal" "-f-curses" "-f-vty"
- ];
homepage = "http://github.com/LambdaHack/LambdaHack";
description = "A game engine library for roguelike dungeon crawlers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtk;};
"LambdaINet" = callPackage
@@ -8553,6 +8918,7 @@ self: {
buildDepends = [
base binary bytestring hmatrix random random-shuffle split
];
+ jailbreak = true;
description = "A configurable and extensible neural network library";
license = stdenv.lib.licenses.mit;
}) {};
@@ -8580,6 +8946,7 @@ self: {
homepage = "http://github.com/jfischoff/LambdaPrettyQuote";
description = "Quasiquoter, and Arbitrary helpers for the lambda calculus";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"LambdaShell" = callPackage
@@ -8598,6 +8965,7 @@ self: {
homepage = "http://rwd.rdockins.name/lambda/home/";
description = "Simple shell for evaluating lambda expressions";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"LargeCardinalHierarchy" = callPackage
@@ -8607,6 +8975,7 @@ self: {
version = "0.0.1";
sha256 = "0agq2593h5yb9r3jqnycis9fdizwij3and61ljc4prnhhyxv48g2";
buildDepends = [ base ];
+ jailbreak = true;
description = "A transfinite cardinal arithmetic library including all known large cardinals";
license = "unknown";
}) {};
@@ -8623,10 +8992,10 @@ self: {
base bytestring containers directory filemanip filepath process
pureMD5 SHA zip-archive
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.google.com/p/lastik";
description = "A library for compiling programs in a variety of languages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Lattices" = callPackage
@@ -8655,6 +9024,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base directory filepath unix ];
+ jailbreak = true;
homepage = "https://github.com/AtticHacker/lazyvault";
description = "A simple sandboxing tool for Haskell packages";
license = stdenv.lib.licenses.gpl3;
@@ -8669,9 +9039,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base directory random SDL SDL-ttf ];
+ jailbreak = true;
homepage = "http://quasimal.com/projects/level_0.html";
description = "A Snake II clone written using SDL";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"LibClang" = callPackage
@@ -8684,6 +9056,7 @@ self: {
homepage = "https://github.com/chetant/LibClang/issues";
description = "Haskell bindings for libclang (a C++ parsing library)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"LibZip" = callPackage
@@ -8727,6 +9100,7 @@ self: {
homepage = "http://github.com/rukav/LinearSplit";
description = "Partition the sequence of items to the subsequences in the order given";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"LinkChecker" = callPackage
@@ -8745,6 +9119,7 @@ self: {
homepage = "http://janzzstimmpfle.de/~jens/software/LinkChecker/";
description = "Check a bunch of local html files for broken links";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"List" = callPackage
@@ -8753,6 +9128,7 @@ self: {
pname = "List";
version = "0.5.1";
sha256 = "1hgkal8jh035bs0z6z8i899dc0888fhdx8940y27aaxxbmlzfy1p";
+ editedCabalFile = "0fce39feed0d5ae7ea041b886d5440e288b705212b1869beec6419b9c0ca9982";
buildDepends = [ base transformers ];
homepage = "http://github.com/yairchu/generator/tree";
description = "List monad transformer and class";
@@ -8846,17 +9222,16 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2
test-framework-smallcheck time transformers uuid void
];
- configureFlags = [
- "-f-tutorial" "-f-examples" "-f-pattern-warnings" "-f-warnings"
- ];
+ jailbreak = true;
description = "a parallel implementation of logic programming using distributed tree exploration";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"LogicGrowsOnTrees-MPI" = callPackage
({ mkDerivation, base, bytestring, cereal, cmdtheline, containers
, data-ivar, derive, hslogger, hslogger-template, LogicGrowsOnTrees
- , MonadCatchIO-transformers, mpi, stm, transformers
+ , MonadCatchIO-transformers, openmpi, stm, transformers
}:
mkDerivation {
pname = "LogicGrowsOnTrees-MPI";
@@ -8869,11 +9244,11 @@ self: {
hslogger hslogger-template LogicGrowsOnTrees
MonadCatchIO-transformers stm transformers
];
- extraLibraries = [ mpi ];
- configureFlags = [ "-f-tests" "-f-examples" "-f-warnings" ];
+ extraLibraries = [ openmpi ];
description = "an adapter for LogicGrowsOnTrees that uses MPI";
license = stdenv.lib.licenses.bsd3;
- }) { mpi = null;};
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) { inherit (pkgs) openmpi;};
"LogicGrowsOnTrees-network" = callPackage
({ mkDerivation, base, cereal, cmdtheline, composition, containers
@@ -8896,9 +9271,10 @@ self: {
base hslogger hslogger-template HUnit LogicGrowsOnTrees network
random stm test-framework test-framework-hunit transformers
];
- configureFlags = [ "-f-examples" "-f-warnings" ];
+ jailbreak = true;
description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"LogicGrowsOnTrees-processes" = callPackage
@@ -8922,11 +9298,10 @@ self: {
base cereal hslogger hslogger-template HUnit LogicGrowsOnTrees
random test-framework test-framework-hunit transformers
];
- configureFlags = [
- "-f-examples" "-f-pattern-warnings" "-f-warnings"
- ];
+ jailbreak = true;
description = "an adapter for LogicGrowsOnTrees that uses multiple processes for parallelism";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"LslPlus" = callPackage
@@ -8945,9 +9320,11 @@ self: {
mtl network old-time parsec pureMD5 random syb template-haskell
utf8-string
];
+ jailbreak = true;
homepage = "http:/lslplus.sourceforge.net/";
description = "An execution and testing framework for the Linden Scripting Language (LSL)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Lucu" = callPackage
@@ -8966,10 +9343,11 @@ self: {
directory filepath haskell-src HsOpenSSL hxt mtl network stm time
time-http unix zlib
];
- configureFlags = [ "-fbuild-lucu-implant-file" ];
+ jailbreak = true;
homepage = "http://cielonegro.org/Lucu.html";
description = "HTTP Daemonic Library";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MC-Fold-DP" = callPackage
@@ -8985,10 +9363,10 @@ self: {
buildDepends = [
base Biobase cmdargs PrimitiveArray split tuple vector
];
- configureFlags = [ "-f-fastbuild" ];
homepage = "http://www.tbi.univie.ac.at/software/mcfolddp/";
description = "Folding algorithm based on nucleotide cyclic motifs";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MFlow" = callPackage
@@ -9023,6 +9401,7 @@ self: {
version = "0.3.0.0";
sha256 = "0nlj914ahipyfqv1l7qr66pa0a8g4g6ks6mipc38z5f1jy0kjrva";
buildDepends = [ base transformers ];
+ jailbreak = true;
homepage = "https://github.com/DanBurton/MHask#readme";
description = "The category of monads";
license = stdenv.lib.licenses.bsd3;
@@ -9042,10 +9421,10 @@ self: {
haskell-src html mtl network old-time pretty random syb
template-haskell
];
- configureFlags = [ "-freadfile" "-fghc7" "-fghcapi" ];
homepage = "http://nautilus.cs.miyazaki-u.ac.jp/~skata/MagicHaskeller.html";
description = "Automatic inductive functional programmer by systematic search";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MaybeT" = callPackage
@@ -9066,8 +9445,10 @@ self: {
version = "0.2.0.1";
sha256 = "034v9n6ldjn1hsv4rphvysbykm8x0jqa2prbw7k28fkp6m30j74x";
buildDepends = [ base monads-tf transformers ];
+ jailbreak = true;
description = "MaybeT monad transformer compatible with monads-tf (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MaybeT-transformers" = callPackage
@@ -9077,6 +9458,7 @@ self: {
version = "0.2";
sha256 = "189w8dpxyq7gksca6k08hb4vpanpz06c99akgzpcpjy0i7k22ily";
buildDepends = [ base monads-fd transformers ];
+ jailbreak = true;
description = "MaybeT monad transformer using transformers instead of mtl";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -9106,6 +9488,7 @@ self: {
version = "0.1";
sha256 = "0rnbg7w3qc3xsbzpw5is7w7qdjl2kqbr1acc744aggwlibazl59w";
buildDepends = [ base vector ];
+ jailbreak = true;
description = "Mean shift algorithm";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -9117,9 +9500,10 @@ self: {
version = "0.0.2";
sha256 = "1vy8ykjy9cpv661byqv21775zbyciqx2hf77c1nl58nn34x0s2ds";
buildDepends = [ base ];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
description = "A library for units of measurement";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MemoTrie" = callPackage
@@ -9145,6 +9529,7 @@ self: {
buildDepends = [
base convertible hashtables HDBC HDBC-odbc mtl template-haskell
];
+ jailbreak = true;
description = "Statically checked database access";
license = "LGPL";
}) {};
@@ -9158,6 +9543,7 @@ self: {
buildDepends = [ base containers stringtable-atom ];
description = "A meta-object system for Haskell based on Perl 6";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Metrics" = callPackage
@@ -9170,6 +9556,7 @@ self: {
homepage = "http://github.com/benhamner/Metrics/";
description = "Evaluation metrics commonly used in supervised machine learning";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Mhailist" = callPackage
@@ -9186,9 +9573,10 @@ self: {
base binary bytestring directory filepath haskell98 mtl old-locale
process time
];
- configureFlags = [ "-f-warnings" "-f-test" ];
+ jailbreak = true;
description = "Haskell mailing list manager";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MiniAgda" = callPackage
@@ -9205,9 +9593,11 @@ self: {
array base containers haskell-src-exts mtl pretty
];
buildTools = [ alex happy ];
+ jailbreak = true;
homepage = "http://www.tcs.ifi.lmu.de/~abel/miniagda/";
description = "A toy dependently typed programming language with type-based termination";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MissingH" = callPackage
@@ -9229,7 +9619,6 @@ self: {
hslogger HUnit mtl network old-locale old-time parsec process
QuickCheck random regex-compat testpack time unix
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://software.complete.org/missingh";
description = "Large utility library";
license = stdenv.lib.licenses.bsd3;
@@ -9262,6 +9651,7 @@ self: {
homepage = "http://github.com/softmechanics/missingpy";
description = "Haskell interface to Python";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Modulo" = callPackage
@@ -9299,6 +9689,7 @@ self: {
buildDepends = [
base extensible-exceptions MonadCatchIO-transformers
];
+ jailbreak = true;
homepage = "http://darcsden.com/jcpetruzza/MonadCatchIO-mtl";
description = "Monad-transformer version of the Control.Exception module";
license = stdenv.lib.licenses.bsd3;
@@ -9311,8 +9702,10 @@ self: {
version = "0.1";
sha256 = "0jfq5v1jigxl9mnnvpqph9ayq840s9nyb5srym04mbicri4gbjan";
buildDepends = [ base MonadCatchIO-mtl mtl primitive ];
+ jailbreak = true;
description = "Polymorphic combinators for working with foreign functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MonadCatchIO-transformers" = callPackage
@@ -9341,8 +9734,10 @@ self: {
buildDepends = [
base MonadCatchIO-transformers primitive transformers
];
+ jailbreak = true;
description = "Polymorphic combinators for working with foreign functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MonadLab" = callPackage
@@ -9358,6 +9753,7 @@ self: {
homepage = "http://monadgarden.cs.missouri.edu/MonadLab";
description = "Automatically generate layered monads";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MonadPrompt" = callPackage
@@ -9423,6 +9819,7 @@ self: {
homepage = "https://github.com/fumieval/Monaris/";
description = "A simple tetris clone";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Monatron" = callPackage
@@ -9457,6 +9854,7 @@ self: {
buildDepends = [ base containers haskell98 mtl ];
description = "Symbolic computations in strict monoidal categories with LaTeX output";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"MorseCode" = callPackage
@@ -9554,7 +9952,6 @@ self: {
version = "0.1";
sha256 = "169mgcyls0dsifnbp615r4i3g64ga2vbczsiv4aq17d1nma8sw19";
buildDepends = [ array base ];
- configureFlags = [ "-f-debug" "-fsplitbase" ];
description = "Munkres' assignment algorithm (hungarian method)";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -9585,6 +9982,7 @@ self: {
http-types monad-control old-locale resourcet text time
transformers vector xml-conduit xml-types
];
+ jailbreak = true;
homepage = "http://floss.scru.org/hMusicBrainz";
description = "interface to MusicBrainz XML2 web service";
license = stdenv.lib.licenses.gpl3;
@@ -9613,6 +10011,7 @@ self: {
buildDepends = [ base HCL HTTP network regex-compat ];
description = "Simple application for calculating n-grams using Google";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"NTRU" = callPackage
@@ -9627,6 +10026,7 @@ self: {
arithmoi base bytestring containers crypto-api polynomial random
SHA split
];
+ jailbreak = true;
description = "NTRU Cryptography";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -9653,6 +10053,7 @@ self: {
homepage = "http://mitar.tnode.com";
description = "A Haskell interface to Lego Mindstorms NXT";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { bluetooth = null;};
"NXTDSL" = callPackage
@@ -9672,6 +10073,7 @@ self: {
homepage = "https://github.com/agrafix/legoDSL";
description = "Generate NXC Code from DSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"NanoProlog" = callPackage
@@ -9683,6 +10085,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers ListLike uu-parsinglib ];
+ jailbreak = true;
description = "Very small interpreter for a Prolog-like language";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -9712,9 +10115,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring QuickCheck strict ];
- configureFlags = [
- "-f-coverage" "-f-test" "-f-no-lib" "-f-driver" "-f-base3"
- ];
homepage = "http://github.com/joachifm/natsort";
description = "Natural sorting for strings";
license = stdenv.lib.licenses.bsd3;
@@ -9745,7 +10145,7 @@ self: {
}) {};
"NetSNMP" = callPackage
- ({ mkDerivation, base, bytestring, HUnit, netsnmp, process
+ ({ mkDerivation, base, bytestring, HUnit, net_snmp, process
, utf8-string
}:
mkDerivation {
@@ -9754,11 +10154,13 @@ self: {
sha256 = "17lmxwcc3z69dgxipi776m2wpwa1lz84w9v2wirw08wb9fba2gdr";
buildDepends = [ base bytestring utf8-string ];
testDepends = [ base bytestring HUnit process utf8-string ];
- extraLibraries = [ netsnmp ];
+ extraLibraries = [ net_snmp ];
+ jailbreak = true;
homepage = "https://github.com/ptek/netsnmp";
description = "Bindings for net-snmp's C API for clients";
license = stdenv.lib.licenses.bsd3;
- }) { netsnmp = null;};
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) { inherit (pkgs) net_snmp;};
"Network-NineP" = callPackage
({ mkDerivation, base, binary, bytestring, containers, convertible
@@ -9775,8 +10177,10 @@ self: {
base binary bytestring containers convertible monad-loops mstate
mtl network NineP regex-posix stateref transformers
];
+ jailbreak = true;
description = "High-level abstraction over 9P protocol";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"NewBinary" = callPackage
@@ -9786,6 +10190,7 @@ self: {
version = "0.2.1";
sha256 = "0cp71hkx8cccx7jxf5qw1bxdylcc56v68mvjp0dn9hkh1idxplzq";
buildDepends = [ array base integer ];
+ jailbreak = true;
description = "A binary I/O library";
license = "unknown";
broken = true;
@@ -9798,7 +10203,6 @@ self: {
version = "0.0.2.1";
sha256 = "1k6qdp4zmqjl2f6cqy1zzzl6ncb2m9r0qgh4c24i2h5kkxmm3cab";
buildDepends = [ base binary bytestring ];
- configureFlags = [ "-f-bytestring-in-base" ];
homepage = "http://9ph.googlecode.com";
description = "9P2000 in pure Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -9818,9 +10222,11 @@ self: {
base binary bytestring containers filepath gloss network
networked-game random
];
+ jailbreak = true;
homepage = "http://github.com/glguy/ninjas";
description = "Ninja game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"NoSlow" = callPackage
@@ -9838,12 +10244,11 @@ self: {
array base containers criterion dph-base dph-prim-seq statistics
storablevector template-haskell uvector vector
];
- configureFlags = [
- "-fstorablevector" "-fuvector" "-fvector" "-fdph-prim-seq"
- ];
+ jailbreak = true;
homepage = "http://code.haskell.org/NoSlow";
description = "Microbenchmarks for various array libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"NoTrace" = callPackage
@@ -9854,6 +10259,7 @@ self: {
sha256 = "053w0j90sf16by9pqllgjxy6r57vzlq33fgwz4ywjn6bypw6009d";
buildDepends = [ base ];
testDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/CindyLinz/Haskell-NoTrace";
description = "Remove all the functions come from Debug.Trace after debugging";
license = stdenv.lib.licenses.mit;
@@ -9885,6 +10291,7 @@ self: {
base directory exceptions filepath hint-server mtl network
Nomyx-Core Nomyx-Language Nomyx-Web safe stm time
];
+ jailbreak = true;
homepage = "http://www.nomyx.net";
description = "A Nomic game in haskell";
license = stdenv.lib.licenses.bsd3;
@@ -9911,6 +10318,7 @@ self: {
Nomyx-Language old-locale random safe safecopy stm tar
template-haskell temporary text time unix
];
+ jailbreak = true;
homepage = "http://www.nomyx.net";
description = "A Nomic game in haskell";
license = stdenv.lib.licenses.bsd3;
@@ -9930,6 +10338,7 @@ self: {
DebugTraceHelpers ghc mtl old-locale random safe time
time-recurrence
];
+ jailbreak = true;
homepage = "http://www.nomyx.net";
description = "Language to express rules for Nomic";
license = stdenv.lib.licenses.bsd3;
@@ -9949,6 +10358,7 @@ self: {
];
description = "Language to express rules for Nomic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Nomyx-Web" = callPackage
@@ -9970,6 +10380,7 @@ self: {
reform-happstack safe split stm text time web-routes
web-routes-happstack web-routes-regular web-routes-th
];
+ jailbreak = true;
homepage = "http://www.nomyx.net";
description = "Web gui for Nomyx";
license = stdenv.lib.licenses.bsd3;
@@ -9998,10 +10409,10 @@ self: {
base category-extras QuickCheck Semigroup test-framework
test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.google.com/p/nonempty/";
description = "A list with a length of at least one";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"NumInstances" = callPackage
@@ -10023,7 +10434,6 @@ self: {
version = "0.0.0.1";
sha256 = "17ca34hxaz9xk3ykkzp14n7wb31aiza12859k3rmvwhnq4j89jqs";
buildDepends = [ base binary bytestring ];
- configureFlags = [ "-fsmall_base" ];
description = "Num, Enum, Eq, Integral, Ord, Real, and Show instances for Lazy ByteStrings";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -10065,9 +10475,11 @@ self: {
buildDepends = [
ADPfusion base ghc-prim mtl primitive PrimitiveArray vector
];
+ jailbreak = true;
homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion";
description = "Nussinov78 using the ADPfusion library";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Nutri" = callPackage
@@ -10077,6 +10489,7 @@ self: {
version = "0.1";
sha256 = "1m7qx5zydz5jpk6a55k7rzchlwmkd91gsiqmn26qqn50ab3di35j";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/frosch03/Nutri";
description = "A little library to calculate nutrition values of food items";
license = stdenv.lib.licenses.publicDomain;
@@ -10092,6 +10505,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/OGL";
description = "A context aware binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"OSM" = callPackage
@@ -10105,10 +10519,10 @@ self: {
buildDepends = [
base comonad-transformers containers data-lens hxt newtype
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/geo-osm";
description = "Parse OpenStreetMap files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"OTP" = callPackage
@@ -10149,6 +10563,7 @@ self: {
winspool
];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { comctl32 = null; comdlg32 = null; gdi32 = null;
kernel32 = null; ole32 = null; shell32 = null; user32 = null;
winmm = null; winspool = null;};
@@ -10178,9 +10593,11 @@ self: {
base containers cuda language-c-quote mainland-pretty mtl
mwc-random process rdtsc text value-supply vector
];
+ jailbreak = true;
homepage = "https://github.com/svenssonjoel/Obsidian";
description = "Embedded language for GPU Programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Octree" = callPackage
@@ -10204,6 +10621,7 @@ self: {
sha256 = "1c4xbfkikyn1jh3qz0ycxzmx0zqfg5gliafb764942dvd851hljv";
buildDepends = [ base ];
testDepends = [ base QuickCheck ];
+ jailbreak = true;
homepage = "http://www.gekkou.co.uk/";
description = "Provides a wrapper for deriving word types with fewer bits";
license = stdenv.lib.licenses.bsd3;
@@ -10217,9 +10635,9 @@ self: {
sha256 = "05dax2r7rrdbsvxszxn13xcf24zq87xq8scxzvl2ccr2y29n0f5j";
buildDepends = [ base containers ];
testDepends = [ base containers hsc2hs HUnit ];
- configureFlags = [ "-f-useinstalledomega" ];
description = "Integer sets and relations using Presburger arithmetic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"OneTuple" = callPackage
@@ -10278,7 +10696,6 @@ self: {
sha256 = "0m29p6mm87lbx1507n9w4ara4l1xva8j42xjp0771ngx4sbphn2y";
buildDepends = [ base OpenGL ];
extraLibraries = [ openal ];
- configureFlags = [ "-fusenativewindowslibraries" ];
homepage = "https://github.com/haskell-openal/ALUT";
description = "A binding to the OpenAL cross-platform 3D audio API";
license = stdenv.lib.licenses.bsd3;
@@ -10294,9 +10711,11 @@ self: {
testDepends = [ base QuickCheck ];
buildTools = [ c2hs ];
extraLibraries = [ OpenCL ];
+ jailbreak = true;
homepage = "https://github.com/IFCA/opencl";
description = "Haskell high-level wrapper for OpenCL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { OpenCL = null;};
"OpenCLRaw" = callPackage
@@ -10306,9 +10725,11 @@ self: {
version = "1.0.1001";
sha256 = "1a9nlrmxp3jwc3hbj79xm35aypfby04qy01fk4vyrp19diiinl07";
buildDepends = [ base bytestring mtl ];
+ jailbreak = true;
homepage = "http://vis.renci.org/jeff/opencl";
description = "The OpenCL Standard for heterogenous data-parallel computing";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"OpenCLWrappers" = callPackage
@@ -10318,7 +10739,6 @@ self: {
version = "0.1.0.3";
sha256 = "0xlm26jksp4jf1dhkpg4708r1ak5mjdc5x5fjp4fhizmzlk3348s";
buildDepends = [ base bytestring mtl ];
- configureFlags = [ "-f-link" ];
homepage = "https://github.com/jkarlson/OpenCLWrappers";
description = "The OpenCL Standard for heterogenous data-parallel computing";
license = stdenv.lib.licenses.bsd3;
@@ -10348,6 +10768,7 @@ self: {
buildDepends = [ base checkers haskell98 OpenGL QuickCheck ];
description = "Quickcheck instances for various data structures";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"OpenGLRaw" = callPackage
@@ -10358,9 +10779,6 @@ self: {
sha256 = "0hnsmijgvy04d02d0gwk4bl6imhlpwgdcsp1livvca59hzc7r8m3";
buildDepends = [ base ];
extraLibraries = [ mesa ];
- configureFlags = [
- "-fuseglxgetprocaddress" "-fusenativewindowslibraries"
- ];
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A raw binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
@@ -10373,6 +10791,7 @@ self: {
version = "1.2.0.1";
sha256 = "1v848qhjksiwc8617fif4dbvw40xfnz39fpkcsv52mkh66flnv9j";
buildDepends = [ OpenGLRaw ];
+ jailbreak = true;
description = "The intersection of OpenGL 2.1 and OpenGL 3.1 Core";
license = "unknown";
}) {};
@@ -10405,6 +10824,7 @@ self: {
homepage = "http://code.google.com/p/copperbox/";
description = "OpenVG (ShivaVG-0.2.1) binding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"OpenVGRaw" = callPackage
@@ -10417,6 +10837,7 @@ self: {
homepage = "http://code.google.com/p/copperbox/";
description = "Raw binding to OpenVG (ShivaVG-0.2.1 implementation).";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Operads" = callPackage
@@ -10426,10 +10847,11 @@ self: {
version = "1.0";
sha256 = "1b880lrzdxww3j19zspnj49ifsn89n0ac1h5xf7nn83847k8q2qk";
buildDepends = [ array base containers mtl ];
- configureFlags = [ "-f-useoldmap" "-f-mapoperad" ];
+ jailbreak = true;
homepage = "http://math.stanford.edu/~mik/operads";
description = "Groebner basis computation for Operads";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"OptDir" = callPackage
@@ -10455,6 +10877,7 @@ self: {
base containers haskell-src-exts haskell-src-meta mtl split syb
template-haskell
];
+ jailbreak = true;
description = "A quasiquoter for or-patterns";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -10533,7 +10956,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring containers ];
- configureFlags = [ "-f-tests" ];
homepage = "http://www.github.com/rotskoff";
description = "A library for analysis of 3-D protein coordinates";
license = stdenv.lib.licenses.gpl3;
@@ -10560,7 +10982,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers mtl network network-uri xml ];
- configureFlags = [ "-fnetwork-uri" "-futf8cgi" "-f-utf8terminal" ];
homepage = "http://msakai.jp/hiki/?hsPTQ";
description = "An implementation of Montague's PTQ";
license = "LGPL";
@@ -10585,6 +11006,7 @@ self: {
];
description = "Page-oriented extraction and composition library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Paillier" = callPackage
@@ -10601,6 +11023,7 @@ self: {
base crypto-numbers crypto-random HUnit QuickCheck test-framework
test-framework-quickcheck2 test-framework-th
];
+ jailbreak = true;
description = "a simple Paillier cryptosystem";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -10619,8 +11042,10 @@ self: {
Agda base containers directory filepath mtl pandoc pandoc-types
QuickCheck text time xhtml
];
+ jailbreak = true;
description = "Pandoc support for literate Agda";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Paraiso" = callPackage
@@ -10644,10 +11069,10 @@ self: {
random test-framework test-framework-hunit
test-framework-quickcheck2 text typelevel-tensor vector
];
- configureFlags = [ "-ftest" ];
homepage = "http://www.paraiso-lang.org/wiki/index.php/Main_Page";
description = "a code generator for partial differential equations solvers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Parry" = callPackage
@@ -10709,6 +11134,7 @@ self: {
version = "0.1.0.0";
sha256 = "12lxylmpi2f1ahy6w1n7jmwn9kay4hajgr95xbnqqdzv4dw6whzw";
buildDepends = [ base QuickCheck ];
+ jailbreak = true;
homepage = "https://github.com/VictorDenisov/PasswordGenerator";
description = "Simple library for generating passwords";
license = stdenv.lib.licenses.mit;
@@ -10738,6 +11164,7 @@ self: {
extraLibraries = [ libxml2 ];
description = "Relational optimiser and code generator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) libxml2;};
"Peano" = callPackage
@@ -10776,6 +11203,7 @@ self: {
extraLibraries = [ cmph ];
description = "A perfect hashing library for mapping bytestrings to values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { cmph = null;};
"PermuteEffects" = callPackage
@@ -10785,9 +11213,11 @@ self: {
version = "0.2";
sha256 = "0lmmsvqbnw0k321254xfqlzmddvymy0mj50ax7caqj2fnarfgy4l";
buildDepends = [ base ReplicateEffects ];
+ jailbreak = true;
homepage = "https://github.com/MedeaMelana/PermuteEffects";
description = "Permutations of effectful computations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Pipe" = callPackage
@@ -10800,6 +11230,7 @@ self: {
homepage = "http://iki.fi/matti.niemenmaa/pipe/";
description = "Process piping library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Piso" = callPackage
@@ -10827,7 +11258,6 @@ self: {
buildDepends = [
base containers directory mtl random regex-compat
];
- configureFlags = [ "-f-prof" ];
homepage = "freizl.github.com";
description = "Play Hangman Game";
license = stdenv.lib.licenses.bsd3;
@@ -10844,6 +11274,7 @@ self: {
buildDepends = [
base HUnit MonadRandom QuickCheck random-shuffle
];
+ jailbreak = true;
description = "Playing cards api";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -10862,9 +11293,9 @@ self: {
base Chart Chart-cairo containers data-default-class glib gtk lens
linear stm text time
];
- configureFlags = [ "-f-examples" ];
description = "Real-time line plotter for protobuf-like data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"PlslTools" = callPackage
@@ -10884,6 +11315,7 @@ self: {
homepage = "LLayland.wordpress.com";
description = "So far just a lint like program for PL/SQL. Diff and refactoring tools are planned";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Plural" = callPackage
@@ -10919,7 +11351,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring network splice ];
- configureFlags = [ "-f-llvm" "-f-static" "-f-threaded" ];
homepage = "http://fusion.corsis.eu";
description = "high-performance distributed reverse / forward proxy & tunneling for TCP";
license = stdenv.lib.licenses.gpl3;
@@ -10947,6 +11378,7 @@ self: {
buildDepends = [ base mtl ];
description = "Thin wrapper over the C postgresql library";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"PrimitiveArray" = callPackage
@@ -10973,6 +11405,7 @@ self: {
sha256 = "0n1gva510p69vy25zvjkzwqqz2gilbns1wnrzz2p22rjkkbrinvx";
buildDepends = [ base haskell98 pretty template-haskell ];
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"PriorityChansConverger" = callPackage
@@ -10984,6 +11417,7 @@ self: {
buildDepends = [ base containers stm ];
description = "Read single output from an array of inputs - channels with priorities";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ProbabilityMonads" = callPackage
@@ -10995,6 +11429,7 @@ self: {
buildDepends = [ base MaybeT MonadRandom mtl ];
description = "Probability distribution monads";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"PropLogic" = callPackage
@@ -11023,6 +11458,7 @@ self: {
homepage = "https://github.com/dillonhuff/Proper";
description = "An implementation of propositional logic in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ProxN" = callPackage
@@ -11056,10 +11492,10 @@ self: {
parsec pretty process pugs-compat pugs-DrIFT random stm
stringtable-atom time utf8-string
];
- configureFlags = [ "-fperl5" ];
homepage = "http://pugscode.org/";
description = "A Perl 6 Implementation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Pup-Events" = callPackage
@@ -11077,6 +11513,7 @@ self: {
];
description = "A networked event handling framework for hooking into other programs";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Pup-Events-Client" = callPackage
@@ -11110,6 +11547,7 @@ self: {
];
description = "A networked event handling framework for hooking into other programs";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Pup-Events-PQueue" = callPackage
@@ -11168,6 +11606,7 @@ self: {
version = "0.10.1";
sha256 = "0r4qv6xw03g79sn1889vv1rzpkcpjm9lmipvxdl0l1d8r8kvxdxw";
buildDepends = [ base composition lens ];
+ jailbreak = true;
description = "QuadTree library for Haskell, with lens support";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -11197,9 +11636,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base haskell-src-exts ];
+ jailbreak = true;
homepage = "http://code.haskell.org/QuickAnnotate/";
description = "Annotation Framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"QuickCheck" = callPackage
@@ -11214,7 +11655,6 @@ self: {
base random template-haskell tf-random transformers
];
testDepends = [ base template-haskell test-framework ];
- configureFlags = [ "-ftemplatehaskell" "-fbase4" "-fbase3" ];
homepage = "https://github.com/nick8325/quickcheck";
description = "Automatic testing of Haskell programs";
license = stdenv.lib.licenses.bsd3;
@@ -11227,9 +11667,11 @@ self: {
version = "0.1.3";
sha256 = "16zxmq0y8ayq9dgmgyfdm3fnjjhv452cymfam1zjmaabrayllkpp";
buildDepends = [ base mtl QuickCheck random ];
+ jailbreak = true;
homepage = "https://github.com/nikita-volkov/QuickCheck-GenT";
description = "A GenT monad transformer for QuickCheck library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Quickson" = callPackage
@@ -11285,8 +11727,10 @@ self: {
base HDBC HDBC-postgresql mtl old-time parsec redHandlers xhtml
yuiGrid
];
+ jailbreak = true;
description = "A framework for writing RESTful applications";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"RFC1751" = callPackage
@@ -11320,6 +11764,7 @@ self: {
];
description = "A reflective JSON serializer/parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"RMP" = callPackage
@@ -11338,6 +11783,7 @@ self: {
extraLibraries = [ canlib ftd2xx ];
description = "Binding to code that controls a Segway RMP";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { canlib = null; ftd2xx = null;};
"RNAFold" = callPackage
@@ -11358,6 +11804,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion";
description = "RNA secondary structure prediction";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"RNAFoldProgs" = callPackage
@@ -11375,8 +11822,10 @@ self: {
base Biobase BiobaseTurner BiobaseTypes BiobaseVienna cmdargs
containers HsTools primitive PrimitiveArray RNAFold split vector
];
+ jailbreak = true;
description = "RNA secondary structure folding";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"RNAdesign" = callPackage
@@ -11402,6 +11851,7 @@ self: {
];
description = "Multi-target RNA sequence design";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"RNAdraw" = callPackage
@@ -11439,10 +11889,11 @@ self: {
deepseq directory parallel PrimitiveArray random split
StatisticalMethods vector
];
- configureFlags = [ "-f-llvm" ];
+ jailbreak = true;
homepage = "http://www.tbi.univie.ac.at/software/rnawolf/";
description = "RNA folding with non-canonical basepairs and base-triplets";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"RSA" = callPackage
@@ -11454,6 +11905,7 @@ self: {
pname = "RSA";
version = "2.1.0";
sha256 = "0bhnnz7vp1942ac2vg0y6vsag9bm0pslnm4ix6lmw28hy6d1jk2a";
+ editedCabalFile = "a6367228c6ecf3abc4a43225058ed9e86dc291849e943ce1f1ef5527c1ecba07";
buildDepends = [
base binary bytestring crypto-api crypto-pubkey-types pureMD5 SHA
];
@@ -11482,6 +11934,7 @@ self: {
homepage = "http://raincat.bysusanlin.com/";
description = "A puzzle game written in Haskell with a cat in lead role";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Random123" = callPackage
@@ -11511,6 +11964,7 @@ self: {
buildDepends = [ base HTTP-Simple network ];
description = "Interface to random.org";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Randometer" = callPackage
@@ -11534,6 +11988,7 @@ self: {
version = "0.1.0.0";
sha256 = "0759508s75zba89jjr56sqpm7idgwsxynmf9zl9hwrz9q11fxrqh";
buildDepends = [ base ];
+ jailbreak = true;
description = "Data structure for managing ranges";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -11562,6 +12017,7 @@ self: {
homepage = "http://kagami.touhou.ru/projects/show/ranka";
description = "HTTP to XMPP omegle chats gate";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Rasenschach" = callPackage
@@ -11583,6 +12039,7 @@ self: {
homepage = "http://hub.darcs.net/martingw/Rasenschach";
description = "Soccer simulation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Rasterific" = callPackage
@@ -11602,9 +12059,9 @@ self: {
base binary criterion deepseq directory filepath FontyFruity
JuicyPixels QuickCheck statistics vector
];
- configureFlags = [ "-fembed_linear" ];
description = "A pure haskell drawing engine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ReadArgs" = callPackage
@@ -11617,6 +12074,7 @@ self: {
isExecutable = true;
buildDepends = [ base system-filepath text ];
testDepends = [ base hspec system-filepath text ];
+ jailbreak = true;
homepage = "http://github.com/rampion/ReadArgs";
description = "Simple command line argument parsing";
license = stdenv.lib.licenses.bsd3;
@@ -11653,9 +12111,11 @@ self: {
version = "0.1.1.0";
sha256 = "15qikbjbydbabc26skhavshzrsaz17a71q8hfxqvi5ix2bhhz4hm";
buildDepends = [ base ghc-prim ];
+ jailbreak = true;
homepage = "https://bitbucket.org/carter/ref";
description = "Generic Mutable Ref Abstraction Layer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"RefSerialize" = callPackage
@@ -11687,7 +12147,6 @@ self: {
base bytestring cassava cmdargs cond containers directory glpk-hs
matrix MissingH vector
];
- configureFlags = [ "-f-documentation" "-f-debug" ];
homepage = "https://github.com/pablocouto/Referees";
description = "A utility for computing distributions of material to review among reviewers";
license = stdenv.lib.licenses.gpl3;
@@ -11732,6 +12191,7 @@ self: {
];
description = "Haskell bindings to ReviewBoard";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Rlang-QQ" = callPackage
@@ -11750,7 +12210,6 @@ self: {
temporary text transformers trifecta utf8-string vector zlib
];
testDepends = [ base doctest ];
- configureFlags = [ "-frepa" ];
homepage = "http://code.haskell.org/~aavogt/Rlang-QQ";
description = "quasiquoter for inline-R code";
license = stdenv.lib.licenses.bsd3;
@@ -11778,6 +12237,7 @@ self: {
];
description = "Limits the size of a directory's contents";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"RxHaskell" = callPackage
@@ -11807,6 +12267,7 @@ self: {
];
description = "A benchmark suite for runtime and heap measurements over a series of inputs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SConfig" = callPackage
@@ -11831,6 +12292,7 @@ self: {
extraLibraries = [ SDL ];
description = "Binding to libSDL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) SDL;};
"SDL-gfx" = callPackage
@@ -11842,6 +12304,7 @@ self: {
buildDepends = [ base SDL ];
description = "Binding to libSDL_gfx";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SDL-image" = callPackage
@@ -11854,6 +12317,7 @@ self: {
extraLibraries = [ SDL_image ];
description = "Binding to libSDL_image";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) SDL_image;};
"SDL-mixer" = callPackage
@@ -11866,6 +12330,7 @@ self: {
extraLibraries = [ SDL_mixer ];
description = "Binding to libSDL_mixer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) SDL_mixer;};
"SDL-mpeg" = callPackage
@@ -11878,6 +12343,7 @@ self: {
extraLibraries = [ smpeg ];
description = "Binding to the SMPEG library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) smpeg;};
"SDL-ttf" = callPackage
@@ -11890,6 +12356,7 @@ self: {
extraLibraries = [ SDL_ttf ];
description = "Binding to libSDL_ttf";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) SDL_ttf;};
"SDL2-ttf" = callPackage
@@ -11900,8 +12367,10 @@ self: {
sha256 = "03ng8kih285pvwj06jdwk4hkyyyb8j666pnvagnw5hsjhq60r8h6";
buildDepends = [ base ];
extraLibraries = [ SDL2 SDL2_ttf ];
+ jailbreak = true;
description = "Binding to libSDL-ttf";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) SDL2; SDL2_ttf = null;};
"SFML" = callPackage
@@ -11919,6 +12388,7 @@ self: {
homepage = "https://github.com/jeannekamikaze/SFML";
description = "SFML bindings";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { csfml-audio = null; csfml-graphics = null;
csfml-network = null; csfml-system = null;
csfml-window = null;};
@@ -11933,6 +12403,7 @@ self: {
homepage = "https://github.com/SFML-haskell/SFML-control";
description = "Higher level library on top of SFML";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SFont" = callPackage
@@ -11945,6 +12416,7 @@ self: {
homepage = "http://liamoc.net/static/SFont";
description = "SFont SDL Bitmap Fonts";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SG" = callPackage
@@ -11956,6 +12428,7 @@ self: {
buildDepends = [ base mtl ];
description = "Small geometry library for dealing with vectors and collision detection";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SGdemo" = callPackage
@@ -11967,8 +12440,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base GLUT OpenGL SG ];
+ jailbreak = true;
description = "An example of using the SG and OpenGL libraries";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SHA" = callPackage
@@ -11980,7 +12455,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base binary bytestring ];
- configureFlags = [ "-fdecoderinterface" "-f-exe" "-f-test" ];
description = "Implementations of the SHA suite of message digest functions";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -12024,9 +12498,11 @@ self: {
base bindings-DSL containers data-default lens mtl transformers
];
buildTools = [ c2hsc ];
+ jailbreak = true;
homepage = "http://www.snet-home.org/";
description = "Declarative coördination language for streaming networks";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SQLDeps" = callPackage
@@ -12063,7 +12539,6 @@ self: {
version = "0.3.2";
sha256 = "1cl5bsc5mr3silcmbjylgw5qa04pf2np9mippxnsa4p3dk089gkh";
buildDepends = [ array base mtl ];
- configureFlags = [ "-fsplitbase" ];
description = "A monad transformer version of the ST monad";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -12081,9 +12556,11 @@ self: {
buildDepends = [
base haskell98 language-c pretty svgutils syb xml
];
+ jailbreak = true;
homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q";
description = "Code generation tool for Quartz code from a SVG";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SVGFonts" = callPackage
@@ -12126,6 +12603,7 @@ self: {
buildDepends = [
base binary bytestring data-binary-ieee754 split
];
+ jailbreak = true;
homepage = "https://github.com/siddhanathan/SWMMoutGetMB";
description = "A parser for SWMM 5 binary .OUT files";
license = stdenv.lib.licenses.gpl3;
@@ -12145,6 +12623,7 @@ self: {
array base containers filepath loch-th pretty text transformers
wl-pprint-text xml
];
+ jailbreak = true;
description = "Generate a parser (in Haskell) with the SableCC parser generator";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -12183,10 +12662,10 @@ self: {
sha256 = "0915mwi1ksa85in03vzm5hqbvk6ih7l0zslg5cmy7j9fc0jhgwgd";
buildDepends = [ base bytestring file-embed ];
extraLibraries = [ glib mono ];
- configureFlags = [ "-f-use_mono" ];
homepage = "http://haskell.org/haskellwiki/Salsa";
description = "A .NET Bridge for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) glib; inherit (pkgs) mono;};
"ScratchFs" = callPackage
@@ -12203,9 +12682,11 @@ self: {
base bytestring directory filepath HFuse hsyslog process
regex-compat sqlite-simple unix
];
+ jailbreak = true;
homepage = "http://github.com/hirschenberger/ScratchFS";
description = "Size limited temp filesystem based on fuse";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Scurry" = callPackage
@@ -12225,6 +12706,7 @@ self: {
homepage = "http://code.google.com/p/scurry/";
description = "A cross platform P2P VPN application built using Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SegmentTree" = callPackage
@@ -12236,7 +12718,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-test" ];
description = "Data structure for querying the set (or count) of intervals covering given point";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -12255,8 +12736,10 @@ self: {
base bytestring classify containers mongoDB mtl network process
split tagsoup text
];
+ jailbreak = true;
description = "Command-line tool for maintaining the Semantique database";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Semigroup" = callPackage
@@ -12266,7 +12749,6 @@ self: {
version = "0.0.7";
sha256 = "1mdw1z50gr02j5hycki5rl95b1yk7xfrdk056ajw9ghw48s0jpx6";
buildDepends = [ base bytestring containers mtl ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://bitbucket.org/dibblego/semigroup/";
description = "A semigroup";
license = stdenv.lib.licenses.bsd3;
@@ -12283,8 +12765,10 @@ self: {
buildDepends = [
base directory filepath hslogger mtl old-locale random time
];
+ jailbreak = true;
description = "Easy Loggingframework";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ShellCheck" = callPackage
@@ -12317,7 +12801,6 @@ self: {
version = "0.9.5.2";
sha256 = "1js9la0hziqsmb56q9kzfycda2sw3xm4kv2y5q2h3zlw5gzc5xli";
buildDepends = [ base directory mtl unix ];
- configureFlags = [ "-fbase4" ];
homepage = "http://rwd.rdockins.name/shellac/home/";
description = "A framework for creating shell envinronments";
license = stdenv.lib.licenses.bsd3;
@@ -12330,10 +12813,10 @@ self: {
version = "0.9.5.2";
sha256 = "134m0krbd3vlswjxdfvv9xy9x962g7ksg1mqmmgczss9ph2dx08i";
buildDepends = [ base Shellac Shellac-editline ];
- configureFlags = [ "-f-usereadline" "-fuseeditline" ];
homepage = "http://rwd.rdockins.name/shellac/home/";
description = "\"compatline\" backend module for Shellac";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Shellac-editline" = callPackage
@@ -12346,6 +12829,7 @@ self: {
homepage = "http://rwd.rdockins.name/shellac/home/";
description = "Editline backend module for Shellac";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Shellac-haskeline" = callPackage
@@ -12369,6 +12853,7 @@ self: {
homepage = "http://rwd.rdockins.name/shellac/home/";
description = "Readline backend module for Shellac";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ShowF" = callPackage
@@ -12428,8 +12913,10 @@ self: {
version = "0.9.3";
sha256 = "0c674q5jiqvscc53m0z5vkmljla29pcll15gbvxr86pqxwmqm5hr";
buildDepends = [ base GLFW JuicyPixels OpenGL SimpleH vector ];
+ jailbreak = true;
description = "A Simple Graphics Library from the SimpleH framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SimpleH" = callPackage
@@ -12444,8 +12931,10 @@ self: {
base bytestring clock containers cpu directory filepath network
time unix
];
+ jailbreak = true;
description = "A light, clean and powerful Haskell utility library";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SimpleLog" = callPackage
@@ -12463,9 +12952,11 @@ self: {
ForkableT monad-control mtl old-locale resourcet semigroups stm
template-haskell text th-lift time transformers transformers-base
];
+ jailbreak = true;
homepage = "https://github.com/exFalso/SimpleLog/";
description = "Simple, configurable logging";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SizeCompare" = callPackage
@@ -12490,8 +12981,10 @@ self: {
buildDepends = [
base containers DifferenceLogic FirstOrderTheory HUnit Proper
];
+ jailbreak = true;
description = "A tiny, lazy SMT solver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Snusmumrik" = callPackage
@@ -12512,10 +13005,11 @@ self: {
];
buildTools = [ cpphs ];
extraLibraries = [ zip ];
- configureFlags = [ "-f-debug" ];
+ jailbreak = true;
homepage = "http://bitbucket.org/jetxee/snusmumrik/";
description = "E-library directory based on FUSE virtual file system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) zip;};
"SoOSiM" = callPackage
@@ -12530,6 +13024,7 @@ self: {
base concurrent-supply containers monad-coroutine mtl stm
transformers
];
+ jailbreak = true;
homepage = "http://www.soos-project.eu/";
description = "Abstract full system simulator";
license = stdenv.lib.licenses.bsd3;
@@ -12549,9 +13044,11 @@ self: {
base base-unicode-symbols binary derive directory mtl process
random zlib
];
+ jailbreak = true;
homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html";
description = "Football simulation framework for teaching functional programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SoccerFunGL" = callPackage
@@ -12568,9 +13065,11 @@ self: {
base base-unicode-symbols binary GLUT OpenGL process random
SoccerFun
];
+ jailbreak = true;
homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html";
description = "OpenGL UI for the SoccerFun framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Sonnex" = callPackage
@@ -12600,8 +13099,10 @@ self: {
base Cabal containers directory fgl filepath Graphalyze graphviz
haskell-src-exts mtl multiset random
];
+ jailbreak = true;
description = "Static code analysis using graph-theoretic techniques";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SpaceInvaders" = callPackage
@@ -12633,9 +13134,11 @@ self: {
base containers enummapset-th filepath LambdaHack template-haskell
text
];
+ jailbreak = true;
homepage = "https://github.com/tuturto/space-privateers";
description = "Simple space pirate roguelike";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Spock" = callPackage
@@ -12670,9 +13173,11 @@ self: {
version = "0.2.0.1";
sha256 = "1vcrl5dqjn0ri9ybza2yv80xvbv2iwrz5hj5rbhgy6i803ixlpx0";
buildDepends = [ base http-types Spock text time ];
+ jailbreak = true;
homepage = "https://github.com/agrafix/Spock-auth";
description = "Provides authentification helpers for Spock";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Spock-digestive" = callPackage
@@ -12731,6 +13236,7 @@ self: {
homepage = "http://liamoc.net/static/Sprig";
description = "Binding to Sprig";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Stasis" = callPackage
@@ -12742,6 +13248,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers ];
+ jailbreak = true;
homepage = "https://github.com/zcourts/Stasis";
description = "A simple MVCC like library";
license = stdenv.lib.licenses.bsd3;
@@ -12795,6 +13302,7 @@ self: {
homepage = "http://github.com/rukav/Stomp";
description = "Client library for Stomp brokers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Strafunski-ATermLib" = callPackage
@@ -12804,6 +13312,7 @@ self: {
version = "1.6.0.3";
sha256 = "1cicz4d5kyl9j4y3p79m3fk56vcqk3220a6y536dw525x6180dzw";
buildDepends = [ base containers ];
+ jailbreak = true;
description = "An abstract data type designed for the exchange of tree-like data structures";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -12822,8 +13331,10 @@ self: {
base directory haskell-src mtl pretty process Strafunski-ATermLib
Strafunski-StrategyLib template-haskell
];
+ jailbreak = true;
description = "Converts SDF to Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Strafunski-StrategyLib" = callPackage
@@ -12833,6 +13344,7 @@ self: {
version = "5.0.0.5";
sha256 = "13w3vj6nwky891rk3yi9977i2wg09zc0kvhyrx2219zdv2z6i0xg";
buildDepends = [ base directory mtl syb transformers ];
+ jailbreak = true;
description = "Library for strategic programming";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -12850,9 +13362,11 @@ self: {
parsec text transformers
];
testDepends = [ base blaze-builder bytestring hspec text ];
+ jailbreak = true;
homepage = "https://github.com/hansonkd/StrappedTemplates";
description = "General purpose templates in haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"StrategyLib" = callPackage
@@ -12887,6 +13401,7 @@ self: {
homepage = "http://bonsaicode.wordpress.com/2009/06/07/strictbench-0-1/";
description = "Benchmarking code through strict evaluation";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"SybWidget" = callPackage
@@ -12900,6 +13415,7 @@ self: {
buildDepends = [
base containers mtl syb-with-class template-haskell TypeCompose
];
+ jailbreak = true;
description = "Library which aids constructing generic (SYB3-based) widgets";
license = "LGPL";
}) {};
@@ -12919,6 +13435,7 @@ self: {
homepage = "http://www.cs.uu.nl/wiki/Center/SyntaxMacrosForFree";
description = "Syntax Macros in the form of an EDSL";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Sysmon" = callPackage
@@ -12937,6 +13454,7 @@ self: {
homepage = "http://github.com/rukav/Sysmon";
description = "Sybase 15 sysmon reports processor";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TBC" = callPackage
@@ -12954,6 +13472,7 @@ self: {
];
description = "Testing By Convention";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TBit" = callPackage
@@ -12969,8 +13488,10 @@ self: {
base containers deepseq fgl free haskeline hmatrix integration
list-extras mtl numeric-tools parallel stream-fusion
];
+ jailbreak = true;
description = "Utilities for condensed matter physics tight binding calculations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TCache" = callPackage
@@ -13026,6 +13547,7 @@ self: {
];
description = "Template Your Boilerplate - a Template Haskell version of SYB";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TableAlgebra" = callPackage
@@ -13052,8 +13574,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base cookbook ];
+ jailbreak = true;
description = "A client for Quill databases";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Tablify" = callPackage
@@ -13079,11 +13603,9 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base mtl old-time time ];
- configureFlags = [
- "-f-buildtests" "-f-sqlite" "-f-postgres" "-f-oracle" "-f-odbc"
- ];
description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Tape" = callPackage
@@ -13112,6 +13634,7 @@ self: {
homepage = "http://liamoc.net/tea";
description = "TeaHS Game Creation Library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Tensor" = callPackage
@@ -13148,6 +13671,7 @@ self: {
buildDepends = [ base ];
extraLibraries = [ ogg theora ];
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { ogg = null; theora = null;};
"Thingie" = callPackage
@@ -13159,6 +13683,7 @@ self: {
buildDepends = [ base cairo gtk mtl ];
description = "Purely functional 2D drawing";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ThreadObjects" = callPackage
@@ -13181,9 +13706,11 @@ self: {
sha256 = "0yk496zql0jpyj83ybdzffc03sylf5pwn093k831m99j54l2r5yv";
editedCabalFile = "56a8ab041685777391702f1475e5c2a3462b36765bd53de2e21e1f55aa5999d9";
buildDepends = [ base binary bytestring ghc-prim HTTP network ];
+ jailbreak = true;
homepage = "http://thrift.apache.org";
description = "Haskell bindings for the Apache Thrift RPC system";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TicTacToe" = callPackage
@@ -13198,7 +13725,6 @@ self: {
base containers HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [ "-fsmall_base" ];
description = "A sub-project (exercise) for a functional programming course";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -13230,6 +13756,7 @@ self: {
];
description = "A simple tile-based digital clock screen saver";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TinyLaunchbury" = callPackage
@@ -13252,6 +13779,7 @@ self: {
buildDepends = [ base HTTP network ];
description = "Use TinyURL to compress URLs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Top" = callPackage
@@ -13281,9 +13809,11 @@ self: {
base containers mtl QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://github.com/clux/tournament.hs";
description = "Tournament related algorithms";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TraceUtils" = callPackage
@@ -13330,6 +13860,7 @@ self: {
version = "0.0.2";
sha256 = "1lcj166i8f7850fqjv7xqxdn6zwpdynzxn3bf243wdnwmnn5pysx";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "http://www.github.com/bhickey/TreeStructures";
description = "A collection of heaps and search trees";
license = stdenv.lib.licenses.bsd3;
@@ -13358,8 +13889,10 @@ self: {
base containers diagrams-cairo diagrams-lib mtl
optparse-applicative time
];
+ jailbreak = true;
description = "A simple trend Graph script";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TrieMap" = callPackage
@@ -13375,9 +13908,9 @@ self: {
base bytestring containers primitive template-haskell
th-expand-syns transformers unpack-funcs vector
];
- configureFlags = [ "-f-llvm" ];
description = "Automatic type inference of generalized tries with Template Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Twofish" = callPackage
@@ -13416,6 +13949,7 @@ self: {
];
description = "Typing speed game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TypeCompose" = callPackage
@@ -13442,6 +13976,7 @@ self: {
homepage = "http://www.cs.kent.ac.uk/people/staff/oc/TypeIlluminator/";
description = "TypeIlluminator is a prototype tool exploring debugging of type errors/";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"TypingTester" = callPackage
@@ -13464,8 +13999,8 @@ self: {
}:
mkDerivation {
pname = "UISF";
- version = "0.3.0.0";
- sha256 = "1sd6jwbih1kk209crnqvc39k044ix5gd12kg3d4bfj619325bb1n";
+ version = "0.3.0.1";
+ sha256 = "0qfhcc0ii7nncfsyxvafwbrx8j6jjdc0jrj56g8jm8vmzsa082kp";
buildDepends = [
arrows base containers deepseq GLFW OpenGL stm transformers
];
@@ -13490,6 +14025,7 @@ self: {
homepage = "http://www.korgwal.com/umm/";
description = "A small command-line accounting tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"URLT" = callPackage
@@ -13507,6 +14043,7 @@ self: {
];
description = "Library for maintaining correctness of URLs within an application";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"URLb" = callPackage
@@ -13569,9 +14106,11 @@ self: {
version = "0.1.7";
sha256 = "1y21v5k7s9sj8z5r3czp5i80x40zvyqxzr1xl28ardwj5q5rrvzp";
buildDepends = [ base cgi MaybeT mtl ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/UrlDisp";
description = "Url dispatcher. Helps to retain friendly URLs in web applications.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Useful" = callPackage
@@ -13592,7 +14131,6 @@ self: {
version = "0.0.4";
sha256 = "1mjy3w4sw32rbmm13yhmpidfsj91v3p58jvki16z0kzk3fswpa85";
buildDepends = [ base ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/utility-tm";
description = "Utility functions that are missing from the standard library";
license = stdenv.lib.licenses.bsd3;
@@ -13621,6 +14159,7 @@ self: {
homepage = "http://github.com/grwlf/vkhs";
description = "Provides access to Vkontakte social network via public API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) curl;};
"Validation" = callPackage
@@ -13630,7 +14169,7 @@ self: {
version = "0.2.0";
sha256 = "10smif8y5bgjiarag3ws131kwji32mlh6mqfnmmp20xf41fsm0z3";
buildDepends = [ base bifunctors semigroupoids semigroups ];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
homepage = "https://github.com/tonymorris/validation";
description = "A data-type like Either but with an accumulating Applicative";
license = stdenv.lib.licenses.bsd3;
@@ -13655,8 +14194,10 @@ self: {
version = "1.0.6";
sha256 = "0zxxpychddmlrv7r190gn4dl282ak4qfk2d92l24qxi9fds1rshk";
buildDepends = [ base Boolean Vec ];
+ jailbreak = true;
description = "Provides Boolean instances for the Vec package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Vec-OpenGLRaw" = callPackage
@@ -13669,6 +14210,7 @@ self: {
homepage = "http://www.downstairspeople.org/darcs/Vec-opengl";
description = "Instances and functions to interoperate Vec and OpenGL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Vec-Transform" = callPackage
@@ -13680,6 +14222,7 @@ self: {
homepage = "https://github.com/tobbebex/Vec-Transform";
description = "This package is obsolete";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"VecN" = callPackage
@@ -13730,8 +14273,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base directory filepath mtl unix WL500gPLib ];
+ jailbreak = true;
description = "A simple command line tools to control the Asus WL500gP router";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"WL500gPLib" = callPackage
@@ -13743,6 +14288,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base curl mtl tagsoup ];
+ jailbreak = true;
description = "A simple library to access to the WL 500gP router from the Haskell code";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -13775,6 +14321,7 @@ self: {
buildDepends = [ base haskell98 parsec ];
description = "Convert the WURFL file into a Parsec parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"WXDiffCtrl" = callPackage
@@ -13784,10 +14331,10 @@ self: {
version = "0.0.1";
sha256 = "0vv8s483g3dkxyk833cjczj0a5zxiy9xh56kij6n0jjyzxb9bz0k";
buildDepends = [ base containers wx wxcore ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://wewantarock.wordpress.com";
description = "WXDiffCtrl";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"WashNGo" = callPackage
@@ -13804,9 +14351,11 @@ self: {
base containers directory ghc-paths haskell98 parsec process
regex-compat
];
+ jailbreak = true;
homepage = "http://www.informatik.uni-freiburg.de/~thiemann/haskell/WASH/";
description = "WASH is a family of EDSLs for programming Web applications in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"WebBits" = callPackage
@@ -13830,9 +14379,11 @@ self: {
version = "1.0.2";
sha256 = "18dd52970cd27kra4l89vvrx2mrdbqd4w4f76xrq3142daxsagal";
buildDepends = [ base containers mtl parsec pretty syb WebBits ];
+ jailbreak = true;
homepage = "http://www.cs.brown.edu/research/plt/";
description = "JavaScript analysis tools";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"WebBits-multiplate" = callPackage
@@ -13846,8 +14397,10 @@ self: {
buildDepends = [
base multiplate multiplate-simplified transformers WebBits
];
+ jailbreak = true;
description = "A Multiplate instance for JavaScript";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"WebCont" = callPackage
@@ -13867,6 +14420,7 @@ self: {
homepage = "http://patch-tag.com/r/salazar/webconts/snapshot/current/content/pretty";
description = "Continuation based web programming for Happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"WeberLogic" = callPackage
@@ -13878,6 +14432,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base parsec ];
+ jailbreak = true;
homepage = "https://github.com/cameronbwhite/WeberLogic";
description = "Logic interpreter";
license = stdenv.lib.licenses.bsd3;
@@ -13900,9 +14455,10 @@ self: {
HTTP hxt mtl network parsec process regex-pcre-builtin
template-haskell text transformers unordered-containers vector
];
- configureFlags = [ "-f-optimize" ];
+ jailbreak = true;
description = "Regexp-like engine to scrap web data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Wheb" = callPackage
@@ -13925,9 +14481,11 @@ self: {
base HUnit QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 text
];
+ jailbreak = true;
homepage = "https://github.com/hansonkd/Wheb-Framework";
description = "The frictionless WAI Framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"WikimediaParser" = callPackage
@@ -13939,6 +14497,7 @@ self: {
buildDepends = [ base parsec ];
description = "A parser for wikimedia style article markup";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Win32" = callPackage
@@ -13954,6 +14513,7 @@ self: {
homepage = "https://github.com/haskell/win32";
description = "A binding to part of the Win32 library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { advapi32 = null; gdi32 = null; shell32 = null;
shfolder = null; user32 = null; winmm = null;};
@@ -13964,9 +14524,11 @@ self: {
version = "0.2.1";
sha256 = "1y2war9adqkwc3zy2g45nvg7ccp4axdbjkn54mnhf34q6n4dwwg8";
buildDepends = [ base text Win32 Win32-errors ];
+ jailbreak = true;
homepage = "http://github.com/mikesteele81/win32-dhcp-server";
description = "Win32 DHCP Server Management API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Win32-errors" = callPackage
@@ -13976,9 +14538,11 @@ self: {
version = "0.2.1";
sha256 = "13rqqk06r3rc9j6j72qcna26lj0r2fbrzys9zgr91knik9msl5di";
buildDepends = [ base template-haskell text Win32 ];
+ jailbreak = true;
homepage = "http://github.com/mikesteele81/win32-errors";
description = "Alternative error handling for Win32 foreign calls";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Win32-extras" = callPackage
@@ -13992,6 +14556,7 @@ self: {
homepage = "http://hub.darcs.net/shelarcy/Win32-extras/";
description = "Provides missing Win32 API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { imm32 = null; msimg32 = null;};
"Win32-junction-point" = callPackage
@@ -14001,9 +14566,11 @@ self: {
version = "0.2";
sha256 = "1cbk6d47h83pp77522j55yy90vhi0d1jjb7rd1s98k6422fb316s";
buildDepends = [ base text Win32 Win32-errors ];
+ jailbreak = true;
homepage = "http://github.com/mikesteele81/Win32-junction-point";
description = "Support for manipulating NTFS junction points";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Win32-notify" = callPackage
@@ -14017,6 +14584,7 @@ self: {
buildDepends = [ base containers directory Win32 ];
description = "A binding to part of the Win32 library for file notification";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Win32-services" = callPackage
@@ -14030,6 +14598,7 @@ self: {
homepage = "http://github.com/mikesteele81/win32-services";
description = "Windows service applications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { Advapi32 = null;};
"Win32-services-wrapper" = callPackage
@@ -14040,9 +14609,9 @@ self: {
version = "0.1.2.0";
sha256 = "01fvb9sraqw1ar5pvs8s23y8syix50wh6yifsm65fs4vy1nk3xfb";
buildDepends = [ base directory filepath Win32 Win32-services ];
- configureFlags = [ "-f-warn-as-error" ];
description = "Wrapper code for making a Win32 service";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Wired" = callPackage
@@ -14079,7 +14648,6 @@ self: {
version = "0.1.3";
sha256 = "1ab5wybawa3dfq89dn0g3zdhsqd03bcm3qky2d4z6irw7afdqrr8";
buildDepends = [ array base containers filepath ];
- configureFlags = [ "-fsmall_base" ];
description = "Haskell interface to the WordNet database";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -14096,6 +14664,7 @@ self: {
homepage = "https://github.com/gbgar/Wordlint";
description = "Plaintext prose redundancy linter";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Workflow" = callPackage
@@ -14123,9 +14692,11 @@ self: {
version = "0.8.1";
sha256 = "0lvbdmb1qwsz8bz0z715nzgbpshfckm4syk1ny52akkb4ddkrd60";
buildDepends = [ base containers mtl SybWidget wx wxcore xtc ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/WxGeneric";
description = "Generic (SYB3) construction of wxHaskell widgets";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"X11" = callPackage
@@ -14156,8 +14727,10 @@ self: {
editedCabalFile = "f7b315acd1fb4d44ee6312b2e8d397b7cda103cf5e9e8ca6867389ef6cadff3c";
buildDepends = [ base X11 ];
extraLibraries = [ libX11 ];
+ jailbreak = true;
description = "Missing bindings to the X11 graphics library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.xlibs) libX11;};
"X11-rm" = callPackage
@@ -14169,6 +14742,7 @@ self: {
buildDepends = [ base X11 ];
description = "A binding to the resource management functions missing from X11";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"X11-xdamage" = callPackage
@@ -14182,6 +14756,7 @@ self: {
homepage = "http://darcs.haskell.org/X11-xdamage";
description = "A binding to the Xdamage X11 extension library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { Xdamage = null;};
"X11-xfixes" = callPackage
@@ -14195,6 +14770,7 @@ self: {
homepage = "https://github.com/reacocard/x11-xfixes";
description = "A binding to the Xfixes X11 extension library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { Xfixes = null;};
"X11-xft" = callPackage
@@ -14208,6 +14784,9 @@ self: {
buildDepends = [ base utf8-string X11 ];
extraLibraries = [ fontconfig freetype pkgconfig ];
pkgconfigDepends = [ libXft ];
+ configureFlags = [
+ "--extra-include-dirs=${freetype}/include/freetype2"
+ ];
description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts";
license = "LGPL";
}) { inherit (pkgs) fontconfig; inherit (pkgs) freetype;
@@ -14247,6 +14826,7 @@ self: {
homepage = "http://code.fac9.com/xinput/";
description = "Bindings for the DirectX XInput library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.xlibs) xinput;};
"XMMS" = callPackage
@@ -14260,6 +14840,7 @@ self: {
homepage = "http://kawais.org.ua/XMMS/";
description = "XMMS2 client library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { xmmsclient = null; xmmsclient-glib = null;};
"XMPP" = callPackage
@@ -14273,9 +14854,11 @@ self: {
buildDepends = [
base haskell98 hsdns mtl network parsec random utf8-string
];
+ jailbreak = true;
homepage = "http://kagami.touhou.ru/projects/show/matsuri";
description = "XMPP library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"XSaiga" = callPackage
@@ -14290,9 +14873,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base cgi containers hsparql pretty rdf4h text ];
+ jailbreak = true;
homepage = "http://hafiz.myweb.cs.uwindsor.ca/proHome.html";
description = "An implementation of a polynomial-time top-down parser suitable for NLP";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Xauth" = callPackage
@@ -14305,6 +14890,7 @@ self: {
pkgconfigDepends = [ xau ];
description = "A binding to the X11 authentication library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { xau = null;};
"Xec" = callPackage
@@ -14323,6 +14909,7 @@ self: {
];
description = "Gtk command launcher with identicon";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"XmlHtmlWriter" = callPackage
@@ -14335,6 +14922,7 @@ self: {
homepage = "http://github.com/mmirman/haskogeneous/tree/XmlHtmlWriter";
description = "A library for writing XML and HTML";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"YACPong" = callPackage
@@ -14355,6 +14943,7 @@ self: {
homepage = "http://github.com/snkkid/YACPong";
description = "Yet Another Pong Clone using SDL";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"YFrob" = callPackage
@@ -14367,6 +14956,7 @@ self: {
homepage = "http://www.haskell.org/yampa/";
description = "Yampa-based library for programming robots";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Yablog" = callPackage
@@ -14398,10 +14988,11 @@ self: {
yesod-default yesod-form yesod-newsfeed yesod-platform
yesod-recaptcha yesod-static
];
- configureFlags = [ "-f-library-only" "-f-dev" ];
+ jailbreak = true;
homepage = "http://gitweb.konn-san.com/repo/Yablog/tree/master";
description = "A simple blog engine powered by Yesod";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"YamlReference" = callPackage
@@ -14417,10 +15008,10 @@ self: {
buildDepends = [
base bytestring containers directory dlist HUnit regex-compat
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://www.ben-kiki.org/oren/YamlReference";
description = "YAML reference implementation";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Yampa" = callPackage
@@ -14446,7 +15037,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base bytestring containers HCodecs Yampa ];
- configureFlags = [ "-f-gtk" "-f-openal" "-fwav" ];
homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze";
description = "Software synthesizer";
license = stdenv.lib.licenses.bsd3;
@@ -14476,10 +15066,10 @@ self: {
base containers mtl network old-locale process readline regex-posix
syb time
];
- configureFlags = [ "-freadline" ];
homepage = "http://code.google.com/p/yogurt-mud/";
description = "A MUD client library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Yogurt-Standalone" = callPackage
@@ -14500,6 +15090,7 @@ self: {
homepage = "http://code.google.com/p/yogurt-mud/";
description = "A functional MUD client";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) readline;};
"ZFS" = callPackage
@@ -14526,6 +15117,7 @@ self: {
buildDepends = [ array base gtk mtl random ];
description = "A Z-machine interpreter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ZipFold" = callPackage
@@ -14579,6 +15171,7 @@ self: {
homepage = "https://github.com/MedeaMelana/Zwaluw";
description = "Combinators for bidirectional URL routing";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"a50" = callPackage
@@ -14607,6 +15200,7 @@ self: {
sha256 = "1lxsn3n77fk7jl8i76nffj1zngvi2s38y17s54ha29h8hrp3s3dg";
buildDepends = [ base parsec text ];
testDepends = [ base HUnit text ];
+ jailbreak = true;
homepage = "http://github.com/marcotmarcot/abacate";
description = "Parser for a language similar to Cucumber's Gherkin";
license = "unknown";
@@ -14645,9 +15239,9 @@ self: {
];
buildTools = [ c2hs ];
extraLibraries = [ abc ];
- configureFlags = [ "-fenable-pthreads" ];
description = "Bindings for ABC, A System for Sequential Synthesis and Verification";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) abc;};
"abcnotation" = callPackage
@@ -14686,7 +15280,6 @@ self: {
version = "0.3";
sha256 = "18jwswjxwzc9bjiy4ds6hw2a74ki797jmfcifxd2ga4kh7ri1ah9";
buildDepends = [ array base containers random time ];
- configureFlags = [ "-f-usecas" ];
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "Abstract, parameterized interface to mutable Deques";
license = stdenv.lib.licenses.bsd3;
@@ -14732,10 +15325,10 @@ self: {
version = "0.3.3";
sha256 = "0k1730mg2vyf21837fc459m8si1ffnbj78cdkbgglp2vn51f3nz4";
buildDepends = [ abstract-par accelerate array base vector ];
- configureFlags = [ "-fnewaccelerate" "-f-io" ];
homepage = "https://github.com/simonmar/monad-par";
description = "Provides the class ParAccelerate, nothing more";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"abt" = callPackage
@@ -14760,6 +15353,7 @@ self: {
version = "0.2.0.5";
sha256 = "00s2nvd85l00kpl45ipaq4ypa1ymaxmvnaf5mdvdladg4icl50i4";
buildDepends = [ base hashable unordered-containers vector ];
+ jailbreak = true;
description = "Aho-Corasick string matching algorithm in Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -14771,6 +15365,7 @@ self: {
version = "0.1.0.0";
sha256 = "1nsnbvllwznbqycw33f09vfgqvqmqfkcbi367clm6k4v6rfswzl3";
buildDepends = [ ac-machine base conduit text ];
+ jailbreak = true;
description = "Drive Aho-Corasick machines in Conduit pipelines";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -14789,10 +15384,6 @@ self: {
array base containers fclabels ghc-prim hashable hashtables pretty
template-haskell unordered-containers
];
- configureFlags = [
- "-f-internal-checks" "-f-unsafe-checks" "-fbounds-checks"
- "-f-more-pp" "-f-debug"
- ];
homepage = "https://github.com/AccelerateHS/accelerate/";
description = "An embedded language for accelerated array processing";
license = stdenv.lib.licenses.bsd3;
@@ -14830,10 +15421,11 @@ self: {
accelerate accelerate-arithmetic accelerate-cuda accelerate-io
accelerate-utility base cublas cuda random utility-ht vector
];
- configureFlags = [ "-f-buildexamples" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/accelerate-cublas/";
description = "Basic Linear Algebra using native CUBLAS library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"accelerate-cuda" = callPackage
@@ -14854,13 +15446,11 @@ self: {
mainland-pretty mtl old-time pretty process SafeSemaphore srcloc
template-haskell text transformers unix unordered-containers
];
- configureFlags = [
- "-f-internal-checks" "-f-unsafe-checks" "-fbounds-checks"
- "-f-debug"
- ];
+ jailbreak = true;
homepage = "https://github.com/AccelerateHS/accelerate-cuda/";
description = "Accelerate backend for NVIDIA GPUs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"accelerate-cufft" = callPackage
@@ -14877,10 +15467,10 @@ self: {
accelerate accelerate-cuda accelerate-fourier accelerate-utility
base cuda cufft
];
- configureFlags = [ "-f-buildexamples" ];
homepage = "http://code.haskell.org/~thielema/accelerate-cufft/";
description = "Accelerate frontend to the CUFFT library (Fourier transform)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"accelerate-examples" = callPackage
@@ -14893,15 +15483,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ accelerate-cuda ekg ];
- configureFlags = [
- "-f-opencl" "-f-kmeans" "-f-ray" "-f-pagerank" "-f-fft"
- "-f-hashcat" "-f-smoothlife" "-f-nbody" "-f-fluid" "-f-mandelbrot"
- "-f-canny" "-f-crystal" "-f-smvm" "-f-nofib" "-fllvm-multi"
- "-f-llvm-gpu" "-f-llvm-cpu" "-f-opencl" "-fcuda" "-fekg" "-fgui"
- ];
+ configureFlags = [ "-f-opencl" ];
homepage = "https://github.com/AccelerateHS/accelerate-examples";
description = "Examples using the Accelerate library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"accelerate-fft" = callPackage
@@ -14912,10 +15498,10 @@ self: {
sha256 = "0nxlw8z7bnr29vp24qbbwwmq9rj2q6jqqkmm46pp8dp582y4yk6v";
editedCabalFile = "c23b93ae20f528782aeb10b528fa2a7847cce5c1aa9db546f3b000d7f05f53ca";
buildDepends = [ accelerate accelerate-cuda base cuda cufft ];
- configureFlags = [ "-fcuda" ];
homepage = "https://github.com/AccelerateHS/accelerate-fft";
description = "FFT using the Accelerate library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"accelerate-fftw" = callPackage
@@ -14932,6 +15518,7 @@ self: {
homepage = "http://code.haskell.org/~thielema/accelerate-fftw/";
description = "Accelerate frontend to the FFTW library (Fourier transform)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"accelerate-fourier" = callPackage
@@ -14973,6 +15560,7 @@ self: {
homepage = "http://code.haskell.org/~thielema/accelerate-fourier-benchmark/";
description = "Compare different implementations of the Fast Fourier Transform";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"accelerate-io" = callPackage
@@ -14987,9 +15575,6 @@ self: {
buildDepends = [
accelerate array base bmp bytestring repa vector
];
- configureFlags = [
- "-f-internal-checks" "-f-unsafe-checks" "-fbounds-checks"
- ];
homepage = "https://github.com/AccelerateHS/accelerate-io";
description = "Read and write Accelerate arrays in various formats";
license = stdenv.lib.licenses.bsd3;
@@ -15014,9 +15599,11 @@ self: {
version = "0.9.4";
sha256 = "16hgs81cs3zgbvsprh9lzvyxbh58g7rijf1d4j0dkrpnqnrvg0hy";
buildDepends = [ base bytestring HTTP json network text ];
+ jailbreak = true;
homepage = "http://accentuate.us/";
description = "A Haskell implementation of the Accentuate.us API.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"access-time" = callPackage
@@ -15026,9 +15613,11 @@ self: {
version = "0.1.0.4";
sha256 = "13kg8mjrnif88r0w7b041x4vmzdm9aqrx4fskc3qv3smpq2q2ngs";
buildDepends = [ base filepath old-time time unix ];
+ jailbreak = true;
homepage = "http://www.github.com/batterseapower/access-time";
description = "Cross-platform support for retrieving file access times";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ace" = callPackage
@@ -15077,6 +15666,7 @@ self: {
buildDepends = [
acid-state base directory HsOpenSSL network safecopy
];
+ jailbreak = true;
homepage = "http://acid-state.seize.it/";
description = "Add TLS support for Data.Acid.Remote";
license = stdenv.lib.licenses.publicDomain;
@@ -15134,6 +15724,7 @@ self: {
version = "0.1.0.0";
sha256 = "1sc0alwdgfls18y4q4y0qkbzqm4fgzd9yv6dwwnzw3472vsz2x8s";
buildDepends = [ base comonad ];
+ jailbreak = true;
description = "A more efficient dualization";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -15188,6 +15779,7 @@ self: {
buildDepends = [
base bytestring extensible-exceptions mtl network pretty
];
+ jailbreak = true;
homepage = "http://www.happstack.com";
description = "fastest Haskell PONG server in the world";
license = stdenv.lib.licenses.bsd3;
@@ -15228,6 +15820,7 @@ self: {
homepage = "https://github.com/llelf/acme-lolcat";
description = "LOLSPEAK translator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"acme-lookofdisapproval" = callPackage
@@ -15271,6 +15864,7 @@ self: {
version = "1.0.0.1";
sha256 = "0lnrsndx7r00b7vgh9jmp5j635m4pb2bzx0lfhqidkzfc2llzwsm";
buildDepends = [ base time ];
+ jailbreak = true;
description = "An interface to the philosophical and metaphysical \"now\"";
license = stdenv.lib.licenses.publicDomain;
}) {};
@@ -15282,8 +15876,10 @@ self: {
version = "0.3.0.0";
sha256 = "1p5rdssdmds6yqgv3yvlh835h180h9q9430j8i6qrhygqn8lmv87";
buildDepends = [ base template-haskell ];
+ jailbreak = true;
description = "Define the less than and add and subtract for nats";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"acme-omitted" = callPackage
@@ -15347,6 +15943,7 @@ self: {
];
description = "Proper names for curry and uncurry";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"acme-strfry" = callPackage
@@ -15356,6 +15953,7 @@ self: {
version = "0.1";
sha256 = "1r6xnkyx22khzq6hlb8bk0fnbb6hlwbf12wajhx8vcxa7bkhh8lb";
buildDepends = [ base bytestring ];
+ jailbreak = true;
homepage = "https://github.com/ehird/acme-strfry";
description = "A binding to the glibc strfry function";
license = stdenv.lib.licenses.bsd3;
@@ -15368,6 +15966,7 @@ self: {
version = "1.0.0.0";
sha256 = "18wvsvdmbwh9dcawiy4f9pn4vg98kdq9zxc37sz7dpmaigimw16f";
buildDepends = [ base ];
+ jailbreak = true;
description = "Stringly Typed Programming";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -15421,6 +16020,7 @@ self: {
testDepends = [
array base newtype QuickCheck semigroupoids semigroups vector-space
];
+ jailbreak = true;
description = "Abstractions for animation";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -15446,8 +16046,10 @@ self: {
old-time pandoc process pureMD5 QuickCheck simple-reflect snap-core
snap-server split syb text time utf8-string xhtml
];
+ jailbreak = true;
description = "Haskell code presentation tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"activehs-base" = callPackage
@@ -15457,6 +16059,7 @@ self: {
version = "0.3.0.2";
sha256 = "0wsrsxfaspv4xvw4wq3sllicc5v08rgpp1g76p24b9r9ghn7hrdv";
buildDepends = [ base QuickCheck ];
+ jailbreak = true;
description = "Basic definitions for activehs";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -15482,6 +16085,7 @@ self: {
homepage = "http://sulzmann.blogspot.com/2008/10/actors-with-multi-headed-receive.html";
description = "Actors with multi-headed receive clauses";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ad" = callPackage
@@ -15498,7 +16102,6 @@ self: {
transformers
];
testDepends = [ base directory doctest filepath ];
- configureFlags = [ "-f-lib-werror" ];
homepage = "http://github.com/ekmett/ad";
description = "Automatic Differentiation";
license = stdenv.lib.licenses.bsd3;
@@ -15514,6 +16117,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/adaptive-containers";
description = "Self optimizing container types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"adaptive-tuple" = callPackage
@@ -15523,10 +16127,10 @@ self: {
version = "0.2.0";
sha256 = "1kf4d3qf8nv61c7pajv234b2vil84c2cq40csnm456lg55qh53r1";
buildDepends = [ base template-haskell type-level ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://inmachina.net/~jwlato/haskell/";
description = "Self-optimizing tuple types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"adb" = callPackage
@@ -15591,6 +16195,7 @@ self: {
homepage = "http://sep07.mroot.net/";
description = "Ad-hoc P2P network protocol";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"adict" = callPackage
@@ -15644,6 +16249,7 @@ self: {
buildDepends = [
base binary bytestring data-binary-ieee754 language-css mtl pretty
];
+ jailbreak = true;
homepage = "https://github.com/stepcut/ase2css";
description = "parse Adobe Swatch Exchange files and (optionally) output .css files with the colors";
license = stdenv.lib.licenses.bsd3;
@@ -15665,12 +16271,11 @@ self: {
array base containers htrace HUnit mtl QuickCheck random-shuffle
test-framework test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [
- "-f-debug" "-f-buildbenchmark2" "-f-buildbenchmark" "-f-buildtests"
- ];
+ jailbreak = true;
homepage = "http://adp-multi.ruhoh.com";
description = "ADP for multiple context-free languages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"adp-multi-monadiccp" = callPackage
@@ -15688,10 +16293,11 @@ self: {
adp-multi base containers monadiccp mtl QuickCheck test-framework
test-framework-quickcheck2
];
- configureFlags = [ "-f-buildbenchmark" ];
+ jailbreak = true;
homepage = "http://adp-multi.ruhoh.com";
description = "Subword construction in adp-multi using monadiccp";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aeson" = callPackage
@@ -15715,7 +16321,6 @@ self: {
template-haskell test-framework test-framework-hunit
test-framework-quickcheck2 text time unordered-containers vector
];
- configureFlags = [ "-fold-locale" "-f-developer" ];
homepage = "https://github.com/bos/aeson";
description = "Fast JSON parsing and encoding";
license = stdenv.lib.licenses.bsd3;
@@ -15733,8 +16338,10 @@ self: {
aeson array attoparsec base bson bytestring containers text
unordered-containers vector
];
+ jailbreak = true;
description = "Mapping between Aeson's JSON and Bson objects";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aeson-lens" = callPackage
@@ -15767,10 +16374,11 @@ self: {
containers deepseq hashable mtl old-locale syb text time
unordered-containers vector
];
- configureFlags = [ "-f-developer" ];
+ jailbreak = true;
homepage = "http://github.com/mailrank/aeson";
description = "Fast JSON parsing and encoding (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aeson-pretty" = callPackage
@@ -15787,7 +16395,6 @@ self: {
aeson attoparsec base bytestring cmdargs text unordered-containers
vector
];
- configureFlags = [ "-f-lib-only" ];
homepage = "http://github.com/informatikr/aeson-pretty";
description = "JSON pretty-printing library and command-line tool";
license = stdenv.lib.licenses.bsd3;
@@ -15835,9 +16442,11 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2 text
unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/timjb/aeson-schema";
description = "Haskell JSON schema validator and parser generator";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aeson-serialize" = callPackage
@@ -15864,6 +16473,7 @@ self: {
aeson base data-default template-haskell text unordered-containers
vector
];
+ jailbreak = true;
homepage = "https://github.com/lassoinc/aeson-smart";
description = "Smart derivation of Aeson instances";
license = stdenv.lib.licenses.mit;
@@ -15880,9 +16490,11 @@ self: {
buildDepends = [
aeson attoparsec base bytestring HsOpenSSL http-streams io-streams
];
+ jailbreak = true;
homepage = "https://github.com/noteed/aeson-streams";
description = "An HTTP client library for JSON-based APIs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aeson-t" = callPackage
@@ -15900,6 +16512,7 @@ self: {
aeson aeson-qq base bytestring hspec2 text unordered-containers
vector
];
+ jailbreak = true;
homepage = "https://github.com/begriffs/aeson-t";
description = "Transform JSON";
license = stdenv.lib.licenses.mit;
@@ -15944,6 +16557,7 @@ self: {
buildDepends = [
base containers mwc-random primitive split vector
];
+ jailbreak = true;
homepage = "http://github.com/jtobin/affine-invariant-ensemble-mcmc";
description = "General-purpose sampling";
license = stdenv.lib.licenses.bsd3;
@@ -15984,9 +16598,11 @@ self: {
buildDepends = [
base bytestring directory language-c mtl process yices
];
+ jailbreak = true;
homepage = "http://tomahawkins.org";
description = "Infinite state model checking of iterative C programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"agda-server" = callPackage
@@ -16006,6 +16622,7 @@ self: {
];
description = "Http server for Agda (prototype)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"agum" = callPackage
@@ -16109,6 +16726,7 @@ self: {
homepage = "https://github.com/joelteon/airbrake";
description = "An Airbrake notifier for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aivika" = callPackage
@@ -16118,7 +16736,6 @@ self: {
version = "3.0";
sha256 = "1qyya6bx0xhw09mshz6gysizdbbmpzcgx4b494lnmr9x6sb5fvz7";
buildDepends = [ array base containers mtl random vector ];
- configureFlags = [ "-f-haste-inst" ];
homepage = "http://github.com/dsorokin/aivika";
description = "A multi-paradigm simulation library";
license = stdenv.lib.licenses.bsd3;
@@ -16201,10 +16818,10 @@ self: {
version = "3.0";
sha256 = "1b9hkza735g1gxr3l73fz48y29fyph89j8114wzld3ydma2f6d1z";
buildDepends = [ aivika array base containers mtl random vector ];
- configureFlags = [ "-f-haste-inst" ];
homepage = "http://github.com/dsorokin/aivika-transformers";
description = "Transformers for the Aivika simulation library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ajhc" = callPackage
@@ -16227,6 +16844,7 @@ self: {
homepage = "http://ajhc.metasepi.org/";
description = "Haskell compiler that produce binary through C language";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"alarmclock" = callPackage
@@ -16254,6 +16872,7 @@ self: {
homepage = "https://github.com/Rnhmjoj/alea";
description = "a diceware passphrase generator";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"alex" = callPackage
@@ -16269,7 +16888,6 @@ self: {
buildDepends = [ array base containers directory QuickCheck ];
testDepends = [ base process ];
buildTools = [ happy perl ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://www.haskell.org/alex/";
description = "Alex is a tool for generating lexical analysers in Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -16302,7 +16920,6 @@ self: {
buildDepends = [
aeson base bytestring hexpat HTTP network-uri text xmlgen
];
- configureFlags = [ "-fnetwork-uri" ];
description = "utility library for Alfred version 2";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -16370,6 +16987,7 @@ self: {
homepage = "https://github.com/wdanilo/algebraic";
description = "General linear algebra structures";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"algebraic-classes" = callPackage
@@ -16416,7 +17034,6 @@ self: {
version = "0.1";
sha256 = "0hmnp08k04c0ag9fyp5sajg54r4gi57vrd9krk4g8y8fri0fgc00";
buildDepends = [ base ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "An aligned ForeignPtr type";
license = stdenv.lib.licenses.publicDomain;
@@ -16472,12 +17089,10 @@ self: {
incremental-sat-solver mtl network parsec pretty QuickCheck random
stm syb template-haskell transformers tuple
];
- configureFlags = [
- "-f-readline" "-fparsec3" "-feditline" "-funicode"
- ];
homepage = "http://www.ccs.neu.edu/~tov/pubs/alms";
description = "a practical affine language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"alpha" = callPackage
@@ -16496,9 +17111,11 @@ self: {
containers COrdering cpphs directory filepath ghc-prim mtl parsec
transformers unix
];
+ jailbreak = true;
homepage = "http://www.alpha-lang.net/";
description = "A compiler for the Alpha language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"alpino-tools" = callPackage
@@ -16516,9 +17133,11 @@ self: {
base bytestring bytestring-lexing conduit containers hexpat-pickle
MonadRandom mtl random-shuffle resourcet rosezipper utf8-string
];
+ jailbreak = true;
homepage = "http://github.com/danieldk/alpino-tools";
description = "Alpino data manipulation tools";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"alsa" = callPackage
@@ -16531,9 +17150,11 @@ self: {
sha256 = "0zdnhi2wm7w6182k6mccm16x453g7kvbsqx2afnhfjpr3iaj69mg";
buildDepends = [ array base extensible-exceptions sample-frame ];
extraLibraries = [ alsaLib ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/ALSA";
description = "Binding to the ALSA Library API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) alsaLib;};
"alsa-core" = callPackage
@@ -16544,7 +17165,6 @@ self: {
sha256 = "1avh4a419h9d2zsslg6j8hm87ppgsgqafz8ll037rk2yy1g4jl7b";
buildDepends = [ base extensible-exceptions ];
pkgconfigDepends = [ alsaLib ];
- configureFlags = [ "-fpkgconfig" ];
homepage = "http://www.haskell.org/haskellwiki/ALSA";
description = "Binding to the ALSA Library API (Exceptions)";
license = stdenv.lib.licenses.bsd3;
@@ -16563,9 +17183,11 @@ self: {
buildDepends = [
alsa-core alsa-seq base midi midi-alsa wx wxcore
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/ALSA";
description = "Some simple interactive programs for sending MIDI control messages via ALSA";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"alsa-midi" = callPackage
@@ -16580,10 +17202,11 @@ self: {
isExecutable = true;
buildDepends = [ array base event-list midi non-negative ];
extraLibraries = [ alsaLib ];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/ALSA";
description = "Bindings for the ALSA sequencer API (MIDI stuff)";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) alsaLib;};
"alsa-mixer" = callPackage
@@ -16615,9 +17238,6 @@ self: {
storable-record
];
pkgconfigDepends = [ alsaLib ];
- configureFlags = [
- "-f-debug" "-f-buildsynthesizer" "-f-buildexamples"
- ];
homepage = "http://www.haskell.org/haskellwiki/ALSA";
description = "Binding to the ALSA Library API (PCM audio)";
license = stdenv.lib.licenses.bsd3;
@@ -16634,6 +17254,7 @@ self: {
buildDepends = [ alsa base ];
description = "Tests for the ALSA audio signal library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"alsa-seq" = callPackage
@@ -16652,7 +17273,6 @@ self: {
extensible-exceptions poll transformers utility-ht
];
pkgconfigDepends = [ alsaLib ];
- configureFlags = [ "-fmodifyfilter" "-f-buildexamples" ];
homepage = "http://www.haskell.org/haskellwiki/ALSA";
description = "Binding to the ALSA Library API (MIDI sequencer)";
license = stdenv.lib.licenses.bsd3;
@@ -16667,8 +17287,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ alsa base ];
+ jailbreak = true;
description = "Tests for the ALSA sequencer library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"altcomposition" = callPackage
@@ -16705,10 +17327,10 @@ self: {
version = "0.3.1";
sha256 = "1n0mxgl1jzap74sglw85l0595lhaj493bz46b90cnsqr5as9mal8";
buildDepends = [ base ghc-prim integer-gmp ];
- configureFlags = [ "-fintegergmp" "-fsplitinteger" ];
homepage = "http://repo.or.cz/w/altfloat.git";
description = "Alternative floating point support for GHC";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"alure" = callPackage
@@ -16721,6 +17343,7 @@ self: {
extraLibraries = [ alure ];
description = "A Haskell binding for ALURE";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { alure = null;};
"amazon-emailer" = callPackage
@@ -16738,9 +17361,11 @@ self: {
base bytestring configurator http-conduit lifted-base mime-mail
mime-mail-ses postgresql-simple resourcet text time
];
+ jailbreak = true;
homepage = "https://github.com/dbp/amazon-emailer";
description = "A queue daemon for Amazon's SES with a PostgreSQL table as a queue";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazon-emailer-client-snap" = callPackage
@@ -16751,6 +17376,7 @@ self: {
version = "0.1.1.1";
sha256 = "03am5nzacq2wd9jf46fnwmwq2ghfsh3yd9s0mzrrkskd26q1askb";
buildDepends = [ base mtl snap snaplet-postgresql-simple text ];
+ jailbreak = true;
homepage = "https://github.com/dbp/amazon-emailer-client-snap";
description = "Client library for amazon-emailer daemon";
license = stdenv.lib.licenses.bsd3;
@@ -16774,6 +17400,7 @@ self: {
time transformers transformers-base xml-conduit xml-picklers
xml-types
];
+ jailbreak = true;
homepage = "https://github.com/AndrewRademacher/hs-amazon-products";
description = "Connector for Amazon Products API";
license = stdenv.lib.licenses.mit;
@@ -16793,6 +17420,7 @@ self: {
mmorph monad-control mtl resourcet retry text time transformers
transformers-base
];
+ jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Comprehensive Amazon Web Services SDK";
license = "unknown";
@@ -16808,6 +17436,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Auto Scaling SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudformation" = callPackage
@@ -16820,6 +17449,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudFormation SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudfront" = callPackage
@@ -16832,6 +17462,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudFront SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudsearch" = callPackage
@@ -16844,6 +17475,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudSearch SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudsearch-domains" = callPackage
@@ -16856,6 +17488,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudSearch Domain SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudtrail" = callPackage
@@ -16868,6 +17501,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudTrail SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudwatch" = callPackage
@@ -16892,6 +17526,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudWatch Logs SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-codedeploy" = callPackage
@@ -16904,6 +17539,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CodeDeploy SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cognito-identity" = callPackage
@@ -16916,6 +17552,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Cognito Identity SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cognito-sync" = callPackage
@@ -16928,6 +17565,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Cognito Sync SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-config" = callPackage
@@ -16940,6 +17578,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Config SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-core" = callPackage
@@ -16966,6 +17605,7 @@ self: {
testDepends = [
aeson base tasty tasty-hunit template-haskell text time
];
+ jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Core functionality and data types for Amazonka libraries";
license = "unknown";
@@ -16981,6 +17621,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Data Pipeline SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-directconnect" = callPackage
@@ -16993,6 +17634,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Direct Connect SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-dynamodb" = callPackage
@@ -17005,6 +17647,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon DynamoDB SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-ec2" = callPackage
@@ -17017,6 +17660,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Compute Cloud SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-elasticache" = callPackage
@@ -17029,6 +17673,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon ElastiCache SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-elasticbeanstalk" = callPackage
@@ -17041,6 +17686,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Beanstalk SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-elastictranscoder" = callPackage
@@ -17053,6 +17699,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Transcoder SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-elb" = callPackage
@@ -17065,6 +17712,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Load Balancing SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-emr" = callPackage
@@ -17077,6 +17725,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic MapReduce SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-iam" = callPackage
@@ -17089,6 +17738,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Identity and Access Management SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-importexport" = callPackage
@@ -17101,6 +17751,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Import/Export SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-kinesis" = callPackage
@@ -17113,6 +17764,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Kinesis SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-kms" = callPackage
@@ -17137,6 +17789,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Lambda SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-opsworks" = callPackage
@@ -17149,6 +17802,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon OpsWorks SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-rds" = callPackage
@@ -17161,6 +17815,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Relational Database Service SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-redshift" = callPackage
@@ -17173,6 +17828,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Redshift SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-route53" = callPackage
@@ -17185,6 +17841,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Route 53 SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-route53-domains" = callPackage
@@ -17197,6 +17854,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Route 53 Domains SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-s3" = callPackage
@@ -17209,6 +17867,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Storage Service SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-sdb" = callPackage
@@ -17221,6 +17880,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon SimpleDB SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-ses" = callPackage
@@ -17233,6 +17893,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Email Service SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-sns" = callPackage
@@ -17245,6 +17906,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Notification Service SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-sqs" = callPackage
@@ -17257,6 +17919,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Queue Service SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-storagegateway" = callPackage
@@ -17269,6 +17932,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Storage Gateway SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-sts" = callPackage
@@ -17281,6 +17945,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Security Token Service SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-support" = callPackage
@@ -17293,6 +17958,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Support SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-swf" = callPackage
@@ -17305,6 +17971,7 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Workflow Service SDK";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ampersand" = callPackage
@@ -17323,7 +17990,7 @@ self: {
hashable mtl old-locale pandoc pandoc-types process split
SpreadsheetML time utf8-string
];
- configureFlags = [ "-flibrary" "-fexecutable" ];
+ jailbreak = true;
homepage = "ampersand.sourceforge.net";
description = "Toolsuite for automated design of business processes";
license = "GPL";
@@ -17350,10 +18017,10 @@ self: {
data-binary-ieee754 hspec hspec-expectations network split text
vector
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "https://github.com/hreinhardt/amqp";
description = "Client library for AMQP servers (currently only RabbitMQ)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amrun" = callPackage
@@ -17367,6 +18034,7 @@ self: {
buildDepends = [ base deepseq parsec ];
description = "Interpreter for AM";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"analyze-client" = callPackage
@@ -17432,9 +18100,11 @@ self: {
buildDepends = [
anansi base bytestring containers monads-tf pandoc text
];
+ jailbreak = true;
homepage = "https://john-millikin.com/software/anansi/";
description = "Looms which use Pandoc to parse and produce a variety of formats";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"anatomy" = callPackage
@@ -17456,6 +18126,7 @@ self: {
homepage = "http://atomo-lang.org/";
description = "Anatomy: Atomo documentation system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"angel" = callPackage
@@ -17514,7 +18185,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-build-generator" ];
homepage = "http://www.github.com/massysett/anonymous-sums";
description = "Anonymous sum types";
license = stdenv.lib.licenses.bsd3;
@@ -17541,7 +18211,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base unix ];
- configureFlags = [ "-f-example" ];
homepage = "https://github.com/feuerbach/ansi-terminal";
description = "Simple ANSI terminal support, with Windows compatibility";
license = stdenv.lib.licenses.bsd3;
@@ -17556,7 +18225,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ ansi-terminal base ];
- configureFlags = [ "-f-example" "-fnewbase" ];
homepage = "http://github.com/batterseapower/ansi-wl-pprint";
description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output";
license = stdenv.lib.licenses.bsd3;
@@ -17576,9 +18244,11 @@ self: {
antisplice base chatty chatty-utils ironforge mtl old-locale
shakespeare text time yesod yesod-auth
];
+ jailbreak = true;
homepage = "http://doomanddarkness.eu/pub/antisplice";
description = "A web interface to Antisplice dungeons";
license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"antfarm" = callPackage
@@ -17601,6 +18271,7 @@ self: {
homepage = "http://hub.darcs.net/kowey/antfarm";
description = "Referring expressions for definitions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"anticiv" = callPackage
@@ -17618,6 +18289,7 @@ self: {
antisplice base chatty chatty-text chatty-utils ctpl directory
ironforge mtl network plugins time transformers
];
+ jailbreak = true;
description = "This is an IRC bot for Mafia and Resistance";
license = stdenv.lib.licenses.agpl3;
}) {};
@@ -17651,6 +18323,7 @@ self: {
buildDepends = [ base containers QuickCheck ];
description = "Define the language containment (=subtyping) relation on regulare expressions";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"antiquoter" = callPackage
@@ -17676,6 +18349,7 @@ self: {
base chatty chatty-utils haskeline mtl template-haskell text time
transformers
];
+ jailbreak = true;
description = "An engine for text-based dungeons";
license = stdenv.lib.licenses.agpl3;
}) {};
@@ -17698,6 +18372,7 @@ self: {
homepage = "https://github.com/markwright/antlrc";
description = "Haskell binding to the ANTLR parser generator C runtime library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { antlr3c = null;};
"anydbm" = callPackage
@@ -17712,6 +18387,7 @@ self: {
homepage = "http://software.complete.org/anydbm";
description = "Interface for DBM-like database systems";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aosd" = callPackage
@@ -17730,9 +18406,9 @@ self: {
base colour language-haskell-extract pango template-haskell
];
pkgconfigDepends = [ libaosd ];
- configureFlags = [ "-f-debugmemory" ];
description = "Bindings to libaosd, a library for Cairo-based on-screen displays";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { libaosd = null;};
"ap-reflect" = callPackage
@@ -17742,6 +18418,7 @@ self: {
version = "0.1.0.0";
sha256 = "0r7mfdi7vr2vh84xhhsd7si3mpfkppdpzh13rnnfww1cs0dpfdhz";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/cmc-msu-ai/ap-reflect";
description = "Partial evaluation reflection a la simple-reflect";
license = stdenv.lib.licenses.bsd3;
@@ -17762,7 +18439,6 @@ self: {
test-framework-hunit transformers
];
extraLibraries = [ openssl ];
- configureFlags = [ "-f-deepseq" "-f-pedantic" ];
homepage = "https://github.com/trskop/apache-md5";
description = "Apache specific MD5 digest algorighm";
license = stdenv.lib.licenses.bsd3;
@@ -17784,10 +18460,10 @@ self: {
gtk HTTP mtl network process transformers tremulous-query
xdg-basedir
];
- configureFlags = [ "-f-relativepath" ];
homepage = "http://ojeling.net/apelsin";
description = "Server and community browser for the game Tremulous";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"api-builder" = callPackage
@@ -17802,6 +18478,7 @@ self: {
aeson attoparsec base bytestring either HTTP http-conduit
http-types text transformers
];
+ jailbreak = true;
description = "Library for easily building REST API wrappers in Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -17834,6 +18511,7 @@ self: {
vector
];
buildTools = [ alex happy ];
+ jailbreak = true;
homepage = "http://github.com/iconnect/api-tools";
description = "DSL for generating API boilerplate and docs";
license = stdenv.lib.licenses.bsd3;
@@ -17949,6 +18627,7 @@ self: {
homepage = "https://github.com/philopon/apiary";
description = "helics support for apiary web framework";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"apiary-logger" = callPackage
@@ -18025,16 +18704,16 @@ self: {
"apiary-purescript" = callPackage
({ mkDerivation, apiary, base, bytestring, data-default-class
- , filepath, Glob, parsec, purescript, template-haskell, text
- , unordered-containers, utf8-string
+ , filepath, Glob, parsec, purescript, text, unordered-containers
+ , utf8-string
}:
mkDerivation {
pname = "apiary-purescript";
- version = "1.2.1";
- sha256 = "1qz51ncl68lvwx91xcqvcvj4nakpg309c85zhxk0z0d2rv8j45bf";
+ version = "1.2.2";
+ sha256 = "1i7a9abw8ni0qr24j7kpkp83ml4p5gbz602x4pb8f7z91rqqk8y8";
buildDepends = [
apiary base bytestring data-default-class filepath Glob parsec
- purescript template-haskell text unordered-containers utf8-string
+ purescript text unordered-containers utf8-string
];
homepage = "https://github.com/philopon/apiary";
description = "purescript compiler for apiary web framework";
@@ -18081,9 +18760,11 @@ self: {
template-haskell text th-lift time transformers
unordered-containers utf8-string yql
];
+ jailbreak = true;
homepage = "https://github.com/fabianbergmark/APIs";
description = "A Template Haskell library for generating type safe API calls";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"apotiki" = callPackage
@@ -18105,9 +18786,11 @@ self: {
openpgp-crypto-api scotty strict tar text transformers wai-extra
wai-middleware-static zlib
];
+ jailbreak = true;
homepage = "https://github.com/pyr/apotiki";
description = "a faster debian repository";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"app-settings" = callPackage
@@ -18122,6 +18805,7 @@ self: {
testDepends = [
base containers directory hspec HUnit mtl parsec text
];
+ jailbreak = true;
homepage = "https://github.com/emmanueltouzery/app-settings";
description = "A library to manage application settings (INI file-like)";
license = stdenv.lib.licenses.bsd3;
@@ -18218,10 +18902,11 @@ self: {
base HUnit ieee754 mersenne-random-pure64 monad-mersenne-random mtl
test-framework test-framework-hunit vector
];
- configureFlags = [ "-f-withcairo" ];
+ jailbreak = true;
homepage = "http://github.com/danieldk/approx-rand-test";
description = "Approximate randomization test";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"approximate" = callPackage
@@ -18243,7 +18928,7 @@ self: {
base directory doctest filepath generic-deriving semigroups
simple-reflect
];
- configureFlags = [ "-f-lib-werror" "-ftest-doctests" ];
+ jailbreak = true;
homepage = "http://github.com/analytics/approximate/";
description = "Approximate discrete values and numbers";
license = stdenv.lib.licenses.bsd3;
@@ -18293,10 +18978,11 @@ self: {
testDepends = [
base containers QuickCheck tasty tasty-quickcheck vector
];
- configureFlags = [ "-fllvm" ];
+ jailbreak = true;
homepage = "https://github.com/ian-ross/arb-fft";
description = "Pure Haskell arbitrary length FFT library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"arbb-vm" = callPackage
@@ -18314,6 +19000,7 @@ self: {
homepage = "https://github.com/svenssonjoel/arbb-vm/wiki";
description = "FFI binding to the Intel Array Building Blocks (ArBB) virtual machine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { arbb_dev = null;};
"arbtt" = callPackage
@@ -18325,8 +19012,8 @@ self: {
}:
mkDerivation {
pname = "arbtt";
- version = "0.8.1.4";
- sha256 = "15ydb425nvqfzajx09q713wy5xa7awbzfjlsidk17vf7qbhfjn7z";
+ version = "0.9";
+ sha256 = "1076fy65b0qzjind3zm170ws8dq76f34n4b0gjn98v4a0nsk60xw";
isLibrary = false;
isExecutable = true;
buildDepends = [
@@ -18362,6 +19049,7 @@ self: {
HUnit mtl network old-locale pretty process progress regex-compat
regex-posix time unix Unixutils xhtml
];
+ jailbreak = true;
description = "A library and programs for creating hardlinked incremental archives or backups";
license = stdenv.lib.licenses.bsd3;
broken = true;
@@ -18382,6 +19070,7 @@ self: {
];
description = "Archive supplied URLs in WebCite & Internet Archive";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"archlinux" = callPackage
@@ -18396,6 +19085,7 @@ self: {
homepage = "http://github.com/archhaskell/";
description = "Support for working with Arch Linux packages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"archlinux-web" = callPackage
@@ -18417,6 +19107,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/archlinux";
description = "Website maintenance for Arch Linux packages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"archnews" = callPackage
@@ -18445,6 +19136,7 @@ self: {
base binary bytestring bytestring-lexing bytestring-show old-locale
time
];
+ jailbreak = true;
homepage = "http://code.haskell.org/~StefanKersten/code/arff";
description = "Generate Attribute-Relation File Format (ARFF) files";
license = stdenv.lib.licenses.bsd3;
@@ -18460,6 +19152,7 @@ self: {
testDepends = [ base containers HTF HUnit ];
description = "Command line parsing framework for console applications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"arguedit" = callPackage
@@ -18475,8 +19168,10 @@ self: {
buildDepends = [
base bimap containers glib gtk HDBC indents mtl parsec
];
+ jailbreak = true;
description = "A computer assisted argumentation transcription and editing software";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ariadne" = callPackage
@@ -18505,6 +19200,7 @@ self: {
homepage = "https://github.com/feuerbach/ariadne";
description = "Go-to-definition for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"arith-encode" = callPackage
@@ -18526,6 +19222,7 @@ self: {
homepage = "https://github.com/emc2/arith-encode";
description = "A practical arithmetic encoding (aka Godel numbering) library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"arithmatic" = callPackage
@@ -18551,7 +19248,8 @@ self: {
buildDepends = [
array base containers ghc-prim integer-gmp mtl random
];
- configureFlags = [ "-f-llvm" "-f-llvm" ];
+ configureFlags = [ "-f-llvm" ];
+ jailbreak = true;
homepage = "https://bitbucket.org/dafis/arithmoi";
description = "Efficient basic number-theoretic functions. Primes, powers, integer logarithms.";
license = stdenv.lib.licenses.mit;
@@ -18568,6 +19266,7 @@ self: {
buildDepends = [ base GLUT mtl OpenGL stm ];
description = "Space-based real time strategy game";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"array_0_5_0_0" = callPackage
@@ -18582,25 +19281,26 @@ self: {
}) {};
"array-forth" = callPackage
- ({ mkDerivation, base, Chart, HUnit, mcmc-synthesis, MonadRandom
- , OddWord, optparse-applicative, QuickCheck, split
+ ({ mkDerivation, array, base, HUnit, mcmc-synthesis
+ , modular-arithmetic, MonadRandom, OddWord, QuickCheck, split
, test-framework-hunit, test-framework-quickcheck2
, test-framework-th, vector
}:
mkDerivation {
pname = "array-forth";
- version = "0.2.0.6";
- sha256 = "1234szy0ibbyyzglpz0rv5w4wk44rkq8wdl5s3kmnvlvjyxn95nf";
+ version = "0.2.1.4";
+ sha256 = "03kjkpygi9jc8vrvnw9i8zwbfaihsl50bi39j0liclja442j9h5m";
isLibrary = true;
isExecutable = true;
buildDepends = [
- base Chart mcmc-synthesis MonadRandom OddWord optparse-applicative
+ array base mcmc-synthesis modular-arithmetic MonadRandom OddWord
split vector
];
testDepends = [
base HUnit QuickCheck test-framework-hunit
test-framework-quickcheck2 test-framework-th
];
+ jailbreak = true;
description = "A simple interpreter for arrayForth, the language used on GreenArrays chips";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -18635,6 +19335,7 @@ self: {
version = "0.1.0.0";
sha256 = "0ppl8v746lj41aqb0k2724vm4n32jxmz723qa0j860jvhkh2nww7";
buildDepends = [ arrows base pointed profunctors semigroupoids ];
+ jailbreak = true;
homepage = "https://github.com/prophile/arrow-improve/";
description = "Improved arrows";
license = stdenv.lib.licenses.mit;
@@ -18644,8 +19345,8 @@ self: {
({ mkDerivation, base, containers, mtl }:
mkDerivation {
pname = "arrow-list";
- version = "0.6.1.5";
- sha256 = "0i0rwjrrvbi9fmwdzmz6vzkkr63pl2df653anjwcw3xr7ccb16xm";
+ version = "0.7";
+ sha256 = "1n6m77hdkpjd12r0b8fwxiz3jz0j86cplgsk27m2raj86vr3dy1k";
buildDepends = [ base containers mtl ];
homepage = "https://github.com/silkapp/arrow-list";
description = "List arrows for Haskell";
@@ -18675,6 +19376,7 @@ self: {
homepage = "http://www.haskell.org/arrows/";
description = "preprocessor translating arrow notation into Haskell 98";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"arrows" = callPackage
@@ -18716,7 +19418,6 @@ self: {
attoparsec base blaze-builder bytestring bytestring-nums containers
file-embed parsec process shell-escape template-haskell
];
- configureFlags = [ "-f-no-cli" ];
homepage = "http://github.com/solidsnack/arx/";
description = "Archive execution tool";
license = stdenv.lib.licenses.bsd3;
@@ -18757,6 +19458,7 @@ self: {
buildDepends = [
base blaze-builder bytestring case-insensitive hashable text
];
+ jailbreak = true;
homepage = "https://github.com/snoyberg/ascii";
description = "Type-safe, bytestring-based ASCII values. (deprecated)";
license = stdenv.lib.licenses.bsd3;
@@ -18788,8 +19490,10 @@ self: {
sha256 = "191qw61y3jrbwzv7nabvxr6dxxigyxflbw49f0q637psqzdblsl5";
buildDepends = [ base bytestring conduit ];
testDepends = [ base bytestring conduit hspec ];
+ jailbreak = true;
description = "Conduit for encoding ByteString into Ascii85";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"asic" = callPackage
@@ -18804,6 +19508,7 @@ self: {
homepage = "http://www.pros.upv.es/fittest/";
description = "Action Script Instrumentation Compiler";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"asil" = callPackage
@@ -18823,6 +19528,7 @@ self: {
homepage = "http://www.pros.upv.es/fittest/";
description = "Action Script Instrumentation Library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"asn1-data" = callPackage
@@ -18831,10 +19537,10 @@ self: {
pname = "asn1-data";
version = "0.7.1";
sha256 = "10s7mxygw6w8a8mx090msvbl8pji8m68lsxxyr5bp7p887naia7r";
+ editedCabalFile = "6c8f01076a88b9ea0f2ce9b5fa2b09dc658332bd4dedfbc8d6e7fae25ea5ed1f";
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring cereal mtl text ];
- configureFlags = [ "-f-test" ];
homepage = "http://github.com/vincenthz/hs-asn1-data";
description = "ASN1 data reader and writer in RAW, BER and DER forms";
license = stdenv.lib.licenses.bsd3;
@@ -18910,6 +19616,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers ghc-binary parsec ];
+ jailbreak = true;
description = "Haskell Assembler";
license = stdenv.lib.licenses.bsd3;
broken = true;
@@ -18969,6 +19676,7 @@ self: {
extraLibraries = [ assimp ];
description = "The Assimp asset import library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) assimp;};
"astar" = callPackage
@@ -18996,8 +19704,10 @@ self: {
base containers directory MonadRandom mtl OpenGL random SDL
SDL-image SDL-mixer SDL-ttf unix
];
+ jailbreak = true;
description = "an incomplete 2d space game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"astview" = callPackage
@@ -19017,6 +19727,7 @@ self: {
];
description = "A GTK-based abstract syntax tree viewer for custom languages and parsers";
license = "BSD4";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"astview-utils" = callPackage
@@ -19060,6 +19771,7 @@ self: {
homepage = "http://github.com/jfischoff/async-extras";
description = "Extra Utilities for the Async Library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"async-manager" = callPackage
@@ -19094,6 +19806,7 @@ self: {
];
description = "A modified version of async that supports worker groups and many-to-many task dependencies";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"asynchronous-exceptions" = callPackage
@@ -19164,10 +19877,11 @@ self: {
network network-api-support network-uri snap snap-core split text
time time-units transformers
];
- configureFlags = [ "-fnetwork-uri" ];
+ jailbreak = true;
homepage = "https://bitbucket.org/ajknoll/atlassian-connect-core";
description = "Atlassian Connect snaplet for the Snap Framework and helper code";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"atlassian-connect-descriptor" = callPackage
@@ -19187,9 +19901,10 @@ self: {
aeson base bytestring Cabal cases HUnit network network-uri
scientific text time-units unordered-containers vector
];
- configureFlags = [ "-fnetwork-uri" ];
+ jailbreak = true;
description = "Code that helps you create a valid Atlassian Connect Descriptor";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"atmos" = callPackage
@@ -19249,16 +19964,17 @@ self: {
homepage = "https://github.com/eightyeight/atom-msp430";
description = "Convenience functions for using Atom with the MSP430 microcontroller family";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"atomic-primops" = callPackage
({ mkDerivation, base, ghc-prim, primitive }:
mkDerivation {
pname = "atomic-primops";
- version = "0.6.1.1";
- sha256 = "1flnh7x0596hw834irfznd3vprl844bgml2phskg8sjwcmi1j74c";
+ version = "0.7";
+ sha256 = "1gd2m7qnyww3dv5vcajh9j5chcwlkfsqgpi299q2x4n9xrp0d50g";
+ editedCabalFile = "99594a0f7b2fd268f7f68e460218c22bda9da07c559fb5ead6d3c508f01d9cff";
buildDepends = [ base ghc-prim primitive ];
- configureFlags = [ "-f-debug" ];
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;
@@ -19276,6 +19992,7 @@ self: {
testDepends = [
base bits-atomic HUnit test-framework test-framework-hunit time
];
+ jailbreak = true;
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "An atomic counter implemented using the FFI";
license = stdenv.lib.licenses.bsd3;
@@ -19297,10 +20014,11 @@ self: {
haskeline hint mtl parsec pretty regex-pcre template-haskell text
time vector
];
- configureFlags = [ "-flib" ];
+ jailbreak = true;
homepage = "http://atomo-lang.org/";
description = "A highly dynamic, extremely simple, very fun programming language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"attempt" = callPackage
@@ -19353,7 +20071,6 @@ self: {
array base bytestring deepseq QuickCheck scientific test-framework
test-framework-quickcheck2 text vector
];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/bos/attoparsec";
description = "Fast combinator parsing for bytestrings and text";
license = stdenv.lib.licenses.bsd3;
@@ -19400,6 +20117,7 @@ self: {
version = "0.1.0.1";
sha256 = "0zh1g9687nrdxksniq348jc04hbgf5kxbzqs0kggmz7qqw03iq0v";
buildDepends = [ attoparsec base text ];
+ jailbreak = true;
homepage = "https://github.com/robinbb/attoparsec-csv";
description = "A parser for CSV files that uses Attoparsec";
license = "unknown";
@@ -19439,9 +20157,11 @@ self: {
buildDepends = [
attoparsec base bytestring iteratee transformers
];
+ jailbreak = true;
homepage = "http://github.com/gregorycollins";
description = "An adapter to convert attoparsec Parsers into blazing-fast Iteratees";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"attoparsec-parsec" = callPackage
@@ -19467,9 +20187,11 @@ self: {
version = "0.8.5.3";
sha256 = "1qq42lp1sah80a6lnnafi6pwl61b4w4q4jk1pbb7pg5p06mmk315";
buildDepends = [ array attoparsec base containers text ];
+ jailbreak = true;
homepage = "http://patch-tag.com/r/felipe/attoparsec-text/home";
description = "(deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"attoparsec-text-enumerator" = callPackage
@@ -19479,8 +20201,10 @@ self: {
version = "0.2.0.1";
sha256 = "0cffcwji141js09r7avb15b08xl4s8cgk5vxyrqaq7zw40hhb1gz";
buildDepends = [ attoparsec-text base enumerator text ];
+ jailbreak = true;
description = "(deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"attosplit" = callPackage
@@ -19490,6 +20214,7 @@ self: {
version = "0.1.0.0";
sha256 = "01sh8k9n9040xqx1lbn74rcf59j54n5861d9db1y5cdy7qssxyg4";
buildDepends = [ attoparsec base bytestring ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/attosplit";
description = "Split a lazy bytestring at boundaries defined by an attoparsec parser";
license = stdenv.lib.licenses.bsd3;
@@ -19507,6 +20232,7 @@ self: {
homepage = "http://www.dcs.st-and.ac.uk/~eb/epic.php";
description = "Embedded Turtle language compiler in Haskell, with Epic output";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"augeas" = callPackage
@@ -19524,6 +20250,7 @@ self: {
homepage = "http://trac.haskell.org/augeas";
description = "A Haskell FFI wrapper for the Augeas API";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) augeas;};
"augur" = callPackage
@@ -19540,8 +20267,10 @@ self: {
base bytestring classify containers directory filepath HaXml mtl
process
];
+ jailbreak = true;
description = "Renaming media collections in a breeze";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aur" = callPackage
@@ -19577,7 +20306,6 @@ self: {
network-uri resourcet tagstream-conduit text transformers
unordered-containers xml-conduit
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://github.com/yesodweb/authenticate";
description = "Authentication methods for Haskell web applications";
license = stdenv.lib.licenses.bsd3;
@@ -19602,6 +20330,7 @@ self: {
version = "0.0.3";
sha256 = "1wsx43l7jl40jpzhiv2fjc1mnpsaaryrjpqaiyqsn3ahacsy4ly5";
buildDepends = [ base LDAP text transformers ];
+ jailbreak = true;
homepage = "http://github.com:mlitchard/authenticate-ldap";
description = "LDAP authentication for Haskell web applications";
license = stdenv.lib.licenses.bsd3;
@@ -19656,6 +20385,7 @@ self: {
homepage = "http://github.com/nushio3/authoring";
description = "A library for writing papers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"auto-update" = callPackage
@@ -19677,8 +20407,8 @@ self: {
}:
mkDerivation {
pname = "autonix-deps";
- version = "0.1.0.0";
- sha256 = "0kmyl117wjyrgxzng3avxq3rjqq6ifxd0b14x8nazpl4566qccfw";
+ version = "0.1.0.1";
+ sha256 = "1639yhq3v506h67374mw63pkz15p52qqapc6bwi3dylyp4ilgimi";
buildDepends = [
base bytestring conduit containers errors filepath lens
libarchive-conduit mtl optparse-applicative process regex-tdfa
@@ -19686,6 +20416,7 @@ self: {
];
description = "Library for Nix expression dependency generation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"autonix-deps-kf5" = callPackage
@@ -19704,6 +20435,7 @@ self: {
];
description = "Generate dependencies for KDE 5 Nix expressions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"autoproc" = callPackage
@@ -19738,6 +20470,7 @@ self: {
version = "0.6";
sha256 = "0ag2jxhxap8wzdlb23zvly5y09k6kh134rwdxq6dqxlqwfwhsyc9";
buildDepends = [ base semigroups vector-space ];
+ jailbreak = true;
description = "An average (arithmetic mean) monoid";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -19754,6 +20487,7 @@ self: {
testDepends = [
base QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
description = "A compile-time balanced AVL tree";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -19765,6 +20499,7 @@ self: {
version = "0.0.1.0";
sha256 = "08n9yk1dc0sisinapys4dvkyg4n96j9nmszrj7m9jrgjzks238fj";
buildDepends = [ base dependent-sum mtl process shake ];
+ jailbreak = true;
homepage = "https://github.com/mokus0/avr-shake";
description = "AVR Crosspack actions for shake build systems";
license = stdenv.lib.licenses.publicDomain;
@@ -19783,6 +20518,7 @@ self: {
];
description = "High-level Awesomium bindings";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"awesomium-glut" = callPackage
@@ -19794,6 +20530,7 @@ self: {
buildDepends = [ awesomium awesomium-raw base GLUT ];
description = "Utilities for using Awesomium with GLUT";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"awesomium-raw" = callPackage
@@ -19807,6 +20544,7 @@ self: {
extraLibraries = [ awesomium ];
description = "Low-level Awesomium bindings";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { awesomium = null;};
"aws" = callPackage
@@ -19839,7 +20577,6 @@ self: {
mtl QuickCheck quickcheck-instances resourcet tagged tasty
tasty-quickcheck text time transformers transformers-base
];
- configureFlags = [ "-f-examples" ];
homepage = "http://github.com/aristidb/aws";
description = "Amazon Web Services (AWS) for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -19857,9 +20594,11 @@ self: {
asn1-encoding asn1-types base base64-bytestring bytestring
crypto-pubkey-types old-locale RSA time
];
+ jailbreak = true;
homepage = "http://github.com/iconnect/aws-cloudfront-signer";
description = "For signing AWS CloudFront HTTP URL requests";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aws-dynamodb-streams" = callPackage
@@ -19928,10 +20667,10 @@ self: {
testDepends = [
aeson base Cabal containers QuickCheck regex-compat safe text
];
- configureFlags = [ "-f-examples" ];
homepage = "http://github.com/iconnect/aws-elastic-transcoder";
description = "Haskell suite for the Elastic Transcoder service";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aws-general" = callPackage
@@ -19956,7 +20695,6 @@ self: {
either errors http-types parsers QuickCheck quickcheck-instances
tagged tasty tasty-quickcheck text time transformers
];
- configureFlags = [ "-fnormalize-signature-v4-date" ];
homepage = "https://github.com/alephcloud/hs-aws-general";
description = "Bindings for AWS General API Version 0.1";
license = stdenv.lib.licenses.mit;
@@ -20010,6 +20748,7 @@ self: {
random resourcet stm stm-chans stm-conduit stm-queue-extras text
transformers unordered-containers
];
+ jailbreak = true;
description = "A producer & consumer client library for AWS Kinesis";
license = stdenv.lib.licenses.asl20;
}) {};
@@ -20033,9 +20772,11 @@ self: {
monad-control mtl optparse-applicative resourcet text time
transformers
];
+ jailbreak = true;
homepage = "https://github.com/alephcloud/hs-aws-kinesis-reshard";
description = "Reshard AWS Kinesis streams in response to Cloud Watch metrics";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aws-lambda" = callPackage
@@ -20076,10 +20817,10 @@ self: {
optparse-applicative resourcet statistics text time transformers
vector
];
- configureFlags = [ "-f-with-chart" ];
homepage = "http://github.com/alephcloud/hs-aws-performance-tests";
description = "Performance Tests for the Haskell bindings for Amazon Web Services (AWS)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aws-route53" = callPackage
@@ -20123,10 +20864,10 @@ self: {
monad-control QuickCheck random resourcet text time tls
transformers
];
- configureFlags = [ "-fconduit-1-1" "-f-debug" ];
homepage = "http://worksap-ate.github.com/aws-sdk";
description = "AWS SDK for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aws-sdk-text-converter" = callPackage
@@ -20191,9 +20932,11 @@ self: {
bytestring-lexing Cabal case-insensitive cryptohash directory
filepath http-types old-locale safe text time
];
+ jailbreak = true;
homepage = "http://github.com/iconnect/aws-sign4";
description = "Amazon Web Services (AWS) Signature v4 HTTP request signer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aws-sns" = callPackage
@@ -20218,6 +20961,7 @@ self: {
homepage = "https://github.com/alephcloud/hs-aws-sns";
description = "Bindings for AWS SNS Version 2013-03-31";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"azure-acs" = callPackage
@@ -20252,9 +20996,11 @@ self: {
crypto-pubkey-types http-conduit hxt hxt-xpath pretty resourcet tls
tls-extra transformers
];
+ jailbreak = true;
homepage = "github.com/haskell-distributed/azure-service-api";
description = "Haskell bindings for the Microsoft Azure Service Management API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"azure-servicebus" = callPackage
@@ -20270,6 +21016,7 @@ self: {
aeson async attoparsec azure-acs base bytestring case-insensitive
conduit connection http-client http-conduit http-types network text
];
+ jailbreak = true;
homepage = "https://github.com/kapilash/hs-azure";
description = "Haskell wrapper over Microsoft Azure ServiceBus REST API";
license = stdenv.lib.licenses.bsd3;
@@ -20294,7 +21041,6 @@ self: {
hxt-unicode network old-locale SHA text time transformers
unix-compat utf8-string
];
- configureFlags = [ "-f-library-only" "-f-no-hxt" ];
homepage = "http://arnovanlumig.com/azure";
description = "A simple library for accessing Azure blob storage";
license = stdenv.lib.licenses.bsd3;
@@ -20330,6 +21076,7 @@ self: {
buildDepends = [ array base containers random wx wxcore ];
description = "An implementation of a simple 2-player board game";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"backdropper" = callPackage
@@ -20345,9 +21092,10 @@ self: {
buildDepends = [
base directory haskell98 hslogger old-time process random
];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
description = "Rotates backdrops for X11 displays using Imagemagic";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"backtracking-exceptions" = callPackage
@@ -20362,9 +21110,11 @@ self: {
base either free kan-extensions mtl semigroupoids semigroups
transformers
];
+ jailbreak = true;
homepage = "https://github.com/tapuu/backtracking-exceptions";
description = "A monad transformer for backtracking exceptions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"backward-state" = callPackage
@@ -20442,6 +21192,7 @@ self: {
homepage = "http://github.com/nfjinjing/bamboo/tree/master";
description = "A blog engine on Hack";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bamboo-launcher" = callPackage
@@ -20462,6 +21213,7 @@ self: {
homepage = "http://github.com/nfjinjing/bamboo-launcher";
description = "bamboo-launcher";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bamboo-plugin-highlight" = callPackage
@@ -20479,6 +21231,7 @@ self: {
homepage = "http://github.com/nfjinjing/bamboo-plugin-highlight/";
description = "A highlight middleware";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bamboo-plugin-photo" = callPackage
@@ -20497,6 +21250,7 @@ self: {
homepage = "http://github.com/nfjinjing/hack/tree/master";
description = "A photo album middleware";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bamboo-theme-blueprint" = callPackage
@@ -20515,6 +21269,7 @@ self: {
homepage = "http://github.com/nfjinjing/bamboo-theme-blueprint";
description = "bamboo blueprint theme";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bamboo-theme-mini-html5" = callPackage
@@ -20537,6 +21292,7 @@ self: {
homepage = "http://github.com/nfjinjing/bamboo-theme-mini-html5";
description = "bamboo mini html5 theme";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bamse" = callPackage
@@ -20553,11 +21309,9 @@ self: {
base com directory filepath HUnit old-time pretty process
QuickCheck regex-compat
];
- configureFlags = [
- "-fhsdotnet" "-f-bamsegen" "-f-build-tests" "-f-old-base"
- ];
description = "A Windows Installer (MSI) generator framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bamstats" = callPackage
@@ -20596,9 +21350,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base cmdargs csv diagrams filepath ];
+ jailbreak = true;
homepage = "http://sebfisch.github.com/haskell-barchart";
description = "Creating Bar Charts in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"barcodes-code128" = callPackage
@@ -20619,7 +21375,6 @@ self: {
version = "0.2.0.6";
sha256 = "0avz5pdnvd3kjgp9swpdfxddp60gqpamwd7j4xl8xdj3b2di5zk0";
buildDepends = [ base containers QuickCheck text time ];
- configureFlags = [ "-f-oldquickcheck" ];
homepage = "http://github.com/massysett/barecheck";
description = "QuickCheck implementations for common types";
license = stdenv.lib.licenses.bsd3;
@@ -20640,8 +21395,10 @@ self: {
base bytestring containers directory filepath ghc ghc-prim html
plugins snap-core snap-server text transformers unix-compat
];
+ jailbreak = true;
description = "A web based environment for learning and tinkering with Haskell";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"barrie" = callPackage
@@ -20654,6 +21411,7 @@ self: {
homepage = "http://thewhitelion.org/haskell/barrie";
description = "Declarative Gtk GUI library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"barrier-monad" = callPackage
@@ -20663,8 +21421,10 @@ self: {
version = "0.1.0.1";
sha256 = "014nc21wnrklsvy5z7w4v9p9psn6bl210l7v97gj42cv6a8jk5nm";
buildDepends = [ base comonad mtl transformers ];
+ jailbreak = true;
description = "Implementation of barrier monad, can use custom front/back type";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"base_4_7_0_2" = callPackage
@@ -20674,7 +21434,6 @@ self: {
version = "4.7.0.2";
sha256 = "09rp0syv5arj7wmyksmn07g7vps1kwh2k4z1ar1dp7jsav8gxsjp";
buildDepends = [ ghc-prim integer-gmp rts ];
- configureFlags = [ "-f-integer-simple" ];
description = "Basic libraries";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -20700,6 +21459,7 @@ self: {
version = "0.3.0.1";
sha256 = "0hgrxr5331lqk7n6vqpi8a05xwwdm3mbd0p52js0rjg9lqcy0akr";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/bheklilr/base-io-access";
description = "The IO functions included in base delimited into small, composable classes";
license = stdenv.lib.licenses.gpl2;
@@ -20709,8 +21469,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "base-prelude";
- version = "0.1.11";
- sha256 = "0g6p1d3r6jbqcd8flxfbasb40ga7k90bc0q07drwhlaiadjnx1an";
+ version = "0.1.14";
+ sha256 = "09zjgsnk9c3nw92iymv0ai42wqis6yqb3z3pvslpvdv0a2g7jhgj";
buildDepends = [ base ];
homepage = "https://github.com/nikita-volkov/base-prelude";
description = "The most complete prelude formed from only the \"base\" package";
@@ -20724,7 +21484,6 @@ self: {
version = "0.2.2.4";
sha256 = "1afc5pchd3vw33bmjbjygkd0l5zh7glbsx4bfyxfscpc1x1l3y52";
buildDepends = [ base ];
- configureFlags = [ "-f-old-base" ];
homepage = "http://haskell.org/haskellwiki/Unicode-symbols";
description = "Unicode alternatives for common functions and operators";
license = stdenv.lib.licenses.bsd3;
@@ -20806,6 +21565,7 @@ self: {
base base64-bytestring bytestring conduit hspec QuickCheck
transformers
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/conduit";
description = "Base64-encode and decode streams of bytes. (deprecated)";
license = stdenv.lib.licenses.bsd3;
@@ -20835,7 +21595,6 @@ self: {
base binary bytestring containers hxt-regex-xmlschema mtl SHA
shell-escape
];
- configureFlags = [ "-fsplit-base" ];
homepage = "http://github.com/solidsnack/bash";
description = "Bash generation library";
license = stdenv.lib.licenses.bsd3;
@@ -20882,6 +21641,7 @@ self: {
homepage = "http://www.cs.mu.oz.au/~bjpop/code.html";
description = "An interpreter for a small functional language";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"battlenet" = callPackage
@@ -20931,10 +21691,11 @@ self: {
template-haskell text transformers wai-extra wai-handler-fastcgi
wai-logger word8 yaml yesod yesod-core yesod-routes yesod-static
];
- configureFlags = [ "-f-library-only" "-f-dev" ];
+ jailbreak = true;
homepage = "https://github.com/zrho/afp";
description = "A web-based implementation of battleships including an AI opponent";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bayes-stack" = callPackage
@@ -20955,6 +21716,7 @@ self: {
homepage = "https://github.com/bgamari/bayes-stack";
description = "Framework for inferring generative probabilistic models with Gibbs sampling";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bbdb" = callPackage
@@ -21039,8 +21801,10 @@ self: {
base blaze-builder bytestring ghc-prim integer-gmp murmur-hash
QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
description = "Generic serializer/deserializer with compact representation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"beautifHOL" = callPackage
@@ -21055,6 +21819,7 @@ self: {
homepage = "http://www.cs.indiana.edu/~lepike/pub_pages/holpp.html";
description = "A pretty-printer for higher-order logic";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bed-and-breakfast" = callPackage
@@ -21070,6 +21835,7 @@ self: {
homepage = "https://hackage.haskell.org/package/bed-and-breakfast";
description = "Efficient Matrix operations in 100% Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bein" = callPackage
@@ -21092,6 +21858,7 @@ self: {
];
description = "Bein is a provenance and workflow management system for bioinformatics";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"benchmark-function" = callPackage
@@ -21113,6 +21880,7 @@ self: {
version = "0.2.2.6";
sha256 = "19ygaf2g4yqkfbc6bw6fmf9jsymbj1iallzvl0zw3vjx860rchfg";
buildDepends = [ base mtl time ];
+ jailbreak = true;
homepage = "http://github.com/tibbe/benchpress";
description = "Micro-benchmarking with detailed statistics";
license = stdenv.lib.licenses.bsd3;
@@ -21158,6 +21926,7 @@ self: {
extraLibraries = [ db ];
description = "Pretty BerkeleyDB v4 binding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) db;};
"berp" = callPackage
@@ -21177,9 +21946,11 @@ self: {
ghc-paths ghc-prim haskeline haskell-src-exts language-python
monads-tf parseargs process template-haskell transformers
];
+ jailbreak = true;
homepage = "http://wiki.github.com/bjpop/berp/";
description = "An implementation of Python 3";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bert" = callPackage
@@ -21237,7 +22008,6 @@ self: {
base lens QuickCheck semigroups test-framework
test-framework-quickcheck2 test-framework-th
];
- configureFlags = [ "-f-toys" ];
homepage = "https://github.com/Noeda/bet/";
description = "Betfair API bindings. Bet on sports on betting exchanges.";
license = stdenv.lib.licenses.mit;
@@ -21264,7 +22034,6 @@ self: {
version = "0.9.0.2";
sha256 = "0n3nx077hv10rwv2kl3n1a3v40sr1qzfj9jwb6cvd1l0zx42igw8";
buildDepends = [ base ];
- configureFlags = [ "-f-pedantic" ];
homepage = "https://github.com/trskop/between";
description = "Function combinator \"between\" and derived combinators";
license = stdenv.lib.licenses.bsd3;
@@ -21295,9 +22064,10 @@ self: {
base bimap category-extras containers derive haskell98 mtl
template-haskell unix
];
- configureFlags = [ "-f-render" "-f-stats" "-f-binaries" ];
+ jailbreak = true;
description = "Bidirectionalization for Free! (POPL'09)";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bff-mono" = callPackage
@@ -21333,7 +22103,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base latex parsec utility-ht ];
- configureFlags = [ "-f-buildexamples" "-fbase2" ];
homepage = "http://www.haskell.org/haskellwiki/BibTeX";
description = "Parse, format and processing BibTeX files";
license = stdenv.lib.licenses.bsd3;
@@ -21356,6 +22125,7 @@ self: {
homepage = "http://www.kb.ecei.tohoku.ac.jp/~kztk/b18n-combined/desc.html";
description = "Prototype Implementation of Combining Syntactic and Semantic Bidirectionalization (ICFP'10)";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bidispec" = callPackage
@@ -21376,6 +22146,7 @@ self: {
version = "0.1";
sha256 = "0insqi63q6gvz39l0k584w583cw9m85vdx5dhpyx9qbb5zxyb0rm";
buildDepends = [ base bytestring dataenc mtl ];
+ jailbreak = true;
description = "Extra helper functions for bidirectional specifications";
license = "LGPL";
}) {};
@@ -21406,9 +22177,11 @@ self: {
base directory filepath HarmTrace-Base HUnit ListLike mtl parseargs
uu-parsinglib
];
+ jailbreak = true;
homepage = "http://ddmal.music.mcgill.ca/billboard";
description = "A parser for the Billboard chord dataset";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"billeksah-forms" = callPackage
@@ -21424,9 +22197,11 @@ self: {
base billeksah-pane billeksah-services Cabal containers directory
filepath glib gtk mtl parsec pretty transformers
];
+ jailbreak = true;
homepage = "http://www.leksah.org";
description = "Leksah library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"billeksah-main" = callPackage
@@ -21443,9 +22218,11 @@ self: {
base billeksah-services containers directory filepath mtl parsec
plugins pretty transformers
];
+ jailbreak = true;
homepage = "http://www.leksah.org";
description = "Leksah plugin base";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"billeksah-main-static" = callPackage
@@ -21465,6 +22242,7 @@ self: {
directory filepath leksah-dummy leksah-main leksah-plugin-pane mtl
parsec pretty transformers
];
+ jailbreak = true;
homepage = "http://www.leksah.org";
description = "Leksah plugin base";
license = "LGPL";
@@ -21484,9 +22262,11 @@ self: {
base billeksah-services containers directory filepath glib gtk mtl
parsec pretty time transformers
];
+ jailbreak = true;
homepage = "http://www.leksah.org";
description = "Leksah library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"billeksah-services" = callPackage
@@ -21500,9 +22280,11 @@ self: {
buildDepends = [
base containers directory filepath mtl parsec pretty transformers
];
+ jailbreak = true;
homepage = "http://www.leksah.org";
description = "Leksah library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bimap" = callPackage
@@ -21512,7 +22294,6 @@ self: {
version = "0.2.4";
sha256 = "1ib54plfsxzmf9wbbdayfdsrcx4s5ffna3ca5ps928fy78wsx4fr";
buildDepends = [ base containers ];
- configureFlags = [ "-fsmall-base" ];
homepage = "http://code.haskell.org/bimap";
description = "Bidirectional mapping between two key types";
license = stdenv.lib.licenses.bsd3;
@@ -21561,6 +22342,7 @@ self: {
version = "1.0.2.1";
sha256 = "02w5ybp5fdqwz1ffvfs3pfrpx67bzh75njgzr6iai1vrdyjisfkl";
buildDepends = [ base binary bytestring mtl ];
+ jailbreak = true;
description = "Flexible way to ease transmission of binary data";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -21590,8 +22372,10 @@ self: {
version = "0.1.0";
sha256 = "1rb4fpx5hlq661md7nrpgpmi7jjdq3r1ky6q9vxl6f72h085acvl";
buildDepends = [ base binary ghc-prim ];
+ jailbreak = true;
description = "Automatic deriving of Binary using GHC.Generics";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"binary-file" = callPackage
@@ -21608,6 +22392,7 @@ self: {
homepage = "https://skami.iocikun.jp/haskell/packages/binary-file";
description = "read/write binary file";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"binary-generic" = callPackage
@@ -21670,6 +22455,7 @@ self: {
version = "1.0";
sha256 = "1hn6jc4j20z8ni7rpcyamam898yl6jy7zinrhy2rdjvx0p5br13h";
buildDepends = [ base binary bytestring mtl ];
+ jailbreak = true;
homepage = "http://github.com/gcross/binary-protocol";
description = "Monad to ease implementing a binary network protocol";
license = stdenv.lib.licenses.bsd3;
@@ -21684,10 +22470,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base binary bytestring mtl zeromq-haskell ];
- configureFlags = [ "-foptimize" "-f-tests" ];
homepage = "http://github.com/NicolasT/binary-protocol-zmq";
description = "Monad to ease implementing a binary network protocol over ZeroMQ";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"binary-search" = callPackage
@@ -21727,6 +22513,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "binary-store" = callPackage
+ ({ mkDerivation, base, binary, binary-list, binary-transform
+ , bytestring, bzlib, deepseq, QuickCheck, reinterpret-cast, tasty
+ , tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "binary-store";
+ version = "0.1.0.1";
+ sha256 = "1wjhc18zj6p5gy15y1b7gz0vlqdbwhmfyv82l55ggmzjv1qyv7rl";
+ buildDepends = [
+ base binary binary-list binary-transform bytestring bzlib deepseq
+ reinterpret-cast
+ ];
+ testDepends = [
+ base binary-list QuickCheck tasty tasty-quickcheck
+ ];
+ jailbreak = true;
+ description = "Format to store data using the binary transform";
+ license = stdenv.lib.licenses.bsd3;
+ broken = true;
+ }) { binary-transform = null;};
+
"binary-streams" = callPackage
({ mkDerivation, base, binary, bytestring, Cabal
, cabal-test-quickcheck, io-streams, QuickCheck
@@ -21743,6 +22551,7 @@ self: {
homepage = "http://github.com/jonpetterbergman/binary-streams";
description = "data serialization/deserialization io-streams library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"binary-strict" = callPackage
@@ -21798,9 +22607,11 @@ self: {
base bytestring containers deepseq ghc-prim monads-tf mtl
numeric-prelude random stm strict transformers type-level-tf unix
];
+ jailbreak = true;
homepage = "https://github.com/coreyoconnor/bind-marshal";
description = "Data marshaling library that uses type level equations to optimize buffering";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"binding-core" = callPackage
@@ -21827,6 +22638,7 @@ self: {
homepage = "http://code.accursoft.com/binding";
description = "Data Binding in Gtk2Hs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"binding-wx" = callPackage
@@ -21840,6 +22652,7 @@ self: {
homepage = "http://code.accursoft.com/binding";
description = "Data Binding in WxHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bindings" = callPackage
@@ -21876,6 +22689,7 @@ self: {
homepage = "http://cielonegro.org/Bindings-EsounD.html";
description = "Low level bindings to EsounD (ESD; Enlightened Sound Daemon)";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { esound = null;};
"bindings-GLFW" = callPackage
@@ -21892,7 +22706,6 @@ self: {
extraLibraries = [
libX11 libXext libXfixes libXi libXrandr libXxf86vm mesa
];
- configureFlags = [ "-fmacosxusemenubar" "-fmacosxusechdir" ];
description = "Low-level bindings to GLFW OpenGL library";
license = stdenv.lib.licenses.bsd3;
}) { inherit (pkgs.xlibs) libX11; inherit (pkgs.xlibs) libXext;
@@ -21911,6 +22724,7 @@ self: {
homepage = "https://github.com/jputcu/bindings-K8055";
description = "Bindings to Velleman K8055 dll";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { K8055D = null;};
"bindings-apr" = callPackage
@@ -21921,9 +22735,11 @@ self: {
sha256 = "0fw71z74pv8dxw301iss66kmarhlgwj2lpsy0skmlqfkg98zc96k";
buildDepends = [ base bindings-DSL ];
pkgconfigDepends = [ apr-1 ];
+ jailbreak = true;
homepage = "http://cielonegro.org/Bindings-APR.html";
description = "Low level bindings to Apache Portable Runtime (APR)";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { apr-1 = null;};
"bindings-apr-util" = callPackage
@@ -21934,9 +22750,11 @@ self: {
sha256 = "0sr041vpakklpf2mmy78wl5wl8yzfbwvsy07wlplmlh5rgjdm4wx";
buildDepends = [ base bindings-apr bindings-DSL ];
pkgconfigDepends = [ apr-util-1 ];
+ jailbreak = true;
homepage = "http://cielonegro.org/Bindings-APR.html";
description = "Low level bindings to Apache Portable Runtime Utility (APR Utility)";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { apr-util-1 = null;};
"bindings-audiofile" = callPackage
@@ -21963,9 +22781,11 @@ self: {
buildDepends = [ array base containers unix ];
buildTools = [ alex happy ];
extraLibraries = [ bfd opcodes ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/bindings-bfd/";
description = "Bindings for libbfd, a library of the GNU `binutils'";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { bfd = null; opcodes = null;};
"bindings-cctools" = callPackage
@@ -21979,6 +22799,7 @@ self: {
homepage = "http://bitbucket.org/badi/bindings-cctools";
description = "Bindings to the CCTools WorkQueue C library";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { dttools = null;};
"bindings-codec2" = callPackage
@@ -21997,6 +22818,7 @@ self: {
homepage = "https://github.com/relrod/bindings-codec2";
description = "Very low-level FFI bindings for Codec2";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { codec2 = null;};
"bindings-common" = callPackage
@@ -22008,6 +22830,7 @@ self: {
buildDepends = [ base ];
description = "This package is obsolete. Look for bindings-DSL instead.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bindings-dc1394" = callPackage
@@ -22022,6 +22845,7 @@ self: {
homepage = "http://github.com/aleator/bindings-dc1394";
description = "Library for using firewire (iidc-1394) cameras";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { dc1394 = null;};
"bindings-directfb" = callPackage
@@ -22045,9 +22869,11 @@ self: {
buildDepends = [ array base bindings-DSL ];
extraLibraries = [ eskit ];
pkgconfigDepends = [ eskit ];
+ jailbreak = true;
homepage = "http://github.com/a1kmm/bindings-eskit";
description = "Bindings to ESKit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { eskit = null;};
"bindings-fann" = callPackage
@@ -22060,6 +22886,7 @@ self: {
pkgconfigDepends = [ fann ];
description = "Low level bindings to FANN neural network library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { fann = null;};
"bindings-friso" = callPackage
@@ -22072,6 +22899,7 @@ self: {
extraLibraries = [ friso ];
description = "Low level bindings for friso";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { friso = null;};
"bindings-glib" = callPackage
@@ -22133,6 +22961,7 @@ self: {
pkgconfigDepends = [ gts ];
description = "Low level bindings supporting GTS, the GNU Triangulated Surface Library";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) gts;};
"bindings-hamlib" = callPackage
@@ -22160,6 +22989,7 @@ self: {
buildDepends = [ base bindings-DSL ];
description = "Project bindings-* raw interface to HDF5 library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bindings-levmar" = callPackage
@@ -22170,10 +23000,10 @@ self: {
sha256 = "1da9n88wwjpm3ph7q73niv3cslpa0h8r0lsyfl35arymxfqpb4c0";
buildDepends = [ base bindings-DSL ];
extraLibraries = [ blas lapack ];
- configureFlags = [ "-f-accelerate" "-f-mkl" ];
homepage = "https://github.com/basvandijk/bindings-levmar";
description = "Low level bindings to the C levmar (Levenberg-Marquardt) library";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) blas; lapack = null;};
"bindings-libcddb" = callPackage
@@ -22211,6 +23041,7 @@ self: {
pkgconfigDepends = [ libftdi libusb ];
description = "Low level bindings to libftdi";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) libftdi; inherit (pkgs) libusb;};
"bindings-librrd" = callPackage
@@ -22224,6 +23055,7 @@ self: {
homepage = "http://cielonegro.org/Bindings-librrd.html";
description = "Low level bindings to RRDtool";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { librrd = null;};
"bindings-libstemmer" = callPackage
@@ -22238,6 +23070,7 @@ self: {
extraLibraries = [ stemmer ];
description = "Binding for libstemmer with low level binding";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { stemmer = null;};
"bindings-libusb" = callPackage
@@ -22264,6 +23097,7 @@ self: {
homepage = "https://gitorious.org/hsv4l2";
description = "bindings to libv4l2 for Linux";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { v4l2 = null;};
"bindings-libzip" = callPackage
@@ -22274,7 +23108,6 @@ self: {
sha256 = "0hqkp4hvav67xqjfwbik3i06vq8f78jjzf37ncl6wwcw5w65hhrj";
buildDepends = [ base bindings-DSL ];
pkgconfigDepends = [ libzip ];
- configureFlags = [ "-f-nopkgconfig" ];
homepage = "http://bitbucket.org/astanin/hs-libzip/";
description = "Low level bindings to libzip";
license = stdenv.lib.licenses.bsd3;
@@ -22290,6 +23123,7 @@ self: {
homepage = "https://gitorious.org/hsv4l2";
description = "bindings to Video For Linux Two (v4l2) kernel interfaces";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bindings-lxc" = callPackage
@@ -22323,9 +23157,11 @@ self: {
version = "0.8.0.0";
sha256 = "18i68ivsrdndjpfnyq6dlmmkkx22v3rp619nm26af8ka3qai12j5";
buildDepends = [ base bindings-DSL ];
+ jailbreak = true;
homepage = "http://www.github.com/massysett/bindings-mpdecimal";
description = "bindings to mpdecimal library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bindings-nettle" = callPackage
@@ -22365,9 +23201,6 @@ self: {
sha256 = "0wcxq300ijfkf4zc7p4xwsd9wzhnlss0kxjf04fka01mf9bh3ai2";
buildDepends = [ base bindings-DSL ];
pkgconfigDepends = [ portaudio ];
- configureFlags = [
- "-f-bundle" "-f-wdmks" "-f-wmme" "-f-directsound" "-f-wasapi"
- ];
description = "Low-level bindings to portaudio library";
license = stdenv.lib.licenses.bsd3;
}) { inherit (pkgs) portaudio;};
@@ -22436,6 +23269,7 @@ self: {
homepage = "https://github.com/kaoskorobase/bindings-sc3/";
description = "Low-level bindings to the SuperCollider synthesis engine library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { scsynth = null;};
"bindings-sipc" = callPackage
@@ -22451,6 +23285,7 @@ self: {
homepage = "https://github.com/justinethier/hs-bindings-sipc";
description = "Low level bindings to SIPC";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { sipc = null;};
"bindings-sophia" = callPackage
@@ -22507,7 +23342,6 @@ self: {
sha256 = "13yfhx6krj59qij9yvcl4fr6znd28nbldbv0qfhf83h3h18araf9";
buildDepends = [ base ];
extraLibraries = [ gmp yices ];
- configureFlags = [ "-fyices-dynamic" ];
description = "Bindings to the Yices theorem prover";
license = stdenv.lib.licenses.publicDomain;
}) { inherit (pkgs) gmp; inherit (pkgs) yices;};
@@ -22525,6 +23359,7 @@ self: {
buildDepends = [
base bytestring Cabal containers directory dlist filepath
];
+ jailbreak = true;
homepage = "http://gitorious.org/binembed";
description = "Embed data into object files";
license = stdenv.lib.licenses.bsd3;
@@ -22540,6 +23375,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base binembed bytestring containers filepath ];
+ jailbreak = true;
homepage = "http://gitorious.org/binembed";
description = "Example project using binembed to embed data in object files";
license = stdenv.lib.licenses.bsd3;
@@ -22560,7 +23396,7 @@ self: {
array base binary bytestring containers directory mtl old-time
parallel parsec process QuickCheck random tagsoup
];
- configureFlags = [ "-fexamples" "-f-test" ];
+ jailbreak = true;
homepage = "http://biohaskell.org/Libraries/Bio";
description = "A bioinformatics library";
license = "LGPL";
@@ -22639,6 +23475,7 @@ self: {
homepage = "https://github.com/dfornika/biophd/wiki";
description = "Library for reading phd sequence files";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"biopsl" = callPackage
@@ -22672,7 +23509,6 @@ self: {
buildDepends = [
array base binary biocore bytestring cmdargs mtl
];
- configureFlags = [ "-ffclip" "-ffrecover" "-fflower" ];
homepage = "http://biohaskell.org/";
description = "Library and executables for working with SFF files";
license = stdenv.lib.licenses.lgpl21;
@@ -22696,8 +23532,10 @@ self: {
base biocore bytestring conduit containers hspec HUnit QuickCheck
transformers zlib-conduit
];
+ jailbreak = true;
description = "Parsing and rendering of Stockholm files (used by Pfam, Rfam and Infernal)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bird" = callPackage
@@ -22718,6 +23556,7 @@ self: {
homepage = "http://github.com/moonmaster9000/bird";
description = "A simple, sinatra-inspired web framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bit-array" = callPackage
@@ -22733,6 +23572,7 @@ self: {
homepage = "https://github.com/nikita-volkov/bit-array";
description = "A bit array (aka bitset, bitmap, bit vector) API for numeric types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bit-vector" = callPackage
@@ -22747,9 +23587,11 @@ self: {
testDepends = [
base QuickCheck test-framework test-framework-quickcheck2 vector
];
+ jailbreak = true;
homepage = "https://github.com/acfoltzer/bit-vector";
description = "Simple bit vectors for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bitarray" = callPackage
@@ -22783,8 +23625,10 @@ self: {
HUnit mtl network QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 text unix unordered-containers watchdog
];
+ jailbreak = true;
description = "Library to communicate with the Satoshi Bitcoin daemon";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bitly-cli" = callPackage
@@ -22796,9 +23640,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base Bitly directory filepath regexpr ];
+ jailbreak = true;
homepage = "http://bitbucket.org/jetxee/hs-bitly/";
description = "A command line tool to access bit.ly URL shortener.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bitmap" = callPackage
@@ -22808,7 +23654,6 @@ self: {
version = "0.0.2";
sha256 = "1flrfbrsnlcal7qyvl1wb0p8c14w0mvvkmgs7d943jqnlh4gay5m";
buildDepends = [ base bytestring ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "A library for handling and manipulating bitmaps (rectangular pixel arrays)";
license = stdenv.lib.licenses.bsd3;
@@ -22821,7 +23666,6 @@ self: {
version = "0.0.1.5";
sha256 = "1wq1p0vvif750gpyh2kq3agzwga3hx0fq28irbw5dgrz462dd9pv";
buildDepends = [ base bitmap OpenGL ];
- configureFlags = [ "-fopengl29" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "OpenGL support for Data.Bitmap.";
license = stdenv.lib.licenses.bsd3;
@@ -22854,7 +23698,6 @@ self: {
sha256 = "12s5yk47y0zqzqiyaw9jchyl3crf1id9dk67m638b070d46k29p6";
buildDepends = [ base bytes mtl transformers ];
testDepends = [ base directory doctest filepath ];
- configureFlags = [ "-f-lib-werror" "-ftest-doctests" ];
homepage = "http://github.com/analytics/bits";
description = "Various bit twiddling and bitwise serialization primitives";
license = stdenv.lib.licenses.bsd3;
@@ -22869,7 +23712,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-test" ];
description = "Atomic bit operations on memory locations for low-level synchronization";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -22882,8 +23724,10 @@ self: {
sha256 = "08hgl1pvwadnrgqcs1yl7lvqgh955swbscpay4chb097pqqggdrj";
buildDepends = [ base bytestring conduit mtl ];
testDepends = [ base bytestring conduit hspec HUnit mtl ];
+ jailbreak = true;
description = "Bitstream support for Conduit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bits-extras" = callPackage
@@ -22895,7 +23739,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-test" ];
+ configureFlags = [ "--ghc-option=-lgcc_s" ];
description = "Efficient high-level bit operations not found in Data.Bits";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -22911,8 +23755,10 @@ self: {
buildDepends = [ base deepseq ghc-prim integer-gmp ];
testDepends = [ base QuickCheck tasty tasty-quickcheck ];
extraLibraries = [ gmp ];
+ jailbreak = true;
description = "A space-efficient set data structure";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) gmp;};
"bitspeak" = callPackage
@@ -22929,8 +23775,10 @@ self: {
base bindings-DSL bindings-glib bindings-gobject
];
pkgconfigDepends = [ gtk pango ];
+ jailbreak = true;
description = "Proof-of-concept tool for writing using binary choices";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtk; inherit (pkgs.gnome) pango;};
"bitstream" = callPackage
@@ -22939,8 +23787,8 @@ self: {
}:
mkDerivation {
pname = "bitstream";
- version = "0.2.0.3";
- sha256 = "0vskdlaczkv4szrnhhllfvmhvil58ra1qwjzhjkchgmvhx4b6jzq";
+ version = "0.2.0.4";
+ sha256 = "1j00r6jv9yp0h476gz7yalrlnxhkrdrl1w73d3zl98kyf207q2sy";
buildDepends = [ base base-unicode-symbols bytestring vector ];
testDepends = [
base base-unicode-symbols bytestring QuickCheck vector
@@ -22957,7 +23805,6 @@ self: {
version = "0.0.0";
sha256 = "1ix2x4v76wq5148k1aax69cf8sk14cd0z362dz1d2qmj9qxsnsw8";
buildDepends = [ base bytestring ];
- configureFlags = [ "-f-withquickcheck" "-fbase4" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "Lazy bit strings";
license = stdenv.lib.licenses.bsd3;
@@ -22991,9 +23838,11 @@ self: {
aeson base bencoding bytestring cereal directory filepath hspec
network QuickCheck quickcheck-instances text time
];
+ jailbreak = true;
homepage = "https://github.com/cobit/bittorrent";
description = "Bittorrent protocol implementation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bitvec" = callPackage
@@ -23022,6 +23871,7 @@ self: {
sha256 = "0k3xzw6lcrffbv8hqgg4kaanizql8r888ap4bw22sh3l3rq7zasn";
buildDepends = [ array base bytestring ];
testDepends = [ base QuickCheck ];
+ jailbreak = true;
homepage = "https://gitorious.org/bitwise";
description = "fast multi-dimensional unboxed bit packed Bool arrays";
license = stdenv.lib.licenses.bsd3;
@@ -23054,9 +23904,11 @@ self: {
aws base bytestring directory filepath HDBC HDBC-sqlite3 hslogger
http-conduit MissingH pureMD5 random strict text unix utf8-string
];
+ jailbreak = true;
homepage = "https://github.com/ingesson/bkr";
description = "Backup utility for backing up to cloud storage services (S3 only right now)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bktrees" = callPackage
@@ -23066,7 +23918,6 @@ self: {
version = "0.3.1";
sha256 = "1d2iz48n0ayn0hi9xa110pxy1mv5a4m21rmbpvs6ki1a7cv4ghn9";
buildDepends = [ array base containers ];
- configureFlags = [ "-fsplitbase" ];
description = "A set data structure with approximate searching";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -23083,6 +23934,7 @@ self: {
homepage = "http://github.com/nfjinjing/bla";
description = "a stupid cron";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"black-jewel" = callPackage
@@ -23104,6 +23956,7 @@ self: {
homepage = "http://git.kaction.name/black-jewel";
description = "The pirate bay client";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blacktip" = callPackage
@@ -23123,6 +23976,7 @@ self: {
homepage = "https://github.com/bitemyapp/blacktip";
description = "Decentralized, k-ordered unique ID generator";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blakesum" = callPackage
@@ -23132,9 +23986,11 @@ self: {
version = "0.5";
sha256 = "15k3vf9jqcw1a9gyppkhn5ibj7ld8mb2irfhbwd3plj86xyxxa0g";
buildDepends = [ base bytestring text vector ];
+ jailbreak = true;
homepage = "https://github.com/killerswan/Haskell-BLAKE";
description = "The BLAKE SHA-3 candidate hashes, in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blakesum-demo" = callPackage
@@ -23148,9 +24004,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base blakesum bytestring haskell98 text vector ];
+ jailbreak = true;
homepage = "https://github.com/killerswan/Haskell-BLAKE";
description = "The BLAKE SHA-3 candidate hashes, in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blank-canvas" = callPackage
@@ -23179,9 +24037,11 @@ self: {
version = "0.7.6";
sha256 = "1q6fkw2bsppymy5wi7mgkl09caij52xplw64786548z9i95r0bli";
buildDepends = [ base ieee QuickCheck storable-complex ];
+ jailbreak = true;
homepage = "http://github.com/patperry/blas";
description = "Bindings to the BLAS library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blas-hs" = callPackage
@@ -23193,12 +24053,10 @@ self: {
buildDepends = [ base storable-complex ];
testDepends = [ base vector ];
extraLibraries = [ blas ];
- configureFlags = [
- "-f-cblas" "-f-mkl" "-f-openblas" "-f-no-accelerate" "-f-no-netlib"
- ];
homepage = "https://github.com/Rufflewind/blas-hs";
description = "Low-level Haskell bindings to Blas";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) blas;};
"blastxml" = callPackage
@@ -23221,6 +24079,7 @@ self: {
sha256 = "01n6cw3fjmlj5pmdy122ch4kbf6srvwlz356rr6nxfrm0ndcxp38";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blaze-bootstrap" = callPackage
@@ -23323,6 +24182,7 @@ self: {
homepage = "https://github.com/egonSchiele/blaze-html-contrib";
description = "Some contributions to add handy things to blaze html";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blaze-html-hexpat" = callPackage
@@ -23332,9 +24192,11 @@ self: {
version = "0.1.0.0";
sha256 = "11bw5ywvi7dlz5inch3z0vlg936ch1rnp99bh4nmwskvszidd7kg";
buildDepends = [ base blaze-html bytestring hexpat text ];
+ jailbreak = true;
homepage = "https://github.com/jaspervdj/blaze-html-hexpat";
description = "A hexpat backend for blaze-html";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blaze-html-truncate" = callPackage
@@ -23401,7 +24263,6 @@ self: {
base blaze-builder bytestring double-conversion QuickCheck
test-framework test-framework-quickcheck2
];
- configureFlags = [ "-fnative" "-f-developer" ];
homepage = "http://github.com/bos/blaze-textual";
description = "Fast rendering of common datatypes";
license = stdenv.lib.licenses.bsd3;
@@ -23419,10 +24280,11 @@ self: {
base blaze-builder bytestring ghc-prim integer-gmp old-locale text
time vector
];
- configureFlags = [ "-fnative" "-f-developer" ];
+ jailbreak = true;
homepage = "http://github.com/mailrank/blaze-textual";
description = "Fast rendering of common datatypes (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blazeMarker" = callPackage
@@ -23445,7 +24307,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base unix ];
- configureFlags = [ "-f-usb" ];
description = "Control library for blink(1) LED from ThingM";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -23515,6 +24376,7 @@ self: {
];
description = "Very simple static blog software";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bloodhound" = callPackage
@@ -23536,6 +24398,7 @@ self: {
http-client http-types QuickCheck semigroups text time
unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/bitemyapp/bloodhound";
description = "ElasticSearch client library for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -23592,6 +24455,7 @@ self: {
homepage = "http://www.bluetile.org/";
description = "full-featured tiling for the GNOME desktop environment";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtk;};
"bluetileutils" = callPackage
@@ -23603,8 +24467,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base gtk ];
+ jailbreak = true;
description = "Utilities for Bluetile";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bmp" = callPackage
@@ -23636,10 +24502,11 @@ self: {
testDepends = [
array base containers QuickCheck random transformers utility-ht
];
- configureFlags = [ "-fsplitbase" "-fbuildexamples" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/games/";
description = "Three games for inclusion in a web server";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bogre-banana" = callPackage
@@ -23656,6 +24523,7 @@ self: {
base hogre hois monad-control random reactive-banana
];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bool-extras" = callPackage
@@ -23696,6 +24564,7 @@ self: {
];
description = "Boolean normal form: NNF, DNF & CNF";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"boolexpr" = callPackage
@@ -23717,6 +24586,7 @@ self: {
sha256 = "0057303m23p81v60jcsc3p7n2rs2rzrvbg5m18pc0fk95q2q2rim";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"boolsimplifier" = callPackage
@@ -23773,8 +24643,10 @@ self: {
base containers data-accessor data-accessor-template
font-opengl-basic4x6 GLFW-b MonadRandom mtl OpenGL
];
+ jailbreak = true;
description = "Boomshine clone";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bot" = callPackage
@@ -23787,6 +24659,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Bot";
description = "bots for functional reactive programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"botpp" = callPackage
@@ -23854,13 +24727,13 @@ self: {
}) {};
"boxes" = callPackage
- ({ mkDerivation, base, split }:
+ ({ mkDerivation, base, QuickCheck, split }:
mkDerivation {
pname = "boxes";
- version = "0.1.3";
- sha256 = "1sia3j0x7m68j6j9n7bi1l1yg56ivpkxd95l19xl5vpkg03qizkq";
- editedCabalFile = "3d70cb4fcd2725246b104cff33d5d79fac5da97b688ab4b440e75f8970bf0484";
+ version = "0.1.4";
+ sha256 = "1n7xiplzd3s1a39nizwjcgsh3wi2348mp21c3fk19v98ialfjgjf";
buildDepends = [ base split ];
+ testDepends = [ base QuickCheck split ];
description = "2D text pretty-printing library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -23926,6 +24799,7 @@ self: {
homepage = "http://github.com/Peaker/breakout/tree/master";
description = "A simple Breakout game implementation";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"brians-brain" = callPackage
@@ -23940,6 +24814,7 @@ self: {
homepage = "http://github.com/willdonnelly/brians-brain";
description = "A Haskell implementation of the Brian's Brain cellular automaton";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"brillig" = callPackage
@@ -23955,6 +24830,7 @@ self: {
buildDepends = [
base binary cmdargs containers directory filepath ListZipper text
];
+ jailbreak = true;
description = "Simple part of speech tagger";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -23980,6 +24856,7 @@ self: {
buildDepends = [ base ];
description = "Access to the BSD sysctl(3) interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bson" = callPackage
@@ -24011,6 +24888,7 @@ self: {
version = "0.0.8";
sha256 = "0r1gd6jxwzqana2b3i3xm8mx66lq4zkcir11c3v78g9fjyyhy7dh";
buildDepends = [ base bson ghc-prim text ];
+ jailbreak = true;
description = "Generic functionality for BSON";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -24022,8 +24900,10 @@ self: {
version = "0.0.1";
sha256 = "03ifgmifk0dx6fzws1qlx3c1nslrkvwman5g3c4iag842bl03gxp";
buildDepends = [ base bson ghc-prim ];
+ jailbreak = true;
description = "Generics functionality for BSON";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bson-mapping" = callPackage
@@ -24039,6 +24919,7 @@ self: {
];
description = "Mapping between BSON and algebraic data types";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bspack" = callPackage
@@ -24087,9 +24968,11 @@ self: {
array base base64-bytestring bytestring cereal containers directory
filepath hashable mtl QuickCheck random snappy stm time unix
];
+ jailbreak = true;
homepage = "https://github.com/brinchj/btree-concurrent";
description = "A backend agnostic, concurrent BTree";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"btrfs" = callPackage
@@ -24101,7 +24984,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring time unix ];
- configureFlags = [ "-f-examples" ];
homepage = "https://github.com/redneb/hs-btrfs";
description = "Bindings to the btrfs API";
license = stdenv.lib.licenses.bsd3;
@@ -24123,7 +25005,7 @@ self: {
data-default http-conduit http-types iso8601-time resourcet text
time transformers unordered-containers vector
];
- configureFlags = [ "-f-builddemo" ];
+ jailbreak = true;
homepage = "https://github.com/sethfowler/hsbugzilla";
description = "A Haskell interface to the Bugzilla native REST API";
license = stdenv.lib.licenses.bsd3;
@@ -24136,6 +25018,7 @@ self: {
version = "0.1.0.2";
sha256 = "1p9xi5ms7rxgzn5jxv5nv8bynyfb9ll952k0j7di5s7zbga8v1pg";
buildDepends = [ base bytestring containers dlist text ];
+ jailbreak = true;
description = "Typeclass for builders of linear data structures";
license = stdenv.lib.licenses.mit;
}) {};
@@ -24152,6 +25035,7 @@ self: {
base bytestring containers directory mtl old-locale pretty process
random stm time
];
+ jailbreak = true;
homepage = "http://code.ouroborus.net/buildbox";
description = "Rehackable components for writing buildbots and test harnesses";
license = stdenv.lib.licenses.bsd3;
@@ -24166,9 +25050,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base buildbox parseargs ];
+ jailbreak = true;
homepage = "http://code.ouroborus.net/buildbox";
description = "Tools for working with buildbox benchmark result files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"buildwrapper" = callPackage
@@ -24198,7 +25084,6 @@ self: {
mtl old-time process text time transformers unordered-containers
vector
];
- configureFlags = [ "-f-lib-werror" ];
homepage = "https://github.com/JPMoresmau/BuildWrapper";
description = "A library and an executable that provide an easy API for a Haskell IDE";
license = stdenv.lib.licenses.bsd3;
@@ -24216,6 +25101,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Bullet";
description = "A wrapper for the Bullet physics engine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) bullet;};
"bumper" = callPackage
@@ -24244,6 +25130,7 @@ self: {
sha256 = "1pgrqjdc4n97s7jsb9ddmjkw3qa4c28p4fp1ajyx5bfxdll44dwm";
buildDepends = [ base deepseq ];
testDepends = [ base ];
+ jailbreak = true;
homepage = "http://parsci.com/";
description = "Burst detection algorithms";
license = stdenv.lib.licenses.gpl2;
@@ -24277,9 +25164,11 @@ self: {
base binary bytestring containers dataenc mtl old-locale parsec
pretty time
];
+ jailbreak = true;
homepage = "http://vis.renci.org/jeff/buster";
description = "Almost but not quite entirely unlike FRP";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"buster-gtk" = callPackage
@@ -24297,6 +25186,7 @@ self: {
homepage = "http://vis.renci.org/jeff/buster";
description = "Almost but not quite entirely unlike FRP";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"buster-network" = callPackage
@@ -24314,6 +25204,7 @@ self: {
homepage = "http://vis.renci.org/jeff/buster";
description = "Almost but not quite entirely unlike FRP";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bustle" = callPackage
@@ -24338,9 +25229,9 @@ self: {
test-framework-hunit text
];
pkgconfigDepends = [ glib ];
- configureFlags = [ "-fthreaded" "-f-interactivetests" ];
description = "Draw pretty sequence diagrams of D-Bus traffic";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) glib;};
"bv" = callPackage
@@ -24352,7 +25243,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-test" ];
homepage = "http://bitbucket.org/iago/bv-haskell";
description = "Bit-vector arithmetic library";
license = stdenv.lib.licenses.bsd3;
@@ -24367,6 +25257,7 @@ self: {
buildDepends = [ base bytestring word24 ];
description = "data from/to ByteString";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"byteable" = callPackage
@@ -24390,7 +25281,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring ];
- configureFlags = [ "-f-executable" ];
homepage = "http://github.com/vincenthz/hs-bytedump";
description = "Flexible byte dump helpers for human readers";
license = stdenv.lib.licenses.bsd3;
@@ -24422,7 +25312,6 @@ self: {
transformers-compat void
];
testDepends = [ base directory doctest filepath ];
- configureFlags = [ "-f-lib-werror" "-ftest-doctests" ];
homepage = "http://github.com/analytics/bytes";
description = "Sharing code for serialization between binary and cereal";
license = stdenv.lib.licenses.bsd3;
@@ -24444,7 +25333,7 @@ self: {
QuickCheck random test-framework test-framework-hunit
test-framework-quickcheck2
];
- configureFlags = [ "-f-integer-simple" ];
+ jailbreak = true;
homepage = "https://github.com/haskell/bytestring";
description = "Fast, compact, strict and lazy byte strings with a list interface";
license = stdenv.lib.licenses.bsd3;
@@ -24461,6 +25350,7 @@ self: {
homepage = "https://github.com/tsuraan/bytestring-arbitrary";
description = "Arbitrary instances for ByteStrings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bytestring-builder" = callPackage
@@ -24470,11 +25360,9 @@ self: {
version = "0.10.4.0.1";
sha256 = "0iqh6k6dvl75z1m0i1grkr4w5ynxrd6qd7ynjl0bkd39nbwfay90";
buildDepends = [ base bytestring deepseq ];
- configureFlags = [
- "-fbytestring_has_builder" "-fbytestring_has_itoa_c"
- ];
description = "The new bytestring builder, packaged outside of GHC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bytestring-class" = callPackage
@@ -24485,8 +25373,10 @@ self: {
sha256 = "1z65br00rplhniaw9fg3phpxwf13acgycn5hnhyjfcyr962xp03x";
editedCabalFile = "e3aa2813d237dcd0a12bfd27293d8bf592cdf13bfdc01a4b609f34df238d0417";
buildDepends = [ base bytestring utf8-string ];
+ jailbreak = true;
description = "Classes for automatic conversion to and from strict and lazy bytestrings. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bytestring-conversion" = callPackage
@@ -24515,10 +25405,10 @@ self: {
version = "0.1.2";
sha256 = "0x7qklb36jwxry1ih5x3jw7s861vlvd5g9h7yn7b2x64c0phyj0r";
buildDepends = [ array base bytestring dlist ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/~dons/code/bytestring-csv";
description = "Parse CSV formatted data efficiently";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bytestring-delta" = callPackage
@@ -24575,7 +25465,6 @@ self: {
sha256 = "09ymg1n21668wn4harxg0cqlz98fz990bangpy99w2z7d6cwbc05";
buildDepends = [ array base bytestring ];
buildTools = [ alex ];
- configureFlags = [ "-f-bytestringinbase" "-fsplitbase" "-fbase4" ];
homepage = "http://code.haskell.org/~wren/";
description = "Parse and produce literals efficiently from strict or lazy bytestrings";
license = stdenv.lib.licenses.bsd3;
@@ -24588,7 +25477,6 @@ self: {
version = "0.2.2";
sha256 = "1bv9xf4cpph1cbdwv6rbmq8ppi5wjpgd97lwln5l9ky5rvnaxg3v";
buildDepends = [ base bytestring unix ];
- configureFlags = [ "-fsplit-base" ];
homepage = "http://code.haskell.org/~dons/code/bytestring-mmap/";
description = "mmap support for strict ByteStrings";
license = stdenv.lib.licenses.bsd3;
@@ -24603,7 +25491,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring containers ];
- configureFlags = [ "-f-cli" ];
homepage = "http://github.com/solidsnack/bytestring-nums";
description = "Parse numeric literals from ByteStrings";
license = stdenv.lib.licenses.bsd3;
@@ -24628,7 +25515,6 @@ self: {
version = "1.0.3";
sha256 = "1v9cl7d4fcchbdrpbgjj4ilg79cj241vzijiifdsgkq30ikv2yxs";
buildDepends = [ base bytestring terminal-progress-bar time ];
- configureFlags = [ "-fuse-system-progressbar" ];
homepage = "http://github.com/acw/bytestring-progress";
description = "A library for tracking the consumption of a lazy ByteString";
license = stdenv.lib.licenses.bsd3;
@@ -24642,9 +25528,11 @@ self: {
sha256 = "01yk1pmsp6c89z4lf6p37g4jqbqz1d93g61gn4i99p8dijbg0pbh";
buildDepends = [ base bytestring ];
testDepends = [ base bytestring hspec HUnit rematch ];
+ jailbreak = true;
homepage = "github.com/tcrayford/rematch";
description = "Rematch support for ByteString";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bytestring-show" = callPackage
@@ -24658,7 +25546,6 @@ self: {
buildDepends = [
array base binary bytestring containers integer-gmp
];
- configureFlags = [ "-f-integer-simple" ];
homepage = "http://code.haskell.org/~dolio/";
description = "Efficient conversion of values into readable byte strings";
license = stdenv.lib.licenses.bsd3;
@@ -24671,10 +25558,6 @@ self: {
version = "0.2.4";
sha256 = "1fv3xh52hqhzdbq78c3lrgx5vd49cabwp9ww5ki1888zlq29pyck";
buildDepends = [ base binary bytestring ];
- configureFlags = [
- "-f-bytestringinbase" "-fapplicativeinbase" "-f-usecinternal"
- "-fbase4"
- ];
homepage = "http://code.haskell.org/~wren/";
description = "An efficient finite map from (byte)strings to values";
license = stdenv.lib.licenses.bsd3;
@@ -24687,9 +25570,9 @@ self: {
version = "0.3";
sha256 = "1g99vbp14ki563lb41y1fxlgvdmrmq1y0xsk0ia1m438rdpnh2qd";
buildDepends = [ base bytestring containers ];
- configureFlags = [ "-fapplicative-in-base" "-f-split-base" ];
description = "Combinator parsing with Data.ByteString.Lazy";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bytestringparser-temporary" = callPackage
@@ -24699,7 +25582,6 @@ self: {
version = "0.4.1";
sha256 = "019axq65hmgmszkc1lyyyy8rpv5xkjbf1pmgz1bz0hnc8lgv58pd";
buildDepends = [ base bytestring containers ];
- configureFlags = [ "-fapplicative-in-base" "-f-split-base" ];
description = "Combinator parsing with Data.ByteString.Lazy";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -24711,7 +25593,6 @@ self: {
version = "0.2";
sha256 = "07hx3072zg9y3kj6h99yl8fd3n115x4z8z411c1cpx1hj292d57f";
buildDepends = [ base bytestring ];
- configureFlags = [ "-fsplitbase" ];
description = "A ReadP style parser library for ByteString";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -24772,6 +25653,7 @@ self: {
buildDepends = [ base ];
description = "C IO";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"c-storable-deriving" = callPackage
@@ -24797,6 +25679,7 @@ self: {
buildDepends = [ base c0parser ];
description = "Simple C0 Syntax Check";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"c0parser" = callPackage
@@ -24808,6 +25691,7 @@ self: {
buildDepends = [ base parsec ];
description = "Simple C0 Parser";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"c10k" = callPackage
@@ -24841,7 +25725,6 @@ self: {
base filepath HUnit shelly test-framework test-framework-hunit text
transformers
];
- configureFlags = [ "-f-regression" "-fbase3" ];
homepage = "https://github.com/haskell/c2hs";
description = "C->Haskell FFI tool that gives some cross-language type safety";
license = stdenv.lib.licenses.gpl2;
@@ -24899,6 +25782,7 @@ self: {
buildDepends = [
base Cabal directory filepath HTTP optparse-applicative
];
+ jailbreak = true;
homepage = "https://github.com/joelteon/cabal-audit.git";
description = "Check how up-to-date your .cabal dependencies are.";
license = stdenv.lib.licenses.mit;
@@ -24957,9 +25841,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base Cabal optparse-applicative ];
+ jailbreak = true;
homepage = "https://github.com/benarmston/cabal-constraints";
description = "Repeatable builds for cabalized Haskell projects";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-db" = callPackage
@@ -24991,8 +25877,8 @@ self: {
}:
mkDerivation {
pname = "cabal-debian";
- version = "4.19.1";
- sha256 = "0qfqw240kvbmddw0d540s2x0gbpxszidas1kprrsmjqb5ysba77r";
+ version = "4.20.1";
+ sha256 = "11wl87df4l0djgxpdq7mw8cndjka62fhdks1qg7fhljh26zb659l";
isLibrary = true;
isExecutable = true;
buildDepends = [
@@ -25001,7 +25887,6 @@ self: {
parsec pretty prettyclass process pureMD5 regex-tdfa set-extra syb
text unix Unixutils utf8-string
];
- configureFlags = [ "-f-local-debian" "-f-tests" ];
homepage = "https://github.com/ddssff/cabal-debian";
description = "Create a Debianization for a Cabal package";
license = stdenv.lib.licenses.bsd3;
@@ -25016,6 +25901,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base Cabal containers directory filepath ];
+ jailbreak = true;
homepage = "http://github.com/jaspervdj/cabal-dependency-licenses";
description = "Compose a list of a project's transitive dependencies with their licenses";
license = stdenv.lib.licenses.bsd3;
@@ -25038,10 +25924,11 @@ self: {
zlib
];
buildTools = [ cabal-install ];
- configureFlags = [ "-f-build-tests" "-f-no-cabal-dev" ];
+ jailbreak = true;
homepage = "http://github.com/creswick/cabal-dev";
description = "Manage sandboxed Haskell build environments";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-dir" = callPackage
@@ -25101,6 +25988,7 @@ self: {
homepage = "https://john-millikin.com/software/cabal-graphdeps/";
description = "Generate graphs of install-time Cabal dependencies";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-install" = callPackage
@@ -25127,7 +26015,7 @@ self: {
pretty process QuickCheck regex-posix stm test-framework
test-framework-hunit test-framework-quickcheck2 time unix zlib
];
- configureFlags = [ "-fnetwork-uri" "-f-old-directory" ];
+ jailbreak = true;
postInstall = ''
mkdir $out/etc
mv bash-completion $out/etc/bash_completion.d
@@ -25171,10 +26059,11 @@ self: {
array base Cabal containers directory filepath HTTP network
old-time pretty process random time unix zlib
];
- configureFlags = [ "-fbytestring-in-base" "-f-old-base" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/cabal/";
description = "Temporary version of cabal-install for ghc-7.2";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-install-ghc74" = callPackage
@@ -25192,10 +26081,11 @@ self: {
array base Cabal containers directory filepath HTTP network
old-time pretty process random time unix zlib
];
- configureFlags = [ "-fbytestring-in-base" "-f-old-base" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/cabal/";
description = "Temporary version of cabal-install for ghc-7.4";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-lenses" = callPackage
@@ -25222,6 +26112,7 @@ self: {
buildDepends = [
base Cabal directory fgl filepath parsec process text
];
+ jailbreak = true;
homepage = "http://github.com/gimbo/cabal-macosx";
description = "Cabal support for creating Mac OSX application bundles";
license = stdenv.lib.licenses.bsd3;
@@ -25239,7 +26130,6 @@ self: {
isExecutable = true;
buildDepends = [ base shelly system-fileio system-filepath text ];
testDepends = [ base hspec shelly system-filepath text unix ];
- configureFlags = [ "-fghc7" ];
homepage = "http://www.yesodweb.com/";
description = "build multiple packages at once";
license = stdenv.lib.licenses.bsd3;
@@ -25258,7 +26148,6 @@ self: {
buildDepends = [
base bytestring containers directory HTTP process tar
];
- configureFlags = [ "-f-generate" ];
homepage = "http://github.com/snoyberg/cabal-nirvana";
description = "Avoid Cabal dependency hell by constraining to known good versions. (deprecated)";
license = stdenv.lib.licenses.bsd3;
@@ -25273,6 +26162,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base Cabal directory filepath ];
+ jailbreak = true;
description = "Show dependencies of program being built in current directory";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -25289,9 +26179,11 @@ self: {
base bytestring Cabal derive ghc MissingH mtl tar template-haskell
uniplate
];
+ jailbreak = true;
homepage = "http://github.com/explicitcall/cabal-query";
description = "Helpers for quering .cabal files or hackageDB's 00-index.tar";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-rpm" = callPackage
@@ -25321,6 +26213,7 @@ self: {
buildDepends = [ base ];
description = "Shell scripts for support of Cabal maintenance";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-setup" = callPackage
@@ -25335,6 +26228,7 @@ self: {
homepage = "http://www.haskell.org/cabal/";
description = "The user interface for building and installing Cabal packages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-sign" = callPackage
@@ -25369,6 +26263,7 @@ self: {
base bytestring Cabal containers directory explicit-exception fgl
filepath process transformers utility-ht
];
+ jailbreak = true;
description = "Topologically sort cabal packages";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -25408,6 +26303,7 @@ self: {
buildDepends = [ base Cabal filepath ghc pqc QuickCheck ];
description = "Automated test tool for cabal projects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-test-compat" = callPackage
@@ -25430,6 +26326,7 @@ self: {
sha256 = "1fs5fciplzrlxykn3kbxdyij9vjzs1vq2n5f72vadg9c33961agv";
buildDepends = [ base Cabal QuickCheck ];
testDepends = [ base Cabal ];
+ jailbreak = true;
homepage = "https://github.com/zimothy/cabal-test-quickcheck";
description = "QuickCheck for Cabal";
license = stdenv.lib.licenses.mit;
@@ -25457,8 +26354,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base filepath HTTP network ];
+ jailbreak = true;
description = "Command-line tool for uploading packages to Hackage";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal2arch" = callPackage
@@ -25478,6 +26377,7 @@ self: {
homepage = "http://github.com/archhaskell/";
description = "Create Arch Linux packages from Cabal packages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal2doap" = callPackage
@@ -25489,9 +26389,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base Cabal hsemail hxt parsec process ];
+ jailbreak = true;
homepage = "http://gregheartsfield.com/cabal2doap/";
description = "Cabal to Description-of-a-Project (DOAP)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal2ebuild" = callPackage
@@ -25564,6 +26466,7 @@ self: {
homepage = "https://fedorahosted.org/cabal2spec/";
description = "Generates RPM Spec files from cabal files";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabalg" = callPackage
@@ -25593,10 +26496,10 @@ self: {
buildDepends = [
base bytestring Cabal containers directory filepath pretty process
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/~dons/code/cabalgraph";
description = "Generate pretty graphs of module trees from cabal files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabalmdvrpm" = callPackage
@@ -25611,6 +26514,7 @@ self: {
homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-cabalmdvrpm;a=shortlog;topi=0";
description = "Create mandriva rpm from cabal package";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabalrpmdeps" = callPackage
@@ -25625,6 +26529,7 @@ self: {
homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-CabalRpmDeps;a=summary";
description = "Autogenerate rpm dependencies from cabal files";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabalvchk" = callPackage
@@ -25696,7 +26601,6 @@ self: {
buildDepends = [ array base bytestring mtl text utf8-string ];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ cairo ];
- configureFlags = [ "-fcairo_svg" "-fcairo_ps" "-fcairo_pdf" ];
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the Cairo library";
license = stdenv.lib.licenses.bsd3;
@@ -25711,9 +26615,9 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base cairo glib gtk ];
- configureFlags = [ "-fsplitbase" ];
description = "A template for building new GUI applications using GTK and Cairo";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cake" = callPackage
@@ -25785,6 +26689,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Cal3d_animation";
description = "Haskell binding to the Cal3D animation library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { cal3d = null;};
"cal3d-examples" = callPackage
@@ -25799,6 +26704,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Cal3d_animation";
description = "Examples for the Cal3d animation library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cal3d-opengl" = callPackage
@@ -25811,6 +26717,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Cal3d_animation";
description = "OpenGL rendering for the Cal3D animation library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"calc" = callPackage
@@ -25822,9 +26729,9 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base harpy haskell98 mtl ];
- configureFlags = [ "-f-debug" ];
description = "A small compiler for arithmetic expressions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"calculator" = callPackage
@@ -25837,9 +26744,11 @@ self: {
isExecutable = true;
buildDepends = [ base haskeline mtl parsec QuickCheck ];
testDepends = [ base mtl parsec QuickCheck ];
+ jailbreak = true;
homepage = "https://github.com/sumitsahrawat/calculator";
description = "A calculator that operates on string inputs";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"caldims" = callPackage
@@ -25857,6 +26766,7 @@ self: {
];
description = "Calculation tool and library supporting units";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"caledon" = callPackage
@@ -25872,9 +26782,11 @@ self: {
buildDepends = [
base containers cpphs lens mtl parsec transformers
];
+ jailbreak = true;
homepage = "https://github.com/mmirman/caledon";
description = "a logic programming language based on the calculus of constructions";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"call" = callPackage
@@ -25898,9 +26810,7 @@ self: {
lens linear minioperational mtl objective OpenGL OpenGLRaw random
reflection template-haskell text transformers vector WAVE
];
- configureFlags = [
- "-fglcoreprofile" "-fglforwardcompat" "-f-buildhelloworld"
- ];
+ jailbreak = true;
homepage = "https://github.com/fumieval/call";
description = "The call game engine";
license = stdenv.lib.licenses.bsd3;
@@ -25934,9 +26844,11 @@ self: {
http-enumerator http-types mtl old-locale process text time
transformers unordered-containers url
];
+ jailbreak = true;
homepage = "http://github.com/michaelxavier/Campfire";
description = "Haskell implementation of the Campfire API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"canonical-filepath" = callPackage
@@ -25969,9 +26881,11 @@ self: {
base bytestring Cabal containers directory filepath hspec hxt
hxt-xpath parsec QuickCheck split
];
+ jailbreak = true;
homepage = "https://github.com/klangner/cantor";
description = "Application for analysis of java source code";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cao" = callPackage
@@ -25993,6 +26907,7 @@ self: {
homepage = "http://haslab.uminho.pt/mbb/software/cao-domain-specific-language-cryptography";
description = "CAO Compiler";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cap" = callPackage
@@ -26006,6 +26921,7 @@ self: {
buildDepends = [ array base containers haskell98 ];
description = "Interprets and debug the cap language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"capped-list" = callPackage
@@ -26052,10 +26968,11 @@ self: {
base containers HUnit linear sdl2 test-framework
test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [ "-f-fix-opengl21" "-f-build-toys" ];
+ jailbreak = true;
homepage = "https://github.com/Noeda/caramia/";
description = "High-level OpenGL bindings";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"carboncopy" = callPackage
@@ -26074,6 +26991,7 @@ self: {
homepage = "http://github.com/jdevelop/carboncopy";
description = "Drop emails from threads being watched into special CC folder";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"carettah" = callPackage
@@ -26093,6 +27011,7 @@ self: {
homepage = "http://carettah.masterq.net/";
description = "A presentation tool written with Haskell";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"carray" = callPackage
@@ -26103,20 +27022,27 @@ self: {
version = "0.1.5.2";
sha256 = "0kjqxjnamhnpjjf2bgm1gnsy6jx1fjbn5mx394pyx1vq3lkfgfb0";
buildDepends = [ array base binary bytestring ix-shapable syb ];
- configureFlags = [ "-fbase4" "-f-bytestringinbase" "-fsplitbase" ];
description = "A C-compatible array library";
license = stdenv.lib.licenses.bsd3;
}) {};
"cartel" = callPackage
- ({ mkDerivation, base, directory, filepath, time }:
+ ({ mkDerivation, base, directory, filepath, multiarg, QuickCheck
+ , quickpull, random, time, transformers
+ }:
mkDerivation {
pname = "cartel";
- version = "0.10.0.2";
- sha256 = "1ry7hcy8j00bdakvjwa0s0kaa5n68k2pp82099q6s73085n2gz9b";
- buildDepends = [ base directory filepath time ];
+ version = "0.12.0.2";
+ sha256 = "0mhiwz68f0rp1261lp4zwdzj8142wvaw62jqdymsad6731xp3cs8";
+ isLibrary = true;
+ isExecutable = true;
+ buildDepends = [ base directory filepath time transformers ];
+ testDepends = [
+ base directory filepath multiarg QuickCheck quickpull random time
+ transformers
+ ];
homepage = "http://www.github.com/massysett/cartel";
- description = "Specify your Cabal files in Haskell";
+ description = "Specify Cabal files in Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -26135,6 +27061,7 @@ self: {
homepage = "http://github.com/ghorn/casadi-bindings";
description = "mid-level bindings to CasADi";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"casadi-bindings-control" = callPackage
@@ -26151,6 +27078,7 @@ self: {
pkgconfigDepends = [ casadi_control ];
description = "low level bindings to casadi-control";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { casadi_control = null;};
"casadi-bindings-core" = callPackage
@@ -26165,6 +27093,7 @@ self: {
pkgconfigDepends = [ casadi_core ];
description = "low level bindings to casadi-core";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { casadi_core = null;};
"casadi-bindings-internal" = callPackage
@@ -26178,6 +27107,7 @@ self: {
homepage = "http://github.com/ghorn/casadi-bindings";
description = "low level bindings to CasADi";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { casadi_core = null;};
"casadi-bindings-ipopt-interface" = callPackage
@@ -26194,6 +27124,7 @@ self: {
pkgconfigDepends = [ casadi_ipopt_interface ];
description = "low level bindings to casadi-ipopt_interface";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { casadi_ipopt_interface = null;};
"casadi-bindings-snopt-interface" = callPackage
@@ -26210,6 +27141,7 @@ self: {
pkgconfigDepends = [ casadi_snopt_interface ];
description = "low level bindings to casadi-snopt_interface";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { casadi_snopt_interface = null;};
"cascading" = callPackage
@@ -26224,8 +27156,10 @@ self: {
base blaze-builder bytestring colour containers lens mtl text
utf8-string web-routes
];
+ jailbreak = true;
description = "DSL for HTML CSS (Cascading Style Sheets)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"case-conversion" = callPackage
@@ -26285,9 +27219,11 @@ self: {
buildDepends = [
base deepseq haskell98 HaXml network parallel pretty
];
+ jailbreak = true;
homepage = "http://www.cs.st-andrews.ac.uk/~hwloidl/SCIEnce/SymGrid-Par/CASH/";
description = "the Computer Algebra SHell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cassandra-cql" = callPackage
@@ -26317,6 +27253,7 @@ self: {
homepage = "http://cassandra.apache.org/";
description = "thrift bindings to the cassandra database";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cassava" = callPackage
@@ -26356,7 +27293,7 @@ self: {
containers mtl
];
testDepends = [ base QuickCheck ];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
homepage = "https://github.com/domdere/cassava-conduit";
description = "Conduit interface for cassava package";
license = stdenv.lib.licenses.bsd3;
@@ -26377,7 +27314,7 @@ self: {
base bytestring cassava io-streams QuickCheck tasty
tasty-quickcheck vector
];
- configureFlags = [ "-f-tutorial" "-f-maintainer" ];
+ jailbreak = true;
homepage = "https://github.com/pjones/cassava-streams";
description = "io-streams interface for the cassava CSV library";
license = stdenv.lib.licenses.bsd3;
@@ -26417,9 +27354,11 @@ self: {
QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 text Thrift time
];
+ jailbreak = true;
homepage = "http://github.com/ozataman/cassy";
description = "A high level driver for the Cassandra datastore";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"castle" = callPackage
@@ -26442,9 +27381,11 @@ self: {
base hspec QuickCheck tasty tasty-golden tasty-hspec
tasty-quickcheck
];
+ jailbreak = true;
homepage = "https://github.com/erochest/castle";
description = "A tool to manage shared cabal-install sandboxes";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"casui" = callPackage
@@ -26459,6 +27400,7 @@ self: {
homepage = "http://code.atnnn.com/projects/casui";
description = "Equation Manipulator";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"catch-fd" = callPackage
@@ -26471,6 +27413,7 @@ self: {
homepage = "http://github.com/sonyandy/catch-fd";
description = "MonadThrow and MonadCatch, using functional dependencies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"categorical-algebra" = callPackage
@@ -26482,6 +27425,7 @@ self: {
buildDepends = [ base newtype pointless-haskell void ];
description = "Categorical Monoids and Semirings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"categories" = callPackage
@@ -26491,7 +27435,6 @@ self: {
version = "1.0.7";
sha256 = "18ihv16g4w0s6n89c64j4998hbsgzhp5w9ph2gdkygq7f30cx7f2";
buildDepends = [ base void ];
- configureFlags = [ "-f-optimize" ];
homepage = "http://github.com/ekmett/categories";
description = "Categories";
license = stdenv.lib.licenses.bsd3;
@@ -26522,6 +27465,7 @@ self: {
homepage = "http://comonad.com/reader/";
description = "A meta-package documenting various packages inspired by category theory";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cautious-file" = callPackage
@@ -26531,7 +27475,6 @@ self: {
version = "1.0.2";
sha256 = "1sw5ngwrarq1lsd4c6v2wdmgbhkkq6kpybb62r8ccm11ddgn3yiq";
buildDepends = [ base bytestring directory filepath unix ];
- configureFlags = [ "-fposix" ];
description = "Ways to write a file cautiously, to reduce the chances of problems such as data loss due to crashes or power failures";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -26543,14 +27486,14 @@ self: {
}:
mkDerivation {
pname = "cayley-client";
- version = "0.1.0.1";
- sha256 = "0mipvxhnxfphk02d2324qiycv99d9a007c2h32lq6ncnl87xb1kc";
+ version = "0.1.1.0";
+ sha256 = "0avwd6mgn3g1avrwb85v4vp598x00v4566iqsxgp857cbrrh5096";
buildDepends = [
aeson attoparsec base bytestring exceptions http-client
http-conduit lens lens-aeson mtl text transformers
unordered-containers vector
];
- homepage = "http://mb.cybervisible.fr/cayley-client-for-haskell";
+ homepage = "https://github.com/MichelBoucey/cayley-client";
description = "An Haskell client for Cayley graph database";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -26591,9 +27534,9 @@ self: {
process random time
];
extraLibraries = [ cci ];
- configureFlags = [ "-f-examples" ];
description = "Bindings for the CCI networking library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { cci = null;};
"ccnx" = callPackage
@@ -26603,6 +27546,7 @@ self: {
version = "0.0.0";
sha256 = "18gnm6skzdnh6cis7l7v3d5813zn6irw6nywg6shffrn8v2y6xh7";
buildDepends = [ base bytestring ];
+ jailbreak = true;
homepage = "http://tomahawkins.org";
description = "A Haskell implementation of the CCNx network protocol";
license = stdenv.lib.licenses.bsd3;
@@ -26620,10 +27564,10 @@ self: {
bindings-cctools bytestring lens monad-loops unix
];
extraLibraries = [ dttools ];
- configureFlags = [ "-f-warn" ];
homepage = "http://bitbucket.org/badi/hs-cctools-workqueue";
description = "High-level interface to CCTools' WorkQueue library";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { dttools = null;};
"cedict" = callPackage
@@ -26639,8 +27583,10 @@ self: {
buildDepends = [
base bytestring containers mtl parsec utf8-string
];
+ jailbreak = true;
description = "Convenient Chinese phrase & character lookup";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cellrenderer-cairo" = callPackage
@@ -26652,8 +27598,10 @@ self: {
buildDepends = [ base cairo glib gtk mtl ];
buildTools = [ c2hs ];
pkgconfigDepends = [ gtk ];
+ jailbreak = true;
description = "Cairo-based CellRenderer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtk;};
"cereal" = callPackage
@@ -26663,7 +27611,6 @@ self: {
version = "0.4.1.1";
sha256 = "15rhfn9hrjm01ksh9xpz9syxsp9vkvpp6b736iqq38wv2wb7416z";
buildDepends = [ array base bytestring containers ghc-prim ];
- configureFlags = [ "-fsplit-base" ];
description = "A binary serialization library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -26694,6 +27641,7 @@ self: {
version = "0.1.1";
sha256 = "04mlg1r2qvrwdzcfbf1aqs4bf9n2gc7cwv73fbhld2ji5naa6fwb";
buildDepends = [ base cereal ghc-prim ];
+ jailbreak = true;
description = "Automatic deriving of Serialize using GHC.Generics";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -26707,6 +27655,7 @@ self: {
buildDepends = [ base bytestring cereal enumerator ];
description = "Deserialize things with cereal and enumerator";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cereal-ieee754" = callPackage
@@ -26716,9 +27665,11 @@ self: {
version = "0.1";
sha256 = "1gr22ziz9bj4q3y8j1vg46m648zqvbajfdks8p64xc28ci25pw2s";
buildDepends = [ array base cereal ];
+ jailbreak = true;
homepage = "http://github.com/jystic/cereal-ieee754";
description = "Floating point support for the 'cereal' serialization library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cereal-plus" = callPackage
@@ -26743,6 +27694,7 @@ self: {
homepage = "https://github.com/nikita-volkov/cereal-plus";
description = "An extended serialization library on top of \"cereal\"";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cereal-text" = callPackage
@@ -26785,7 +27737,6 @@ self: {
asn1-data base bytestring containers crypto-pubkey-types cryptohash
directory filepath mtl pem process time
];
- configureFlags = [ "-f-executable" "-f-test" ];
homepage = "http://github.com/vincenthz/hs-certificate";
description = "Certificates and Key Reader/Writer";
license = stdenv.lib.licenses.bsd3;
@@ -26797,9 +27748,10 @@ self: {
pname = "cf";
version = "0.1";
sha256 = "0wwq78b6d6hxaivyxw8rc9dsb0kq4aw0mkp8w0xmnfmz8biymlmg";
+ editedCabalFile = "6bd39af35810e6a40142d87fdd9fc91754fe85098a63a8087626bf9916bd3362";
buildDepends = [ base ];
homepage = "http://github.com/mvr/cf";
- description = "Infinite precision arithmetic using continued fractions";
+ description = "Exact real arithmetic using continued fractions";
license = stdenv.lib.licenses.mit;
}) {};
@@ -26838,6 +27790,7 @@ self: {
homepage = "http://www-ps.informatik.uni-kiel.de/~sebf/projects/cflp.html";
description = "Constraint Functional-Logic Programming in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cfopu" = callPackage
@@ -26855,6 +27808,7 @@ self: {
];
description = "cfopu processor";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cgen" = callPackage
@@ -26874,6 +27828,7 @@ self: {
homepage = "http://anttisalonen.github.com/cgen";
description = "generates Haskell bindings and C wrappers for C++ libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cgi" = callPackage
@@ -26889,10 +27844,11 @@ self: {
base bytestring containers exceptions mtl multipart network
network-uri old-locale old-time parsec xhtml
];
- configureFlags = [ "-fnetwork-uri" ];
+ jailbreak = true;
homepage = "https://github.com/cheecheeo/haskell-cgi";
description = "A library for writing CGI programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cgi-undecidable" = callPackage
@@ -26904,6 +27860,7 @@ self: {
buildDepends = [ base cgi mtl ];
description = "Undecidable instances for the cgi package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cgi-utils" = callPackage
@@ -26917,6 +27874,7 @@ self: {
homepage = "http://github.com/chrisdone/haskell-cgi-utils";
description = "Simple modular utilities for CGI/FastCGI (sessions, etc.)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cgrep" = callPackage
@@ -26968,13 +27926,10 @@ self: {
array base binary bytestring Codec-Image-DevIL containers
data-reify directory GLUT OpenGLRaw process time
];
- configureFlags = [
- "-f-tutorial" "-f-example" "-f-cbbe1" "-f-simple" "-f-chalkmark"
- "-f-test1" "-fserver" "-f-all"
- ];
homepage = "http://www.ittc.ku.edu/csdl/fpg/ChalkBoard";
description = "Combinators for building and processing 2D images";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chalkboard-viewer" = callPackage
@@ -26984,9 +27939,11 @@ self: {
version = "0.1";
sha256 = "1gvnp176j8gd0s6wzq10zpiqkn3wma99pwn3f78wgxm9rh588gh2";
buildDepends = [ array base chalkboard GLUT OpenGL time ];
+ jailbreak = true;
homepage = "http://ittc.ku.edu/~andygill/chalkboard.php";
description = "OpenGL based viewer for chalkboard rendered images";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chalmers-lava2000" = callPackage
@@ -27041,9 +27998,11 @@ self: {
base configurator containers filepath heist lens mtl QuickCheck
random snap snap-core snap-extras snap-server text xmlhtml
];
+ jailbreak = true;
homepage = "https://github.com/soostone/charade";
description = "Rapid prototyping websites with Snap and Heist";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"charset" = callPackage
@@ -27069,6 +28028,7 @@ self: {
version = "1.0";
sha256 = "1w302v6pmi448k2rq2cc7wp1javsd9rgk7r7i43lxvbjhniydn7p";
buildDepends = [ base bytestring ];
+ jailbreak = true;
homepage = "http://www.github.com/batterseapower/charsetdetect";
description = "Character set detection using Mozilla's Universal Character Set Detector";
license = "LGPL";
@@ -27097,6 +28057,7 @@ self: {
buildDepends = [
base Chart colour data-default-class lens vector
];
+ jailbreak = true;
description = "Easily render histograms with Chart";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -27119,7 +28080,6 @@ self: {
containers ghc-prim HUnit test-framework test-framework-hunit
vector
];
- configureFlags = [ "-f-debug" ];
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "Chase & Lev work-stealing lock-free double-ended queues (deques)";
license = stdenv.lib.licenses.bsd3;
@@ -27151,9 +28111,11 @@ self: {
quickcheck-instances test-framework test-framework-hunit
test-framework-quickcheck2 test-framework-skip text tokenize
];
+ jailbreak = true;
homepage = "http://github.com/creswick/chatter";
description = "A library of simple NLP algorithms";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chatty" = callPackage
@@ -27169,6 +28131,7 @@ self: {
ansi-terminal base chatty-utils directory mtl process random setenv
template-haskell text time transformers unix
];
+ jailbreak = true;
description = "Some monad transformers and typeclasses for abstraction of global dependencies";
license = stdenv.lib.licenses.agpl3;
}) {};
@@ -27191,6 +28154,7 @@ self: {
version = "0.7.1.2";
sha256 = "17jilk0p6wvnpc064wjk6flilz78yx32f092wn0z8dbc9hpw32wf";
buildDepends = [ base mtl text transformers ];
+ jailbreak = true;
description = "Some utilities every serious chatty-based application may need";
license = stdenv.lib.licenses.agpl3;
}) {};
@@ -27210,7 +28174,6 @@ self: {
aeson base blaze-html bytestring containers data-default http-types
mtl syb text uniplate wai wai-extra xss-sanitize
];
- configureFlags = [ "-f-dingus" ];
homepage = "http://github.com/jgm/cheapskate";
description = "Experimental markdown processor";
license = stdenv.lib.licenses.bsd3;
@@ -27242,9 +28205,11 @@ self: {
base Cabal containers explicit-exception filepath haskell-src-exts
non-empty transformers utility-ht
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Import_modules_properly";
description = "Check whether module and package imports conform to the PVP";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"checked" = callPackage
@@ -27256,6 +28221,7 @@ self: {
buildDepends = [ base ];
description = "Bounds-checking integer types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"checkers" = callPackage
@@ -27281,7 +28247,6 @@ self: {
ansi-terminal base bytestring options patience random
template-haskell text transformers
];
- configureFlags = [ "-fcolor-output" ];
homepage = "https://john-millikin.com/software/chell/";
description = "A simple and intuitive library for automated testing";
license = stdenv.lib.licenses.mit;
@@ -27318,7 +28283,6 @@ self: {
version = "0.2.0";
sha256 = "1v9qhnknqn8bsxzdcwskhssmmhbrr0d1rrxqm6ssf6j2jvv3diay";
buildDepends = [ array attoparsec base bytestring containers ];
- configureFlags = [ "-f-no-pgn" ];
homepage = "http://arnovanlumig.com/chesshs.html";
description = "Simple library for validating chess moves and parsing PGN files";
license = stdenv.lib.licenses.bsd3;
@@ -27338,6 +28302,7 @@ self: {
homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/";
description = "An implementation of concurrency ideas from Communicating Sequential Processes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chp-mtl" = callPackage
@@ -27347,9 +28312,11 @@ self: {
version = "1.0.0";
sha256 = "1x14xl9hm9n3zczj6xhffvpac09q5a13i94fhkq2kzj2s3rk1b4z";
buildDepends = [ base chp chp-plus mtl ];
+ jailbreak = true;
homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/";
description = "MTL class instances for the CHP library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chp-plus" = callPackage
@@ -27367,6 +28334,7 @@ self: {
homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/";
description = "A set of high-level concurrency utilities built on Communicating Haskell Processes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chp-spec" = callPackage
@@ -27378,9 +28346,11 @@ self: {
version = "1.0.0";
sha256 = "0jil6p0cw8bbpzb0kf9lxljdnbbp0xyq7c6x7bfc7291kqkafgdi";
buildDepends = [ base containers deepseq mtl pretty TypeCompose ];
+ jailbreak = true;
homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/";
description = "A mirror implementation of chp that generates a specification of the program";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chp-transformers" = callPackage
@@ -27390,9 +28360,11 @@ self: {
version = "1.0.0";
sha256 = "0d4hcqpjxmns1fhq918s6z9f4bxlbjlkxzq5xkpqwjxpzy83wq23";
buildDepends = [ base chp chp-plus transformers ];
+ jailbreak = true;
homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/";
description = "Transformers instances for the CHP library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chronograph" = callPackage
@@ -27402,6 +28374,7 @@ self: {
version = "0.2.0.1";
sha256 = "0qy2ahnp324jh0ybqwsa4nc3r2x1hkbrg6sl6f8dg1xnr0gpaag2";
buildDepends = [ base deepseq ghc-prim thyme vector-space ];
+ jailbreak = true;
description = "measure timings of data evaluation";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -27436,9 +28409,11 @@ self: {
parsec text transformers
];
testDepends = [ base HUnit text transformers unix ];
+ jailbreak = true;
homepage = "http://github.com/marcotmarcot/chuchu";
description = "Behaviour Driven Development like Cucumber for Haskell";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chunked-data" = callPackage
@@ -27469,6 +28444,7 @@ self: {
homepage = "http://www.wellquite.org/chunks/";
description = "Simple template library with static safety";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chunky" = callPackage
@@ -27481,6 +28457,7 @@ self: {
isExecutable = true;
buildDepends = [ base binary bytestring text ];
testDepends = [ base binary bytestring HUnit text ];
+ jailbreak = true;
description = "Human-readable storage of text/binary objects";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -27494,6 +28471,7 @@ self: {
buildDepends = [ base ];
description = "Removed; please see fmlist";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cil" = callPackage
@@ -27503,9 +28481,11 @@ self: {
version = "0.1.1";
sha256 = "0farjdyq6w33jm0qqdkfd6l7b8rr6k55dqfha643mj6nh1y904az";
buildDepends = [ base bytestring language-c ];
+ jailbreak = true;
homepage = "http://tomahawkins.org";
description = "An interface to CIL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cinvoke" = callPackage
@@ -27519,6 +28499,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Library/cinvoke";
description = "A binding to cinvoke";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { cinvoke = null;};
"cio" = callPackage
@@ -27531,6 +28512,7 @@ self: {
homepage = "https://github.com/nikita-volkov/cio";
description = "A monad for concurrent IO on a thread pool";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cipher-aes" = callPackage
@@ -27549,7 +28531,6 @@ self: {
base byteable bytestring crypto-cipher-tests crypto-cipher-types
QuickCheck test-framework test-framework-quickcheck2
];
- configureFlags = [ "-fsupport_aesni" ];
homepage = "https://github.com/vincenthz/hs-cipher-aes";
description = "Fast AES cipher implementation with advanced mode of operations";
license = stdenv.lib.licenses.bsd3;
@@ -27564,7 +28545,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring cereal crypto-api tagged ];
- configureFlags = [ "-f-test" ];
homepage = "https://github.com/TomMD/cipher-aes128";
description = "AES and common modes using AES-NI when available";
license = stdenv.lib.licenses.bsd3;
@@ -27659,6 +28639,7 @@ self: {
version = "0.1.0.1";
sha256 = "1ld4kdn0bd7ka448bl6df30iw3kd3mw7117qlwxyfzwbisdcsrif";
buildDepends = [ base split ];
+ jailbreak = true;
homepage = "http://github.com/fegu/cipher-rc5";
description = "Pure RC5 implementation";
license = stdenv.lib.licenses.bsd3;
@@ -27707,6 +28688,7 @@ self: {
homepage = "https://github.com/nushio3/citation-resolve";
description = "convert document IDs such as DOI, ISBN, arXiv ID to bibliographic reference";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"citeproc-hs" = callPackage
@@ -27723,13 +28705,10 @@ self: {
HTTP json mtl network old-locale pandoc-types parsec syb time
utf8-string
];
- configureFlags = [
- "-f-unicode_collation" "-f-embed_data_files" "-fhexpat" "-fnetwork"
- "-fbibutils" "-fsmall_base"
- ];
homepage = "http://gorgias.mine.nu/repos/citeproc-hs/";
description = "A Citation Style Language implementation in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cityhash" = callPackage
@@ -27745,7 +28724,6 @@ self: {
base bytestring largeword QuickCheck test-framework
test-framework-quickcheck2
];
- configureFlags = [ "-f-sse42" ];
homepage = "http://github.com/thoughtpolice/hs-cityhash";
description = "Bindings to CityHash";
license = stdenv.lib.licenses.mit;
@@ -27790,9 +28768,11 @@ self: {
base containers directory filepath ghc HaXml HUnit lens mtl
QuickCheck tasty tasty-hunit tasty-th
];
+ jailbreak = true;
homepage = "http://clafer.org";
description = "clafer compiles Clafer models to other formats, such as Alloy, XML, HTML, Dot";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"claferIG" = callPackage
@@ -27819,6 +28799,7 @@ self: {
homepage = "https://github.com/gsdlab/claferIG";
description = "claferIG is an interactive tool that generates instances of Clafer models";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"claferwiki" = callPackage
@@ -27834,9 +28815,11 @@ self: {
base clafer containers directory gitit MissingH mtl network process
SHA split time transformers utf8-string
];
+ jailbreak = true;
homepage = "http://github.com/gsdlab/claferwiki";
description = "A wiki-based IDE for literate modeling with Clafer";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clanki" = callPackage
@@ -27867,9 +28850,11 @@ self: {
filepath ghc haskell98 pretty prettyclass template-haskell tfp
th-lift time transformers utility-ht vhdl
];
+ jailbreak = true;
homepage = "http://clash.ewi.utwente.nl/";
description = "CAES Language for Synchronous Hardware (CLaSH)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clash-ghc" = callPackage
@@ -27889,7 +28874,6 @@ self: {
directory filepath ghc ghc-paths hashable haskeline lens mtl
process text transformers unbound unix unordered-containers
];
- configureFlags = [ "-f-standalone" ];
homepage = "http://christiaanb.github.io/clash2";
description = "CAES Language for Synchronous Hardware";
license = "unknown";
@@ -27955,6 +28939,7 @@ self: {
buildDepends = [
base lifted-base monad-control parallel resourcet transformers
];
+ jailbreak = true;
description = "Fork of the monad-parallel package using monad-control";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -28069,10 +29054,11 @@ self: {
];
buildTools = [ hsx2hs ];
extraLibraries = [ cryptopp openssl ];
- configureFlags = [ "-fnetwork-uri" ];
+ jailbreak = true;
homepage = "http://www.clckwrks.com/";
description = "A secure, reliable content management system (CMS) and blogging platform";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) cryptopp; inherit (pkgs) openssl;};
"clckwrks-cli" = callPackage
@@ -28091,6 +29077,7 @@ self: {
homepage = "http://www.clckwrks.com/";
description = "a command-line interface for adminstrating some aspects of clckwrks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clckwrks-dot-com" = callPackage
@@ -28111,10 +29098,11 @@ self: {
happstack-server hsp mtl network text web-plugins
];
buildTools = [ hsx2hs ];
- configureFlags = [ "-f-backups" ];
+ jailbreak = true;
homepage = "http://www.clckwrks.com/";
description = "clckwrks.com";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clckwrks-plugin-bugs" = callPackage
@@ -28137,10 +29125,11 @@ self: {
web-routes web-routes-th
];
buildTools = [ hsx2hs ];
- configureFlags = [ "-fnetwork-uri" ];
+ jailbreak = true;
homepage = "http://clckwrks.com/";
description = "bug tracking plugin for clckwrks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clckwrks-plugin-ircbot" = callPackage
@@ -28161,9 +29150,11 @@ self: {
safecopy text web-plugins web-routes web-routes-th
];
buildTools = [ hsx2hs ];
+ jailbreak = true;
homepage = "http://clckwrks.com/";
description = "ircbot plugin for clckwrks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clckwrks-plugin-media" = callPackage
@@ -28184,9 +29175,11 @@ self: {
web-routes-th
];
buildTools = [ hsx2hs ];
+ jailbreak = true;
homepage = "http://clckwrks.com/";
description = "media plugin for clckwrks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clckwrks-plugin-page" = callPackage
@@ -28209,9 +29202,11 @@ self: {
web-routes-happstack web-routes-th
];
buildTools = [ hsx2hs ];
+ jailbreak = true;
homepage = "http://www.clckwrks.com/";
description = "support for CMS/Blogging in clckwrks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clckwrks-theme-bootstrap" = callPackage
@@ -28222,9 +29217,11 @@ self: {
sha256 = "0bj1lxrzlhv4l37xb4jbb8h55l3mb2abyapsmlavcj0cld7ba7i2";
buildDepends = [ base clckwrks hsp text ];
buildTools = [ hsx2hs ];
+ jailbreak = true;
homepage = "http://www.clckwrks.com/";
description = "simple bootstrap based template for clckwrks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clckwrks-theme-clckwrks" = callPackage
@@ -28235,9 +29232,11 @@ self: {
sha256 = "0mxb48sirbhvm4vkwwgqxh7x3bahfk34x8i20zcirvh8y6xxp3pm";
buildDepends = [ base clckwrks containers hsp text ];
buildTools = [ hsx2hs ];
+ jailbreak = true;
homepage = "http://www.clckwrks.com/";
description = "simple bootstrap based template for clckwrks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clckwrks-theme-geo-bootstrap" = callPackage
@@ -28247,9 +29246,11 @@ self: {
version = "0.1.1";
sha256 = "1qxik7hdz300n5lfb5xzh2md44b4xwwlr0c92y9x2na2xz41da7k";
buildDepends = [ base clckwrks hsp text ];
+ jailbreak = true;
homepage = "http://divshot.github.com/geo-bootstrap/";
description = "geo bootstrap based template for clckwrks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cld2" = callPackage
@@ -28301,7 +29302,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers mtl parsec ];
- configureFlags = [ "-f-parsec2" ];
homepage = "http://sandbox.pocoo.org/clevercss-hs/";
description = "A CSS preprocessor";
license = stdenv.lib.licenses.bsd3;
@@ -28316,7 +29316,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers ];
- configureFlags = [ "-f-executable" ];
homepage = "https://github.com/NicolasDP/hs-cli";
description = "Simple Command Line Interface Library";
license = stdenv.lib.licenses.bsd3;
@@ -28336,8 +29335,10 @@ self: {
base containers GLFW Hipmunk MonadRandom mtl OpenGL random StateVar
transformers
];
+ jailbreak = true;
description = "Toy game (tetris on billiard board). Hipmunk in action.";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clientsession" = callPackage
@@ -28360,7 +29361,6 @@ self: {
base bytestring cereal containers hspec HUnit QuickCheck
transformers
];
- configureFlags = [ "-f-test" ];
homepage = "http://github.com/yesodweb/clientsession/tree/master";
description = "Securely store session data in a client-side cookie";
license = stdenv.lib.licenses.bsd3;
@@ -28386,9 +29386,11 @@ self: {
reflection semigroupoids stream-fusion tagged vector
];
testDepends = [ base hspec nats numeric-prelude QuickCheck ];
+ jailbreak = true;
homepage = "http://github.com/spacekitteh/haskell-clifford";
description = "A Clifford algebra library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clippard" = callPackage
@@ -28398,6 +29400,7 @@ self: {
version = "0.1.1";
sha256 = "0qhi727irlkvi4ygx5qvd6h1zzz22588lymi39s0gcjir473a538";
buildDepends = [ base process ];
+ jailbreak = true;
homepage = "https://github.com/Raynes/clippard";
description = "A simple Haskell library for copying text to the clipboard in a cross-platform way";
license = stdenv.lib.licenses.mit;
@@ -28413,6 +29416,7 @@ self: {
homepage = "https://github.com/chetant/clipper";
description = "Haskell API to clipper (2d polygon union/intersection/xor/clipping API)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clippings" = callPackage
@@ -28435,6 +29439,7 @@ self: {
];
description = "A parser/generator for Kindle-format clipping files (`My Clippings.txt`),";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clock" = callPackage
@@ -28445,7 +29450,6 @@ self: {
sha256 = "0wqhg8gb10lby01f0v4fl4yp23l4ilizywp5xnsbja03svnb4f0d";
editedCabalFile = "653fd69fcb84f23fb93241604f83f686921593f7ded7c3bf61ce7cecf1f00440";
buildDepends = [ base ];
- configureFlags = [ "-f-llvm" ];
homepage = "http://corsis.github.com/clock/";
description = "High-resolution clock functions: monotonic, realtime, cputime";
license = stdenv.lib.licenses.bsd3;
@@ -28466,6 +29470,7 @@ self: {
homepage = "http://patch-tag.com/r/shahn/clocked/home";
description = "timer functionality to clock IO commands";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { QtCore = null;};
"clogparse" = callPackage
@@ -28482,6 +29487,7 @@ self: {
];
description = "Parse IRC logs such as the #haskell logs on tunes.org";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clone-all" = callPackage
@@ -28499,9 +29505,11 @@ self: {
aeson base bytestring directory github optparse-applicative process
system-fileio system-filepath text transformers
];
+ jailbreak = true;
homepage = "https://github.com/silky/clone-all";
description = "Clone all github repositories from a given user";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"closure" = callPackage
@@ -28511,6 +29519,7 @@ self: {
version = "0.1.0.0";
sha256 = "1z9clkwjpj01g258h8bldlc759vwsgdlyppn29sr11kyani1zjwf";
buildDepends = [ base hashable unordered-containers ];
+ jailbreak = true;
homepage = "http://github.com/tel/closure";
description = "Depth- and breadth-first set closures";
license = stdenv.lib.licenses.mit;
@@ -28534,10 +29543,11 @@ self: {
distributed-process-task distributed-static network-transport
rank1dynamic
];
- configureFlags = [ "-f-p2p" "-f-simplelocalnet" "-f-tcp" ];
+ jailbreak = true;
homepage = "http://github.com/haskell-distributed/cloud-haskell";
description = "The Cloud Haskell Application Platform";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cloudfront-signer" = callPackage
@@ -28555,6 +29565,7 @@ self: {
homepage = "http://github.com/cdornan/cloudfront-signer";
description = "CloudFront URL signer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cloudyfs" = callPackage
@@ -28575,6 +29586,7 @@ self: {
homepage = "https://github.com/bhickey/cloudyfs";
description = "A cloud in the file system";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cltw" = callPackage
@@ -28607,6 +29619,7 @@ self: {
homepage = "http://zwizwa.be/-/meta";
description = "C to Lua data wrapper generator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cluss" = callPackage
@@ -28619,6 +29632,7 @@ self: {
homepage = "https://github.com/Kinokkory/cluss";
description = "simple alternative to type classes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clustertools" = callPackage
@@ -28637,6 +29651,7 @@ self: {
homepage = "http://malde.org/~ketil/";
description = "Tools for manipulating sequence clusters";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clutterhs" = callPackage
@@ -28650,9 +29665,9 @@ self: {
buildDepends = [ array base cairo glib gtk haskell98 mtl X11 ];
buildTools = [ c2hs ];
pkgconfigDepends = [ clutter glib pango ];
- configureFlags = [ "-f-debug" ];
description = "Bindings to the Clutter animation library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) clutter; inherit (pkgs) glib;
inherit (pkgs.gnome) pango;};
@@ -28682,6 +29697,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/cmath";
description = "A binding to the standard C math library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cmathml3" = callPackage
@@ -28700,6 +29716,7 @@ self: {
];
description = "Data model, parser, serialiser and transformations for Content MathML 3";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cmdargs" = callPackage
@@ -28716,7 +29733,6 @@ self: {
buildDepends = [
base filepath process template-haskell transformers
];
- configureFlags = [ "-fquotation" "-f-testprog" ];
homepage = "http://community.haskell.org/~ndm/cmdargs/";
description = "Command line argument processing";
license = stdenv.lib.licenses.bsd3;
@@ -28739,6 +29755,7 @@ self: {
homepage = "http://community.haskell.org/~ndm/cmdargs/";
description = "Helper to enter cmdargs command lines using a web browser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cmdlib" = callPackage
@@ -28750,7 +29767,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base mtl split syb transformers ];
- configureFlags = [ "-f-test" "-fmtl2" ];
description = "a library for command line parsing & online help";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -28775,6 +29791,7 @@ self: {
homepage = "http://github.com/eli-frey/cmdtheline";
description = "Declarative command-line option parsing and documentation library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cml" = callPackage
@@ -28798,6 +29815,7 @@ self: {
buildDepends = [ array base ];
description = "A library for C-like programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cmu" = callPackage
@@ -28829,10 +29847,10 @@ self: {
filepath HUnit mtl parsec pretty prettyclass process split
stringtable-atom unix zlib
];
- configureFlags = [ "-fbasicbuild" ];
homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/";
description = "Compiler/Translator for CnC Specification Files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cndict" = callPackage
@@ -28878,6 +29896,7 @@ self: {
];
description = "Cross-platform structure serialisation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"codec-mbox" = callPackage
@@ -28909,6 +29928,7 @@ self: {
homepage = "https://github.com/guillaume-nargeot/codecov-haskell";
description = "Codecov.io support for Haskell.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"codemonitor" = callPackage
@@ -28925,10 +29945,10 @@ self: {
base cairo containers directory filepath gtk haskell98 hinotify
MissingH process regex-posix time
];
- configureFlags = [ "-f-dev" ];
homepage = "http://github.com/rickardlindberg/codemonitor";
description = "Tool that automatically runs arbitrary commands when files change on disk";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"codepad" = callPackage
@@ -28939,9 +29959,11 @@ self: {
sha256 = "03jvbbv4cgrmk0ihz34shd1ydv5jhl1h1xiwqrln60622jlh8mr1";
editedCabalFile = "52fe2b461d77b36400724ddd77e6ec5a92cb9c1bbf5f97efb4cfe87adba3a07a";
buildDepends = [ base curl mtl network tagsoup ];
+ jailbreak = true;
homepage = "http://github.com/chrisdone/codepad";
description = "Submit and retrieve paste output from CodePad.org.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"codex" = callPackage
@@ -28961,6 +29983,7 @@ self: {
hackage-db machines machines-directory MissingH monad-loops process
tar text transformers yaml zlib
];
+ jailbreak = true;
homepage = "http://github.com/aloiscochard/codex";
description = "A ctags file generator for cabal project dependencies";
license = stdenv.lib.licenses.asl20;
@@ -29013,6 +30036,7 @@ self: {
homepage = "https://github.com/Cognimeta/cognimeta-utils";
description = "Utilities for Cognimeta products (such as perdure). API may change often.";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"colada" = callPackage
@@ -29030,9 +30054,11 @@ self: {
base bytestring cereal cmdargs containers fclabels ghc-prim
ListZipper monad-atom mtl split swift-lda text vector
];
+ jailbreak = true;
homepage = "https://bitbucket.org/gchrupala/colada";
description = "Colada implements incremental word class class induction using online LDA";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"colchis" = callPackage
@@ -29048,8 +30074,10 @@ self: {
aeson base conceit network network-simple pipes pipes-aeson
pipes-attoparsec pipes-network text transformers
];
+ jailbreak = true;
description = "Rudimentary JSON-RPC 2.0 client over raw TCP.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"collada-output" = callPackage
@@ -29065,8 +30093,10 @@ self: {
buildDepends = [
base collada-types containers SVGPath time vector xml
];
+ jailbreak = true;
description = "Generate animated 3d objects in COLLADA";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"collada-types" = callPackage
@@ -29080,8 +30110,10 @@ self: {
buildDepends = [
base containers enumerable OpenGL tuple tuple-gen vector
];
+ jailbreak = true;
description = "Data exchange between graphic applications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"collapse-util" = callPackage
@@ -29105,8 +30137,10 @@ self: {
version = "0.3.1.1";
sha256 = "0a5km8k2jwjv4gfd2vf0jiq3f9cw47dgz8f3lspmpx2b0g2pac7g";
buildDepends = [ array base bytestring containers QuickCheck ];
+ jailbreak = true;
description = "Useful standard collections types and related functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"collections-api" = callPackage
@@ -29144,7 +30178,6 @@ self: {
version = "0.2.2";
sha256 = "0h3y5c3c3711k2glmnydc1rlz9ff73iibcc8vf0zjzvvw9rz0xb1";
buildDepends = [ base unix ];
- configureFlags = [ "-fsmall_base" ];
description = "thread-friendly file locks that don't block the entire program";
license = "LGPL";
}) {};
@@ -29199,9 +30232,11 @@ self: {
base bytestring HTTP http-types HUnit mtl regex-compat text wai
wai-extra warp
];
+ jailbreak = true;
homepage = "https://github.com/wellecks/coltrane";
description = "A jazzy, minimal web framework for Haskell, inspired by Sinatra";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"com" = callPackage
@@ -29210,9 +30245,9 @@ self: {
pname = "com";
version = "1.2.3.1";
sha256 = "1y6zm63jyigf631f2b0bqw1yhmr6hifaspqivy7qy30brmr5a27m";
- configureFlags = [ "-f-old-base" ];
description = "Haskell COM support library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"combinat" = callPackage
@@ -29222,7 +30257,6 @@ self: {
version = "0.2.7.0";
sha256 = "1rch5pk0sggmdr2wmqys5i5p1cjyqdymrngjf8a2721q6nycfjjz";
buildDepends = [ array base containers random transformers ];
- configureFlags = [ "-fbase4" "-f-withquickcheck" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "Generation of various combinatorial objects";
license = stdenv.lib.licenses.bsd3;
@@ -29240,7 +30274,6 @@ self: {
array base colour combinat containers diagrams-core diagrams-lib
transformers vector-space
];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "Graphical representations for various combinatorial objects";
license = stdenv.lib.licenses.bsd3;
@@ -29260,6 +30293,7 @@ self: {
base bytestring cereal containers directory lens mtl
template-haskell th-lift trifecta void
];
+ jailbreak = true;
homepage = "https://github.com/fumieval/combinator-interactive";
description = "SKI Combinator interpreter";
license = stdenv.lib.licenses.bsd3;
@@ -29288,7 +30322,6 @@ self: {
version = "0.1.0";
sha256 = "101b3lycfav6wqdqjhs0v93vgy4g3pfn5xyimip0x3alq0q2ix9a";
buildDepends = [ base ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~wren/";
description = "Efficient computation of common combinatoric functions";
license = stdenv.lib.licenses.bsd3;
@@ -29305,6 +30338,7 @@ self: {
buildDepends = [
base containers template-haskell vector vector-space
];
+ jailbreak = true;
homepage = "https://github.com/JohnLato/combobuffer";
description = "Various buffer implementations";
license = stdenv.lib.licenses.bsd3;
@@ -29357,6 +30391,7 @@ self: {
];
description = "Library for working with commoditized amounts and price histories";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"commsec" = callPackage
@@ -29407,9 +30442,6 @@ self: {
transformers transformers-compat
];
testDepends = [ base directory doctest filepath ];
- configureFlags = [
- "-fdistributive" "-fcontravariant" "-fcontainers" "-ftest-doctests"
- ];
homepage = "http://github.com/ekmett/comonad/";
description = "Comonads";
license = stdenv.lib.licenses.bsd3;
@@ -29430,6 +30462,7 @@ self: {
homepage = "http://github.com/ekmett/comonad-extras/";
description = "Exotic comonad transformers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"comonad-random" = callPackage
@@ -29439,8 +30472,10 @@ self: {
version = "0.1.2";
sha256 = "11jak28rpnnaswrlf2wgn91v096zkz1laq2cdhjfc7abgmkx9gay";
buildDepends = [ base category-extras random ];
+ jailbreak = true;
description = "Comonadic interface for random values";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"comonad-transformers" = callPackage
@@ -29476,6 +30511,7 @@ self: {
buildDepends = [ array base binary bytestring containers ];
description = "Compact Data.Map implementation using Data.Binary";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"compact-string" = callPackage
@@ -29488,6 +30524,7 @@ self: {
homepage = "http://twan.home.fmf.nl/compact-string/";
description = "Fast, packed and strict strings with Unicode support, based on bytestrings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"compact-string-fix" = callPackage
@@ -29608,7 +30645,7 @@ self: {
base directory doctest filepath generic-deriving semigroups
simple-reflect
];
- configureFlags = [ "-f-lib-werror" "-ftest-doctests" ];
+ jailbreak = true;
homepage = "http://github.com/analytics/compensated/";
description = "Compensated floating-point arithmetic";
license = stdenv.lib.licenses.bsd3;
@@ -29621,6 +30658,7 @@ self: {
version = "0.2.0.0";
sha256 = "07c6b6yai8x9i8qndimzmyp5bzhwckis8kg207n152gnskk7i3zn";
buildDepends = [ base filepath parsec ];
+ jailbreak = true;
homepage = "github.com/yanatan16/haskell-competition";
description = "Helpers and runners for code competitions";
license = stdenv.lib.licenses.mit;
@@ -29673,8 +30711,10 @@ self: {
base Chart colour data-accessor hstats parallel pretty time
transformers
];
+ jailbreak = true;
description = "Empirical algorithmic complexity";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"compose-trans" = callPackage
@@ -29727,6 +30767,7 @@ self: {
homepage = "http://urchin.earth.li/~ian/cabal/compression/";
description = "Common compression algorithms";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"computational-algebra" = callPackage
@@ -29742,9 +30783,11 @@ self: {
algebra base containers equational-reasoning heaps lens monad-loops
monomorphic peggy singletons sized-vector tagged type-natural
];
+ jailbreak = true;
homepage = "https://github.com/konn/computational-algebra";
description = "Well-kinded computational algebra library, currently supporting Groebner basis";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"concatenative" = callPackage
@@ -29770,6 +30813,7 @@ self: {
buildDepends = [
base bifunctors exceptions mtl semigroupoids transformers void
];
+ jailbreak = true;
description = "Concurrent actions that may fail";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -29804,7 +30848,7 @@ self: {
monad-codec monad-ox sgd tagset-positional temporary text
text-binary transformers vector vector-binary zlib
];
- configureFlags = [ "-f-buildanatool" ];
+ jailbreak = true;
homepage = "http://zil.ipipan.waw.pl/Concraft";
description = "Morphological disambiguation based on constrained CRFs";
license = stdenv.lib.licenses.bsd3;
@@ -29826,9 +30870,11 @@ self: {
double-conversion lazy-io moan network sgd split tagset-positional
text
];
+ jailbreak = true;
homepage = "https://github.com/vjeranc/concraft-hr";
description = "Part-of-speech tagger for Croatian";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"concraft-pl" = callPackage
@@ -29882,7 +30928,6 @@ self: {
base binary hashable QuickCheck test-framework
test-framework-quickcheck2
];
- configureFlags = [ "-fnew-typerep" ];
description = "Binary and Hashable instances for TypeRep";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -29967,10 +31012,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base exceptions mtl stm transformers ];
- configureFlags = [ "-f-examples" ];
homepage = "https://github.com/joelteon/concurrent-state";
description = "MTL-like library using TVars";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"concurrent-supply" = callPackage
@@ -29981,7 +31026,6 @@ self: {
sha256 = "0crg4rm5wibw9h6lmsi43d280xg1xr9xbgqr9s4inxq7x0yyn68c";
buildDepends = [ base ghc-prim hashable ];
testDepends = [ base containers ];
- configureFlags = [ "-ftest-properties" ];
homepage = "http://github.com/ekmett/concurrent-supply/";
description = "A fast concurrent unique identifier supply with a pure API";
license = stdenv.lib.licenses.bsd3;
@@ -30026,9 +31070,11 @@ self: {
testDepends = [
base binary Cabal containers glider-nlp HUnit text
];
+ jailbreak = true;
homepage = "https://github.com/klangner/Condor";
description = "Information retrieval library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"condorcet" = callPackage
@@ -30041,6 +31087,7 @@ self: {
homepage = "http://neugierig.org/software/darcs/condorcet";
description = "Library for Condorcet voting";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"conductive-base" = callPackage
@@ -30064,6 +31111,7 @@ self: {
homepage = "http://www.renickbell.net/doku.php?id=conductive-clock";
description = "a library for displaying musical time in a terminal-based clock";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"conductive-hsc3" = callPackage
@@ -30078,9 +31126,11 @@ self: {
base conductive-base conductive-song containers directory filepath
hosc hsc3 random
];
+ jailbreak = true;
homepage = "http://www.renickbell.net/doku.php?id=conductive-hsc3";
description = "a library with examples of using Conductive with hsc3";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"conductive-song" = callPackage
@@ -30206,6 +31256,7 @@ 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-network-stream" = callPackage
@@ -30221,6 +31272,7 @@ self: {
];
description = "A base layer for network protocols using Conduits";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"conduit-resumablesink" = callPackage
@@ -30233,9 +31285,11 @@ self: {
sha256 = "1bqdpnhqjh4dhvppsa8nlgja0jpdw48kxywz2999sp5hi53qxdfg";
buildDepends = [ base conduit void ];
testDepends = [ base bytestring conduit hspec transformers void ];
+ jailbreak = true;
homepage = "http://github.com/A1kmm/conduit-resumablesink";
description = "Allows conduit to resume sinks to feed multiple sources into it";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"conf" = callPackage
@@ -30245,6 +31299,7 @@ self: {
version = "0.1.0.0";
sha256 = "15zd72l2izdiw79hldf34pymxc4d9r06db91x6p2mfv2i31wy2n2";
buildDepends = [ base haskell-src ];
+ jailbreak = true;
description = "Parser for Haskell-based configuration files";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -30260,6 +31315,7 @@ self: {
buildDepends = [ base directory filepath unix vty-menu ];
description = "A small program for swapping out dot files";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"configuration" = callPackage
@@ -30290,9 +31346,11 @@ self: {
unordered-containers yaml
];
testDepends = [ base base-unicode-symbols errors mtl ];
+ jailbreak = true;
homepage = "https://github.com/alephcloud/hs-configuration-tools";
description = "Tools for specifying and parsing configurations";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"configurator" = callPackage
@@ -30312,7 +31370,6 @@ self: {
base bytestring directory filepath HUnit test-framework
test-framework-hunit text
];
- configureFlags = [ "-f-developer" ];
homepage = "http://github.com/bos/configurator";
description = "Configuration management";
license = stdenv.lib.licenses.bsd3;
@@ -30332,6 +31389,7 @@ self: {
attoparsec base cmdargs process system-fileio system-filepath text
time unordered-containers
];
+ jailbreak = true;
description = "A command line tool for resolving conflicts of file synchronizers";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -30376,20 +31434,22 @@ self: {
];
description = "A BitTorrent client";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"connection" = callPackage
- ({ mkDerivation, base, bytestring, containers, cprng-aes
- , data-default-class, network, socks, tls, x509, x509-store
- , x509-system, x509-validation
+ ({ mkDerivation, base, byteable, bytestring, containers
+ , crypto-random, data-default-class, network, securemem, socks, tls
+ , x509, x509-store, x509-system, x509-validation
}:
mkDerivation {
pname = "connection";
- version = "0.2.3";
- sha256 = "02mqn19pssdak82jw38p3cbwjyfvmjc6fawgx5981hzbdgb64vsb";
+ version = "0.2.4";
+ sha256 = "0sl0vxn02bbyk7lcclr7ml93wpap2f042da3c9v9ppvbvs8jmf7j";
buildDepends = [
- base bytestring containers cprng-aes data-default-class network
- socks tls x509 x509-store x509-system x509-validation
+ base byteable bytestring containers crypto-random
+ data-default-class network securemem socks tls x509 x509-store
+ x509-system x509-validation
];
homepage = "http://github.com/vincenthz/hs-connection";
description = "Simple and easy network connections API";
@@ -30409,10 +31469,10 @@ self: {
base between data-default-class monad-control network resource-pool
streaming-commons time transformers-base
];
- configureFlags = [ "-f-pedantic" ];
homepage = "https://github.com/trskop/connection-pool";
description = "Connection pool built on top of resource-pool and streaming-commons";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"consistent" = callPackage
@@ -30430,6 +31490,7 @@ self: {
testDepends = [ base lifted-async transformers ];
description = "Eventually consistent STM transactions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"console-program" = callPackage
@@ -30460,6 +31521,7 @@ self: {
homepage = "https://github.com/kfish/const-math-ghc-plugin";
description = "Compiler plugin for constant math elimination";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"constrained-normal" = callPackage
@@ -30505,8 +31567,10 @@ self: {
version = "0.3.0";
sha256 = "17ab0vkq5w3zwh76ws7b82wbc0871qdmvrxhxga78h3h0axjiz1x";
buildDepends = [ base QuickCheck type-level ];
+ jailbreak = true;
description = "A library of constructive algebra";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"container-classes" = callPackage
@@ -30520,15 +31584,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "containers_0_5_6_2" = callPackage
+ "containers_0_5_6_3" = callPackage
({ mkDerivation, array, base, ChasingBottoms, deepseq, ghc-prim
, HUnit, QuickCheck, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "containers";
- version = "0.5.6.2";
- sha256 = "1r9dipm2bw1dvdjyb2s1j9qmqy8xzbldgiz7a885fz0p1ygy9bdi";
+ version = "0.5.6.3";
+ sha256 = "1kcd55nl0vzi99i8sr8fmc5j25fv7m0a9hd3nihnq1pd64pfciqn";
buildDepends = [ array base deepseq ghc-prim ];
testDepends = [
array base ChasingBottoms deepseq ghc-prim HUnit QuickCheck
@@ -30551,6 +31615,7 @@ self: {
buildDepends = [
base bytestring containers criterion deepseq ghc-prim random
];
+ jailbreak = true;
homepage = "http://git.auryn.cz/haskell/containers-benchmark/";
description = "Extensive benchmark suite for containers package";
license = stdenv.lib.licenses.bsd3;
@@ -30574,7 +31639,6 @@ self: {
version = "0.3.1.1";
sha256 = "0ccv7rqkykfk5wmr73mc0kwrnwyzakgp5x495dgwn5nila3g4ma6";
buildDepends = [ base base-unicode-symbols containers ];
- configureFlags = [ "-f-containers-old" ];
homepage = "http://haskell.org/haskellwiki/Unicode-symbols";
description = "Unicode alternatives for common functions and operators";
license = stdenv.lib.licenses.bsd3;
@@ -30590,6 +31654,7 @@ self: {
homepage = "http://github.com/thinkpad20/context-stack";
description = "An abstraction of a stack and stack-based monadic context";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"continue" = callPackage
@@ -30604,8 +31669,10 @@ self: {
base bifunctors monad-control mtl semigroupoids transformers
transformers-base
];
+ jailbreak = true;
description = "Monads with suspension and arbitrary-spot reentry";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"continued-fractions" = callPackage
@@ -30638,8 +31705,9 @@ self: {
suspend time timers transformers transformers-base
];
extraLibraries = [ hyperleveldb ];
- configureFlags = [ "-f-profiling" "-f-binaries" ];
+ jailbreak = true;
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { hyperleveldb = null;};
"continuum-client" = callPackage
@@ -30654,6 +31722,7 @@ self: {
base bytestring cereal containers mtl nanomsg-haskell time
];
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"contravariant" = callPackage
@@ -30668,7 +31737,6 @@ self: {
buildDepends = [
base semigroups transformers transformers-compat void
];
- configureFlags = [ "-ftagged" ];
homepage = "http://github.com/ekmett/contravariant/";
description = "Contravariant functors";
license = stdenv.lib.licenses.bsd3;
@@ -30695,6 +31763,7 @@ self: {
buildDepends = [ base containers stm time ];
description = "Event scheduling system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"control-monad-attempt" = callPackage
@@ -30704,9 +31773,11 @@ self: {
version = "0.3.0.1";
sha256 = "140n27vdbyjz5qycrwlrmyd7s48fxcl6msl16g7czg40k5y23j5s";
buildDepends = [ attempt base transformers ];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/control-monad-attempt";
description = "Monad transformer for attempt. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"control-monad-exception" = callPackage
@@ -30721,10 +31792,10 @@ self: {
base failure lifted-base monad-control monadloc transformers
transformers-base
];
- configureFlags = [ "-f-extensibleexceptions" ];
homepage = "http://pepeiborra.github.com/control-monad-exception";
description = "Explicitly typed, checked exceptions with stack traces";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"control-monad-exception-monadsfd" = callPackage
@@ -30741,6 +31812,7 @@ self: {
homepage = "http://pepeiborra.github.com/control-monad-exception";
description = "Monads-fd instances for the EMT exceptions monad transformer";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"control-monad-exception-monadstf" = callPackage
@@ -30757,6 +31829,7 @@ self: {
homepage = "http://pepeiborra.github.com/control-monad-exception";
description = "Monads-tf instances for the EMT exceptions monad transformer";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"control-monad-exception-mtl" = callPackage
@@ -30769,6 +31842,7 @@ self: {
homepage = "http://pepeiborra.github.com/control-monad-exception";
description = "MTL instances for the EMT exceptions monad transformer";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"control-monad-failure" = callPackage
@@ -30778,9 +31852,11 @@ self: {
version = "0.7.0.1";
sha256 = "1g304wb1fhx81iw2vv7nv6cp2qmy69frwiv3vax85lxw03s4nlkq";
buildDepends = [ base failure transformers ];
+ jailbreak = true;
homepage = "http://github.com/pepeiborra/control-monad-failure";
description = "A class for monads which can fail with an error. (deprecated)";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"control-monad-failure-mtl" = callPackage
@@ -30790,9 +31866,11 @@ self: {
version = "0.7.1";
sha256 = "0j9i85vq033789vx2589mfqwk954hqy1wla527ssbyf05k6vkn8j";
buildDepends = [ base failure mtl ];
+ jailbreak = true;
homepage = "http://github.com/pepeiborra/control-monad-failure";
description = "A class for monads which can fail with an error for mtl 1 (deprecated)";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"control-monad-free" = callPackage
@@ -30874,6 +31952,7 @@ self: {
buildDepends = [ base contstuff monads-tf ];
description = "ContStuff instances for monads-tf transformers (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"contstuff-transformers" = callPackage
@@ -30883,8 +31962,10 @@ self: {
version = "0.1.1";
sha256 = "0b5vskp1bxqpi4ffcxwjw6kr0jd6n8v8jlhf03p54ckfd5ym4ai6";
buildDepends = [ base contstuff transformers ];
+ jailbreak = true;
description = "Deprecated interface between contstuff 0.7.0 and the transformers package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"converge" = callPackage
@@ -30912,7 +31993,6 @@ self: {
buildDepends = [
base bytestring containers mtl old-locale old-time text time
];
- configureFlags = [ "-f-buildtests" "-fsplitbase" ];
homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/convertible";
description = "Typeclasses and instances for converting between types";
license = stdenv.lib.licenses.bsd3;
@@ -30930,9 +32010,11 @@ self: {
ascii base base-unicode-symbols blaze-builder bytestring
convertible-text failure text
];
+ jailbreak = true;
homepage = "https://github.com/phonohawk/convertible-ascii";
description = "convertible instances for ascii";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"convertible-text" = callPackage
@@ -30949,10 +32031,11 @@ self: {
attempt base bytestring containers old-time template-haskell text
time
];
- configureFlags = [ "-f-nolib" "-f-buildtests" ];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/convertible/tree/text";
description = "Typeclasses and instances for converting between types (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cookbook" = callPackage
@@ -31000,7 +32083,6 @@ self: {
testDepends = [
base directory doctest filepath QuickCheck template-haskell
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/NICTA/coordinate";
description = "A representation of latitude and longitude";
license = stdenv.lib.licenses.bsd3;
@@ -31024,6 +32106,7 @@ self: {
homepage = "http://leepike.github.com/Copilot/";
description = "A stream DSL for writing embedded C programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"copilot-c99" = callPackage
@@ -31058,6 +32141,7 @@ self: {
];
description = "Copilot interface to a C model-checker";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"copilot-core" = callPackage
@@ -31137,6 +32221,7 @@ self: {
homepage = "https://github.com/relrod/copr-hs";
description = "Haskell interface to the Fedora Copr system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"core" = callPackage
@@ -31162,6 +32247,7 @@ self: {
homepage = "https://github.com/happlebao/Core-Haskell";
description = "A subset of Haskell using in UCC for teaching purpose";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"corebot-bliki" = callPackage
@@ -31183,6 +32269,7 @@ self: {
homepage = "http://github.com/coreyoconnor/corebot-bliki";
description = "A bliki written using yesod. Uses pandoc to process files stored in git.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"coroutine-enumerator" = callPackage
@@ -31192,6 +32279,7 @@ self: {
version = "0.1.1";
sha256 = "1rjbhpy5vw1maawi47jsrnagqm19say9w1i31pgcpxl45vhrshp7";
buildDepends = [ base enumerator monad-coroutine ];
+ jailbreak = true;
homepage = "http://trac.haskell.org/SCC/wiki/coroutine-enumerator";
description = "Bridge between the monad-coroutine and enumerator packages";
license = "GPL";
@@ -31204,9 +32292,11 @@ self: {
version = "0.1.1";
sha256 = "1ycir4kwpcz34yg64cdb9q0jxv3ma12vrrs28cr5jm64jmi8m0wd";
buildDepends = [ base iteratee monad-coroutine ];
+ jailbreak = true;
homepage = "http://trac.haskell.org/SCC/wiki/coroutine-iteratee";
description = "Bridge between the monad-coroutine and iteratee packages";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"coroutine-object" = callPackage
@@ -31239,8 +32329,10 @@ self: {
aeson attoparsec base bytestring hint random text transformers
vector
];
+ jailbreak = true;
description = "A CouchDB view server for Haskell";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"couchdb-conduit" = callPackage
@@ -31268,9 +32360,11 @@ self: {
test-framework-hunit text transformers transformers-base
unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/akaspin/couchdb-conduit";
description = "Couch DB client library using http-conduit and aeson";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"couchdb-enumerator" = callPackage
@@ -31296,9 +32390,11 @@ self: {
test-framework-quickcheck2 text transformers unordered-containers
utf8-string vector
];
+ jailbreak = true;
homepage = "http://bitbucket.org/wuzzeb/couchdb-enumerator";
description = "Couch DB client library using http-enumerator and aeson";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"count" = callPackage
@@ -31347,7 +32443,6 @@ self: {
isExecutable = true;
buildDepends = [ aeson base shakespeare tagsoup text ];
testDepends = [ aeson base HTF HUnit ];
- configureFlags = [ "-f-generate" ];
homepage = "https://github.com/prowdsponsor/country-codes";
description = "ISO 3166 country codes and i18n names";
license = stdenv.lib.licenses.bsd3;
@@ -31389,9 +32484,11 @@ self: {
aeson base bytestring directory filepath old-locale
optparse-applicative process stm text time unix
];
+ jailbreak = true;
homepage = "http://hub.darcs.net/thoferon/court";
description = "Simple and flexible CI system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cplusplus-th" = callPackage
@@ -31409,6 +32506,7 @@ self: {
homepage = "https://github.com/nicta/cplusplus-th";
description = "C++ Foreign Import Generation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cpphs" = callPackage
@@ -31416,9 +32514,8 @@ self: {
}:
mkDerivation {
pname = "cpphs";
- version = "1.18.6";
- sha256 = "0ds712zabigswf3cljzh7f2ys4rl1fj2cf76lbw856adm8514gxc";
- editedCabalFile = "4ae34ae875a14ddc717ecfc9afb2695b2c5052a7ac470fb562d0ba5eed7dc310";
+ version = "1.18.7";
+ sha256 = "0w82v737w887krqlf61wjwa63fmdrjp1giiig8nvgga608qy03w5";
isLibrary = true;
isExecutable = true;
buildDepends = [ base directory old-locale old-time polyparse ];
@@ -31483,7 +32580,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-executable" ];
homepage = "http://github.com/vincenthz/hs-cpu";
description = "Cpu information and properties helpers";
license = stdenv.lib.licenses.bsd3;
@@ -31498,7 +32594,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base data-accessor enumset ];
- configureFlags = [ "-f-buildexamples" ];
homepage = "http://code.haskell.org/cpuid/";
description = "Binding for the cpuid machine instruction on x86 compatible processors";
license = "GPL";
@@ -31513,10 +32608,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base mtl process ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/~dons/code/cpuperf";
description = "Modify the cpu frequency on OpenBSD systems";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cpython" = callPackage
@@ -31528,9 +32623,11 @@ self: {
buildDepends = [ base bytestring text ];
buildTools = [ c2hs ];
pkgconfigDepends = [ python3 ];
+ jailbreak = true;
homepage = "https://john-millikin.com/software/haskell-python/";
description = "Bindings for libpython";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) python3;};
"cql" = callPackage
@@ -31571,9 +32668,11 @@ self: {
network semigroups stm text time tinylog transformers
transformers-base uuid vector
];
+ jailbreak = true;
homepage = "https://github.com/twittner/cql-io/";
description = "Cassandra CQL client";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cqrs" = callPackage
@@ -31593,8 +32692,10 @@ self: {
async base bytestring conduit cqrs-test hspec HUnit pool-conduit
stm transformers
];
+ jailbreak = true;
description = "Command-Query Responsibility Segregation";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cqrs-example" = callPackage
@@ -31613,8 +32714,10 @@ self: {
deepseq derive scotty stm text transformers wai-eventsource
wai-middleware-static
];
+ jailbreak = true;
description = "Example for cqrs package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cqrs-postgresql" = callPackage
@@ -31634,8 +32737,10 @@ self: {
base bytestring conduit cqrs-test cqrs-types hspec pool-conduit
postgresql-libpq
];
+ jailbreak = true;
description = "PostgreSQL backend for the cqrs package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cqrs-sqlite3" = callPackage
@@ -31654,8 +32759,10 @@ self: {
base bytestring conduit cqrs-test direct-sqlite hspec pool-conduit
text transformers
];
+ jailbreak = true;
description = "SQLite3 backend for the cqrs package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cqrs-test" = callPackage
@@ -31670,8 +32777,10 @@ self: {
base bytestring conduit cqrs-types hspec HUnit pool-conduit stm
transformers
];
+ jailbreak = true;
description = "Command-Query Responsibility Segregation Test Support";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cqrs-types" = callPackage
@@ -31686,8 +32795,10 @@ self: {
base base16-bytestring base64-bytestring bytestring conduit deepseq
derive random
];
+ jailbreak = true;
description = "Command-Query Responsibility Segregation. Modules for the basic types.";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cr" = callPackage
@@ -31706,6 +32817,7 @@ self: {
homepage = "https://github.com/scvalex/cr";
description = "Code review tool";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"crack" = callPackage
@@ -31718,6 +32830,7 @@ self: {
extraLibraries = [ crack ];
description = "A haskell binding to cracklib";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { crack = null;};
"craftwerk" = callPackage
@@ -31729,7 +32842,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base colour mtl vector-space ];
- configureFlags = [ "-f-examples" "-f-tests" ];
+ jailbreak = true;
homepage = "http://mahrz.github.com/craftwerk.html";
description = "2D graphics library with integrated TikZ output";
license = stdenv.lib.licenses.mit;
@@ -31742,6 +32855,7 @@ self: {
version = "0.1";
sha256 = "16in87l2v49k785fldm7fvprywg0v497kz29jr22y91q5j5gnm4z";
buildDepends = [ base cairo craftwerk mtl ];
+ jailbreak = true;
homepage = "http://mahrz.github.com/craftwerk.html";
description = "Cairo backend for Craftwerk";
license = stdenv.lib.licenses.mit;
@@ -31760,10 +32874,11 @@ self: {
buildDepends = [
base cairo containers craftwerk craftwerk-cairo gtk mtl
];
- configureFlags = [ "-f-examples" ];
+ jailbreak = true;
homepage = "http://mahrz.github.com/craftwerk.html";
description = "Gtk UI for Craftwerk";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"crc16" = callPackage
@@ -31775,6 +32890,7 @@ self: {
buildDepends = [ base bytestring ];
description = "Calculate the crc16-ccitt";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"crc16-table" = callPackage
@@ -31809,9 +32925,11 @@ self: {
QuickCheck temporary test-framework test-framework-hunit
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/mhwombat/creatur";
description = "Framework for artificial life experiments";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"crf-chain1" = callPackage
@@ -31827,9 +32945,11 @@ self: {
array base binary containers data-lens logfloat monad-codec
parallel random sgd vector vector-binary vector-th-unbox
];
+ jailbreak = true;
homepage = "https://github.com/kawu/crf-chain1";
description = "First-order, linear-chain conditional random fields";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"crf-chain1-constrained" = callPackage
@@ -31863,9 +32983,11 @@ self: {
array base binary comonad-transformers containers data-lens
logfloat monad-codec parallel sgd vector vector-binary
];
+ jailbreak = true;
homepage = "https://github.com/kawu/crf-chain2-generic";
description = "Second-order, generic, constrained, linear conditional random fields";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"crf-chain2-tiers" = callPackage
@@ -31900,7 +33022,6 @@ self: {
base bytestring containers QuickCheck test-framework
test-framework-quickcheck2 text transformers vector
];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/bos/critbit";
description = "Crit-bit maps and sets";
license = stdenv.lib.licenses.bsd3;
@@ -31958,9 +33079,11 @@ self: {
string-conversions system-fileio system-filepath text th-printf
transformers transformers-base vector
];
+ jailbreak = true;
homepage = "https://github.com/nikita-volkov/criterion-plus";
description = "Enhancement of the \"criterion\" benchmarking library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"criterion-to-html" = callPackage
@@ -31976,6 +33099,7 @@ self: {
buildDepends = [
aeson base blaze-html blaze-markup bytestring containers filepath
];
+ jailbreak = true;
homepage = "http://github.com/jaspervdj/criterion-to-html";
description = "Convert criterion output to HTML reports";
license = stdenv.lib.licenses.bsd3;
@@ -32009,6 +33133,7 @@ self: {
homepage = "https://github.com/TomHammersley/HaskellRenderer/";
description = "An offline renderer supporting ray tracing and photon mapping";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cron" = callPackage
@@ -32018,16 +33143,18 @@ self: {
}:
mkDerivation {
pname = "cron";
- version = "0.2.4";
- sha256 = "0cf2dp57gg0vssy4pk5skzx7nkl9ksfmksxlipjikf6ijgp7v187";
+ version = "0.2.5";
+ sha256 = "0337dq2fqjikdn2fayad66rq8xyh2y6ywn18fn5q5vvrhmvmyrja";
buildDepends = [ attoparsec base mtl old-locale text time ];
testDepends = [
attoparsec base derive hspec hspec-expectations QuickCheck text
time transformers
];
+ jailbreak = true;
homepage = "http://github.com/michaelxavier/cron";
description = "Cron datatypes and Attoparsec parser";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cruncher-types" = callPackage
@@ -32057,6 +33184,7 @@ self: {
base bytestring directory filelock filepath process SHA text time
transformers unix
];
+ jailbreak = true;
description = "A runghc replacement with transparent caching";
license = stdenv.lib.licenses.publicDomain;
}) {};
@@ -32072,7 +33200,6 @@ self: {
buildDepends = [
base bytestring cereal entropy tagged transformers
];
- configureFlags = [ "-f-all_cpolys" ];
homepage = "https://github.com/TomMD/crypto-api";
description = "A generic interface for cryptographic operations";
license = stdenv.lib.licenses.bsd3;
@@ -32112,6 +33239,7 @@ self: {
homepage = "http://github.com/vincenthz/hs-crypto-cipher";
description = "Generic cryptography cipher benchmarks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"crypto-cipher-tests" = callPackage
@@ -32166,7 +33294,6 @@ self: {
base bytestring cereal conduit conduit-extra crypto-api
cryptocipher cryptohash-cryptoapi hspec skein transformers
];
- configureFlags = [ "-fconduit11" "-f-old-crypto-api" ];
homepage = "https://github.com/prowdsponsor/crypto-conduit";
description = "Conduit interface for cryptographic operations (from crypto-api)";
license = stdenv.lib.licenses.bsd3;
@@ -32181,6 +33308,7 @@ self: {
pname = "crypto-numbers";
version = "0.2.7";
sha256 = "19l9y5jzvqrqfam13xin9m9ca0s5ql86yv0cjn6dzkydx4byn2j2";
+ editedCabalFile = "2b493386b7605b70a67f751d6496e9feff8ef319a5294b122a3ff3895a8453ca";
buildDepends = [
base bytestring crypto-random ghc-prim integer-gmp vector
];
@@ -32188,7 +33316,6 @@ self: {
base byteable bytestring crypto-random tasty tasty-hunit
tasty-quickcheck vector
];
- configureFlags = [ "-finteger-gmp" ];
homepage = "https://github.com/vincenthz/hs-crypto-numbers";
description = "Cryptographic numbers: functions and algorithms";
license = stdenv.lib.licenses.bsd3;
@@ -32196,21 +33323,21 @@ self: {
"crypto-pubkey" = callPackage
({ mkDerivation, base, byteable, bytestring, crypto-numbers
- , crypto-pubkey-types, crypto-random, cryptohash, HUnit, QuickCheck
- , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , crypto-pubkey-types, crypto-random, cryptohash, tasty
+ , tasty-hunit, tasty-kat, tasty-quickcheck
}:
mkDerivation {
pname = "crypto-pubkey";
- version = "0.2.7";
- sha256 = "0y15nym98sfbfa34f28jalmbbz4fnmhl1ywv4apwyzyyh4x7djp0";
+ version = "0.2.8";
+ sha256 = "0vmmx2fqq2xc3xfavy22i2nyynpk88jhmjr62qgxw5w5qgsz5k60";
buildDepends = [
base byteable bytestring crypto-numbers crypto-pubkey-types
crypto-random cryptohash
];
testDepends = [
base byteable bytestring crypto-numbers crypto-pubkey-types
- crypto-random cryptohash HUnit QuickCheck test-framework
- test-framework-hunit test-framework-quickcheck2
+ crypto-random cryptohash tasty tasty-hunit tasty-kat
+ tasty-quickcheck
];
homepage = "https://github.com/vincenthz/hs-crypto-pubkey";
description = "Public Key cryptography";
@@ -32236,10 +33363,11 @@ self: {
bytestring cereal crypto-pubkey-types deepseq filepath pem process
QuickCheck tasty tasty-quickcheck temporary
];
- configureFlags = [ "-f-openssh" ];
+ jailbreak = true;
homepage = "https://github.com/knsd/crypto-pubkey-openssh";
description = "OpenSSH keys decoder/encoder";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"crypto-pubkey-types" = callPackage
@@ -32394,8 +33522,10 @@ self: {
old-locale pipes-attoparsec pipes-http text time transformers
unordered-containers vector
];
+ jailbreak = true;
description = "Bindings for Cryptsy cryptocurrency exchange API";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"crystalfontz" = callPackage
@@ -32407,6 +33537,7 @@ self: {
buildDepends = [ base crc16-table MaybeT serialport ];
description = "Control Crystalfontz LCD displays";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cse-ghc-plugin" = callPackage
@@ -32419,6 +33550,7 @@ self: {
homepage = "http://thoughtpolice.github.com/cse-ghc-plugin";
description = "Compiler plugin for common subexpression elimination";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"csound-catalog" = callPackage
@@ -32536,6 +33668,7 @@ self: {
homepage = "https://github.com/tomgr/libcspm";
description = "A command line type checker for CSPM files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"css" = callPackage
@@ -32596,7 +33729,6 @@ self: {
base bytestring containers directory HUnit mtl primitive
test-framework test-framework-hunit text transformers vector
];
- configureFlags = [ "-f-bench" ];
homepage = "http://github.com/ozataman/csv-conduit";
description = "A flexible, fast, conduit-based CSV parser library for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -32651,7 +33783,6 @@ self: {
base explicit-exception regex-tdfa split spreadsheet
];
testDepends = [ base Cabal hspec regex-tdfa split ];
- configureFlags = [ "-f-threaded" ];
homepage = "https://github.com/mrVanDalo/csv-to-qif/";
description = "A small program that will read csv files and create qif files";
license = stdenv.lib.licenses.bsd3;
@@ -32668,6 +33799,7 @@ self: {
homepage = "http://darcs.imperialviolet.org/ctemplate";
description = "Binding to the Google ctemplate library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { ctemplate = null;};
"ctkl" = callPackage
@@ -32679,6 +33811,7 @@ self: {
buildDepends = [ array base ];
description = "packaging of Manuel Chakravarty's CTK Light for Hackage";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ctpl" = callPackage
@@ -32705,6 +33838,7 @@ self: {
base containers hashable QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/mcschroeder/ctrie";
description = "Non-blocking concurrent map";
license = stdenv.lib.licenses.mit;
@@ -32767,6 +33901,7 @@ self: {
homepage = "https://github.com/bmsherman/cublas";
description = "FFI bindings to the CUDA CUBLAS and CUSPARSE libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { cublas = null; cusparse = null;};
"cuboid" = callPackage
@@ -32796,6 +33931,7 @@ self: {
homepage = "https://github.com/tmcdonell/cuda";
description = "FFI binding to the CUDA interface for programming NVIDIA GPUs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cudd" = callPackage
@@ -32812,6 +33948,7 @@ self: {
homepage = "https://github.com/adamwalker/haskell_cudd";
description = "Bindings to the CUDD binary decision diagrams library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { cudd = null; dddmp = null; epd = null; inherit (pkgs) mtr;
inherit (pkgs) st; util = null;};
@@ -32819,13 +33956,15 @@ self: {
({ mkDerivation, base, c2hs, cuda }:
mkDerivation {
pname = "cufft";
- version = "0.1.1.0";
- sha256 = "0d13nf61698gzh0hcycx1z9bm2xpikkg27bjymsjhfwimvqn7z8h";
+ version = "0.1.2.0";
+ sha256 = "09d62g5nwl8bj80h8pz5k9bjcp59xcbsa5pmbygqybhcfhng25kg";
buildDepends = [ base cuda ];
buildTools = [ c2hs ];
+ jailbreak = true;
homepage = "http://github.com/robeverest/cufft";
description = "Haskell bindings for the CUFFT library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"curl" = callPackage
@@ -32836,7 +33975,6 @@ self: {
sha256 = "0vj4hpaa30jz7c702xpsfvqaqdxz28zslsqnsfx6bf6dpwvck1wh";
buildDepends = [ base bytestring containers ];
extraLibraries = [ curl ];
- configureFlags = [ "-fnew-base" ];
description = "Haskell binding to libcurl";
license = stdenv.lib.licenses.bsd3;
}) { inherit (pkgs) curl;};
@@ -32865,6 +34003,7 @@ self: {
homepage = "https://kkardzis.github.com/curlhs";
description = "bindings to libcurl, the multiprotocol file transfer library";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"currency" = callPackage
@@ -32903,10 +34042,10 @@ self: {
buildDepends = [
base containers directory filepath mtl old-time pretty syb
];
- configureFlags = [ "-fsplit-syb" ];
homepage = "http://www.curry-language.org";
description = "Functions for manipulating Curry programs";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"curry-frontend" = callPackage
@@ -32922,10 +34061,10 @@ self: {
buildDepends = [
base containers curry-base filepath mtl old-time pretty syb
];
- configureFlags = [ "-fsplit-syb" ];
homepage = "http://www.curry-language.org";
description = "Compile the functional logic language Curry to several intermediate formats";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cursedcsv" = callPackage
@@ -32944,6 +34083,7 @@ self: {
];
description = "Terminal tool for viewing tabular data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"curves" = callPackage
@@ -32968,6 +34108,7 @@ self: {
version = "0.2.2.0";
sha256 = "00lkpkl79kznib0s6xm644f3k13dv59x5z06ccymvx6l6iqxyzn6";
buildDepends = [ base basic-prelude monad-loops ];
+ jailbreak = true;
homepage = "https://github.com/ajnsit/custom-prelude";
description = "An enhanced prelude, serving as a foundation for my projects";
license = "GPL";
@@ -32989,6 +34130,7 @@ self: {
];
description = "Functional Combinators for Computer Vision";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cyclotomic" = callPackage
@@ -33017,8 +34159,10 @@ self: {
http-conduit http-types resourcet text transformers
transformers-base unordered-containers vector
];
+ jailbreak = true;
description = "Haskell bindings for the neo4j \"cypher\" query language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"d-bus" = callPackage
@@ -33046,6 +34190,7 @@ self: {
];
description = "Permissively licensed D-Bus client library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"d3js" = callPackage
@@ -33055,6 +34200,7 @@ self: {
version = "0.1.0.0";
sha256 = "0wrxvfgss9fiv1pwsdi1md0plc4mf9sadkhgm46dsfq16dwrp3q2";
buildDepends = [ base mtl random text ];
+ jailbreak = true;
homepage = "https://github.com/nebuta/d3js-haskell";
description = "Declarative visualization on a web browser with DSL approach";
license = stdenv.lib.licenses.bsd3;
@@ -33136,6 +34282,7 @@ self: {
];
description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dapi" = callPackage
@@ -33152,9 +34299,11 @@ self: {
base containers explicit-exception multiarg old-locale parsec
prednote rainbow text time transformers
];
+ jailbreak = true;
homepage = "http://massysett.github.com/dapi";
description = "Prints a series of dates";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"darcs" = callPackage
@@ -33177,12 +34326,8 @@ self: {
terminfo text unix utf8-string vector zlib
];
extraLibraries = [ curl ];
- configureFlags = [
- "-flibrary" "-fforce-char8-encoding" "-f-libiconv"
- "-fforce-char8-encoding" "-f-warn-as-error" "-foptimize" "-f-test"
- "-f-hpc" "-fmmap" "-fcolor" "-fexecutable" "-flibrary" "-fthreaded"
- "-fterminfo" "-f-static" "-fnetwork-uri" "-fhttp" "-fcurl"
- ];
+ configureFlags = [ "-flibrary" "-fforce-char8-encoding" ];
+ jailbreak = true;
postInstall = ''
mkdir -p $out/etc/bash_completion.d
mv contrib/darcs_completion $out/etc/bash_completion.d/darcs
@@ -33210,9 +34355,11 @@ self: {
SHA split statistics strict tabular tar time utf8-string uvector
zlib
];
+ jailbreak = true;
homepage = "http://wiki.darcs.net/Development/Benchmarks";
description = "Comparative benchmark suite for darcs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"darcs-beta" = callPackage
@@ -33235,14 +34382,11 @@ self: {
vector zlib
];
extraLibraries = [ curl ];
- configureFlags = [
- "-f-force-char8-encoding" "-f-warn-as-error" "-foptimize" "-f-test"
- "-f-hpc" "-fmmap" "-fcolor" "-fexecutable" "-flibrary" "-fthreaded"
- "-fterminfo" "-f-static" "-fhttp" "-fcurl"
- ];
+ jailbreak = true;
homepage = "http://darcs.net/";
description = "a distributed, interactive, smart revision control system";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) curl;};
"darcs-buildpackage" = callPackage
@@ -33261,6 +34405,7 @@ self: {
];
description = "Tools to help manage Debian packages with Darcs";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"darcs-cabalized" = callPackage
@@ -33279,10 +34424,10 @@ self: {
parsec process QuickCheck regex-compat unix
];
extraLibraries = [ curl curses zlib ];
- configureFlags = [ "-fcurses" "-fsmall_base" ];
homepage = "http://darcs.net/";
description = "David's Advanced Version Control System";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) curl; curses = null; inherit (pkgs) zlib;};
"darcs-fastconvert" = callPackage
@@ -33300,8 +34445,10 @@ self: {
attoparsec base bytestring cmdlib containers darcs datetime
directory filepath hashed-storage mtl old-time utf8-string
];
+ jailbreak = true;
description = "Import/export git fast-import streams to/from darcs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"darcs-graph" = callPackage
@@ -33318,9 +34465,10 @@ self: {
base bytestring containers directory old-locale old-time process
time
];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
description = "Generate graphs of darcs repository activity";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"darcs-monitor" = callPackage
@@ -33333,10 +34481,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers directory HaXml mtl process ];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://wiki.darcs.net/RelatedSoftware/DarcsMonitor";
description = "Darcs repository monitor (sends email)";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"darcs-scripts" = callPackage
@@ -33348,6 +34497,7 @@ self: {
buildDepends = [ base ];
description = "Shell scripts for support of darcs workflow";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"darcs2dot" = callPackage
@@ -33363,8 +34513,10 @@ self: {
buildDepends = [
base containers darcs graph-wrapper string-conversions
];
+ jailbreak = true;
description = "Outputs dependencies of darcs patches in dot format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"darcsden" = callPackage
@@ -33390,13 +34542,11 @@ self: {
pureMD5 random redis safe SHA snap-core snap-server split ssh
system-uuid text time utf8-string webdriver xhtml xml
];
- configureFlags = [
- "-fssh" "-fclosing" "-f-highlighter" "-fhighlightingkate"
- "-fdarcs28"
- ];
+ jailbreak = true;
homepage = "http://hackage.haskell.org/package/darcsden";
description = "Darcs repository UI and hosting/collaboration app (hub.darcs.net branch).";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"darcswatch" = callPackage
@@ -33416,10 +34566,10 @@ self: {
filepath HTTP mime-string mtl nano-md5 network old-locale old-time
parsec process regex-compat safe time unix xhtml zlib
];
- configureFlags = [ "-f-static" ];
homepage = "http://darcswatch.nomeata.de/";
description = "Track application of Darcs patches";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dash-haskell" = callPackage
@@ -33452,7 +34602,6 @@ self: {
version = "0.2.2.6";
sha256 = "0668qgllmp2911ppsb0g9z95nq2x0h2cvzyyjlb6iwhnjzyyg7gf";
buildDepends = [ array base containers transformers ];
- configureFlags = [ "-fsplitbase" "-fcategory" ];
homepage = "http://www.haskell.org/haskellwiki/Record_access";
description = "Utilities for accessing and manipulating fields of records";
license = stdenv.lib.licenses.bsd3;
@@ -33465,6 +34614,7 @@ self: {
version = "0.0.1";
sha256 = "0l1ywmr4jry4cys7lq6k0w0nsdpqj1g5l3vsnxyf0ai1901zk18i";
buildDepends = [ base data-accessor monadLib ];
+ jailbreak = true;
description = "Accessor functions for monadLib's monads";
license = "unknown";
}) {};
@@ -33476,6 +34626,7 @@ self: {
version = "0.2.0.3";
sha256 = "1yvfk55qra7f9ggcybw3j68xg9dzx2f07swj99v4f588gh32ixhz";
buildDepends = [ base data-accessor monads-fd transformers ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Record_access";
description = "Use Accessor to access state in monads-fd State monad class";
license = stdenv.lib.licenses.bsd3;
@@ -33513,7 +34664,6 @@ self: {
version = "0.2.1.11";
sha256 = "1n2slv287zp6pabqb7xbfi296dbikw5a4ivqmnas0c4nxikqkayx";
buildDepends = [ base data-accessor template-haskell utility-ht ];
- configureFlags = [ "-f-template_2_4" ];
homepage = "http://www.haskell.org/haskellwiki/Record_access";
description = "Utilities for accessing and manipulating fields of records";
license = stdenv.lib.licenses.bsd3;
@@ -33621,6 +34771,7 @@ self: {
version = "0.3.0.0";
sha256 = "0rmn4pq5pgvam78vxp4y7431jai8dklml322r4nw47jjc1m20kmv";
buildDepends = [ base stm ];
+ jailbreak = true;
description = "A Library for directional queues";
license = stdenv.lib.licenses.mit;
}) {};
@@ -33748,9 +34899,11 @@ self: {
array base binary bytestring QuickCheck spool syb test-framework
test-framework-quickcheck2 vector
];
+ jailbreak = true;
homepage = "http://monoid.at/code";
description = "Space-efficient and privacy-preserving data dispersal algorithms";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-dword" = callPackage
@@ -33787,6 +34940,7 @@ self: {
homepage = "https://github.com/jcristovao/easy-data";
description = "Consistent set of utility functions for Maybe, Either, List, Monoids";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-endian" = callPackage
@@ -33809,6 +34963,7 @@ self: {
sha256 = "0py4a3mzqga25y6y1sirvc9369n3b7y5kpm5f9m613yjlypv6pc1";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-filepath" = callPackage
@@ -33835,7 +34990,6 @@ self: {
base lazysmallcheck prelude-safeenum QuickCheck reflection
smallcheck tagged
];
- configureFlags = [ "-fsplitbase" "-fbase4" ];
homepage = "http://code.haskell.org/~wren/";
description = "Finite totally ordered sets";
license = stdenv.lib.licenses.bsd3;
@@ -33943,6 +35097,7 @@ self: {
buildDepends = [ base containers ];
description = "Write-once variables with concurrency support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-kiln" = callPackage
@@ -33956,6 +35111,7 @@ self: {
buildDepends = [
base containers data-fix IfElse mtl transformers
];
+ jailbreak = true;
homepage = "https://github.com/kwf/data-kiln";
description = "Sculpt mutable recursive data with reference equality; bake it using a data kiln into an immutable lazy structure";
license = stdenv.lib.licenses.bsd3;
@@ -33984,7 +35140,7 @@ self: {
buildDepends = [
base comonad containers semigroupoids transformers
];
- configureFlags = [ "-fderivedatatypeable" ];
+ jailbreak = true;
homepage = "http://github.com/roconnor/data-lens/";
description = "Used to be Haskell 98 Lenses";
license = stdenv.lib.licenses.bsd3;
@@ -33997,7 +35153,6 @@ self: {
version = "2.0.5";
sha256 = "0r8cfgn6wx304b5ihmwgsxxjwalb7086wii655mgmb6cn3nirpyk";
buildDepends = [ base comonad data-lens mtl transformers ];
- configureFlags = [ "-fderivedatatypeable" ];
homepage = "http://github.com/roconnor/data-lens-fd/";
description = "Lenses";
license = stdenv.lib.licenses.bsd3;
@@ -34011,9 +35166,11 @@ self: {
sha256 = "0frzjfcp7w1ayfai1m07n0fpj3z1vbi971bc1kn1iarxhakny651";
buildDepends = [ base data-lens ixset ];
testDepends = [ QuickCheck ];
+ jailbreak = true;
homepage = "https://github.com/dag/data-lens-ixset";
description = "A Lens for IxSet";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-lens-light" = callPackage
@@ -34083,9 +35240,11 @@ self: {
version = "0.1.2";
sha256 = "1yzxkch0xzy76iyad0yshfnpvz38xklqdlyj8lgqnqsllw0vwh0m";
buildDepends = [ base semigroups ];
+ jailbreak = true;
homepage = "http://github.com/glehel/data-nat";
description = "data Nat = Zero | Succ Nat";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-object" = callPackage
@@ -34095,6 +35254,7 @@ self: {
version = "0.3.1.9";
sha256 = "0z8m23kw8mj6hhy1r8y1vvlxxpwl273dhanszig2673a1sw0l98l";
buildDepends = [ base bytestring failure text time ];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/data-object/tree/master";
description = "Represent hierachichal structures, called objects in JSON. (deprecated)";
license = stdenv.lib.licenses.bsd3;
@@ -34112,9 +35272,11 @@ self: {
base bytestring bytestring-trie convertible-text data-object
failure JSONb text
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/data-object-json/tree/master";
description = "Serialize JSON data to/from Haskell using the data-object library. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-object-yaml" = callPackage
@@ -34131,10 +35293,11 @@ self: {
base bytestring conduit containers convertible-text data-object
failure text transformers yaml
];
- configureFlags = [ "-f-buildtests" ];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/data-object-yaml";
description = "Serialize data to and from Yaml files (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-or" = callPackage
@@ -34144,7 +35307,6 @@ self: {
version = "1.0.0.4";
sha256 = "17plwr0ayll8na73vhdsfxk86dnds4rpj8v6nww7shb6vk5v3hf5";
buildDepends = [ base ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~wren/";
description = "A data type for non-exclusive disjunction";
license = stdenv.lib.licenses.bsd3;
@@ -34180,6 +35342,7 @@ self: {
version = "0.2.3";
sha256 = "1ygbhn399d4hlrdjmg7gxbr5akydb78p6qa80rv7m6j0fsqzbf6y";
buildDepends = [ base deepseq mtl parallel pretty time ];
+ jailbreak = true;
description = "Prettyprint and compare Data values";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -34193,6 +35356,7 @@ self: {
buildDepends = [ base ];
description = "Reference cells that need two independent indices to be accessed";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-r-tree" = callPackage
@@ -34209,7 +35373,6 @@ self: {
base binary containers HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [ "-f-test-strict" ];
homepage = "https://github.com/sebastian-philipp/r-tree";
description = "R-Tree is a spatial data structure similar to Quadtrees or B-Trees";
license = stdenv.lib.licenses.mit;
@@ -34222,6 +35385,7 @@ self: {
version = "0.0";
sha256 = "0bcizcf6i1hfpk7ry64si40mfdndgd8k0h9mzh873xp1v2qali7n";
buildDepends = [ base stm transformers ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Mutable_variable";
description = "Unify STRef and IORef in plain Haskell 98";
license = stdenv.lib.licenses.bsd3;
@@ -34237,7 +35401,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers ];
- configureFlags = [ "-f-tests" ];
homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools/IOReification";
description = "Reify a recursive data structure into an explicit graph";
license = stdenv.lib.licenses.bsd3;
@@ -34275,6 +35438,7 @@ self: {
buildDepends = [ base bytestring bytestring-mmap unix ];
description = "Ropes, an alternative to (Byte)Strings";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-size" = callPackage
@@ -34295,6 +35459,7 @@ self: {
version = "20090215.0";
sha256 = "0h6z4yibjbnzck2fvh9mnppz9j0lzgx8nzmzm08q5yzmzjydy3rk";
buildDepends = [ base vector-space ];
+ jailbreak = true;
homepage = "http://code.haskell.org/data-spacepart";
description = "Deprecated. Now called \"spacepart\". Space partitioning data structures.";
license = stdenv.lib.licenses.bsd3;
@@ -34316,9 +35481,11 @@ self: {
base cereal containers deepseq lens QuickCheck safecopy
test-framework test-framework-quickcheck2 transformers vector
];
+ jailbreak = true;
homepage = "https://github.com/Palmik/data-store";
description = "Type safe, in-memory dictionary with multidimensional keys";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-stringmap" = callPackage
@@ -34335,9 +35502,6 @@ self: {
base containers deepseq ghc-heap-view HUnit QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [
- "-f-test-strict" "-ftest-properties" "-f-with-sizeable"
- ];
description = "An efficient implementation of maps from strings to arbitrary values";
license = stdenv.lib.licenses.mit;
}) {};
@@ -34432,6 +35596,7 @@ self: {
buildDepends = [ base ];
description = "Basic type wrangling types and classes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"data-util" = callPackage
@@ -34471,7 +35636,6 @@ self: {
base bytestring cmdargs containers directory either filepath lens
postgresql-simple text time transformers
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/markhibberd/database-migrate";
description = "Database versioning and migration (experimental)";
license = stdenv.lib.licenses.bsd3;
@@ -34484,7 +35648,7 @@ self: {
version = "0.0.1";
sha256 = "1aqp7a46p758f1q99cn700mgc1dic896gpsih3vj2fmffqj42gd7";
buildDepends = [ base containers ];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://dbs.informatik.uni-halle.de/Lehre/LP09/";
description = "Demonstrate how a database can be implemented the functional way";
license = stdenv.lib.licenses.bsd3;
@@ -34499,7 +35663,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base containers ];
- configureFlags = [ "-f-tests" ];
homepage = "http://www.haskell.org/haskellwiki/Library/Data_encoding";
description = "Data encoding library";
license = stdenv.lib.licenses.bsd3;
@@ -34526,6 +35689,7 @@ self: {
];
description = "An implementation of datalog in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"datapacker" = callPackage
@@ -34564,6 +35728,7 @@ self: {
version = "0.2.2.0";
sha256 = "08d90fii0nmvmfxhhw4k5ja13jyxg79n527089lrc2r31l3wj40a";
buildDepends = [ base base-unicode-symbols parsec syb time ];
+ jailbreak = true;
homepage = "http://redmine.iportnov.ru/projects/dates/";
description = "Small library for parsing different dates formats";
license = stdenv.lib.licenses.bsd3;
@@ -34623,6 +35788,7 @@ self: {
homepage = "http://devel.comunidadhaskell.org/dbjava/";
description = "Decompiler Bytecode Java";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dbmigrations" = callPackage
@@ -34642,7 +35808,7 @@ self: {
HDBC-postgresql HDBC-sqlite3 HUnit mtl process random
template-haskell text time yaml-light
];
- configureFlags = [ "-f-testing" ];
+ jailbreak = true;
description = "An implementation of relational database \"migrations\"";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -34683,9 +35849,11 @@ self: {
buildDepends = [
base containers dbus-core monads-tf text transformers
];
+ jailbreak = true;
homepage = "http://john-millikin.com/software/haskell-dbus/";
description = "Monadic and object-oriented interfaces to DBus";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dbus-core" = callPackage
@@ -34701,6 +35869,7 @@ self: {
base binary bytestring containers data-binary-ieee754 libxml-sax
network parsec text unix vector xml-types
];
+ jailbreak = true;
homepage = "https://john-millikin.com/software/dbus-core/";
description = "Low-level D-Bus protocol implementation";
license = stdenv.lib.licenses.gpl3;
@@ -34716,6 +35885,7 @@ self: {
sha256 = "0dg03nv7bsjydywhby0rv1a6jc90gf2885djxd8pb9aly2ncpjxx";
buildDepends = [ base containers dbus parsec template-haskell ];
testDepends = [ base containers dbus QuickCheck ];
+ jailbreak = true;
description = "Quasi-quoter for DBus functions";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -34729,6 +35899,7 @@ self: {
version = "0.1.1.0";
sha256 = "1rwxbv92x7c0psp2s88cn168zkxdghviym9zpaz13av7ix06zx7a";
buildDepends = [ base containers dbus syb template-haskell text ];
+ jailbreak = true;
description = "TemplateHaskell generator of DBus bindings";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -34746,8 +35917,10 @@ self: {
base bytestring cereal containers QuickCheck quickcheck-instances
test-framework test-framework-quickcheck2
];
+ jailbreak = true;
description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dclabel-eci11" = callPackage
@@ -34772,6 +35945,7 @@ self: {
buildDepends = [
base containers deepseq parsec transformers wl-pprint
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler common utilities";
license = stdenv.lib.licenses.mit;
@@ -34792,6 +35966,7 @@ self: {
ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra
ddc-source-tetra deepseq directory filepath mtl process
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler build framework";
license = stdenv.lib.licenses.mit;
@@ -34820,6 +35995,7 @@ self: {
buildDepends = [
array base containers ddc-base deepseq directory mtl transformers
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler core language and type checker";
license = stdenv.lib.licenses.mit;
@@ -34836,6 +36012,7 @@ self: {
buildDepends = [
array base containers ddc-base ddc-core deepseq mtl transformers
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler semantic evaluator for the core language";
license = stdenv.lib.licenses.mit;
@@ -34853,6 +36030,7 @@ self: {
array base containers ddc-base ddc-core ddc-core-salt
ddc-core-simpl deepseq mtl transformers
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler data flow compiler";
license = stdenv.lib.licenses.mit;
@@ -34870,6 +36048,7 @@ self: {
array base containers ddc-base ddc-core ddc-core-salt
ddc-core-simpl mtl transformers
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler LLVM code generator";
license = stdenv.lib.licenses.mit;
@@ -34886,6 +36065,7 @@ self: {
buildDepends = [
array base containers ddc-base ddc-core deepseq mtl transformers
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler C code generator";
license = stdenv.lib.licenses.mit;
@@ -34902,6 +36082,7 @@ self: {
buildDepends = [
array base containers ddc-base ddc-core deepseq mtl transformers
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler code transformations";
license = stdenv.lib.licenses.mit;
@@ -34919,6 +36100,7 @@ self: {
array base containers ddc-base ddc-core ddc-core-salt
ddc-core-simpl deepseq mtl transformers
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler intermediate language";
license = stdenv.lib.licenses.mit;
@@ -34940,6 +36122,7 @@ self: {
ddc-core-tetra ddc-interface ddc-source-tetra deepseq directory
filepath mtl process transformers
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler top-level driver";
license = stdenv.lib.licenses.mit;
@@ -34969,6 +36152,7 @@ self: {
array base containers ddc-base ddc-core ddc-core-salt
ddc-core-tetra deepseq mtl transformers
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler source language";
license = stdenv.lib.licenses.mit;
@@ -34993,9 +36177,11 @@ self: {
ddc-core-tetra ddc-driver ddc-interface ddc-source-tetra directory
filepath haskeline mtl process transformers
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler command line tools";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ddc-war" = callPackage
@@ -35011,6 +36197,7 @@ self: {
buildDepends = [
base buildbox containers directory filepath process random stm
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciplined Disciple Compiler test driver and buildbot";
license = stdenv.lib.licenses.mit;
@@ -35030,9 +36217,11 @@ self: {
base containers ddc-base ddc-core ddc-core-eval ddc-core-simpl
haskeline haskell-src-exts
];
+ jailbreak = true;
homepage = "http://disciple.ouroborus.net";
description = "Disciple Core language interactive interpreter";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dead-simple-json" = callPackage
@@ -35049,6 +36238,7 @@ self: {
homepage = "http://hub.darcs.net/scravy/dead-simple-json";
description = "Dead simple JSON parser, with some Template Haskell sugar";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"debian" = callPackage
@@ -35072,7 +36262,6 @@ self: {
pureMD5 regex-compat regex-tdfa template-haskell text time unix
Unixutils utf8-string zlib
];
- configureFlags = [ "-flistlike" "-fnetwork-uri" ];
homepage = "https://github.com/ddssff/debian-haskell";
description = "Modules for working with the Debian package system";
license = stdenv.lib.licenses.bsd3;
@@ -35127,8 +36316,10 @@ self: {
version = "0.1.0.0";
sha256 = "1fnp2c2rdpihvxm5j22z1mrf8pnpcnasvfsrlg7lvg5m76md7k3v";
buildDepends = [ base comonad-transformers ];
+ jailbreak = true;
description = "The categorical dual of transformers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"decoder-conduit" = callPackage
@@ -35138,9 +36329,11 @@ self: {
version = "0.0.1.1";
sha256 = "0z5krcl4xd385f7v2bsnfyr7zidqwfjvc6b432gbbn2vcrx966c7";
buildDepends = [ base binary bytestring conduit ];
+ jailbreak = true;
homepage = "https://github.com/hansonkd/decoder-conduit";
description = "Conduit for decoding ByteStrings using Data.Binary.Get";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dedukti" = callPackage
@@ -35159,10 +36352,11 @@ self: {
haskell-src-exts-qq hmk mtl parsec process Stream stringtable-atom
time unix wl-pprint
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
homepage = "http://www.lix.polytechnique.fr/dedukti";
description = "A type-checker for the λΠ-modulo calculus";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"deeplearning-hs" = callPackage
@@ -35181,6 +36375,7 @@ self: {
accelerate base mtl QuickCheck repa repa-algorithms test-framework
test-framework-quickcheck2 vector
];
+ jailbreak = true;
homepage = "https://github.com/ajtulloch/deeplearning-hs";
description = "Deep Learning in Haskell";
license = stdenv.lib.licenses.mit;
@@ -35214,15 +36409,10 @@ self: {
testDepends = [
base deepseq HUnit parallel random template-haskell
];
- configureFlags = [
- "-fnfdata_instance_pattern" "-fuse_sop"
- "-f-warn_pattern_match_failure" "-fuse_ww_deepseq"
- "-fjust_alias_gseqable" "-fparallelism_experiment"
- "-fhaskell98_fragment"
- ];
homepage = "http://fremissant.net/deepseq-bounded";
description = "Bounded deepseq, including support for generic deriving";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"deepseq-generics" = callPackage
@@ -35250,8 +36440,10 @@ self: {
sha256 = "12wk8higrp12b22zzz1b4ar1q5h7flk22bp2rvswsqri2zkbi965";
buildDepends = [ base deepseq template-haskell ];
testDepends = [ base deepseq template-haskell ];
+ jailbreak = true;
description = "Template Haskell based deriver for optimised NFData instances";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"deepzoom" = callPackage
@@ -35263,6 +36455,7 @@ self: {
buildDepends = [ base directory filepath hsmagick ];
description = "A DeepZoom image slicer. Only known to work on 32bit Linux";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"defargs" = callPackage
@@ -35275,6 +36468,7 @@ self: {
homepage = "https://github.com/Kinokkory/defargs";
description = "default arguments in haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"definitive-base" = callPackage
@@ -35289,6 +36483,7 @@ self: {
array base bytestring containers deepseq ghc-prim GLURaw OpenGL
OpenGLRaw primitive vector
];
+ jailbreak = true;
homepage = "http://coiffier.net/projects/definitive-framework.html";
description = "The base modules of the Definitive framework";
license = "unknown";
@@ -35309,9 +36504,11 @@ self: {
definitive-reactive directory filepath old-locale primitive time
unix vector
];
+ jailbreak = true;
homepage = "http://coiffier.net/projects/definitive-framework.html";
description = "A library that enable you to interact with the filesystem in a definitive way";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"definitive-graphics" = callPackage
@@ -35331,9 +36528,11 @@ self: {
JuicyPixels mtl primitive stb-truetype transformers utf8-string
vector zlib
];
+ jailbreak = true;
homepage = "http://coiffier.net/projects/definitive-framework.html";
description = "A definitive package allowing you to open windows, read image files and render text to be displayed or saved";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"definitive-parser" = callPackage
@@ -35349,6 +36548,7 @@ self: {
array base bytestring containers cpu deepseq definitive-base
ghc-prim GLURaw OpenGL OpenGLRaw primitive utf8-string vector
];
+ jailbreak = true;
homepage = "http://coiffier.net/projects/definitive-framework.html";
description = "A parser combinator library for the Definitive framework";
license = "unknown";
@@ -35367,9 +36567,11 @@ self: {
array base bytestring clock containers deepseq definitive-base
primitive vector
];
+ jailbreak = true;
homepage = "http://coiffier.net/projects/definitive-framework.html";
description = "A simple Reactive library";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"definitive-sound" = callPackage
@@ -35386,9 +36588,11 @@ self: {
alsa-core alsa-pcm array base bytestring clock containers deepseq
definitive-base primitive sample-frame storable-record vector
];
+ jailbreak = true;
homepage = "http://coiffier.net/projects/definitive-framework.html";
description = "A definitive package to handle sound and play it back";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"deiko-config" = callPackage
@@ -35402,6 +36606,7 @@ self: {
buildDepends = [
array base containers exceptions mtl parsec text transformers
];
+ jailbreak = true;
homepage = "http://github.com/YoEight/deiko-config";
description = "Small and typesafe configuration library";
license = stdenv.lib.licenses.bsd3;
@@ -35418,6 +36623,7 @@ self: {
homepage = "https://github.com/massysett/deka";
description = "Decimal floating point arithmetic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { mpdec = null;};
"deka-tests" = callPackage
@@ -35435,9 +36641,11 @@ self: {
transformers
];
testDepends = [ base bytestring deka QuickCheck quickpull ];
+ jailbreak = true;
homepage = "https://github.com/massysett/deka";
description = "Tests for deka, decimal floating point arithmetic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"delaunay" = callPackage
@@ -35466,6 +36674,7 @@ self: {
homepage = "https://github.com/sof/delicious";
description = "Accessing the del.icio.us APIs from Haskell (v2)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"delimited-text" = callPackage
@@ -35524,10 +36733,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base directory filepath ];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
homepage = "http://protempore.net/denominate/";
description = "Functions supporting bulk file and directory name normalization";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dependent-map" = callPackage
@@ -35628,6 +36838,7 @@ self: {
buildDepends = [ base fgl ];
description = "Find derangements of lists";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"derivation-trees" = callPackage
@@ -35637,8 +36848,10 @@ self: {
version = "0.7.3";
sha256 = "05f77vkqzia91rywkg68ad24j98a7h9aqkd0568x2zmqcndzbisy";
buildDepends = [ applicative-extras base labeled-tree mtl ];
+ jailbreak = true;
description = "Typeset Derivation Trees via MetaPost";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"derive" = callPackage
@@ -35668,9 +36881,11 @@ self: {
version = "0.1.1";
sha256 = "0bggj2jb3bbgxcz75v8q2yx29v88skiwjaj3fxkkynnv5zvrbgwr";
buildDepends = [ base instant-generics template-haskell ];
+ jailbreak = true;
homepage = "http://github.com/konn/derive-IG";
description = "Macro to derive instances for Instant-Generics using Template Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"derive-gadt" = callPackage
@@ -35687,8 +36902,10 @@ self: {
base containers haskell-src-exts haskell-src-meta pretty
template-haskell
];
+ jailbreak = true;
description = "Instance deriving for (a subset of) GADTs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"derive-trie" = callPackage
@@ -35698,6 +36915,7 @@ self: {
version = "0.2.1";
sha256 = "11c378mh5razibd9ljffm5353v4plrgvkfb62p6029f04sf29jnc";
buildDepends = [ array base containers template-haskell ];
+ jailbreak = true;
homepage = "http://github.com/baldo/derive-trie";
description = "Automatic derivation of Trie implementations";
license = stdenv.lib.licenses.bsd3;
@@ -35724,6 +36942,7 @@ self: {
homepage = "http://darcsden.com/kyagrd/derp-lib";
description = "combinators based on parsing with derivatives (derp) package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"descrilo" = callPackage
@@ -35737,6 +36956,25 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "descriptive" = callPackage
+ ({ mkDerivation, aeson, base, bifunctors, containers, hspec, HUnit
+ , mtl, text, transformers
+ }:
+ mkDerivation {
+ pname = "descriptive";
+ version = "0.1.1";
+ sha256 = "1rly83jadbs1kqq0ax1kjhxwazpk8s2k6xyhdh88w733rdl1qz8q";
+ buildDepends = [
+ aeson base bifunctors containers mtl text transformers
+ ];
+ testDepends = [
+ aeson base bifunctors containers hspec HUnit mtl text transformers
+ ];
+ homepage = "https://github.com/chrisdone/descriptive";
+ description = "Self-describing consumers/parsers; forms, cmd-line args, JSON, etc";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"despair" = callPackage
({ mkDerivation, base, random }:
mkDerivation {
@@ -35775,6 +37013,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring utf8-string ];
+ jailbreak = true;
description = "Get rid of unicode (utf-8) symbols in Haskell sources";
license = stdenv.lib.licenses.mit;
}) {};
@@ -35808,6 +37047,7 @@ self: {
homepage = "https://github.com/kmcallister/dewdrop";
description = "Find gadgets for return-oriented programming on x86";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dfrac" = callPackage
@@ -35838,6 +37078,7 @@ self: {
];
description = "Build Debian From Scratch CD/DVD images";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dgs" = callPackage
@@ -35847,9 +37088,11 @@ self: {
version = "0.2";
sha256 = "100xlxqhy33kllyb4dy7q0bwwy5wn9w45qy1cb5f0yb0dqff1pnx";
buildDepends = [ base HTTP mtl network split ];
+ jailbreak = true;
homepage = "http://www.dmwit.com/dgs";
description = "Haskell front-end for DGS' bot interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dia-base" = callPackage
@@ -35859,6 +37102,7 @@ self: {
version = "0.1.1.2";
sha256 = "08j65fgxrbp8mdhs887w6hj4wakxrkbk9nr5kk9jy0bahw7dw9c5";
buildDepends = [ base deepseq ];
+ jailbreak = true;
description = "An EDSL for teaching Haskell with diagrams - data types";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -35874,6 +37118,7 @@ self: {
buildDepends = [
base containers data-pprint deepseq dia-base mtl xhtml
];
+ jailbreak = true;
description = "An EDSL for teaching Haskell with diagrams - functions";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -35889,9 +37134,6 @@ self: {
buildDepends = [
diagrams-contrib diagrams-core diagrams-lib diagrams-svg
];
- configureFlags = [
- "-f-rasterific" "-f-ps" "-fsvg" "-f-gtk" "-f-cairo"
- ];
homepage = "http://projects.haskell.org/diagrams";
description = "Embedded domain-specific language for declarative vector graphics";
license = stdenv.lib.licenses.bsd3;
@@ -35914,12 +37156,12 @@ self: {
diagrams-postscript diagrams-svg directory exceptions filepath
hashable haskell-src-exts hint lens mtl split transformers
];
- configureFlags = [
- "-fcairo" "-fsvg" "-fps" "-frasterific" "-fps" "-fsvg" "-fcairo"
- ];
+ configureFlags = [ "-fcairo" "-fsvg" "-fps" "-frasterific" ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams";
description = "hint-based build service for the diagrams graphics EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diagrams-cairo" = callPackage
@@ -35942,6 +37184,7 @@ self: {
homepage = "http://projects.haskell.org/diagrams";
description = "Cairo backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diagrams-canvas" = callPackage
@@ -36019,6 +37262,7 @@ self: {
homepage = "http://projects.haskell.org/diagrams/";
description = "Backend for rendering diagrams directly to GTK windows";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diagrams-haddock" = callPackage
@@ -36047,6 +37291,7 @@ self: {
homepage = "http://projects.haskell.org/diagrams/";
description = "Preprocessor for embedding diagrams in Haddock documentation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diagrams-lib" = callPackage
@@ -36084,9 +37329,11 @@ self: {
base cmdargs colour diagrams-core diagrams-lib filepath HPDF lens
monoid-extras mtl semigroups split vector-space
];
+ jailbreak = true;
homepage = "http://www.alpheccar.org";
description = "PDF backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diagrams-postscript" = callPackage
@@ -36140,6 +37387,7 @@ self: {
homepage = "http://projects.haskell.org/diagrams/";
description = "Rasterific backend for diagrams";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diagrams-svg" = callPackage
@@ -36170,9 +37418,11 @@ self: {
version = "0.6";
sha256 = "1qs4m1xy62pv6gjgip9vx2pwlv2gzjq1h86yiiq15yg4gcbn5fav";
buildDepends = [ base diagrams-core diagrams-lib dlist mtl ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/diagrams";
description = "TikZ backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dice" = callPackage
@@ -36200,9 +37450,11 @@ self: {
testDepends = [
base QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://monoid.at/code";
description = "Cryptographically secure n-sided dice via rejection sampling";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dictparser" = callPackage
@@ -36218,6 +37470,7 @@ self: {
homepage = "http://github.com/mwotton/dictparser";
description = "Parsec parsers for the DICT format produced by dictfmt -t";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diet" = callPackage
@@ -36227,7 +37480,6 @@ self: {
version = "0.0.1";
sha256 = "0qkyfmys5k6la10dvi8wsmw120xfarjblpkr33xiazll2m9845wh";
buildDepends = [ base ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/diet";
description = "Discrete Interval Encoding Tree";
license = stdenv.lib.licenses.bsd3;
@@ -36241,6 +37493,7 @@ self: {
sha256 = "1pcddda822n5zsjzs4ld4prjj04v4cgpk3hvjn7ivmdnb06g85il";
buildDepends = [ attoparsec base text ];
testDepends = [ attoparsec base hspec text ];
+ jailbreak = true;
description = "A parser for diff file formats";
license = stdenv.lib.licenses.agpl3;
}) {};
@@ -36290,6 +37543,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/diffcabal";
description = "Diff two .cabal files syntactically";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diffdump" = callPackage
@@ -36318,6 +37572,7 @@ self: {
version = "0.1";
sha256 = "0qij2pn107dfb9rl9rrd77l69wmfp9fghv9ysql2d7g5qdr306pd";
buildDepends = [ base polynomial ];
+ jailbreak = true;
homepage = "https://github.com/bgamari/digamma";
description = "A robust implementation of the digamma function";
license = stdenv.lib.licenses.bsd3;
@@ -36331,7 +37586,6 @@ self: {
sha256 = "04gy2zp8yzvv7j9bdfvmfzcz3sqyqa6rwslqcn4vyair2vmif5v4";
buildDepends = [ base bytestring ];
extraLibraries = [ zlib ];
- configureFlags = [ "-f-bytestring-in-base" ];
description = "Various cryptographic hashes for bytestrings; CRC32 and Adler32 for now";
license = stdenv.lib.licenses.bsd3;
}) { inherit (pkgs) zlib;};
@@ -36420,6 +37674,7 @@ self: {
buildDepends = [
base blaze-html blaze-markup digestive-functors text
];
+ jailbreak = true;
homepage = "http://github.com/jaspervdj/digestive-functors";
description = "Blaze frontend for the digestive-functors library";
license = stdenv.lib.licenses.bsd3;
@@ -36436,6 +37691,7 @@ self: {
buildDepends = [
base bytestring digestive-functors happstack-server text
];
+ jailbreak = true;
homepage = "http://github.com/jaspervdj/digestive-functors";
description = "Happstack backend for the digestive-functors library";
license = stdenv.lib.licenses.bsd3;
@@ -36452,6 +37708,7 @@ self: {
buildDepends = [
base blaze-builder digestive-functors heist mtl text xmlhtml
];
+ jailbreak = true;
homepage = "http://github.com/jaspervdj/digestive-functors";
description = "Heist frontend for the digestive-functors library";
license = stdenv.lib.licenses.bsd3;
@@ -36465,9 +37722,11 @@ self: {
sha256 = "00n1cxkrkd3ayl7pp6pr7nyx6zcwqpsqzflnnnf0f8dabrz4wzdc";
buildDepends = [ base digestive-functors hsp hsx text ];
buildTools = [ trhsx ];
+ jailbreak = true;
homepage = "http://src.seereason.com/digestive-functors-hsp";
description = "HSP support for digestive-functors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"digestive-functors-scotty" = callPackage
@@ -36499,6 +37758,7 @@ self: {
base bytestring containers digestive-functors directory filepath
mtl snap-core text
];
+ jailbreak = true;
homepage = "http://github.com/jaspervdj/digestive-functors";
description = "Snap backend for the digestive-functors library";
license = stdenv.lib.licenses.bsd3;
@@ -36514,7 +37774,6 @@ self: {
sha256 = "18l6ca3kgp0g8zmai6jsq6pz7hjilcnyspvz95h9pqklhh2z32qk";
buildDepends = [ base lens ];
testDepends = [ base directory doctest filepath QuickCheck ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/NICTA/digit";
description = "A data-type representing digits 0-9 and other combinations";
license = stdenv.lib.licenses.bsd3;
@@ -36574,8 +37833,10 @@ self: {
strict-concurrency template-haskell text transformers
unordered-containers wai wai-eventsource wai-extra warp web-css
];
+ jailbreak = true;
description = "Dingo is a Rich Internet Application platform based on the Warp web server";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dingo-example" = callPackage
@@ -36593,8 +37854,10 @@ self: {
aeson base blaze-html bytestring dingo-core dingo-widgets fclabels
shakespeare-js template-haskell text transformers
];
+ jailbreak = true;
description = "Dingo Example";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dingo-widgets" = callPackage
@@ -36611,8 +37874,10 @@ self: {
file-embed shakespeare-js template-haskell text transformers
unordered-containers
];
+ jailbreak = true;
description = "Dingo Widgets";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diophantine" = callPackage
@@ -36666,6 +37931,7 @@ self: {
homepage = "http://dankna.com/software/";
description = "Native implementation of the FastCGI protocol";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"direct-http" = callPackage
@@ -36682,6 +37948,7 @@ self: {
monad-control mtl network old-locale SafeSemaphore time
transformers-base unix utf8-string
];
+ jailbreak = true;
homepage = "http://ireneknapp.com/software/";
description = "Native webserver that acts as a library";
license = stdenv.lib.licenses.bsd3;
@@ -36709,6 +37976,7 @@ self: {
homepage = "http://dankna.com/software/";
description = "Lightweight replacement for Plugins, specific to GHC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"direct-sqlite" = callPackage
@@ -36723,9 +37991,6 @@ self: {
testDepends = [
base base16-bytestring bytestring directory HUnit text
];
- configureFlags = [
- "-furifilenames" "-ffulltextsearch" "-f-systemlib"
- ];
homepage = "https://github.com/IreneKnapp/direct-sqlite";
description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support.";
license = stdenv.lib.licenses.bsd3;
@@ -36743,6 +38008,7 @@ self: {
base bytestring containers deepseq hashable parallel QuickCheck
unordered-containers vector
];
+ jailbreak = true;
description = "Finite directed cubical complexes and associated algorithms";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -36809,6 +38075,7 @@ self: {
unordered-containers
];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dirstream" = callPackage
@@ -36860,6 +38127,7 @@ self: {
homepage = "http://github.com/lightquake/discount";
description = "Haskell bindings to the discount Markdown library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { markdown = null;};
"discrete-space-map" = callPackage
@@ -36893,6 +38161,7 @@ self: {
homepage = "https://github.com/maxwellsayles/disjoint-set";
description = "Persistent disjoint-sets, a.k.a union-find.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"disjoint-sets-st" = callPackage
@@ -36931,6 +38200,7 @@ self: {
buildDepends = [ base Cabal directory filepath process ];
description = "Generate/Upload cabal package to Hackage";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-process" = callPackage
@@ -36949,7 +38219,6 @@ self: {
old-locale random rank1dynamic stm syb template-haskell time
transformers
];
- configureFlags = [ "-f-prof" "-fth" ];
homepage = "http://haskell-distributed.github.com/";
description = "Cloud Haskell: Erlang-style concurrency in Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -36978,10 +38247,10 @@ self: {
network-transport network-transport-tcp rematch stm test-framework
test-framework-hunit transformers
];
- configureFlags = [ "-f-perf" ];
homepage = "http://github.com/haskell-distributed/distributed-process-async";
description = "Cloud Haskell Async API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-process-azure" = callPackage
@@ -37002,10 +38271,11 @@ self: {
libssh2 mtl network-transport network-transport-tcp pureMD5
rank1dynamic transformers unix
];
- configureFlags = [ "-f-build-demos" ];
+ jailbreak = true;
homepage = "http://github.com/haskell-distributed/distributed-process";
description = "Microsoft Azure backend for Cloud Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-process-client-server" = callPackage
@@ -37033,10 +38303,11 @@ self: {
network-transport network-transport-tcp rematch stm test-framework
test-framework-hunit transformers
];
- configureFlags = [ "-f-perf" ];
+ jailbreak = true;
homepage = "http://github.com/haskell-distributed/distributed-process-client-server";
description = "The Cloud Haskell Application Platform";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-process-execution" = callPackage
@@ -37067,10 +38338,10 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2 time
transformers unordered-containers
];
- configureFlags = [ "-f-perf" ];
homepage = "http://github.com/haskell-distributed/distributed-process-execution";
description = "Execution Framework for The Cloud Haskell Application Platform";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-process-extras" = callPackage
@@ -37098,10 +38369,11 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2 time
transformers unordered-containers
];
- configureFlags = [ "-f-perf" ];
+ jailbreak = true;
homepage = "http://github.com/haskell-distributed/distributed-process-extras";
description = "Cloud Haskell Extras";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-process-monad-control" = callPackage
@@ -37167,10 +38439,11 @@ self: {
QuickCheck rematch stm test-framework test-framework-hunit
test-framework-quickcheck2 time transformers unordered-containers
];
- configureFlags = [ "-f-perf" ];
+ jailbreak = true;
homepage = "http://github.com/haskell-distributed/distributed-process-platform";
description = "The Cloud Haskell Application Platform";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-process-registry" = callPackage
@@ -37201,10 +38474,11 @@ self: {
stm test-framework test-framework-hunit time transformers
unordered-containers
];
- configureFlags = [ "-f-perf" ];
+ jailbreak = true;
homepage = "http://github.com/haskell-distributed/distributed-process-registry";
description = "Cloud Haskell Extended Process Registry";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-process-simplelocalnet" = callPackage
@@ -37223,7 +38497,6 @@ self: {
network network-multicast network-transport network-transport-tcp
transformers
];
- configureFlags = [ "-f-build-example" ];
homepage = "http://haskell-distributed.github.com";
description = "Simple zero-configuration backend for Cloud Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -37258,6 +38531,7 @@ self: {
homepage = "http://github.com/haskell-distributed/distributed-process-supervisor";
description = "Supervisors for The Cloud Haskell Application Platform";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-process-task" = callPackage
@@ -37289,10 +38563,10 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2 time
transformers unordered-containers
];
- configureFlags = [ "-f-perf" ];
homepage = "http://github.com/haskell-distributed/distributed-process-task";
description = "Task Framework for The Cloud Haskell Application Platform";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-process-tests" = callPackage
@@ -37313,9 +38587,11 @@ self: {
testDepends = [
base network network-transport network-transport-tcp test-framework
];
+ jailbreak = true;
homepage = "http://github.com/haskell-distributed/distributed-process-tests";
description = "Tests for distributed-process";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributed-static" = callPackage
@@ -37338,6 +38614,7 @@ self: {
version = "1.0.0.0";
sha256 = "0zh9ap3hhylpk7bsp54hm9gj5x8f8zvm5sg7nydmxnigyq0b3l4y";
buildDepends = [ array base containers MonadRandom random ];
+ jailbreak = true;
homepage = "https://github.com/redelmann/haskell-distribution";
description = "Finite discrete probability distributions";
license = stdenv.lib.licenses.asl20;
@@ -37355,9 +38632,11 @@ self: {
base Chart Chart-cairo colour containers data-default-class
distribution lens
];
+ jailbreak = true;
homepage = "https://github.com/redelmann/haskell-distribution-plot";
description = "Easily plot distributions from the distribution package..";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"distributive" = callPackage
@@ -37372,7 +38651,6 @@ self: {
base ghc-prim tagged transformers transformers-compat
];
testDepends = [ base directory doctest filepath ];
- configureFlags = [ "-f-lib-werror" ];
homepage = "http://github.com/ekmett/distributive/";
description = "Distributive functors -- Dual to Traversable";
license = stdenv.lib.licenses.bsd3;
@@ -37444,9 +38722,11 @@ self: {
version = "0.0.1";
sha256 = "089b6z8hcv6q9y77zy8m96lc00r1ckzmff0mybp9l1akj7gwdpix";
buildDepends = [ base containers logict template-haskell ];
+ jailbreak = true;
homepage = "http://gitorious.org/djinn-th";
description = "Generate executable Haskell code from a type";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dlist" = callPackage
@@ -37510,8 +38790,10 @@ self: {
buildDepends = [
base bytestring containers contstuff dns iproute time
];
+ jailbreak = true;
description = "Caching DNS resolver library and mass DNS resolver utility";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dnsrbl" = callPackage
@@ -37537,6 +38819,7 @@ self: {
homepage = "https://github.com/maxpow4h/dnssd";
description = "DNS service discovery bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { dns_sd = null;};
"doc-review" = callPackage
@@ -37559,10 +38842,11 @@ self: {
sqlite tagchup text time transformers unix xhtml-combinators xml
xml-basic
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
homepage = "https://github.com/j3h/doc-review";
description = "Document review Web application, like http://book.realworldhaskell.org/";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"doccheck" = callPackage
@@ -37582,6 +38866,7 @@ self: {
homepage = "https://github.com/Fuuzetsu/doccheck";
description = "Checks Haddock comments for pitfalls and version changes";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"docidx" = callPackage
@@ -37616,9 +38901,11 @@ self: {
aeson base bytestring containers data-default lens network-uri
pipes pipes-bytestring pipes-http pipes-text text wreq
];
+ jailbreak = true;
homepage = "https://github.com/denibertovic/docker-hs";
description = "Haskell wrapper for Docker Remote API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dockercook" = callPackage
@@ -37709,6 +38996,7 @@ self: {
homepage = "http://github.com/karun012/doctest-discover";
description = "Easy way to run doctests via cabal";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"doctest-discover-configurator" = callPackage
@@ -37729,6 +39017,7 @@ self: {
homepage = "http://github.com/relrod/doctest-discover-noaeson";
description = "Easy way to run doctests via cabal (no aeson dependency, uses configurator instead)";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"doctest-prop" = callPackage
@@ -37808,6 +39097,7 @@ self: {
base hscolour hspec lens mtl random random-extras random-fu
transformers
];
+ jailbreak = true;
homepage = "http://github.com/egonschiele/dominion";
description = "A simulator for the board game Dominion";
license = stdenv.lib.licenses.bsd3;
@@ -37880,7 +39170,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers ];
- configureFlags = [ "-f-devel" ];
description = "A simple interface for building .dot graph files.";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -37897,7 +39186,6 @@ self: {
testDepends = [
base bytestring test-framework test-framework-quickcheck2 text
];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/bos/double-conversion";
description = "Fast conversion between double precision floating point and text";
license = stdenv.lib.licenses.bsd3;
@@ -37930,6 +39218,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/download";
description = "High-level file download based on URLs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"download-curl" = callPackage
@@ -37939,7 +39228,7 @@ self: {
version = "0.1.4";
sha256 = "1wf3pf2k4i6jvpfsjlxdj6v53qd33jj1z1ipaf3p47glgx4xw3lm";
buildDepends = [ base bytestring curl feed tagsoup xml ];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~dons/code/download-curl";
description = "High-level file download based on URLs";
license = stdenv.lib.licenses.bsd3;
@@ -37958,9 +39247,11 @@ self: {
buildDepends = [
base bytestring filepath http-enumerator tagsoup text
];
+ jailbreak = true;
homepage = "http://github.com/jaspervdj/download-media-content";
description = "Simple tool to download images from RSS feeds (e.g. Flickr, Picasa)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dph-base" = callPackage
@@ -37970,7 +39261,7 @@ self: {
version = "0.7.0.1";
sha256 = "19rc0h94lgxyndaw41wgnc0prwffl780i6nqsn9b7byvgy97f15y";
buildDepends = [ array base ghc-prim pretty random vector ];
- configureFlags = [ "-f-dtrace" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell";
description = "Data Parallel Haskell common config and debugging functions";
license = stdenv.lib.licenses.bsd3;
@@ -37990,9 +39281,11 @@ self: {
base containers dph-base dph-lifted-vseg dph-prim-par HUnit
old-time parseargs random vector
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell";
description = "Data Parallel Haskell example programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dph-lifted-base" = callPackage
@@ -38007,9 +39300,11 @@ self: {
array base containers dph-base dph-prim-par ghc pretty random
template-haskell vector
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell";
description = "Data Parallel Haskell common definitions used by other dph-lifted packages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dph-lifted-copy" = callPackage
@@ -38023,9 +39318,11 @@ self: {
buildDepends = [
array base dph-base dph-prim-par ghc random template-haskell vector
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell";
description = "Data Parallel Haskell lifted array combinators. (deprecated version)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dph-lifted-vseg" = callPackage
@@ -38040,9 +39337,11 @@ self: {
array base containers dph-base dph-lifted-base dph-prim-par ghc
pretty random template-haskell vector
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell";
description = "Data Parallel Haskell lifted array combinators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dph-par" = callPackage
@@ -38054,6 +39353,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell";
description = "(deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dph-prim-interface" = callPackage
@@ -38063,6 +39363,7 @@ self: {
version = "0.7.0.1";
sha256 = "17m03gylc61d7mx26rz70kwmi014rv1g14683vraa1b77pci5h8j";
buildDepends = [ base dph-base random vector ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell";
description = "Data Parallel Haskell segmented arrays. (abstract interface)";
license = stdenv.lib.licenses.bsd3;
@@ -38080,9 +39381,11 @@ self: {
base dph-base dph-prim-interface dph-prim-seq old-time random
vector
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell";
description = "Data Parallel Haskell segmented arrays. (production version)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dph-prim-seq" = callPackage
@@ -38096,6 +39399,7 @@ self: {
buildDepends = [
base dph-base dph-prim-interface ghc-prim primitive random vector
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell";
description = "Data Parallel Haskell segmented arrays. (sequential implementation)";
license = stdenv.lib.licenses.bsd3;
@@ -38110,6 +39414,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell";
description = "(deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dpkg" = callPackage
@@ -38150,7 +39455,6 @@ self: {
isExecutable = true;
buildDepends = [ base containers ];
testDepends = [ base containers hspec QuickCheck ];
- configureFlags = [ "-f-examples" "-f-no-tests" ];
homepage = "https://github.com/yamadapc/haskell-drawille";
description = "A port of asciimoo's drawille to haskell";
license = stdenv.lib.licenses.gpl3;
@@ -38173,9 +39477,11 @@ self: {
pem resourcet template-haskell time tls tls-extra transformers
urlencoded utf8-string
];
+ jailbreak = true;
homepage = "http://github.com/cakoose/dropbox-sdk-haskell";
description = "A library to access the Dropbox HTTP API";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dropsolve" = callPackage
@@ -38192,8 +39498,10 @@ self: {
base containers directory filepath haskell98 process regex-posix
time
];
+ jailbreak = true;
description = "A command line tool for resolving dropbox conflicts. Deprecated! Please use confsolve.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ds-kanren" = callPackage
@@ -38208,6 +39516,7 @@ self: {
testDepends = [ base QuickCheck tasty tasty-quickcheck ];
description = "A subset of the miniKanren language";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dsmc" = callPackage
@@ -38223,8 +39532,10 @@ self: {
attoparsec base bytestring containers entropy hslogger mwc-random
parallel primitive repa strict transformers vector
];
+ jailbreak = true;
description = "DSMC library for rarefied gas dynamics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dsmc-tools" = callPackage
@@ -38241,8 +39552,10 @@ self: {
base bytestring cmdargs ConfigFile dsmc gloss gloss-raster hslogger
mtl repa strict transformers vector
];
+ jailbreak = true;
description = "DSMC toolkit for rarefied gas dynamics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dson" = callPackage
@@ -38252,6 +39565,7 @@ self: {
version = "0.3.0.0";
sha256 = "15pqja0q1lram7xi5xk8dlcfg5m1z0l4zscqw24wm50hmqpxi09d";
buildDepends = [ base parsec ];
+ jailbreak = true;
homepage = "https://github.com/lcycon/hs-dson";
description = "Haskell DogeScript Object Notation Parser";
license = stdenv.lib.licenses.gpl3;
@@ -38264,6 +39578,7 @@ self: {
version = "0.4.1.1";
sha256 = "1zflz9vhcz7psssn6hrizmwdmrvpagxhl0648k6f1n9xj50kp99y";
buildDepends = [ base parsec ];
+ jailbreak = true;
homepage = "https://github.com/alvare/dson-parsec";
description = "DSON parser";
license = stdenv.lib.licenses.mit;
@@ -38278,10 +39593,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base random ];
- configureFlags = [ "-fbuildexamples" "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/DSP";
description = "Haskell Digital Signal Processing";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dstring" = callPackage
@@ -38291,9 +39607,11 @@ self: {
version = "0.4.0.4";
sha256 = "15zy1dhfs87hxq1qm54ym0pdhvg7l76m7vy5y06dnksb1sblhaqm";
buildDepends = [ base base-unicode-symbols dlist ];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/dstring";
description = "Difference strings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dtab" = callPackage
@@ -38313,6 +39631,7 @@ self: {
];
description = "Harmonix (Guitar Hero, Rock Band) DTA/DTB metadata library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dtd" = callPackage
@@ -38330,9 +39649,11 @@ self: {
lifted-base monad-control network resourcet text transformers
uri-conduit xml-catalog xml-conduit xml-types
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/xml";
description = "Parse and render DTD files (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dtd-text" = callPackage
@@ -38349,6 +39670,7 @@ self: {
homepage = "http://github.com/m15k/hs-dtd-text";
description = "Parse and render XML DTDs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dtd-types" = callPackage
@@ -38361,6 +39683,7 @@ self: {
homepage = "http://projects.haskell.org/dtd/";
description = "Basic types for representing XML DTDs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dtrace" = callPackage
@@ -38372,7 +39695,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-test" ];
description = "Haskell interface to the DTrace system tracing utility";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -38413,6 +39735,7 @@ self: {
testDepends = [
base HUnit MissingH QuickCheck tasty tasty-hunit tasty-quickcheck
];
+ jailbreak = true;
description = "Frontend development build tool";
license = stdenv.lib.licenses.mit;
}) {};
@@ -38435,9 +39758,9 @@ self: {
hashtables mtl process QuickCheck test-framework
test-framework-quickcheck2 unordered-containers
];
- configureFlags = [ "-f-test" "-f-stresstest" ];
description = "Efficient automatic differentiation and code generation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dvdread" = callPackage
@@ -38451,6 +39774,7 @@ self: {
pkgconfigDepends = [ dvdread ];
description = "A monadic interface to libdvdread";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { dvdread = null;};
"dvi-processing" = callPackage
@@ -38517,6 +39841,7 @@ self: {
base bytestring bytestring-mmap containers dwarf-el elf lens pretty
transformers
];
+ jailbreak = true;
description = "High-level wrapper around the dwarf library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -38530,6 +39855,7 @@ self: {
buildDepends = [ base Win32 ];
description = "Backend for a binding to the Microsoft DirectX 9 API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dx9d3d" = callPackage
@@ -38542,6 +39868,7 @@ self: {
extraLibraries = [ d3d9 ];
description = "A binding to the Microsoft DirectX 9 API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { d3d9 = null;};
"dx9d3dx" = callPackage
@@ -38554,6 +39881,7 @@ self: {
extraLibraries = [ d3dx9 ];
description = "A binding to the Microsoft DirectX 9 D3DX API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { d3dx9 = null;};
"dynamic-cabal" = callPackage
@@ -38563,18 +39891,18 @@ self: {
}:
mkDerivation {
pname = "dynamic-cabal";
- version = "0.3.3";
- sha256 = "0fq6q0j2fx7ygarzgsvb7scssjnrxjrq188d0habfar6bdm0vqdg";
+ version = "0.3.4";
+ sha256 = "080hynvyrc5jbfm4v5l04iby70rf6fqa3ynbpj1njdh6xjc4wnlv";
buildDepends = [
base containers data-default directory filepath ghc ghc-paths
haskell-generate haskell-src-exts time void
];
testDepends = [
- base containers directory doctest filepath HUnit tasty tasty-hunit
- tasty-th
+ base containers directory doctest filepath ghc HUnit tasty
+ tasty-hunit tasty-th
];
homepage = "http://github.com/bennofs/dynamic-cabal/";
- description = "dynamic-cabal";
+ description = "Access the functions from the Cabal library without depending on it";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -38590,9 +39918,11 @@ self: {
base bytestring cairo colour deepseq either GLFW-b GLUtil OpenGL
pango pipes transformers
];
+ jailbreak = true;
homepage = "https://github.com/adamwalker/dynamic-graph";
description = "Draw and update graphs in real time with OpenGL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dynamic-linker-template" = callPackage
@@ -38651,6 +39981,7 @@ self: {
];
description = "Object-oriented programming with duck typing and singleton classes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dynamic-state" = callPackage
@@ -38704,6 +40035,7 @@ self: {
version = "0.1";
sha256 = "10g8w50hhw8ap6lvsv9apmmfaqvqjwzhnq4mx1npapb8cmsmzgdb";
buildDepends = [ base bytestring network ];
+ jailbreak = true;
description = "Socket operations with timeouts";
license = "unknown";
}) {};
@@ -38719,9 +40051,11 @@ self: {
buildDepends = [
aeson base bytestring either http-conduit mtl resourcet text
];
+ jailbreak = true;
homepage = "http://github.com/sanetracker/easy-api";
description = "Utility code for building HTTP API bindings more quickly";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"easy-file" = callPackage
@@ -38762,6 +40096,7 @@ self: {
homepage = "http://hub.darcs.net/scravy/easyplot";
description = "A tiny plotting library, utilizes gnuplot for plotting";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"easyrender" = callPackage
@@ -38775,6 +40110,7 @@ self: {
homepage = "http://www.mathstat.dal.ca/~selinger/easyrender/";
description = "User-friendly creation of EPS, PostScript, and PDF files";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ebeats" = callPackage
@@ -38784,6 +40120,7 @@ self: {
version = "0.1.0";
sha256 = "0r3pl63fxrrfafwp3791xh0c47pb4jqqcm9lk52g0gaqg0s8x5qk";
buildDepends = [ base time ];
+ jailbreak = true;
description = "Time in ebeats";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -38822,6 +40159,7 @@ self: {
homepage = "https://github.com/singpolyma/ecdsa-haskell";
description = "Basic ECDSA signing implementation";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ecma262" = callPackage
@@ -38837,9 +40175,11 @@ self: {
buildDepends = [
base containers data-default lens parsec safe transformers
];
+ jailbreak = true;
homepage = "https://github.com/fabianbergmark/ECMA-262";
description = "A ECMA-262 interpreter library";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ecu" = callPackage
@@ -38854,8 +40194,10 @@ self: {
isExecutable = true;
buildDepends = [ base bytestring digest directory process vcd ];
extraLibraries = [ canlib ];
+ jailbreak = true;
description = "Tools for automotive ECU development";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { canlib = null;};
"ed25519" = callPackage
@@ -38866,10 +40208,10 @@ self: {
sha256 = "0x08p2941g7f3xsg8jgy5j73v0dihg47j2i1hb53c7h4jhvc1fmj";
buildDepends = [ base bytestring ];
testDepends = [ base bytestring hlint QuickCheck ];
- configureFlags = [ "-ftest-hlint" "-ftest-properties" ];
homepage = "http://thoughtpolice.github.com/hs-ed25519";
description = "ed25519 cryptographic signatures";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"eddie" = callPackage
@@ -38907,10 +40249,11 @@ self: {
testDepends = [
aeson base bifunctors bytestring directory tasty tasty-golden text
];
- configureFlags = [ "-f-build-executable" ];
+ jailbreak = true;
homepage = "http://github.com/brendanhay/ede";
description = "Templating language with similar syntax and features to Liquid or Jinja2";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"edenmodules" = callPackage
@@ -38933,9 +40276,9 @@ self: {
sha256 = "0fmr2chrpp990lyjfk13s4d8h1hdw853wk54233mpmxlh0sd32ki";
editedCabalFile = "978022c24ce2326e9fabd18ce30d687b72034eae80cabc5ede83312d96a1d1df";
buildDepends = [ base edenmodules parallel ];
- configureFlags = [ "-fpar" ];
description = "Semi-explicit parallel programming skeleton library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"edentv" = callPackage
@@ -38956,6 +40299,7 @@ self: {
homepage = "http://www.mathematik.uni-marburg.de/~eden";
description = "A Tool to Visualize Parallel Functional Program Executions";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"edge" = callPackage
@@ -38971,9 +40315,11 @@ self: {
buildDepends = [
ALUT base cmdtheline containers gloss random wraparound
];
+ jailbreak = true;
homepage = "http://frigidcode.com/code/edge";
description = "Top view space combat arcade game";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"edit-distance" = callPackage
@@ -38985,7 +40331,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base containers random ];
- configureFlags = [ "-fsplitbase" "-f-benchmark" "-f-tests" ];
homepage = "http://github.com/batterseapower/edit-distance";
description = "Levenshtein and restricted Damerau-Levenshtein edit distances";
license = stdenv.lib.licenses.bsd3;
@@ -39000,6 +40345,7 @@ self: {
buildDepends = [ base containers data-default lattices mtl ];
description = "Symmetric, stateful edit lenses";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"edit-lenses-demo" = callPackage
@@ -39011,7 +40357,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-gtk" ];
description = "Programs demoing the use of symmetric, stateful edit lenses";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -39023,9 +40368,11 @@ self: {
version = "1.0.0.2";
sha256 = "15jz0b913xd8yd3nzk4vrlj0vzbhjarl05h9j0mdcfgxns5j0yxi";
buildDepends = [ base text vty vty-ui ];
+ jailbreak = true;
homepage = "https://github.com/maxpow4h/editable";
description = "Interactive editors for Generics";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"editline" = callPackage
@@ -39036,9 +40383,11 @@ self: {
sha256 = "101zhzja14n8bhbrly7w2aywx3sxyzgyjdrmgpg4gn4alf4lzdlz";
buildDepends = [ base ];
extraLibraries = [ libedit ];
+ jailbreak = true;
homepage = "http://code.haskell.org/editline";
description = "Bindings to the editline library (libedit)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) libedit;};
"effect-handlers" = callPackage
@@ -39065,6 +40414,7 @@ self: {
buildDepends = [ base ghc-prim type-level-sets ];
description = "Embeds effect systems into Haskell using parameteric effect monads";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"effective-aspects" = callPackage
@@ -39081,9 +40431,11 @@ self: {
base Cabal ghc-prim hashtables HUnit mtl QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://pleiad.cl/EffectiveAspects";
description = "A monadic embedding of aspect oriented programming";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"effective-aspects-mzv" = callPackage
@@ -39100,9 +40452,11 @@ self: {
base Cabal ghc-prim hashtables HUnit mzv QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://pleiad.cl/EffectiveAspects";
description = "A monadic embedding of aspect oriented programming, using \"Monads, Zippers and Views\" instead of mtl";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"effects" = callPackage
@@ -39136,7 +40490,6 @@ self: {
version = "0.2.1.2";
sha256 = "0zjblpsd837ngg1pb1rqb3wyszwx93hpn08qg0b6f68vks83z66s";
buildDepends = [ base mtl ];
- configureFlags = [ "-fmtl" ];
homepage = "https://github.com/YellPika/effin";
description = "A Typeable-free implementation of extensible effects";
license = stdenv.lib.licenses.bsd3;
@@ -39178,6 +40531,7 @@ self: {
homepage = "https://github.com/xenophobia/Egison-Quote";
description = "A quasi quotes for using Egison expression in Haskell code";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"egison-tutorial" = callPackage
@@ -39218,6 +40572,7 @@ self: {
homepage = "http://homepage3.nifty.com/salamander/second/projects/ehaskell/index.xhtml";
description = "like eruby, ehaskell is embedded haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ehs" = callPackage
@@ -39247,8 +40602,10 @@ self: {
editedCabalFile = "5154a0f9083521b4c60cee92f2614b253961fd1e2dd9e7c5b541630df8597d80";
buildDepends = [ base bytestring containers mtl transformers ];
extraLibraries = [ eibclient ];
+ jailbreak = true;
description = "EIBd Client";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { eibclient = null;};
"eigen" = callPackage
@@ -39301,6 +40658,7 @@ self: {
sha256 = "069w3qbyghs1w8wqimj54dwblq5rx1ylgflzzc4cwnjn0aqzgs45";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ekg" = callPackage
@@ -39334,7 +40692,6 @@ self: {
aeson base ekg-core http-client lens network network-uri old-locale
text time unordered-containers vector wreq
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://github.com/ocharles/ekg-bosun";
description = "Send ekg metrics to a Bosun instance";
license = stdenv.lib.licenses.bsd3;
@@ -39422,6 +40779,7 @@ self: {
buildDepends = [
base bytestring ekg-core network text time unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/tibbe/ekg-statsd";
description = "Push metrics to statsd";
license = stdenv.lib.licenses.bsd3;
@@ -39474,6 +40832,7 @@ self: {
homepage = "http://github.com/singpolyma/elerea-sdl";
description = "Elerea FRP wrapper for SDL";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"elevator" = callPackage
@@ -39545,6 +40904,7 @@ self: {
test-framework-quickcheck2 text transformers union-find
unordered-containers
];
+ jailbreak = true;
homepage = "http://elm-lang.org";
description = "Values to help with elm-package, elm-make, and elm-lang.org.";
license = stdenv.lib.licenses.bsd3;
@@ -39583,9 +40943,11 @@ self: {
directory Elm filepath HTTP http-client http-client-tls http-types
mtl network optparse-applicative process vector
];
+ jailbreak = true;
homepage = "http://github.com/elm-lang/elm-get";
description = "Tool for sharing and using Elm libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"elm-make" = callPackage
@@ -39604,6 +40966,7 @@ self: {
containers directory elm-compiler elm-package filepath mtl
optparse-applicative text
];
+ jailbreak = true;
homepage = "http://elm-lang.org";
description = "A build tool for Elm projects";
license = stdenv.lib.licenses.bsd3;
@@ -39628,6 +40991,7 @@ self: {
http-types mtl network optparse-applicative pretty process text
time unordered-containers vector zip-archive
];
+ jailbreak = true;
homepage = "http://github.com/elm-lang/elm-package";
description = "Package manager for Elm libraries";
license = stdenv.lib.licenses.bsd3;
@@ -39655,6 +41019,7 @@ self: {
homepage = "http://elm-lang.org";
description = "Interactive development tool for Elm programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"elm-repl" = callPackage
@@ -39701,6 +41066,7 @@ self: {
homepage = "http://elm-lang.org";
description = "Server for developing Elm projects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"elm-yesod" = callPackage
@@ -39714,9 +41080,11 @@ self: {
buildDepends = [
base blaze-markup Elm shakespeare-js text yesod-core
];
+ jailbreak = true;
homepage = "http://elm-lang.org";
description = "The Elm language Yesod compatibility module";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"email" = callPackage
@@ -39731,8 +41099,10 @@ self: {
array base bytestring encoding HaskellNet hsemail old-locale
old-time parsec process time
];
+ jailbreak = true;
description = "Sending eMail in Haskell made easy";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"email-header" = callPackage
@@ -39768,8 +41138,10 @@ self: {
buildDepends = [
aeson attoparsec base bytestring containers HTTP network
];
+ jailbreak = true;
description = "A simple wrapper to send emails via the api of the service postmark (http://postmarkapp.com/)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"email-validate" = callPackage
@@ -39810,6 +41182,7 @@ self: {
base bytestring cmdargs directory dns doctest email-validate HUnit
parallel-io pcre-light tasty tasty-hunit
];
+ jailbreak = true;
description = "Perform basic syntax and deliverability checks on email addresses";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -39826,6 +41199,7 @@ self: {
homepage = "https://github.com/nushio3/embeddock";
description = "Embed the values in scope in the haddock documentation of the module";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"embeddock-example" = callPackage
@@ -39838,6 +41212,7 @@ self: {
homepage = "https://github.com/nushio3/embeddock-example";
description = "Example of using embeddock";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"embroidery" = callPackage
@@ -39856,6 +41231,7 @@ self: {
homepage = "https://ludflu@github.com/ludflu/embroidery.git";
description = "support for embroidery formats in haskell";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"emgm" = callPackage
@@ -39866,6 +41242,7 @@ self: {
sha256 = "0cpcwrb6wqwq371wqjmhzfhdwk3vfhjjgz4vgjsjvw6cdhbpw5p1";
buildDepends = [ base ];
testDepends = [ base HUnit QuickCheck syb ];
+ jailbreak = true;
homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/EMGM";
description = "Extensible and Modular Generics for the Masses";
license = stdenv.lib.licenses.bsd3;
@@ -39879,6 +41256,7 @@ self: {
sha256 = "0ap7qby3n5qiwf791z4li05h0l6p6xi899wkmg6x8z6bb8z9q2d9";
description = "Ceci n'est pas une package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"enclosed-exceptions" = callPackage
@@ -39914,7 +41292,7 @@ self: {
array base binary bytestring containers extensible-exceptions
ghc-prim HaXml mtl regex-compat
];
- configureFlags = [ "-fsystemencoding" "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/encoding/";
description = "A library for various character encodings";
license = stdenv.lib.licenses.bsd3;
@@ -39927,7 +41305,6 @@ self: {
version = "0.1.0.1";
sha256 = "031608wws9bcgz1zywvkml68p4a6s8br7c0fhg5rdqyy7g4bympd";
buildDepends = [ base between transformers ];
- configureFlags = [ "-f-pedantic" ];
homepage = "https://github.com/trskop/endo";
description = "Endomorphism utilities";
license = stdenv.lib.licenses.bsd3;
@@ -40004,8 +41381,8 @@ self: {
pname = "entropy";
version = "0.3.4.1";
sha256 = "10myxs2a7838sywnlfggpsd7lmvzphl10zdh1vbbi18n3x79gyk0";
+ editedCabalFile = "a7770a86c27d5d48a82b519e9eed75d276ffc2ca942275d0b901299109b590bc";
buildDepends = [ base bytestring unix ];
- configureFlags = [ "-f-halvm" ];
homepage = "https://github.com/TomMD/entropy";
description = "A platform independent entropy source";
license = stdenv.lib.licenses.bsd3;
@@ -40039,6 +41416,7 @@ self: {
homepage = "https://github.com/emc2/enumeration";
description = "A practical API for building recursive enumeration procedures and enumerating datatypes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"enumerator" = callPackage
@@ -40085,9 +41463,11 @@ self: {
version = "0.5.1.0";
sha256 = "1fq4zmhc825bmyslfm7kbsa29qq773cgrz4npj2bcfl0jkbl3ndc";
buildDepends = [ base enummapset-th ];
+ jailbreak = true;
homepage = "https://github.com/liyang/enumfun";
description = "Finitely represented /total/ EnumMaps";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"enummapmap" = callPackage
@@ -40107,8 +41487,10 @@ self: {
base cereal containers deepseq hspec hspec-expectations HUnit lens
QuickCheck safecopy semigroups
];
+ jailbreak = true;
description = "Map of maps using Enum types as keys";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"enummapset" = callPackage
@@ -40118,10 +41500,10 @@ self: {
version = "0.5.2.0";
sha256 = "065gxljrjw59rdf7abq0v0c29wg1ymg984ckixnjrcs1yks0c2js";
buildDepends = [ base containers deepseq ];
- configureFlags = [ "-f-debug" ];
homepage = "https://github.com/michalt/enummapset";
description = "IntMap and IntSet with Enum keys/elements";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"enummapset-th" = callPackage
@@ -40161,9 +41543,11 @@ self: {
bytestring containers http-types mtl network old-locale text time
transformers
];
+ jailbreak = true;
homepage = "http://github.com/tel/env-parser";
description = "Pull configuration information from the ENV";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"envparse" = callPackage
@@ -40186,6 +41570,7 @@ self: {
version = "2.0.12.4";
sha256 = "1jpz58zlkhgf2fl4fzicpdkqqdbwy3sw56dga8yvjmgv5zcqqshx";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "http://epanet.de/developer/haskell.html";
description = "Haskell binding for EPANET";
license = stdenv.lib.licenses.gpl3;
@@ -40198,6 +41583,7 @@ self: {
version = "0.2.1";
sha256 = "0sg5pipzc4s9xq83ari7rigjbvhyh76kqnp57i98bs3k54ba53ym";
buildDepends = [ base stm time ];
+ jailbreak = true;
homepage = "http://github.com/baldo/epass";
description = "Baisc, Erlang-like message passing supporting sockets";
license = stdenv.lib.licenses.bsd3;
@@ -40231,6 +41617,7 @@ self: {
homepage = "http://github.com/twittner/epoll/";
description = "epoll bindings";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"eprocess" = callPackage
@@ -40317,6 +41704,7 @@ self: {
homepage = "http://ui3.info/d/proj/epubname.html";
description = "Rename epub ebook files based on meta information";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"eq" = callPackage
@@ -40357,6 +41745,7 @@ self: {
version = "0.2.0.4";
sha256 = "1f94y6h7qg7rck7rxf6j8sygkh1xmfk0z1lr71inx6s74agjyc9j";
buildDepends = [ base singletons template-haskell void ];
+ jailbreak = true;
description = "Proof assistant for Haskell using DataKinds & PolyKinds";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -40432,6 +41821,7 @@ self: {
homepage = "http://github.com/esessoms/haskell-interface";
description = "FFI interface to Erlang";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"eros" = callPackage
@@ -40441,6 +41831,7 @@ self: {
version = "0.6.0.0";
sha256 = "0nr0c2qq30ji50pyjrklrb6a73i6qkqws7ywbfpa4pcd176xwlrw";
buildDepends = [ aeson base bytestring containers text ];
+ jailbreak = true;
description = "A text censorship library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -40458,8 +41849,10 @@ self: {
buildDepends = [
aeson aeson-pretty base bytestring containers eros text
];
+ jailbreak = true;
description = "DEPRECATED in favor of eros-http";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"eros-http" = callPackage
@@ -40476,6 +41869,7 @@ self: {
aeson base blaze-html bytestring eros http-types markdown text wai
warp
];
+ jailbreak = true;
description = "JSON HTTP interface to Eros";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -40498,6 +41892,7 @@ self: {
version = "0.1.0.0";
sha256 = "0rv59fhlfr03qis957mjgl4gyk1i5axfyvr680z3ykbfd3k5gc1s";
buildDepends = [ base either mtl transformers ];
+ jailbreak = true;
homepage = "https://github.com/echatav/error-continuations";
description = "Error Continuations";
license = stdenv.lib.licenses.publicDomain;
@@ -40538,9 +41933,11 @@ self: {
buildDepends = [
ansi-wl-pprint base containers either-unwrap InfixApplicative mtl
];
+ jailbreak = true;
homepage = "http://github.com/gcross/error-message";
description = "Composable error messages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"errorcall-eq-instance" = callPackage
@@ -40589,10 +41986,11 @@ self: {
mtl QuickCheck test-framework test-framework-hunit
test-framework-quickcheck transformers
];
- configureFlags = [ "-fexamples" ];
+ jailbreak = true;
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-toysat" = callPackage
@@ -40608,10 +42006,10 @@ self: {
buildDepends = [
array base containers ersatz toysolver transformers
];
- configureFlags = [ "-f-examples" ];
homepage = "https://github.com/msakai/ersatz-toysat";
description = "toysat driver as backend for ersatz";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ert" = callPackage
@@ -40629,7 +42027,7 @@ self: {
aeson attoparsec attoparsec-expr base bytestring regex-compat text
unordered-containers vector yaml
];
- configureFlags = [ "-fregex" "-fyaml" "-futil" "-f-dev" ];
+ jailbreak = true;
homepage = "https://bitbucket.org/kayo/ert";
description = "Easy Runtime Templates";
license = stdenv.lib.licenses.gpl3;
@@ -40649,9 +42047,11 @@ self: {
attoparsec base bytestring containers directory fgl mtl network stm
stream-fusion tuple unix
];
+ jailbreak = true;
homepage = "http://www.killersmurf.com/projects/esotericbot";
description = "Esotericbot is a sophisticated, lightweight IRC bot";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"esqueleto" = callPackage
@@ -40673,7 +42073,6 @@ self: {
persistent persistent-sqlite persistent-template QuickCheck
resourcet text transformers
];
- configureFlags = [ "-f-mysql" "-f-postgresql" ];
homepage = "https://github.com/prowdsponsor/esqueleto";
description = "Type-safe EDSL for SQL queries on persistent backends";
license = stdenv.lib.licenses.bsd3;
@@ -40687,10 +42086,10 @@ self: {
version = "1.0.0.1";
sha256 = "0l1c2k4c5bpfr7h03fdcfnvm5nsv605sxnd8agi1v2qakwxhdjcp";
buildDepends = [ ad base distributive lens linear reflection ];
- configureFlags = [ "-f-werror" ];
homepage = "https://github.com/GaloisInc/estimator";
description = "State-space estimation algorithms such as Kalman Filters";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"estimators" = callPackage
@@ -40705,8 +42104,10 @@ self: {
base binary containers deepseq list-tries MonadRandom mtl pretty
prettyclass QuickCheck text
];
+ jailbreak = true;
description = "Tool for managing probability estimation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"estreps" = callPackage
@@ -40718,9 +42119,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bio bytestring containers random ];
+ jailbreak = true;
homepage = "http://blog.malde.org/";
description = "Repeats from ESTs";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"etcd" = callPackage
@@ -40753,6 +42156,7 @@ self: {
];
description = "everything breaking the Fairbairn threshold";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ethereum-client-haskell" = callPackage
@@ -40781,6 +42185,7 @@ self: {
];
description = "A Haskell version of an Ethereum client";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ethereum-merkle-patricia-db" = callPackage
@@ -40805,6 +42210,7 @@ self: {
];
description = "A modified Merkle Patricia DB";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ethereum-rlp" = callPackage
@@ -40855,8 +42261,10 @@ self: {
base bytestring conduit containers failure hexpat http-conduit
http-types monad-control mtl time
];
+ jailbreak = true;
description = "Free foreign exchange/currency feed from the European Central Bank";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"event-driven" = callPackage
@@ -40896,7 +42304,6 @@ self: {
testDepends = [
base non-negative QuickCheck random transformers utility-ht
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://code.haskell.org/~thielema/event-list/";
description = "Event lists with relative or absolute time stamps";
license = "GPL";
@@ -40917,6 +42324,7 @@ self: {
homepage = "http://code.haskell.org/~mokus/event-monad";
description = "Event-graph simulation monad transformer";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"eventstore" = callPackage
@@ -40946,6 +42354,7 @@ self: {
homepage = "http://research.microsoft.com/en-us/people/dimitris/pearl.pdf";
description = "A functional pearl on encoding and decoding using question-and-answer strategies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ewe" = callPackage
@@ -40963,6 +42372,7 @@ self: {
homepage = "http://github.com/jfcmacro/ewe";
description = "An language using in Programming Languages teaching";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ex-pool" = callPackage
@@ -40988,7 +42398,6 @@ self: {
version = "0.2.0.7";
sha256 = "05q31mh5x6i90n3ddxyqnhhjga7vbsbi947iywyqi53h2z2iw8f7";
buildDepends = [ base ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~wren/";
description = "Efficient exact computation of combinatoric functions";
license = stdenv.lib.licenses.bsd3;
@@ -41017,6 +42426,7 @@ self: {
buildDepends = [
base exception-transformers monads-fd transformers
];
+ jailbreak = true;
homepage = "http://www.eecs.harvard.edu/~mainland/";
description = "Exception monad transformer instances for monads-fd classes";
license = stdenv.lib.licenses.bsd3;
@@ -41033,6 +42443,7 @@ self: {
buildDepends = [
base exception-transformers monads-tf transformers
];
+ jailbreak = true;
homepage = "http://www.cs.drexel.edu/~mainland/";
description = "Exception monad transformer instances for monads-tf classes";
license = stdenv.lib.licenses.bsd3;
@@ -41121,6 +42532,7 @@ self: {
extraLibraries = [ exif ];
description = "A Haskell binding to a subset of libexif";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) exif;};
"exists" = callPackage
@@ -41130,6 +42542,7 @@ self: {
version = "0.2";
sha256 = "1f7v2f7jmqx0nkl2wla88mnb21nava74b73rvsmfbj4kxmwchsgy";
buildDepends = [ base contravariant ];
+ jailbreak = true;
homepage = "http://github.com/glehel/exists";
description = "Existential datatypes holding evidence of constraints";
license = stdenv.lib.licenses.bsd3;
@@ -41146,6 +42559,7 @@ self: {
homepage = "https://github.com/Bodigrim/exp-pairs";
description = "Linear programming over exponent pairs";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"expand" = callPackage
@@ -41155,8 +42569,10 @@ self: {
version = "0.0.1";
sha256 = "0i8agr9np8pg40z58z8jz1fvq3vqjk2sx247dn33mvqyd03hnbss";
buildDepends = [ AspectAG base HList murder uu-parsinglib ];
+ jailbreak = true;
description = "Extensible Pandoc";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"expat-enumerator" = callPackage
@@ -41170,9 +42586,11 @@ self: {
buildDepends = [
base bytestring enumerator hexpat text transformers xml-types
];
+ jailbreak = true;
homepage = "http://john-millikin.com/software/expat-enumerator/";
description = "Enumerator-based API for Expat";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"expiring-cache-map" = callPackage
@@ -41213,9 +42631,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ ansi-wl-pprint base haskell-src-exts ];
+ jailbreak = true;
homepage = "https://github.com/joelteon/explain";
description = "Show how expressions are parsed";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"explicit-determinant" = callPackage
@@ -41239,7 +42659,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base transformers ];
- configureFlags = [ "-fsplitbase" "-f-buildtests" ];
homepage = "http://www.haskell.org/haskellwiki/Exception";
description = "Exceptions which are explicit in the type signature";
license = stdenv.lib.licenses.bsd3;
@@ -41252,6 +42671,7 @@ self: {
version = "0.6.0.5";
sha256 = "0irz1zy6iaipym73x343zvr6cqym6ci2vbjbyr564d29ymd6ldzd";
buildDepends = [ base base-unicode-symbols tagged ];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/explicit-iomodes/";
description = "File handles with explicit IOModes";
license = stdenv.lib.licenses.bsd3;
@@ -41264,6 +42684,7 @@ self: {
version = "0.2.0.2";
sha256 = "0h3dlgkd2gx8zr3sh949nhqgrdg943dgpp4v1n599jjjpqpw16hj";
buildDepends = [ base bytestring explicit-iomodes ];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/explicit-iomodes-bytestring/";
description = "Extends explicit-iomodes with ByteString operations";
license = stdenv.lib.licenses.bsd3;
@@ -41276,6 +42697,7 @@ self: {
version = "0.1.0.8";
sha256 = "12ny5wa1j1wp8fbg5k8zkv4a3axmssxcvfvhg3frsm4dych6hmyg";
buildDepends = [ base explicit-iomodes text ];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/explicit-iomodes-text/";
description = "Extends explicit-iomodes with Text operations";
license = stdenv.lib.licenses.bsd3;
@@ -41288,9 +42710,11 @@ self: {
version = "0.9";
sha256 = "0jshv56i60mzlfddvfkcx0j7rzqdlhy6h09bmqci15wzisvpvjpq";
buildDepends = [ base containers derive mtl template-haskell ];
+ jailbreak = true;
homepage = "http://sebfisch.github.com/explicit-sharing";
description = "Explicit Sharing of Monadic Effects";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"explore" = callPackage
@@ -41305,6 +42729,7 @@ self: {
homepage = "http://corsis.sourceforge.net/haskell/explore";
description = "Experimental Plot data Reconstructor";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"exposed-containers" = callPackage
@@ -41324,6 +42749,7 @@ self: {
];
description = "A distribution of the 'containers' package, with all modules exposed";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"expression-parser" = callPackage
@@ -41351,6 +42777,7 @@ self: {
];
description = "Libraries for processing GHC Core";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"extemp" = callPackage
@@ -41374,6 +42801,7 @@ self: {
homepage = "http://patch-tag.com/r/salazar/extemp";
description = "automated printing for extemp speakers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"extended-categories" = callPackage
@@ -41386,6 +42814,7 @@ self: {
homepage = "github.com/ian-mi/extended-categories";
description = "Extended Categories";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"extended-reals" = callPackage
@@ -41430,6 +42859,7 @@ self: {
buildDepends = [
base data-lens hashable template-haskell unordered-containers
];
+ jailbreak = true;
description = "Sums/products/lists/trees which can be extended in other modules";
license = stdenv.lib.licenses.publicDomain;
}) {};
@@ -41506,6 +42936,7 @@ self: {
base bytestring bytestring-mmap directory elf filepath
optparse-applicative
];
+ jailbreak = true;
homepage = "https://github.com/Peaker/extractelf";
description = "Extract an ELF's metadata and sections into files";
license = stdenv.lib.licenses.bsd3;
@@ -41530,9 +42961,11 @@ self: {
random resourcet string-conversions text time unordered-containers
vector
];
+ jailbreak = true;
homepage = "https://github.com/nikita-volkov/ez-couch";
description = "A high level static library for working with CouchDB";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"faceted" = callPackage
@@ -41542,6 +42975,7 @@ self: {
version = "0.0.2.0";
sha256 = "0apgad2rqpgxypm10n98agmfrlxydcawvsvyafdwj8jhynfycx03";
buildDepends = [ base free ];
+ jailbreak = true;
homepage = "http://github.com/haskell-faceted/haskell-faceted";
description = "Faceted computation for dynamic information flow security";
license = stdenv.lib.licenses.asl20;
@@ -41561,7 +42995,6 @@ self: {
array base Cabal containers deepseq parallel primes QuickCheck
random toolshed
];
- configureFlags = [ "-fthreaded" "-f-llvm" ];
homepage = "http://functionalley.eu";
description = "Rational arithmetic in an irrational world";
license = "GPL";
@@ -41583,6 +43016,7 @@ self: {
homepage = "https://github.com/rudyl313/factual-haskell-driver";
description = "A driver for the Factual API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fad" = callPackage
@@ -41661,6 +43095,7 @@ self: {
homepage = "http://github.com/tranma/falling-turnip";
description = "Falling sand game/cellular automata simulation using regular parallel arrays";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fallingblocks" = callPackage
@@ -41674,9 +43109,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers haskell98 SDL SDL-mixer SDL-ttf ];
+ jailbreak = true;
homepage = "http://bencode.blogspot.com/2009/03/falling-blocks-tetris-clone-in-haskell.html";
description = "A fun falling blocks game";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"family-tree" = callPackage
@@ -41691,9 +43128,11 @@ self: {
base binary containers hashable intervals lens tables text time
unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/Taneb/family-tree";
description = "A family tree library for the Haskell programming language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fast-logger" = callPackage
@@ -41796,9 +43235,9 @@ self: {
editedCabalFile = "74cd87692a90492171802f25c034ef047f0b68aaa1b53303d4e50ce3ec30e98a";
buildDepends = [ base bytestring cgi ];
extraLibraries = [ fcgi ];
- configureFlags = [ "-fsmall_base" ];
description = "A Haskell library for writing FastCGI programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) fcgi;};
"fastirc" = callPackage
@@ -41815,6 +43254,7 @@ self: {
];
description = "Fast Internet Relay Chat (IRC) library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fault-tree" = callPackage
@@ -41849,10 +43289,11 @@ self: {
split spoon syb text time transformers uniplate
unordered-containers utf8-string vector
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
homepage = "https://github.com/faylang/fay/wiki";
description = "A compiler for Fay, a Haskell subset that compiles to JavaScript";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fay-base" = callPackage
@@ -41865,6 +43306,7 @@ self: {
homepage = "https://github.com/faylang/fay/";
description = "The base package for Fay";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fay-builder" = callPackage
@@ -41880,6 +43322,7 @@ self: {
];
description = "Compile Fay code on cabal install, and ad-hoc recompile during development";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fay-dom" = callPackage
@@ -41892,6 +43335,7 @@ self: {
homepage = "https://github.com/faylang/fay-dom";
description = "DOM FFI wrapper library for Fay";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fay-hsx" = callPackage
@@ -41901,9 +43345,11 @@ self: {
version = "0.2.0";
sha256 = "1mzjna8yc7jczgggpcgh9i6akiy72d60jczvmzxngh778z3g5zmi";
buildDepends = [ fay-base fay-jquery ];
+ jailbreak = true;
homepage = "http://www.happstack.com/";
description = "Clientside HTML generation for fay";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fay-jquery" = callPackage
@@ -41916,6 +43362,7 @@ self: {
homepage = "https://github.com/faylang/fay-jquery";
description = "jQuery bindings for Fay";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fay-ref" = callPackage
@@ -41928,6 +43375,7 @@ self: {
homepage = "https://github.com/A1kmm/fay-ref";
description = "Like IORef but for Fay";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fay-text" = callPackage
@@ -41940,6 +43388,7 @@ self: {
homepage = "https://github.com/faylang/fay-text";
description = "Fay Text type represented as JavaScript strings";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fay-uri" = callPackage
@@ -41952,6 +43401,7 @@ self: {
homepage = "https://github.com/faylang/fay-uri";
description = "Persistent FFI bindings for using jsUri in Fay";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fb" = callPackage
@@ -41964,8 +43414,8 @@ self: {
}:
mkDerivation {
pname = "fb";
- version = "1.0.7";
- sha256 = "0ghyddxf4aqidqvbm93pjgaban0whfj4y1w11b7nxy89srhyjhh8";
+ version = "1.0.8";
+ sha256 = "1cv722kkp6lbxajv3ka4088x2491yy41cfypqqkq753mm59x6s9m";
buildDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
bytestring cereal conduit conduit-extra crypto-api cryptohash
@@ -41978,7 +43428,7 @@ self: {
http-conduit HUnit lifted-base monad-control QuickCheck resourcet
text time transformers
];
- configureFlags = [ "-fconduit11" "-f-debug" ];
+ jailbreak = true;
homepage = "https://github.com/prowdsponsor/fb";
description = "Bindings to Facebook's API";
license = stdenv.lib.licenses.bsd3;
@@ -42008,6 +43458,7 @@ self: {
base bytestring containers cryptohash hashable text
unordered-containers
];
+ jailbreak = true;
description = "Algo for Formal Concept Analysis";
license = stdenv.lib.licenses.agpl3;
}) {};
@@ -42029,6 +43480,7 @@ self: {
homepage = "https://github.com/Neki/fcd";
description = "A faster way to navigate directories using the command line";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fckeditor" = callPackage
@@ -42038,9 +43490,11 @@ self: {
version = "0.1";
sha256 = "1yvsnk9awik143jh2268w1l5x70kmky60gac10fy2y1450dcn65x";
buildDepends = [ base cgi HaXml xhtml ];
+ jailbreak = true;
homepage = "http://peteg.org/";
description = "Server-Side Integration for FCKeditor";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fclabels" = callPackage
@@ -42064,6 +43518,7 @@ self: {
version = "0.2.1";
sha256 = "1j15fxrpwnjnbjkswsy6jxn8f0bj2nhcdsf5976i7rka7gsjzr3d";
buildDepends = [ base fclabels monadLib ];
+ jailbreak = true;
description = "MonadLib monadic interface for the \"fclabels\" package";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -42105,6 +43560,7 @@ self: {
version = "0.1.0.0";
sha256 = "1xkmzpdc7920vjkz3v77ds1wf2c896rkxykdd36my6aw85qg9pa6";
buildDepends = [ base text ];
+ jailbreak = true;
homepage = "https://github.com/iand675/feature-flags";
description = "A simple library for dynamically enabling and disabling functionality";
license = stdenv.lib.licenses.mit;
@@ -42139,9 +43595,11 @@ self: {
aeson base bytestring containers hlint HsOpenSSL hspec http-streams
io-streams lens text
];
+ jailbreak = true;
homepage = "https://github.com/relrod/fedora-packages-hs";
description = "Haskell interface to the Fedora Packages webapp API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"feed" = callPackage
@@ -42170,6 +43628,7 @@ self: {
buildDepends = [
base directory feed old-locale old-time time xml
];
+ jailbreak = true;
homepage = "http://www.syntaxpolice.org/darcs_repos/feed-cli";
description = "A simple command line interface for creating and updating feeds like RSS";
license = stdenv.lib.licenses.bsd3;
@@ -42189,9 +43648,9 @@ self: {
base curl directory feed haskell98 HTTP old-locale pureMD5
regex-posix tagsoup time utf8-string
];
- configureFlags = [ "-f-nano-md5" ];
description = "(unsupported)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"feed2twitter" = callPackage
@@ -42207,6 +43666,7 @@ self: {
homepage = "http://github.com/tomlokhorst/feed2twitter";
description = "Send posts from a feed to Twitter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"feldspar-compiler" = callPackage
@@ -42233,6 +43693,7 @@ self: {
homepage = "http://feldspar.github.com";
description = "Compiler for the Feldspar language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { gcc_s = null;};
"feldspar-language" = callPackage
@@ -42254,9 +43715,11 @@ self: {
base bytestring QuickCheck random tasty tasty-golden
tasty-quickcheck tasty-th utf8-string
];
+ jailbreak = true;
homepage = "http://feldspar.github.com";
description = "A functional embedded language for DSP and parallelism";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fences" = callPackage
@@ -42268,6 +43731,7 @@ self: {
buildDepends = [ base ];
description = "To be written";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fenfire" = callPackage
@@ -42287,6 +43751,7 @@ self: {
homepage = "http://fenfire.org/";
description = "Graph-based notetaking system";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { raptor = null;};
"fez-conf" = callPackage
@@ -42310,9 +43775,9 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base HTTP json network pretty utf8-string ];
- configureFlags = [ "-f-old-base" ];
description = "Haskell binding to the FriendFeed API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fficxx" = callPackage
@@ -42357,9 +43822,10 @@ self: {
isExecutable = true;
buildDepends = [ base JuicyPixels mtl transformers vector ];
pkgconfigDepends = [ libavcodec libavformat libavutil libswscale ];
- configureFlags = [ "-f-buildrasterdemo" "-f-builddemo" ];
+ jailbreak = true;
description = "Minimal bindings to the FFmpeg library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { libavcodec = null; libavformat = null; libavutil = null;
libswscale = null;};
@@ -42373,9 +43839,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring haskell98 hs-ffmpeg SDL stm ];
+ jailbreak = true;
homepage = "http://patch-tag.com/r/VasylPasternak/ffmpeg-tutorials";
description = "Tutorials on ffmpeg usage to play video/audio";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fft" = callPackage
@@ -42391,9 +43859,10 @@ self: {
];
testDepends = [ base carray QuickCheck storable-complex ];
pkgconfigDepends = [ fftw3 fftw3f ];
- configureFlags = [ "-fbase4" "-fsplitbase" ];
+ jailbreak = true;
description = "Bindings to the FFTW library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { fftw3 = null; fftw3f = null;};
"fgl" = callPackage
@@ -42449,10 +43918,11 @@ self: {
containers directory filepath hslogger mtl old-locale old-time
process regex-compat statistics syb tabular time vector
];
- configureFlags = [ "-fanalyse" ];
+ jailbreak = true;
homepage = "http://github.com/dmpots/fibon/wiki";
description = "Tools for running and analyzing Haskell benchmarks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fibonacci" = callPackage
@@ -42481,6 +43951,7 @@ self: {
homepage = "http://github.com/AstraFIN/fields";
description = "First-class record field combinators with infix record field syntax";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fields-json" = callPackage
@@ -42506,8 +43977,10 @@ self: {
sha256 = "1mmlw5nk09w829gjp8lc0p280vdkh68rv05b1j55x99l7xywgvj7";
buildDepends = [ base template-haskell ];
testDepends = [ base template-haskell ];
+ jailbreak = true;
description = "Provides Fieldwise typeclass for operations of fields of records treated as independent components";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fig" = callPackage
@@ -42533,6 +44006,7 @@ self: {
buildDepends = [
base parsec process system-filepath template-haskell text
];
+ jailbreak = true;
homepage = "https://github.com/jfischoff/file-command-qq";
description = "Quasiquoter for system commands involving filepaths";
license = stdenv.lib.licenses.mit;
@@ -42629,6 +44103,7 @@ self: {
editedCabalFile = "42c2b0c550f4c73d044f186a58e34285632705b6936dc24fb6012eb10bf70cc7";
buildDepends = [ base ];
testDepends = [ base QuickCheck random ];
+ jailbreak = true;
homepage = "http://www-users.cs.york.ac.uk/~ndm/filepath/";
description = "Library for manipulating FilePaths in a cross platform way";
license = stdenv.lib.licenses.bsd3;
@@ -42641,6 +44116,7 @@ self: {
version = "0.1.0.0";
sha256 = "08rb2nafnh5vx7i6i3ddhq4h1s2ffgz8ailap5knr1xl7izgyywp";
buildDepends = [ base base-io-access filepath ];
+ jailbreak = true;
description = "IO Access for filepath";
license = stdenv.lib.licenses.gpl2;
}) {};
@@ -42657,7 +44133,6 @@ self: {
base comonad comonad-transformers data-lens directory filepath mtl
transformers
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/filepather";
description = "Functions on System.FilePath";
license = stdenv.lib.licenses.bsd3;
@@ -42677,7 +44152,6 @@ self: {
parsec process split time utf8-string xml
];
testDepends = [ base Diff directory filepath HUnit mtl time ];
- configureFlags = [ "-fmaxcount" ];
description = "Interface for versioning file stores";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -42699,9 +44173,11 @@ self: {
base blaze-builder bytestring conduit hspec QuickCheck text
transformers
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/conduit";
description = "Use system-filepath data types with conduits. (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"filesystem-enumerator" = callPackage
@@ -42772,6 +44248,7 @@ self: {
];
description = "A file-finding conduit that allows user control over traversals";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fingertree" = callPackage
@@ -42845,6 +44322,7 @@ self: {
homepage = "https://github.com/reinerp/first-class-patterns";
description = "First class patterns and pattern matching, using type families";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"firstify" = callPackage
@@ -42863,6 +44341,7 @@ self: {
homepage = "http://www-users.cs.york.ac.uk/~ndm/firstify/";
description = "Defunctionalisation for Yhc Core";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fishfood" = callPackage
@@ -42878,7 +44357,6 @@ self: {
buildDepends = [
base Cabal containers factory mtl QuickCheck toolshed unix
];
- configureFlags = [ "-f-llvm" ];
homepage = "http://functionalley.eu";
description = "Calculates file-size frequency-distribution";
license = "GPL";
@@ -42902,6 +44380,7 @@ self: {
];
description = "FIT file decoder";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fitsio" = callPackage
@@ -42915,6 +44394,7 @@ self: {
homepage = "http://github.com/esessoms/fitsio";
description = "A library for reading and writing data files in the FITS data format";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) cfitsio;};
"fix-imports" = callPackage
@@ -42942,9 +44422,9 @@ self: {
version = "15320.3";
sha256 = "0ls5fxwq2lnb0rjqih4isfwiv0603ga12gxnf7w3rpqp5qhrhas8";
buildDepends = [ base mmtl ];
- configureFlags = [ "-f-use_mtl" ];
description = "Simple fix-expression parser";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fix-symbols-gitit" = callPackage
@@ -42956,6 +44436,7 @@ self: {
buildDepends = [ base containers gitit ];
description = "Gitit plugin: Turn some Haskell symbols into pretty math symbols";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fixed" = callPackage
@@ -42989,8 +44470,10 @@ self: {
version = "0.5.0.1";
sha256 = "010gx32av4cn5bqq1zrrcah50ay528vw01fvv1xhfpkrx1ll9wka";
buildDepends = [ base ];
+ jailbreak = true;
description = "Binary fixed-point arithmetic";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fixed-point-vector" = callPackage
@@ -43000,8 +44483,10 @@ self: {
version = "0.5.0.1";
sha256 = "029mn44d1i794b1pbpa0zmf6b20zl0cvsf77mbfdkqnyx8986883";
buildDepends = [ base fixed-point vector ];
+ jailbreak = true;
description = "Unbox instances for the fixed-point package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fixed-point-vector-space" = callPackage
@@ -43011,8 +44496,10 @@ self: {
version = "0.5.0.1";
sha256 = "10b29gqy3rpwd5wf2b65p0llm8ksyp1p7k43rm1n5g5z67wkd7dx";
buildDepends = [ base fixed-point vector-space ];
+ jailbreak = true;
description = "vector-space instances for the fixed-point package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fixed-precision" = callPackage
@@ -43026,9 +44513,11 @@ self: {
buildDepends = [
base hmpfr integer-gmp reflection tagged template-haskell
];
+ jailbreak = true;
homepage = "http://github.com/ekmett/fixed-precision";
description = "Fixed Precision Arithmetic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fixed-storable-array" = callPackage
@@ -43038,8 +44527,10 @@ self: {
version = "0.3.1.1";
sha256 = "0vb5h2v2qx19d7xibf7ksv2cha2pngh49mfpkh43f9vrwc6042ph";
buildDepends = [ array base tagged ];
+ jailbreak = true;
description = "Fixed-size wrapper for StorableArray, providing a Storable instance. Deprecated - use storable-static-array instead.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fixed-vector" = callPackage
@@ -43125,10 +44616,6 @@ self: {
dlist enumerator HaXml MissingH network old-time parallel
QuickCheck text
];
- configureFlags = [
- "-f-with-fix44" "-f-with-fix43" "-fwith-fix42" "-fwith-fix41"
- "-fwith-fix40" "-f-developer"
- ];
homepage = "http://github.com/urv/fixhs";
description = "FIX (co)parser";
license = stdenv.lib.licenses.lgpl21;
@@ -43141,7 +44628,6 @@ self: {
version = "0.1.5";
sha256 = "0mmkkydvdiw4nawgw3w7a9gpcxc3wzzlhz2083hqa6sxhx8x3b29";
buildDepends = [ base containers ];
- configureFlags = [ "-fbase4" "-fwithutils" "-f-withquickcheck" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "Uniplate-style generic traversals for optionally annotated fixed-point types";
license = stdenv.lib.licenses.bsd3;
@@ -43166,6 +44652,7 @@ self: {
version = "1.5.0.2";
sha256 = "1walxcyi1wrv28vgy318c88z3mprz6mc8qfhbjgxb156iwfv80w5";
buildDepends = [ base time ];
+ jailbreak = true;
homepage = "https://github.com/pharpend/fixtime";
description = "Some fixes to the time package";
license = stdenv.lib.licenses.bsd2;
@@ -43178,6 +44665,7 @@ self: {
version = "0.1.0.1";
sha256 = "169xaj7iczz0mnvd03pf95dcvy918jscpzap6z9y62kb0daskg4p";
buildDepends = [ base ];
+ jailbreak = true;
description = "Functional Fizz/Buzz";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -43223,6 +44711,7 @@ self: {
buildDepends = [
base monad-par monad-par-extras mtl mwc-random primitive vector
];
+ jailbreak = true;
homepage = "http://jtobin.github.com/flat-mcmc";
description = "Painless general-purpose sampling";
license = stdenv.lib.licenses.bsd3;
@@ -43264,8 +44753,10 @@ self: {
version = "0.1.0";
sha256 = "0vvl9w3i374k720sscbcsbha89fcfk1hcvdr0nk4y7gkp13xwdba";
buildDepends = [ base data-type mtl QuickCheck ];
+ jailbreak = true;
description = "Flexible wrappers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"flexiwrap-smallcheck" = callPackage
@@ -43275,8 +44766,10 @@ self: {
version = "0.0.1";
sha256 = "1dara0az10fxx46jmplf2l6a6x8qqjk00fxjzb9n10ndd4lxcsm3";
buildDepends = [ base data-type flexiwrap mtl smallcheck ];
+ jailbreak = true;
description = "SmallCheck (Serial) instances for flexiwrap";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"flickr" = callPackage
@@ -43292,9 +44785,9 @@ self: {
buildDepends = [
base filepath HTTP mime network random utf8-string xhtml xml
];
- configureFlags = [ "-f-old-base" ];
description = "Haskell binding to the Flickr API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"flippers" = callPackage
@@ -43318,10 +44811,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base containers haskell98 parsec ];
- configureFlags = [ "-f-pure" ];
+ jailbreak = true;
homepage = "http://www.cs.york.ac.uk/fp/reduceron/";
description = "f-lite compiler, interpreter and libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"flo" = callPackage
@@ -43362,7 +44856,6 @@ self: {
version = "0.2.4";
sha256 = "1zsxjwgm8nkphnmsbz03yvplc2r02qybb387n910j4j6vya98khc";
buildDepends = [ array base integer-gmp ];
- configureFlags = [ "-fgmp" ];
homepage = "https://bitbucket.org/dafis/floatshow";
description = "Alternative faster String representations for Double and Float, String representations for more general numeric types";
license = stdenv.lib.licenses.bsd3;
@@ -43417,9 +44910,11 @@ self: {
lens mtl pipes pipes-aeson pipes-http pipes-parse template-haskell
text unordered-containers uuid
];
+ jailbreak = true;
homepage = "https://github.com/brewtown/hs-flowdock";
description = "Flowdock client library for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"flowdock-api" = callPackage
@@ -43451,6 +44946,7 @@ self: {
homepage = "https://github.com/gabemc/flowdock-api";
description = "API integration with Flowdock";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"flower" = callPackage
@@ -43466,9 +44962,11 @@ self: {
buildDepends = [
array base binary bio bytestring cmdargs containers mtl random
];
+ jailbreak = true;
homepage = "http://biohaskell.org/Applications/Flower";
description = "Analyze 454 flowgrams (.SFF files)";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"flowsim" = callPackage
@@ -43538,6 +45036,7 @@ self: {
sha256 = "18r7q7sh35sr71ays0c9ic6f7vmrblpw25mz1y5v9sbk5x2lh64s";
buildDepends = [ base bindings-DSL containers directory ];
extraLibraries = [ fluidsynth ];
+ jailbreak = true;
homepage = "https://github.com/MostAwesomeDude/hsfluidsynth";
description = "Haskell bindings to FluidSynth";
license = stdenv.lib.licenses.mit;
@@ -43553,6 +45052,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base directory filepath mtl process Unixutils ];
+ jailbreak = true;
homepage = "http://github.com/jabolopes/fmark";
description = "A Friendly Markup language without syntax";
license = stdenv.lib.licenses.bsd3;
@@ -43613,6 +45113,7 @@ self: {
homepage = "https://github.com/tonyday567/foldl-incremental";
description = "incremental folds";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"folds" = callPackage
@@ -43632,12 +45133,11 @@ self: {
testDepends = [
base bytestring deepseq directory doctest filepath mtl semigroups
];
- configureFlags = [
- "-f-test-hlint" "-foptimize" "-f-test-hlint" "-ftest-doctests"
- ];
+ configureFlags = [ "-f-test-hlint" ];
homepage = "http://github.com/ekmett/folds";
description = "Beautiful Folding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"folds-common" = callPackage
@@ -43651,6 +45151,7 @@ self: {
testDepends = [ base containers tasty tasty-quickcheck ];
description = "A playground of common folds for folds";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"follower" = callPackage
@@ -43670,6 +45171,7 @@ self: {
homepage = "http://rebworks.net/projects/follower/";
description = "Follow Tweets anonymously";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"font-opengl-basic4x6" = callPackage
@@ -43681,8 +45183,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base GLFW-b OpenGL ];
+ jailbreak = true;
description = "Basic4x6 font for OpenGL";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"foo" = callPackage
@@ -43694,10 +45198,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers GLUT haskell98 OpenGL ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://sourceforge.net/projects/fooengine/?abmode=1";
description = "Paper soccer, an OpenGL game";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"for-free" = callPackage
@@ -43712,8 +45216,10 @@ self: {
base comonad comonad-transformers containers contravariant
transformers
];
+ jailbreak = true;
description = "Functor, Monad, MonadPlus, etc for free";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"force-layout" = callPackage
@@ -43743,6 +45249,7 @@ self: {
buildDepends = [ base process transformers ];
description = "Run a command on files with magic substituion support (sequencing and regexp)";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"foreign-storable-asymmetric" = callPackage
@@ -43775,6 +45282,7 @@ self: {
version = "0.1.1";
sha256 = "0nxcjx3cf8bkl0cwkpgz5c6byld13kw2601q4157fmfa370bi11h";
buildDepends = [ base transformers ];
+ jailbreak = true;
homepage = "http://code.google.com/p/forkable-monad/";
description = "An implementation of forkIO for monad stacks";
license = stdenv.lib.licenses.bsd3;
@@ -43797,8 +45305,10 @@ self: {
indents interpolatedstring-perl6 jmacro MissingH mtl network pandoc
parsec process text transformers urlencoded wl-pprint-text
];
+ jailbreak = true;
description = "A statically typed, functional programming language";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"format" = callPackage
@@ -43809,6 +45319,7 @@ self: {
sha256 = "1vv9b0hif5hi3jkd1n6j85b5mkfkjyixldblm2l4qfgrj95igmph";
buildDepends = [ haskell2010 parsec ];
testDepends = [ haskell2010 parsec QuickCheck ];
+ jailbreak = true;
homepage = "https://github.com/bytbox/hs-format";
description = "Rendering from and scanning to format strings";
license = stdenv.lib.licenses.mit;
@@ -43827,6 +45338,7 @@ self: {
buildDepends = [
base data-concurrent-queue old-locale stm text time
];
+ jailbreak = true;
description = "A utility for writing the date to dzen2";
license = stdenv.lib.licenses.mit;
}) {};
@@ -43865,9 +45377,11 @@ self: {
interpolatedstring-perl6 jmacro MissingH mtl network pandoc parsec
process text urlencoded utf8-string zlib
];
+ jailbreak = true;
homepage = "http://texodus.github.com/forml";
description = "A statically typed, functional programming language";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"formlets" = callPackage
@@ -43882,10 +45396,11 @@ self: {
applicative-extras base blaze-html bytestring haskell98 syb
transformers xhtml
];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
homepage = "http://github.com/chriseidhof/formlets/tree/master";
description = "Formlets implemented in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"formlets-hsp" = callPackage
@@ -43902,6 +45417,7 @@ self: {
buildTools = [ trhsx ];
description = "HSP support for Formlets";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"forth-hll" = callPackage
@@ -43911,6 +45427,7 @@ self: {
version = "0.1.0.0";
sha256 = "1hmcicxnxcl99chidkbg1kspjzpxxcw8qh4lrwvmlpz2knzf11g3";
buildDepends = [ array-forth base free mtl ];
+ jailbreak = true;
description = "A simple eDSL for generating arrayForth code";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -43955,10 +45472,10 @@ self: {
shakespeare-i18n stm syb template-haskell text time transformers
transformers-base unordered-containers vector yesod-core
];
- configureFlags = [ "-f-dev" "-f-jenkins-build" ];
homepage = "https://www.fpcomplete.com/page/api";
description = "Simple interface to the FP Complete IDE API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fpipe" = callPackage
@@ -44005,6 +45522,7 @@ self: {
];
description = "Example implementations for FPNLA library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fptest" = callPackage
@@ -44027,6 +45545,7 @@ self: {
QuickCheck regex-compat test-framework test-framework-hunit
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/jrp2014/fptest";
description = "IEEE754r floating point conformance tests";
license = stdenv.lib.licenses.bsd3;
@@ -44070,6 +45589,7 @@ self: {
version = "0.1.0.3";
sha256 = "0kjpfqy528s11kfigp27kr5a4xw8kn11mpgjzb6fapdbip6y9579";
buildDepends = [ base semigroups ];
+ jailbreak = true;
homepage = "http://darcs.wolfgang.jeltsch.info/haskell/fraction";
description = "Fractions";
license = stdenv.lib.licenses.bsd3;
@@ -44087,6 +45607,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Frag";
description = "A 3-D First Person Shooter Game";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"frame" = callPackage
@@ -44107,6 +45628,7 @@ self: {
haskelldb-hdbc-odbc HDBC HDBC-odbc HTTP MissingH mtl old-time
pretty utf8-string
];
+ jailbreak = true;
description = "A simple web framework";
license = stdenv.lib.licenses.bsd3;
broken = true;
@@ -44119,6 +45641,7 @@ self: {
version = "0.1";
sha256 = "0wy1c9xgd6ykymqciga1sla83wfdwy17p88bygfp6pflbc0rw57g";
buildDepends = [ base frame pandoc ];
+ jailbreak = true;
description = "A markdown to Frame GUI writer for Pandoc";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -44132,6 +45655,7 @@ self: {
buildDepends = [ base ];
description = "A package for configuring and building Haskell software";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"free" = callPackage
@@ -44186,9 +45710,11 @@ self: {
JuicyPixels-util lens linear mtl OpenGL OpenGLRaw random reflection
template-haskell transformers vector void
];
+ jailbreak = true;
homepage = "https://github.com/fumieval/free-game";
description = "Create games for free";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"free-operational" = callPackage
@@ -44202,9 +45728,10 @@ self: {
buildDepends = [
base comonad-transformers free kan-extensions mtl transformers
];
- configureFlags = [ "-f-test-properties" ];
+ jailbreak = true;
description = "Operational Applicative, Alternative, Monad and MonadPlus from free types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"free-theorems" = callPackage
@@ -44220,6 +45747,7 @@ self: {
];
description = "Automatic generation of free theorems";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"free-theorems-counterexamples" = callPackage
@@ -44238,6 +45766,7 @@ self: {
];
description = "Automatically Generating Counterexamples to Naive Free Theorems";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"free-theorems-seq" = callPackage
@@ -44255,6 +45784,7 @@ self: {
];
description = "Taming Selective Strictness";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"free-theorems-seq-webui" = callPackage
@@ -44273,6 +45803,7 @@ self: {
];
description = "Taming Selective Strictness";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"free-theorems-webui" = callPackage
@@ -44289,9 +45820,9 @@ self: {
base bytestring cgi csv dataenc directory filepath free-theorems
process time xhtml
];
- configureFlags = [ "-f-our_server" ];
description = "CGI-based web interface for the free-theorems package";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"freekick2" = callPackage
@@ -44313,6 +45844,7 @@ self: {
homepage = "http://github.com/anttisalonen/freekick2";
description = "A soccer game";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"freenect" = callPackage
@@ -44326,6 +45858,7 @@ self: {
homepage = "https://github.com/chrisdone/freenect";
description = "Interface to the Kinect device";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { freenect = null; freenect_sync = null;};
"freesect" = callPackage
@@ -44341,9 +45874,11 @@ self: {
buildDepends = [
array base cpphs directory mtl parallel pretty random syb
];
+ jailbreak = true;
homepage = "http://fremissant.net/freesect";
description = "A Haskell syntax extension for generalised sections";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"freesound" = callPackage
@@ -44387,7 +45922,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-examples" ];
description = "Haskell binding for FreeType 2 library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -44423,6 +45957,7 @@ self: {
homepage = "https://github.com/RaphaelJ/friday";
description = "A functional image processing library for Haskell";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"friday-devil" = callPackage
@@ -44440,6 +45975,7 @@ self: {
homepage = "https://github.com/RaphaelJ/friday-devil";
description = "Uses the DevIL C library to read and write images from and to files and memory buffers";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) libdevil;};
"friendly-time" = callPackage
@@ -44494,6 +46030,7 @@ self: {
homepage = "http://github.com/nkpart/fs-events";
description = "A haskell binding to the FSEvents API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fsharp" = callPackage
@@ -44568,6 +46105,7 @@ self: {
version = "0.1.2";
sha256 = "07lx4928d1fnjbpfmky4jhhk7sqj98b11vdbv4f67p3bwfn5lrp8";
buildDepends = [ base directory filepath ];
+ jailbreak = true;
homepage = "https://github.com/Raynes/fsutils";
description = "File system utilities for Haskell that are missing from built in libraries";
license = stdenv.lib.licenses.mit;
@@ -44604,9 +46142,10 @@ self: {
buildDepends = [
base base-unicode-symbols bytestring safe transformers usb
];
- configureFlags = [ "-f-nolib" "-f-hpc" "-f-test" ];
+ jailbreak = true;
description = "A thin layer over USB to communicate with FTDI chips";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ftp-conduit" = callPackage
@@ -44621,9 +46160,11 @@ self: {
base byteorder bytestring conduit MissingH network transformers
utf8-string
];
+ jailbreak = true;
homepage = "https://github.com/litherum/ftp-conduit";
description = "FTP client package with conduit interface based off http-conduit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ftphs" = callPackage
@@ -44639,7 +46180,6 @@ self: {
buildDepends = [
base hslogger MissingH mtl network parsec regex-compat
];
- configureFlags = [ "-f-buildtests" ];
homepage = "http://software.complete.org/ftphs";
description = "FTP Client and Server Library";
license = "LGPL";
@@ -44670,8 +46210,10 @@ self: {
buildDepends = [
base containers free-theorems mtl pretty Shellac Shellac-readline
];
+ jailbreak = true;
description = "Shell interface to the FreeTheorems library";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fugue" = callPackage
@@ -44695,6 +46237,7 @@ self: {
homepage = "http://www.agusa.i.is.nagoya-u.ac.jp/person/sydney/full-sessions.html";
description = "a monad for protocol-typed network programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"full-text-search" = callPackage
@@ -44712,9 +46255,10 @@ self: {
array base containers QuickCheck tasty tasty-quickcheck text vector
];
buildTools = [ alex happy ];
- configureFlags = [ "-f-build-search-demo" ];
+ jailbreak = true;
description = "In-memory full text search engine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fullstop" = callPackage
@@ -44734,6 +46278,7 @@ self: {
homepage = "http://hub.darcs.net/kowey/fullstop";
description = "Simple sentence segmenter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"funcmp" = callPackage
@@ -44757,6 +46302,7 @@ self: {
buildDepends = [ base data-type ];
description = "Combining functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"function-instances-algebra" = callPackage
@@ -44766,6 +46312,7 @@ self: {
version = "0.1";
sha256 = "0dxym6xrylngw8r5spi246nmi8fvvxxx776qismcr04zqshv7ygw";
buildDepends = [ base numeric-prelude ];
+ jailbreak = true;
homepage = "github.com/kreuzschlitzschraubenzieher/function-instances-algebra";
description = "Instances of the Algebra.* classes for functions";
license = stdenv.lib.licenses.bsd3;
@@ -44778,8 +46325,10 @@ self: {
version = "0.0";
sha256 = "1la9xqm5gs6a6cb18wyx9wr0nx6p5ryhczvb72d0zm6xrjrf0r5s";
buildDepends = [ base HList ];
+ jailbreak = true;
description = "Combinators that allow for a more functional/monadic style of Arrow programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"functor-apply" = callPackage
@@ -44791,6 +46340,7 @@ self: {
homepage = "http://comonad.com/reader/";
description = "This package has been subsumed by semigroupoids";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"functor-combo" = callPackage
@@ -44841,6 +46391,7 @@ self: {
buildDepends = [ base ];
description = "Data.FunctorM (compatibility package)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"functors" = callPackage
@@ -44868,9 +46419,11 @@ self: {
buildDepends = [
base bytestring directory filepath haskell98 HFuse unix
];
+ jailbreak = true;
homepage = "http://github.com/nathanwiegand/funion";
description = "A unioning file-system using HFuse";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"funpat" = callPackage
@@ -44880,6 +46433,7 @@ self: {
version = "0.1";
sha256 = "0zblrfg8mfbc1hzxb36hk2lb3c167xmpcvg8h595m9kjpdmj4ayw";
buildDepends = [ base mtl ];
+ jailbreak = true;
description = "A generalization of pattern matching";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -44898,9 +46452,11 @@ self: {
array base bimap bitset containers fgl mtl parse-dimacs pretty
QuickCheck random time
];
+ jailbreak = true;
homepage = "http://github.com/dbueno/funsat";
description = "A modern DPLL-style SAT solver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"futun" = callPackage
@@ -44912,7 +46468,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring network unix ];
- configureFlags = [ "-f-static" ];
+ jailbreak = true;
description = "Simple IP-over-UDP tunnel using TUNTAP";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -44927,6 +46483,7 @@ self: {
homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/future";
description = "Supposed to mimics and enhance proposed C++ \"future\" features";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"future-resource" = callPackage
@@ -44972,6 +46529,7 @@ self: {
base containers HUnit mtl QuickCheck random test-framework
test-framework-hunit test-framework-quickcheck2 time
];
+ jailbreak = true;
homepage = "https://github.com/tlaitinen/fuzzy-timings";
description = "Translates high-level definitions of \"fuzzily\" scheduled objects (e.g. play this commercial 10 times per hour between 9:00-13:00) to a list of accurately scheduled objects using glpk-hs.";
license = stdenv.lib.licenses.mit;
@@ -44988,6 +46546,7 @@ self: {
buildDepends = [ base cmdargs directory old-time process ];
description = "A 'ten past six' style clock";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fwgl" = callPackage
@@ -45002,6 +46561,7 @@ self: {
base ghcjs-base hashable transformers unordered-containers vector
Yampa
];
+ jailbreak = true;
homepage = "https://github.com/ZioCrocifisso/FWGL";
description = "FRP 2D/3D game engine";
license = stdenv.lib.licenses.bsd3;
@@ -45019,6 +46579,7 @@ self: {
buildDepends = [ base HTTP json ];
description = "Generate Gentoo ebuilds from NodeJS/npm packages";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gact" = callPackage
@@ -45036,6 +46597,7 @@ self: {
];
description = "General Alignment Clustering Tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"game-probability" = callPackage
@@ -45045,6 +46607,7 @@ self: {
version = "1.1";
sha256 = "1wl29h702g79kwy4ca35x1q37aaj3rphf1i9vdm2hmd44bzrwvkk";
buildDepends = [ base containers probability random ];
+ jailbreak = true;
description = "Simple probability library for dice rolls, card games and similar";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -45069,9 +46632,9 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base cairo containers glib gtk time ];
- configureFlags = [ "-fsmall_base" ];
description = "Game clock that shows two analog clock faces";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gamma" = callPackage
@@ -45122,7 +46685,6 @@ self: {
version = "1.2";
sha256 = "0mks5nwc19i0wsc5hhxh0ji2bh0224y3r89b3p9dfzzn64n3za6v";
buildDepends = [ base ];
- configureFlags = [ "-f-old-base" ];
description = "A Functional Implementation of the Garsia-Wachs Algorithm";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -45141,6 +46703,7 @@ self: {
homepage = "http://www.daneel0yaitskov.000space.com";
description = "planar graph embedding into a plane";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gc-monitoring-wai" = callPackage
@@ -45158,6 +46721,7 @@ self: {
homepage = "https://github.com/yihuang/gc-monitoring-wai";
description = "a wai application to show GHC.GCStats";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gconf" = callPackage
@@ -45186,7 +46750,6 @@ self: {
extraLibraries = [
expat fontconfig freetype gd libjpeg libpng zlib
];
- configureFlags = [ "-fbytestring-in-base" ];
description = "A Haskell binding to a subset of the GD graphics library";
license = stdenv.lib.licenses.bsd3;
}) { inherit (pkgs) expat; inherit (pkgs) fontconfig;
@@ -45220,6 +46783,7 @@ self: {
homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/InstantGenerics";
description = "Generic diff for the instant-generics library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gdiff-th" = callPackage
@@ -45236,9 +46800,11 @@ self: {
testDepends = [
base containers gdiff mtl template-haskell th-expand-syns uniplate
];
+ jailbreak = true;
homepage = "https://github.com/jfischoff/gdiff-th";
description = "Generate gdiff GADTs and Instances";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gearbox" = callPackage
@@ -45250,6 +46816,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base GLUT OpenGLRaw Vec ];
+ jailbreak = true;
description = "zooming rotating fractal gears graphics demo";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -45307,9 +46874,11 @@ self: {
array base bitmap bitmap-opengl containers FTGL lens linear OpenGL
random SDL SDL-image stb-image transformers
];
+ jailbreak = true;
homepage = "http://corbinsimpson.com/";
description = "A simple library of helpers for SDL+GL games";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gencheck" = callPackage
@@ -45327,6 +46896,7 @@ self: {
homepage = "http://github.com/JacquesCarette/GenCheck";
description = "A testing framework inspired by QuickCheck and SmallCheck";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gender" = callPackage
@@ -45338,6 +46908,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ attoparsec base text ];
+ jailbreak = true;
homepage = "https://github.com/womfoo/gender";
description = "Identify a persons gender by their first name";
license = stdenv.lib.licenses.lgpl21;
@@ -45374,6 +46945,7 @@ self: {
version = "1.0.3";
sha256 = "0i51xx2hhjqjdvyzy2jza921jcfhy37azyp1cfaakvrj9kxl2w2q";
buildDepends = [ base mtl random ];
+ jailbreak = true;
homepage = "http://liamoc.net/pdf/Generator.pdf";
description = "Actually useful monadic random value generators";
license = stdenv.lib.licenses.bsd3;
@@ -45403,6 +46975,7 @@ self: {
version = "1.0.1";
sha256 = "1h6xs56c351137mjc3hdba7yfcw8jy9dvzj0vdrgwm0dprn0xh29";
buildDepends = [ base binary bytestring ghc-prim ];
+ jailbreak = true;
description = "Generic Data.Binary derivation using GHC generics.";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -45418,6 +46991,7 @@ self: {
testDepends = [ base HUnit test-framework test-framework-hunit ];
description = "Automatically convert Generic instances to and from church representations";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"generic-deepseq" = callPackage
@@ -45469,7 +47043,6 @@ self: {
generic-deriving hlint mtl nats parallel semigroups simple-reflect
split text unordered-containers vector
];
- configureFlags = [ "-ftest-hlint" "-ftest-doctests" ];
homepage = "https://github.com/jfischoff/generic-maybe";
description = "A generic version of Data.Maybe";
license = stdenv.lib.licenses.bsd3;
@@ -45494,8 +47067,10 @@ self: {
sha256 = "016gg232r453i7grbjg2hb69ww8jqgafnq32f38lv7l81dgzwfxj";
buildDepends = [ base ghc-prim ];
testDepends = [ base ghc-prim hspec QuickCheck ];
+ jailbreak = true;
description = "Generic implementation of Storable";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"generic-tree" = callPackage
@@ -45519,6 +47094,7 @@ self: {
buildDepends = [ base HaXml mtl syb-with-class template-haskell ];
description = "Marshalling Haskell values to/from XML";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"generics-sop" = callPackage
@@ -45541,6 +47117,7 @@ self: {
buildDepends = [ base ];
description = "Serialization library using Data.Generics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"genetics" = callPackage
@@ -45554,6 +47131,7 @@ self: {
buildDepends = [ base random-fu ];
description = "A Genetic Algorithm library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"geni-gui" = callPackage
@@ -45571,9 +47149,11 @@ self: {
array base cabal-macosx containers directory filepath GenI graphviz
hslogger json mtl process text transformers wx wxcore yaml-light
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/GenI";
description = "GenI graphical user interface";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"geni-util" = callPackage
@@ -45591,9 +47171,11 @@ self: {
base blaze-html blaze-markup bytestring cmdargs directory filepath
GenI geniserver HTTP http-streams io-streams json text
];
+ jailbreak = true;
homepage = "http://kowey.github.io/GenI";
description = "Companion tools for use with the GenI surface realiser";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"geniconvert" = callPackage
@@ -45610,9 +47192,11 @@ self: {
base binary containers GenI haskell98 HaXml HUnit mtl parsec
QuickCheck utf8-string
];
+ jailbreak = true;
homepage = "http://wiki.loria.fr/wiki/GenI";
description = "Conversion utility for the GenI generator";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"genifunctors" = callPackage
@@ -45653,8 +47237,10 @@ self: {
base bytestring cmdargs GenI http-types json snap-core snap-server
text transformers utf8-string
];
+ jailbreak = true;
description = "Simple HTTP server for GenI results";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"genprog" = callPackage
@@ -45664,6 +47250,7 @@ self: {
version = "0.1.0.2";
sha256 = "1a9b2h4swfwx5zwcyr2zdhxdxi9f68pwpglijxhxb5javjc4dppr";
buildDepends = [ base MonadRandom syb syz ];
+ jailbreak = true;
homepage = "http://github.com/jsnajder/genprog";
description = "Genetic programming library";
license = stdenv.lib.licenses.bsd3;
@@ -45705,7 +47292,6 @@ self: {
testDepends = [
base directory doctest filepath QuickCheck template-haskell
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/NICTA/geodetic";
description = "Geodetic calculations";
license = stdenv.lib.licenses.bsd3;
@@ -45724,6 +47310,7 @@ self: {
array base dimensional HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/PaulJohnson/geodetics";
description = "Terrestrial coordinate systems and associated calculations";
license = stdenv.lib.licenses.bsd3;
@@ -45755,10 +47342,11 @@ self: {
testDepends = [
base bytestring directory doctest filepath hlint QuickCheck
];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
homepage = "https://github.com/domdere/hs-geojson";
description = "A thin GeoJSON Layer above the aeson library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"getemx" = callPackage
@@ -45778,6 +47366,7 @@ self: {
homepage = "http://bitbucket.org/kenko/getemx";
description = "Fetch from emusic using .emx files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"getflag" = callPackage
@@ -45789,6 +47378,7 @@ self: {
buildDepends = [ base ];
description = "Command-line parser";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"getopt-simple" = callPackage
@@ -45823,12 +47413,10 @@ self: {
];
testDepends = [ base Cabal directory filepath HTF HUnit process ];
buildTools = [ alex happy ];
- configureFlags = [
- "-f-c-runtime" "-fcustom-binary" "-fserver" "-finterrupt"
- ];
homepage = "http://www.grammaticalframework.org/";
description = "Grammatical Framework";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ggtsTC" = callPackage
@@ -45879,6 +47467,7 @@ self: {
homepage = "http://github.com/vincenthz/ghc-core-html";
description = "Core to HTML display";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghc-datasize" = callPackage
@@ -45900,8 +47489,10 @@ self: {
version = "0.1";
sha256 = "0aw4wnbzfw031xqmq0lpi4zz2md1f43nj921ni91mhdl5xgqcajm";
buildDepends = [ base ghc ];
+ jailbreak = true;
description = "Explicitly prevent sharing";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghc-events" = callPackage
@@ -45935,8 +47526,10 @@ self: {
mtl optparse-applicative parsec SVGFonts template-haskell th-lift
transformers
];
+ jailbreak = true;
description = "Analyze and visualize event logs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghc-events-parallel" = callPackage
@@ -45973,6 +47566,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ghc-generic-instances" = callPackage
+ ({ mkDerivation, base, ghc }:
+ mkDerivation {
+ pname = "ghc-generic-instances";
+ version = "0.1.0.0";
+ sha256 = "0264ma0w85fwypnagd0l4zfs1wi1yk16rygn6fhpzgsxycwmg47h";
+ buildDepends = [ base ghc ];
+ jailbreak = true;
+ homepage = "https://github.com/alanz/ghc-generic-instances";
+ description = "Derived instances of GHC.Generic of the GHC AST";
+ license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ghc-heap-view" = callPackage
({ mkDerivation, base, binary, bytestring, containers, deepseq, ghc
, template-haskell, transformers
@@ -45985,7 +47592,6 @@ self: {
base binary bytestring containers ghc template-haskell transformers
];
testDepends = [ base deepseq ];
- configureFlags = [ "-fghc_7_7" "-f-prim-supports-any" ];
postInstall = ''
ensureDir "$out/share/ghci"
ln -s "$out/share/$pname-$version/ghci" "$out/share/ghci/$pname"
@@ -46043,6 +47649,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base parsec process ];
+ jailbreak = true;
description = "Generate a bash completion from the GHC manpage";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -46120,6 +47727,7 @@ self: {
base directory filepath HUnit process QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/23Skidoo/ghc-parmake";
description = "A parallel wrapper for 'ghc --make'";
license = stdenv.lib.licenses.bsd3;
@@ -46166,6 +47774,7 @@ self: {
buildDepends = [
base Cabal cmdargs filepath parsec process split
];
+ jailbreak = true;
description = "Simple utility to fix BROKEN package dependencies for cabal-install";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -46178,7 +47787,6 @@ self: {
version = "0.3";
sha256 = "1m2ny3f5i1ihvpq0vigpzj701gzrbzdz5h7f41qn37ikp9a6kd5a";
buildDepends = [ base Cabal directory filepath ghc ghc-paths ];
- configureFlags = [ "-f-lib-werror" ];
homepage = "https://github.com/JPMoresmau/ghc-pkg-lib";
description = "Provide library support for ghc-pkg information";
license = stdenv.lib.licenses.bsd3;
@@ -46191,7 +47799,6 @@ self: {
version = "0.3.1.0";
sha256 = "1726hddr7lyklagni1f7m27yak35ailn1zy6401ripppj3m0f03b";
buildDepends = [ rts ];
- configureFlags = [ "-f-include-ghc-prim" ];
description = "GHC primitives";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -46204,6 +47811,7 @@ self: {
sha256 = "1hg5iddlh87hir5vqjby2bihah4xcyarsfcgff3gd8l2h7mqi2dn";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghc-srcspan-plugin" = callPackage
@@ -46225,17 +47833,19 @@ self: {
version = "0.2.0.0";
sha256 = "0rwx7l89r5yfi1187c0zgx1ph2rsagyvrizb1c0vnbyrwhpbslh0";
buildDepends = [ base ghc ];
+ jailbreak = true;
homepage = "http://github.com/nominolo/ghc-syb";
description = "Data and Typeable instances for the GHC API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghc-syb-utils" = callPackage
({ mkDerivation, base, ghc, syb }:
mkDerivation {
pname = "ghc-syb-utils";
- version = "0.2.2";
- sha256 = "03r4x3a4hjivxladlw23jk8s2pgfh85lqf196ks1ngyg6ih1g6lk";
+ version = "0.2.3";
+ sha256 = "0rxwdivpcppwzbqglbrz8rm9f4g1gmba9ij7p7aj3di9x37kzxky";
buildDepends = [ base ghc syb ];
homepage = "http://github.com/nominolo/ghc-syb";
description = "Scrap Your Boilerplate utilities for the GHC API";
@@ -46251,7 +47861,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ attoparsec base containers text time ];
- configureFlags = [ "-f-dump" ];
homepage = "https://github.com/maoe/ghc-time-alloc-prof";
description = "Library for parsing GHC time and allocation profiling reports";
license = stdenv.lib.licenses.bsd3;
@@ -46270,7 +47879,6 @@ self: {
base cairo containers deepseq fgl ghc-heap-view graphviz gtk mtl
svgcairo text transformers xdot
];
- configureFlags = [ "-ffull" "-fgraph" ];
postInstall = ''
ensureDir "$out/share/ghci"
ln -s "$out/share/$pname-$version/ghci" "$out/share/ghci/$pname"
@@ -46278,6 +47886,7 @@ self: {
homepage = "http://felsin9.de/nnis/ghc-vis";
description = "Live visualization of data structures in GHCi";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghci-diagrams" = callPackage
@@ -46287,8 +47896,10 @@ self: {
version = "0.1.1";
sha256 = "1jlym5k2d43avkgw7ff3pdaad5j2q5yq803cy74bgy0z69x77v1w";
buildDepends = [ base cairo colour diagrams gtk ];
+ jailbreak = true;
description = "Display simple diagrams from ghci";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghci-haskeline" = callPackage
@@ -46305,10 +47916,11 @@ self: {
array base bytestring directory filepath ghc ghc-paths haskeline
mtl process unix
];
- configureFlags = [ "-fghc-612" "-fnewer-ghc" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~judah/ghci-haskeline";
description = "An implementation of ghci using the Haskeline line-input library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghci-lib" = callPackage
@@ -46318,6 +47930,7 @@ self: {
version = "0.1.0.0";
sha256 = "06lg1czsr6k5h18aks33p2kbahiidhv7xsrv7n1fcvqsgglzgk3z";
buildDepends = [ base ghc MissingH ];
+ jailbreak = true;
homepage = "http://github.com/gibiansky/IHaskell";
description = "A library for interactively evaluating Haskell code";
license = stdenv.lib.licenses.mit;
@@ -46337,9 +47950,11 @@ self: {
array base bytestring directory filepath ghc ghc-paths haskeline
process transformers unix
];
+ jailbreak = true;
homepage = "https://github.com/hvr/ghci-ng";
description = "Extended GHCi fork";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghci-pretty" = callPackage
@@ -46398,11 +48013,9 @@ self: {
version = "0.1.1.3";
sha256 = "0pdxb2s7fflrh8sbqakv0qi13jkn3d0yc32xhg2944yfjg5fvlly";
buildDepends = [ base glib gtk3 mtl text transformers webkitgtk3 ];
- configureFlags = [
- "-fgtk3" "-f-jsc" "-f-webkit" "-fjsffi" "-f-ghcjs"
- ];
description = "DOM library that supports both GHCJS and WebKitGTK";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghcjs-dom-hello" = callPackage
@@ -46417,6 +48030,7 @@ self: {
homepage = "https://github.com/ghcjs/ghcjs-dom-hello";
description = "GHCJS DOM Hello World, an example package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghclive" = callPackage
@@ -46438,9 +48052,11 @@ self: {
text time unix unordered-containers vector wai wai-websockets warp
websockets yesod yesod-static
];
+ jailbreak = true;
homepage = "http://github.com/shapr/ghclive/";
description = "Interactive Haskell interpreter in a browser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ghczdecode" = callPackage
@@ -46473,9 +48089,9 @@ self: {
iteratee-compress mmap mtl old-locale SHA storable-endian time
ui-command unix zlib
];
- configureFlags = [ "-fsplitbase" ];
description = "Trivial routines for inspecting git repositories";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gimlh" = callPackage
@@ -46510,6 +48126,7 @@ self: {
homepage = "http://repetae.net/computer/ginsu/";
description = "Ginsu Gale Client";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) openssl;};
"gio" = callPackage
@@ -46526,6 +48143,7 @@ self: {
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the GIO";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) glib;};
"gist" = callPackage
@@ -46539,9 +48157,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ aeson base bytestring conduit http-conduit text ];
+ jailbreak = true;
homepage = "http://github.com/simonmichael/gist";
description = "A reliable command-line client for gist.github.com";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"git-all" = callPackage
@@ -46561,6 +48181,7 @@ self: {
homepage = "https://github.com/jwiegley/git-all";
description = "Determine which Git repositories need actions to be taken";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"git-annex" = callPackage
@@ -46605,14 +48226,7 @@ self: {
buildTools = [
bup curl git gnupg1 lsof openssh perl rsync wget which
];
- configureFlags = [
- "-fAssistant" "-fProduction" "-fnetwork-uri" "-f-ekg"
- "-ftorrentparser" "-fdesktopnotify" "-fcryptohash" "-ftahoe"
- "-fquvi" "-ffeed" "-ftdfa" "-ftestsuite" "-f-androidsplice"
- "-f-android" "-fproduction" "-fdns" "-fxmpp" "-fpairing"
- "-fwebapp-secure" "-fwebapp" "-fassistant" "-fdbus" "-finotify"
- "-fwebdav" "-fs3"
- ];
+ configureFlags = [ "-fAssistant" "-fProduction" ];
preConfigure = "export HOME=$TEMPDIR";
checkPhase = ''
cp dist/build/git-annex/git-annex git-annex
@@ -46640,9 +48254,11 @@ self: {
buildDepends = [
base directory filepath optparse-applicative parsec pretty process
];
+ jailbreak = true;
homepage = "https://github.com/dougalstanton/git-checklist";
description = "Maintain per-branch checklists in Git";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"git-date" = callPackage
@@ -46661,6 +48277,7 @@ self: {
homepage = "https://github.com/singpolyma/git-date-haskell";
description = "Bindings to the date parsing from Git";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"git-embed" = callPackage
@@ -46719,6 +48336,7 @@ self: {
homepage = "http://github.com/jwiegley/gitlib";
description = "More intelligent push-to-GitHub utility";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"git-monitor" = callPackage
@@ -46743,6 +48361,7 @@ self: {
homepage = "http://github.com/jwiegley/gitlib";
description = "Passively snapshots working tree changes efficiently";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"git-object" = callPackage
@@ -46780,10 +48399,10 @@ self: {
optparse-applicative process QuickCheck text time transformers unix
unix-compat utf8-string
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://git-repair.branchable.com/";
description = "repairs a damanged git repisitory";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"git-sanity" = callPackage
@@ -46828,7 +48447,6 @@ self: {
base directory filepath hspec process transformers
transformers-base unix
];
- configureFlags = [ "-fgpl" ];
homepage = "https://github.com/anchor/git-vogue";
description = "A framework for pre-commit checks";
license = stdenv.lib.licenses.bsd3;
@@ -46893,7 +48511,6 @@ self: {
unix-compat
];
buildTools = [ git ];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "https://github.com/joeyh/github-backup";
description = "backs up everything github knows about a repository, to the repository";
license = "GPL";
@@ -46971,7 +48588,7 @@ self: {
random recaptcha safe SHA split syb tagsoup text time uri url
utf8-string uuid xhtml xml xss-sanitize zlib
];
- configureFlags = [ "-fplugins" "-fnetwork-uri" ];
+ jailbreak = true;
homepage = "http://gitit.net";
description = "Wiki using happstack, git or darcs, and pandoc";
license = "GPL";
@@ -47039,6 +48656,7 @@ self: {
];
description = "Run tests between repositories";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gitlib-libgit2" = callPackage
@@ -47067,6 +48685,7 @@ self: {
];
description = "Libgit2 backend for gitlib";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gitlib-s3" = callPackage
@@ -47096,6 +48715,7 @@ self: {
];
description = "Gitlib repository backend for storing Git objects in Amazon S3";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gitlib-sample" = callPackage
@@ -47143,6 +48763,7 @@ self: {
];
description = "Generic utility functions for working with Git repositories";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gitson" = callPackage
@@ -47162,9 +48783,11 @@ self: {
aeson base directory doctest Glob hspec HUnit process QuickCheck
transformers
];
+ jailbreak = true;
homepage = "https://github.com/myfreeweb/gitson";
description = "A document store library for Git + JSON";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gl" = callPackage
@@ -47173,16 +48796,13 @@ self: {
}:
mkDerivation {
pname = "gl";
- version = "0.6.3";
- sha256 = "0ys5808rzr04fcw7hlliqpx2sncyqpr4x89p4sa2vf5ywsgzmz04";
+ version = "0.7";
+ sha256 = "0s9xvsainfl1g40ifzzz4rl9mp5z3apw79sz80n7lidch30i2ccs";
buildDepends = [
base containers directory filepath fixed half hxt split
transformers
];
extraLibraries = [ mesa ];
- configureFlags = [
- "-fuseglxgetprocaddress" "-fusenativewindowslibraries"
- ];
description = "Complete OpenGL raw bindings";
license = stdenv.lib.licenses.bsd3;
}) { inherit (pkgs) mesa;};
@@ -47207,9 +48827,11 @@ self: {
buildDepends = [ base glib gtk ];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ libglade ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the glade library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) libglade;};
"gladexml-accessor" = callPackage
@@ -47221,6 +48843,7 @@ self: {
buildDepends = [ base glade HaXml template-haskell ];
description = "Automagically declares getters for widget handles in specified interface file";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"glapp" = callPackage
@@ -47232,6 +48855,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers GLFW-b lens mtl OpenGL ];
+ jailbreak = true;
homepage = "zyghost.com";
description = "An OpenGL micro framework";
license = stdenv.lib.licenses.gpl2;
@@ -47248,7 +48872,6 @@ self: {
buildDepends = [ base bytestring containers text utf8-string ];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ glib ];
- configureFlags = [ "-fclosure_signals" ];
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the GLIB library for Gtk2Hs";
license = stdenv.lib.licenses.lgpl21;
@@ -47262,9 +48885,11 @@ self: {
sha256 = "1i604gj3ssabr3dcas6gfh20d4psqwl1j4d7wk4p3gy0hvjvr8fb";
buildDepends = [ base containers text ];
testDepends = [ base Cabal containers HUnit text ];
+ jailbreak = true;
homepage = "https://github.com/klangner/glider-nlp";
description = "Natural Language Processing library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"glintcollider" = callPackage
@@ -47335,6 +48960,7 @@ self: {
version = "1.0.1.1";
sha256 = "0fvhh6q6z114qyi5rhwzxhrlqfhx6af97187b49lyvx2k9zkzvzp";
buildDepends = [ base containers stm ];
+ jailbreak = true;
description = "Namespaced, global, and top-level mutable variables without unsafePerformIO";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -47353,9 +48979,11 @@ self: {
array base GlomeTrace GlomeVec GLUT haskell98 OpenGL parallel
random time
];
+ jailbreak = true;
homepage = "http://haskell.org/haskellwiki/Glome";
description = "ray tracer";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gloss" = callPackage
@@ -47369,7 +48997,7 @@ self: {
buildDepends = [
base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL
];
- configureFlags = [ "-f-explicitbackend" "-f-glfw" "-fglut" ];
+ jailbreak = true;
homepage = "http://gloss.ouroborus.net";
description = "Painless 2D vector graphics, animations and simulations";
license = stdenv.lib.licenses.mit;
@@ -47383,9 +49011,10 @@ self: {
sha256 = "1nj2rnp2bg3xmi4xbaws9jc7qx3b4qqg9fyvfv13xdav28d7iqb0";
editedCabalFile = "3c0195c2208cb3c6786b8d1f27a17f5249af3797f6a37af410e95f23d03fb8d6";
buildDepends = [ accelerate accelerate-cuda base gloss ];
- configureFlags = [ "-fcuda" ];
+ jailbreak = true;
description = "Extras to interface Gloss and Accelerate";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gloss-algorithms" = callPackage
@@ -47407,6 +49036,7 @@ self: {
version = "0.1.0.4";
sha256 = "0zzpdryfcqvxpzv53ymsvkm2nza9ryvzqgf3n89pnvrni91avgj3";
buildDepends = [ base gloss reactive-banana ];
+ jailbreak = true;
homepage = "https://github.com/Twey/gloss-banana";
description = "An Interface for gloss in terms of a reactive-banana Behavior";
license = stdenv.lib.licenses.gpl3;
@@ -47442,6 +49072,7 @@ self: {
homepage = "http://gloss.ouroborus.net";
description = "Examples using the gloss library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gloss-game" = callPackage
@@ -47500,9 +49131,10 @@ self: {
buildDepends = [
accelerate accelerate-cuda base gloss gloss-accelerate
];
- configureFlags = [ "-fcuda" ];
+ jailbreak = true;
description = "Parallel rendering of raster images using Accelerate";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gloss-rendering" = callPackage
@@ -47512,6 +49144,7 @@ self: {
version = "1.9.2.1";
sha256 = "05wdiadwjykz8x0fimznp3q1drm4v3vnv6cv6wjkj1xsclmhb99k";
buildDepends = [ base bmp bytestring containers GLUT OpenGL ];
+ jailbreak = true;
description = "Gloss picture data types and rendering functions";
license = stdenv.lib.licenses.mit;
}) {};
@@ -47523,6 +49156,7 @@ self: {
version = "0.1.0.0";
sha256 = "0ygjqzb1pn092j0d0gcwhxdv940rdlvpaj1gxa347mdgvp4jb9za";
buildDepends = [ base gloss sodium ];
+ jailbreak = true;
homepage = "https://github.com/Twey/gloss-sodium";
description = "A Sodium interface to the Gloss drawing package";
license = stdenv.lib.licenses.agpl3;
@@ -47562,6 +49196,7 @@ self: {
buildDepends = [ array AvlTree base COrdering QuickCheck random ];
description = "Composable maps and generic tries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gmndl" = callPackage
@@ -47578,8 +49213,10 @@ self: {
ad array base gtk gtkglext mtl OpenGL OpenGLRaw parsec
priority-queue qd reflection Vec
];
+ jailbreak = true;
description = "Mandelbrot Set explorer using GTK";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gnome-desktop" = callPackage
@@ -47593,6 +49230,7 @@ self: {
buildDepends = [ base directory gconf glib gtk random ];
description = "Randomly set a picture as the GNOME desktop background";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gnome-keyring" = callPackage
@@ -47609,6 +49247,7 @@ self: {
homepage = "https://john-millikin.com/software/haskell-gnome-keyring/";
description = "Bindings for libgnome-keyring";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gnome_keyring;};
"gnomevfs" = callPackage
@@ -47622,9 +49261,11 @@ self: {
buildDepends = [ array base containers glib gtk haskell98 mtl ];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ gnome_vfs gnome_vfs_module ];
+ jailbreak = true;
homepage = "http://www.haskell.org/gtk2hs/";
description = "Binding to the GNOME Virtual File System library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;};
"gnuidn" = callPackage
@@ -47658,10 +49299,6 @@ self: {
deepseq filepath old-locale process temporary time transformers
utility-ht
];
- configureFlags = [
- "-f-executeshell" "-f-executepipe" "-f-buildexamples"
- "-f-buildtests" "-fsplitbase"
- ];
homepage = "http://www.haskell.org/haskellwiki/Gnuplot";
description = "2D and 3D plots using gnuplot";
license = stdenv.lib.licenses.bsd3;
@@ -47692,6 +49329,7 @@ self: {
buildDepends = [ base directory filepath process ];
description = "GHCi bindings to lambdabot";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"goatee" = callPackage
@@ -47723,9 +49361,11 @@ self: {
base cairo containers directory filepath goatee gtk mtl parsec
];
testDepends = [ base HUnit ];
+ jailbreak = true;
homepage = "http://khumba.net/projects/goatee";
description = "A monadic take on a 2,500-year-old board game - GTK+ UI";
license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gofer-prelude" = callPackage
@@ -47738,6 +49378,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/gofer-prelude";
description = "The Gofer 2.30 standard prelude";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"google-dictionary" = callPackage
@@ -47788,8 +49429,10 @@ self: {
base blaze-html cmdargs data-default hamlet pandoc shakespeare-css
syb text time
];
+ jailbreak = true;
description = "Google HTML5 Slide generator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"google-mail-filters" = callPackage
@@ -47850,9 +49493,11 @@ self: {
aeson attoparsec base bytestring containers enumerator haskell98
http-enumerator http-types mtl text time timerep transformers url
];
+ jailbreak = true;
homepage = "http://github.com/michaelxavier/GooglePlus";
description = "Haskell implementation of the Google+ API v1";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gopherbot" = callPackage
@@ -47870,6 +49515,7 @@ self: {
];
description = "Spidering robot to download files from Gopherspace";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gpah" = callPackage
@@ -47890,6 +49536,7 @@ self: {
];
description = "Generic Programming Use in Hackage";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gpcsets" = callPackage
@@ -47931,8 +49578,10 @@ self: {
base GPX hxt QuickCheck statistics test-framework
test-framework-quickcheck2 time vector xsd
];
+ jailbreak = true;
description = "For manipulating GPS coordinates and trails";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gps2htmlReport" = callPackage
@@ -47951,9 +49600,11 @@ self: {
filepath gd gps GPX hsmagick html http-enumerator process random
tar time xsd
];
+ jailbreak = true;
homepage = "https://github.com/robstewart57/Gps2HtmlReport";
description = "GPS to HTML Summary Report";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gpx-conduit" = callPackage
@@ -47968,8 +49619,10 @@ self: {
attoparsec base conduit filepath monad-control old-locale text time
void xml-conduit xml-types
];
+ jailbreak = true;
description = "Read GPX files using conduits";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"graceful" = callPackage
@@ -47984,6 +49637,7 @@ self: {
testDepends = [
base directory filepath hspec network process stm unix
];
+ jailbreak = true;
description = "Library to write graceful shutdown / upgrade service";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -48004,6 +49658,7 @@ self: {
homepage = "http://projects.haskell.org/grammar-combinators/";
description = "A parsing library of context-free grammar combinators";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"grapefruit-examples" = callPackage
@@ -48034,6 +49689,7 @@ self: {
buildDepends = [
arrows base containers fingertree semigroups TypeCompose
];
+ jailbreak = true;
homepage = "http://grapefruit-project.org/";
description = "Functional Reactive Programming core";
license = stdenv.lib.licenses.bsd3;
@@ -48083,6 +49739,7 @@ self: {
homepage = "http://grapefruit-project.org/";
description = "GTK+-based backend for declarative user interface programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"graph-core" = callPackage
@@ -48161,9 +49818,11 @@ self: {
base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl
graph-rewriting-layout OpenGL parsec
];
+ jailbreak = true;
homepage = "http://rochel.info/#graph-rewriting";
description = "Interactive graph rewriting system implementing various well-known combinators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"graph-rewriting-gl" = callPackage
@@ -48178,6 +49837,7 @@ self: {
AC-Vector base base-unicode-symbols containers GLUT graph-rewriting
graph-rewriting-layout OpenGL
];
+ jailbreak = true;
homepage = "http://rochel.info/#graph-rewriting";
description = "OpenGL interface for interactive port graph rewriting";
license = stdenv.lib.licenses.bsd3;
@@ -48199,9 +49859,11 @@ self: {
graph-rewriting-layout graph-rewriting-strategies IndentParser
OpenGL parsec
];
+ jailbreak = true;
homepage = "http://rochel.info/#graph-rewriting";
description = "Lambdascope, an optimal evaluator of the lambda calculus, as an interactive graph-rewriting system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"graph-rewriting-layout" = callPackage
@@ -48234,6 +49896,7 @@ self: {
base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl
graph-rewriting-layout OpenGL parsec
];
+ jailbreak = true;
homepage = "http://rochel.info/#graph-rewriting";
description = "Two evalutors of the SKI combinator calculus as interactive graph rewrite systems";
license = stdenv.lib.licenses.bsd3;
@@ -48271,6 +49934,7 @@ self: {
graph-rewriting graph-rewriting-gl graph-rewriting-layout OpenGL
uu-parsinglib
];
+ jailbreak = true;
homepage = "http://rochel.info/#graph-rewriting";
description = "Evaluate first-order applicative term rewrite systems interactively using graph reduction";
license = stdenv.lib.licenses.bsd3;
@@ -48291,6 +49955,7 @@ self: {
base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl
graph-rewriting-layout IndentParser OpenGL parsec
];
+ jailbreak = true;
homepage = "http://rochel.info/#graph-rewriting";
description = "Evaluator of the lambda-calculus in an interactive graph rewriting system with explicit sharing";
license = stdenv.lib.licenses.bsd3;
@@ -48319,9 +49984,11 @@ self: {
buildDepends = [
base containers fgl mtl parsec syb template-haskell
];
+ jailbreak = true;
homepage = "http://github.com/konn/graph-utils/";
description = "A simple wrapper & quasi quoter for fgl";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"graph-visit" = callPackage
@@ -48365,6 +50032,7 @@ self: {
base containers mtl QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/tel/graphbuilder";
description = "A declarative, monadic graph construction language for small graphs";
license = stdenv.lib.licenses.mit;
@@ -48382,6 +50050,7 @@ self: {
base bifunctors containers hashable lens-family lens-family-core
mtl transformers
];
+ jailbreak = true;
homepage = "https://github.com/5outh/graphene";
description = "A minimal Graph Theory library";
license = stdenv.lib.licenses.mit;
@@ -48396,7 +50065,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bitmap FTGL OpenGL stb-image ];
- configureFlags = [ "-f-examples" "-fftgl" ];
+ jailbreak = true;
homepage = "http://github.com/luqui/graphics-drawingcombinators";
description = "A functional interface to 2D drawing in OpenGL";
license = stdenv.lib.licenses.bsd3;
@@ -48413,9 +50082,11 @@ self: {
buildDepends = [
base bitmap-opengl containers hxt OpenGL stb-image transformers
];
+ jailbreak = true;
homepage = "http://github.com/luqui/collada";
description = "Load 3D geometry in the COLLADA format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"graphicsFormats" = callPackage
@@ -48427,6 +50098,7 @@ self: {
buildDepends = [ base haskell98 OpenGL QuickCheck ];
description = "Classes for renderable objects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"graphicstools" = callPackage
@@ -48445,6 +50117,7 @@ self: {
homepage = "https://yousource.it.jyu.fi/cvlab/pages/GraphicsTools";
description = "Tools for creating graphical UIs, based on wxHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"graphmod" = callPackage
@@ -48493,6 +50166,7 @@ self: {
homepage = "http://github.com/explicitcall/graphtype";
description = "A simple tool to illustrate dependencies between Haskell types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"graphviz" = callPackage
@@ -48511,7 +50185,6 @@ self: {
polyparse process temporary text transformers wl-pprint-text
];
testDepends = [ base containers fgl filepath QuickCheck text ];
- configureFlags = [ "-f-test-parsing" ];
homepage = "http://projects.haskell.org/graphviz/";
description = "Bindings to Graphviz for graph visualisation";
license = stdenv.lib.licenses.bsd3;
@@ -48556,9 +50229,11 @@ self: {
testDepends = [
base QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/mhwombat/gray-extended";
description = "Gray encoding schemes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"greencard" = callPackage
@@ -48598,10 +50273,10 @@ self: {
buildDepends = [
base binary bytestring clock hostname network stm system-uuid time
];
- configureFlags = [ "-f-debug" ];
homepage = "http://code.google.com/p/greg/";
description = "A scalable distributed logger with a high-precision global time axis";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"grid" = callPackage
@@ -48619,6 +50294,7 @@ self: {
homepage = "https://github.com/mhwombat/grid";
description = "Tools for working with regular grids (graphs, lattices)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"grm" = callPackage
@@ -48637,6 +50313,7 @@ self: {
buildTools = [ happy ];
description = "grm grammar converter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"groom" = callPackage
@@ -48684,7 +50361,6 @@ self: {
groundhog-sqlite groundhog-th mtl regex-compat syb template-haskell
text time transformers
];
- configureFlags = [ "-f-mysql" "-f-postgresql" "-fsqlite" ];
homepage = "http://github.com/lykahb/groundhog";
description = "Type-safe datatype-database mapping library";
license = stdenv.lib.licenses.bsd3;
@@ -48705,6 +50381,7 @@ self: {
];
description = "MySQL backend for the groundhog library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"groundhog-postgresql" = callPackage
@@ -48828,9 +50505,11 @@ self: {
regex-compat text transformers-base unordered-containers vector wai
wai-extra warp
];
+ jailbreak = true;
homepage = "http://github.com/iand675/growler";
description = "A revised version of the scotty library that attempts to be simpler and more performant";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gruff" = callPackage
@@ -48848,9 +50527,10 @@ self: {
base bytestring containers directory filepath FTGL gtk gtkglext mtl
old-locale OpenGL OpenGLRaw parallel qd qd-vec ruff time Vec
];
- configureFlags = [ "-f-mpfr" ];
+ jailbreak = true;
description = "fractal explorer GUI using the ruff library";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gruff-examples" = callPackage
@@ -48867,9 +50547,10 @@ self: {
base containers data-memocombinators filepath gruff qd qd-vec
random ruff Vec
];
- configureFlags = [ "-f-mpfr" ];
+ jailbreak = true;
description = "Mandelbrot Set examples using ruff and gruff";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gsasl" = callPackage
@@ -48894,6 +50575,7 @@ self: {
buildDepends = [ base hierarchical-clustering ];
description = "Generic implementation of Gerstein/Sonnhammer/Chothia weighting";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gsl-random" = callPackage
@@ -48906,6 +50588,7 @@ self: {
homepage = "http://github.com/patperry/hs-gsl-random";
description = "Bindings the the GSL random number generation facilities";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gsl-random-fu" = callPackage
@@ -48918,6 +50601,7 @@ self: {
homepage = "http://code.haskell.org/~mokus/gsl-random-fu";
description = "Instances for using gsl-random with random-fu";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gsmenu" = callPackage
@@ -48933,9 +50617,11 @@ self: {
buildDepends = [
base containers mtl parsec permute sindre text X11
];
+ jailbreak = true;
homepage = "http://sigkill.dk/programs/gsmenu";
description = "A visual generic menu";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gstreamer" = callPackage
@@ -48954,9 +50640,11 @@ self: {
gstreamer gstreamer-audio gstreamer-base gstreamer-controller
gstreamer-dataprotocol gstreamer-net gstreamer-plugins-base
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the GStreamer open source multimedia framework";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) gstreamer; gstreamer-audio = null;
gstreamer-base = null; gstreamer-controller = null;
gstreamer-dataprotocol = null; gstreamer-net = null;
@@ -48976,7 +50664,6 @@ self: {
base containers extensible-exceptions haskeline HTTP json mtl unix
url utf8-string
];
- configureFlags = [ "-f-gui" ];
homepage = "http://github.com/styx/gtc";
description = "Console and GUI interface for Google Translate service";
license = "GPL";
@@ -48992,6 +50679,7 @@ self: {
buildDepends = [ base csv directory filepath rowrecord split ];
description = "The General Transit Feed Specification format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk" = callPackage
@@ -49007,12 +50695,10 @@ self: {
];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ glib gtk ];
- configureFlags = [
- "-ffmode-binary" "-f-have-quartz-gtk" "-fhave-gio" "-fdeprecated"
- ];
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the Gtk+ graphical user interface library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) glib; inherit (pkgs.gnome) gtk;};
"gtk-jsinput" = callPackage
@@ -49025,6 +50711,7 @@ self: {
homepage = "http://github.com/timthelion/gtk-jsinput";
description = "A simple custom form widget for gtk which allows inputing of JSON values";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk-largeTreeStore" = callPackage
@@ -49039,6 +50726,7 @@ self: {
testDepends = [ base containers gtk3 hspec ];
description = "Large TreeStore support for gtk2hs";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk-mac-integration" = callPackage
@@ -49055,6 +50743,7 @@ self: {
homepage = "http://www.haskell.org/gtk2hs/";
description = "Bindings for the Gtk/OS X integration library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { gtk-mac-integration = null;};
"gtk-serialized-event" = callPackage
@@ -49066,9 +50755,11 @@ self: {
sha256 = "0gh8kwd9758ws941xbxhrm3144pmnqln0md5r6vjbq7s1x54bsrf";
buildDepends = [ array base containers glib gtk haskell98 mtl ];
pkgconfigDepends = [ gtk ];
+ jailbreak = true;
homepage = "http://www.haskell.org/gtk2hs/";
description = "GTK+ Serialized event";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtk;};
"gtk-simple-list-view" = callPackage
@@ -49081,6 +50772,7 @@ self: {
homepage = "http://github.com/timthelion/gtk-simple-list-view";
description = "A simple custom form widget for gtk which allows single LOC creation/updating of list views";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk-toggle-button-list" = callPackage
@@ -49093,6 +50785,7 @@ self: {
homepage = "http://github.com/timthelion/gtk-toggle-button-list";
description = "A simple custom form widget for gtk which allows single LOC creation/updating of toggle button lists";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk-toy" = callPackage
@@ -49102,8 +50795,10 @@ self: {
version = "0.2.0";
sha256 = "0zf3k0c5h5wcgkqr8np5kvgz4c9nha86k5whsn4f1wk0ikj98dfq";
buildDepends = [ base containers gtk ];
+ jailbreak = true;
description = "Convenient Gtk canvas with mouse and keyboard input";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk-traymanager" = callPackage
@@ -49117,6 +50812,7 @@ self: {
homepage = "http://github.com/travitch/gtk-traymanager";
description = "A wrapper around the eggtraymanager library for Linux system trays";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtk; inherit (pkgs) x11;};
"gtk2hs-buildtools" = callPackage
@@ -49134,7 +50830,6 @@ self: {
random
];
buildTools = [ alex happy ];
- configureFlags = [ "-fclosuresignals" ];
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Tools to build the Gtk2Hs suite of User Interface libraries";
license = stdenv.lib.licenses.gpl2;
@@ -49153,6 +50848,7 @@ self: {
];
description = "A type class for cast functions of Gtk2hs: glade package";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk2hs-cast-glib" = callPackage
@@ -49179,6 +50875,7 @@ self: {
];
description = "A type class for cast functions of Gtk2hs: gnomevfs package";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk2hs-cast-gtk" = callPackage
@@ -49194,6 +50891,7 @@ self: {
];
description = "A type class for cast functions of Gtk2hs: gtk package";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk2hs-cast-gtkglext" = callPackage
@@ -49209,6 +50907,7 @@ self: {
];
description = "A type class for cast functions of Gtk2hs: gtkglext package";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk2hs-cast-gtksourceview2" = callPackage
@@ -49225,6 +50924,7 @@ self: {
];
description = "A type class for cast functions of Gtk2hs: gtksourceview2 package";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk2hs-cast-th" = callPackage
@@ -49250,6 +50950,7 @@ self: {
homepage = "http://www.haskell.org/hello/";
description = "Gtk2Hs Hello World, an example package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk2hs-rpn" = callPackage
@@ -49259,8 +50960,10 @@ self: {
version = "0.2.1";
sha256 = "01wikd60b48qcz6vk31kwfkpkf2za5laxbhdyns45s90lvr98rvi";
buildDepends = [ base cairo glib gtk mtl ];
+ jailbreak = true;
description = "Adds a module to gtk2hs allowing layouts to be defined using reverse polish notation";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtk3" = callPackage
@@ -49280,12 +50983,10 @@ self: {
];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ glib gtk3 ];
- configureFlags = [
- "-ffmode-binary" "-f-build-demos" "-fhave-gio"
- ];
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the Gtk+ graphical user interface library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) glib; gtk3 = null;};
"gtk3-mac-integration" = callPackage
@@ -49302,6 +51003,7 @@ self: {
homepage = "http://www.haskell.org/gtk2hs/";
description = "Bindings for the Gtk/OS X integration library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { gtk-mac-integration = null;};
"gtkglext" = callPackage
@@ -49315,10 +51017,11 @@ self: {
buildDepends = [ base glib gtk pango ];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ gtkglext pangox_compat ];
- configureFlags = [ "-f-use-deprecated" "-f-have-quartz-gtk" ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the GTK+ OpenGL Extension";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtkglext;
inherit (pkgs) pangox_compat;};
@@ -49333,9 +51036,11 @@ self: {
buildDepends = [ array base containers glib gtk haskell98 mtl ];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ gtkimageview ];
+ jailbreak = true;
homepage = "http://www.haskell.org/gtk2hs/";
description = "Binding to the GtkImageView library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) gtkimageview;};
"gtkrsync" = callPackage
@@ -49354,6 +51059,7 @@ self: {
homepage = "http://hg.complete.org/gtkrsync";
description = "Gnome rsync progress display";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gtksourceview2" = callPackage
@@ -49370,6 +51076,7 @@ self: {
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the GtkSourceView library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtksourceview;};
"gtksourceview3" = callPackage
@@ -49386,6 +51093,7 @@ self: {
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the GtkSourceView library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtksourceview;};
"guarded-rewriting" = callPackage
@@ -49410,6 +51118,7 @@ self: {
homepage = "http://code.atnnn.com/project/guess";
description = "Generate simple combinators given their type";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gulcii" = callPackage
@@ -49421,9 +51130,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base cairo containers filepath gtk ];
+ jailbreak = true;
homepage = "http://gitorious.org/maximus/gulcii";
description = "graphical untyped lambda calculus interactive interpreter";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gutenberg-fibonaccis" = callPackage
@@ -49456,6 +51167,7 @@ self: {
homepage = "https://github.com/Fuuzetsu/h-booru";
description = "Haskell library for retrieving data from various booru image sites";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"h-gpgme" = callPackage
@@ -49474,6 +51186,7 @@ self: {
];
homepage = "https://github.com/rethab/h-gpgme";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"h2048" = callPackage
@@ -49490,10 +51203,10 @@ self: {
base MonadRandom mtl text transformers vty vty-ui
];
testDepends = [ base HUnit MonadRandom mtl transformers ];
- configureFlags = [ "-fvty" "-fexe" ];
homepage = "https://github.com/Javran/h2048";
description = "a haskell implementation of Game 2048";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hArduino" = callPackage
@@ -49534,6 +51247,7 @@ self: {
extraLibraries = [ cudd epd mtr st util ];
description = "An FFI binding to the CUDD library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { cudd = null; epd = null; inherit (pkgs) mtr;
inherit (pkgs) st; util = null;};
@@ -49548,9 +51262,9 @@ self: {
buildDepends = [ base monads-tf transformers vector ];
buildTools = [ c2hs ];
extraLibraries = [ csound64 libsndfile ];
- configureFlags = [ "-fuseframework" "-fusedouble" "-fsplitbase" ];
description = "interface to CSound API";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { csound64 = null; inherit (pkgs) libsndfile;};
"hDFA" = callPackage
@@ -49562,6 +51276,7 @@ self: {
buildDepends = [ base containers directory process ];
description = "A simple library for representing and minimising DFAs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hF2" = callPackage
@@ -49573,6 +51288,7 @@ self: {
buildDepends = [ base cereal vector ];
description = "F(2^e) math for cryptography";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hGelf" = callPackage
@@ -49607,6 +51323,7 @@ self: {
homepage = "http://github.com/itkovian/hMollom";
description = "Library to interact with the @Mollom anti-spam service";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hOpenPGP" = callPackage
@@ -49660,9 +51377,6 @@ self: {
iterable mmap mtl Octree parallel QuickCheck tagged
template-haskell text vector zlib
];
- configureFlags = [
- "-f-have-text-format" "-fhave-sse2" "-fhave-mmap"
- ];
homepage = "https://github.com/BioHaskell/hPDB";
description = "Protein Databank file format library";
license = stdenv.lib.licenses.bsd3;
@@ -49701,9 +51415,11 @@ self: {
version = "0.1.1";
sha256 = "1qz1hd05fhh9vfjxmmnl9qs29hjl2qdyvfi9h687dp1dvk36j7ns";
buildDepends = [ aeson base bytestring http-conduit network ];
+ jailbreak = true;
homepage = "https://github.com/WJWH/hPushover";
description = "Pushover.net API functions.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hR" = callPackage
@@ -49715,6 +51431,7 @@ self: {
buildDepends = [ array base containers unix ];
description = "R bindings and interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hRESP" = callPackage
@@ -49744,7 +51461,6 @@ self: {
base bytestring Crypto dataenc HTTP hxt MissingH network
network-uri old-locale old-time random regex-compat utf8-string
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://gregheartsfield.com/hS3/";
description = "Interface to Amazon's Simple Storage Service (S3)";
license = stdenv.lib.licenses.bsd3;
@@ -49762,8 +51478,10 @@ self: {
base bytestring Crypto dataenc HTTP hxt network old-locale old-time
utf8-string
];
+ jailbreak = true;
description = "Interface to Amazon's SimpleDB service";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hTalos" = callPackage
@@ -49774,9 +51492,11 @@ self: {
sha256 = "05l9nlrwpb9gwgj8z48paxx46lkasa82naiq7armi98salk1a9ip";
buildDepends = [ base bytestring ];
testDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/mgajda/hTalos";
description = "Parser, print and manipulate structures in PDB file format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hTensor" = callPackage
@@ -49804,6 +51524,7 @@ self: {
homepage = "http://dslsrv4.cs.missouri.edu/~qqbm9";
description = "Optimal variable selection in chain graphical model";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) blas; lapack = null;};
"haar" = callPackage
@@ -49821,6 +51542,7 @@ self: {
homepage = "https://github.com/mhwombat/haar";
description = "Haar wavelet transforms";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hacanon-light" = callPackage
@@ -49863,6 +51585,7 @@ self: {
homepage = "http://github.com/nfjinjing/hack-contrib";
description = "Hack contrib";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack-contrib-press" = callPackage
@@ -49880,6 +51603,7 @@ self: {
homepage = "http://github.com/bickfordb/hack-contrib-press";
description = "Hack helper that renders Press templates";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack-frontend-happstack" = callPackage
@@ -49897,6 +51621,7 @@ self: {
homepage = "http://github.com/nfjinjing/hack/tree/master";
description = "hack-frontend-happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack-frontend-monadcgi" = callPackage
@@ -49908,6 +51633,7 @@ self: {
buildDepends = [ base bytestring cgi containers hack ];
description = "Allows programs written against MonadCGI to run with any hack handler. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack-handler-cgi" = callPackage
@@ -49917,6 +51643,7 @@ self: {
version = "0.2.0.2";
sha256 = "0pm8vs94dbaahqrdwfffwa1jb9ghyjnq48sirlw1dj2gcsa3np2x";
buildDepends = [ base bytestring hack ];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/hack-handler-cgi/tree/master";
description = "Hack handler using CGI protocol. (deprecated)";
license = stdenv.lib.licenses.bsd3;
@@ -49937,6 +51664,7 @@ self: {
homepage = "http://github.com/twittner/hack-handler-epoll/";
description = "hack handler implementation using epoll";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack-handler-evhttp" = callPackage
@@ -49955,6 +51683,7 @@ self: {
homepage = "http://github.com/bickfordb/hack-handler-evhttp";
description = "Hack EvHTTP (libevent) Handler";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { event = null;};
"hack-handler-fastcgi" = callPackage
@@ -49965,9 +51694,11 @@ self: {
sha256 = "02slh33r9qy8q0vpi4s4vvf5lmb14ypk8bixdicvxakahjvxhanr";
buildDepends = [ base bytestring hack hack-handler-cgi ];
extraLibraries = [ fcgi ];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/hack-handler-fastcgi/tree/master";
description = "Hack handler direct to fastcgi (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) fcgi;};
"hack-handler-happstack" = callPackage
@@ -49985,6 +51716,7 @@ self: {
homepage = "http://github.com/nfjinjing/hack-handler-happstack";
description = "Hack Happstack server handler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack-handler-hyena" = callPackage
@@ -50001,6 +51733,7 @@ self: {
homepage = "http://github.com/nfjinjing/hack-handler-hyena";
description = "Hyena hack handler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack-handler-kibro" = callPackage
@@ -50013,6 +51746,7 @@ self: {
homepage = "http://github.com/nfjinjing/hack/tree/master";
description = "Hack Kibro handler";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack-handler-simpleserver" = callPackage
@@ -50026,9 +51760,11 @@ self: {
buildDepends = [
base bytestring failure hack network web-encodings
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/hack-handler-simpleserver/tree/master";
description = "A simplistic HTTP server handler for Hack. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack-middleware-cleanpath" = callPackage
@@ -50057,6 +51793,7 @@ self: {
homepage = "http://github.com/snoyberg/hack-middleware-clientsession/tree/master";
description = "Middleware for easily keeping session data in client cookies. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack-middleware-gzip" = callPackage
@@ -50085,6 +51822,7 @@ self: {
homepage = "http://github.com/snoyberg/hack-middleware-jsonp/tree/master";
description = "Automatic wrapping of JSON responses to convert into JSONP. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack2" = callPackage
@@ -50111,7 +51849,6 @@ self: {
air base bytestring containers data-default directory filepath
hack2 network-uri old-locale text time
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "https://github.com/nfjinjing/hack2-contrib";
description = "Hack2 contrib";
license = stdenv.lib.licenses.bsd3;
@@ -50133,6 +51870,7 @@ self: {
homepage = "https://github.com/nfjinjing/hack2-contrib";
description = "Hack2 contrib extra";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack2-handler-happstack-server" = callPackage
@@ -50147,9 +51885,11 @@ self: {
base bytestring cgi containers data-default enumerator hack2
happstack-server mtl network
];
+ jailbreak = true;
homepage = "https://github.com/nfjinjing/hack2-handler-happstack-server";
description = "Hack2 Happstack server handler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack2-handler-mongrel2-http" = callPackage
@@ -50170,6 +51910,7 @@ self: {
homepage = "https://github.com/nfjinjing/hack2-handler-mongrel2-http";
description = "Hack2 Mongrel2 HTTP handler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack2-handler-snap-server" = callPackage
@@ -50205,6 +51946,7 @@ self: {
homepage = "https://github.com/nfjinjing/hack2-handler-warp";
description = "Hack2 warp handler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hack2-interface-wai" = callPackage
@@ -50223,6 +51965,7 @@ self: {
homepage = "https://github.com/nfjinjing/hack2-interface-wai";
description = "Hack2 interface of WAI";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hackage-db" = callPackage
@@ -50231,8 +51974,9 @@ self: {
}:
mkDerivation {
pname = "hackage-db";
- version = "1.11";
- sha256 = "14jjy3i5pjdcw2cx3n5ipg72zahvy9vh87vlcgnz44slw8av6dcq";
+ version = "1.22";
+ sha256 = "0rhh7w4929zkwzv10ika952yiw4dkffqd8f79f1bl76lz1la6cjd";
+ editedCabalFile = "b5277a8cbbfcfba81f29db4910003c2fa7e34c06bceb4f3e7318510e1ce74376";
buildDepends = [
base bytestring Cabal containers directory filepath tar utf8-string
];
@@ -50256,9 +52000,11 @@ self: {
ansi-terminal async attoparsec base Cabal cpphs directory filepath
haskell-src-exts HTTP mtl process text
];
+ jailbreak = true;
homepage = "https://github.com/blitzcode/hackage-diff";
description = "Compare the public API of different versions of a Hackage library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hackage-plot" = callPackage
@@ -50275,7 +52021,6 @@ self: {
base bytestring containers directory download-curl filepath gnuplot
old-locale old-time parsedate
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/~dons/code/hackage-plot";
description = "Generate cumulative graphs of hackage uploads";
license = stdenv.lib.licenses.bsd3;
@@ -50303,6 +52048,7 @@ self: {
homepage = "http://github.com/snoyberg/hackage-proxy";
description = "Provide a proxy for Hackage which modifies responses in some way. (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hackage-server" = callPackage
@@ -50338,13 +52084,10 @@ self: {
vector xml zlib
];
buildTools = [ alex happy ];
- configureFlags = [
- "-f-test-create-user" "-f-build-hackage-import"
- "-fbuild-hackage-build" "-fbuild-hackage-mirror"
- "-fbuild-hackage-server" "-f-debug" "-f-minimal"
- ];
+ jailbreak = true;
description = "The Hackage web server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hackage-sparks" = callPackage
@@ -50361,10 +52104,10 @@ self: {
base bytestring directory download filepath hsparklines old-locale
old-time parsedate tagsoup
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/~dons/code/hackage-sparks";
description = "Generate sparkline graphs of hackage statistics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hackage2hwn" = callPackage
@@ -50379,6 +52122,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/hackage2hwn";
description = "Convert Hackage RSS feeds to wiki format for publishing on Haskell.org";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hackage2twitter" = callPackage
@@ -50393,6 +52137,7 @@ self: {
homepage = "http://github.com/tomlokhorst/hackage2twitter";
description = "Send new Hackage releases to Twitter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hackager" = callPackage
@@ -50429,6 +52174,7 @@ self: {
testDepends = [ base hspec transformers ];
description = "API for Hacker News";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hackertyper" = callPackage
@@ -50467,7 +52213,6 @@ self: {
base bytestring containers deepseq directory extensible-exceptions
filepath HUnit mtl pretty process time unix xml
];
- configureFlags = [ "-fsplit-base" ];
description = "Hackage and Portage integration tool";
license = "GPL";
}) {};
@@ -50484,9 +52229,11 @@ self: {
base containers monad-control mtl resourcet stm stm-chans
transformers-base
];
+ jailbreak = true;
homepage = "https://github.com/Forkk/hactor";
description = "Lightweight Erlang-style actors for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hactors" = callPackage
@@ -50496,6 +52243,7 @@ self: {
version = "0.0.3.1";
sha256 = "0nxcl3v9gnnyjzdpk30m2pmrhwcva9rky2dxrj4nnkr67ajm2dj0";
buildDepends = [ base stm ];
+ jailbreak = true;
homepage = "https://github.com/treep/hactors";
description = "Practical actors for Haskell";
license = stdenv.lib.licenses.mit;
@@ -50513,7 +52261,6 @@ self: {
isExecutable = true;
buildDepends = [ base haddock-api ];
testDepends = [ base Cabal directory filepath process ];
- configureFlags = [ "-f-in-ghc-tree" ];
preCheck = "unset GHC_PACKAGE_PATH";
homepage = "http://www.haskell.org/haddock/";
description = "A documentation-generation tool for Haskell libraries";
@@ -50551,10 +52298,11 @@ self: {
buildDepends = [
array base Cabal containers directory filepath ghc ghc-paths pretty
];
- configureFlags = [ "-f-in-ghc-tree" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haddock/";
description = "A documentation-generation tool for Haskell libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haddock-library" = callPackage
@@ -50628,6 +52376,7 @@ self: {
protobuf socks stm text transformers unix unordered-containers
vector xmlhtml
];
+ jailbreak = true;
homepage = "http://github.com/jystic/hadoop-rpc";
description = "Use the Hadoop RPC interface from Haskell";
license = stdenv.lib.licenses.asl20;
@@ -50655,6 +52404,7 @@ self: {
attoparsec base bytestring hadoop-rpc tasty tasty-hunit
tasty-quickcheck vector
];
+ jailbreak = true;
homepage = "http://github.com/jystic/hadoop-tools";
description = "Fast command line tools for working with Hadoop";
license = stdenv.lib.licenses.asl20;
@@ -50701,6 +52451,7 @@ self: {
homepage = "http://github.com/tych0/haggis";
description = "A static site generator with blogging/comments support";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haha" = callPackage
@@ -50730,7 +52481,7 @@ self: {
http-client http-client-tls http-types tagsoup text time
transformers
];
- configureFlags = [ "-fnewtime" ];
+ jailbreak = true;
description = "Mailgun REST api interface for Haskell";
license = stdenv.lib.licenses.mit;
}) {};
@@ -50744,6 +52495,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring configurator hailgun text ];
+ jailbreak = true;
description = "A program to send emails throught the Mailgun api";
license = stdenv.lib.licenses.mit;
}) {};
@@ -50778,6 +52530,7 @@ self: {
test-framework-hunit test-framework-quickcheck2 text time unix wai
wai-test
];
+ jailbreak = true;
description = "Multi-app web platform framework";
license = stdenv.lib.licenses.mit;
broken = true;
@@ -50797,6 +52550,7 @@ self: {
base bson bytestring containers ghc-paths hails iterIO
iterio-server mongoDB mtl
];
+ jailbreak = true;
description = "Dynamic launcher of Hails applications";
license = stdenv.lib.licenses.gpl2;
}) {};
@@ -50821,9 +52575,11 @@ self: {
testDepends = [
base hspec http-types mtl persistent scotty time wai wai-extra
];
+ jailbreak = true;
homepage = "https://github.com/tfausak/hairy";
description = "A JSON REST API";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hakaru" = callPackage
@@ -50850,9 +52606,11 @@ self: {
statistics test-framework test-framework-hunit
test-framework-quickcheck2 vector
];
+ jailbreak = true;
homepage = "http://indiana.edu/~ppaml/";
description = "A probabilistic programming embedded DSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hake" = callPackage
@@ -50880,9 +52638,11 @@ self: {
version = "0.1";
sha256 = "1ddmnzan16vn0fbp1fgsidahayihhr0vw8saypdqq7lnhqw8j9d4";
buildDepends = [ base HTTP network ];
+ jailbreak = true;
homepage = "https://code.reaktor42.de/projects/hakismet";
description = "Akismet spam protection library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hako" = callPackage
@@ -50897,6 +52657,7 @@ self: {
base haskell-src-meta parsec template-haskell text transformers
];
testDepends = [ base QuickCheck ];
+ jailbreak = true;
description = "A mako-like quasi-quoter template library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -50933,9 +52694,6 @@ self: {
system-filepath tagsoup test-framework test-framework-hunit
test-framework-quickcheck2 text time
];
- configureFlags = [
- "-fcheckexternal" "-fwatchserver" "-fpreviewserver"
- ];
homepage = "http://jaspervdj.be/hakyll";
description = "A static website compiler library";
license = stdenv.lib.licenses.bsd3;
@@ -50965,8 +52723,10 @@ self: {
version = "0.1.1.0";
sha256 = "11dl3rqls2yxkmycx63xr1cix4adk6b29sbwr4v5n48bqamr7p1j";
buildDepends = [ base blaze-html blaze-markup hakyll ];
+ jailbreak = true;
description = "Blaze templates for Hakyll";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hakyll-contrib" = callPackage
@@ -50978,9 +52738,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base directory filepath hakyll pandoc ];
+ jailbreak = true;
homepage = "http://jaspervdj.be/hakyll";
description = "Extra modules for the hakyll website compiler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hakyll-contrib-hyphenation" = callPackage
@@ -51010,8 +52772,10 @@ self: {
testDepends = [
base binary QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
description = "A hakyll library that helps maintain a separate links database";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hakyll-convert" = callPackage
@@ -51041,9 +52805,11 @@ self: {
version = "0.2.1";
sha256 = "0bgwcxarsa40aylvg4cc7ha5y87xklkc4ifwd17l69l4xbb4iqpk";
buildDepends = [ base blaze-html blaze-markup Elm hakyll mtl ];
+ jailbreak = true;
homepage = "https://github.com/maxsnew/hakyll-elm";
description = "Hakyll wrapper for the Elm compiler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"halberd" = callPackage
@@ -51066,9 +52832,11 @@ self: {
haskell-src-exts HUnit mtl split tagged test-framework
test-framework-hunit
];
+ jailbreak = true;
homepage = "http://github.com/haskell-suite/halberd/";
description = "A tool to generate missing import statements for Haskell modules";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"half" = callPackage
@@ -51098,9 +52866,10 @@ self: {
array base bytestring cereal containers directory filepath
fingertree HFuse mtl QuickCheck random time unix
];
- configureFlags = [ "-fbuild-tests" ];
+ jailbreak = true;
description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"halipeto" = callPackage
@@ -51110,9 +52879,11 @@ self: {
version = "2.4.1";
sha256 = "1anyf6mh13rmj5a0lsayrcxzvm3zk0a2943pzkgz06y3aqgmcbdb";
buildDepends = [ base directory HaXml pandoc ];
+ jailbreak = true;
homepage = "http://github.com/peti/halipeto";
description = "Haskell Static Web Page Generator";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haltavista" = callPackage
@@ -51165,8 +52936,10 @@ self: {
base bytestring containers directory filepath Glob
preprocessor-tools
];
+ jailbreak = true;
description = "Haskell macro preprocessor";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hamtmap" = callPackage
@@ -51179,6 +52952,7 @@ self: {
homepage = "https://github.com/exclipy/pdata";
description = "A purely functional and persistent hash map";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hamusic" = callPackage
@@ -51195,9 +52969,11 @@ self: {
base containers directory filepath haskore HaXml musicxml
non-negative process
];
+ jailbreak = true;
homepage = "https://troglodita.di.uminho.pt/svn/musica/work/HaMusic";
description = "Library to handle abstract music";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"handa-gdata" = callPackage
@@ -51247,6 +53023,7 @@ self: {
buildDepends = [ base bytestring ];
description = "HandleLike class";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hangman" = callPackage
@@ -51277,10 +53054,6 @@ self: {
base blaze-html blaze-markup bytestring cereal containers
fingertree HTTP monadLib old-locale random time unix
];
- configureFlags = [
- "-f-word32-in-random" "-fweb-server" "-f-example" "-f-enable-tests"
- "-f-bounded-channels"
- ];
description = "IPv4 Network Stack";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -51304,6 +53077,7 @@ self: {
version = "0.1.0.0";
sha256 = "07jspsi8y921n5m5ar93w4gqaff4mjx79ss416ccm4s1k4l2km0b";
buildDepends = [ base bytestring hans pfq ];
+ jailbreak = true;
homepage = "https://github.com/tolysz/hans-pfq";
description = "Driver for real ethernet devices for HaNS";
license = stdenv.lib.licenses.bsd3;
@@ -51338,8 +53112,10 @@ self: {
buildDepends = [ array base bytestring containers glib gtk mtl ];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ appindicator ];
+ jailbreak = true;
description = "Binding to the appindicator library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { appindicator = null;};
"happindicator3" = callPackage
@@ -51352,10 +53128,10 @@ self: {
isExecutable = true;
buildDepends = [ base glib gtk3 text ];
pkgconfigDepends = [ appindicator ];
- configureFlags = [ "-f-demo" ];
homepage = "https://github.com/mlacorte/happindicator3";
description = "Binding to the appindicator library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { appindicator = null;};
"happraise" = callPackage
@@ -51369,6 +53145,7 @@ self: {
buildDepends = [ base directory filepath ];
description = "A small program for counting the comments in haskell source";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happs-hsp" = callPackage
@@ -51380,6 +53157,7 @@ self: {
sha256 = "0l1gb0qhhmld77qyz8qclbqxnv0hvyvjhav78690z50kvpjpqrxx";
buildDepends = [ base bytestring HAppS-Server hsp mtl plugins ];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happs-hsp-template" = callPackage
@@ -51396,6 +53174,7 @@ self: {
];
description = "Utilities for using HSP templates in HAppS applications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happs-tutorial" = callPackage
@@ -51418,9 +53197,10 @@ self: {
HStringTemplateHelpers HTTP mtl old-time parsec pretty pureMD5 safe
syb
];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
description = "A Happstack Tutorial that is its own web 2.0-type demo.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack" = callPackage
@@ -51432,7 +53212,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base happstack-server ];
- configureFlags = [ "-f-tests" "-fbase4" ];
+ jailbreak = true;
homepage = "http://happstack.com";
description = "The haskell application server stack + code generation";
license = stdenv.lib.licenses.bsd3;
@@ -51452,9 +53232,11 @@ self: {
happstack-ixset happstack-server happstack-state mtl old-time
random
];
+ jailbreak = true;
homepage = "http://n-sch.de/happstack-auth";
description = "A Happstack Authentication Suite";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-authenticate" = callPackage
@@ -51492,9 +53274,11 @@ self: {
base bytestring cereal clientsession happstack-server monad-control
mtl safecopy transformers-base
];
+ jailbreak = true;
homepage = "http://happstack.com";
description = "client-side session data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-contrib" = callPackage
@@ -51513,10 +53297,11 @@ self: {
happstack-server happstack-state happstack-util HTTP HUnit mtl
network old-time syb unix
];
- configureFlags = [ "-f-tests" "-fbase4" ];
+ jailbreak = true;
homepage = "http://happstack.com";
description = "Web related tools and services";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-data" = callPackage
@@ -51534,12 +53319,11 @@ self: {
base binary bytestring containers mtl pretty syb syb-with-class
syb-with-class-instances-text template-haskell text time
];
- configureFlags = [
- "-f-new-haxml" "-f-old-haxml" "-f-tests" "-fbase4"
- ];
+ jailbreak = true;
homepage = "http://happstack.com";
description = "Happstack data manipulation libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-dlg" = callPackage
@@ -51558,6 +53342,7 @@ self: {
homepage = "http://patch-tag.com/r/cdsmith/happstack-dlg";
description = "Cross-request user interactions for Happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-facebook" = callPackage
@@ -51582,10 +53367,10 @@ self: {
web-routes-mtl
];
buildTools = [ trhsx ];
- configureFlags = [ "-f-formlets" "-fbase4" ];
homepage = "http://src.seereason.com/happstack-facebook/";
description = "A package for building Facebook applications using Happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-fastcgi" = callPackage
@@ -51602,6 +53387,7 @@ self: {
];
description = "Happstack extension for use with FastCGI";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-fay" = callPackage
@@ -51615,9 +53401,11 @@ self: {
buildDepends = [
aeson base fay happstack-fay-ajax happstack-server mtl
];
+ jailbreak = true;
homepage = "http://www.happstack.com/";
description = "Support for using Fay with Happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-fay-ajax" = callPackage
@@ -51627,9 +53415,11 @@ self: {
version = "0.2.0";
sha256 = "0zdkvvmywnfvqg5jdvf29qczzxmprvspxj0r1vj46fd6vld53j4j";
buildDepends = [ fay-base fay-jquery ];
+ jailbreak = true;
homepage = "http://www.happstack.com/";
description = "Support for using Fay with Happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-foundation" = callPackage
@@ -51650,6 +53440,7 @@ self: {
homepage = "http://www.happstack.com/";
description = "Glue code for using Happstack with acid-state, web-routes, reform, and HSP";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-hamlet" = callPackage
@@ -51659,6 +53450,7 @@ self: {
version = "7.0.4";
sha256 = "1l12gyyqzblb9psk6692r9xw640jxzyxqldfyg2yrzz8y0zi649a";
buildDepends = [ base happstack-server shakespeare text ];
+ jailbreak = true;
homepage = "http://www.happstack.com/";
description = "Support for Hamlet HTML templates in Happstack";
license = stdenv.lib.licenses.bsd3;
@@ -51676,9 +53468,11 @@ self: {
base blaze-builder bytestring either filepath happstack-server
heist mtl text
];
+ jailbreak = true;
homepage = "http://www.happstack.com/";
description = "Support for using Heist templates in Happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-helpers" = callPackage
@@ -51700,10 +53494,11 @@ self: {
MissingH mtl network old-time parsec PBKDF2 pureMD5 random safe syb
text utf8-string
];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
homepage = "http://patch-tag.com/r/tphyahoo/HAppSHelpers/home";
description = "Convenience functions for Happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-hsp" = callPackage
@@ -51721,6 +53516,7 @@ self: {
homepage = "http://www.happstack.com/";
description = "Support for using HSP templates in Happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-hstringtemplate" = callPackage
@@ -51734,6 +53530,7 @@ self: {
buildDepends = [
base bytestring happstack-server hslogger HStringTemplate mtl
];
+ jailbreak = true;
homepage = "http://www.happstack.com/";
description = "Support for using HStringTemplate in Happstack";
license = stdenv.lib.licenses.bsd3;
@@ -51753,10 +53550,11 @@ self: {
base containers happstack-data happstack-util mtl syb
syb-with-class template-haskell
];
- configureFlags = [ "-f-tests" "-fbase4" ];
+ jailbreak = true;
homepage = "http://happstack.com";
description = "Efficient relational queries on Haskell sets";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-jmacro" = callPackage
@@ -51772,6 +53570,7 @@ self: {
base base64-bytestring bytestring cereal digest happstack-server
jmacro text utf8-string wl-pprint-text
];
+ jailbreak = true;
homepage = "http://www.happstack.com/";
description = "Support for using JMacro with Happstack";
license = stdenv.lib.licenses.bsd3;
@@ -51802,6 +53601,7 @@ self: {
];
description = "monad-peel instances for Happstack types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-plugins" = callPackage
@@ -51815,10 +53615,11 @@ self: {
buildDepends = [
base happstack-server mtl plugins-auto template-haskell th-lift
];
- configureFlags = [ "-f-tests" "-fbase4" ];
+ jailbreak = true;
homepage = "http://happstack.com";
description = "The haskell application server stack + reload";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-server" = callPackage
@@ -51841,7 +53642,6 @@ self: {
transformers transformers-base unix utf8-string xhtml zlib
];
testDepends = [ base bytestring containers HUnit parsec zlib ];
- configureFlags = [ "-fnetwork-uri" "-ftemplate_haskell" ];
homepage = "http://happstack.com";
description = "Web related tools and services";
license = stdenv.lib.licenses.bsd3;
@@ -51882,10 +53682,11 @@ self: {
filepath happstack-data happstack-util hslogger mtl old-time random
stm syb template-haskell unix
];
- configureFlags = [ "-f-replication" "-f-tests" "-fbase4" ];
+ jailbreak = true;
homepage = "http://happstack.com";
description = "Event-based distributed state";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-static-routing" = callPackage
@@ -51921,10 +53722,11 @@ self: {
hslogger mtl network old-locale old-time parsec process random
template-haskell time unix unix-compat
];
- configureFlags = [ "-f-tests" "-fbase4" ];
+ jailbreak = true;
homepage = "http://happstack.com";
description = "Web framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happstack-yui" = callPackage
@@ -51943,10 +53745,11 @@ self: {
template-haskell text web-routes web-routes-boomerang
web-routes-happstack web-routes-th
];
- configureFlags = [ "-f-embed" ];
+ jailbreak = true;
homepage = "http://hub.darcs.net/dag/yui/browse/happstack-yui";
description = "Utilities for using YUI3 with Happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happy" = callPackage
@@ -51961,7 +53764,6 @@ self: {
buildDepends = [ array base containers mtl ];
testDepends = [ base process ];
buildTools = [ perl ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://www.haskell.org/happy/";
description = "Happy is a parser generator for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -51995,9 +53797,11 @@ self: {
aeson base filepath http-types lifted-base monad-control mtl text
time transformers transformers-base
];
+ jailbreak = true;
homepage = "https://github.com/cstrahan/happybara";
description = "Acceptance test framework for web applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happybara-webkit" = callPackage
@@ -52015,9 +53819,11 @@ self: {
filepath happybara http-types lifted-base monad-control mtl network
process text time transformers transformers-base vector word8
];
+ jailbreak = true;
homepage = "https://github.com/cstrahan/happybara/happybara-webkit";
description = "WebKit Happybara driver";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"happybara-webkit-server" = callPackage
@@ -52027,9 +53833,11 @@ self: {
version = "0.0.1";
sha256 = "0vh9ig9mvg12qgysk7gbqwiib3m2ciwi10asb1i0x25xjp585shi";
buildDepends = [ base directory filepath process ];
+ jailbreak = true;
homepage = "https://github.com/cstrahan/happybara/happybara-webkit-server";
description = "WebKit Server binary for Happybara (taken from capybara-webkit)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"harchive" = callPackage
@@ -52047,6 +53855,7 @@ self: {
homepage = "http://www.davidb.org/darcs/harchive/";
description = "Networked content addressed backup and restore software";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) openssl; inherit (pkgs) sqlite;};
"hark" = callPackage
@@ -52066,6 +53875,7 @@ self: {
homepage = "http://code.google.com/p/hark/";
description = "A Gentoo package query tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haroonga" = callPackage
@@ -52080,8 +53890,10 @@ self: {
base bindings-DSL monad-control resourcet transformers
];
pkgconfigDepends = [ groonga ];
+ jailbreak = true;
description = "Low level bindings for Groonga";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { groonga = null;};
"harp" = callPackage
@@ -52111,6 +53923,7 @@ self: {
homepage = "http://code.haskell.org/harpy/";
description = "Runtime code generation for x86 machine code";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"has" = callPackage
@@ -52122,10 +53935,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base QuickCheck ];
- configureFlags = [ "-f-test" ];
homepage = "http://github.com/nonowarn/has";
description = "Entity based records";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"has-th" = callPackage
@@ -52138,6 +53951,7 @@ self: {
homepage = "http://github.com/chrisdone/has-th";
description = "Template Haskell function for Has records";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hascal" = callPackage
@@ -52153,6 +53967,7 @@ self: {
homepage = "http://darcsden.com/mekeor/hascal";
description = "A minimalistic but extensible and precise calculator";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hascat" = callPackage
@@ -52169,8 +53984,10 @@ self: {
base bytestring hascat-lib hascat-setup hascat-system HaXml haxr
html HTTP network unix
];
+ jailbreak = true;
description = "Hascat Web Server";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hascat-lib" = callPackage
@@ -52186,8 +54003,10 @@ self: {
base bytestring containers directory haskell98 HaXml html HTTP mtl
network old-locale old-time parsec plugins xhtml
];
+ jailbreak = true;
description = "Hascat Package";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hascat-setup" = callPackage
@@ -52205,6 +54024,7 @@ self: {
];
description = "Hascat Installation helper";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hascat-system" = callPackage
@@ -52219,8 +54039,10 @@ self: {
base bytestring containers hascat-lib HaXml HTTP mtl network
old-time parsec plugins unix
];
+ jailbreak = true;
description = "Hascat System Package";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hash" = callPackage
@@ -52237,10 +54059,11 @@ self: {
lens transformers
];
testDepends = [ base directory doctest filepath ];
- configureFlags = [ "-f-lib-werror" "-ftest-doctests" ];
+ jailbreak = true;
homepage = "http://github.com/analytics/hash/";
description = "Hashing tools";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hashable" = callPackage
@@ -52257,7 +54080,6 @@ self: {
base bytestring ghc-prim HUnit QuickCheck random test-framework
test-framework-hunit test-framework-quickcheck2 text unix
];
- configureFlags = [ "-f-sse41" "-fsse2" "-finteger-gmp" ];
homepage = "http://github.com/tibbe/hashable";
description = "A class for types that can be converted to a hash value";
license = stdenv.lib.licenses.bsd3;
@@ -52275,7 +54097,6 @@ self: {
base bifunctors bytestring generic-deriving hashable transformers
];
testDepends = [ base directory doctest filepath ];
- configureFlags = [ "-f-lib-werror" "-ftest-doctests" ];
homepage = "http://github.com/analytics/hashable-extras/";
description = "Higher-rank Hashable";
license = stdenv.lib.licenses.bsd3;
@@ -52294,9 +54115,11 @@ self: {
base ghc-prim hashable QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/wowus/hashable-generics";
description = "Automatically generates Hashable instances with GHC.Generics.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hashed-storage" = callPackage
@@ -52313,7 +54136,6 @@ self: {
base binary bytestring containers dataenc directory
extensible-exceptions filepath mmap mtl zlib
];
- configureFlags = [ "-f-hpc" "-f-diff" "-f-test" ];
description = "Hashed file storage support code";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -52325,7 +54147,6 @@ self: {
version = "1.3.0.1";
sha256 = "16scl1rbq0f18mggrj4lbhgkz7kzshsw9a523rjd8cjkdjz1ijwr";
buildDepends = [ base containers deepseq hashable ];
- configureFlags = [ "-f-oldcontainers" ];
homepage = "http://git.auryn.cz/haskell/hashmap/";
description = "Persistent containers Map and Set based on hashing";
license = stdenv.lib.licenses.bsd3;
@@ -52343,6 +54164,7 @@ self: {
testDepends = [
base QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/mkscrg/hashring";
description = "Efficient consistent hashing";
license = stdenv.lib.licenses.bsd3;
@@ -52355,10 +54177,6 @@ self: {
version = "1.2.0.2";
sha256 = "0dqq5ssgkqzplqf5dmc4l8cj28j5py7i6n6a069qn4cibvxfjaq1";
buildDepends = [ base ghc-prim hashable primitive vector ];
- configureFlags = [
- "-f-portable" "-f-sse42" "-f-debug" "-f-bounds-checking"
- "-funsafe-tricks"
- ];
homepage = "http://github.com/gregorycollins/hashtables";
description = "Mutable hash tables in the ST monad";
license = stdenv.lib.licenses.bsd3;
@@ -52372,6 +54190,7 @@ self: {
version = "0.2.0";
sha256 = "0g9jmc15g36iy0wmmsj74qwybh509j4lf8jzv3dws7c2j24kc7l7";
buildDepends = [ base hashable hashtables loch-th placeholders ];
+ jailbreak = true;
homepage = "https://github.com/nikita-volkov/hashtables-plus";
description = "Extensions for a \"hashtables\" library";
license = stdenv.lib.licenses.mit;
@@ -52384,10 +54203,10 @@ self: {
version = "0.1.2";
sha256 = "03wn142r0sh7adfghjqwb2mgq4rgkqs8nq2rx2jq717dr2xp987n";
buildDepends = [ base containers mtl ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://huygens.functor.nl/hasim/";
description = "Process-Based Discrete Event Simulation library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hask" = callPackage
@@ -52402,10 +54221,10 @@ self: {
buildDepends = [
base constraints ghc-prim reflection tagged transformers void
];
- configureFlags = [ "-f-optimize" ];
homepage = "http://github.com/ekmett/hask";
description = "Categories";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hask-home" = callPackage
@@ -52425,6 +54244,7 @@ self: {
homepage = "http://gregheartsfield.com/hask-home";
description = "Generate homepages for cabal packages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskades" = callPackage
@@ -52462,6 +54282,7 @@ self: {
homepage = "http://github.com/cosbynator/haskakafka";
description = "Kafka bindings for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { rdkafka = null;};
"haskanoid" = callPackage
@@ -52478,10 +54299,11 @@ self: {
base freenect hcwiid IfElse MissingH mtl SDL SDL-image SDL-mixer
SDL-ttf transformers vector Yampa
];
- configureFlags = [ "-fkinect" "-fwiimote" ];
+ jailbreak = true;
homepage = "http://github.com/ivanperez-keera/haskanoid";
description = "A breakout game written in Yampa using SDL";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskarrow" = callPackage
@@ -52499,6 +54321,7 @@ self: {
];
description = "A dialect of haskell with order of execution based on dependency resolution";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskbot-core" = callPackage
@@ -52517,6 +54340,7 @@ self: {
aeson base bytestring connection containers hspec http-conduit
http-types monads-tf stm text wai warp
];
+ jailbreak = true;
homepage = "https://github.com/jonplussed/haskbot-core";
description = "Easily-extensible chatbot for Slack messaging service";
license = stdenv.lib.licenses.mit;
@@ -52542,9 +54366,11 @@ self: {
optparse-applicative regex-tdfa regex-tdfa-text system-fileio
system-filepath text time
];
+ jailbreak = true;
homepage = "https://github.com/maurotrb/haskdeep";
description = "Computes and audits file hashes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskdogs" = callPackage
@@ -52578,6 +54404,7 @@ self: {
homepage = "http://www.korgwal.com/haskeem/";
description = "A small scheme interpreter";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskeline_0_7_1_3" = callPackage
@@ -52592,9 +54419,7 @@ self: {
base bytestring containers directory filepath terminfo transformers
unix utf8-string
];
- configureFlags = [
- "-fterminfo" "-f-legacy-encoding" "-f-libiconv" "-fterminfo"
- ];
+ configureFlags = [ "-fterminfo" ];
homepage = "http://trac.haskell.org/haskeline";
description = "A command-line interface for user input, written in Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -52607,9 +54432,11 @@ self: {
version = "0.6.2";
sha256 = "0xgdq2xgw2ccyfzkj5n36s5n6km5l947d2iy4y1qms8kbc05zmfl";
buildDepends = [ base haskeline mtl ];
+ jailbreak = true;
homepage = "http://community.haskell.org/~aslatter/code/haskeline-class";
description = "Class interface for working with Haskeline";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-aliyun" = callPackage
@@ -52633,6 +54460,7 @@ self: {
homepage = "https://github.com/yihuang/haskell-aliyun/";
description = "haskell client of aliyun service";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-awk" = callPackage
@@ -52660,8 +54488,10 @@ self: {
stringsearch temporary test-framework test-framework-hunit time
transformers
];
+ jailbreak = true;
description = "Transform text from the command-line using Haskell expressions";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-bcrypt" = callPackage
@@ -52674,6 +54504,7 @@ self: {
homepage = "http://www.github.com/zbskii/haskell-bcrypt";
description = "A bcrypt implementation for haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-brainfuck" = callPackage
@@ -52690,8 +54521,10 @@ self: {
testDepends = [
base bytestring mtl QuickCheck tasty tasty-quickcheck tasty-th
];
+ jailbreak = true;
description = "BrainFuck interpreter";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-cnc" = callPackage
@@ -52712,6 +54545,7 @@ self: {
homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/";
description = "Library for parallel programming in the Intel Concurrent Collections paradigm";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-coffee" = callPackage
@@ -52721,6 +54555,7 @@ self: {
version = "0.1.0.1";
sha256 = "0g95vhqga7hq6w6x993d29wpphcqidmm0vzni93blqka7yfc7ybb";
buildDepends = [ base process ];
+ jailbreak = true;
description = "Simple CoffeeScript API";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -52766,9 +54601,11 @@ self: {
ghc-paths haddock monad-loops text unordered-containers
];
testDepends = [ base ];
+ jailbreak = true;
homepage = "http://github.com/chrisdone/haskell-docs";
description = "A program to find and display the docs and type of a name";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-formatter" = callPackage
@@ -52791,9 +54628,11 @@ self: {
base containers directory-tree doctest filemanip filepath hlint
tasty tasty-hunit
];
+ jailbreak = true;
homepage = "https://github.com/evolutics/haskell-formatter";
description = "Haskell source code formatter";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-ftp" = callPackage
@@ -52813,9 +54652,11 @@ self: {
lifted-base monad-control network network-conduit process-conduit
system-filepath text transformers transformers-base unix
];
+ jailbreak = true;
homepage = "https://github.com/yihuang/haskell-ftp";
description = "A Haskell ftp server with configurable backend";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-generate" = callPackage
@@ -52824,14 +54665,14 @@ self: {
}:
mkDerivation {
pname = "haskell-generate";
- version = "0.2.2";
- sha256 = "1wdfs28p195szg6jxq0qbyj4jdbqnsp9frgjnp25mzf14y9i1yid";
+ version = "0.2.3";
+ sha256 = "07j0z9jxxgbxfxz9bpy5w8nphrqsl5wyq1jysfhypfi7v87nv9an";
buildDepends = [
base containers haskell-src-exts template-haskell transformers
];
testDepends = [ base directory doctest filepath ];
homepage = "http://github.com/bennofs/haskell-generate/";
- description = "haskell-generate";
+ description = "Typesafe generation of haskell source code";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -52875,7 +54716,7 @@ self: {
"haskell-mpi" = callPackage
({ mkDerivation, array, base, bytestring, c2hs, cereal
- , extensible-exceptions, mpi
+ , extensible-exceptions, openmpi
}:
mkDerivation {
pname = "haskell-mpi";
@@ -52887,12 +54728,12 @@ self: {
array base bytestring cereal extensible-exceptions
];
buildTools = [ c2hs ];
- extraLibraries = [ mpi ];
- configureFlags = [ "-f-mpich14" "-f-test" ];
+ extraLibraries = [ openmpi ];
homepage = "http://github.com/bjpop/haskell-mpi";
description = "Distributed parallel programming in Haskell using MPI";
license = stdenv.lib.licenses.bsd3;
- }) { mpi = null;};
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) { inherit (pkgs) openmpi;};
"haskell-names" = callPackage
({ mkDerivation, aeson, base, bytestring, Cabal, containers
@@ -52945,9 +54786,11 @@ self: {
test-framework-quickcheck2 test-framework-th text transformers
transformers-base unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/asilvestre/haskell-neo4j-rest-client";
description = "A Haskell neo4j client";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-openflow" = callPackage
@@ -52961,6 +54804,7 @@ self: {
homepage = "https://github.com/brooksbp/haskell-openflow";
description = "OpenFlow protocol in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-packages" = callPackage
@@ -52997,9 +54841,11 @@ self: {
base bytestring cairo containers directory filepath glib gtk
old-locale poppler template-haskell time zlib
];
+ jailbreak = true;
homepage = "http://michaeldadams.org/projects/haskell-pdf-presenter/";
description = "Tool for presenting PDF-based presentations";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-platform-test" = callPackage
@@ -53026,9 +54872,11 @@ self: {
zlib
];
buildTools = [ alex happy ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~dons/code/haskell-platform-test";
description = "A test system for the Haskell Platform environment";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-plot" = callPackage
@@ -53046,6 +54894,7 @@ self: {
homepage = "https://github.com/kaizhang/haskell-plot";
description = "A library for generating 2D plots painlessly";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-qrencode" = callPackage
@@ -53075,6 +54924,19 @@ self: {
];
description = "Reflect Haskell types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "haskell-rules" = callPackage
+ ({ mkDerivation, base, syb }:
+ mkDerivation {
+ pname = "haskell-rules";
+ version = "0.1.0.1";
+ sha256 = "03d8c1gnxd923f3fqqw06w3ibnd20llfgd7s5jgkscc872i5ghz6";
+ buildDepends = [ base syb ];
+ description = "A DSL for expressing natural deduction rules in Haskell";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-spacegoo" = callPackage
@@ -53091,6 +54953,7 @@ self: {
];
description = "Client API for Rocket Scissor Spacegoo";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-src" = callPackage
@@ -53101,7 +54964,6 @@ self: {
sha256 = "1vscvbsly7k0zqb7fi6bm38dfacyl8qgmv0h25fqkn95c0v5dif7";
buildDepends = [ array base pretty syb ];
buildTools = [ happy ];
- configureFlags = [ "-fsplit-base" ];
description = "Support for manipulating Haskell source code";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -53169,8 +55031,10 @@ self: {
base containers ghc-prim haskell-src-exts pretty syb
template-haskell
];
+ jailbreak = true;
description = "Parse source to template-haskell abstract syntax";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-token-utils" = callPackage
@@ -53195,6 +55059,7 @@ self: {
homepage = "https://github.com/alanz/haskell-token-utils";
description = "Utilities to tie up tokens to an AST";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-type-exts" = callPackage
@@ -53204,10 +55069,10 @@ self: {
version = "0.1.0";
sha256 = "051lsg9j3dgkr2akannfaddawdhybvsnm6x6xafmdmwn31v73z98";
buildDepends = [ base containers haskell-src-exts pretty ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/haskell-type-exts";
description = "A type checker for Haskell/haskell-src-exts";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-typescript" = callPackage
@@ -53217,6 +55082,7 @@ self: {
version = "0.1.0.0";
sha256 = "0fv533nac6dlawgffr1kvn4xpv63hdcb4wgyqbbg2s6dg9a2hw38";
buildDepends = [ base process ];
+ jailbreak = true;
description = "Simple TypeScript API";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -53231,6 +55097,7 @@ self: {
homepage = "https://github.com/PeterScott/haskell-tyrant";
description = "Haskell implementation of the Tokyo Tyrant binary protocol";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell-updater" = callPackage
@@ -53265,10 +55132,10 @@ self: {
array base HaXml html mtl network polyparse pretty random
regex-compat stm utf8-string
];
- configureFlags = [ "-f-debug" "-f-examples" ];
homepage = "http://patch-tag.com/r/adept/haskell-xmpp/home";
description = "Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskell2010_1_1_2_0" = callPackage
@@ -53310,7 +55177,7 @@ self: {
buildDepends = [
array base directory old-locale old-time process time
];
- configureFlags = [ "-futctime-in-directory" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/definition/";
description = "Compatibility with Haskell 98";
license = stdenv.lib.licenses.bsd3;
@@ -53420,9 +55287,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base haskell98 haskelldb mtl plugins ];
+ jailbreak = true;
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for the dynamically loaded drivers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskelldb-flat" = callPackage
@@ -53438,7 +55307,7 @@ self: {
buildDepends = [
base containers directory haskelldb mtl old-time
];
- configureFlags = [ "-fsplit-base" ];
+ jailbreak = true;
homepage = "https://github.com/m4dc4p/haskelldb";
description = "An experimental HaskellDB back-end in pure Haskell (no SQL)";
license = stdenv.lib.licenses.bsd3;
@@ -53473,8 +55342,10 @@ self: {
buildDepends = [
base haskelldb haskelldb-hdbc HDBC HDBC-mysql mtl
];
+ jailbreak = true;
description = "HaskellDB support for the HDBC MySQL driver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskelldb-hdbc-odbc" = callPackage
@@ -53539,10 +55410,11 @@ self: {
version = "1.0.0";
sha256 = "0j1aqix21pqcsw7skl897pd1ir6hg836g4zb2h5338h4gih6blx0";
buildDepends = [ base haskelldb hsql mtl old-time ];
- configureFlags = [ "-fsplit-base" ];
+ jailbreak = true;
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for HSQL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskelldb-hsql-mysql" = callPackage
@@ -53558,9 +55430,11 @@ self: {
buildDepends = [
base haskelldb haskelldb-hsql hsql hsql-mysql mtl
];
+ jailbreak = true;
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for the HSQL MySQL driver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskelldb-hsql-odbc" = callPackage
@@ -53576,9 +55450,11 @@ self: {
buildDepends = [
base haskelldb haskelldb-hsql hsql hsql-odbc mtl
];
+ jailbreak = true;
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for the HSQL ODBC driver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskelldb-hsql-oracle" = callPackage
@@ -53594,6 +55470,7 @@ self: {
buildDepends = [
base haskelldb haskelldb-hsql hsql hsql-oracle mtl
];
+ jailbreak = true;
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for the HSQL Oracle driver";
license = stdenv.lib.licenses.bsd3;
@@ -53613,9 +55490,11 @@ self: {
buildDepends = [
base haskelldb haskelldb-hsql hsql hsql-postgresql mtl
];
+ jailbreak = true;
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for the HSQL PostgreSQL driver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskelldb-hsql-sqlite" = callPackage
@@ -53631,6 +55510,7 @@ self: {
buildDepends = [
base haskelldb haskelldb-hsql hsql hsql-sqlite mtl
];
+ jailbreak = true;
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for the HSQL SQLite driver";
license = stdenv.lib.licenses.bsd3;
@@ -53650,9 +55530,11 @@ self: {
buildDepends = [
base haskelldb haskelldb-hsql hsql hsql-sqlite3 mtl
];
+ jailbreak = true;
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for the HSQL SQLite3 driver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskelldb-th" = callPackage
@@ -53662,6 +55544,7 @@ self: {
version = "2.1.0";
sha256 = "12whvz0qy9lqk1frfl5px9lhr1nwy519vj2z9c3g8nqjzscwzayb";
buildDepends = [ base haskelldb mtl template-haskell ];
+ jailbreak = true;
homepage = "http://trac.haskell.org/haskelldb-th";
description = "Template Haskell utilities for HaskellDB";
license = stdenv.lib.licenses.bsd3;
@@ -53676,6 +55559,7 @@ self: {
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for WXHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskellscrabble" = callPackage
@@ -53700,6 +55584,7 @@ self: {
homepage = "http://www.github.com/happy0/haskellscrabble";
description = "A scrabble library capturing the core game logic of scrabble";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskelm" = callPackage
@@ -53728,6 +55613,7 @@ self: {
homepage = "http://github.com/JoeyEremondi/haskelm";
description = "Elm to Haskell translation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskgame" = callPackage
@@ -53740,6 +55626,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/HaskGame";
description = "Haskell game library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskheap" = callPackage
@@ -53754,9 +55641,11 @@ self: {
aeson base bytestring http-conduit http-types network old-locale
text time unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/Raynes/haskheap";
description = "Haskell bindings to refheap";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskhol-core" = callPackage
@@ -53773,6 +55662,7 @@ self: {
homepage = "haskhol.org";
description = "The core logical system of HaskHOL, an EDSL for HOL theorem proving";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskintex" = callPackage
@@ -53807,8 +55697,10 @@ self: {
aeson base bytestring containers http-streams io-streams old-locale
time vector
];
+ jailbreak = true;
description = "A haskell wrapper for PokeAPI.co (www.pokeapi.co)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskoin" = callPackage
@@ -53830,7 +55722,7 @@ self: {
deepseq either HUnit json-rpc mtl pbkdf QuickCheck split
test-framework test-framework-hunit test-framework-quickcheck2 text
];
- configureFlags = [ "-f-testnet" ];
+ jailbreak = true;
homepage = "http://github.com/haskoin/haskoin";
description = "Implementation of the Bitcoin protocol";
license = stdenv.lib.licenses.publicDomain;
@@ -53854,6 +55746,7 @@ self: {
HUnit mtl QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://github.com/plaprade/haskoin-crypto";
description = "Implementation of Bitcoin cryptographic primitives";
license = stdenv.lib.licenses.publicDomain;
@@ -53875,6 +55768,7 @@ self: {
base binary bytestring haskoin-crypto haskoin-util HUnit QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://github.com/plaprade/haskoin-protocol";
description = "Implementation of the Bitcoin network protocol messages";
license = stdenv.lib.licenses.publicDomain;
@@ -53898,6 +55792,7 @@ self: {
HUnit mtl QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://github.com/plaprade/haskoin-script";
description = "Implementation of Bitcoin script parsing and evaluation";
license = stdenv.lib.licenses.publicDomain;
@@ -53917,6 +55812,7 @@ self: {
base binary bytestring containers either HUnit mtl QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://github.com/plaprade/haskoin-util";
description = "Utility functions for the Network.Haskoin project";
license = stdenv.lib.licenses.publicDomain;
@@ -53949,9 +55845,11 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2 text
time unordered-containers vector yaml
];
+ jailbreak = true;
homepage = "http://github.com/plaprade/haskoin-wallet";
description = "Implementation of a Bitcoin hierarchical deterministric wallet (BIP32)";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskoon" = callPackage
@@ -53969,6 +55867,7 @@ self: {
];
description = "Web Application Abstraction";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskoon-httpspec" = callPackage
@@ -53984,6 +55883,7 @@ self: {
];
description = "Integrating HttpSpec with Haskoon";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskoon-salvia" = callPackage
@@ -54001,6 +55901,7 @@ self: {
];
description = "Integrating HttpSpec with Haskoon";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskore" = callPackage
@@ -54019,7 +55920,6 @@ self: {
haskell-src markov-chain midi non-negative parsec process random
transformers utility-ht
];
- configureFlags = [ "-f-buildtests" "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Haskore";
description = "The Haskore Computer Music System";
license = "GPL";
@@ -54038,7 +55938,6 @@ self: {
base bytestring data-accessor directory event-list haskore midi
non-negative old-time process transformers unix utility-ht
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Haskore/";
description = "Routines for realtime playback of Haskore songs";
license = "GPL";
@@ -54061,10 +55960,11 @@ self: {
haskore-realtime hosc hsc3 non-negative opensoundcontrol-ht process
random supercollider-ht transformers unix utility-ht
];
- configureFlags = [ "-f-buildtests" "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/SuperCollider";
description = "Haskore back-end for SuperCollider";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskore-synthesizer" = callPackage
@@ -54082,10 +55982,11 @@ self: {
base data-accessor event-list haskore non-negative numeric-prelude
random synthesizer-core utility-ht
];
- configureFlags = [ "-f-buildexamples" "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Music rendering coded in Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haskore-vintage" = callPackage
@@ -54113,7 +56014,6 @@ self: {
buildDepends = [
base bytestring directory filepath json unix utf8-string
];
- configureFlags = [ "-f-debug" ];
homepage = "http://github.com/MarcWeber/hasktags";
description = "Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs";
license = stdenv.lib.licenses.bsd3;
@@ -54130,6 +56030,7 @@ self: {
buildDepends = [ base mtl old-time QuickCheck time wtk ];
description = "Loan calculator engine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hasloGUI" = callPackage
@@ -54148,6 +56049,7 @@ self: {
];
description = "Loan calculator Gtk GUI. Based on haslo (Haskell Loan) library.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hasparql-client" = callPackage
@@ -54160,6 +56062,7 @@ self: {
homepage = "https://github.com/lhpaladin/HaSparql-Client";
description = "This package enables to write SPARQL queries to remote endpoints";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haspell" = callPackage
@@ -54197,6 +56100,7 @@ self: {
homepage = "https://github.com/nikita-volkov/hasql";
description = "A minimalistic general high level API for relational databases";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hasql-backend" = callPackage
@@ -54214,10 +56118,11 @@ self: {
homepage = "https://github.com/nikita-volkov/hasql-backend";
description = "API for backends of \"hasql\"";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hasql-postgres" = callPackage
- ({ mkDerivation, attoparsec, base, base-prelude, bytestring
+ ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring
, directory, doctest, either, filepath, free, hashable, hashtables
, hasql, hasql-backend, hspec, list-t, loch-th, mmorph, mtl-prelude
, old-locale, placeholders, postgresql-binary, postgresql-libpq
@@ -54226,23 +56131,24 @@ self: {
}:
mkDerivation {
pname = "hasql-postgres";
- version = "0.10.1";
- sha256 = "1n3gcdv0d1pw3jnwldhkj8p23mx18slp8fyjlygpgivgmb8921ah";
+ version = "0.10.2";
+ sha256 = "0nw1xq9wfdhcm40qfx8d883nvgk7bfhwbwwb1r9jx7zlspx15vq5";
buildDepends = [
- attoparsec base base-prelude bytestring either free hashable
+ aeson attoparsec base base-prelude bytestring either free hashable
hashtables hasql-backend list-t loch-th mmorph placeholders
postgresql-binary postgresql-libpq scientific template-haskell text
time transformers uuid vector
];
testDepends = [
- base base-prelude bytestring directory doctest either filepath
- hashable hasql hasql-backend hspec list-t mtl-prelude old-locale
- postgresql-binary QuickCheck quickcheck-instances scientific text
- time vector
+ aeson base base-prelude bytestring directory doctest either
+ filepath hashable hasql hasql-backend hspec list-t mtl-prelude
+ old-locale postgresql-binary QuickCheck quickcheck-instances
+ scientific text time vector
];
homepage = "https://github.com/nikita-volkov/hasql-postgres";
description = "A \"PostgreSQL\" backend for the \"hasql\" library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hasql-postgres-options" = callPackage
@@ -54259,6 +56165,7 @@ self: {
homepage = "https://github.com/nikita-volkov/hasql-postgres-options";
description = "An \"optparse-applicative\" parser for \"hasql-postgres\"";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hastache" = callPackage
@@ -54295,9 +56202,11 @@ self: {
aeson attoparsec base bytestring containers hastache text
unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/proger/hastache-aeson";
description = "render hastache templates using aeson values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haste" = callPackage
@@ -54309,6 +56218,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base curl filepath mtl ];
+ jailbreak = true;
description = "A universal pastebin tool, written in Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -54333,9 +56243,7 @@ self: {
random shellmate system-fileio tar transformers utf8-string
websockets
];
- configureFlags = [
- "-fportable" "-f-only-library" "-f-static" "-fportable"
- ];
+ configureFlags = [ "-fportable" ];
homepage = "http://haste-lang.org/";
description = "Haskell To ECMAScript compiler";
license = stdenv.lib.licenses.bsd3;
@@ -54349,6 +56257,7 @@ self: {
version = "0.0.1.0";
sha256 = "02rqm4qjaww2c622bqd1bb2mjb73w2s7d7pwvz94x03npxkf4hn1";
buildDepends = [ base containers directory filepath haste-lib ];
+ jailbreak = true;
homepage = "http://github.com/ajnsit/haste-markup";
description = "A port of blaze-markup and blaze-html to Haste";
license = stdenv.lib.licenses.mit;
@@ -54362,10 +56271,10 @@ self: {
version = "0.1.0.7";
sha256 = "0qikaiqk408x90p1wqz0p7jc2ri4raqnl4d50x3g5abqj2y1h93n";
buildDepends = [ base haste-compiler transformers ];
- configureFlags = [ "-f-haste-inst" ];
homepage = "https://github.com/agocorona/haste-perch";
description = "Create, navigate and modify the DOM tree with composable syntax, with the haste compiler";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hat" = callPackage
@@ -54386,6 +56295,7 @@ self: {
homepage = "http://projects.haskell.org/hat/";
description = "The Haskell tracer, generating and viewing Haskell execution traces";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hatex-guide" = callPackage
@@ -54402,6 +56312,7 @@ self: {
];
description = "HaTeX User's Guide";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hath" = callPackage
@@ -54465,6 +56376,7 @@ self: {
homepage = "http://d.hatena.ne.jp/xanxys/20100321/1269137834";
description = "A twitter client for GTK+. Beta version.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haxl" = callPackage
@@ -54484,6 +56396,7 @@ self: {
aeson base bytestring containers hashable HUnit text
unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/facebook/Haxl";
description = "A Haskell library for efficient, concurrent, and concise data access";
license = stdenv.lib.licenses.bsd3;
@@ -54507,6 +56420,7 @@ self: {
http-client-tls http-conduit resourcet text time transformers
unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/facebook/Haxl";
description = "An example Haxl data source for accessing the Facebook Graph API";
license = stdenv.lib.licenses.bsd3;
@@ -54528,9 +56442,11 @@ self: {
mtl optparse-applicative parsec split template-haskell transformers
utf8-string zlib
];
+ jailbreak = true;
homepage = "https://github.com/joelteon/haxparse";
description = "Readable HaxBall replays";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"haxr" = callPackage
@@ -54548,7 +56464,6 @@ self: {
mtl network network-uri old-locale old-time template-haskell time
utf8-string
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://www.haskell.org/haskellwiki/HaXR";
description = "XML-RPC client and server library";
license = stdenv.lib.licenses.bsd3;
@@ -54561,6 +56476,7 @@ self: {
version = "3000.5";
sha256 = "1h1g4r7c5k3rja49ip4m21f2sscn06xjxharnlyazvvs6mzfysif";
buildDepends = [ base haxr template-haskell ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haxr/";
description = "Automatic deriving of XML-RPC structs for Haskell records";
license = stdenv.lib.licenses.bsd3;
@@ -54582,6 +56498,7 @@ self: {
homepage = "http://github.com/achudnov/haxy";
description = "A simple HTTP proxy server library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hayland" = callPackage
@@ -54603,6 +56520,7 @@ self: {
];
description = "Haskell bindings for the C Wayland library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { wayland-client = null; wayland-cursor = null;
wayland-egl = null; wayland-server = null;};
@@ -54620,6 +56538,7 @@ self: {
aeson base bytestring http-conduit http-types optparse-applicative
pandoc url
];
+ jailbreak = true;
homepage = "https://github.com/Gonzih/hayoo-cli";
description = "Hayoo CLI";
license = stdenv.lib.licenses.mit;
@@ -54638,10 +56557,10 @@ self: {
buildDepends = [
base cairo filepath glade gtk haskell98 process svgcairo time unix
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://hback.googlecode.com/";
description = "N-back memory game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hbayes" = callPackage
@@ -54660,7 +56579,6 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2
vector
];
- configureFlags = [ "-f-profile" "-f-local" ];
homepage = "http://www.alpheccar.org";
description = "Bayesian Networks";
license = stdenv.lib.licenses.bsd3;
@@ -54676,9 +56594,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base directory ghc ghc-mod ghc-paths libhbb ];
+ jailbreak = true;
homepage = "https://bitbucket.org/bhris/hbb";
description = "Haskell Busy Bee, a backend for text editors";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hbcd" = callPackage
@@ -54725,6 +56645,7 @@ self: {
homepage = "http://www.dockerz.net/software/hbeat.html";
description = "A simple step sequencer GUI";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) SDL; inherit (pkgs) SDL_mixer;};
"hblas" = callPackage
@@ -54738,10 +56659,11 @@ self: {
buildDepends = [ base primitive storable-complex vector ];
testDepends = [ base HUnit tasty tasty-hunit vector ];
extraLibraries = [ blas lapack ];
- configureFlags = [ "-f-cblas" "-f-openblas" ];
+ jailbreak = true;
homepage = "http://github.com/wellposed/hblas/";
description = "Human friendly BLAS and Lapack bindings for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) blas; lapack = null;};
"hblock" = callPackage
@@ -54757,8 +56679,10 @@ self: {
aeson base blaze-markup bytestring cereal containers deepseq
hashable path-pieces safecopy text unordered-containers uuid vector
];
+ jailbreak = true;
description = "A mutable vector that provides indexation on the datatype fields it stores";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hbro" = callPackage
@@ -54782,7 +56706,7 @@ self: {
semigroups stm system-fileio text time transformers
transformers-base unix webkitgtk3 zeromq4-haskell
];
- configureFlags = [ "-fthreaded" ];
+ jailbreak = true;
homepage = "https://bitbucket.org/k0ral/hbro";
description = "Minimal KISS-compliant browser";
license = "unknown";
@@ -54803,6 +56727,7 @@ self: {
network-uri pango parsec process safe system-fileio text time
transformers-base unix webkitgtk3
];
+ jailbreak = true;
homepage = "https://bitbucket.org/k0ral/hbro-contrib";
description = "Third-party extensions to hbro";
license = "unknown";
@@ -54818,10 +56743,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base containers filepath haskell98 mtl ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://www.bytelabs.org/hburg.html";
description = "Haskell Bottom Up Rewrite Generator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hcc" = callPackage
@@ -54833,6 +56758,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring language-c ];
+ jailbreak = true;
homepage = "http://tomahawkins.org";
description = "A toy C compiler";
license = stdenv.lib.licenses.bsd3;
@@ -54876,6 +56802,7 @@ self: {
homepage = "http://github.com/nfjinjing/hcheat/";
description = "A collection of code cheatsheet";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hchesslib" = callPackage
@@ -54893,6 +56820,7 @@ self: {
homepage = "https://github.com/nablaa/hchesslib";
description = "Chess library";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hcltest" = callPackage
@@ -54911,9 +56839,11 @@ self: {
stm tagged tasty temporary text transformers transformers-base
];
testDepends = [ base directory doctest filepath ];
+ jailbreak = true;
homepage = "http://github.com/bennofs/hcltest/";
description = "A testing library for command line applications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hcron" = callPackage
@@ -54928,9 +56858,11 @@ self: {
base bytestring containers directory mtl old-locale pretty process
random stm time
];
+ jailbreak = true;
homepage = "http://github.com/tbh/hcron";
description = "A simple job scheduler, which just runs some IO action at a given time";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hcube" = callPackage
@@ -54958,6 +56890,7 @@ self: {
homepage = "https://github.com/ivanperez-keera/hcwiid";
description = "Library to interface with the wiimote";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { bluetooth = null; cwiid = null;};
"hdaemonize" = callPackage
@@ -54990,6 +56923,7 @@ self: {
homepage = "http://github.com/madhadron/hdaemonize";
description = "Library to handle the details of writing daemons for UNIX";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hdbc-postgresql-hstore" = callPackage
@@ -54999,6 +56933,7 @@ self: {
version = "0.0.1.1";
sha256 = "034zsmqgavh4ns69f6j4a1afyqbd1b7h35macmf20vzxj0j0bawj";
buildDepends = [ attoparsec base containers HDBC text ];
+ jailbreak = true;
homepage = "http://bitbucket.com/dpwiz/hdbc-postgresql-hstore";
description = "Manipulate data in PostgreSQL \"hstore\" columns";
license = stdenv.lib.licenses.mit;
@@ -55060,6 +56995,7 @@ self: {
homepage = "https://github.com/s9gf4ult/hdbi-conduit";
description = "Conduit glue for HDBI";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hdbi-postgresql" = callPackage
@@ -55085,6 +57021,7 @@ self: {
quickcheck-instances safe test-framework test-framework-hunit
test-framework-quickcheck2 text time uuid
];
+ jailbreak = true;
homepage = "https://github.com/s9gf4ult/hdbi-postgresql";
description = "PostgreSQL driver for hdbi";
license = stdenv.lib.licenses.bsd3;
@@ -55125,6 +57062,7 @@ self: {
quickcheck-assertions quickcheck-instances stm test-framework
test-framework-hunit test-framework-quickcheck2 text time uuid
];
+ jailbreak = true;
homepage = "https://github.com/s9gf4ult/hdbi-tests";
description = "test suite for testing HDBI";
license = stdenv.lib.licenses.bsd3;
@@ -55164,6 +57102,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hdf";
description = "HDF: Uniform Rate Audio Signal Processing in Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hdigest" = callPackage
@@ -55176,6 +57115,7 @@ self: {
buildDepends = [ base cgi Crypto network parsec random time ];
description = "Server-side HTTP Digest (RFC2617) in the CGI monad";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hdirect" = callPackage
@@ -55191,6 +57131,7 @@ self: {
homepage = "http://www.haskell.org/hdirect/";
description = "An IDL compiler for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hdis86" = callPackage
@@ -55200,10 +57141,10 @@ self: {
version = "0.2";
sha256 = "0qr8d4qbvkncv4im0iwwdr9khvkyy4ky8wnwxri1jqhylcq8vdks";
buildDepends = [ base bytestring containers QuickCheck ];
- configureFlags = [ "-f-external-udis86" ];
homepage = "https://github.com/kmcallister/hdis86";
description = "Interface to the udis86 disassembler for x86 and x86-64 / AMD64";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hdiscount" = callPackage
@@ -55214,9 +57155,11 @@ self: {
sha256 = "0z6kpsk57gjqwpvs5v6ikiirnyyg26mbrxx827bb1v27lhsy7py0";
buildDepends = [ base bytestring ];
extraLibraries = [ markdown ];
+ jailbreak = true;
homepage = "https://github.com/jamwt/hdiscount";
description = "Haskell bindings to the Discount markdown library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { markdown = null;};
"hdm" = callPackage
@@ -55230,6 +57173,7 @@ self: {
buildDepends = [ base directory process unix vty ];
description = "a small display manager";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hdocs" = callPackage
@@ -55239,8 +57183,8 @@ self: {
}:
mkDerivation {
pname = "hdocs";
- version = "0.4.1.1";
- sha256 = "0hcpdak53f3na7d296zgqqcij5kma9j0vm56gxq663jn2njd9lvw";
+ version = "0.4.1.2";
+ sha256 = "1dg4cnj3cnv2f12ibvfg451rhsgawhsj0brjmaxm73bfvbxl25vi";
isLibrary = true;
isExecutable = true;
buildDepends = [
@@ -55271,6 +57215,7 @@ self: {
network-info network-multicast network-transport
network-transport-tcp random template-haskell time
];
+ jailbreak = true;
homepage = "https://github.com/PatrickMaier/HdpH";
description = "Haskell distributed parallel Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -55287,6 +57232,7 @@ self: {
buildDepends = [
array base bytestring cereal containers deepseq template-haskell
];
+ jailbreak = true;
homepage = "https://github.com/PatrickMaier/HdpH";
description = "Explicit closures in Haskell distributed parallel Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -55301,7 +57247,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base QuickCheck ];
- configureFlags = [ "-f-test" ];
description = "Heaps in Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -55329,7 +57274,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base QuickCheck ];
- configureFlags = [ "-f-test" ];
homepage = "http://wiki.cs.pdx.edu/bartforge/heapsort";
description = "Heapsort of MArrays as a demo of imperative programming";
license = stdenv.lib.licenses.bsd3;
@@ -55362,6 +57306,7 @@ self: {
buildDepends = [ base cereal crypto-api hF2 ];
description = "Elliptic Curve Cryptography for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hedis" = callPackage
@@ -55414,6 +57359,7 @@ self: {
version = "0.1.0.0";
sha256 = "1dq7rpqg35caqj664q2ndqgd59mq7cfjahkaka5mlk1k5yjvz7av";
buildDepends = [ base bytestring either hedis mtl ];
+ jailbreak = true;
homepage = "http://github.com/sanetracker/hedis-simple";
description = "A simplified API for hedis";
license = stdenv.lib.licenses.mit;
@@ -55432,6 +57378,7 @@ self: {
base bytestring hedis HUnit lifted-base test-framework
test-framework-hunit transformers
];
+ jailbreak = true;
homepage = "https://github.com/akaspin/hedis-tags";
description = "Tags for hedis";
license = stdenv.lib.licenses.bsd3;
@@ -55454,7 +57401,7 @@ self: {
base bytestring containers hspec HUnit QuickCheck template-haskell
text time vector
];
- configureFlags = [ "-f-developer" ];
+ jailbreak = true;
homepage = "https://bitbucket.org/dpwiz/hedn";
description = "EDN parsing and encoding";
license = stdenv.lib.licenses.bsd3;
@@ -55471,6 +57418,7 @@ self: {
pname = "heist";
version = "0.14.0.1";
sha256 = "1nhksdn95v35ymml3kgm70axjl4vkjfvj1wvlcm1a1frlnbk993w";
+ editedCabalFile = "6cc46649ab05899f5c784e81e2dcbda7b9c2f1da43cdefa7dc3462ae59c71eae";
buildDepends = [
aeson attoparsec base blaze-builder blaze-html bytestring
containers directory directory-tree dlist errors filepath hashable
@@ -55496,6 +57444,7 @@ self: {
];
description = "Use JSON directly from Heist templates";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"heist-async" = callPackage
@@ -55527,10 +57476,10 @@ self: {
extraLibraries = [
newrelic-collector-client newrelic-common newrelic-transaction
];
- configureFlags = [ "-fdummy" "-f-example" ];
homepage = "https://github.com/philopon/helics";
description = "New Relic® agent SDK wrapper for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { newrelic-collector-client = null; newrelic-common = null;
newrelic-transaction = null;};
@@ -55547,10 +57496,10 @@ self: {
buildDepends = [
base bytestring data-default-class helics vault wai
];
- configureFlags = [ "-f-example" ];
homepage = "https://github.com/philopon/helics";
description = "New Relic® agent SDK wrapper for wai";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"helisp" = callPackage
@@ -55607,6 +57556,7 @@ self: {
];
description = "A Haskell shell based on shell-conduit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hellage" = callPackage
@@ -55627,6 +57577,7 @@ self: {
homepage = "http://bitcheese.net/wiki/hellnet/hellage";
description = "Distributed hackage mirror";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hellnet" = callPackage
@@ -55649,6 +57600,7 @@ self: {
homepage = "http://bitcheese.net/wiki/hellnet/hspawn";
description = "Simple, distributed, anonymous data sharing network";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hello" = callPackage
@@ -55660,7 +57612,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-threaded" ];
homepage = "http://www.haskell.org/hello/";
description = "Hello World, an example package";
license = stdenv.lib.licenses.bsd3;
@@ -55684,9 +57635,11 @@ self: {
base cairo containers elerea HUnit sdl2 test-framework
test-framework-hunit test-framework-quickcheck2 time
];
+ jailbreak = true;
homepage = "http://github.com/switchface/helm";
description = "A functionally reactive game engine";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"help-esb" = callPackage
@@ -55721,6 +57674,7 @@ self: {
];
description = "A module music mixer and player";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hemkay-core" = callPackage
@@ -55754,10 +57708,11 @@ self: {
transformers vector vector-fftw websockets xhb
];
testDepends = [ base bytestring hspec HUnit vector ];
- configureFlags = [ "-fmouse" "-fheadmap" "-ffft" ];
+ jailbreak = true;
homepage = "https://github.com/nh2/haskell-hemokit";
description = "Haskell port of the Emokit EEG project";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hen" = callPackage
@@ -55774,9 +57729,11 @@ self: {
transformers uuid
];
extraLibraries = [ xenctrl ];
+ jailbreak = true;
homepage = "https://github.com/selectel/hen";
description = "Haskell bindings to Xen hypervisor interface";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { xenctrl = null;};
"henet" = callPackage
@@ -55789,6 +57746,7 @@ self: {
buildDepends = [ base bitset bytestring network typesafe-endian ];
description = "Bindings and high level interface for to ENet v1.3.9";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hepevt" = callPackage
@@ -55812,6 +57770,7 @@ self: {
homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she";
description = "A lexer for Haskell source code";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"her-lexer-parsec" = callPackage
@@ -55823,6 +57782,7 @@ self: {
buildDepends = [ base her-lexer parsec transformers ];
description = "Parsec frontend to \"her-lexer\" for Haskell source code";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"herbalizer" = callPackage
@@ -55906,6 +57866,7 @@ self: {
];
description = "HERMIT plugin for optimizing Scrap-Your-Boilerplate traversals";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"heroku" = callPackage
@@ -55919,6 +57880,7 @@ self: {
homepage = "https://github.com/gregwebs/haskell-heroku";
description = "helpers for deploying to Heroku";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"herringbone" = callPackage
@@ -55985,8 +57947,10 @@ self: {
buildDepends = [
base filepath haskell-src HDBC HDBC-postgresql hssqlppp parsec
];
+ jailbreak = true;
description = "Haskell's embedded SQL";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hetero-map" = callPackage
@@ -56014,6 +57978,7 @@ self: {
homepage = "http://web.comlab.ox.ac.uk/oucl/work/ian.lynagh/Hetris/";
description = "Text Tetris";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { curses = null;};
"heukarya" = callPackage
@@ -56027,6 +57992,7 @@ self: {
homepage = "https://github.com/t3476/heukarya";
description = "A genetic programming based on tree structure";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hevolisa" = callPackage
@@ -56040,6 +58006,7 @@ self: {
buildDepends = [ base bytestring cairo filepath haskell98 ];
description = "Genetic Mona Lisa problem in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hevolisa-dph" = callPackage
@@ -56057,6 +58024,7 @@ self: {
];
description = "Genetic Mona Lisa problem in Haskell - using Data Parallel Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hex" = callPackage
@@ -56088,6 +58056,7 @@ self: {
version = "0.2.0.0";
sha256 = "1asv5vs694mcifffvm5a4gsplpz7frk3p3zr9lqqv1f172ql9lql";
buildDepends = [ base binary bytestring filepath ];
+ jailbreak = true;
homepage = "http://www.github.com/hansroland/hexif";
description = "Reading Exif data form a JPEG file with Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -56123,9 +58092,11 @@ self: {
base bytestring containers extensible-exceptions hexpat iteratee
List parallel transformers
];
+ jailbreak = true;
homepage = "http://haskell.org/haskellwiki/Hexpat/";
description = "Chunked XML parsing using iteratees";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hexpat-lens" = callPackage
@@ -56139,6 +58110,7 @@ self: {
buildDepends = [
base bytestring deepseq hexpat hexpat-tagsoup lens
];
+ jailbreak = true;
description = "Lenses for Hexpat";
license = stdenv.lib.licenses.mit;
}) {};
@@ -56175,6 +58147,7 @@ self: {
];
description = "Picklers for de/serialising Generic data types to and from XML";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hexpat-tagsoup" = callPackage
@@ -56196,6 +58169,7 @@ self: {
version = "0.0.0.0";
sha256 = "0wpmbzxdl63r2p398101ywzfs7b4p4x8ds4zzqbhvhs2r0fsg5wv";
buildDepends = [ base data-ref either mtl parsec transformers ];
+ jailbreak = true;
homepage = "https://github.com/Zankoku-Okuno/hexpr/";
description = "A framework for symbolic, homoiconic languages";
license = stdenv.lib.licenses.bsd3;
@@ -56214,6 +58188,7 @@ self: {
];
description = "Hexadecimal ByteString literals, with placeholders that bind variables";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hfann" = callPackage
@@ -56227,9 +58202,9 @@ self: {
buildDepends = [ base ];
extraLibraries = [ doublefann ];
pkgconfigDepends = [ fann ];
- configureFlags = [ "-f-test" ];
description = "Haskell binding to the FANN library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { doublefann = null; fann = null;};
"hfd" = callPackage
@@ -56246,8 +58221,10 @@ self: {
base bytestring haskeline iteratee MissingH
MonadCatchIO-transformers network transformers
];
+ jailbreak = true;
description = "Flash debugger";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hfiar" = callPackage
@@ -56259,9 +58236,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base eprocess mtl wx wxcore ];
+ jailbreak = true;
homepage = "http://github.com/elbrujohalcon/hfiar";
description = "Four in a Row in Haskell!!";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hflags" = callPackage
@@ -56289,7 +58268,7 @@ self: {
buildDepends = [
base directory gloss haskeline hmatrix HTTP MissingH transformers
];
- configureFlags = [ "-frepl" ];
+ jailbreak = true;
description = "Hess-Smith panel code for inviscid 2-d airfoil analysis";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -56301,6 +58280,7 @@ self: {
version = "1.0.2";
sha256 = "04qwmjxm06akvpakc5imcx0ls9zlsz74s4r9p7xzj0q5fv20z09l";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/nornagon/hfov";
description = "Field-of-view calculation for low-resolution 2D raster grids";
license = stdenv.lib.licenses.bsd3;
@@ -56335,6 +58315,7 @@ self: {
homepage = "http://github.com/luite/hfsevents";
description = "File/folder watching for OS X";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hfusion" = callPackage
@@ -56365,6 +58346,7 @@ self: {
];
description = "Tools to help manage Debian packages with Mercurial";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hgal" = callPackage
@@ -56387,6 +58369,7 @@ self: {
buildDepends = [ array base haskell98 mtl ];
description = "Haskell Genetic Algorithm Library";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hgdbmi" = callPackage
@@ -56403,6 +58386,7 @@ self: {
base directory HUnit process template-haskell temporary
test-framework test-framework-hunit
];
+ jailbreak = true;
homepage = "https://github.com/copton/hgdbmi";
description = "GDB Machine Interface: program-driven control of GDB";
license = stdenv.lib.licenses.bsd3;
@@ -56417,10 +58401,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base directory filepath hylolib mtl random ];
- configureFlags = [ "-f-static" ];
homepage = "http://www.glyc.dc.uba.ar/intohylo/hgen.php";
description = "Random generation of modal and hybrid logic formulas";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hgeometric" = callPackage
@@ -56433,6 +58417,7 @@ self: {
homepage = "ftp://ftp.cs.man.ac.uk/pub/toby/gpc/";
description = "A geometric library with bindings to GPC";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hgeometry" = callPackage
@@ -56480,9 +58465,11 @@ self: {
aeson attoparsec base base64-bytestring bytestring case-insensitive
cmdargs directory http-enumerator text
];
+ jailbreak = true;
homepage = "https://github.com/noteed/hgithub";
description = "Haskell bindings to the GitHub API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hgl-example" = callPackage
@@ -56494,6 +58481,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base HGL HTam random utility-ht ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/hgl-example/";
description = "Various animations generated using HGL";
license = "GPL";
@@ -56513,10 +58501,10 @@ self: {
buildDepends = [
base containers directory filepath mtl parsec wl-pprint
];
- configureFlags = [ "-f-test" ];
homepage = "http://github.com/polux/hgom";
description = "An haskell port of the java version of gom";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hgopher" = callPackage
@@ -56526,6 +58514,7 @@ self: {
version = "0.1.0.0";
sha256 = "0j6ybi8f5csa9rpbpy8dc9p6l6vf2qh2zk589a9nqj2phllz7mwf";
buildDepends = [ base bytestring network ];
+ jailbreak = true;
description = "Gopher server";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -56538,9 +58527,11 @@ self: {
sha256 = "1n2pi90yr9dmxp5iirp6hm8inliwpl3pnhgx7xnn4zl0z21bjgb5";
buildDepends = [ base ];
extraLibraries = [ harp ];
+ jailbreak = true;
homepage = "http://www.harphttp.org";
description = "Binding to libharp";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { harp = null;};
"hi" = callPackage
@@ -56550,8 +58541,8 @@ self: {
}:
mkDerivation {
pname = "hi";
- version = "1.1.0.2";
- sha256 = "19vrjj31sjwimzjgp7b3y70qb0l4bbjdhbvfs3qwf1za9lnjhqk4";
+ version = "1.1.0.3";
+ sha256 = "1w9samqkgz47shr73rlscypawr1g3lnlwq2hg59iagfklw4hd5gz";
isLibrary = true;
isExecutable = true;
buildDepends = [
@@ -56586,6 +58577,7 @@ self: {
homepage = "http://hiccup.googlecode.com/";
description = "Relatively efficient Tcl interpreter with support for basic operations";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hichi" = callPackage
@@ -56597,23 +58589,22 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base bytestring mtl network ];
- configureFlags = [ "-f-test" ];
description = "haskell robot for IChat protocol";
license = "GPL";
}) {};
"hidapi" = callPackage
- ({ mkDerivation, base, bytestring, deepseq-generics, udev }:
+ ({ mkDerivation, base, bytestring, deepseq-generics, systemd }:
mkDerivation {
pname = "hidapi";
version = "0.1.3";
sha256 = "0ql6avpwi2m89rrglj9zk3fyi8vl91xswagqv8h24b2xgm7pw5i0";
buildDepends = [ base bytestring deepseq-generics ];
- extraLibraries = [ udev ];
+ extraLibraries = [ systemd ];
homepage = "https://github.com/vahokif/haskell-hidapi";
description = "Haskell bindings to HIDAPI";
license = stdenv.lib.licenses.mit;
- }) { udev = null;};
+ }) { inherit (pkgs) systemd;};
"hieraclus" = callPackage
({ mkDerivation, base, containers, HUnit, mtl, multiset }:
@@ -56624,6 +58615,7 @@ self: {
buildDepends = [ base containers HUnit mtl multiset ];
description = "Automated clustering of arbitrary elements in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hierarchical-clustering" = callPackage
@@ -56637,6 +58629,7 @@ self: {
testDepends = [ base hspec HUnit QuickCheck ];
description = "Fast algorithms for single, average/UPGMA and complete linkage clustering";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hierarchical-clustering-diagrams" = callPackage
@@ -56652,8 +58645,10 @@ self: {
base diagrams-cairo diagrams-lib hierarchical-clustering hspec
HUnit
];
+ jailbreak = true;
description = "Draw diagrams of dendrograms made by hierarchical-clustering";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hierarchical-exceptions" = callPackage
@@ -56681,6 +58676,7 @@ self: {
homepage = "http://github.com/paolino/hiernotify";
description = "Notification library for a filesystem hierarchy";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"highWaterMark" = callPackage
@@ -56695,6 +58691,7 @@ self: {
homepage = "http://www.cs.mu.oz.au/~bjpop/code.html";
description = "Memory usage statistics";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"higher-leveldb" = callPackage
@@ -56729,6 +58726,7 @@ self: {
buildDepends = [ base ];
description = "Some higher order functions for Bool and []";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"highlight-versions" = callPackage
@@ -56758,7 +58756,6 @@ self: {
buildDepends = [
base blaze-html bytestring filepath mtl pcre-light text
];
- configureFlags = [ "-f-executable" ];
description = "source code highlighting";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -56780,7 +58777,6 @@ self: {
testDepends = [
base blaze-html containers Diff directory filepath process
];
- configureFlags = [ "-f-pcre-light" "-f-executable" "-fsplitbase" ];
prePatch = "sed -i -e 's|regex-pcre-builtin >= .*|regex-pcre|' highlighting-kate.cabal";
homepage = "http://github.com/jgm/highlighting-kate";
description = "Syntax highlighting";
@@ -56801,9 +58797,11 @@ self: {
array base bytestring directory filepath optparse-applicative text
transformers
];
+ jailbreak = true;
homepage = "http://www.bubblycloud.com/hills/";
description = "Generate STL models from SRTM elevation data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"himerge" = callPackage
@@ -56820,6 +58818,7 @@ self: {
base directory glib gtk haskell98 mozembed old-time parallel
process unix
];
+ jailbreak = true;
homepage = "http://www.haskell.org/himerge";
description = "Haskell Graphical User Interface for Emerge";
license = "GPL";
@@ -56842,6 +58841,7 @@ self: {
homepage = "http://github.com/Fuuzetsu/himg";
description = "Simple gtk2hs image viewer. Point it at an image and fire away.";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"himpy" = callPackage
@@ -56861,28 +58861,32 @@ self: {
NetSNMP network old-time protobuf regex-posix stm text type-level
unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/pyr/himpy";
description = "multithreaded snmp poller for riemann";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hindent" = callPackage
- ({ mkDerivation, base, data-default, directory, haskell-src-exts
- , hspec, monad-loops, mtl, text
+ ({ mkDerivation, base, data-default, descriptive, directory
+ , haskell-src-exts, hspec, monad-loops, mtl, text
}:
mkDerivation {
pname = "hindent";
- version = "4.1.1";
- sha256 = "042pyz3xq6xggrap276i47j2h3h5imjv9zklifgr14xj2205v2az";
+ version = "4.2.1";
+ sha256 = "1ycdssi0g52n1vdm9jhz2hfwjg24zk41g6aif173n3qr4bbn4xm2";
isLibrary = true;
isExecutable = true;
buildDepends = [
- base data-default directory haskell-src-exts monad-loops mtl text
+ base data-default descriptive directory haskell-src-exts
+ monad-loops mtl text
];
testDepends = [
base data-default directory haskell-src-exts hspec monad-loops mtl
text
];
+ jailbreak = true;
description = "Extensible Haskell pretty printer";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -56912,6 +58916,7 @@ self: {
buildDepends = [ base hinduce-missingh layout ];
description = "Interface and utilities for classifiers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hinduce-classifier-decisiontree" = callPackage
@@ -56927,6 +58932,7 @@ self: {
];
description = "Decision Tree Classifiers for hInduce";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hinduce-examples" = callPackage
@@ -56945,6 +58951,7 @@ self: {
];
description = "Example data for hInduce";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hinduce-missingh" = callPackage
@@ -56966,7 +58973,6 @@ self: {
version = "0.3.7";
sha256 = "0i7mxg9ilzcgijda6j3ya5xnpbxa3wm9xswdfif95jim9w82sw0b";
buildDepends = [ base containers directory unix ];
- configureFlags = [ "-fsplit-base" ];
homepage = "https://github.com/kolmodin/hinotify.git";
description = "Haskell binding to inotify";
license = stdenv.lib.licenses.bsd3;
@@ -56988,6 +58994,7 @@ self: {
base bifunctors QuickCheck test-framework
test-framework-quickcheck2 test-framework-th
];
+ jailbreak = true;
homepage = "https://github.com/joneshf/hinquire";
description = "Generate armet style query strings";
license = stdenv.lib.licenses.mit;
@@ -57038,6 +59045,7 @@ self: {
version = "1.4.0";
sha256 = "0iirk76n9j4iwll44gs4spnssv2kkxrw4ypp228gap5h4pyimvx5";
buildDepends = [ base eprocess exceptions hint monad-loops mtl ];
+ jailbreak = true;
description = "A server process that runs hint";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -57054,6 +59062,7 @@ self: {
homepage = "http://www.cs.mu.oz.au/~bjpop/code.html";
description = "Space Invaders";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hinze-streams" = callPackage
@@ -57066,6 +59075,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/hinze-streams";
description = "Streams and Unique Fixed Points";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hipe" = callPackage
@@ -57114,6 +59124,7 @@ self: {
];
description = "IRC client";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hirt" = callPackage
@@ -57132,10 +59143,11 @@ self: {
numeric-extras random statistics text text-format vector
vector-space
];
- configureFlags = [ "-f-pl3" ];
+ jailbreak = true;
homepage = "https://people.ksp.sk/~ivan/hirt";
description = "Calculates IRT 2PL and 3PL models";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hissmetrics" = callPackage
@@ -57149,9 +59161,11 @@ self: {
buildDepends = [
base bytestring conduit http-conduit http-types text time
];
+ jailbreak = true;
homepage = "https://github.com/prowdsponsor/hissmetrics";
description = "Unofficial API bindings to KISSmetrics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hist-pl" = callPackage
@@ -57170,9 +59184,11 @@ self: {
hist-pl-fusion hist-pl-lexicon hist-pl-lmf hist-pl-transliter
morfeusz pipes polimorf text
];
+ jailbreak = true;
homepage = "https://github.com/kawu/hist-pl/tree/master/umbrella";
description = "Umbrella package for the historical dictionary of Polish";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hist-pl-dawg" = callPackage
@@ -57217,6 +59233,7 @@ self: {
base binary containers dawg directory filepath hist-pl-dawg
hist-pl-types pipes text transformers
];
+ jailbreak = true;
homepage = "https://github.com/kawu/hist-pl/tree/master/lexicon";
description = "A binary representation of the historical dictionary of Polish";
license = stdenv.lib.licenses.bsd3;
@@ -57229,9 +59246,11 @@ self: {
version = "0.1.0";
sha256 = "146vz15fig8k1wcvcw7fg64abxvg1nyarvhigz9jkzf5yngkzwvm";
buildDepends = [ base hist-pl-types polysoup text ];
+ jailbreak = true;
homepage = "https://github.com/kawu/hist-pl/tree/master/lmf";
description = "LMF parsing for the historical dictionary of Polish";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hist-pl-transliter" = callPackage
@@ -57311,8 +59330,10 @@ self: {
buildDepends = [
base containers directory filepath process regex-compat regex-posix
];
+ jailbreak = true;
description = "Extract the interesting bits from shell history";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hit" = callPackage
@@ -57335,7 +59356,6 @@ self: {
testDepends = [
base bytedump bytestring hourglass tasty tasty-quickcheck
];
- configureFlags = [ "-f-debug" "-f-executable" ];
homepage = "http://github.com/vincenthz/hit";
description = "Git operations in haskell";
license = stdenv.lib.licenses.bsd3;
@@ -57369,6 +59389,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Libraries_and_tools/HJS";
description = "JavaScript Parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hjsmin" = callPackage
@@ -57434,7 +59455,6 @@ self: {
frquotes mtl process template-haskell transformers uniplate
utf8-string
];
- configureFlags = [ "-f-build_doc" ];
description = "A library to build valid LaTeX files";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -57456,6 +59476,7 @@ self: {
homepage = "http://people.ksp.sk/~ivan/hlbfgsb";
description = "Haskell binding to L-BFGS-B version 3.0";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) gfortran;};
"hlcm" = callPackage
@@ -57471,9 +59492,11 @@ self: {
buildDepends = [
array base bytestring bytestring-csv containers haskell98 parallel
];
+ jailbreak = true;
homepage = "http://membres-liglab.imag.fr/termier/HLCM/hlcm.html";
description = "Fast algorithm for mining closed frequent itemsets";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hledger" = callPackage
@@ -57503,7 +59526,6 @@ self: {
tabular test-framework test-framework-hunit text time transformers
wizards
];
- configureFlags = [ "-fthreaded" ];
homepage = "http://hledger.org";
description = "The main command-line interface for the hledger accounting tool";
license = "GPL";
@@ -57523,9 +59545,11 @@ self: {
base Chart cmdargs colour containers hledger hledger-lib HUnit safe
time
];
+ jailbreak = true;
homepage = "http://hledger.org";
description = "A pie chart image generator for the hledger accounting tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hledger-diff" = callPackage
@@ -57537,9 +59561,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base hledger-lib time ];
+ jailbreak = true;
homepage = "https://github.com/gebner/hledger-diff";
description = "Compares the transactions in two ledger files";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hledger-interest" = callPackage
@@ -57565,8 +59591,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base Cabal hledger-lib statistics time ];
+ jailbreak = true;
description = "computes the internal rate of return of an investment";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hledger-lib" = callPackage
@@ -57591,7 +59619,6 @@ self: {
regex-tdfa regexpr safe split test-framework test-framework-hunit
time transformers
];
- configureFlags = [ "-f-double" ];
homepage = "http://hledger.org";
description = "Core data types, parsers and utilities for the hledger accounting tool";
license = "GPL";
@@ -57610,9 +59637,11 @@ self: {
buildDepends = [
base cmdargs hledger hledger-lib HUnit safe time vty
];
+ jailbreak = true;
homepage = "http://hledger.org";
description = "A curses-style console interface for the hledger accounting tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hledger-web" = callPackage
@@ -57639,7 +59668,6 @@ self: {
yesod-core yesod-static
];
testDepends = [ base hspec yesod yesod-test ];
- configureFlags = [ "-f-library-only" "-f-dev" "-fthreaded" ];
homepage = "http://hledger.org";
description = "A web interface for the hledger accounting tool";
license = "GPL";
@@ -57656,6 +59684,7 @@ self: {
homepage = "http://github.com/aycanirican/hlibev";
description = "FFI interface to libev";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { ev = null;};
"hlibfam" = callPackage
@@ -57668,6 +59697,7 @@ self: {
extraLibraries = [ fam ];
description = "FFI interface to libFAM";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) fam;};
"hlibgit2" = callPackage
@@ -57699,7 +59729,6 @@ self: {
ansi-terminal base cmdargs containers cpphs directory extra
filepath haskell-src-exts hscolour process transformers uniplate
];
- configureFlags = [ "-fgpl" "-fthreaded" ];
homepage = "http://community.haskell.org/~ndm/hlint/";
description = "Source code suggestions";
license = stdenv.lib.licenses.bsd3;
@@ -57715,6 +59744,7 @@ self: {
homepage = "http://www.pontarius.org/sub-projects/hlogger/";
description = "Simple, concurrent, extendable and easy-to-use logging library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hlongurl" = callPackage
@@ -57774,6 +59804,7 @@ self: {
homepage = "http://bitcheese.net/wiki/code/hmark";
description = "A tool and library for Markov chains based text generation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hmarkup" = callPackage
@@ -57783,9 +59814,9 @@ self: {
version = "3000.0.1";
sha256 = "0p6f1jd1b01dvzffiac17f8z0l403f54vrph8k9b3549lpjfh452";
buildDepends = [ base containers mtl network parsec xhtml ];
- configureFlags = [ "-fsplit-base" ];
description = "Simple wikitext-like markup format implementation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hmatrix" = callPackage
@@ -57801,7 +59832,6 @@ self: {
vector
];
extraLibraries = [ blas liblapack ];
- configureFlags = [ "-f-openblas" ];
homepage = "https://github.com/albertoruiz/hmatrix";
description = "Numeric Linear Algebra";
license = stdenv.lib.licenses.bsd3;
@@ -57815,10 +59845,11 @@ self: {
sha256 = "05jgm3hnlylnfhavcicjbhbxq929whm6mapggfwbxkzajhh0paaj";
buildDepends = [ base hmatrix transformers ];
extraLibraries = [ lapack ];
- configureFlags = [ "-f-buildexamples" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/hmatrix-banded/";
description = "HMatrix interface to LAPACK functions for banded matrices";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { lapack = null;};
"hmatrix-csv" = callPackage
@@ -57867,10 +59898,10 @@ self: {
version = "0.2";
sha256 = "1xwl2qgji2ib0gml9hqljzwd4wrqfjpvnzm3iq2g7kcwwfg1q0dm";
buildDepends = [ base binary hmatrix storable-complex ];
- configureFlags = [ "-f-mkl" ];
homepage = "http://code.haskell.org/hmatrix-gsl-stats";
description = "GSL Statistics interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hmatrix-mmap" = callPackage
@@ -57894,7 +59925,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base hmatrix ];
- configureFlags = [ "-f-test" ];
homepage = "http://github.com/alanfalloon/hmatrix-nipals";
description = "NIPALS method for Principal Components Analysis on large data-sets";
license = stdenv.lib.licenses.lgpl21;
@@ -57908,8 +59938,10 @@ self: {
sha256 = "1r03svlxzk4r4fw5brrixjf3dlfdvr2b7f80075ynm9ajzzpfirr";
buildDepends = [ base hmatrix vector ];
extraLibraries = [ QuadProgpp ];
+ jailbreak = true;
description = "Bindings to the QuadProg++ quadratic programming library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { QuadProgpp = null;};
"hmatrix-repa" = callPackage
@@ -57932,7 +59964,6 @@ self: {
sha256 = "1ziqzbfrk7xyah5n0cys1ccnmj2z91wxdamanv3y5v717zhdrqix";
buildDepends = [ base hmatrix hmatrix-gsl ];
extraLibraries = [ gsl ];
- configureFlags = [ "-f-safe-cheap" ];
homepage = "https://github.com/albertoruiz/hmatrix";
description = "Interface to GSL special functions";
license = "GPL";
@@ -57949,9 +59980,11 @@ self: {
buildDepends = [
array base haskell-src-meta hmatrix parsec template-haskell tfp
];
+ jailbreak = true;
homepage = "http://code.haskell.org/hmatrix-static/";
description = "hmatrix with vector and matrix sizes encoded in types";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hmatrix-svdlibc" = callPackage
@@ -57979,9 +60012,11 @@ self: {
buildDepends = [
base haskell-src-exts haskell-src-meta hmatrix template-haskell
];
+ jailbreak = true;
homepage = "http://github.com/reinerp/hmatrix-syntax";
description = "MATLAB-like syntax for hmatrix vectors and matrices";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hmatrix-tests" = callPackage
@@ -57996,7 +60031,6 @@ self: {
base hmatrix hmatrix-gsl HUnit QuickCheck random
];
testDepends = [ base HUnit QuickCheck random ];
- configureFlags = [ "-fgsl" ];
homepage = "https://github.com/albertoruiz/hmatrix";
description = "Tests for hmatrix";
license = stdenv.lib.licenses.bsd3;
@@ -58032,9 +60066,11 @@ self: {
array base bytestring bytestring-lexing delimited-text gnuplot
hmatrix hmeap hosc hsc3 parsec
];
+ jailbreak = true;
homepage = "http://slavepianos.org/rd/?t=hmeap-utils";
description = "Haskell Meapsoft Parser Utilities";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hmemdb" = callPackage
@@ -58059,10 +60095,10 @@ self: {
version = "0.2.1.0";
sha256 = "143w042krxayn2xbn3ag3mkfd9j4075adrjqs651hh3mbr8s9725";
buildDepends = [ base stm ];
- configureFlags = [ "-f-nonoteoff" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "Binding to the OS level MIDI services";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hmk" = callPackage
@@ -58079,6 +60115,7 @@ self: {
base bytestring containers directory filepath mtl parsec pcre-light
process unix
];
+ jailbreak = true;
homepage = "http://www.github.com/mboes/hmk";
description = "A make alternative based on Plan9's mk";
license = "GPL";
@@ -58116,10 +60153,10 @@ self: {
old-time pcre-light process unix zlib
];
extraLibraries = [ curses ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html";
description = "An ncurses mp3 player written in Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { curses = null;};
"hmpfr" = callPackage
@@ -58130,7 +60167,6 @@ self: {
sha256 = "00gqrmfwg7hk21iyfbma8h4ahpxgj21wi9fcxjdms506ahk7rwf4";
buildDepends = [ base integer-gmp ];
extraLibraries = [ mpfr ];
- configureFlags = [ "-f-use-integer-simple" ];
homepage = "http://code.google.com/p/hmpfr/";
description = "Haskell binding to the MPFR library";
license = stdenv.lib.licenses.bsd3;
@@ -58187,8 +60223,10 @@ self: {
base containers haskeline mtl parsec QuickCheck regex-compat syb
text
];
+ jailbreak = true;
description = "Interpreter for the MUMPS langugae";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hnetcdf" = callPackage
@@ -58234,6 +60272,7 @@ self: {
homepage = "http://github.com/alpmestan/hnn";
description = "A reasonably fast and simple neural network library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hnop" = callPackage
@@ -58263,6 +60302,7 @@ self: {
];
description = "A Haskell implementation of OAuth 1.0a protocol.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hoauth2" = callPackage
@@ -58278,7 +60318,6 @@ self: {
buildDepends = [
aeson base bytestring http-conduit http-types text
];
- configureFlags = [ "-f-test" ];
homepage = "https://github.com/freizl/hoauth2";
description = "hoauth2";
license = stdenv.lib.licenses.bsd3;
@@ -58303,9 +60342,11 @@ self: {
testDepends = [
base containers gtk3 gtksourceview3 hspec mtl text
];
+ jailbreak = true;
homepage = "http://svalaskevicius.github.io/hob/";
description = "A source code editor aiming for the convenience of use";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hobbes" = callPackage
@@ -58339,8 +60380,10 @@ self: {
base deepseq haskell-src-exts haskell-src-meta mtl syb tagged
template-haskell th-expand-syns transformers type-equality
];
+ jailbreak = true;
description = "A library for canonically representing terms with binding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hoe" = callPackage
@@ -58352,9 +60395,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base cmdargs hint mtl ];
+ jailbreak = true;
homepage = "http://github.com/tanakh/hoe";
description = "Haskell One-liner Evaluator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hofix-mtl" = callPackage
@@ -58364,8 +60409,10 @@ self: {
version = "1.0";
sha256 = "1xlsddrdv56n7ww7a377jwz43xkkckl5zygghwxs9k88wxzskvvd";
buildDepends = [ base mtl star-to-star template-haskell ];
+ jailbreak = true;
description = "defining @mtl@-ready monads as * -> * fixed-points";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hog" = callPackage
@@ -58381,8 +60428,10 @@ self: {
buildDepends = [
base cmdargs filepath irc network old-locale time unix
];
+ jailbreak = true;
description = "Simple IRC logger bot";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hogg" = callPackage
@@ -58398,7 +60447,6 @@ self: {
buildDepends = [
array base bytestring containers HUnit mtl old-locale random time
];
- configureFlags = [ "-f-http" "-fsplitbase" ];
homepage = "http://www.kfish.org/software/hogg/";
description = "Library and tools to manipulate the Ogg container format";
license = stdenv.lib.licenses.bsd3;
@@ -58417,6 +60465,7 @@ self: {
homepage = "http://anttisalonen.github.com/hogre";
description = "Haskell binding to a subset of OGRE";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { OGRE = null; OgreMain = null; cgen-hs = null;
grgen = null;};
@@ -58433,6 +60482,7 @@ self: {
homepage = "http://github.com/anttisalonen/hogre-examples";
description = "Examples for using Hogre";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { OgreMain = null;};
"hois" = callPackage
@@ -58445,8 +60495,10 @@ self: {
isExecutable = true;
buildDepends = [ base X11 ];
extraLibraries = [ OIS ];
+ jailbreak = true;
description = "OIS bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { OIS = null;};
"hoist-error" = callPackage
@@ -58468,6 +60520,7 @@ self: {
version = "0.1.0.0";
sha256 = "1j2ql6izsd85skd6l9j1qfg7pj5rf513096s9bkvqip9bb4ibr4r";
buildDepends = [ base random safe ];
+ jailbreak = true;
description = "An engine for Texas hold'em Poker";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -58491,6 +60544,7 @@ self: {
sha256 = "13f6f647ykssqgdqw4fp7gnr2ardxbcn41ksgs15v5dx1n1xvan1";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"holy-project" = callPackage
@@ -58528,10 +60582,10 @@ self: {
version = "0.1";
sha256 = "1wm15bdz02sjgpz2n266xd50q3p6mncnv8mhimky6ps1kmzb5r6c";
buildDepends = [ base containers mtl QuickCheck ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www-users.cs.york.ac.uk/~ndm/homeomorphic/";
description = "Homeomorphic Embedding Test";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hommage" = callPackage
@@ -58543,6 +60597,7 @@ self: {
buildDepends = [ array base directory haskell98 random time ];
description = "Haskell Offline Music Manipulation And Generation EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hommage-ds" = callPackage
@@ -58552,9 +60607,11 @@ self: {
version = "0.0.5";
sha256 = "0gnwpzs6kwhf2wm0nqcgwqa1pp7xwbnqh337pr62w40i76g252v4";
buildDepends = [ array base DirectSound haskell98 hommage ];
+ jailbreak = true;
homepage = "substitut-fuer-feinmotorik/projects/haskellommage";
description = "DirectSound extension (Windows) for the Hommage sound library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"honi" = callPackage
@@ -58640,8 +60697,10 @@ self: {
buildDepends = [
array astar base containers hfov monad-loops mtl ncurses random
];
+ jailbreak = true;
description = "A small, toy roguelike";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hoodle" = callPackage
@@ -58661,6 +60720,7 @@ self: {
homepage = "http://ianwookim.org/hoodle";
description = "Executable for hoodle";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hoodle-builder" = callPackage
@@ -58709,6 +60769,7 @@ self: {
homepage = "http://ianwookim.org/hoodle";
description = "Core library for hoodle";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.xlibs) libX11; inherit (pkgs.xlibs) libXi;};
"hoodle-extra" = callPackage
@@ -58735,6 +60796,7 @@ self: {
homepage = "http://ianwookim.org/hoodle";
description = "extra hoodle tools";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hoodle-parser" = callPackage
@@ -58778,6 +60840,7 @@ self: {
homepage = "http://ianwookim.org/hoodle";
description = "publish hoodle files as a static web site";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hoodle-render" = callPackage
@@ -58797,6 +60860,7 @@ self: {
];
description = "Hoodle file renderer";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hoodle-types" = callPackage
@@ -58857,6 +60921,7 @@ self: {
base bytestring Cabal containers directory errors filepath hoogle
optparse-applicative process temporary transformers
];
+ jailbreak = true;
homepage = "http://github.com/bgamari/hoogle-index";
description = "Easily generate Hoogle indices for installed packages";
license = stdenv.lib.licenses.bsd3;
@@ -58905,9 +60970,11 @@ self: {
network-multicast old-locale old-time process regex-compat
snap-core snap-server text time transformers unix xml
];
+ jailbreak = true;
homepage = "https://bitbucket.org/pvdbrand/hoovie";
description = "Haskell Media Server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hopencc" = callPackage
@@ -58922,9 +60989,11 @@ self: {
testDepends = [ base QuickCheck ];
buildTools = [ c2hs ];
pkgconfigDepends = [ opencc ];
+ jailbreak = true;
homepage = "https://github.com/MnO2/hopencc";
description = "Haskell binding to libopencc";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { opencc = null;};
"hopencl" = callPackage
@@ -58942,10 +61011,10 @@ self: {
];
buildTools = [ c2hs ];
extraLibraries = [ OpenCL ];
- configureFlags = [ "-f-debug" ];
homepage = "https://github.com/merijn/hopencl";
description = "Haskell bindings for OpenCL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { OpenCL = null;};
"hopenpgp-tools" = callPackage
@@ -59015,6 +61084,7 @@ self: {
homepage = "https://github.com/imperialhopfield/hopfield";
description = "Hopfield Networks, Boltzmann Machines and Clusters";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { MagickCore = null; MagickWand = null;};
"hopfield-networks" = callPackage
@@ -59045,6 +61115,7 @@ self: {
sha256 = "1rx5kvacnzm3qmc0z8n9fhrcrac059akzh9ccq0qswl7w9m4iby3";
buildDepends = [ base bytestring zlib ];
testDepends = [ base bytestring hspec QuickCheck zlib ];
+ jailbreak = true;
homepage = "https://github.com/ananthakumaran/hopfli";
description = "zlib compatible compression using Zopfli Compression Algorithm";
license = stdenv.lib.licenses.asl20;
@@ -59067,6 +61138,7 @@ self: {
homepage = "http://github.com/valis/hoq";
description = "A language based on homotopy type theory with an interval type";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hosc" = callPackage
@@ -59086,9 +61158,11 @@ self: {
base bytestring QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://rd.slavepianos.org/t/hosc";
description = "Haskell Open Sound Control";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hosc-json" = callPackage
@@ -59106,6 +61180,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hosc-json";
description = "Haskell Open Sound Control JSON Serialisation";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hosc-utils" = callPackage
@@ -59123,6 +61198,7 @@ self: {
base bytestring cgi haskeline hosc hosc-json hsc3 json text
transformers utf8-string websockets www-minus
];
+ jailbreak = true;
homepage = "http://rd.slavepianos.org/?t=hosc-utils";
description = "Haskell Open Sound Control Utilities";
license = "GPL";
@@ -59164,6 +61240,7 @@ self: {
buildDepends = [
attoparsec base bytestring data-default dns iproute network
];
+ jailbreak = true;
homepage = "https://github.com/yihuang/hosts-server";
description = "An dns server which is extremely easy to config";
license = stdenv.lib.licenses.gpl3;
@@ -59185,6 +61262,7 @@ self: {
homepage = "http://github.com/luqui/hothasktags";
description = "Generates ctags for Haskell, incorporating import lists and qualified imports";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hotswap" = callPackage
@@ -59194,6 +61272,7 @@ self: {
version = "0.1.9.13";
sha256 = "1c614gvwypfqaj4gqsdimqq40i34w393vikq5hhy3d4qll2qp8hv";
buildDepends = [ base plugins ];
+ jailbreak = true;
homepage = "https://github.com/mikeplus64/hotswap";
description = "Simple code hotswapping";
license = stdenv.lib.licenses.bsd3;
@@ -59250,7 +61329,6 @@ self: {
network OpenGL parseargs process
];
extraLibraries = [ freeglut mesa ];
- configureFlags = [ "-f-serveronly" ];
homepage = "http://www.haskell.org/haskellwiki/Hp2any";
description = "Real-time heap graphing utility and profile stream server with a reusable graphing module";
license = stdenv.lib.licenses.bsd3;
@@ -59274,6 +61352,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Hp2any";
description = "A utility to visualise and compare heap profiles";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hp2html" = callPackage
@@ -59359,9 +61438,11 @@ self: {
filepath FindBin haskell-src-exts hint hint-server monad-loops mtl
process time wx wxcore
];
+ jailbreak = true;
homepage = "http://haskell.hpage.com";
description = "A scrapbook for Haskell developers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpapi" = callPackage
@@ -59374,6 +61455,7 @@ self: {
extraLibraries = [ papi ];
description = "Binding for the PAPI library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { papi = null;};
"hpaste" = callPackage
@@ -59399,9 +61481,11 @@ self: {
old-locale postgresql-simple process safe snap-app snap-core
snap-server text time transformers utf8-string
];
+ jailbreak = true;
homepage = "http://hpaste.org/";
description = "Haskell paste web site";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpasteit" = callPackage
@@ -59419,9 +61503,11 @@ self: {
base bytestring directory filepath http-conduit http-types
lifted-base network optparse-applicative process safe utf8-string
];
+ jailbreak = true;
homepage = "http://github.com/parcs/hpasteit";
description = "A command-line client for hpaste.org";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpc_0_6_0_1" = callPackage
@@ -59454,6 +61540,7 @@ self: {
homepage = "https://github.com/guillaume-nargeot/hpc-coveralls";
description = "Coveralls.io support for Haskell.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpc-strobe" = callPackage
@@ -59483,6 +61570,7 @@ self: {
];
description = "Tracer with AJAX interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hplayground" = callPackage
@@ -59497,10 +61585,10 @@ self: {
base containers data-default haste-compiler haste-perch monads-tf
transformers
];
- configureFlags = [ "-f-haste-inst" ];
homepage = "https://github.com/agocorona/hplayground";
description = "monadic, reactive Formlets running in the Web browser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hplaylist" = callPackage
@@ -59514,6 +61602,7 @@ self: {
buildDepends = [ base directory filepath process ];
description = "Application for managing playlist files on a music player";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpodder" = callPackage
@@ -59531,9 +61620,11 @@ self: {
base ConfigFile directory filepath HaXml HDBC HDBC-sqlite3 hslogger
MissingH mtl network old-time parsec process unix
];
+ jailbreak = true;
homepage = "http://software.complete.org/hpodder";
description = "Podcast Aggregator (downloader)";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpqtypes" = callPackage
@@ -59555,9 +61646,10 @@ self: {
vector
];
extraLibraries = [ postgresql ];
- configureFlags = [ "-f-tests" ];
+ jailbreak = true;
description = "Haskell bindings to libpqtypes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) postgresql;};
"hprotoc" = callPackage
@@ -59577,7 +61669,6 @@ self: {
protocol-buffers-descriptor utf8-string
];
buildTools = [ alex ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/protocol-buffers/";
description = "Parse Google Protocol Buffer specifications";
license = stdenv.lib.licenses.bsd3;
@@ -59601,10 +61692,11 @@ self: {
protocol-buffers-fork utf8-string
];
buildTools = [ alex ];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/";
description = "Parse Google Protocol Buffer specifications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hps" = callPackage
@@ -59616,7 +61708,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base directory filepath hcg-minus random ];
- configureFlags = [ "-f-build-exec" ];
homepage = "http://rd.slavepianos.org/?t=hps";
description = "Haskell Postscript";
license = "GPL";
@@ -59631,9 +61722,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base cairo gtk hps random ];
+ jailbreak = true;
homepage = "http://slavepianos.org/rd/?t=hps-cairo";
description = "Cairo rendering for the haskell postscript library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hps-kmeans" = callPackage
@@ -59643,6 +61736,7 @@ self: {
version = "0.1.0.0";
sha256 = "0w1yyrv4k7fi016084j4k1lh6jgxg5502r83zszr9cjc6rraj8fc";
buildDepends = [ base vector ];
+ jailbreak = true;
homepage = "http://stathacking.com/hps-kmeans";
description = "A nice implementation of the k-Means algorithm";
license = stdenv.lib.licenses.gpl3;
@@ -59669,9 +61763,11 @@ self: {
version = "0.1.3";
sha256 = "1hb9yslb94ynzlphsp0i4f547zqxblrj49hqy4d7zivdqp38lqla";
buildDepends = [ aeson base bytestring process process-extras ];
+ jailbreak = true;
homepage = "https://github.com/davidlazar/hpygments";
description = "Highlight source code using Pygments";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpylos" = callPackage
@@ -59686,6 +61782,7 @@ self: {
homepage = "http://sourceforge.net/projects/hpylos/";
description = "AI of Pylos game with GLUT interface";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpyrg" = callPackage
@@ -59718,10 +61815,11 @@ self: {
base HUnit QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2
];
- configureFlags = [ "-foptimize" ];
+ jailbreak = true;
homepage = "http://github.com/paulrzcz/hquantlib.git";
description = "HQuantLib is a port of essencial parts of QuantLib to Haskell";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hquery" = callPackage
@@ -59752,6 +61850,7 @@ self: {
buildDepends = [ base HCL NonEmpty ];
description = "Basic utility for ranking a list of items";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hricket" = callPackage
@@ -59763,6 +61862,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers ];
+ jailbreak = true;
homepage = "http://github.com/Raynes/Hricket";
description = "A Cricket scoring application";
license = stdenv.lib.licenses.bsd3;
@@ -59783,6 +61883,7 @@ self: {
testDepends = [ aeson attoparsec base QuickCheck text vector ];
description = "Embed Ruby in your Haskell program";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-GeoIP" = callPackage
@@ -59796,6 +61897,7 @@ self: {
homepage = "http://github.com/ozataman/hs-GeoIP";
description = "Haskell bindings to the MaxMind GeoIPCity database via the C library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { GeoIP = null;};
"hs-bibutils" = callPackage
@@ -59869,6 +61971,7 @@ self: {
];
description = "Example Monte Carlo simulations implemented with Carbon";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-cdb" = callPackage
@@ -59885,6 +61988,7 @@ self: {
homepage = "http://github.com/adamsmasher/hs-cdb";
description = "A library for reading CDB (Constant Database) files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-dotnet" = callPackage
@@ -59895,9 +61999,9 @@ self: {
sha256 = "1l2h1zv63c25k80gljnan3vg2r25a4b7byf5yryj3cjwa9xcg457";
buildDepends = [ base ghc-prim ];
extraLibraries = [ ole32 oleaut32 ];
- configureFlags = [ "-f-old-base" ];
description = "Pragmatic .NET interop for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { ole32 = null; oleaut32 = null;};
"hs-excelx" = callPackage
@@ -59911,6 +62015,7 @@ self: {
buildDepends = [
base bytestring containers mtl text time xml-conduit zip-archive
];
+ jailbreak = true;
description = "HS-Excelx provides basic read-only access to Excel 2007 and 2010 documents in XLSX format";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -59922,9 +62027,11 @@ self: {
version = "0.3.4";
sha256 = "0j52drd3pb6ssgngfqxdsvvjjnx11nsmxwjsin6cmbv0nifpyq51";
buildDepends = [ base bytestring haskell98 ];
+ jailbreak = true;
homepage = "http://patch-tag.com/r/VasylPasternak/hs-ffmpeg";
description = "Bindings to FFMPEG library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-fltk" = callPackage
@@ -59938,6 +62045,7 @@ self: {
homepage = "http://www.cs.helsinki.fi/u/ekarttun/hs-fltk/";
description = "Binding to GUI library FLTK";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { fltk = null; fltk_images = null;};
"hs-gchart" = callPackage
@@ -59981,6 +62089,7 @@ self: {
buildDepends = [
base containers directory filepath parsec process
];
+ jailbreak = true;
description = "Haskell wrapper around the GIZA++ toolkit";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -60002,6 +62111,7 @@ self: {
];
description = "Java .class files assembler/disassembler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-json-rpc" = callPackage
@@ -60014,6 +62124,7 @@ self: {
homepage = "http://patch-tag.com/r/Azel/hs-json-rpc";
description = "JSON-RPC client library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-logo" = callPackage
@@ -60037,9 +62148,11 @@ self: {
diagrams-svg HUnit mtl parsec parsec-numbers QuickCheck random
test-framework test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://deepakjois.github.com/hs-logo";
description = "Logo interpreter written in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-mesos" = callPackage
@@ -60060,6 +62173,7 @@ self: {
];
extraLibraries = [ mesos protobuf ];
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) mesos; inherit (pkgs) protobuf;};
"hs-nombre-generator" = callPackage
@@ -60088,9 +62202,9 @@ self: {
buildDepends = [
array base directory glib gtk MonadPrompt mtl random
];
- configureFlags = [ "-fsplit-base" ];
description = "Programmer's Mine Sweeper in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-php-session" = callPackage
@@ -60112,7 +62226,6 @@ self: {
version = "0.2.1.0";
sha256 = "09v2kp643asl3zpv8rbb8a7zv0h3bn5l4gxz44d71kly9qr3jkhh";
buildDepends = [ base data-default-class text ];
- configureFlags = [ "-f-pedantic" ];
homepage = "https://github.com/trskop/hs-pkg-config";
description = "Create pkg-config configuration files";
license = stdenv.lib.licenses.bsd3;
@@ -60134,9 +62247,11 @@ self: {
system-filepath text time transformers unordered-containers uuid
zip-archive
];
+ jailbreak = true;
homepage = "https://github.com/tazjin/hs-pkpass";
description = "A library for Passbook pass creation & signing";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-scrape" = callPackage
@@ -60155,6 +62270,7 @@ self: {
testDepends = [
base containers hspec tasty tasty-hunit xml-conduit
];
+ jailbreak = true;
homepage = "https://github.com/codygman/hs-scrape/";
description = "Simple and easy web scraping and automation in Haskell";
license = stdenv.lib.licenses.mit;
@@ -60173,6 +62289,7 @@ self: {
];
description = "Haskell binding to the Twitter API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-twitterarchiver" = callPackage
@@ -60187,6 +62304,7 @@ self: {
homepage = "https://github.com/deepakjois/hs-twitterarchiver";
description = "Commandline Twitter feed archiver";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs-vcard" = callPackage
@@ -60216,7 +62334,7 @@ self: {
base doctest Glob hlint hspec HUnit process QuickCheck random
regex-compat
];
- configureFlags = [ "-f-documentation" ];
+ jailbreak = true;
homepage = "https://github.com/tfausak/hs2048";
description = "A 2048 clone in Haskell";
license = stdenv.lib.licenses.mit;
@@ -60238,6 +62356,7 @@ self: {
homepage = "http://www.xanxys.net/hs2bf/";
description = "Haskell to Brainfuck compiler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hs2dot" = callPackage
@@ -60253,9 +62372,11 @@ self: {
buildDepends = [
base directory haskell-src haskell-src-exts haskell98 split
];
+ jailbreak = true;
homepage = "http://www.github.com/finnsson/hs2graphviz";
description = "Generate graphviz-code from Haskell-code";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsConfigure" = callPackage
@@ -60282,8 +62403,10 @@ self: {
buildDepends = [
base bindings-sqlite3 bytestring mtl utf8-string
];
+ jailbreak = true;
description = "Sqlite3 bindings";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsXenCtrl" = callPackage
@@ -60294,9 +62417,11 @@ self: {
sha256 = "0zxmlyckp9c0i5s8vi62d3qvnilh8kl093ckqr7dchgmki4az7rp";
buildDepends = [ array base bytestring dlist mtl ];
extraLibraries = [ xenctrl ];
+ jailbreak = true;
homepage = "http://haskell.org/haskellwiki/HsXenCtrl";
description = "FFI bindings to the Xen Control library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { xenctrl = null;};
"hsay" = callPackage
@@ -60345,6 +62470,7 @@ self: {
];
description = "simple utility for rolling filesystem backups";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsbencher" = callPackage
@@ -60365,7 +62491,6 @@ self: {
base bytestring containers directory HUnit test-framework
test-framework-hunit text time
];
- configureFlags = [ "-f-hydra" ];
description = "Launch and gather data from Haskell and non-Haskell benchmarks";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -60384,6 +62509,7 @@ self: {
hsbencher HTTP http-conduit http-types json mtl network resourcet
time
];
+ jailbreak = true;
description = "Backend for uploading benchmark data to CodeSpeed";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -60417,8 +62543,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers directory process ];
+ jailbreak = true;
description = "A preprocessor that helps with writing Haskell bindings to C code";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3" = callPackage
@@ -60438,6 +62566,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3";
description = "Haskell SuperCollider";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-auditor" = callPackage
@@ -60451,6 +62580,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-auditor";
description = "Haskell SuperCollider Auditor";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-cairo" = callPackage
@@ -60460,9 +62590,11 @@ self: {
version = "0.14";
sha256 = "1f62mfjssky7igbp1nx2zf1azbih76m65xydnf5akp8pim7nzmis";
buildDepends = [ base cairo gtk hosc hsc3 split ];
+ jailbreak = true;
homepage = "http://rd.slavepianos.org/?t=hsc3-cairo";
description = "haskell supercollider cairo drawing";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-data" = callPackage
@@ -60480,6 +62612,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-data";
description = "haskell supercollider data";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-db" = callPackage
@@ -60492,6 +62625,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-db";
description = "Haskell SuperCollider Unit Generator Database";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-dot" = callPackage
@@ -60504,6 +62638,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-dot";
description = "haskell supercollider graph drawing";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-forth" = callPackage
@@ -60523,6 +62658,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-forth";
description = "FORTH SUPERCOLLIDER";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-graphs" = callPackage
@@ -60544,10 +62680,11 @@ self: {
hsc3-lang hsc3-sf hsc3-unsafe hsc3-utils hsharc MonadRandom primes
process random random-shuffle sc3-rdu she split
];
- configureFlags = [ "-f-build-exec" ];
+ jailbreak = true;
homepage = "http://rd.slavepianos.org/t/hsc3-graphs";
description = "Haskell SuperCollider Graphs";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-lang" = callPackage
@@ -60568,6 +62705,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-lang";
description = "Haskell SuperCollider Language";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-lisp" = callPackage
@@ -60587,6 +62725,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-lisp";
description = "LISP SUPERCOLLIDER";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-plot" = callPackage
@@ -60604,6 +62743,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-plot";
description = "Haskell SuperCollider Plotting";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-process" = callPackage
@@ -60621,10 +62761,10 @@ self: {
base bytestring containers data-default directory filepath hosc
hsc3 process time time-compat transformers
];
- configureFlags = [ "-f-build-examples" ];
homepage = "https://github.com/kaoskorobase/hsc3-process";
description = "Create and control scsynth processes";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-rec" = callPackage
@@ -60634,9 +62774,11 @@ self: {
version = "0.14.1";
sha256 = "0m814vr41i0mm0c001vbih9i93048niljv3z8czaz32wysa8xpfl";
buildDepends = [ base hsc3 ];
+ jailbreak = true;
homepage = "http://rd.slavepianos.org/?t=hsc3-rec";
description = "Haskell SuperCollider Record Variants";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-rw" = callPackage
@@ -60678,10 +62820,10 @@ self: {
base failure QuickCheck random test-framework
test-framework-quickcheck2 transformers
];
- configureFlags = [ "-f-build-examples" ];
homepage = "https://github.com/kaoskorobase/hsc3-server";
description = "SuperCollider server resource management and synchronization";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-sf" = callPackage
@@ -60694,6 +62836,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-sf";
description = "Haskell SuperCollider SoundFile";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-sf-hsndfile" = callPackage
@@ -60710,6 +62853,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-sf-hsndfile";
description = "Haskell SuperCollider SoundFile";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-unsafe" = callPackage
@@ -60719,9 +62863,11 @@ self: {
version = "0.14";
sha256 = "0kywqx7x10hqzhq8by0f62aznrnq4y3013cxkccx1r0naajpz3yj";
buildDepends = [ base hsc3 ];
+ jailbreak = true;
homepage = "http://rd.slavepianos.org/?t=hsc3-unsafe";
description = "Unsafe Haskell SuperCollider";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsc3-utils" = callPackage
@@ -60741,6 +62887,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/hsc3-utils";
description = "Haskell SuperCollider Utilities";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hscamwire" = callPackage
@@ -60753,8 +62900,10 @@ self: {
sha256 = "0alnwc170hd2dyq718nvfq5dsbnyp29j3z49w2w5k59pi9pnqybc";
buildDepends = [ array base time unix ];
extraLibraries = [ camwire_1394 dc1394_control raw1394 ];
+ jailbreak = true;
description = "Haskell bindings to IIDC1394 cameras, via Camwire";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { camwire_1394 = null; dc1394_control = null;
raw1394 = null;};
@@ -60773,6 +62922,7 @@ self: {
homepage = "https://github.com/necrobious/hscassandra";
description = "cassandra database interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hscd" = callPackage
@@ -60784,6 +62934,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ aeson base bytestring ghc-prim HTTP ];
+ jailbreak = true;
homepage = "https://bitbucket.org/sebasmagri/hscd";
description = "Command line client and library for SoundCloud.com";
license = stdenv.lib.licenses.bsd3;
@@ -60798,10 +62949,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base cairo glib gtk old-time ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://haskell.org/gtk2hs/archives/2006/01/26/cairo-eye-candy/";
description = "An elegant analog clock using Haskell, GTK and Cairo";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hscolour" = callPackage
@@ -60860,9 +63011,11 @@ self: {
version = "1.4.1.2";
sha256 = "1r3njcwad8d4vn17s5g69iw3rhjz9hbhv49wkqqpndck5080fh7l";
buildDepends = [ base mtl old-locale old-time unix ];
+ jailbreak = true;
homepage = "https://github.com/skogsbaer/hscurses";
description = "NCurses bindings for Haskell";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hscurses-fish-ex" = callPackage
@@ -60877,6 +63030,7 @@ self: {
homepage = "http://ui3.info/darcs/hscurses-fish-ex/";
description = "hscurses swimming fish example";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsdev" = callPackage
@@ -60889,8 +63043,8 @@ self: {
}:
mkDerivation {
pname = "hsdev";
- version = "0.1.3.1";
- sha256 = "1hlv7r3c6x4483618q9ahrl0v1dirxl4l20dbxp0ir948x8w7dyi";
+ version = "0.1.3.2";
+ sha256 = "1gr24789vg05phps4141dfygdzlhy58v5r90bv35gp6gwnj2b0za";
isLibrary = true;
isExecutable = true;
buildDepends = [
@@ -60913,9 +63067,11 @@ self: {
version = "0.14";
sha256 = "1wxms6z8mpyf4l1qqxi6gvscls3mwlj5aq6g3ldashzrmb7pcimm";
buildDepends = [ base bytestring hosc ];
+ jailbreak = true;
homepage = "http://rd.slavepianos.org/?t=hsdif";
description = "Haskell SDIF";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsdip" = callPackage
@@ -61009,6 +63165,7 @@ self: {
version = "1.3.2";
sha256 = "03d0pnsba7yj5x7zrg8b80kxsnqn5g40vd2i717s1dnn3bd3vz4s";
buildDepends = [ base mtl old-time parsec ];
+ jailbreak = true;
homepage = "http://patch-tag.com/r/hsemail-ns/home";
description = "Internet Message Parsers";
license = stdenv.lib.licenses.bsd3;
@@ -61029,9 +63186,11 @@ self: {
base bytestring Cabal directory file-embed filepath http-streams
io-streams mtl process safe split unix
];
+ jailbreak = true;
homepage = "https://github.com/tmhedberg/hsenv";
description = "Virtual Haskell Environment builder";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hserv" = callPackage
@@ -61062,6 +63221,7 @@ self: {
testDepends = [
base binary bytestring containers hspec HUnit iconv text time
];
+ jailbreak = true;
homepage = "https://github.com/emmanueltouzery/hsexif";
description = "EXIF handling library in pure Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -61077,6 +63237,7 @@ self: {
homepage = "http://lpuppet.banquise.net";
description = "A small and ugly library that emulates the output of the puppet facter program";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsfcsh" = callPackage
@@ -61088,6 +63249,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base hdaemonize hslogger network process ];
+ jailbreak = true;
homepage = "https://github.com/Yuras/hsfcsh";
description = "Incremental builder for flash";
license = stdenv.lib.licenses.bsd3;
@@ -61117,6 +63279,7 @@ self: {
homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls";
description = "Library wrapping the GnuTLS API";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { gcrypt = null; inherit (pkgs) gnutls;};
"hsgnutls-yj" = callPackage
@@ -61130,6 +63293,7 @@ self: {
homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls";
description = "Library wrapping the GnuTLS API";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { gcrypt = null; inherit (pkgs) gnutls;};
"hsgsom" = callPackage
@@ -61141,6 +63305,7 @@ self: {
buildDepends = [ base containers random stm time ];
description = "An implementation of the GSOM clustering algorithm";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsgtd" = callPackage
@@ -61186,10 +63351,10 @@ self: {
array base binary bytestring hmatrix hmatrix-gsl hmatrix-gsl-stats
hstatistics mtl storable-complex
];
- configureFlags = [ "-f-mkl" ];
homepage = "http://code.haskell.org/hsignal";
description = "Signal processing and EEG data analysis";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsimport" = callPackage
@@ -61210,6 +63375,7 @@ self: {
testDepends = [
base filepath haskell-src-exts tasty tasty-golden
];
+ jailbreak = true;
description = "A command line program for extending the import list of a Haskell source file";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -61242,6 +63408,7 @@ self: {
buildDepends = [ base Cabal ];
description = "Skeleton for new Haskell programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hslackbuilder" = callPackage
@@ -61253,7 +63420,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base Cabal directory filepath process unix ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/~arossato/hslackbuilder";
description = "HSlackBuilder automatically generates slackBuild scripts from a cabal package";
license = stdenv.lib.licenses.bsd3;
@@ -61269,6 +63435,7 @@ self: {
extraLibraries = [ svm ];
description = "A FFI binding to libsvm";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { svm = null;};
"hslinks" = callPackage
@@ -61298,7 +63465,6 @@ self: {
buildDepends = [
base containers directory mtl network old-locale process time unix
];
- configureFlags = [ "-f-buildtests" "-fsmall_base" ];
homepage = "http://software.complete.org/hslogger";
description = "Versatile logging framework";
license = stdenv.lib.licenses.bsd3;
@@ -61325,6 +63491,7 @@ self: {
homepage = "http://hslogger4j.googlecode.com/";
description = "DEPRECATED hslogger handlers for log4j's XMLLayout";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hslogstash" = callPackage
@@ -61348,9 +63515,11 @@ self: {
testDepends = [
base conduit hspec QuickCheck split stm transformers
];
+ jailbreak = true;
homepage = "https://github.com/bartavelle/hslogstash";
description = "A library to work with, or as, a logstash server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hslua" = callPackage
@@ -61362,7 +63531,7 @@ self: {
buildDepends = [ base mtl ];
testDepends = [ base ];
pkgconfigDepends = [ lua ];
- configureFlags = [ "-fsystem-lua" "-f-apicheck" "-fsystem-lua" ];
+ configureFlags = [ "-fsystem-lua" ];
description = "A Lua language interpreter embedding in Haskell";
license = stdenv.lib.licenses.mit;
}) { inherit (pkgs) lua;};
@@ -61384,6 +63553,7 @@ self: {
homepage = "https://github.com/vincentg/hsmagick";
description = "FFI bindings for the GraphicsMagick library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { GraphicsMagick = null; inherit (pkgs) bzip2;
freetype2 = null; inherit (pkgs) jasper; inherit (pkgs) lcms;
inherit (pkgs) libjpeg; inherit (pkgs) libpng;
@@ -61400,6 +63570,7 @@ self: {
homepage = "http://code.google.com/p/hsmtpclient/";
description = "Simple SMTP Client";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsndfile" = callPackage
@@ -61426,6 +63597,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Hsndfile";
description = "Haskell bindings for libsndfile (Data.StorableVector interface)";
license = stdenv.lib.licenses.lgpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsndfile-vector" = callPackage
@@ -61458,6 +63630,7 @@ self: {
homepage = "https://github.com/mrdomino/hsnock/";
description = "Nock 5K interpreter";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsnoise" = callPackage
@@ -61483,6 +63656,7 @@ self: {
buildDepends = [ base network pcap ];
description = "a miniature network sniffer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsnsq" = callPackage
@@ -61499,6 +63673,7 @@ self: {
hostname hslogger mtl network pipes pipes-attoparsec pipes-network
stm stm-chans text
];
+ jailbreak = true;
homepage = "https://github.com/gamelost/hsnsq";
description = "Haskell NSQ client";
license = stdenv.lib.licenses.asl20;
@@ -61517,6 +63692,7 @@ self: {
homepage = "http://www.cs.helsinki.fi/u/ekarttun/util/";
description = "Libraries to use SNTP protocol and small client/server implementations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsoptions" = callPackage
@@ -61538,9 +63714,11 @@ self: {
regex-posix test-framework test-framework-hunit
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/josercruz01/hsoptions";
description = "Haskell library that supports command-line flag processing";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsp" = callPackage
@@ -61550,7 +63728,6 @@ self: {
version = "0.10.0";
sha256 = "1ayfywgrlmzivsq6lirmgvl65x1shf8041lzw2yh245rkmd91lsf";
buildDepends = [ base mtl text ];
- configureFlags = [ "-fbase4" ];
homepage = "http://hub.darcs.net/nibro/hsp";
description = "Haskell Server Pages is a library for writing dynamic server-side web pages";
license = stdenv.lib.licenses.bsd3;
@@ -61566,6 +63743,7 @@ self: {
homepage = "http://code.google.com/p/hsp";
description = "Facilitates running Haskell Server Pages web pages as CGI programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsparklines" = callPackage
@@ -61599,6 +63777,7 @@ self: {
homepage = "https://github.com/robstewart57/hsparql";
description = "A SPARQL query generator and DSL, and a client to query a SPARQL server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hspear" = callPackage
@@ -61776,6 +63955,7 @@ self: {
homepage = "https://github.com/hspec/hspec-expectations#readme";
description = "hspec-expectations with pretty printing on failure";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hspec-experimental" = callPackage
@@ -61786,8 +63966,10 @@ self: {
sha256 = "197c9x25r41xmaq84xqhi0kizxi7as7jn7k9klj7pq9fmd9hcg7m";
buildDepends = [ base hspec HUnit QuickCheck ];
testDepends = [ base hspec-meta ];
+ jailbreak = true;
description = "An experimental DSL for testing on top of Hspec";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hspec-jenkins" = callPackage
@@ -61842,8 +64024,8 @@ self: {
}:
mkDerivation {
pname = "hspec-server";
- version = "0.3.2";
- sha256 = "1q77inw8xrnpl14rwvpv0q1ci6axblcx45wi5b72hnchk7ay5a6x";
+ version = "0.4.0";
+ sha256 = "0spbg4nsmqr16pcl20kwgflw359lavpqg1gbngb4q3vb5mnzkfcw";
buildDepends = [
base containers hspec hspec-core hspec-expectations HUnit process
regex-posix temporary transformers
@@ -61862,6 +64044,7 @@ self: {
buildDepends = [ hspec test-shouldbe ];
description = "Convenience wrapper and utilities for hspec";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hspec-smallcheck" = callPackage
@@ -61895,9 +64078,11 @@ self: {
HandsomeSoup hspec hspec-core hxt lens mtl snap snap-core
snap-extras text transformers
];
+ jailbreak = true;
homepage = "https://github.com/dbp/hspec-snap";
description = "A library for testing with Hspec and the Snap Web Framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hspec-test-framework" = callPackage
@@ -61943,6 +64128,7 @@ self: {
testDepends = [ base hspec test-sandbox ];
description = "Hspec convenience functions for use with test-sandbox";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hspec-wai" = callPackage
@@ -62037,9 +64223,9 @@ self: {
buildDepends = [
base binary bytestring containers extensible-exceptions network
];
- configureFlags = [ "-fsmall_base" ];
description = "A client library for the spread toolkit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hspresent" = callPackage
@@ -62051,8 +64237,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base bytestring vty ];
+ jailbreak = true;
description = "A terminal presentation tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsprocess" = callPackage
@@ -62101,6 +64289,7 @@ self: {
extraLibraries = [ mysqlclient ];
description = "MySQL driver for HSQL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { mysqlclient = null;};
"hsql-odbc" = callPackage
@@ -62154,13 +64343,10 @@ self: {
testDepends = [ base containers directory QuickCheck tagged text ];
buildTools = [ c2hs ];
pkgconfigDepends = [ Qt5Core Qt5Gui Qt5Qml Qt5Quick Qt5Widgets ];
- configureFlags = [
- "-fuseexithook" "-fforceghcilib" "-fthreadedtestsuite"
- "-f-usepkgconfig"
- ];
homepage = "http://www.gekkou.co.uk/software/hsqml/";
description = "Haskell binding for Qt Quick";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { Qt5Core = null; Qt5Gui = null; Qt5Qml = null;
Qt5Quick = null; Qt5Widgets = null;};
@@ -62180,6 +64366,7 @@ self: {
homepage = "http://www.gekkou.co.uk/software/hsqml/";
description = "HsQML-based implementation of Nine Men's Morris";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsqml-demo-notes" = callPackage
@@ -62194,6 +64381,7 @@ self: {
homepage = "http://www.gekkou.co.uk/software/hsqml/";
description = "Sticky notes example program implemented in HsQML";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsqml-demo-samples" = callPackage
@@ -62205,10 +64393,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base hsqml OpenGL OpenGLRaw text ];
- configureFlags = [ "-fopengl" ];
+ jailbreak = true;
homepage = "http://www.gekkou.co.uk/software/hsqml/";
description = "HsQML sample programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsqml-morris" = callPackage
@@ -62224,9 +64413,11 @@ self: {
buildDepends = [
base containers deepseq directory hsqml OddWord tagged
];
+ jailbreak = true;
homepage = "http://www.gekkou.co.uk/";
description = "HsQML-based implementation of Nine Men's Morris";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsshellscript" = callPackage
@@ -62272,6 +64463,7 @@ self: {
base containers groom HUnit mtl parsec pretty syb template-haskell
test-framework test-framework-hunit transformers uniplate
];
+ jailbreak = true;
homepage = "http://jakewheat.github.com/hssqlppp/";
description = "SQL parser and type checker";
license = stdenv.lib.licenses.bsd3;
@@ -62291,6 +64483,7 @@ self: {
homepage = "http://code.haskell.org/hstatistics";
description = "Statistics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hstats" = callPackage
@@ -62303,6 +64496,7 @@ self: {
homepage = "http://github.com/unmarshal/hstats/";
description = "Statistical Computing in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hstatsd" = callPackage
@@ -62330,9 +64524,11 @@ self: {
buildDepends = [
base directory filepath ghc ghc-paths HUnit mtl QuickCheck random
];
+ jailbreak = true;
homepage = "http://bitbucket.org/dave4420/hstest/wiki/Home";
description = "Runs tests via QuickCheck1 and HUnit; like quickCheck-script but uses GHC api";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hstidy" = callPackage
@@ -62347,6 +64543,7 @@ self: {
homepage = "http://code.haskell.org/~morrow/code/haskell/hstidy";
description = "Takes haskell source on stdin, parses it, then prettyprints it to stdout";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hstorchat" = callPackage
@@ -62369,8 +64566,10 @@ self: {
base HUnit QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2
];
+ jailbreak = true;
description = "Distributed instant messaging over Tor";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hstradeking" = callPackage
@@ -62390,8 +64589,10 @@ self: {
configurator containers hoauth http-conduit lifted-base numbers
old-locale resourcet RSA safe text time transformers vector
];
+ jailbreak = true;
description = "Tradeking API bindings for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hstyle" = callPackage
@@ -62407,8 +64608,10 @@ self: {
buildDepends = [
base cmdargs directory filepath haskell-src-exts syb text vector
];
+ jailbreak = true;
description = "Checks Haskell source code for style compliance";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hstzaar" = callPackage
@@ -62425,9 +64628,11 @@ self: {
base cairo containers directory filepath glade gtk parallel
QuickCheck random xml
];
+ jailbreak = true;
homepage = "http://www.dcc.fc.up.pt/~pbv/stuff/hstzaar";
description = "A two player abstract strategy game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsubconvert" = callPackage
@@ -62450,6 +64655,7 @@ self: {
homepage = "https://github.com/jwiegley/hsubconvert";
description = "One-time, faithful conversion of Subversion repositories to Git";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hswip" = callPackage
@@ -62462,6 +64668,7 @@ self: {
extraLibraries = [ ncurses readline swipl ];
description = "embedding prolog in haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) ncurses; inherit (pkgs) readline;
swipl = null;};
@@ -62474,10 +64681,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base haskell-src-exts mtl utf8-string ];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
homepage = "http://patch-tag.com/r/nibro/hsx";
description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsx-jmacro" = callPackage
@@ -62494,6 +64702,7 @@ self: {
homepage = "http://www.happstack.com/";
description = "hsp+jmacro support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsx-xhtml" = callPackage
@@ -62506,6 +64715,7 @@ self: {
homepage = "http://code.google.com/hsp";
description = "XHTML utilities to use together with HSX";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsx2hs" = callPackage
@@ -62522,10 +64732,11 @@ self: {
base haskell-src-exts haskell-src-meta mtl template-haskell
utf8-string
];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
homepage = "http://hub.darcs.net/nibro/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
@@ -62538,6 +64749,7 @@ self: {
homepage = "http://github.com/aycanirican/hsyscall";
description = "FFI to syscalls";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsyslog" = callPackage
@@ -62563,6 +64775,7 @@ self: {
extraLibraries = [ com_err zephyr ];
description = "Simple libzephyr bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { com_err = null; zephyr = null;};
"htags" = callPackage
@@ -62621,6 +64834,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base process time ];
+ jailbreak = true;
description = "Timing utility for the command line";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -62720,9 +64934,11 @@ self: {
ascii base blaze-builder bytestring cmdargs hamlet http-enumerator
network text xmlhtml
];
+ jailbreak = true;
homepage = "http://github.com/tanakh/html2hamlet";
description = "HTML to Hamlet converter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"htodo" = callPackage
@@ -62734,7 +64950,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base HDBC HDBC-sqlite3 ];
- configureFlags = [ "-f-safe" ];
homepage = "http://github.com/pirapira/htodo";
description = "A todo application";
license = stdenv.lib.licenses.bsd3;
@@ -62762,6 +64977,7 @@ self: {
homepage = "https://github.com/cies/htoml";
description = "Parser for TOML files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"htrace" = callPackage
@@ -62771,7 +64987,6 @@ self: {
version = "0.1";
sha256 = "0ar1w9p6ppag2vp8kw6byirhfdfs4r639pjh5icnyiiliz6jkvlx";
buildDepends = [ base ];
- configureFlags = [ "-fsplit-base" ];
description = "Hierarchical tracing for debugging of lazy evaluation";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -62870,6 +65085,7 @@ self: {
version = "0.1.1";
sha256 = "12l892fix11mrvm10awwvv31y59q5rb6gb0sqjp6l4p4ym9ngqa3";
buildDepends = [ attoparsec base bytestring http-types ];
+ jailbreak = true;
homepage = "https://github.com/tlaitinen/http-attoparsec";
description = "Attoparsec parsers for http-types";
license = stdenv.lib.licenses.bsd3;
@@ -62899,7 +65115,6 @@ self: {
case-insensitive containers deepseq hspec http-types monad-control
network streaming-commons text time transformers zlib
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "https://github.com/snoyberg/http-client";
description = "An HTTP client engine, intended as a base layer for more user-friendly packages";
license = stdenv.lib.licenses.mit;
@@ -62946,6 +65161,7 @@ self: {
buildDepends = [
base bytestring http-client http-types lens network
];
+ jailbreak = true;
homepage = "http://github.com/reinh/http-client-lens";
description = "Optics for http-client";
license = stdenv.lib.licenses.bsd3;
@@ -62990,10 +65206,11 @@ self: {
base bytestring exceptions http-client http-media http-types
network network-uri
];
- configureFlags = [ "-fnetwork-uri" ];
+ jailbreak = true;
homepage = "https://github.com/spl/http-client-request-modifiers";
description = "Convenient monadic HTTP request modifiers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-client-streams" = callPackage
@@ -63008,7 +65225,7 @@ self: {
base bytestring HsOpenSSL http-client http-client-openssl
io-streams mtl transformers
];
- configureFlags = [ "-f-tls" ];
+ jailbreak = true;
description = "http-client for io-streams supporting openssl";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -63098,9 +65315,11 @@ self: {
http-conduit http-types HUnit lifted-base monad-control network
network-conduit resourcet socks text time tls transformers wai warp
];
+ jailbreak = true;
homepage = "https://github.com/exbb2/http-conduit-browser";
description = "Browser interface to the http-conduit package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-conduit-downloader" = callPackage
@@ -63118,7 +65337,6 @@ self: {
http-client http-conduit http-types lifted-base mtl network
network-uri old-locale resourcet time zlib
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "https://github.com/bazqux/http-conduit-downloader";
description = "HTTP downloader tailored for web-crawler needs";
license = stdenv.lib.licenses.bsd3;
@@ -63175,10 +65393,11 @@ self: {
http-types monad-control network tls tls-extra transformers
utf8-string zlib-enum
];
- configureFlags = [ "-f-network-bytestring" "-f-test" ];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/http-enumerator";
description = "HTTP client package with enumerator interface and HTTPS support. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-kit" = callPackage
@@ -63207,6 +65426,7 @@ self: {
sha256 = "1lcl0ylj8lq0i2b806k1yqvzbv9dg1m4ka9bmvmhz4z78kiahck1";
buildDepends = [ attoparsec base errors network-uri text ];
testDepends = [ base hspec hspec-attoparsec QuickCheck text ];
+ jailbreak = true;
homepage = "https://github.com/myfreeweb/http-link-header";
description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\"";
license = stdenv.lib.licenses.asl20;
@@ -63228,6 +65448,7 @@ self: {
homepage = "http://github.com/zmthy/http-media";
description = "Processing HTTP Content-Type and Accept headers";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-monad" = callPackage
@@ -63244,9 +65465,10 @@ self: {
base bytestring containers explicit-exception HTTP lazyio network
parsec transformers utility-ht
];
- configureFlags = [ "-f-buildtestserver" "-f-splitbase" ];
+ jailbreak = true;
description = "Monad abstraction for HTTP allowing lazy transfer and non-I/O simulation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-proxy" = callPackage
@@ -63265,10 +65487,11 @@ self: {
http-conduit http-types lifted-base network resourcet tls
transformers wai
];
- configureFlags = [ "-f-network-bytestring" ];
+ jailbreak = true;
homepage = "https://github.com/erikd/http-proxy";
description = "A library for writing HTTP and HTTPS proxies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-querystring" = callPackage
@@ -63329,6 +65552,7 @@ self: {
homepage = "http://code.galois.com/";
description = "A library for writing Haskell web servers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-shed" = callPackage
@@ -63342,6 +65566,7 @@ self: {
buildDepends = [ base network ];
description = "A simple websever with an interact style API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-streams" = callPackage
@@ -63375,6 +65600,7 @@ self: {
homepage = "http://research.operationaldynamics.com/projects/http-streams/";
description = "An HTTP client using io-streams";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"http-test" = callPackage
@@ -63424,6 +65650,7 @@ self: {
version = "0.6.2.3";
sha256 = "1sbg4gpx8ikaxb15wflm7fnjnkr32fj07bva62z54dsm630s37fx";
buildDepends = [ base failure process transformers ];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/http-wget/tree/master";
description = "Provide a simple HTTP client interface by wrapping the wget command line tool. (deprecated)";
license = stdenv.lib.licenses.bsd3;
@@ -63451,7 +65678,6 @@ self: {
blaze-builder bytestring containers directory doctest filepath hex
hspec PSQueue text unordered-containers vector word8
];
- configureFlags = [ "-f-devel" ];
description = "HTTP/2.0 library including frames and HPACK";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -63465,7 +65691,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base network network-uri ];
- configureFlags = [ "-fnetwork-uri" "-f-buildexamples" ];
description = "A simple web-server with an interact style API";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -63489,9 +65714,11 @@ self: {
https-everywhere-rules-raw lens network pipes string-conversions
taggy-lens text text-icu
];
+ jailbreak = true;
homepage = "https://github.com/fmap/https-everywhere-rules";
description = "High-level access to HTTPS Everywhere rulesets";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"https-everywhere-rules-raw" = callPackage
@@ -63501,6 +65728,7 @@ self: {
version = "4.0";
sha256 = "0zm3znn42nzh9dlpjjn38nsz8rsb0gzl5rv6ngii1vfq534sddy6";
buildDepends = [ base directory filepath functor-infix text ];
+ jailbreak = true;
homepage = "https://github.com/fmap/https-everywhere-rules-raw";
description = "Low-level (i.e. XML) access to HTTPS Everywhere rulesets.";
license = stdenv.lib.licenses.gpl2;
@@ -63521,6 +65749,7 @@ self: {
];
description = "Specification of HTTP request/response generators and parsers";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"htune" = callPackage
@@ -63532,8 +65761,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ alsa-pcm base carray fft gloss ];
+ jailbreak = true;
description = "harmonic analyser and tuner for musical instruments";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"htzaar" = callPackage
@@ -63545,9 +65776,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base OpenGL random SDL ];
+ jailbreak = true;
homepage = "http://tomahawkins.org";
description = "A two player abstract strategy game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hub" = callPackage
@@ -63596,8 +65829,10 @@ self: {
mtl old-time process
];
extraLibraries = [ ruby ];
+ jailbreak = true;
description = "Support library for Hubris, the Ruby <=> Haskell bridge";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) ruby;};
"huffman" = callPackage
@@ -63623,10 +65858,10 @@ self: {
base containers directory filepath mtl parsec uniplate ycextra
yhccore
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Yhc";
description = "Hugs Front-end to Yhc Core";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hulk" = callPackage
@@ -63646,8 +65881,10 @@ self: {
containers Crypto directory fastirc filepath ghc-prim monad-extras
mtl network split strict text time unix utf8-string
];
+ jailbreak = true;
description = "IRC server written in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hums" = callPackage
@@ -63669,8 +65906,10 @@ self: {
network system-fileio system-filepath system-uuid text transformers
unix unordered-containers wai warp
];
+ jailbreak = true;
description = "Haskell UPnP Media Server";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hunit-gui" = callPackage
@@ -63682,9 +65921,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base cairo gtk haskell98 HUnit ];
+ jailbreak = true;
homepage = "http://patch-tag.com/r/kwallmar/hunit_gui/home";
description = "A GUI testrunner for HUnit";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hunit-parsec" = callPackage
@@ -63706,9 +65947,11 @@ self: {
sha256 = "1xj5f6l8nfanbf0xdwl2j2na45w5h0spi9a8pxqgpxx2rak145gs";
buildDepends = [ base HUnit rematch ];
testDepends = [ base hspec HUnit rematch ];
+ jailbreak = true;
homepage = "github.com/tcrayford/rematch";
description = "HUnit support for rematch";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hunp" = callPackage
@@ -63739,9 +65982,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base bytestring containers kangaroo ];
+ jailbreak = true;
homepage = "http://code.google.com/p/copperbox/";
description = "Extract function names from Windows DLLs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"husk-scheme" = callPackage
@@ -63759,9 +66004,6 @@ self: {
array base bytestring containers directory filepath ghc-paths
haskeline knob mtl parsec process time transformers utf8-string
];
- configureFlags = [
- "-fuseptrs" "-fuselibraries" "-f-useffi" "-f-usedebug"
- ];
homepage = "http://justinethier.github.com/husk-scheme";
description = "R5RS Scheme interpreter, compiler, and library";
license = stdenv.lib.licenses.mit;
@@ -63796,9 +66038,11 @@ self: {
buildDepends = [
base containers mtl old-locale parsec readline time
];
+ jailbreak = true;
homepage = "http://github.com/markusle/husky/tree/master";
description = "A simple command line calculator";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"huzzy" = callPackage
@@ -63810,6 +66054,7 @@ self: {
buildDepends = [ base easyplot ];
description = "Fuzzy logic library with support for T1, IT2, GT2";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hwall-auth-iitk" = callPackage
@@ -63863,8 +66108,10 @@ self: {
array base containers directory haskell98 html mtl network old-time
regex-compat text unix
];
+ jailbreak = true;
description = "Simple Haskell Web Server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hx" = callPackage
@@ -63892,8 +66139,10 @@ self: {
base fclabels network network-protocol-xmpp text transformers
xml-types
];
+ jailbreak = true;
description = "Haskell XMPP (Jabber Client) Command Line Interface (CLI)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hxournal" = callPackage
@@ -63916,10 +66165,11 @@ self: {
transformers TypeCompose xournal-builder xournal-parser
xournal-render xournal-types
];
- configureFlags = [ "-fpoppler" ];
+ jailbreak = true;
homepage = "http://ianwookim.org/hxournal";
description = "A pen notetaking program written in haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hxt" = callPackage
@@ -63936,7 +66186,7 @@ self: {
hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri
parsec
];
- configureFlags = [ "-fnetwork-uri" "-fnetwork-uri" ];
+ configureFlags = [ "-fnetwork-uri" ];
homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html";
description = "A collection of tools for processing XML with Haskell";
license = stdenv.lib.licenses.mit;
@@ -63953,9 +66203,11 @@ self: {
buildDepends = [
base binary bytestring bzlib deepseq haskell98 hxt
];
+ jailbreak = true;
homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html";
description = "Serialisation and deserialisation of HXT XmlTrees";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hxt-cache" = callPackage
@@ -63996,7 +66248,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base hxt parsec split ];
- configureFlags = [ "-f-examples" ];
homepage = "https://github.com/redneb/hxt-css";
description = "CSS selectors for HXT";
license = stdenv.lib.licenses.bsd3;
@@ -64033,7 +66284,6 @@ self: {
version = "0.4.1";
sha256 = "1bv8kcra2vgjbp7k0yczlrfbjh7ib2xixaqpnnd60hq84878nzb1";
buildDepends = [ base hxt ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.google.com/p/hxt-extras/";
description = "Extra functions for HXT";
license = stdenv.lib.licenses.bsd3;
@@ -64051,9 +66301,11 @@ self: {
base containers directory filepath haskell98 HTTP HUnit hxt network
parsec process
];
+ jailbreak = true;
homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html";
description = "A collection of tools for processing XML with Haskell (Filter variant)";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hxt-http" = callPackage
@@ -64067,7 +66319,6 @@ self: {
buildDepends = [
base bytestring HTTP hxt network network-uri parsec
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html";
description = "Interface to native Haskell HTTP package HTTP";
license = stdenv.lib.licenses.mit;
@@ -64113,7 +66364,6 @@ self: {
base containers hxt hxt-charproperties hxt-regex-xmlschema
network-uri parsec
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html";
description = "The HXT RelaxNG validator";
license = stdenv.lib.licenses.mit;
@@ -64181,8 +66431,10 @@ self: {
version = "0.2.2";
sha256 = "1il21mqmvvfdny5ksnyixj1wqhabvxqhccd6vj4dbzlvvf5yb6k1";
buildDepends = [ base bytestring encoding hxt mtl ];
+ jailbreak = true;
description = "Helper functions for HXT";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hxweb" = callPackage
@@ -64194,6 +66446,7 @@ self: {
buildDepends = [ base cgi fastcgi libxml mtl xslt ];
description = "Minimal webframework using fastcgi, libxml2 and libxslt";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hyahtzee" = callPackage
@@ -64226,7 +66479,7 @@ self: {
highlighting-kate mtl pandoc regex-pcre-builtin text
unordered-containers
];
- configureFlags = [ "-fthreaded" ];
+ jailbreak = true;
homepage = "http://sourrust.github.io/hyakko/";
description = "Literate-style Documentation Generator";
license = stdenv.lib.licenses.mit;
@@ -64244,6 +66497,7 @@ self: {
homepage = "http://repos.mine.nu/davve/darcs/hybrid";
description = "A implementation of a type-checker for Lambda-H";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hybrid-vectors" = callPackage
@@ -64267,10 +66521,11 @@ self: {
buildDepends = [ base hmatrix ];
testDepends = [ base ];
extraLibraries = [ sixense_x64 ];
- configureFlags = [ "-f-usepkgconfig" ];
+ jailbreak = true;
homepage = "https://github.com/mruegenberg/hydra-hs";
description = "Haskell binding to the Sixense SDK for the Razer Hydra";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { sixense_x64 = null;};
"hydra-print" = callPackage
@@ -64296,9 +66551,11 @@ self: {
test-framework-hunit test-framework-quickcheck2 test-framework-th
text time transformers unix
];
+ jailbreak = true;
homepage = "https://github.com/rrnewton/hydra-print";
description = "NCurses interface to view multiple ByteString streams in parallel";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hydrogen" = callPackage
@@ -64311,7 +66568,6 @@ self: {
sha256 = "03psq7m52bg3ks53ny7ra1g0hkwg62140q1fy0236b64jbk15yq1";
buildDepends = [ base bytestring containers mtl pretty text ];
testDepends = [ base Cabal containers mtl QuickCheck ];
- configureFlags = [ "-f-dev" ];
homepage = "https://www.github.com/ktvoelker/hydrogen";
description = "An alternate Prelude";
license = stdenv.lib.licenses.gpl3;
@@ -64404,6 +66660,7 @@ self: {
hydrogen-multimap hydrogen-version network nicify process random
regex-base regex-tdfa strict time transformers uuid
];
+ jailbreak = true;
homepage = "http://scravy.de/hydrogen-prelude/";
description = "Hydrogen Prelude";
license = stdenv.lib.licenses.mit;
@@ -64434,9 +66691,11 @@ self: {
version = "0.8";
sha256 = "14z2nf2af0ydqr2sm4r4cn252qn0hbacdc4z1lhyjnin66djb1a8";
buildDepends = [ base containers hydrogen-prelude parsec time ];
+ jailbreak = true;
homepage = "https://scravy.de/hydrogen-util/";
description = "Hydrogen Tools";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hydrogen-version" = callPackage
@@ -64464,9 +66723,11 @@ self: {
base bytestring containers directory extensible-exceptions filepath
mtl network network-bytestring unix
];
+ jailbreak = true;
homepage = "http://github.com/tibbe/hyena";
description = "Simple web application server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hylolib" = callPackage
@@ -64480,8 +66741,10 @@ self: {
buildDepends = [
array base containers mtl pretty QuickCheck random uniplate
];
+ jailbreak = true;
description = "Tools for hybrid logics related programs";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hylotab" = callPackage
@@ -64493,10 +66756,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base hylolib mtl ];
- configureFlags = [ "-f-static" ];
homepage = "http://www.glyc.dc.uba.ar/intohylo/hylotab.php";
description = "Tableau based theorem prover for hybrid logics";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hyloutils" = callPackage
@@ -64508,9 +66771,9 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers hylolib mtl uniplate ];
- configureFlags = [ "-f-static" ];
description = "Very small programs for hybrid logics";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hyperdrive" = callPackage
@@ -64527,8 +66790,10 @@ self: {
base bytestring bytestring-lexing extensible-exceptions mtl network
pipes pretty
];
+ jailbreak = true;
description = "a fast, trustworthy HTTP(s) server built";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hyperloglog" = callPackage
@@ -64551,7 +66816,7 @@ self: {
base directory doctest filepath generic-deriving semigroups
simple-reflect
];
- configureFlags = [ "-f-lib-werror" "-ftest-doctests" ];
+ jailbreak = true;
homepage = "http://github.com/analytics/hyperloglog";
description = "An approximate streaming (constant space) unique object counter";
license = stdenv.lib.licenses.bsd3;
@@ -64568,9 +66833,11 @@ self: {
buildDepends = [
aeson attoparsec base bytestring http-enumerator http-types
];
+ jailbreak = true;
homepage = "https://github.com/mkscrg/hyperpublic-haskell";
description = "A thin wrapper for the Hyperpublic API";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hyphenate" = callPackage
@@ -64619,6 +66886,7 @@ self: {
homepage = "http://github.com/dgvncsz0f/hzk";
description = "Haskell client library for Apache Zookeeper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { zookeeper_mt = null;};
"hzulip" = callPackage
@@ -64641,6 +66909,7 @@ self: {
http-client-tls http-types lens lens-aeson mtl raw-strings-qq
scotty stm stm-conduit text transformers
];
+ jailbreak = true;
homepage = "https://github.com/yamadapc/hzulip";
description = "A haskell wrapper for the Zulip API";
license = stdenv.lib.licenses.gpl2;
@@ -64676,7 +66945,6 @@ self: {
data-default mime mtl network network-uri old-locale parsec text
time
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://github.com/tingtun/iCalendar";
description = "iCalendar data types, parser, and printer";
license = stdenv.lib.licenses.bsd3;
@@ -64691,6 +66959,7 @@ self: {
buildDepends = [ base interleavableIO mtl ];
description = "Version of Control.Exception using InterleavableIO.";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"iban" = callPackage
@@ -64733,9 +67002,11 @@ self: {
array base cgi containers directory filepath parsec QuickCheck
random time uniplate wl-pprint
];
+ jailbreak = true;
homepage = "http://ideas.cs.uu.nl/www/";
description = "Feedback services for intelligent tutoring systems";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ideas-math" = callPackage
@@ -64749,9 +67020,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers ideas parsec QuickCheck random ];
+ jailbreak = true;
homepage = "http://ideas.cs.uu.nl/www/";
description = "Interactive domain reasoner for logic and mathematics";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"idempotent" = callPackage
@@ -64762,6 +67035,7 @@ self: {
sha256 = "18jwk65mm50lqnbx9px4c8aa2x7n5dkrazzpzvdwq7cy4q614bj0";
buildDepends = [ base containers ];
testDepends = [ base containers hspec QuickCheck ];
+ jailbreak = true;
homepage = "https://github.com/prophile/idempotent";
description = "Idempotent monoids";
license = stdenv.lib.licenses.mit;
@@ -64783,6 +67057,7 @@ self: {
testDepends = [
base QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
description = "Numeric identifiers for values";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -64808,6 +67083,7 @@ self: {
];
description = "ID3v2 (tagging standard for MP3 files) library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"idna" = callPackage
@@ -64828,8 +67104,10 @@ self: {
version = "0.0.1.0";
sha256 = "1pd62pr1hyk565mxc15f5lxyms58bywcqll5ya6cnzw20lv4lzlz";
buildDepends = [ base punycode split ];
+ jailbreak = true;
description = "Converts Unicode hostnames into ASCII";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"idris" = callPackage
@@ -64838,13 +67116,14 @@ self: {
, boehmgc, bytestring, cheapskate, containers, deepseq, directory
, filepath, fingertree, gmp, happy, haskeline, lens, libffi, mtl
, network, optparse-applicative, parsers, pretty, process, split
- , text, time, transformers, trifecta, unix, unordered-containers
- , utf8-string, vector, vector-binary-instances, xml, zlib
+ , text, time, transformers, trifecta, uniplate, unix
+ , unordered-containers, utf8-string, vector
+ , vector-binary-instances, xml, zlib
}:
mkDerivation {
pname = "idris";
- version = "0.9.15.1";
- sha256 = "0r31jcqs9kgknm66v7bbcgj9md7z49sgvn0nhk1dwg8jj2rmfll8";
+ version = "0.9.16";
+ sha256 = "0mnjq05v145jyj2m2v2a33ibpyf788x63agcnlb33y21684mhvcm";
isLibrary = true;
isExecutable = true;
buildDepends = [
@@ -64852,16 +67131,14 @@ self: {
base64-bytestring binary blaze-html blaze-markup bytestring
cheapskate containers deepseq directory filepath fingertree
haskeline lens libffi mtl network optparse-applicative parsers
- pretty process split text time transformers trifecta unix
+ pretty process split text time transformers trifecta uniplate unix
unordered-containers utf8-string vector vector-binary-instances xml
zlib
];
buildTools = [ happy ];
extraLibraries = [ boehmgc gmp ];
- configureFlags = [
- "-fgmp" "-fffi" "-f-freestanding" "-frelease" "-f-curses" "-fgmp"
- "-fffi"
- ];
+ configureFlags = [ "-fgmp" "-fffi" ];
+ jailbreak = true;
homepage = "http://www.idris-lang.org/";
description = "Functional Programming Language with Dependent Types";
license = stdenv.lib.licenses.bsd3;
@@ -64874,7 +67151,6 @@ self: {
version = "0.7";
sha256 = "0ckhmy10l4kchr5bg1hlygrj86ij0wrj3r8in9g3c3jhh00dx3km";
buildDepends = [ base ];
- configureFlags = [ "-f-big_endian" ];
homepage = "http://github.com/patperry/hs-ieee";
description = "Utilities for dealing with IEEE floating point numbers";
license = stdenv.lib.licenses.bsd3;
@@ -64889,6 +67165,7 @@ self: {
buildDepends = [ base ];
description = "ieee-utils";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ieee-utils-tempfix" = callPackage
@@ -64906,10 +67183,9 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "ieee754";
- version = "0.7.4";
- sha256 = "1pxbkfa21mvc869n18nn7r29hcinxdbsnk68nlldzld8f6m13g1h";
+ version = "0.7.5";
+ sha256 = "0109mhyk76xnbsbpnnz3skpvxjckcldlpq93dvfgy5zahmswl4r3";
buildDepends = [ base ];
- configureFlags = [ "-f-big_endian" ];
homepage = "http://github.com/patperry/hs-ieee754";
description = "Utilities for dealing with IEEE floating point numbers";
license = stdenv.lib.licenses.bsd3;
@@ -64969,10 +67245,11 @@ self: {
resourcet text time transformers transformers-base
unordered-containers
];
- configureFlags = [ "-fconduit11" "-f-debug" ];
+ jailbreak = true;
homepage = "https://github.com/prowdsponsor/ig";
description = "Bindings to Instagram's API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ige-mac-integration" = callPackage
@@ -64986,9 +67263,11 @@ self: {
buildDepends = [ array base containers glib gtk haskell98 mtl ];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ ige-mac-integration ];
+ jailbreak = true;
homepage = "http://www.haskell.org/gtk2hs/";
description = "Bindings for the Gtk/OS X integration library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { ige-mac-integration = null;};
"igraph" = callPackage
@@ -65005,6 +67284,7 @@ self: {
homepage = "http://giorgidze.github.com/igraph/";
description = "Bindings to the igraph C library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { igraph = null;};
"igrf" = callPackage
@@ -65051,6 +67331,7 @@ self: {
strict system-argv0 system-filepath tar text transformers unix
unordered-containers utf8-string uuid vector zeromq4-haskell
];
+ jailbreak = true;
homepage = "http://gibiansky.github.io/IHaskell/";
description = "A Haskell backend kernel for the IPython project";
license = stdenv.lib.licenses.mit;
@@ -65067,9 +67348,11 @@ self: {
buildDepends = [
aeson aeson-pretty base classy-prelude here ihaskell
];
+ jailbreak = true;
homepage = "http://www.github.com/gibiansky/IHaskell-Display";
description = "IHaskell display instances for Aeson";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ihaskell-blaze" = callPackage
@@ -65083,6 +67366,7 @@ self: {
buildDepends = [
base blaze-html blaze-markup classy-prelude ihaskell
];
+ jailbreak = true;
homepage = "http://www.github.com/gibiansky/ihaskell";
description = "IHaskell display instances for blaze-html types";
license = stdenv.lib.licenses.mit;
@@ -65100,9 +67384,11 @@ self: {
base bytestring Chart Chart-cairo classy-prelude data-default-class
directory ihaskell
];
+ jailbreak = true;
homepage = "http://www.github.com/gibiansky/ihaskell";
description = "IHaskell display instances for charts types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ihaskell-diagrams" = callPackage
@@ -65117,9 +67403,11 @@ self: {
base bytestring classy-prelude diagrams diagrams-cairo diagrams-lib
directory ihaskell
];
+ jailbreak = true;
homepage = "http://www.github.com/gibiansky/ihaskell";
description = "IHaskell display instances for diagram types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ihaskell-display" = callPackage
@@ -65129,6 +67417,7 @@ self: {
version = "0.1.0.0";
sha256 = "1cbfhv9kg33dj28mn6mhhi363pz9jr2kw4ph64ga1fiawlj563l0";
buildDepends = [ base classy-prelude ihaskell ];
+ jailbreak = true;
homepage = "http://www.github.com/gibiansky/IHaskell";
description = "IHaskell display instances for basic types";
license = stdenv.lib.licenses.mit;
@@ -65146,9 +67435,11 @@ self: {
base base64-bytestring bytestring classy-prelude ihaskell magic
text utf8-string
];
+ jailbreak = true;
homepage = "http://www.github.com/gibiansky/IHaskell";
description = "IHaskell display instances for bytestrings";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ihttp" = callPackage
@@ -65167,6 +67458,7 @@ self: {
];
description = "Incremental HTTP iteratee";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"illuminate" = callPackage
@@ -65184,10 +67476,10 @@ self: {
xhtml
];
buildTools = [ alex ];
- configureFlags = [ "-fexecutable" ];
homepage = "http://github.com/jgm/illuminate";
description = "A fast syntax highlighting library built with alex";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"image-type" = callPackage
@@ -65239,7 +67531,6 @@ self: {
vector
];
pkgconfigDepends = [ ImageMagick MagickWand ];
- configureFlags = [ "-f-buildexamples" ];
description = "bindings to imagemagick library";
license = "unknown";
broken = true;
@@ -65263,6 +67554,7 @@ self: {
homepage = "https://bitbucket.org/balta2ar/imagepaste";
description = "Command-line image paste utility";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"imagesize-conduit" = callPackage
@@ -65296,6 +67588,7 @@ self: {
buildDepends = [
base bytestring directory HaskellNet HsOpenSSL network text
];
+ jailbreak = true;
description = "Downloads email from imap SSL servers";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -65316,8 +67609,10 @@ self: {
download-curl filepath glib gnomevfs gtk mtl parsec process split
utf8-string
];
+ jailbreak = true;
description = "Minimalistic reference manager";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"imgurder" = callPackage
@@ -65333,6 +67628,7 @@ self: {
buildDepends = [ base curl directory haskell98 hxt hxt-xpath url ];
description = "Uploader for Imgur";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"imm" = callPackage
@@ -65356,7 +67652,6 @@ self: {
resourcet text text-icu time timerep tls transformers
transformers-base utf8-string xdg-basedir xml
];
- configureFlags = [ "-fnetwork-uri" ];
description = "Retrieve RSS/Atom feeds and write one mail per new item in a maildir";
license = "unknown";
}) {};
@@ -65395,8 +67690,10 @@ self: {
ascetic base compilation containers directory indents MissingH
parsec richreports split staticanalysis text uxadt
];
+ jailbreak = true;
description = "Multi-platform parser analyzer and generator";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"implicit" = callPackage
@@ -65420,6 +67717,7 @@ self: {
homepage = "https://github.com/colah/ImplicitCAD";
description = "Math-inspired programmatic 2&3D CAD: CSG, bevels, and shells; gcode export..";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"implicit-params" = callPackage
@@ -65434,6 +67732,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "imports" = callPackage
+ ({ mkDerivation, base, directory, filepath, mtl }:
+ mkDerivation {
+ pname = "imports";
+ version = "0.1.2.0";
+ sha256 = "1iv4vcp5amf49i1bj9cbarb5xgbxm7wym54wgaa9kvl3391dmy3q";
+ buildDepends = [ base directory filepath mtl ];
+ testDepends = [ base directory filepath mtl ];
+ jailbreak = true;
+ homepage = "https://github.com/CindyLinz/Haskell-imports";
+ description = "Generate code for importing directories automatically";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"improve" = callPackage
({ mkDerivation, base, mtl, yices }:
mkDerivation {
@@ -65441,6 +67753,7 @@ self: {
version = "0.4.0";
sha256 = "0z8w7lgk263ickb4l3ajhvy1bjq38bbiiw6c048a3yn4h8kpg67a";
buildDepends = [ base mtl yices ];
+ jailbreak = true;
homepage = "http://github.com/tomahawkins/improve/wiki/ImProve";
description = "An imperative, verifiable programming language for high assurance applications";
license = stdenv.lib.licenses.bsd3;
@@ -65475,9 +67788,11 @@ self: {
base containers directory filepath IndentParser mtl parsec
presburger pretty
];
+ jailbreak = true;
homepage = "https://github.com/adamgundry/inch/";
description = "A type-checker for Haskell with integer constraints";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"include-file" = callPackage
@@ -65536,6 +67851,7 @@ self: {
];
description = "type classes for incremental updates to data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"indentation" = callPackage
@@ -65545,10 +67861,11 @@ self: {
version = "0.2.0.0";
sha256 = "1gn6v6l2d3a6nilkr4zg9ci9z9wh5027k2cdkd8hg5w964cccgs1";
buildDepends = [ base mtl parsec parsers trifecta ];
- configureFlags = [ "-ftrifecta" "-fparsec" ];
+ jailbreak = true;
homepage = "https://bitbucket.org/mdmkolbe/indentation";
description = "Indentation sensitive parsing combinators for Parsec";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"indentparser" = callPackage
@@ -65560,7 +67877,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base mtl parsec ];
- configureFlags = [ "-f-examples" ];
homepage = "http://www.cse.iitk.ac.in/users/ppk/code/HASKELL/indentparser";
description = "A parser for indentation based structures";
license = stdenv.lib.licenses.publicDomain;
@@ -65622,6 +67938,7 @@ self: {
version = "0.1.1";
sha256 = "0mhzk2smcli5mk6ghcxpbnq58adryf42s50qmqrj72sxsfd7a09r";
buildDepends = [ base bifunctors indexed mtl pointed ];
+ jailbreak = true;
homepage = "https://github.com/reinerp/indexed-extras";
description = "Indexed functors, monads and comonads that require extensions to Haskell98";
license = stdenv.lib.licenses.bsd3;
@@ -65648,6 +67965,7 @@ self: {
buildDepends = [ base gtk HDBC HDBC-sqlite3 ];
description = "Indian Language Font Converter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"indices" = callPackage
@@ -65660,6 +67978,7 @@ self: {
testDepends = [ base QuickCheck ];
description = "Multi-dimensional statically bounded indices";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"infer-upstream" = callPackage
@@ -65675,9 +67994,11 @@ self: {
buildDepends = [
ansi-wl-pprint base github optparse-applicative parsec process text
];
+ jailbreak = true;
homepage = "https://github.com/silky/infer-upstream";
description = "Find the repository from where a given repo was forked";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"infinite-search" = callPackage
@@ -65702,7 +68023,9 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base binary Cabal filepath ghc irc plugins ];
+ jailbreak = true;
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"infix" = callPackage
@@ -65733,6 +68056,7 @@ self: {
homepage = "https://github.com/stackbuilders/inflections-hs";
description = "Inflections library for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"inflist" = callPackage
@@ -65746,6 +68070,7 @@ self: {
homepage = "https://bitbucket.org/eegg/inflist";
description = "An infinite list type and operations thereon";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"influxdb" = callPackage
@@ -65770,9 +68095,6 @@ self: {
base http-client HUnit mtl tasty tasty-hunit tasty-quickcheck
tasty-th text vector
];
- configureFlags = [
- "-fnetwork-uri" "-fretry-050" "-faeson-070" "-f-examples"
- ];
homepage = "https://github.com/maoe/influxdb-haskell";
description = "Haskell client library for InfluxDB";
license = stdenv.lib.licenses.bsd3;
@@ -65795,9 +68117,11 @@ self: {
pandoc persistent persistent-postgresql shakespeare text time yesod
yesod-auth yesod-core yesod-form
];
+ jailbreak = true;
homepage = "http://doomanddarkness.eu/pub/informative";
description = "A yesod subsite serving a wiki";
license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ini" = callPackage
@@ -65836,6 +68160,7 @@ self: {
version = "0.2.1.0";
sha256 = "1iw82rzw2w3y40zndz3mxpa7k5ds8zs87ccvp228s4zva0mp5ddl";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/skypers/inject-function";
description = "Monadic functions with injected parameters";
license = stdenv.lib.licenses.gpl3;
@@ -65850,6 +68175,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ aether base text ];
+ jailbreak = true;
description = "Console client for encyclopedias";
license = stdenv.lib.licenses.gpl3;
broken = true;
@@ -65905,6 +68231,7 @@ self: {
buildDepends = [ base instant-generics mtl ];
description = "Heterogenous Zipper in Instant Generics";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"instinct" = callPackage
@@ -65942,6 +68269,7 @@ self: {
testDepends = [
base nats QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/hvr/int-cast";
description = "Checked conversions between integral types";
license = stdenv.lib.licenses.bsd3;
@@ -65967,6 +68295,7 @@ self: {
homepage = "http://projects.haskell.org/~malcolm/integer-pure";
description = "A pure-Haskell implementation of arbitrary-precision Integers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"integration" = callPackage
@@ -65998,8 +68327,22 @@ self: {
homepage = "https://github.com/rrnewton/intel-aes/wiki";
description = "Hardware accelerated AES encryption and Random Number Generation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { intel_aes = null;};
+ "interchangeable" = callPackage
+ ({ mkDerivation, base, containers }:
+ mkDerivation {
+ pname = "interchangeable";
+ version = "0.0.1.0";
+ sha256 = "0j7jk7qnc74pl6fhwxy71v9i34s5ycgqxj2v9y9xig2i1n91isl7";
+ buildDepends = [ base containers ];
+ jailbreak = true;
+ homepage = "https://github.com/arowM/interchangeable";
+ description = "A type class for interchangeable data";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"interleavableGen" = callPackage
({ mkDerivation, base, directory, haskell-src, hint, mtl }:
mkDerivation {
@@ -66011,6 +68354,7 @@ self: {
buildDepends = [ base directory haskell-src hint mtl ];
description = "Generates a version of a module using InterleavableIO";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"interleavableIO" = callPackage
@@ -66022,6 +68366,7 @@ self: {
buildDepends = [ base mtl ];
description = "Use other Monads in functions that asks for an IO Monad";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"interleave" = callPackage
@@ -66076,10 +68421,11 @@ self: {
buildDepends = [
base explicit-exception HPDF parsec process transformers utility-ht
];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/internetmarke/";
description = "Shell command for constructing custom stamps for German Post";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"interpol" = callPackage
@@ -66144,6 +68490,7 @@ self: {
buildDepends = [ base haskell-src-meta-mwotton template-haskell ];
description = "QuasiQuoter for Ruby-style multi-line interpolated strings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"interpolatedstring-qq-mwotton" = callPackage
@@ -66154,8 +68501,10 @@ self: {
version = "0.1.1";
sha256 = "1cwhy4jwbl50nglfw0wfmdr3rrg33dqskw0wq06prx14x22yshbk";
buildDepends = [ base haskell-src-meta-mwotton template-haskell ];
+ jailbreak = true;
description = "DO NOT USE THIS. interpolatedstring-qq works now.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"interpolation" = callPackage
@@ -66168,7 +68517,6 @@ self: {
isExecutable = true;
buildDepends = [ base utility-ht ];
testDepends = [ base QuickCheck utility-ht ];
- configureFlags = [ "-fhmatrix" "-f-buildexamples" ];
homepage = "http://code.haskell.org/~thielema/interpolation/";
description = "piecewise linear and cubic Hermite interpolation";
license = stdenv.lib.licenses.bsd3;
@@ -66184,7 +68532,6 @@ self: {
sha256 = "02qb44ga2yfsymkfixy3fdp943r2flwrsaqhb0pjddr3ixzm4ap9";
buildDepends = [ array base distributive ghc-prim ];
testDepends = [ base directory doctest filepath ];
- configureFlags = [ "-ftest-doctests" ];
homepage = "http://github.com/ekmett/intervals";
description = "Interval Arithmetic";
license = stdenv.lib.licenses.bsd3;
@@ -66206,10 +68553,10 @@ self: {
filepath hscurses mtl network-fancy SDL SDL-gfx SDL-ttf stm time
transformers vector
];
- configureFlags = [ "-f-server" "-fgame" "-fcurses" "-fsdl" ];
homepage = "http://mbays.freeshell.org/intricacy";
description = "A game of competitive puzzle-design";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"intset" = callPackage
@@ -66224,7 +68571,6 @@ self: {
testDepends = [
base QuickCheck test-framework test-framework-quickcheck2
];
- configureFlags = [ "-f-testing" ];
homepage = "https://github.com/pxqr/intset";
description = "Pure, mergeable, succinct Int sets";
license = stdenv.lib.licenses.bsd3;
@@ -66319,6 +68665,7 @@ self: {
buildDepends = [ base ];
description = "An API for generating TIMBER style reactive objects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"io-storage" = callPackage
@@ -66355,9 +68702,7 @@ self: {
test-framework-hunit test-framework-quickcheck2 text time
transformers vector zlib zlib-bindings
];
- configureFlags = [
- "-fNoInteractiveTests" "-f-nointeractivetests"
- ];
+ configureFlags = [ "-fNoInteractiveTests" ];
description = "Simple, composable, and easy-to-use stream I/O";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -66374,6 +68719,7 @@ self: {
base bytestring http-client http-client-tls io-streams mtl
transformers
];
+ jailbreak = true;
description = "http-client for io-streams";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -66427,6 +68773,7 @@ self: {
homepage = "http://www.cybervisible.fr/ip6addr";
description = "Command-line tools to deal with IPv6 Addresses text representation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ipatch" = callPackage
@@ -66443,10 +68790,10 @@ self: {
base bytestring darcs directory filepath hashed-storage process
unix
];
- configureFlags = [ "-f-darcs-beta" ];
homepage = "http://darcs.nomeata.de/ipatch";
description = "interactive patch editor";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ipc" = callPackage
@@ -66460,8 +68807,10 @@ self: {
buildDepends = [
base binary bytestring dlist mtl network network-bytestring stm
];
+ jailbreak = true;
description = "High level inter-process communication library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ipcvar" = callPackage
@@ -66496,9 +68845,9 @@ self: {
];
buildTools = [ c2hs ];
pkgconfigDepends = [ ipopt nlopt ];
- configureFlags = [ "-fnlopt" "-f-build_examples" ];
description = "haskell binding to ipopt and nlopt including automatic differentiation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) ipopt; inherit (pkgs) nlopt;};
"ipprint" = callPackage
@@ -66543,8 +68892,10 @@ self: {
buildDepends = [
base containers mtl parsec QuickCheck safe syb utf8-string
];
+ jailbreak = true;
description = "iptables rules parser/printer library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"iptadmin" = callPackage
@@ -66567,9 +68918,11 @@ self: {
network old-time pam parsec process random safe template-haskell
time unix utf8-string
];
+ jailbreak = true;
homepage = "http://iptadmin.117.su";
description = "web-interface for iptables";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ipython-kernel" = callPackage
@@ -66584,9 +68937,11 @@ self: {
aeson base bytestring cereal containers text unix uuid
zeromq4-haskell
];
+ jailbreak = true;
homepage = "http://github.com/gibiansky/IHaskell";
description = "A library for creating kernels for IPython frontends";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"irc" = callPackage
@@ -66662,6 +69017,7 @@ self: {
base bytestring containers directory filepath irc mtl network
old-locale parsec random SafeSemaphore stm time unix
];
+ jailbreak = true;
homepage = "http://hub.darcs.net/stepcut/ircbot";
description = "A library for writing irc bots";
license = stdenv.lib.licenses.bsd3;
@@ -66675,6 +69031,7 @@ self: {
sha256 = "1bn0m9x89pqknz8gn8gk9is6w6px4hznp3fqqb5dxwssmmjm99zm";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ireal" = callPackage
@@ -66744,7 +69101,6 @@ self: {
testDepends = [
base directory doctest filepath QuickCheck template-haskell
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/isdicom";
description = "An executable and library to determine if a file is a DICOM file";
license = stdenv.lib.licenses.bsd3;
@@ -66757,6 +69113,7 @@ self: {
version = "0.3.0.2";
sha256 = "10f09br33xy5ldl924kfnnlc5ilwq44hd17s2qdf9jm75q4sa7d5";
buildDepends = [ base vacuum ];
+ jailbreak = true;
description = "Check whether a value has been evaluated";
license = stdenv.lib.licenses.mit;
}) {};
@@ -66772,6 +69129,7 @@ self: {
buildDepends = [ base gtk3 ];
description = "A program to show the size of image and whether suitable for wallpaper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"islink" = callPackage
@@ -66800,15 +69158,16 @@ self: {
];
description = "Advanced ESMTP library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"iso3166-country-codes" = callPackage
- ({ mkDerivation, base, http-conduit }:
+ ({ mkDerivation, base }:
mkDerivation {
pname = "iso3166-country-codes";
- version = "0.20140203.6";
- sha256 = "1pmlrqfav9d7pij5kri9q18bhamdj3phl1jrfd3dxbm8ambp57bd";
- buildDepends = [ base http-conduit ];
+ version = "0.20140203.7";
+ sha256 = "1cfmrkrx5wdcr8rrwakhmv0a5bxipxc3l7p4z5nxzl5nrjrli79s";
+ buildDepends = [ base ];
description = "A datatype for ISO 3166 country codes";
license = "LGPL";
}) {};
@@ -66866,6 +69225,7 @@ self: {
aeson base bytestring data-default ghc-prim http-conduit text
unordered-containers uri vector
];
+ jailbreak = true;
homepage = "https://github.com/reinerp/isohunt";
description = "Bindings to the isoHunt torrent search API";
license = stdenv.lib.licenses.bsd3;
@@ -66906,6 +69266,7 @@ self: {
homepage = "https://github.com/JohnLato/iter-stats";
description = "iteratees for statistical processing";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"iterIO" = callPackage
@@ -66922,9 +69283,11 @@ self: {
ListLike mtl network old-locale process stringsearch time unix
];
extraLibraries = [ zlib ];
+ jailbreak = true;
homepage = "http://www.scs.stanford.edu/~dm/iterIO";
description = "Iteratee-based IO with pipe operators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) zlib;};
"iterable" = callPackage
@@ -66958,9 +69321,11 @@ self: {
QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 transformers transformers-base unix
];
+ jailbreak = true;
homepage = "http://www.tiresiaspress.us/haskell/iteratee";
description = "Iteratee-based I/O";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"iteratee-compress" = callPackage
@@ -66971,9 +69336,9 @@ self: {
sha256 = "1j5w3pfi8mx88wfg6fwrj5jccfp8spw0jwb4zh3yyzg1jacrpal4";
buildDepends = [ base bytestring iteratee mtl ];
extraLibraries = [ bzip2 zlib ];
- configureFlags = [ "-f-debug" ];
description = "Enumeratees for compressing and decompressing streams";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) bzip2; inherit (pkgs) zlib;};
"iteratee-mtl" = callPackage
@@ -66989,7 +69354,7 @@ self: {
buildDepends = [
base bytestring containers ListLike MonadCatchIO-mtl mtl unix
];
- configureFlags = [ "-f-buildtests" "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://inmachina.net/~jwlato/haskell/iteratee";
description = "Iteratee-based I/O";
license = stdenv.lib.licenses.bsd3;
@@ -67006,8 +69371,10 @@ self: {
buildDepends = [
base iteratee ListLike parsec reference transformers
];
+ jailbreak = true;
description = "Package allowing parsec parser initeratee";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"iteratee-stm" = callPackage
@@ -67017,9 +69384,11 @@ self: {
version = "0.1.2";
sha256 = "1916phr07ckvm571rspswqr93z22la0mkxghvzljr0vgd1zi4p0x";
buildDepends = [ base iteratee stm stm-chans transformers ];
+ jailbreak = true;
homepage = "http://www.tiresiaspress.us/~jwlato/haskell/iteratee-stm";
description = "Concurrent iteratees using STM";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"iterio-server" = callPackage
@@ -67034,9 +69403,11 @@ self: {
base bytestring filepath iterIO ListLike monadIO mtl network split
transformers unix
];
+ jailbreak = true;
homepage = "https://github.com/alevy/iterio-server";
description = "Library for building servers with IterIO";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivar-simple" = callPackage
@@ -67048,6 +69419,7 @@ self: {
buildDepends = [ base ];
description = "Write once concurrency primitives";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivor" = callPackage
@@ -67064,6 +69436,7 @@ self: {
homepage = "http://www.dcs.st-and.ac.uk/~eb/Ivor/";
description = "Theorem proving library based on dependent type theory";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivory" = callPackage
@@ -67077,9 +69450,11 @@ self: {
buildDepends = [
base containers monadLib parsec pretty template-haskell th-lift
];
+ jailbreak = true;
homepage = "http://smaccmpilot.org/languages/ivory-introduction.html";
description = "Safe embedded C programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivory-backend-c" = callPackage
@@ -67096,9 +69471,11 @@ self: {
ivory-opts language-c-quote mainland-pretty monadLib process srcloc
template-haskell
];
+ jailbreak = true;
homepage = "http://smaccmpilot.org/languages/ivory-introduction.html";
description = "Ivory C backend";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivory-bitdata" = callPackage
@@ -67114,9 +69491,11 @@ self: {
buildDepends = [
base ivory ivory-backend-c monadLib parsec template-haskell
];
+ jailbreak = true;
homepage = "http://smaccmpilot.org/languages/ivory-introduction.html";
description = "Ivory bit-data support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivory-examples" = callPackage
@@ -67135,9 +69514,11 @@ self: {
mainland-pretty monadLib pretty QuickCheck template-haskell
wl-pprint
];
+ jailbreak = true;
homepage = "http://smaccmpilot.org/languages/ivory-introduction.html";
description = "Ivory examples";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivory-hw" = callPackage
@@ -67151,9 +69532,11 @@ self: {
buildDepends = [
base filepath ivory ivory-backend-c ivory-bitdata
];
+ jailbreak = true;
homepage = "http://smaccmpilot.org/languages/ivory-introduction.html";
description = "Ivory hardware model (STM32F4)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivory-opts" = callPackage
@@ -67167,9 +69550,11 @@ self: {
buildDepends = [
base containers dlist fgl filepath ivory monadLib
];
+ jailbreak = true;
homepage = "http://smaccmpilot.org/languages/ivory-introduction.html";
description = "Ivory compiler optimizations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivory-quickcheck" = callPackage
@@ -67179,9 +69564,11 @@ self: {
version = "0.1.0.0";
sha256 = "0jbfpsmz8kq0h9gg5lm44pcdzhv8kv2rr554m4bic2bny94hnsjd";
buildDepends = [ base ivory monadLib QuickCheck random ];
+ jailbreak = true;
homepage = "http://smaccmpilot.org/languages/ivory-introduction.html";
description = "QuickCheck driver for Ivory";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivory-stdlib" = callPackage
@@ -67191,9 +69578,11 @@ self: {
version = "0.1.0.0";
sha256 = "1a3d9916rgrznr5ci79ki918xg6xxd81krn8irv9wbp8h8ird2xq";
buildDepends = [ base filepath ivory ];
+ jailbreak = true;
homepage = "http://smaccmpilot.org/languages/ivory-introduction.html";
description = "Ivory standard library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ivy-web" = callPackage
@@ -67232,9 +69621,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base preprocessor-tools syb ];
+ jailbreak = true;
homepage = "http://www.eecs.harvard.edu/~tov/pubs/haskell-session-types/";
description = "A preprocessor for expanding \"ixdo\" notation for indexed monads";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ixmonad" = callPackage
@@ -67259,7 +69650,6 @@ self: {
buildDepends = [
base containers safecopy syb syb-with-class template-haskell
];
- configureFlags = [ "-fbase4" ];
homepage = "http://happstack.com";
description = "Efficient relational queries on Haskell sets";
license = stdenv.lib.licenses.bsd3;
@@ -67301,6 +69691,7 @@ self: {
];
description = "CLI (command line interface) to YQL";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"j2hs" = callPackage
@@ -67319,8 +69710,10 @@ self: {
java-bridge-extras java-reflect mtl named-records split strict
strings syb transformers
];
+ jailbreak = true;
description = "j2hs";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jack" = callPackage
@@ -67338,7 +69731,6 @@ self: {
non-negative transformers unix
];
pkgconfigDepends = [ jack2 ];
- configureFlags = [ "-f-buildexamples" "-fjackfree" "-fpkgconfig" ];
homepage = "http://www.haskell.org/haskellwiki/JACK";
description = "Bindings for the JACK Audio Connection Kit";
license = "GPL";
@@ -67355,6 +69747,7 @@ self: {
pkgconfigDepends = [ jack2 ];
description = "DEPRECATED Bindings to the JACK Audio Connection Kit";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) jack2;};
"jackminimix" = callPackage
@@ -67364,9 +69757,11 @@ self: {
version = "0.1";
sha256 = "03ysmgg5f3dsimskqw5vpnrv5jg4gf1gd0khmf0s1ilfm1jc1nfd";
buildDepends = [ base hosc ];
+ jailbreak = true;
homepage = "http://www.renickbell.net/doku.php?id=jackminimix";
description = "control JackMiniMix";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jacobi-roots" = callPackage
@@ -67393,6 +69788,7 @@ self: {
buildDepends = [
base containers directory monads-fd transformers
];
+ jailbreak = true;
description = "Jailed IO monad";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -67419,6 +69815,7 @@ self: {
sha256 = "025ryrz87bii3401nq0bhyigzrs6lkippds6r4h0qzpq4pg8l7m0";
buildDepends = [ base ];
testDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/jalaali/jalaali-hs";
description = "Convert Jalaali and Gregorian calendar systems to each other";
license = stdenv.lib.licenses.mit;
@@ -67440,10 +69837,11 @@ self: {
];
buildTools = [ c2hs ];
extraLibraries = [ cblas f77blas lapack lapacke ];
- configureFlags = [ "-f-build_lapacke" ];
+ jailbreak = true;
homepage = "https://github.com/cgo/jalla";
description = "Higher level functions for linear algebra. Wraps BLAS and LAPACKE.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { cblas = null; f77blas = null; lapack = null;
lapacke = null;};
@@ -67480,7 +69878,6 @@ self: {
buildDepends = [
array base binary bytestring regex-tdfa zip-archive
];
- configureFlags = [ "-fsplitbase" ];
description = "Tool for searching java classes, members and fields in classfiles and JAR archives";
license = "GPL";
}) {};
@@ -67501,10 +69898,6 @@ self: {
hint mtl multimap named-records names split strings syb
transformers unix
];
- configureFlags = [
- "-f-examples" "-f-osx_framework" "-fosx_gui" "-f-debug"
- "-f-no_tools" "-f-only_core"
- ];
description = "Bindings to the JNI and a high level interface generator";
license = stdenv.lib.licenses.mit;
}) {};
@@ -67516,6 +69909,7 @@ self: {
version = "0.99";
sha256 = "0wjxm0h5xlsab7iphcabb66c7gjxy7hyb502inlj5zxq1ic5ghzv";
buildDepends = [ base java-bridge transformers ];
+ jailbreak = true;
description = "Utilities for working with the java-bridge package";
license = stdenv.lib.licenses.mit;
}) {};
@@ -67527,7 +69921,6 @@ self: {
version = "0.0.4";
sha256 = "1ms8m95mara3pp7qdg8jn2ajbq3zj8pnbs1b9jhpxbdkl5220768";
buildDepends = [ base diet ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/java-character";
description = "Functions to simulate Java's Character class";
license = stdenv.lib.licenses.bsd3;
@@ -67540,6 +69933,7 @@ self: {
version = "0.99";
sha256 = "1vdfq3c8chqhss6jiy139yrm45mij4kjdwxf2wrsfm4064j0n3wc";
buildDepends = [ base containers hx java-bridge ];
+ jailbreak = true;
description = "Tools for reflecting on Java classes";
license = stdenv.lib.licenses.mit;
}) {};
@@ -67556,10 +69950,10 @@ self: {
isExecutable = true;
buildDepends = [ base binary bytestring language-java-classfile ];
testDepends = [ base directory doctest filepath QuickCheck ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/javasf";
description = "A utility to print the SourceFile attribute of one or more Java class files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"javav" = callPackage
@@ -67572,10 +69966,10 @@ self: {
isExecutable = true;
buildDepends = [ base ];
testDepends = [ base directory doctest filepath QuickCheck ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/javav";
description = "A utility to print the target version of Java class files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jcdecaux-vls" = callPackage
@@ -67589,6 +69983,7 @@ self: {
buildDepends = [
aeson base bytestring http-conduit text transformers
];
+ jailbreak = true;
homepage = "http://github.com/Herzult/jcdecaux-vls";
description = "JCDecaux self-service bicycles API client";
license = stdenv.lib.licenses.mit;
@@ -67607,6 +70002,7 @@ self: {
buildDepends = [
base binary bytestring containers mtl network transformers
];
+ jailbreak = true;
homepage = "https://github.com/VictorDenisov/jdi";
description = "Implementation of Java Debug Interface";
license = stdenv.lib.licenses.gpl2;
@@ -67632,9 +70028,11 @@ self: {
testDepends = [
arrows base directory filepath hxt tasty tasty-golden transformers
];
+ jailbreak = true;
homepage = "http://github.com/achudnov/jespresso";
description = "Extract all JavaScript from an HTML page and consolidate it in one script";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jmacro" = callPackage
@@ -67654,7 +70052,6 @@ self: {
mtl parseargs parsec regex-posix safe syb template-haskell text
unordered-containers vector wl-pprint-text
];
- configureFlags = [ "-f-benchmarks" ];
description = "QuasiQuotation library for programmatic generation of Javascript code";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -67693,6 +70090,7 @@ self: {
homepage = "http://hub.darcs.net/gershomb/jmacro-rpc";
description = "Happstack backend for jmacro-rpc";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jmacro-rpc-snap" = callPackage
@@ -67732,9 +70130,11 @@ self: {
async base bytestring data-default directory hspec network
QuickCheck stm
];
+ jailbreak = true;
homepage = "https://github.com/gree/haskell-jobqueue";
description = "A job queue library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"join" = callPackage
@@ -67747,6 +70147,7 @@ self: {
homepage = "http://sulzmann.blogspot.com/2008/12/parallel-join-patterns-with-guards-and.html";
description = "Parallel Join Patterns with Guards and Propagation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"joinlist" = callPackage
@@ -67772,9 +70173,11 @@ self: {
buildDepends = [
base bytestring containers HTTP json mtl network old-locale time
];
+ jailbreak = true;
homepage = "http://rawr.mschade.me/jonathanscard/";
description = "An implementation of the Jonathan's Card API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jort" = callPackage
@@ -67786,8 +70189,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base gtk ];
+ jailbreak = true;
description = "JP's own ray tracer";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jose" = callPackage
@@ -67819,6 +70224,7 @@ self: {
homepage = "https://github.com/frasertweedale/hs-jose";
description = "Javascript Object Signing and Encryption and JSON Web Token library";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jose-jwt" = callPackage
@@ -67909,9 +70315,10 @@ self: {
testDepends = [
base hslogger lens template-haskell text transformers
];
- configureFlags = [ "-f-webkit" "-fjsffi" "-fgtk3" "-fghcjs" ];
+ jailbreak = true;
description = "High level interface for webkit-javascriptcore";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jsaddle-hello" = callPackage
@@ -67923,9 +70330,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base ghcjs-dom jsaddle lens ];
+ jailbreak = true;
homepage = "https://github.com/ghcjs/jsaddle-hello";
description = "JSaddle Hello World, an example package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jsc" = callPackage
@@ -67945,9 +70354,10 @@ self: {
base glib gtk3 hslogger jmacro lens template-haskell text
transformers webkitgtk3 webkitgtk3-javascriptcore
];
- configureFlags = [ "-fjmacro" "-f-webkit" "-fjsffi" "-fgtk3" ];
+ jailbreak = true;
description = "High level interface for webkit-javascriptcore";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"jsmw" = callPackage
@@ -67957,8 +70367,10 @@ self: {
version = "0.1";
sha256 = "1r36w2h5007qln56gnyyd7w6bcqiymn1jw287z0waf4fhpy02ygq";
buildDepends = [ base DOM mtl WebBits ];
+ jailbreak = true;
description = "Javascript Monadic Writer base package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"json" = callPackage
@@ -67972,9 +70384,6 @@ self: {
buildDepends = [
array base bytestring containers mtl parsec pretty syb text
];
- configureFlags = [
- "-f-mapdict" "-fgeneric" "-fpretty" "-fparsec" "-fsplit-base"
- ];
description = "Support for serialising Haskell to and from JSON";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -67990,6 +70399,7 @@ self: {
buildDepends = [
aeson base indexed indexed-free lens lens-aeson text
];
+ jailbreak = true;
homepage = "http://github.com/ocharles/json-assertions.git";
description = "Test that your (Aeson) JSON encoding matches your expectations";
license = stdenv.lib.licenses.bsd3;
@@ -68030,9 +70440,11 @@ self: {
base bytestring bytestring-nums bytestring-trie
bytestringparser-temporary containers utf8-string
];
+ jailbreak = true;
homepage = "http://github.com/jsnx/JSONb/";
description = "JSON parser that uses byte strings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"json-builder" = callPackage
@@ -68065,6 +70477,7 @@ self: {
base blaze-builder blaze-builder-enumerator bytestring containers
enumerator json-types text transformers
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/json-enumerator";
description = "Pure-Haskell utilities for dealing with JSON with the enumerator package. (deprecated)";
license = stdenv.lib.licenses.bsd3;
@@ -68182,7 +70595,6 @@ self: {
aeson base bytestring HUnit json-rpc-server mtl QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2 text
];
- configureFlags = [ "-f-demo" ];
description = "JSON-RPC 2.0 on the client side.";
license = stdenv.lib.licenses.mit;
}) {};
@@ -68205,7 +70617,6 @@ self: {
aeson base bytestring HUnit mtl test-framework test-framework-hunit
text unordered-containers vector
];
- configureFlags = [ "-f-demo" ];
description = "JSON-RPC 2.0 on the server side.";
license = stdenv.lib.licenses.mit;
}) {};
@@ -68264,6 +70675,7 @@ self: {
];
description = "A collection of JSON tools";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"json-types" = callPackage
@@ -68291,6 +70703,7 @@ self: {
];
description = "Library provides support for JSON";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"json2-hdbc" = callPackage
@@ -68306,6 +70719,7 @@ self: {
];
description = "Support JSON for SQL Database";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"json2-types" = callPackage
@@ -68363,7 +70777,6 @@ self: {
aeson attoparsec base bytestring conduit conduit-extra mtl text
transformers unordered-containers
];
- configureFlags = [ "-f-demo" ];
description = "JSON-RPC 2.0 server over a Conduit.";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -68423,6 +70836,7 @@ self: {
];
description = "Extract substructures from JSON by following a path";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"judy" = callPackage
@@ -68436,10 +70850,10 @@ self: {
buildDepends = [ base bytestring ghc-prim ];
testDepends = [ base hspec QuickCheck ];
extraLibraries = [ Judy ];
- configureFlags = [ "-f-unsafe" ];
homepage = "http://github.com/mwotton/judy";
description = "Fast, scalable, mutable dynamic arrays, maps and hashes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { Judy = null;};
"jukebox" = callPackage
@@ -68487,8 +70901,8 @@ self: {
}:
mkDerivation {
pname = "jwt";
- version = "0.5.1";
- sha256 = "010w57x16vwvmg6npwyylpbwg24bjdkjz8cjcn0573j56vn5j7vn";
+ version = "0.5.2";
+ sha256 = "1ks2dsi26cqz9q78lj6man14a86zdlkqv00lq1ffn00q3l7zxgmn";
buildDepends = [
aeson base base64-bytestring bytestring containers cryptohash
data-default http-types network network-uri scientific semigroups
@@ -68500,10 +70914,29 @@ self: {
QuickCheck scientific semigroups tasty tasty-hunit tasty-quickcheck
tasty-th text time unordered-containers vector
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "https://bitbucket.org/ssaasen/haskell-jwt";
description = "JSON Web Token (JWT) decoding and encoding";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "kafka-client" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, digest, dlist, hspec
+ , hspec-discover, network, QuickCheck, snappy, time, zlib
+ }:
+ mkDerivation {
+ pname = "kafka-client";
+ version = "0.7.0.0";
+ sha256 = "1qaz47qqrbg1k4jjvq30qy3j57vsa0pqz91dcgx67pvqqw13n7r2";
+ buildDepends = [
+ base bytestring cereal digest dlist network snappy time zlib
+ ];
+ testDepends = [
+ base bytestring cereal hspec hspec-discover QuickCheck time
+ ];
+ homepage = "https://github.com/abhinav/haskell-kafka-client";
+ description = "Low-level Haskell client library for Apache Kafka 0.7.";
+ license = stdenv.lib.licenses.mit;
}) {};
"kan-extensions" = callPackage
@@ -68532,9 +70965,11 @@ self: {
version = "0.4.0";
sha256 = "1l7b71dhrxd2g3nbqg3h0n5dvgxr23av1cy1f0mvw347y91rx36x";
buildDepends = [ array base ];
+ jailbreak = true;
homepage = "http://code.google.com/p/copperbox/";
description = "Binary parsing with random access";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kansas-comet" = callPackage
@@ -68571,10 +71006,11 @@ self: {
directory dotgen filepath netlist netlist-to-vhdl process random
sized-types strict template-haskell
];
- configureFlags = [ "-f-tools" "-f-unit" "-f-all" ];
+ jailbreak = true;
homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava";
description = "Kansas Lava is a hardware simulator and VHDL generator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kansas-lava-cores" = callPackage
@@ -68591,10 +71027,10 @@ self: {
ansi-terminal base bytestring data-default directory kansas-lava
network sized-types
];
- configureFlags = [ "-f-spartan3e" "-f-unit" "-f-all" ];
homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava";
description = "FPGA Cores Written in Kansas Lava";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kansas-lava-papilio" = callPackage
@@ -68610,8 +71046,10 @@ self: {
ansi-terminal base bytestring data-default directory filepath
kansas-lava kansas-lava-cores netlist network sized-types
];
+ jailbreak = true;
description = "Kansas Lava support files for the Papilio FPGA board";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kansas-lava-shake" = callPackage
@@ -68627,6 +71065,7 @@ self: {
];
description = "Shake rules for building Kansas Lava projects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"karakuri" = callPackage
@@ -68640,9 +71079,11 @@ self: {
buildDepends = [
base comonad containers minioperational mtl transformers
];
+ jailbreak = true;
homepage = "https://github.com/fumieval/karakuri";
description = "Good stateful automata";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"karver" = callPackage
@@ -68679,6 +71120,7 @@ self: {
filepath lens mtl parsec text url wreq zip-archive
];
testDepends = [ base bytestring directory mtl ];
+ jailbreak = true;
homepage = "https://github.com/davnils/katt";
description = "Client for the Kattis judge system";
license = stdenv.lib.licenses.bsd3;
@@ -68705,6 +71147,7 @@ self: {
version = "0.1.0";
sha256 = "0j9wlap9gx2szb5saa4pxm7mp2w132ki1p6mlcv0s0wy9rv6dnm7";
buildDepends = [ base lens linear vector vector-algorithms ];
+ jailbreak = true;
homepage = "http://github.com/bgamari/kd-tree";
description = "A simple k-d tree implementation";
license = stdenv.lib.licenses.bsd3;
@@ -68760,8 +71203,10 @@ self: {
directory filepath hslogger network optparse-applicative process
text unix unordered-containers yaml
];
+ jailbreak = true;
description = "Multi-process orchestration for development and integration testing";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"keter" = callPackage
@@ -68815,6 +71260,7 @@ self: {
];
description = "a dAmn ↔ IRC proxy";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"keyring" = callPackage
@@ -68826,7 +71272,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base udbus ];
- configureFlags = [ "-f-example" "-f-allbackends" ];
homepage = "https://github.com/lunaryorn/haskell-keyring";
description = "Keyring access";
license = stdenv.lib.licenses.mit;
@@ -68870,7 +71315,6 @@ self: {
old-locale optparse-applicative pbkdf process raw-strings-qq
regex-compat-tdfa safe setenv text time unordered-containers vector
];
- configureFlags = [ "-f-stacktrace" "-f-hpc" ];
homepage = "http://github.com/cdornan/keystore";
description = "Managing stores of secret things";
license = stdenv.lib.licenses.bsd3;
@@ -68900,6 +71344,7 @@ self: {
sha256 = "0yfyx4jyz0n3p2w6pca3nxc72s01240n3siy5sx883ldz706adls";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kicad-data" = callPackage
@@ -68918,9 +71363,11 @@ self: {
base ieee754 lens-family parsec parsec-numbers pretty-compact
QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://github.com/kasbah/haskell-kicad-data";
description = "Parser and writer for KiCad files";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kickass-torrents-dump-parser" = callPackage
@@ -68936,8 +71383,10 @@ self: {
base bytestring cassava hspec hspec-expectations string-qq text
vector
];
+ jailbreak = true;
description = "Parses kat.ph torrent dumps";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kickchan" = callPackage
@@ -68974,6 +71423,7 @@ self: {
];
description = "Process KIF iOS test logs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kinds" = callPackage
@@ -69007,6 +71457,7 @@ self: {
homepage = "http://github.com/nkpart/kit";
description = "A dependency manager for Xcode (Objective-C) projects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kmeans" = callPackage
@@ -69035,6 +71486,7 @@ self: {
];
description = "Sequential and parallel implementations of Lloyd's algorithm";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kmeans-vector" = callPackage
@@ -69076,8 +71528,10 @@ self: {
buildDepends = [
array base containers data-default deepseq mtl parallel vector yap
];
+ jailbreak = true;
description = "Khovanov homology computations";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"koellner-phonetic" = callPackage
@@ -69090,6 +71544,7 @@ self: {
testDepends = [ base HUnit ];
description = "\"map German words to code representing pronunciation\"";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kontrakcja-templates" = callPackage
@@ -69111,6 +71566,7 @@ self: {
mtl old-time string-templates syb test-framework
test-framework-hunit test-framework-quickcheck2 time
];
+ jailbreak = true;
description = "Utilities for working with many HStringTemplate templates from files";
license = stdenv.lib.licenses.bsd3;
broken = true;
@@ -69145,6 +71601,7 @@ self: {
homepage = "http://blog.malde.org/";
description = "The Korfu ORF Utility";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kqueue" = callPackage
@@ -69159,6 +71616,7 @@ self: {
homepage = "http://github.com/hesselink/kqueue";
description = "A binding to the kqueue event library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"krpc" = callPackage
@@ -69199,8 +71657,8 @@ self: {
({ mkDerivation, base, dlist, transformers }:
mkDerivation {
pname = "kure";
- version = "2.16.4";
- sha256 = "07qd3qhdwsi4hxlijnhqsziprsl3zmhj9271ha6iy79zcapwvpax";
+ version = "2.16.6";
+ sha256 = "14r28h3pywv87ksnw65jid90v2d3s4lzxm0m7i6wvww5080z804a";
buildDepends = [ base dlist transformers ];
homepage = "http://www.ittc.ku.edu/csdl/fpg/software/kure.html";
description = "Combinators for Strategic Programming";
@@ -69214,9 +71672,11 @@ self: {
version = "0.1.3";
sha256 = "0bfcmx1fz521vkc2lrbpyvaqcy4c29h5xp6wmyxvgrjjnq32ld1b";
buildDepends = [ base kure template-haskell ];
+ jailbreak = true;
homepage = "http://ittc.ku.edu/~andygill/kure.php";
description = "Generator for Boilerplate KURE Combinators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"kyotocabinet" = callPackage
@@ -69242,6 +71702,7 @@ self: {
homepage = "http://nonempty.org/software/haskell-l-bfgs-b";
description = "Bindings to L-BFGS-B, Fortran code for limited-memory quasi-Newton bound-constrained optimization";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { lbfgsb = null;};
"labeled-graph" = callPackage
@@ -69253,6 +71714,7 @@ self: {
buildDepends = [ base labeled-tree ];
description = "Labeled graph structure";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"labeled-tree" = callPackage
@@ -69281,9 +71743,11 @@ self: {
aeson async base bytestring cmdlib containers directory hslogger
mtl old-locale parsec random split text time transformers uuid
];
+ jailbreak = true;
homepage = "https://github.com/lucasdicioccio/laborantin-hs";
description = "an experiment management framework";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"labyrinth" = callPackage
@@ -69303,9 +71767,11 @@ self: {
base containers derive HTF HUnit lens monad-loops MonadRandom mtl
parsec QuickCheck random safecopy template-haskell transformers
];
+ jailbreak = true;
homepage = "https://github.com/koterpillar/labyrinth";
description = "A complicated turn-based game";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"labyrinth-server" = callPackage
@@ -69337,9 +71803,11 @@ self: {
vector wai wai-test wai-websockets warp websockets yesod
yesod-static
];
+ jailbreak = true;
homepage = "https://github.com/koterpillar/labyrinth-server";
description = "A complicated turn-based game - Web server";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lagrangian" = callPackage
@@ -69381,10 +71849,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-fexample" ];
homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools/LambdaBridge";
description = "A bridge from Haskell (on a CPU) to VHDL on a FPGA";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambda-canvas" = callPackage
@@ -69394,6 +71862,7 @@ self: {
version = "0.1";
sha256 = "14wl1w1sc0j1yjfad5v00346ccxp0grfs1677hnjqwisashdac92";
buildDepends = [ base GLUT mtl OpenGL time ];
+ jailbreak = true;
description = "Educational drawing canvas for FP explorers";
license = stdenv.lib.licenses.mit;
}) {};
@@ -69420,6 +71889,7 @@ self: {
homepage = "http://github.com/alios/lambda-devs";
description = "a Paralell-DEVS implementaion based on distributed-process";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambda-placeholders" = callPackage
@@ -69446,6 +71916,7 @@ self: {
homepage = "http://scravy.de/blog/2012-02-20/a-lambda-toolbox-in-haskell.htm";
description = "An application to work with the lambda calculus (for learning)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambda2js" = callPackage
@@ -69484,6 +71955,7 @@ self: {
homepage = "http://www.cse.unsw.edu.au/~chak/haskell/lambdaFeed/";
description = "RSS 2.0 feed generator";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdaLit" = callPackage
@@ -69535,6 +72007,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Lambdabot";
description = "Lambdabot is a development tool and advanced IRC bot";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdabot-utils" = callPackage
@@ -69554,6 +72027,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Lambdabot";
description = "Utility libraries for the advanced IRC bot, Lambdabot";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdacat" = callPackage
@@ -69569,9 +72043,11 @@ self: {
buildDepends = [
base cmdargs containers dyre glade gtk mtl network webkit
];
+ jailbreak = true;
homepage = "http://github.com/baldo/lambdacat";
description = "Webkit Browser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdacms-core" = callPackage
@@ -69583,8 +72059,8 @@ self: {
}:
mkDerivation {
pname = "lambdacms-core";
- version = "0.0.7.2";
- sha256 = "1b7x43bpi6nz8ff3dj4kj23zzzxb94kja7pyr3lzxmfjxbmgr3y6";
+ version = "0.0.7.3";
+ sha256 = "1a5i0jvqsvi0jvz1v3mvj6ip1fxi6000fzw4jl7qb87b0y3cggxm";
buildDepends = [
base blaze-html bytestring containers data-default esqueleto
file-embed friendly-time gravatar lists mime-mail old-locale
@@ -69602,8 +72078,8 @@ self: {
}:
mkDerivation {
pname = "lambdacms-media";
- version = "0.0.1";
- sha256 = "1ga1k86h2azccq90216hx47xf4qh0wjp9wfvzdm8232dcb0d28y5";
+ version = "0.0.2";
+ sha256 = "1cbgbkj22pj1nv6k5vcqzfwc2wrdkhr3966pl13d99jj7sfb5jw5";
buildDepends = [
base directory filepath lambdacms-core persistent shakespeare text
time yesod yesod-form
@@ -69624,6 +72100,7 @@ self: {
buildDepends = [ base editline mtl pretty ];
description = "A simple lambda cube type checker";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdacube-bullet" = callPackage
@@ -69636,6 +72113,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine";
description = "Example for combining LambdaCube and Bullet";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdacube-core" = callPackage
@@ -69649,6 +72127,7 @@ self: {
buildDepends = [
base bytestring bytestring-trie containers mtl vector
];
+ jailbreak = true;
homepage = "http://lambdacube3d.wordpress.com/";
description = "LambdaCube 3D IR";
license = stdenv.lib.licenses.bsd3;
@@ -69666,6 +72145,7 @@ self: {
base bytestring bytestring-trie containers ghc-prim lambdacube-core
mtl vector
];
+ jailbreak = true;
homepage = "http://lambdacube3d.wordpress.com/";
description = "LambdaCube 3D EDSL definition";
license = stdenv.lib.licenses.bsd3;
@@ -69689,6 +72169,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine";
description = "3D rendering engine written entirely in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdacube-examples" = callPackage
@@ -69703,6 +72184,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine";
description = "Examples for LambdaCube";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdacube-gl" = callPackage
@@ -69719,6 +72201,7 @@ self: {
lambdacube-core lambdacube-edsl language-glsl mtl OpenGLRaw
prettyclass vector
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine";
description = "OpenGL backend for LambdaCube graphics language (main package)";
license = stdenv.lib.licenses.bsd3;
@@ -69740,7 +72223,7 @@ self: {
lambdacube-edsl lambdacube-gl mtl OpenGLRaw stb-image time vect
vector
];
- configureFlags = [ "-f-bulletinstalled" ];
+ jailbreak = true;
homepage = "http://lambdacube3d.wordpress.com/";
description = "Samples for LambdaCube 3D";
license = stdenv.lib.licenses.bsd3;
@@ -69770,6 +72253,7 @@ self: {
homepage = "http://github.com/ashyisme/lambdatwit";
description = "Lambdabot running as a twitter bot. Similar to the @fsibot f# bot.";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdiff" = callPackage
@@ -69785,9 +72269,11 @@ self: {
buildDepends = [
attoparsec attoparsec-enumerator base bytestring enumerator gtk mtl
];
+ jailbreak = true;
homepage = "https://github.com/jamwt/lambdiff.git";
description = "Diff Viewer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lame-tester" = callPackage
@@ -69805,6 +72291,7 @@ self: {
homepage = "http://github.com/TheBizzle";
description = "A strange and unnecessary selective test-running library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-asn1" = callPackage
@@ -69816,7 +72303,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base parsec syb ];
- configureFlags = [ "-f-test" "-fsplitbase" ];
homepage = "http://patch-tag.com/r/adept/language-asn1";
description = "Parsing of ASN1 definitions";
license = stdenv.lib.licenses.bsd3;
@@ -69849,10 +72335,11 @@ self: {
ansi-terminal base cmdargs containers filepath HUnit lens mtl
parsec pretty random stream-monad time transformers
];
- configureFlags = [ "-f-tests" "-fboogaloo" ];
+ jailbreak = true;
homepage = "https://bitbucket.org/nadiapolikarpova/boogaloo";
description = "Interpreter and language infrastructure for Boogie";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-c" = callPackage
@@ -69868,9 +72355,6 @@ self: {
syb
];
buildTools = [ alex happy ];
- configureFlags = [
- "-fseparatesyb" "-fusebytestrings" "-fsplitbase"
- ];
homepage = "http://www.sivity.net/projects/language.c/";
description = "Analysis and generation of C code";
license = stdenv.lib.licenses.bsd3;
@@ -69887,6 +72371,7 @@ self: {
homepage = "http://github.com/ghulette/language-c-comments";
description = "Extracting comments from C code";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-c-inline" = callPackage
@@ -69902,7 +72387,6 @@ self: {
template-haskell
];
testDepends = [ base language-c-quote ];
- configureFlags = [ "-f-manualtests" ];
homepage = "https://github.com/mchakravarty/language-c-inline/";
description = "Inline C & Objective-C code in Haskell for language interoperability";
license = stdenv.lib.licenses.bsd3;
@@ -69939,6 +72423,7 @@ self: {
version = "0.2.2";
sha256 = "0b3yapn53bwaxia7b59kizzcxh1d3842as1cbkyzd096v8wsgwfa";
buildDepends = [ base bool-extras ];
+ jailbreak = true;
homepage = "https://github.com/tomlokhorst/language-cil";
description = "Manipulating Common Intermediate Language AST";
license = stdenv.lib.licenses.bsd3;
@@ -69964,7 +72449,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base mtl parsec pretty ];
- configureFlags = [ "-fexecutable" ];
description = "A library for the analysis and creation of Graphviz DOT files";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -70032,6 +72516,7 @@ self: {
homepage = "https://github.com/scottgw/language-eiffel";
description = "Parser and pretty printer for the Eiffel language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-fortran" = callPackage
@@ -70083,8 +72568,10 @@ self: {
version = "0.8";
sha256 = "1p545115x73q4mzfja50f4lxal97ydvz9r3wq6pvcqls2xgvxzvc";
buildDepends = [ array base parsec utf8-string ];
+ jailbreak = true;
description = "A library for analysis and synthesis of Go code";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-guess" = callPackage
@@ -70145,6 +72632,7 @@ self: {
];
description = "Parser for Java .class files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-javascript" = callPackage
@@ -70180,6 +72668,7 @@ self: {
homepage = "http://github.com/osa1/language-lua";
description = "Lua parser and pretty-printer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-mixal" = callPackage
@@ -70209,7 +72698,6 @@ self: {
process syb
];
buildTools = [ alex happy ];
- configureFlags = [ "-fseparatesyb" "-fusebytestrings" ];
homepage = "http://www.tiresiaspress.us/haskell/language-objc";
description = "Analysis and generation of Objective C code";
license = stdenv.lib.licenses.bsd3;
@@ -70243,6 +72731,7 @@ self: {
base Cabal HUnit QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 text
];
+ jailbreak = true;
description = "Pig parser in haskell";
license = stdenv.lib.licenses.mit;
}) {};
@@ -70277,9 +72766,11 @@ self: {
ansi-wl-pprint base Glob hspec HUnit lens parsec parsers
strict-base-types temporary text unix unordered-containers vector
];
+ jailbreak = true;
homepage = "http://lpuppet.banquise.net/";
description = "Tools to parse and evaluate the Puppet DSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-python" = callPackage
@@ -70311,6 +72802,7 @@ self: {
homepage = "http://www.cs.mu.oz.au/~bjpop/";
description = "Generate coloured XHTML for Python code";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-sh" = callPackage
@@ -70321,9 +72813,11 @@ self: {
version = "0.0.3.1";
sha256 = "12yjynd1sib1mxx4jc28gs1k3r7kl1qv7xhanvn635dkcmswsd5k";
buildDepends = [ base directory filepath mtl parsec pcre-light ];
+ jailbreak = true;
homepage = "http://code.haskell.org/shsh/";
description = "A package for parsing shell scripts";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-slice" = callPackage
@@ -70362,6 +72856,7 @@ self: {
homepage = "https://github.com/bitonic/language-spelling";
description = "Various tools to detect/correct mistakes in words";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-sqlite" = callPackage
@@ -70378,6 +72873,7 @@ self: {
homepage = "http://dankna.com/software/";
description = "Full parser and generator for SQL as implemented by SQLite3";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"language-typescript" = callPackage
@@ -70425,8 +72921,10 @@ self: {
ansi-wl-pprint base cmdargs directory filepath haskell98 haxr HDBC
HDBC-sqlite3 hsini HTTP mtl old-locale regex-compat tagsoup time
];
+ jailbreak = true;
description = "Tool to track security alerts on LWN";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"latest-npm-version" = callPackage
@@ -70450,9 +72948,11 @@ self: {
pipes-attoparsec pipes-bytestring pipes-http text text-format
transformers
];
+ jailbreak = true;
homepage = "https://github.com/passy/latest-npm-version";
description = "Find the latest version of a package on npm";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"latex" = callPackage
@@ -70488,10 +72988,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base containers hmidi mtl transformers ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "High and low-level interface to the Novation Launchpad midi controller";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lax" = callPackage
@@ -70516,6 +73016,7 @@ self: {
homepage = "http://github.com/duairc/layers";
description = "Modular type class machinery for monad transformer stacks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"layers-game" = callPackage
@@ -70534,6 +73035,7 @@ self: {
];
description = "A prototypical 2d platform game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"layout" = callPackage
@@ -70545,6 +73047,7 @@ self: {
buildDepends = [ base convertible hinduce-missingh ];
description = "Turn values into pretty text or markup";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"layout-bootstrap" = callPackage
@@ -70557,6 +73060,7 @@ self: {
homepage = "https://bitbucket.org/dpwiz/layout-bootstrap";
description = "Template and widgets for Bootstrap2 to use with Text.Blaze.Html5";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lazy-csv" = callPackage
@@ -70592,9 +73096,9 @@ self: {
version = "0.1.3";
sha256 = "0bc2n7x8fydmzc84yb5zbdaca1r4qwpk7zlvbgcycycr87fk7p7n";
buildDepends = [ array base ];
- configureFlags = [ "-fsplitbase" ];
description = "Efficient implementation of lazy monolithic arrays (lazy in indexes)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lazyio" = callPackage
@@ -70606,7 +73110,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base transformers unsafe ];
- configureFlags = [ "-f-buildtests" "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Lazy_IO";
description = "Run IO actions lazily while respecting their order";
license = stdenv.lib.licenses.bsd3;
@@ -70644,6 +73147,7 @@ self: {
buildDepends = [ array base ];
description = "L-BFGS optimization";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lca" = callPackage
@@ -70702,10 +73206,10 @@ self: {
rosezipper
];
testDepends = [ base HUnit ];
- configureFlags = [ "-fcmd" "-f-test" ];
homepage = "http://rampa.sk/static/ldif.html";
description = "The LDAP Data Interchange Format (LDIF) tools";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"leaf" = callPackage
@@ -70719,6 +73223,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base blaze-html directory filepath pandoc split ];
+ jailbreak = true;
homepage = "https://github.com/skypers/leaf";
description = "A simple portfolio generator";
license = stdenv.lib.licenses.gpl3;
@@ -70738,15 +73243,10 @@ self: {
base deepseq-bounded deepseq-generics generics-sop random seqaid
template-haskell
];
- configureFlags = [
- "-fuse_strict_blob" "-f-use_infinite_list"
- "-fuse_growing_list_reduction" "-fuse_growing_list" "-fprofile"
- "-fuse_second_module" "-f-using_sandbox" "-fstats"
- "-ftest_seqaidpp" "-f-omnitypic" "-fturn_on_seqaid_plugin"
- ];
homepage = "http://www.fremissant.net/leaky";
description = "Robust space leak, and its strictification";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"leankit-api" = callPackage
@@ -70793,8 +73293,10 @@ self: {
buildDepends = [
base gloss gnuplot not-gloss spatial-math vector-space
];
+ jailbreak = true;
description = "Haskell code for learning physics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"learn-physics-examples" = callPackage
@@ -70810,8 +73312,10 @@ self: {
buildDepends = [
base gloss gnuplot learn-physics not-gloss spatial-math
];
+ jailbreak = true;
description = "examples for learn-physics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"learning-hmm" = callPackage
@@ -70820,11 +73324,12 @@ self: {
}:
mkDerivation {
pname = "learning-hmm";
- version = "0.3.0.1";
- sha256 = "1cwiv96d655bz591gw7hgciwlh801k661llfbzp5ilf5rirzy0g1";
+ version = "0.3.1.0";
+ sha256 = "12sfx2dmlv290ycy29nxjrxsl55q0qhyrcfn0z2nwmx0gvprpgyh";
buildDepends = [
base containers deepseq hmatrix random-fu random-source vector
];
+ jailbreak = true;
homepage = "https://github.com/mnacamura/learning-hmm";
description = "Yet another library for hidden Markov models";
license = stdenv.lib.licenses.mit;
@@ -70876,12 +73381,10 @@ self: {
leksah-server ltk monad-loops QuickCheck text transformers
webkitgtk3
];
- configureFlags = [
- "-fnetwork-uri" "-f-loc" "-fgtk3" "-f-threaded" "-fdyre" "-f-yi"
- ];
homepage = "http://www.leksah.org";
description = "Haskell IDE written in Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"leksah-server" = callPackage
@@ -70909,10 +73412,11 @@ self: {
base conduit conduit-extra hslogger HUnit process resourcet
transformers
];
- configureFlags = [ "-fnetwork-uri" "-fthreaded" ];
+ jailbreak = true;
homepage = "http://leksah.org";
description = "Metadata collection for leksah";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lens" = callPackage
@@ -70945,12 +73449,6 @@ self: {
test-framework-quickcheck2 test-framework-th text transformers
unordered-containers vector
];
- configureFlags = [
- "-f-j" "-f-lib-werror" "-ftrustworthy" "-f-safe"
- "-ftest-properties" "-ftest-hunit" "-ftest-doctests" "-ftest-hlint"
- "-f-dump-splices" "-f-old-inline-pragmas" "-finlining"
- "-f-benchmark-uniplate"
- ];
homepage = "http://github.com/ekmett/lens/";
description = "Lenses, Folds and Traversals";
license = stdenv.lib.licenses.bsd3;
@@ -70970,7 +73468,6 @@ self: {
semigroups transformers
];
testDepends = [ base directory doctest filepath ];
- configureFlags = [ "-ftest-doctests" ];
homepage = "http://github.com/ekmett/lens-action/";
description = "Monadic Getters and Folds";
license = stdenv.lib.licenses.bsd3;
@@ -70993,7 +73490,6 @@ self: {
base directory doctest filepath generic-deriving semigroups
simple-reflect
];
- configureFlags = [ "-f-lib-werror" "-ftest-doctests" ];
homepage = "http://github.com/lens/lens-aeson/";
description = "Law-abiding lenses for aeson";
license = stdenv.lib.licenses.bsd3;
@@ -71056,9 +73552,11 @@ self: {
version = "4.0";
sha256 = "07hjkcy90m1zph2bq5a7nw2f7xg0ndnkqml9zwh7vy35sb7512c6";
buildDepends = [ base lens QuickCheck transformers ];
+ jailbreak = true;
homepage = "http://github.com/ekmett/lens/";
description = "QuickCheck properties for lens";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lens-sop" = callPackage
@@ -71091,6 +73589,7 @@ self: {
version = "0.1.0.0";
sha256 = "1hrp9d6qja7yc3zj68w3hylgflyfsvh79m8daw9030yjdxm525za";
buildDepends = [ base lens time ];
+ jailbreak = true;
description = "lens for Data.Time";
license = stdenv.lib.licenses.mit;
}) {};
@@ -71115,7 +73614,7 @@ self: {
sha256 = "0dj43hqrv198dgfnngq4l8kwnksqcm6nydcr1z1a5gqz5s99m4bn";
buildDepends = [ base monad-control mtl transformers ];
testDepends = [ base ];
- configureFlags = [ "-f-tests" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/LGtk";
description = "References which can be joined and on which lenses can be applied";
license = stdenv.lib.licenses.bsd3;
@@ -71140,8 +73639,8 @@ self: {
}:
mkDerivation {
pname = "leveldb-haskell";
- version = "0.6";
- sha256 = "1r76dvn8scnjfdw1i5cj3s5s1nqf2yib4jdydjnr8p6c8yvpp3z5";
+ version = "0.6.1";
+ sha256 = "1pc6fzjac4dxk0rspvb4ifiinx4da1ms37mwm6vc05140r0hqvbw";
isLibrary = true;
isExecutable = true;
buildDepends = [
@@ -71153,7 +73652,6 @@ self: {
tasty tasty-quickcheck temporary transformers
];
extraLibraries = [ leveldb snappy ];
- configureFlags = [ "-f-examples" ];
homepage = "http://github.com/kim/leveldb-haskell";
description = "Haskell bindings to LevelDB";
license = stdenv.lib.licenses.bsd3;
@@ -71178,10 +73676,10 @@ self: {
QuickCheck transformers
];
extraLibraries = [ leveldb ];
- configureFlags = [ "-f-examples" ];
homepage = "http://github.com/kim/leveldb-haskell";
description = "Haskell bindings to LevelDB";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) leveldb;};
"levmar" = callPackage
@@ -71194,6 +73692,7 @@ self: {
homepage = "https://github.com/basvandijk/levmar";
description = "An implementation of the Levenberg-Marquardt algorithm";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"levmar-chart" = callPackage
@@ -71206,9 +73705,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base Chart colour data-accessor levmar random ];
- configureFlags = [ "-f-example" ];
+ jailbreak = true;
description = "Plots the results of the Levenberg-Marquardt algorithm in a chart";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lgtk" = callPackage
@@ -71230,10 +73730,11 @@ self: {
monad-control mtl OpenGLRaw operational random random-shuffle
semigroups system-filepath transformers vector
];
- configureFlags = [ "-f-pure" "-f-gtk" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/LGtk";
description = "Lens GUI Toolkit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lha" = callPackage
@@ -71263,9 +73764,11 @@ self: {
array base containers directory filepath hgettext mtl parsec
process setlocale utf8-string wx wxcore
];
+ jailbreak = true;
homepage = "http://www.imn.htwk-leipzig.de/~abau/lhae";
description = "Simple spreadsheet program";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lhc" = callPackage
@@ -71289,12 +73792,10 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck time
unix xhtml
];
- configureFlags = [
- "-f-with-libs" "-flhc-pkg" "-f-lhc-regress" "-f-threaded" "-f-hpc"
- ];
homepage = "http://lhc.seize.it/";
description = "LHC Haskell Compiler";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lhe" = callPackage
@@ -71321,6 +73822,7 @@ self: {
buildDepends = [
base cmdargs filepath haskell-src-exts syb uu-parsinglib
];
+ jailbreak = true;
homepage = "http://spockz.github.com/lhs2texhl/";
description = "Literate highlighter preprocessor for lhs2tex";
license = stdenv.lib.licenses.mit;
@@ -71388,10 +73890,10 @@ self: {
buildDepends = [
base binary containers HUnit mtl parsec process QuickCheck
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://trac.loria.fr/~geni";
description = "A natural language generator (specifically, an FB-LTAG surface realiser)";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"libarchive-conduit" = callPackage
@@ -71406,6 +73908,7 @@ self: {
extraLibraries = [ archive ];
description = "Read many archive formats with libarchive and conduit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { archive = null;};
"libcspm" = callPackage
@@ -71422,9 +73925,11 @@ self: {
graph-wrapper hashable hashtables mtl pretty text value-supply
];
testDepends = [ base directory filepath mtl test-framework ];
+ jailbreak = true;
homepage = "https://github.com/tomgr/libcspm";
description = "A library providing a parser, type checker and evaluator for CSPM";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"libexpect" = callPackage
@@ -71437,6 +73942,7 @@ self: {
extraLibraries = [ expect tcl ];
description = "Library for interacting with console applications via pseudoterminals";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) expect; inherit (pkgs) tcl;};
"libffi" = callPackage
@@ -71498,6 +74004,7 @@ self: {
homepage = "https://bitbucket.org/bhris/libhbb";
description = "Backend for text editors to provide better Haskell editing support";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"libjenkins" = callPackage
@@ -71525,6 +74032,7 @@ self: {
];
description = "Jenkins API interface";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"liblastfm" = callPackage
@@ -71549,7 +74057,6 @@ self: {
lens-aeson network-uri profunctors pureMD5 text xml-conduit
xml-html-conduit-lens
];
- configureFlags = [ "-f-test-api" ];
description = "Lastfm API interface";
license = stdenv.lib.licenses.mit;
}) {};
@@ -71561,6 +74068,7 @@ self: {
version = "0.1.2";
sha256 = "19x0y70fn2pr06qsz4z6s67sym7dw5x3qa3z6jf3nmwncsy64qi2";
buildDepends = [ base bindings-DSL enumerator mtl vector ];
+ jailbreak = true;
homepage = "http://github.com/NathanHowell/liblinear-enumerator";
description = "liblinear iteratee";
license = stdenv.lib.licenses.bsd3;
@@ -71575,10 +74083,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-examples" ];
homepage = "http://www.eecs.harvard.edu/~mainland/projects/libffi";
description = "FFI interface to libltdl";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"libmpd" = callPackage
@@ -71613,6 +74121,7 @@ self: {
extraLibraries = [ libnotify ];
description = "Bindings to libnotify library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) libnotify;};
"libnvvm" = callPackage
@@ -71632,6 +74141,7 @@ self: {
homepage = "https://github.com/nvidia-compiler-sdk/hsnvvm";
description = "FFI binding to libNVVM, a compiler SDK component from NVIDIA";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { nvvm = null;};
"liboleg" = callPackage
@@ -71648,6 +74158,7 @@ self: {
homepage = "http://okmij.org/ftp/";
description = "An evolving collection of Oleg Kiselyov's Haskell modules";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"libpq" = callPackage
@@ -71661,6 +74172,7 @@ self: {
homepage = "http://github.com/tnarg/haskell-libpq";
description = "libpq binding for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) postgresql;};
"librandomorg" = callPackage
@@ -71670,6 +74182,7 @@ self: {
version = "0.0.1.0";
sha256 = "07xg59f48jw78mjbx83bz1rc2fxvdnlb08cdfd7hwkj43a127kxn";
buildDepends = [ base bytestring curl ];
+ jailbreak = true;
homepage = "https://github.com/supki/haskell-random.org";
description = "Wrapper to Random.org API";
license = stdenv.lib.licenses.mit;
@@ -71708,7 +74221,6 @@ self: {
buildTools = [ c2hs ];
extraLibraries = [ ssh2 ];
pkgconfigDepends = [ libssh2 ];
- configureFlags = [ "-f-example-client" "-f-gcrypt" ];
homepage = "https://github.com/portnov/libssh2-hs";
description = "FFI bindings to libssh2 SSH2 client library (http://libssh2.org/)";
license = stdenv.lib.licenses.bsd3;
@@ -71728,6 +74240,7 @@ self: {
homepage = "http://redmine.iportnov.ru/projects/libssh2-hs";
description = "Conduit wrappers for libssh2 FFI bindings (see libssh2 package)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"libstackexchange" = callPackage
@@ -71762,29 +74275,29 @@ self: {
];
extraLibraries = [ systemd-daemon ];
pkgconfigDepends = [ libsystemd-daemon ];
- configureFlags = [ "-fusepkgconfig" ];
description = "Haskell bindings for libsystemd-daemon";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { libsystemd-daemon = null; systemd-daemon = null;};
"libsystemd-journal" = callPackage
- ({ mkDerivation, base, bytestring, hashable, hsyslog, libsystemd
- , pipes, pipes-safe, text, transformers, uniplate, unix-bytestring
- , unordered-containers, uuid, vector
+ ({ mkDerivation, base, bytestring, hashable, hsyslog, pipes
+ , pipes-safe, systemd, text, transformers, uniplate
+ , unix-bytestring, unordered-containers, uuid, vector
}:
mkDerivation {
pname = "libsystemd-journal";
- version = "1.3.0";
- sha256 = "0cl5sjkk8a5hxhavjwdpbwx5pcylh3izm56z9sjndciczyrw0hjd";
+ version = "1.3.1";
+ sha256 = "1i66w6dhycvi3d0vnws91mc0k9v46qr0zpc35yliv1paipm1s51a";
buildDepends = [
base bytestring hashable hsyslog pipes pipes-safe text transformers
uniplate unix-bytestring unordered-containers uuid vector
];
- pkgconfigDepends = [ libsystemd ];
+ pkgconfigDepends = [ systemd ];
homepage = "http://github.com/ocharles/libsystemd-journal";
description = "Haskell bindings to libsystemd-journal";
license = stdenv.lib.licenses.bsd3;
- }) { libsystemd = null;};
+ }) { inherit (pkgs) systemd;};
"libtagc" = callPackage
({ mkDerivation, base, bytestring, glib, tag_c, taglib_c }:
@@ -71795,9 +74308,11 @@ self: {
buildDepends = [ base bytestring glib ];
extraLibraries = [ tag_c ];
pkgconfigDepends = [ taglib_c ];
+ jailbreak = true;
homepage = "https://patch-tag.com/r/AndyStewart/libtagc/home";
description = "Binding to TagLib C library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { tag_c = null; taglib_c = null;};
"libvirt-hs" = callPackage
@@ -71812,6 +74327,7 @@ self: {
homepage = "http://redmine.iportnov.ru/projects/libvirt-hs";
description = "FFI bindings to libvirt virtualization API (http://libvirt.org)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { virt = null;};
"libvorbis" = callPackage
@@ -71834,9 +74350,9 @@ self: {
sha256 = "01zvk86kg726lf2vnlr7dxiz7g3xwi5a4ak9gcfbwyhynkzjmsfi";
buildDepends = [ base bytestring mtl ];
extraLibraries = [ libxml2 ];
- configureFlags = [ "-fsmall_base" ];
description = "Binding to libxml2";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) libxml2;};
"libxml-enumerator" = callPackage
@@ -71850,6 +74366,7 @@ self: {
buildDepends = [
base bytestring enumerator libxml-sax text transformers xml-types
];
+ jailbreak = true;
homepage = "http://john-millikin.com/software/libxml-enumerator/";
description = "Enumerator-based API for libXML's SAX interface";
license = stdenv.lib.licenses.mit;
@@ -71877,8 +74394,10 @@ self: {
sha256 = "1szz8zkm1w8dbfgix3ii896sc4vljgivcgx8j7vpny4ci9sfmn5a";
buildDepends = [ base bytestring libxml ];
extraLibraries = [ xslt ];
+ jailbreak = true;
description = "Binding to libxslt";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { xslt = null;};
"life" = callPackage
@@ -71911,7 +74430,6 @@ self: {
async base HUnit lifted-base monad-control mtl tasty tasty-hunit
tasty-th
];
- configureFlags = [ "-fmonad-control-1" ];
homepage = "https://github.com/maoe/lifted-async";
description = "Run lifted IO operations asynchronously and wait for their results";
license = stdenv.lib.licenses.bsd3;
@@ -71951,6 +74469,7 @@ self: {
homepage = "http://icfpcontest2012.wordpress.com/";
description = "A boulderdash-like game and solution validator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ligature" = callPackage
@@ -71960,6 +74479,7 @@ self: {
version = "0.1.0.0";
sha256 = "03h30lbhppi9hmpsc8fhsrsad6w9sjs9n53lz76czz3iqaknkcrb";
buildDepends = [ base text ];
+ jailbreak = true;
description = "Expand ligatures in unicode text";
license = stdenv.lib.licenses.mit;
}) {};
@@ -71990,6 +74510,7 @@ self: {
buildTools = [ alex happy ];
description = "Lighttpd configuration file tools";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lighttpd-conf-qq" = callPackage
@@ -72006,6 +74527,7 @@ self: {
];
description = "A QuasiQuoter for lighttpd configuration files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lilypond" = callPackage
@@ -72020,6 +74542,7 @@ self: {
base data-default music-dynamics-literal music-pitch-literal
prettify process semigroups vector-space
];
+ jailbreak = true;
description = "Bindings to Lilypond";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -72039,6 +74562,7 @@ self: {
homepage = "https://github.com/amosr/limp";
description = "representation of Integer Linear Programs";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"limp-cbc" = callPackage
@@ -72050,10 +74574,10 @@ self: {
buildDepends = [ base containers limp vector ];
testDepends = [ base limp ];
buildTools = [ c2hs ];
- configureFlags = [ "-fembedded" ];
homepage = "https://github.com/amosr/limp-cbc";
description = "bindings for integer linear programming solver Coin/CBC";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lin-alg" = callPackage
@@ -72087,7 +74611,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring containers ];
- configureFlags = [ "-fsmall_base" ];
description = "Simple command-line utility to convert text into PDF";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -72147,6 +74670,7 @@ self: {
homepage = "http://github.com/cartazio/hs-cblas";
description = "A linear algebra library with bindings to BLAS and LAPACK";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"linear-maps" = callPackage
@@ -72158,9 +74682,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers HUnit ];
- configureFlags = [ "-f-pure" "-f-check" ];
+ jailbreak = true;
description = "Finite maps for linear use";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"linear-opengl" = callPackage
@@ -72186,6 +74711,7 @@ self: {
version = "0.1.1.0";
sha256 = "0i6z10pgqcykkygl6kq63phx5hvwi2d84j2f5vw4nrnic59sm9jy";
buildDepends = [ base random ];
+ jailbreak = true;
homepage = "https://github.com/capsjac/linear-vect";
description = "A low-dimensional linear algebra library, operating on the Num typeclass";
license = stdenv.lib.licenses.bsd3;
@@ -72203,6 +74729,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "linearscan" = callPackage
+ ({ mkDerivation, base, containers, free, hoopl, hspec
+ , hspec-expectations, HUnit, transformers
+ }:
+ mkDerivation {
+ pname = "linearscan";
+ version = "0.1.0.0";
+ sha256 = "1wkq5hyc85qxzlam5kb2zfvmrd7r6ypykv4b19hnsp3qgn4pmakx";
+ buildDepends = [ base transformers ];
+ testDepends = [
+ base containers free hoopl hspec hspec-expectations HUnit
+ transformers
+ ];
+ homepage = "http://github.com/jwiegley/linearscan";
+ description = "Linear scan register allocator, formally verified in Coq";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"linebreak" = callPackage
({ mkDerivation, base, hyphenation }:
mkDerivation {
@@ -72240,6 +74785,7 @@ self: {
homepage = "http://www.haskell.org/~petersen/haskell/linkchk/";
description = "linkchk is a network interface link ping monitor";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"linkcore" = callPackage
@@ -72253,6 +74799,7 @@ self: {
buildDepends = [ base containers extcore filepath process ];
description = "Combines multiple GHC Core modules into a single module";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"linkedhashmap" = callPackage
@@ -72287,7 +74834,7 @@ self: {
aeson base bytestring containers hscolour http-types lens text wai
wreq
];
- configureFlags = [ "-f-developer" ];
+ jailbreak = true;
homepage = "https://github.com/hlian/linklater";
description = "The fast and fun way to write Slack.com bots";
license = stdenv.lib.licenses.bsd3;
@@ -72305,8 +74852,10 @@ self: {
base monad-control transformers transformers-base
];
pkgconfigDepends = [ blkid ];
+ jailbreak = true;
description = "Linux libblkid";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { blkid = null;};
"linux-cgroup" = callPackage
@@ -72316,6 +74865,7 @@ self: {
version = "0.1.1.2";
sha256 = "0dd1ii1n6y9frilnkxikzahp9xrh3i334i7syvd8fyxp51dpzgy1";
buildDepends = [ base filepath ];
+ jailbreak = true;
description = "Very basic interface to the Linux CGroup Virtual Filesystem";
license = stdenv.lib.licenses.mit;
}) {};
@@ -72341,7 +74891,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base unix ];
- configureFlags = [ "-f-examples" ];
homepage = "https://github.com/redneb/linux-file-extents";
description = "Retrieve file fragmentation information under Linux";
license = stdenv.lib.licenses.bsd3;
@@ -72369,6 +74918,7 @@ self: {
homepage = "https://github.com/tensor5/linux-kmod";
description = "Linux kernel modules support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { libkmod = null;};
"linux-mount" = callPackage
@@ -72409,6 +74959,7 @@ self: {
base binary bytestring containers directory filepath ghc-events mtl
pretty process unix
];
+ jailbreak = true;
homepage = "https://github.com/bjpop/haskell-linux-perf";
description = "Read files generated by perf on Linux";
license = stdenv.lib.licenses.bsd3;
@@ -72425,8 +74976,10 @@ self: {
buildDepends = [
base bytestring mmap posix-waitpid process template-haskell unix
];
+ jailbreak = true;
description = "Wrapping of Linux' ptrace(2)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"linux-xattr" = callPackage
@@ -72486,6 +75039,7 @@ self: {
];
description = "Labeled IO library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lio-fs" = callPackage
@@ -72519,9 +75073,11 @@ self: {
directory filepath http-types lio simple simple-templates text wai
wai-extra warp
];
+ jailbreak = true;
homepage = "http://simple.cx";
description = "LIO support for the Simple web framework";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"liquid-fixpoint" = callPackage
@@ -72544,7 +75100,6 @@ self: {
unordered-containers
];
buildTools = [ ocaml ];
- configureFlags = [ "-f-build-external" "-f-z3mem" ];
homepage = "https://github.com/ucsd-progsys/liquid-fixpoint";
description = "Predicate Abstraction-based Horn-Clause/Implication Constraint Solver";
license = stdenv.lib.licenses.bsd3;
@@ -72599,7 +75154,6 @@ self: {
version = "0.4.1.3";
sha256 = "16w10xgh2y76q8aj5pgw4zq5p2phjzf5g1bmkacrm8gbwkp4v71s";
buildDepends = [ base ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~wren/";
description = "Common not-so-common functions for lists";
license = stdenv.lib.licenses.bsd3;
@@ -72613,6 +75167,7 @@ self: {
sha256 = "0rvj4qnbqs7m8zrrqwak508z26fa6ssirly1jzwh9sy5ksiyd6df";
buildDepends = [ base ];
testDepends = [ base tasty tasty-hunit ];
+ jailbreak = true;
description = "testing list fusion for success";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -72636,6 +75191,7 @@ self: {
version = "1.0";
sha256 = "147zb156g79a5p1w0b9vcvjy5x7nsrhng5rgjqq3cy3xpbam4nys";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "http://github.com/hellertime/list-mux";
description = "List Multiplexing";
license = stdenv.lib.licenses.bsd3;
@@ -72682,6 +75238,7 @@ self: {
homepage = "https://github.com/nikita-volkov/list-t";
description = "ListT done right";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"list-tries" = callPackage
@@ -72693,7 +75250,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base binary containers dlist ];
- configureFlags = [ "-f-testing" ];
+ jailbreak = true;
homepage = "http://iki.fi/matti.niemenmaa/list-tries/";
description = "Tries and Patricia tries: finite sets and maps for list keys";
license = stdenv.lib.licenses.bsd3;
@@ -72706,9 +75263,11 @@ self: {
version = "0.2.3.1";
sha256 = "0mkhnqn7wxspzxvivhaksxmxp7d6x9bazhl28nl9gck56bpa90sm";
buildDepends = [ base bytestring ListLike text vector ];
+ jailbreak = true;
homepage = "http://jwlato.webfactional.com/haskell/listlike-instances";
description = "Extra instances of the ListLike class";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lists" = callPackage
@@ -72763,6 +75322,7 @@ self: {
buildDepends = [ base ];
description = "Non-overloaded functions for concrete literals";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"live-sequencer" = callPackage
@@ -72786,10 +75346,11 @@ self: {
non-empty non-negative parsec pretty process stm stm-split strict
transformers unix utility-ht wx wxcore
];
- configureFlags = [ "-fhttpserver" "-fmplayer" "-fgui" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Live-Sequencer";
description = "Live coding of MIDI music";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ll-picosat" = callPackage
@@ -72801,6 +75362,7 @@ self: {
buildDepends = [ base ];
extraLibraries = [ picosat ];
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) picosat;};
"llrbtree" = callPackage
@@ -72830,10 +75392,11 @@ self: {
mtl network old-locale parsec pretty random template-haskell text
time utf8-string uuid
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
homepage = "http://wiki.secondlife.com/wiki/LLSD";
description = "An implementation of the LLSD data system";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm" = callPackage
@@ -72848,10 +75411,10 @@ self: {
base bytestring containers directory llvm-base mtl process
type-level
];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/bos/llvm";
description = "Bindings to the LLVM compiler toolkit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm-analysis" = callPackage
@@ -72877,11 +75440,9 @@ self: {
base bytestring containers filepath HUnit itanium-abi
llvm-data-interop transformers uniplate unordered-containers
];
- configureFlags = [
- "-f-debugandersengraph" "-f-debugandersenconstraints"
- ];
description = "A Haskell library for analyzing LLVM bitcode";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm-base" = callPackage
@@ -72892,10 +75453,10 @@ self: {
sha256 = "1f76nb85hnidp06v6lbl4aasac4h7ff9r8i054m8cnby2vc59r4n";
buildDepends = [ base mtl ];
extraLibraries = [ llvm ];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/bos/llvm";
description = "FFI bindings to the LLVM compiler toolkit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) llvm;};
"llvm-base-types" = callPackage
@@ -72924,10 +75485,10 @@ self: {
version = "3.0.1.0";
sha256 = "07q6dvwkg7h6qkwq0a7719g82anipj2pk0xid5p24pvzssa9z22w";
buildDepends = [ base llvm-base ];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/bos/llvm";
description = "Utilities for bindings to the LLVM compiler toolkit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm-data-interop" = callPackage
@@ -72948,6 +75509,7 @@ self: {
buildTools = [ c2hs ];
description = "A low-level data interoperability binding for LLVM";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm-extra" = callPackage
@@ -72963,10 +75525,11 @@ self: {
buildDepends = [
base containers cpuid llvm-tf tfp transformers unsafe utility-ht
];
- configureFlags = [ "-fcpuid" "-f-buildtools" "-f-buildexamples" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/llvm-extra/";
description = "Utility functions for the llvm interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm-general" = callPackage
@@ -72991,10 +75554,10 @@ self: {
transformers transformers-compat
];
buildTools = [ llvm-config ];
- configureFlags = [ "-f-debug" "-f-shared-llvm" ];
doCheck = false;
description = "General purpose LLVM bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { llvm-config = null;};
"llvm-general-pure" = callPackage
@@ -73017,6 +75580,7 @@ self: {
doCheck = false;
description = "Pure Haskell LLVM functionality (no FFI)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm-general-quote" = callPackage
@@ -73038,9 +75602,11 @@ self: {
base containers HUnit llvm-general-pure tasty tasty-hunit
];
buildTools = [ alex happy ];
+ jailbreak = true;
homepage = "https://github.com/tvh/llvm-general-quote";
description = "QuasiQuoting llvm code for llvm-general";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm-ht" = callPackage
@@ -73057,6 +75623,7 @@ self: {
homepage = "http://darcs.serpentine.com/llvm/";
description = "Bindings to the LLVM compiler toolkit with some custom extensions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm-pkg-config" = callPackage
@@ -73122,9 +75689,10 @@ self: {
buildDepends = [
base containers llvm-base process tfp transformers
];
- configureFlags = [ "-f-buildexamples" "-f-developer" ];
+ jailbreak = true;
description = "Bindings to the LLVM compiler toolkit using type families";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm-tools" = callPackage
@@ -73146,8 +75714,10 @@ self: {
llvm-analysis llvm-data-interop optparse-applicative parallel-io
process-conduit unordered-containers xml
];
+ jailbreak = true;
description = "Useful tools built on llvm-analysis";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lmdb" = callPackage
@@ -73161,6 +75731,7 @@ self: {
homepage = "http://github.com/dmbarbour/haskell-lmdb";
description = "Lightning MDB bindings";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { lmdb = null;};
"load-env" = callPackage
@@ -73229,6 +75800,7 @@ self: {
];
description = "Human exchangable identifiers and locators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"loch" = callPackage
@@ -73242,6 +75814,7 @@ self: {
buildDepends = [ base ];
description = "Support for precise error locations in source files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"loch-th" = callPackage
@@ -73274,7 +75847,6 @@ self: {
tagged-exception-core test-framework test-framework-hunit
test-framework-quickcheck2 transformers
];
- configureFlags = [ "-f-pedantic" ];
homepage = "https://github.com/trskop/lock-file";
description = "Provide exclusive access to a resource using lock file";
license = stdenv.lib.licenses.bsd3;
@@ -73299,6 +75871,7 @@ self: {
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "Michael and Scott lock-free queues";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"log-domain" = callPackage
@@ -73320,7 +75893,6 @@ self: {
base directory doctest filepath generic-deriving semigroups
simple-reflect
];
- configureFlags = [ "-f-lib-werror" "-ftest-doctests" ];
homepage = "http://github.com/analytics/log-domain/";
description = "Log-domain arithmetic";
license = stdenv.lib.licenses.bsd3;
@@ -73337,9 +75909,11 @@ self: {
buildDepends = [
base bytestring extensible-effects fast-logger time
];
+ jailbreak = true;
homepage = "https://github.com/ibotty/log-effect";
description = "An extensible log effect using extensible-effects";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"log2json" = callPackage
@@ -73351,6 +75925,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers json parsec ];
+ jailbreak = true;
homepage = "https://github.com/haroldl/log2json";
description = "Turn log file records into JSON";
license = "GPL";
@@ -73363,12 +75938,30 @@ self: {
version = "0.12.1";
sha256 = "1k13jjqv4df341hcj9hzrlisfx9wrsmyqvzi6ricx341d9z4ch05";
buildDepends = [ array base ];
- configureFlags = [ "-fuseffi" "-fsplitbase" ];
homepage = "http://code.haskell.org/~wren/";
description = "Log-domain floating point numbers";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "logger" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, containers, lens, mtl
+ , template-haskell, time, transformers, unagi-chan
+ }:
+ mkDerivation {
+ pname = "logger";
+ version = "0.1.0.0";
+ sha256 = "1v264iv34k13lz63ajci03iikc7ajqcl3dvcaxcv7m3h538km8vm";
+ buildDepends = [
+ ansi-wl-pprint base containers lens mtl template-haskell time
+ transformers unagi-chan
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/wdanilo/haskell-logger";
+ description = "Fast & extensible logging framework";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"logging" = callPackage
({ mkDerivation, base, binary, bytestring, fast-logger, hspec
, lifted-base, monad-control, monad-logger, old-locale, pcre-light
@@ -73455,6 +76048,7 @@ self: {
homepage = "http://src.seereason.com/logic-classes";
description = "Framework for propositional and first order logic, theorem proving";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"logicst" = callPackage
@@ -73464,7 +76058,6 @@ self: {
version = "0.1.0.0";
sha256 = "061x6g92334m2776xclh8mcbjind3l595pggc0g7yi4qzs31zbdc";
buildDepends = [ base logict transformers ];
- configureFlags = [ "-f-old-applicative" "-fsafe-st" ];
homepage = "http://github.com/sonyandy/logicst";
description = "Backtracking mutable references in the ST and IO monads";
license = stdenv.lib.licenses.bsd3;
@@ -73498,8 +76091,10 @@ self: {
base containers curl directory haskell98 HTTP markov-chain mtl
parsec process random regex-compat strict tagsoup xml
];
+ jailbreak = true;
description = "Useful utilities for the Lojban language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lojbanParser" = callPackage
@@ -73554,9 +76149,11 @@ self: {
base bytestring containers data-default hack hack-contrib mps mtl
template utf8-string
];
+ jailbreak = true;
homepage = "http://github.com/nfjinjing/loli";
description = "A minimum web dev DSL in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"loop" = callPackage
@@ -73591,6 +76188,7 @@ self: {
version = "1.0.0";
sha256 = "1yvw91gn1iyw72rbq455zzrbb3pq8ph9cv1c6800qzjyxx0694bd";
buildDepends = [ base mtl ];
+ jailbreak = true;
description = "A monad transformer supporting various styles of while loop";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -73626,6 +76224,7 @@ self: {
homepage = "http://www.esc.cam.ac.uk/people/research-students/emily-king";
description = "Find all biological feedback loops within an ecosystem graph";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lord" = callPackage
@@ -73659,6 +76258,7 @@ self: {
homepage = "https://github.com/rnons/lord";
description = "A command line interface to online radios";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"loris" = callPackage
@@ -73673,6 +76273,7 @@ self: {
homepage = "http://www.tiresiaspress.us/haskell/loris";
description = "interface to Loris API";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { loris = null;};
"loshadka" = callPackage
@@ -73689,6 +76290,7 @@ self: {
aeson base binary bytestring cryptohash directory hex network
process split
];
+ jailbreak = true;
homepage = "https://github.com/tvorcesky/loshadka";
description = "Minecraft 1.7 server proxy that answers to queries when the server is offline";
license = stdenv.lib.licenses.mit;
@@ -73705,9 +76307,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base containers haskell98 mtl wx wxcore ];
+ jailbreak = true;
homepage = "http://www.ncc.up.pt/~pbv/stuff/lostcities";
description = "An implementation of an adictive two-player card game";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lrucache" = callPackage
@@ -73736,9 +76340,11 @@ self: {
ansi-wl-pprint base base-unicode-symbols cmdtheline text usb
usb-id-database vector
];
+ jailbreak = true;
homepage = "https://github.com/roelvandijk/ls-usb";
description = "List USB devices";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lscabal" = callPackage
@@ -73754,10 +76360,10 @@ self: {
buildDepends = [
base bytestring Cabal containers directory filepath pretty process
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/~dons/code/lscabal";
description = "List exported modules from a set of .cabal files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lss" = callPackage
@@ -73776,6 +76382,7 @@ self: {
attoparsec base containers hspec2 language-css
language-css-attoparsec text
];
+ jailbreak = true;
homepage = "https://github.com/dbp/lss";
description = "Lexical Style Sheets - a language for writing styles that is focused around lexical (ie, static) scoping and re-use of large components";
license = stdenv.lib.licenses.bsd3;
@@ -73793,6 +76400,7 @@ self: {
buildDepends = [ base haskell98 uu-parsinglib wx wxcore ];
description = "Paint an L-System Grammar";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ltk" = callPackage
@@ -73807,10 +76415,10 @@ self: {
base Cabal containers filepath ghc glib gtk3 mtl parsec pretty text
transformers
];
- configureFlags = [ "-fgtk3" ];
homepage = "http://www.leksah.org";
description = "Leksah tool kit";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ltl" = callPackage
@@ -73853,8 +76461,10 @@ self: {
attoparsec base binary bytestring custom-prelude ghc-prim pretty
text
];
+ jailbreak = true;
description = "Library functions for reading and writing Lua chunks";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"luautils" = callPackage
@@ -73908,6 +76518,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "lucid-svg" = callPackage
+ ({ mkDerivation, base, lucid, text, transformers }:
+ mkDerivation {
+ pname = "lucid-svg";
+ version = "0.1.0.0";
+ sha256 = "1drl7br0f0n53g54d6ry619g7ac0vg5d0qf9h2caybwv269jrsvv";
+ buildDepends = [ base lucid text transformers ];
+ homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git";
+ description = "DSL for SVG using lucid for HTML";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"lucienne" = callPackage
({ mkDerivation, base, base64-bytestring, blaze-html, bson
, bytestring, compact-string-fix, feed, happstack, happstack-server
@@ -73924,9 +76546,11 @@ self: {
compact-string-fix feed happstack happstack-server HTTP mongoDB mtl
network SHA text time
];
+ jailbreak = true;
homepage = "http://www.imn.htwk-leipzig.de/~abau/lucienne";
description = "Server side feed aggregator/reader";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"luhn" = callPackage
@@ -73953,6 +76577,7 @@ self: {
];
description = "Purely FunctionaL User Interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"luka" = callPackage
@@ -73966,6 +76591,7 @@ self: {
homepage = "https://github.com/nfjinjing/luka";
description = "Simple ObjectiveC runtime binding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { objc = null;};
"lushtags" = callPackage
@@ -73977,9 +76603,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base haskell-src-exts text vector ];
+ jailbreak = true;
homepage = "https://github.com/bitc/lushtags";
description = "Create ctags compatible tags files for Haskell programs";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"luthor" = callPackage
@@ -73990,6 +76618,7 @@ self: {
sha256 = "023kckpcdn6n5dyq0dip0132jp1w30hdx1qb5hbsd3js86j52a12";
buildDepends = [ base mtl parsec ];
testDepends = [ base mtl parsec ];
+ jailbreak = true;
homepage = "https://github.com/Zankoku-Okuno/luthor";
description = "Tools for lexing and utilizing lexemes that integrate with Parsec";
license = stdenv.lib.licenses.bsd3;
@@ -74017,11 +76646,9 @@ self: {
test-framework-hunit test-framework-quickcheck2 test-framework-th
text time transformers vector
];
- configureFlags = [
- "-f-generic" "-f-getonce" "-f-chaselev" "-f-debug"
- ];
description = "Parallel scheduler, LVar data structures, and infrastructure to build more";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lvmlib" = callPackage
@@ -74082,6 +76709,7 @@ self: {
];
description = "A Lilypond-compiling music box";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lz4" = callPackage
@@ -74135,6 +76763,7 @@ self: {
test-framework-hunit test-framework-quickcheck2
];
extraLibraries = [ lzma ];
+ jailbreak = true;
homepage = "http://github.com/alphaHeavy/lzma-enumerator";
description = "Enumerator interface for lzma/xz compression";
license = stdenv.lib.licenses.bsd3;
@@ -74149,7 +76778,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base binary parsec process ];
- configureFlags = [ "-f-cli" "-fsplit-base" ];
description = "Obtain the host MAC address on *NIX and Windows";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -74298,6 +76926,7 @@ self: {
homepage = "http://www.scannedinavian.com/~shae/mage-1.0pre35.tar.gz";
description = "Rogue-like";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { curses = null;};
"magic" = callPackage
@@ -74310,6 +76939,7 @@ self: {
extraLibraries = [ magic ];
description = "Interface to C file/magic library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { magic = null;};
"magma" = callPackage
@@ -74342,6 +76972,7 @@ self: {
homepage = "http://kagami.touhou.ru/projects/show/mahoro";
description = "ImageBoards to XMPP gate";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"maid" = callPackage
@@ -74406,6 +77037,7 @@ self: {
homepage = "https://github.com/mietek/mailchimp-subscribe/";
description = "MailChimp subscription request handler";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mailgun" = callPackage
@@ -74424,6 +77056,7 @@ self: {
http-client-multipart http-conduit monad-control network text
transformers
];
+ jailbreak = true;
homepage = "https://github.com/AndrewRademacher/mailgun";
description = "Connector to Rackspace's Mailgun Service";
license = stdenv.lib.licenses.mit;
@@ -74436,6 +77069,7 @@ self: {
version = "0.2.7";
sha256 = "1g4s2xscj6dpkcghs5lws658ki0rhriivpdr5ilcycvr28k3l35q";
buildDepends = [ base containers srcloc text ];
+ jailbreak = true;
homepage = "http://www.eecs.harvard.edu/~mainland/";
description = "Pretty printing designed for printing source code";
license = stdenv.lib.licenses.bsd3;
@@ -74455,8 +77089,10 @@ self: {
base bytestring cmdargs monad-loops old-locale threads time unix
zeromq-haskell
];
+ jailbreak = true;
description = "Majordomo protocol for ZeroMQ";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"majority" = callPackage
@@ -74515,6 +77151,7 @@ self: {
version = "0.1";
sha256 = "0sc2fa45a046lw5x5z839gb1zk0d5nj663ghxajiclm6iw65kl2n";
buildDepends = [ base directory filepath HSH process ];
+ jailbreak = true;
homepage = "http://darcsden.com/kowey/makedo";
description = "Helper for writing redo scripts in Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -74547,8 +77184,10 @@ self: {
filepath gtk gtk-serialized-event manatee-core mtl stm
template-haskell text unix utf8-string
];
+ jailbreak = true;
description = "The Haskell/Gtk+ Integrated Live Environment";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-all" = callPackage
@@ -74573,6 +77212,7 @@ self: {
];
description = "Virtual package to install all Manatee packages";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-anything" = callPackage
@@ -74591,8 +77231,10 @@ self: {
gio GoogleSuggest gtk manatee-core mtl network proc regex-tdfa
split stm text unix utf8-string
];
+ jailbreak = true;
description = "Multithread interactive input/search framework for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-browser" = callPackage
@@ -74609,8 +77251,10 @@ self: {
base binary containers dbus-client derive filepath gtk manatee-core
mtl stm text utf8-string webkit
];
+ jailbreak = true;
description = "Browser extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-core" = callPackage
@@ -74632,8 +77276,10 @@ self: {
mtl network old-locale old-time process regex-tdfa split stm
template-haskell text time unix utf8-string
];
+ jailbreak = true;
description = "The core of Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-curl" = callPackage
@@ -74653,8 +77299,10 @@ self: {
directory filepath gio glib gtk manatee-core mtl network old-locale
old-time regex-tdfa stm template-haskell text utf8-string
];
+ jailbreak = true;
description = "Download Manager extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-editor" = callPackage
@@ -74672,8 +77320,10 @@ self: {
base binary bytestring containers dbus-client dbus-core derive
filepath gtk gtksourceview2 manatee-core regex-tdfa stm text
];
+ jailbreak = true;
description = "Editor extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-filemanager" = callPackage
@@ -74691,8 +77341,10 @@ self: {
base binary containers dbus-client derive filepath gio glib gtk
manatee-core mtl old-locale old-time stm text utf8-string
];
+ jailbreak = true;
description = "File manager extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-imageviewer" = callPackage
@@ -74710,8 +77362,10 @@ self: {
base binary containers dbus-client derive filepath gio glib gtk
gtkimageview manatee-core regex-tdfa stm text utf8-string
];
+ jailbreak = true;
description = "Image viewer extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-ircclient" = callPackage
@@ -74733,8 +77387,10 @@ self: {
gtksourceview2 manatee-core MorseCode mtl nano-md5 network
regex-posix split stm template-haskell text unix utf8-string
];
+ jailbreak = true;
description = "IRC client extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-mplayer" = callPackage
@@ -74753,8 +77409,10 @@ self: {
filepath gio gtk libtagc manatee-core process random regex-tdfa stm
text time unix utf8-string
];
+ jailbreak = true;
description = "Mplayer client extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-pdfviewer" = callPackage
@@ -74772,8 +77430,10 @@ self: {
base binary cairo containers dbus-client derive filepath gtk
manatee-core mtl poppler stm text utf8-string
];
+ jailbreak = true;
description = "PDF viewer extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-processmanager" = callPackage
@@ -74790,8 +77450,10 @@ self: {
base binary containers dbus-client derive filepath gtk manatee-core
proc stm text
];
+ jailbreak = true;
description = "Process manager extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-reader" = callPackage
@@ -74809,8 +77471,10 @@ self: {
base binary containers curl dbus-client derive download-curl feed
filepath gtk manatee-core stm text utf8-string webkit
];
+ jailbreak = true;
description = "Feed reader extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-template" = callPackage
@@ -74828,8 +77492,10 @@ self: {
base binary bytestring containers dbus-client dbus-core derive
filepath gtk gtksourceview2 manatee-core regex-tdfa stm text
];
+ jailbreak = true;
description = "Template code to create Manatee application";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-terminal" = callPackage
@@ -74846,8 +77512,10 @@ self: {
base binary containers dbus-client derive filepath gtk manatee-core
stm text unix vte
];
+ jailbreak = true;
description = "Terminal Emulator extension for Manatee";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"manatee-welcome" = callPackage
@@ -74865,8 +77533,10 @@ self: {
base binary bytestring containers dbus-client dbus-core derive
filepath gtk manatee-core regex-tdfa stm text
];
+ jailbreak = true;
description = "Welcome module to help user play Manatee quickly";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mancala" = callPackage
@@ -74919,10 +77589,10 @@ self: {
buildDepends = [
array base bytestring containers directory filepath GLUT hslua time
];
- configureFlags = [ "-f-sse4" "-f-fast" ];
homepage = "http://gitorious.org/maximus/mandulia";
description = "A zooming visualisation of the Mandelbrot Set as many Julia Sets";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mangopay" = callPackage
@@ -74956,10 +77626,11 @@ self: {
template-haskell text time tls transformers transformers-base
unordered-containers utf8-string vector wai warp x509-system
];
- configureFlags = [ "-fconduit11" "-f-debug" ];
+ jailbreak = true;
homepage = "https://github.com/prowdsponsor/mangopay";
description = "Bindings to the MangoPay API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"map-syntax" = callPackage
@@ -74993,9 +77664,11 @@ self: {
buildDepends = [
base containers gloss mtl splines vector vector-space
];
+ jailbreak = true;
homepage = "https://github.com/paolino/marionetta";
description = "A study of marionetta movements";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"markdown" = callPackage
@@ -75041,6 +77714,7 @@ self: {
homepage = "https://github.com/joelteon/markdown-kate";
description = "Convert Markdown to HTML, with XSS protection";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"markdown-pap" = callPackage
@@ -75052,6 +77726,7 @@ self: {
buildDepends = [ base monads-tf papillon ];
description = "markdown parser with papillon";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"markdown-unlit" = callPackage
@@ -75088,6 +77763,7 @@ self: {
];
description = "markdown to svg converter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"marked-pretty" = callPackage
@@ -75121,7 +77797,6 @@ self: {
version = "0.0.3.3";
sha256 = "1y9fjsf6dg6a9ha75w2szq4gi5fhq89l1r7wqb20hmadkcjjplx8";
buildDepends = [ base containers random transformers ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://code.haskell.org/~thielema/markov-chain/";
description = "Markov Chains for generating random sequences with a user definable behaviour";
license = "GPL";
@@ -75139,6 +77814,7 @@ self: {
testDepends = [ assertions base bifunctors memoize random ];
description = "Hidden Markov processes";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"markup" = callPackage
@@ -75172,8 +77848,10 @@ self: {
base cmdargs directory glib gtk MissingH mtl pandoc temporary
transformers webkit
];
+ jailbreak = true;
description = "A simple markup document preview (markdown, textile, reStructuredText)";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"marmalade-upload" = callPackage
@@ -75197,7 +77875,6 @@ self: {
testDepends = [
aeson base exceptions tasty tasty-hunit text transformers
];
- configureFlags = [ "-f-development" ];
homepage = "https://github.com/lunaryorn/marmalade-upload";
description = "Upload packages to Marmalade";
license = stdenv.lib.licenses.mit;
@@ -75222,6 +77899,7 @@ self: {
];
description = "Markup language preprocessor for Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"masakazu-bot" = callPackage
@@ -75242,9 +77920,11 @@ self: {
persistent-template regex-posix text transformers twitter-conduit
twitter-types
];
+ jailbreak = true;
homepage = "https://github.com/minamiyama1994/chomado-bot-on-haskell/tree/minamiyama1994";
description = "@minamiyama1994_bot on haskell";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mastermind" = callPackage
@@ -75309,8 +77989,10 @@ self: {
old-locale pandoc pandoc-types process SHA test-framework
test-framework-hunit time unix
];
+ jailbreak = true;
description = "A program for creating and managing a static weblog with LaTeX math and function graphs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mathgenealogy" = callPackage
@@ -75328,6 +78010,7 @@ self: {
base binary bytestring cmdargs containers directory fgl filepath
graphviz HTTP process safe tagsoup text
];
+ jailbreak = true;
description = "Discover your (academic) ancestors!";
license = stdenv.lib.licenses.gpl2;
}) {};
@@ -75342,9 +78025,11 @@ self: {
sha256 = "1agqbhl6r40swsvsllyx9vf9hc9a709wvg546rh6fn315waifqqk";
buildDepends = [ array base containers haskell98 ix-shapable mtl ];
buildTools = [ c2hs ];
+ jailbreak = true;
homepage = "http://community.haskell.org/~TracyWadleigh/mathlink";
description = "Write Mathematica packages in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"matlab" = callPackage
@@ -75358,9 +78043,10 @@ self: {
buildDepends = [ array base Cabal filepath unix ];
buildTools = [ matlab ];
extraLibraries = [ eng mx ];
- configureFlags = [ "-f-mcr" "-fruntime" "-fengine" ];
+ jailbreak = true;
description = "Matlab bindings and interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { eng = null; matlab = null; mx = null;};
"matrices" = callPackage
@@ -75429,6 +78115,7 @@ self: {
homepage = "http://kagami.touhou.ru/projects/show/matsuri";
description = "ncurses XMPP client";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"maude" = callPackage
@@ -75467,6 +78154,7 @@ self: {
homepage = "https://github.com/jfischoff/maxent";
description = "Compute Maximum Entropy Distributions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"maximal-cliques" = callPackage
@@ -75496,9 +78184,11 @@ self: {
containers-unicode-symbols HaLeX IndentParser mtl parsec process
uuagc uuagc-cabal
];
+ jailbreak = true;
homepage = "http://rochel.info/maxsharing/";
description = "Maximal sharing of terms in the lambda calculus with letrec";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"maybench" = callPackage
@@ -75514,10 +78204,11 @@ self: {
buildDepends = [
base benchpress Cabal directory filepath mtl old-time process time
];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://code.google.com/p/maybench/";
description = "Automated benchmarking tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mbox" = callPackage
@@ -75545,10 +78236,10 @@ self: {
base bytestring codec-mbox containers fclabels hsemail mtl parsec
process pureMD5 random
];
- configureFlags = [ "-f-useless" "-f-use_hutt" ];
homepage = "https://github.com/np/mbox-tools";
description = "A collection of tools to process mbox files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mcmaster-gloss-examples" = callPackage
@@ -75560,6 +78251,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base gloss ];
+ jailbreak = true;
homepage = "http://www.cas.mcmaster.ca/~anand/";
license = stdenv.lib.licenses.mit;
}) {};
@@ -75577,6 +78269,7 @@ self: {
];
description = "Combinators for MCMC sampling";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mcmc-synthesis" = callPackage
@@ -75586,6 +78279,7 @@ self: {
version = "0.1.2.2";
sha256 = "14z1x9dqnjj391nrlngs9s887yqh3arc7kfgk0m3d89vrkc185vq";
buildDepends = [ base MonadRandom ];
+ jailbreak = true;
description = "MCMC applied to probabilistic program synthesis";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -75599,7 +78293,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base network pipes split transformers ];
- configureFlags = [ "-f-build-debug" "-fbuild-examples" ];
+ jailbreak = true;
homepage = "https://github.com/DougBurke/hmcpi";
description = "Connect to MineCraft running on a Raspberry PI";
license = stdenv.lib.licenses.publicDomain;
@@ -75626,9 +78320,11 @@ self: {
sha256 = "0z650y4fnxr4mk0i5s8axjbq14dcpgnrzkafbpg17vfhl2v5a3z3";
buildDepends = [ base bytestring text ];
extraLibraries = [ mecab ];
+ jailbreak = true;
homepage = "http://github.com/tanakh/hsmecab";
description = "A Haskell binding to MeCab";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { mecab = null;};
"mecha" = callPackage
@@ -75658,6 +78354,7 @@ self: {
buildDepends = [ base HTTP mime network pretty utf8-string xml ];
description = "Interfacing with the MediaWiki API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mediawiki2latex" = callPackage
@@ -75683,6 +78380,7 @@ self: {
homepage = "http://sourceforge.net/projects/wb2pdf/";
description = "Convert MediaWiki text to LaTeX";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"meep" = callPackage
@@ -75721,6 +78419,7 @@ self: {
homepage = "https://github.com/snoyberg/mega-sdist";
description = "Handles uploading to Hackage from mega repos (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"meldable-heap" = callPackage
@@ -75751,8 +78450,10 @@ self: {
testDepends = [
base containers HUnit mtl test-framework test-framework-hunit
];
+ jailbreak = true;
description = "A functional scripting language";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"memcache" = callPackage
@@ -75776,6 +78477,7 @@ self: {
version = "0.2.1";
sha256 = "1a6wzznhpz06c0y3wrjf5bskdd8myild8v0p0x1h0swhmy6di2yd";
buildDepends = [ base bytestring network utf8-light ];
+ jailbreak = true;
homepage = "http://github.com/olegkat/haskell-memcached";
description = "haskell bindings for memcached";
license = "unknown";
@@ -75797,6 +78499,7 @@ self: {
testDepends = [
base bytestring data-default-class hspec HUnit network process
];
+ jailbreak = true;
homepage = "https://github.com/philopon/memcached-binary";
description = "memcached client using binary protocol";
license = stdenv.lib.licenses.mit;
@@ -75810,6 +78513,7 @@ self: {
sha256 = "07cmjx10wbpfcblnd23rzdkma04nyjcpd1g58gp0phajj6xj4i7a";
editedCabalFile = "a1712ea7643a27f1fb40a771fdae76282818b5d317fe8da6a22e705b06bc3b3e";
buildDepends = [ base hxt ];
+ jailbreak = true;
homepage = "https://github.com/eggzilla/memexml";
description = "Library for reading Meme XML output";
license = stdenv.lib.licenses.bsd3;
@@ -75822,9 +78526,11 @@ self: {
version = "0.1";
sha256 = "1gijza29wj79k8czfg4mghq7nqsbpyf1scnm9hmg2ykhnllpzvy3";
buildDepends = [ base direct-sqlite ];
+ jailbreak = true;
homepage = "https://gitorious.org/memo-sqlite";
description = "memoize functions using SQLite3 database";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"memoize" = callPackage
@@ -75850,6 +78556,7 @@ self: {
homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/memscript";
description = "Command line utility for memorizing scriptures or any other text";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mersenne-random" = callPackage
@@ -75859,9 +78566,6 @@ self: {
version = "1.0.0.1";
sha256 = "193qz3wn7lz18aywddr9qyn8v08ifv2yxwr68c67p5mn8vr8mvmw";
buildDepends = [ base old-time ];
- configureFlags = [
- "-f-big_endian64" "-f-use_altivec" "-f-use_sse2" "-f-small_base"
- ];
homepage = "http://code.haskell.org/~dons/code/mersenne-random";
description = "Generate high quality pseudorandom numbers using a SIMD Fast Mersenne Twister";
license = stdenv.lib.licenses.bsd3;
@@ -75874,7 +78578,6 @@ self: {
version = "0.2.0.4";
sha256 = "0qh72ynfg1k4c70qxdzsa6f1x9wyxil2d9gi85c879wrc41k899h";
buildDepends = [ base old-time random ];
- configureFlags = [ "-f-small_base" ];
homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/";
description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister";
license = stdenv.lib.licenses.bsd3;
@@ -75941,7 +78644,6 @@ self: {
abstract-deque abstract-par base bytestring containers deepseq mtl
mwc-random transformers vector
];
- configureFlags = [ "-f-affinity" ];
homepage = "https://github.com/simonmar/monad-par";
description = "Provides the monad-par interface, but based on modular scheduler \"mix-ins\"";
license = stdenv.lib.licenses.bsd3;
@@ -75960,10 +78662,10 @@ self: {
abstract-deque abstract-par abstract-par-accelerate accelerate
array base meta-par QuickCheck transformers vector
];
- configureFlags = [ "-f-debug" "-f-cuda" "-fnewaccelerate" ];
homepage = "https://github.com/simonmar/monad-par";
description = "Support for integrated Accelerate computations within Meta-par";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"metadata" = callPackage
@@ -75973,9 +78675,11 @@ self: {
version = "0.2.0.0";
sha256 = "148c7vgh8zxgy5fb0xflk0lzm5d233d1ynjncpiwi1bb9jzbdm3r";
buildDepends = [ base text time ];
+ jailbreak = true;
homepage = "http://github.com/cutsea110/metadata";
description = "metadata library for semantic web";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"metamorphic" = callPackage
@@ -75999,6 +78703,7 @@ self: {
buildDepends = [ base Cabal filepath ghc haskell98 ];
description = "a tiny ghc api wrapper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"metric" = callPackage
@@ -76015,6 +78720,7 @@ self: {
];
description = "Metric spaces";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"metrics" = callPackage
@@ -76036,6 +78742,7 @@ self: {
];
description = "High-performance application metric tracking";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"metricsd-client" = callPackage
@@ -76045,6 +78752,7 @@ self: {
version = "0.1";
sha256 = "1q807wvmj1q605257jj60h0j2wal6ypjiad9wkjmv836p3mis5q9";
buildDepends = [ base network ];
+ jailbreak = true;
description = "Client for the metrics aggregator Metricsd";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -76058,6 +78766,7 @@ self: {
buildDepends = [ base data-lens data-lens-template hosc stm ];
description = "Time Synchronized execution";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mi" = callPackage
@@ -76071,6 +78780,7 @@ self: {
buildDepends = [
base haskell-src-meta parsec split template-haskell
];
+ jailbreak = true;
homepage = "https://github.com/matt76k/mi";
description = "Multiple Instance for Haskell";
license = stdenv.lib.licenses.mit;
@@ -76130,7 +78840,6 @@ self: {
base bytestring event-list explicit-exception non-negative
QuickCheck transformers utility-ht
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/MIDI";
description = "Handling of MIDI messages and files";
license = "GPL";
@@ -76143,7 +78852,6 @@ self: {
version = "0.2.1";
sha256 = "13dc299d252nrll1vzp7pl1ncv0qw3xhz5b3kqnc8hb0g4mkkgpc";
buildDepends = [ alsa-seq base data-accessor midi utility-ht ];
- configureFlags = [ "-f-buildexamples" "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/MIDI";
description = "Convert between datatypes of the midi and the alsa packages";
license = stdenv.lib.licenses.bsd3;
@@ -76162,9 +78870,11 @@ self: {
buildDepends = [
alsa-core alsa-seq base containers random transformers wx wxcore
];
+ jailbreak = true;
homepage = "http://www.youtube.com/watch?v=cOlR73h2uII";
description = "A Memory-like (Concentration, Pairs, ...) game for tones";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"midisurface" = callPackage
@@ -76178,8 +78888,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ alsa-core alsa-seq base containers gtk mtl stm ];
+ jailbreak = true;
description = "A control midi surface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mighttpd" = callPackage
@@ -76200,6 +78912,7 @@ self: {
homepage = "http://www.mew.org/~kazu/proj/mighttpd/";
description = "Simple Web Server in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mighttpd2" = callPackage
@@ -76224,7 +78937,6 @@ self: {
unordered-containers wai wai-app-file-cgi wai-logger warp
];
testDepends = [ base hspec http-client ];
- configureFlags = [ "-f-tls" ];
homepage = "http://www.mew.org/~kazu/proj/mighttpd/";
description = "High performance web server on WAI/warp";
license = stdenv.lib.licenses.bsd3;
@@ -76261,6 +78973,7 @@ self: {
random transformers
];
testDepends = [ base bytestring hspec network QuickCheck ];
+ jailbreak = true;
description = "A Kafka client for Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -76387,9 +79100,10 @@ self: {
base binary binary-generic bytestring cairo containers directory
filepath glade gtk random time
];
- configureFlags = [ "-f-tests" ];
+ jailbreak = true;
description = "Minesweeper game which is always solvable without guessing";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"miniball" = callPackage
@@ -76402,6 +79116,7 @@ self: {
homepage = "http://nonempty.org/software/haskell-miniball";
description = "Bindings to Miniball, a smallest enclosing ball library";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"minimal-configuration" = callPackage
@@ -76443,6 +79158,7 @@ self: {
buildDepends = [ base GLUT haskell98 unix ];
description = "Shows how to run grabber on Mac OS X";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"minions" = callPackage
@@ -76454,6 +79170,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ ansi-terminal base MissingH process time ];
+ jailbreak = true;
homepage = "http://github.com/jhickner/minions";
description = "A fast parallel ssh tool";
license = stdenv.lib.licenses.bsd3;
@@ -76485,9 +79202,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base colock directory mtl network stm unix ];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
description = "simple 1-to-N interprocess communication";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"minirotate" = callPackage
@@ -76505,9 +79223,11 @@ self: {
base data-accessor data-accessor-template directory filepath mtl
old-locale old-time process safe split template-haskell
];
+ jailbreak = true;
homepage = "http://tener.github.com/haskell-minirotate/";
description = "Minimalistic file rotation utility";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"minisat" = callPackage
@@ -76539,6 +79259,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Ministg";
description = "an interpreter for an operational semantics for the STG machine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"miniutter" = callPackage
@@ -76572,9 +79293,11 @@ self: {
authenticate-oauth base bytestring conduit lens monad-logger text
transformers twitter-conduit
];
+ jailbreak = true;
homepage = "https://github.com/minamiyama1994/mirror-tweet";
description = "Tweet mirror";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"misfortune" = callPackage
@@ -76619,6 +79342,7 @@ self: {
homepage = "https://github.com/domdere/missing-py2";
description = "Haskell interface to Python";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mix-arrows" = callPackage
@@ -76630,6 +79354,7 @@ self: {
buildDepends = [ base ];
description = "Mixing effects of one arrow into another one";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mixed-strategies" = callPackage
@@ -76641,6 +79366,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base containers simple-tabular ];
+ jailbreak = true;
homepage = "http://wiki.cs.pdx.edu/bartforge/oms";
description = "Find optimal mixed strategies for two-player games";
license = stdenv.lib.licenses.mit;
@@ -76657,6 +79383,7 @@ self: {
buildDepends = [ base directory filepath haskell98 ];
description = "Makes an OS X .app bundle from a binary.";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mkcabal" = callPackage
@@ -76673,10 +79400,10 @@ self: {
base directory extensible-exceptions mtl old-locale old-time
pcre-light pretty readline
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/~dons/code/mkcabal";
description = "Generate cabal files for a Haskell project";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ml-w" = callPackage
@@ -76702,6 +79429,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/mlist";
description = "Monadic List alternative to lazy I/O";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mmap" = callPackage
@@ -76713,7 +79441,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring ];
- configureFlags = [ "-f-mmaptest" ];
description = "Memory mapped files for POSIX and Windows";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -76738,6 +79465,7 @@ self: {
buildDepends = [ base ];
description = "Modular Monad transformer library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mmtl-base" = callPackage
@@ -76749,6 +79477,7 @@ self: {
buildDepends = [ base mmtl ];
description = "MonadBase type-class for mmtl";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"moan" = callPackage
@@ -76763,9 +79492,11 @@ self: {
base binary bytestring containers dawg regex-tdfa regex-tdfa-text
tagset-positional text zlib
];
+ jailbreak = true;
homepage = "https://github.com/vjeranc/moan";
description = "Language-agnostic analyzer for positional morphosyntactic tags";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"modbus-tcp" = callPackage
@@ -76779,6 +79510,7 @@ self: {
buildDepends = [
base base-unicode-symbols bytestring cereal network
];
+ jailbreak = true;
homepage = "https://github.com/roelvandijk/modbus-tcp";
description = "Communicate with Modbus devices over TCP";
license = stdenv.lib.licenses.bsd3;
@@ -76796,7 +79528,7 @@ self: {
testDepends = [
ansi-terminal base containers filepath parsec QuickCheck
];
- configureFlags = [ "-fbuildtests" ];
+ jailbreak = true;
description = "A parser for the modelica language";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -76816,6 +79548,7 @@ self: {
];
description = "Haskell source splitter driven by special comments";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"modular-arithmetic" = callPackage
@@ -76842,6 +79575,7 @@ self: {
base basic-prelude bytestring containers data-default hashable
system-filepath text transformers unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/DanBurton/modular-prelude#readme";
description = "A new Prelude featuring first class modules";
license = stdenv.lib.licenses.mit;
@@ -76854,9 +79588,11 @@ self: {
version = "0.1.0.0";
sha256 = "1izinrgd9a6sm57isg8jgs4wjidczwqcxl6vg5h4gy5zz9dg8xnx";
buildDepends = [ base classy-prelude modular-prelude ];
+ jailbreak = true;
homepage = "https://github.com/DanBurton/modular-prelude#readme";
description = "Reifying ClassyPrelude a la ModularPrelude";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"module-management" = callPackage
@@ -76881,10 +79617,10 @@ self: {
testDepends = [
base containers filepath haskell-src-exts HUnit process
];
- configureFlags = [ "-fbuild-tests" ];
homepage = "https://github.com/seereason/module-management";
description = "Clean up module imports, split and merge modules";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"modulespection" = callPackage
@@ -76899,9 +79635,11 @@ self: {
base exceptions filepath ghc ghc-paths template-haskell temporary
transformers
];
+ jailbreak = true;
homepage = "https://github.com/jfischoff/modulespection";
description = "Template Haskell for introspecting a module's declarations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"modulo" = callPackage
@@ -76919,6 +79657,7 @@ self: {
atto-lisp base data-default directory haskell-src language-c mtl
nats pandoc-types parsec prettify process semigroups text
];
+ jailbreak = true;
description = "Modular C code generator";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -76954,10 +79693,11 @@ self: {
explicit-exception filepath html HTTP network old-locale old-time
parsec process transformers unix utility-ht
];
- configureFlags = [ "-f-dynamic" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/mohws/";
description = "Modular Haskell Web Server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-abort-fd" = callPackage
@@ -76975,6 +79715,7 @@ self: {
homepage = "https://github.com/mvv/monad-abort-fd";
description = "A better error monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-atom" = callPackage
@@ -77009,6 +79750,7 @@ self: {
buildDepends = [ base ];
description = "This package has been removed";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-codec" = callPackage
@@ -77063,8 +79805,10 @@ self: {
base monad-control mtl-evil-instances transformers
transformers-base
];
+ jailbreak = true;
description = "Exstensible monadic exceptions";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-extras" = callPackage
@@ -77090,6 +79834,7 @@ self: {
version = "0.1";
sha256 = "15xwavq4yc3xfif4isjh9m0q9h1bh7pmv2i3rh99sndmd34cdpwc";
buildDepends = [ base monad-control ];
+ jailbreak = true;
description = "Type class for monads which support a fork operation";
license = stdenv.lib.licenses.publicDomain;
}) {};
@@ -77115,6 +79860,7 @@ self: {
homepage = "http://github.com/patperry/monad-interleave";
description = "Monads with an unsaveInterleaveIO-like operation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-journal" = callPackage
@@ -77148,7 +79894,6 @@ self: {
fast-logger lifted-base monad-control monad-loops mtl resourcet stm
stm-chans template-haskell text transformers transformers-base
];
- configureFlags = [ "-ftemplate_haskell" ];
homepage = "https://github.com/kazu-yamamoto/logger";
description = "A class of monads which can log messages";
license = stdenv.lib.licenses.mit;
@@ -77166,6 +79911,7 @@ self: {
base bytestring fast-logger hsyslog monad-logger text transformers
];
testDepends = [ base monad-logger shelly ];
+ jailbreak = true;
homepage = "https://github.com/docmunch/monad-logger-rsyslog";
description = "rsyslog output for monad-logger";
license = stdenv.lib.licenses.mit;
@@ -77178,7 +79924,6 @@ self: {
version = "0.4.2.1";
sha256 = "1dprwndc0bxzpmrkj1xb9kzjrg3i06zsg43yaabn5x5gcaj8is56";
buildDepends = [ base ];
- configureFlags = [ "-fbase4" ];
homepage = "https://github.com/mokus0/monad-loops";
description = "Monadic loops";
license = stdenv.lib.licenses.publicDomain;
@@ -77213,6 +79958,7 @@ self: {
homepage = "https://github.com/bjin/monad-lrs";
description = "a monad to calculate linear recursive sequence";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-memo" = callPackage
@@ -77280,7 +80026,6 @@ self: {
test-framework-hunit test-framework-quickcheck2 test-framework-th
time
];
- configureFlags = [ "-f-newgeneric" "-f-chaselev" ];
homepage = "https://github.com/simonmar/monad-par";
description = "A library for parallel programming based on a monad";
license = stdenv.lib.licenses.bsd3;
@@ -77335,9 +80080,11 @@ self: {
sha256 = "0n3cxa94wd3hjvy9jgf3d8p7qfb9jaaf29simjya7rlcb673pg3l";
editedCabalFile = "64e1f99ea3e8c36d5d4e86794d1fc02966e7036b43ae4e1dcf01ade192962611";
buildDepends = [ base extensible-exceptions transformers ];
+ jailbreak = true;
homepage = "http://andersk.mit.edu/haskell/monad-peel/";
description = "Lift control operations like exception catching through monad transformers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-primitive" = callPackage
@@ -77371,8 +80118,10 @@ self: {
version = "0.1.0";
sha256 = "04y9s2b4hz2f8khr0q62xy0f6l2v896s7x03i3s18i14bwscqlax";
buildDepends = [ base ghc-prim mtl ];
+ jailbreak = true;
description = "Fast monads and monad transformers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monad-resumption" = callPackage
@@ -77538,7 +80287,6 @@ self: {
version = "3.7.3";
sha256 = "17m9rj6spr5n9jlhwwvk8p40yrpwgz3j9kj3pjq7mpyrc1ssfd0q";
buildDepends = [ base ];
- configureFlags = [ "-f-base3" ];
homepage = "http://wiki.github.com/yav/monadlib";
description = "A collection of monad transformers";
license = stdenv.lib.licenses.bsd3;
@@ -77551,6 +80299,7 @@ self: {
version = "0.2";
sha256 = "14byhdcby094qpgmkblysnplz5r88xnfk7rnfddihzz4jgjzlvy1";
buildDepends = [ base monadLib ];
+ jailbreak = true;
homepage = "http://github.com/aristidb/monadLib-compose";
description = "Arrow-like monad composition for monadLib";
license = stdenv.lib.licenses.bsd3;
@@ -77565,6 +80314,7 @@ self: {
buildDepends = [ base ];
description = "The Acme and AcmeT monads";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monadbi" = callPackage
@@ -77626,10 +80376,10 @@ self: {
version = "0.7.6";
sha256 = "083ppr53ac85r5ybndngsfwxgalj63giz32aa7wpcm629b9g4lxc";
buildDepends = [ base containers mtl parsec pretty random ];
- configureFlags = [ "-f-debug" ];
homepage = "http://users.ugent.be/~tschrijv/MCP/";
description = "Constraint Programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monadiccp-gecode" = callPackage
@@ -77644,10 +80394,10 @@ self: {
extraLibraries = [
gecodeint gecodekernel gecodesearch gecodeset gecodesupport
];
- configureFlags = [ "-f-debug" ];
homepage = "http://users.ugent.be/~tschrijv/MCP/";
description = "Constraint Programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { gecodeint = null; gecodekernel = null; gecodesearch = null;
gecodeset = null; gecodesupport = null;};
@@ -77698,6 +80448,7 @@ self: {
buildDepends = [
base filepath haskell-src-exts monadloc pretty syb
];
+ jailbreak = true;
homepage = "http://github.com/pepeiborra/monadloc-pp";
description = "A preprocessor for generating monadic call traces";
license = stdenv.lib.licenses.publicDomain;
@@ -77721,6 +80472,7 @@ self: {
version = "0.2.0.0";
sha256 = "1iqr5p3va5sxmpvydwqz2src54j5njcyrzn9p5apc60nv7yv6x4c";
buildDepends = [ base mtl transformers ];
+ jailbreak = true;
description = "Monad classes, using functional dependencies";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -77743,7 +80495,6 @@ self: {
version = "0.0.2";
sha256 = "0i586zh6247jfmkw2x27j0aq47yz1c71irj9iwrlx1zrmvzak1yv";
buildDepends = [ base transformers ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/monadtransform";
description = "A type-class for transforming monads (homomorphism) in a transformer";
license = stdenv.lib.licenses.bsd3;
@@ -77763,10 +80514,11 @@ self: {
network pool-conduit stm transformers transformers-base
];
testDepends = [ base bytestring doctest hspec transformers ];
- configureFlags = [ "-f-develop" ];
+ jailbreak = true;
homepage = "https://github.com/notogawa/monarch";
description = "Monadic interface for TokyoTyrant";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mongoDB" = callPackage
@@ -77804,9 +80556,11 @@ self: {
base data-default hspec lifted-base monad-control mongoDB network
text transformers
];
+ jailbreak = true;
homepage = "https://github.com/docmunch/haskell-mongodb-queue";
description = "message queue using MongoDB";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mongrel2-handler" = callPackage
@@ -77822,8 +80576,10 @@ self: {
attoparsec base blaze-builder blaze-textual bytestring
case-insensitive containers http-types text zeromq-haskell
];
+ jailbreak = true;
description = "Mongrel2 Handler Library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monitor" = callPackage
@@ -77846,6 +80602,7 @@ self: {
version = "0.1.0.2";
sha256 = "1qnbw9pd06czwyj2xcsjdigg7bj8d23p3ljnnkgd3d0r67qxxlxm";
buildDepends = [ base bytestring text vector ];
+ jailbreak = true;
homepage = "http://github.com/JohnLato/mono-foldable";
description = "Folds for monomorphic containers";
license = stdenv.lib.licenses.bsd3;
@@ -77957,8 +80714,10 @@ self: {
version = "0.1.0.1";
sha256 = "1klgwv3sd9zmqpj157rypln51kcwml9b1fyaxnip0a1525h6c2s9";
buildDepends = [ base contravariant semigroups transformers ];
+ jailbreak = true;
description = "Extra classes/functions about monoids";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"monoids" = callPackage
@@ -77972,7 +80731,7 @@ self: {
buildDepends = [
array base bytestring containers fingertree parallel text
];
- configureFlags = [ "-f-optimize" ];
+ jailbreak = true;
homepage = "http://github.com/ekmett/monoids";
description = "Deprecated: Use 'reducers'";
license = stdenv.lib.licenses.bsd3;
@@ -78006,6 +80765,7 @@ self: {
stats-web stm system-uuid text time unordered-containers
zeromq-haskell
];
+ jailbreak = true;
homepage = "http://github.com/bumptech/montage";
description = "Riak Resolution Proxy";
license = stdenv.lib.licenses.bsd3;
@@ -78029,6 +80789,7 @@ self: {
safe stats-web stm system-uuid text text-format time
unordered-containers zeromq-haskell
];
+ jailbreak = true;
homepage = "http://github.com/bumptech/montage-haskell-client";
description = "Riak Resolution Proxy Client";
license = stdenv.lib.licenses.bsd3;
@@ -78049,9 +80810,11 @@ self: {
base gsl-random ieee754 primitive QuickCheck random test-framework
test-framework-quickcheck2 transformers vector
];
+ jailbreak = true;
homepage = "http://github.com/patperry/hs-monte-carlo";
description = "A monad and transformer for Monte Carlo calculations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"moo" = callPackage
@@ -78074,6 +80837,7 @@ self: {
homepage = "http://www.github.com/astanin/moo/";
description = "Genetic algorithm library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"morfette" = callPackage
@@ -78109,6 +80873,7 @@ self: {
homepage = "https://github.com/kawu/morfeusz";
description = "Bindings to the morphological analyser Morfeusz";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { morfeusz = null;};
"morte" = callPackage
@@ -78126,6 +80891,7 @@ self: {
pipes text transformers
];
buildTools = [ alex happy ];
+ jailbreak = true;
description = "Bare-bones calculus of constructions";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -78139,6 +80905,7 @@ self: {
buildDepends = [ base bytestring ];
description = "Mounts and umounts filesystems";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mp3decoder" = callPackage
@@ -78153,6 +80920,7 @@ self: {
homepage = "http://www.bjrn.se/mp3dec";
description = "MP3 decoder for teaching";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mpdmate" = callPackage
@@ -78167,6 +80935,7 @@ self: {
homepage = "http://neugierig.org/software/darcs/powermate/";
description = "MPD/PowerMate executable";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mpppc" = callPackage
@@ -78176,6 +80945,7 @@ self: {
version = "0.1.3";
sha256 = "1zcilskpslpqyrbwpabwbry4p3kpcfca94wchh9dkq9g8pg8laxi";
buildDepends = [ ansi-terminal base bytestring split text ];
+ jailbreak = true;
description = "Multi-dimensional parametric pretty-printer with color";
license = "GPL";
}) {};
@@ -78192,6 +80962,7 @@ self: {
ansi-terminal base containers data-lens-fd data-lens-template mtl
orders text transformers
];
+ jailbreak = true;
description = "a monadic, extensible pretty printing library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -78211,6 +80982,7 @@ self: {
];
description = "Simple equational reasoning for a Haskell-ish language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mps" = callPackage
@@ -78230,6 +81002,7 @@ self: {
homepage = "http://github.com/nfjinjing/mps/";
description = "simply oo";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mpvguihs" = callPackage
@@ -78245,9 +81018,11 @@ self: {
buildDepends = [
base directory filepath gtk mtl process template-haskell unix
];
+ jailbreak = true;
homepage = "https://github.com/sebadoom/mpvguihs";
description = "A minimalist mpv GUI written in I/O heavy Haskell";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mqtt-hs" = callPackage
@@ -78262,6 +81037,7 @@ self: {
buildDepends = [
attoparsec base bytestring monad-loops mtl network singletons text
];
+ jailbreak = true;
homepage = "http://github.com/k00mi/mqtt-hs";
description = "A MQTT client library";
license = stdenv.lib.licenses.gpl3;
@@ -78286,6 +81062,7 @@ self: {
base bytestring QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://msgpack.org/";
description = "A Haskell implementation of MessagePack";
license = stdenv.lib.licenses.bsd3;
@@ -78307,9 +81084,11 @@ self: {
msgpack peggy shakespeare-text template-haskell text
];
testDepends = [ base hspec ];
+ jailbreak = true;
homepage = "http://msgpack.org/";
description = "An IDL Compiler for MessagePack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"msgpack-rpc" = callPackage
@@ -78326,9 +81105,11 @@ self: {
mtl network network-conduit random text
];
testDepends = [ async base hspec mtl network ];
+ jailbreak = true;
homepage = "http://msgpack.org/";
description = "A MessagePack-RPC Implementation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mstate" = callPackage
@@ -78340,6 +81121,7 @@ self: {
buildDepends = [ base monad-peel mtl stm ];
description = "MState: A consistent State monad for concurrent applications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"msu" = callPackage
@@ -78382,8 +81164,10 @@ self: {
SHA test-framework test-framework-hunit test-framework-quickcheck2
text time transformers unordered-containers vector watchdog
];
+ jailbreak = true;
description = "Library to communicate with Mt.Gox";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mtl" = callPackage
@@ -78405,6 +81189,7 @@ self: {
version = "2.2.1";
sha256 = "1icdbj2rshzn0m1zz5wa7v3xvkf6qw811p4s7jgqwvx1ydwrvrfa";
buildDepends = [ base transformers ];
+ jailbreak = true;
homepage = "http://github.com/ekmett/mtl";
description = "Monad classes, using functional dependencies";
license = stdenv.lib.licenses.bsd3;
@@ -78421,6 +81206,7 @@ self: {
buildDepends = [
base monad-control mtl transformers transformers-base
];
+ jailbreak = true;
description = "Instances for the mtl classes for all monad transformers";
license = stdenv.lib.licenses.publicDomain;
}) {};
@@ -78432,9 +81218,11 @@ self: {
version = "2.0.1";
sha256 = "0z56ycpfgbrxhk8k74rk254yyhqix8ryz6ni8i7aki294wh2cvwn";
buildDepends = [ mtl transformers ];
+ jailbreak = true;
homepage = "https://github.com/nikita-volkov/mtl-prelude";
description = "Reexports of most definitions from \"mtl\" and \"transformers\"";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mtl-tf" = callPackage
@@ -78446,6 +81234,7 @@ self: {
buildDepends = [ base ];
description = "Monad transformer library using type families";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mtlparse" = callPackage
@@ -78469,6 +81258,7 @@ self: {
buildDepends = [ base mtl QuickCheck ];
description = "Monad transformer library with type indexes, providing 'free' copies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mtp" = callPackage
@@ -78479,8 +81269,10 @@ self: {
sha256 = "164q7p81c5an4w3pqpfk94rgn0banfs2yp7fhbbckdyb2qymsbww";
buildDepends = [ base filepath unix ];
extraLibraries = [ mtp ];
+ jailbreak = true;
description = "Bindings to libmtp";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { mtp = null;};
"mtree" = callPackage
@@ -78521,8 +81313,10 @@ self: {
http-conduit http-types process random snap-core snap-server stm
text transformers
];
+ jailbreak = true;
description = "Continuous deployment server for use with GitHub";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mueval" = callPackage
@@ -78552,6 +81346,7 @@ self: {
version = "0.1.0.4";
sha256 = "1if1ip22y7w59lkyshn4ic4p46zrfs4kcdzzjai9l8xbscavgdl6";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "http://github.com/jsnajder/multex-east-msd";
description = "MULTEXT-East morphosyntactic descriptors";
license = stdenv.lib.licenses.bsd3;
@@ -78569,7 +81364,6 @@ self: {
isExecutable = true;
buildDepends = [ base utf8-string ];
testDepends = [ barecheck base QuickCheck quickpull ];
- configureFlags = [ "-f-programs" ];
homepage = "https://github.com/massysett/multiarg";
description = "Command lines for options that take multiple arguments";
license = stdenv.lib.licenses.bsd3;
@@ -78593,6 +81387,7 @@ self: {
];
description = "Bidirectional Two-level Transformation of XML Schemas";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"multimap" = callPackage
@@ -78631,9 +81426,11 @@ self: {
base binary containers ghc-prim hashable keys math-functions
newtype unordered-containers
];
+ jailbreak = true;
homepage = "http://github.com/ekmett/multipass/";
description = "Folding data with multiple named passes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"multiplate" = callPackage
@@ -78655,8 +81452,10 @@ self: {
version = "0.0.0.2";
sha256 = "0xzjl3nsm6wgbqd6rjn0bf9jhiw6l6ql5gj5m8xqccv8363i5v2r";
buildDepends = [ base multiplate transformers ];
+ jailbreak = true;
description = "Shorter, more generic functions for Multiplate";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"multiplicity" = callPackage
@@ -78696,8 +81495,10 @@ self: {
buildDepends = [
base containers mtl multirec syb template-haskell th-expand-syns
];
+ jailbreak = true;
description = "Alternative multirec instances deriver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"multirec-binary" = callPackage
@@ -78707,8 +81508,10 @@ self: {
version = "0.0.1";
sha256 = "1cj1rfjqxwc06vr5w12fqbcpjb0fjsphf8vp40sp2naizpvvnmzs";
buildDepends = [ base binary multirec ];
+ jailbreak = true;
description = "Generic Data.Binary instances using MultiRec.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"multiset" = callPackage
@@ -78743,6 +81546,7 @@ self: {
homepage = "http://sulzmann.blogspot.com/2008/10/multi-set-rewrite-rules-with-guards-and.html";
description = "Multi-set rewrite rules with guards and a parallel execution scheme";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"multistate" = callPackage
@@ -78754,7 +81558,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base mtl tfp transformers ];
- configureFlags = [ "-f-build-example" "-f-build-test" ];
homepage = "https://github.com/lspitzner/multistate";
description = "like mtl's ReaderT/StateT, but more than one contained value/type";
license = stdenv.lib.licenses.bsd3;
@@ -78775,6 +81578,7 @@ self: {
base blaze-html ConfigFile directory Glob happstack-server
HStringTemplate markdown MissingH process text
];
+ jailbreak = true;
homepage = "http://github.com/kaashif-hymabaccus/muon";
description = "Static blog generator";
license = stdenv.lib.licenses.bsd3;
@@ -78792,9 +81596,11 @@ self: {
AspectAG base containers HList ListLike template-haskell TTTAS
uu-parsinglib uulib
];
+ jailbreak = true;
homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo";
description = "MUtually Recursive Definitions Explicitly Represented";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"murmur-hash" = callPackage
@@ -78878,8 +81684,10 @@ self: {
aeson base blaze-svg bytestring lens music-pitch music-preludes
music-score process
];
+ jailbreak = true;
description = "Diagrams-based visualization of musical data structures";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"music-parts" = callPackage
@@ -78894,8 +81702,10 @@ self: {
adjunctions aeson base containers data-default lens music-dynamics
music-pitch roman-numerals semigroups
];
+ jailbreak = true;
description = "Musical instruments, parts and playing techniques";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"music-pitch" = callPackage
@@ -78911,8 +81721,10 @@ self: {
base containers data-interval lens music-pitch-literal nats
positive semigroups type-unary vector-space vector-space-points
];
+ jailbreak = true;
description = "Musical pitch representation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"music-pitch-literal" = callPackage
@@ -78948,8 +81760,10 @@ self: {
vector-space vector-space-points
];
testDepends = [ base process tasty tasty-golden ];
+ jailbreak = true;
description = "Some useful preludes for the Music Suite";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"music-score" = callPackage
@@ -78971,6 +81785,7 @@ self: {
NumInstances parsec prettify process semigroups transformers
transformers-compat vector-space vector-space-points
];
+ jailbreak = true;
description = "Musical score and part representation";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -78988,8 +81803,10 @@ self: {
aeson base bytestring lens monadplus music-pitch-literal
music-preludes music-score semigroups unordered-containers
];
+ jailbreak = true;
description = "Interaction with Sibelius";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"music-suite" = callPackage
@@ -79008,6 +81825,7 @@ self: {
];
description = "A set of libraries for composition, analysis and manipulation of music";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"music-util" = callPackage
@@ -79052,9 +81870,11 @@ self: {
smallcheck stm test-framework test-framework-hunit
test-framework-smallcheck text time transformers xmlhtml
];
+ jailbreak = true;
homepage = "http://github.com/metabrainz/mass-mail";
description = "Send an email to all MusicBrainz editors";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"musicxml" = callPackage
@@ -79066,10 +81886,11 @@ self: {
version = "0.1.2";
sha256 = "0sn8gzymf6xpdksd7v2xyb4y2iks2l09hyw0rch109lgrnsy5gp8";
buildDepends = [ base containers directory HaXml old-time pretty ];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "https://troglodita.di.uminho.pt/svn/musica/work/MusicXML";
description = "MusicXML format encoded as Haskell type and functions of reading and writting";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"musicxml2" = callPackage
@@ -79159,9 +81980,11 @@ self: {
buildDepends = [
base iteratee MonadCatchIO-transformers transformers vector
];
+ jailbreak = true;
homepage = "http://jwlato.webfactional.com/haskell/mutable-iter";
description = "iteratees based upon mutable buffers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mute-unmute" = callPackage
@@ -79178,6 +82001,7 @@ self: {
base directory filepath hslogger hslogger-template mtl network-dbus
process
];
+ jailbreak = true;
homepage = "http://github.com/Tener/mute-unmute";
description = "Watches your screensaver and (un)mutes music when you (un)lock the screen";
license = stdenv.lib.licenses.gpl3;
@@ -79224,8 +82048,10 @@ self: {
control-event Crypto data-binary-ieee754 hexpat http-enumerator
maccatcher mtl network parsec time uuid
];
+ jailbreak = true;
description = "Client library for metaverse systems like Second Life";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mwc-random" = callPackage
@@ -79279,9 +82105,11 @@ self: {
syb template-haskell UISF
];
testDepends = [ ansi-terminal base Cabal Euterpea QuickCheck ];
+ jailbreak = true;
homepage = "http://haskell.cs.yale.edu/";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mybitcoin-sci" = callPackage
@@ -79293,6 +82121,7 @@ self: {
buildDepends = [ base cgi curl directory mtl process split ];
description = "Binding to mybitcoin.com's Shopping Cart Interface.";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mysnapsession" = callPackage
@@ -79307,8 +82136,10 @@ self: {
base bytestring cereal clientsession containers mtl random
regex-posix snap snap-core time
];
+ jailbreak = true;
description = "Sessions and continuations for Snap web apps";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mysnapsession-example" = callPackage
@@ -79325,8 +82156,10 @@ self: {
base bytestring clientsession heist mtl mysnapsession snap
snap-core snap-server text time
];
+ jailbreak = true;
description = "Example projects using mysnapsession";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mysql" = callPackage
@@ -79338,10 +82171,10 @@ self: {
buildDepends = [ base bytestring containers ];
buildTools = [ mysqlConfig ];
extraLibraries = [ zlib ];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/bos/mysql";
description = "A low-level MySQL client library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { mysqlConfig = null; inherit (pkgs) zlib;};
"mysql-effect" = callPackage
@@ -79359,6 +82192,7 @@ self: {
homepage = "https://github.com/ibotty/mysql-effect";
description = "An extensible mysql effect using extensible-effects and mysql-simple";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mysql-simple" = callPackage
@@ -79374,10 +82208,10 @@ self: {
attoparsec base base16-bytestring blaze-builder blaze-textual
bytestring mysql old-locale pcre-light text time
];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/bos/mysql-simple";
description = "A mid-level MySQL client library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mysql-simple-quasi" = callPackage
@@ -79393,6 +82227,7 @@ self: {
];
description = "Quasi-quoter for use with mysql-simple";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mysql-simple-typed" = callPackage
@@ -79410,6 +82245,7 @@ self: {
homepage = "https://github.com/tolysz/mysql-simple-typed";
description = "Typed extension to mysql simple";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"mzv" = callPackage
@@ -79422,6 +82258,7 @@ self: {
homepage = "http://github.com/ifigueroap/mzv";
description = "Implementation of the \"Monads, Zippers and Views\" (Schrijvers and Oliveira, ICFP'11)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"n-m" = callPackage
@@ -79495,9 +82332,11 @@ self: {
version = "0.1";
sha256 = "1db12f2q395yk6pwz5gnb2q0kf4s868z8d1vvwa7vngnfc1h924i";
buildDepends = [ base containers ];
+ jailbreak = true;
homepage = "http://github.com/nominolo/named-lock";
description = "A named lock that is created on demand";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"named-records" = callPackage
@@ -79544,6 +82383,7 @@ self: {
homepage = "http://github.com/chowells79/nano-cryptr";
description = "A threadsafe binding to glibc's crypt_r function";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nano-hmac" = callPackage
@@ -79554,10 +82394,10 @@ self: {
sha256 = "0rrwa1c3mval1jm4siqyx1vk14ibifya62hni13cimcdafj35fnq";
buildDepends = [ base bytestring ];
extraLibraries = [ openssl ];
- configureFlags = [ "-fsplit-base" ];
homepage = "http://www.jasani.org/search/label/nano-hmac";
description = "Bindings to OpenSSL HMAC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) openssl;};
"nano-md5" = callPackage
@@ -79568,10 +82408,10 @@ self: {
sha256 = "18db3y76w0kv2m7h3lrqxcag4lc7519b2j80113g6hhm1wxkpabk";
buildDepends = [ base bytestring ];
extraLibraries = [ openssl ];
- configureFlags = [ "-fsplit-base" ];
homepage = "http://code.haskell.org/~dons/code/nano-md5";
description = "Efficient, ByteString bindings to OpenSSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) openssl;};
"nanoAgda" = callPackage
@@ -79587,8 +82427,10 @@ self: {
buildDepends = [
base BNFC-meta cmdargs containers mtl parsec pretty transformers
];
+ jailbreak = true;
description = "A toy dependently-typed language";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nanocurses" = callPackage
@@ -79602,6 +82444,7 @@ self: {
homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html";
description = "Simple Curses binding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { curses = null;};
"nanomsg" = callPackage
@@ -79612,6 +82455,7 @@ self: {
sha256 = "06jb8s3jxjiz7r6dn8xx33xqd76f2r5q1mshsz41z4q0khf4wdp3";
buildDepends = [ base bytestring ];
extraLibraries = [ nanomsg ];
+ jailbreak = true;
description = "nanomsg - scalability protocols library";
license = stdenv.lib.licenses.publicDomain;
}) { inherit (pkgs) nanomsg;};
@@ -79642,6 +82486,7 @@ self: {
version = "0.1.1";
sha256 = "00ghdzkzshk24g7v42hq7zq0dxsq8vjpkslj41dxdnx0zizwbn3m";
buildDepends = [ base bytestring ListLike ];
+ jailbreak = true;
description = "An implementation of attoparsec-like parser around list-like";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -79668,6 +82513,7 @@ self: {
homepage = "http://ezrakilty.net/projects/narc";
description = "Query SQL databases using Nested Relational Calculus embedded in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nat" = callPackage
@@ -79688,7 +82534,6 @@ self: {
version = "1";
sha256 = "0r6s8l4s0yq3x2crrkv0b8zac13magfasr9v8hnq6rn1icsfhic0";
buildDepends = [ base hashable ];
- configureFlags = [ "-fhashable" ];
homepage = "http://github.com/ekmett/nats/";
description = "Natural numbers";
license = stdenv.lib.licenses.bsd3;
@@ -79726,8 +82571,10 @@ self: {
base type-equality type-level-natural-number
type-level-natural-number-induction
];
+ jailbreak = true;
description = "Natural numbers tagged with a type-level representation of the number";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"natural-numbers" = callPackage
@@ -79761,7 +82608,6 @@ self: {
version = "0.0.3";
sha256 = "1l594lkd3yb52lhh0raygvk3jlzwkcc2pmcqjmg02dmd6j6mw42x";
buildDepends = [ base text utf8-string ];
- configureFlags = [ "-f-unicode-collation" "-f-filepath" ];
homepage = "not yet available";
description = "Natural-order string comparison";
license = stdenv.lib.licenses.bsd3;
@@ -79815,6 +82661,7 @@ self: {
homepage = "https://github.com/nilcons/nc-indicators";
description = "CPU load and memory usage indicators for i3bar";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ncurses" = callPackage
@@ -79828,14 +82675,11 @@ self: {
buildDepends = [ base containers text transformers ];
buildTools = [ c2hs ];
extraLibraries = [ ncurses ];
- configureFlags = [
- "-f-force-c2hs-newtype-pointer-hooks" "-f-force-narrow-library"
- "-f-use-pkgconfig"
- ];
patchPhase = "find . -type f -exec sed -i -e 's|ncursesw/||' {} \\;";
homepage = "https://john-millikin.com/software/haskell-ncurses/";
description = "Modernised bindings to GNU ncurses";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) ncurses;};
"neat" = callPackage
@@ -79878,6 +82722,7 @@ self: {
base containers haskell-src-meta mtl parsec parsec-extra
template-haskell text vector
];
+ jailbreak = true;
homepage = "http://scrambledeggsontoast.github.io/2014/09/28/needle-announce/";
description = "ASCII-fied arrow notation";
license = stdenv.lib.licenses.mit;
@@ -79915,7 +82760,6 @@ self: {
base cmdargs containers directory extra filepath GoogleChart json
old-time process time
];
- configureFlags = [ "-f-small" ];
homepage = "http://community.haskell.org/~ndm/";
description = "General tools for Neil";
license = stdenv.lib.licenses.bsd3;
@@ -79983,9 +82827,11 @@ self: {
dawg directory filepath IntervalMap monad-ox mtl network polimorf
polysoup sgd tagsoup temporary text text-binary tokenize vector
];
+ jailbreak = true;
homepage = "https://github.com/kawu/nerf";
description = "Nerf, the named entity recognition tool based on linear-chain CRFs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nested-sets" = callPackage
@@ -80011,6 +82857,7 @@ self: {
buildDepends = [
base bytestring containers ghc-binary hslogger monad-loops network
];
+ jailbreak = true;
homepage = "http://phaul.hobby-site.org/node/4123";
description = "Concurrent over the network execution library";
license = stdenv.lib.licenses.bsd3;
@@ -80027,6 +82874,7 @@ self: {
homepage = "http://netclock.slab.org/";
description = "Netclock protocol";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"netcore" = callPackage
@@ -80051,9 +82899,11 @@ self: {
process QuickCheck random syb test-framework test-framework-hunit
test-framework-quickcheck2 test-framework-th
];
+ jailbreak = true;
homepage = "http://frenetic-lang.org";
description = "The NetCore compiler and runtime system for OpenFlow networks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"netlines" = callPackage
@@ -80071,6 +82921,7 @@ self: {
];
description = "Enumerator tools for text-based network protocols";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"netlink" = callPackage
@@ -80085,6 +82936,7 @@ self: {
base bytestring cereal containers monad-loops unix
];
buildTools = [ c2hs ];
+ jailbreak = true;
homepage = "http://netlink-hs.googlecode.com/";
description = "Netlink communication for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -80097,7 +82949,6 @@ self: {
version = "0.3.1";
sha256 = "0f3fwgpg0p3ajgxfzbqr4z04ly5cdbhjxms5xbd0k2ixdwgyxm67";
buildDepends = [ base binary containers syb ];
- configureFlags = [ "-fbase4" ];
description = "Netlist AST";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -80109,7 +82960,6 @@ self: {
version = "0.3.1";
sha256 = "15daik7l0pjqilya01l5rl84g2fyjwkap1md0nx82gxcp8m1v76k";
buildDepends = [ base netlist pretty ];
- configureFlags = [ "-fbase4" ];
description = "Convert a Netlist AST to VHDL";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -80145,9 +82995,11 @@ self: {
aeson base binary bytestring mtl network template-haskell text
transformers
];
+ jailbreak = true;
homepage = "http://github.com/DanBurton/netspec";
description = "Simplify static Networking tasks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"netstring-enumerator" = callPackage
@@ -80181,7 +83033,6 @@ self: {
test-framework-quickcheck2
];
pkgconfigDepends = [ nettle ];
- configureFlags = [ "-fusepkgconfig" ];
homepage = "https://github.com/stbuehler/haskell-nettle";
description = "safe nettle binding";
license = stdenv.lib.licenses.mit;
@@ -80199,8 +83050,10 @@ self: {
base bimap binary bytestring containers mtl nettle-openflow network
network-data random time
];
+ jailbreak = true;
description = "FRP for controlling networks of OpenFlow switches";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nettle-netkit" = callPackage
@@ -80216,6 +83069,7 @@ self: {
];
description = "DSL for describing OpenFlow networks, and a compiler generating NetKit labs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nettle-openflow" = callPackage
@@ -80232,6 +83086,7 @@ self: {
];
description = "OpenFlow protocol messages, binary formats, and servers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"netwire" = callPackage
@@ -80248,7 +83103,6 @@ self: {
base containers deepseq parallel profunctors random semigroups time
transformers
];
- configureFlags = [ "-f-testprogram" ];
homepage = "http://hub.darcs.net/ertes/netwire";
description = "Functional reactive programming library";
license = stdenv.lib.licenses.bsd3;
@@ -80310,10 +83164,11 @@ self: {
testDepends = [
base Cabal QuickCheck test-framework test-framework-quickcheck2
];
- configureFlags = [ "-f-benchmark" ];
+ jailbreak = true;
homepage = "http://github.com/sebnow/haskell-network-address";
description = "IP data structures and textual representation";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-api-support" = callPackage
@@ -80329,7 +83184,6 @@ self: {
aeson attoparsec base bytestring case-insensitive http-client
http-client-tls http-types text time tls
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/apiengine/network-api-support";
description = "Toolkit for building http client libraries over Network.Http.Conduit";
license = stdenv.lib.licenses.bsd3;
@@ -80362,9 +83216,11 @@ self: {
version = "0.1.3.4";
sha256 = "19m10mj9nqsa7s0syv9dyhqkhvmf2h7yna8n7bq0xkdp8m9l0g96";
buildDepends = [ base bytestring network unix ];
+ jailbreak = true;
homepage = "http://github.com/tibbe/network-bytestring";
description = "Fast, memory-efficient, low-level networking";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-carbon" = callPackage
@@ -80428,6 +83284,7 @@ self: {
homepage = "http://darcs.imperialviolet.org/network-connection";
description = "A wrapper around a generic stream-like connection";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-data" = callPackage
@@ -80437,7 +83294,6 @@ self: {
version = "0.5.2";
sha256 = "0vbmg1m4qylzbmj3z5746srfkiwvh32qi9zyc39gc87bfw2gzn8s";
buildDepends = [ base bytestring cereal pretty prettyclass ];
- configureFlags = [ "-fsmall_base" ];
description = "Library for network data structures and their serialization";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -80454,6 +83310,7 @@ self: {
base binary bytestring containers mtl network parsec unix
utf8-string
];
+ jailbreak = true;
description = "D-Bus";
license = "unknown";
}) {};
@@ -80485,7 +83342,6 @@ self: {
version = "0.1.5";
sha256 = "11hwgdw03a39k3akjy5qlg9zsb7z8qiikvdmcqr2dhj6ykmfwsvk";
buildDepends = [ base bytestring enumerator network transformers ];
- configureFlags = [ "-fnetwork-includes-bytestring" ];
homepage = "https://john-millikin.com/software/network-enumerator/";
description = "Enumerators for network sockets";
license = stdenv.lib.licenses.mit;
@@ -80534,6 +83390,7 @@ self: {
version = "0.0.1";
sha256 = "0qa5rbbcw9axg7mj4kjj027hfsclnw85cj8nmi6jvrzq2yhhk56c";
buildDepends = [ base bytestring ioctl network ];
+ jailbreak = true;
description = "Haskell bindings for the ifreq structure";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -80594,6 +83451,7 @@ self: {
homepage = "http://darcs.imperialviolet.org/network-minihttp";
description = "A ByteString based library for writing HTTP(S) servers and clients";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-msg" = callPackage
@@ -80630,6 +83488,7 @@ self: {
base bytestring foreign-storable-asymmetric ioctl network
network-interfacerequest
];
+ jailbreak = true;
description = "Haskell bindings for low-level packet sockets (AF_PACKET)";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -80681,6 +83540,7 @@ self: {
];
description = "A cross-platform RPC library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-server" = callPackage
@@ -80694,6 +83554,7 @@ self: {
buildDepends = [ base network unix ];
description = "A light abstraction over sockets & co. for servers";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-service" = callPackage
@@ -80709,7 +83570,6 @@ self: {
buildDepends = [
base base64-bytestring bytestring network network-simple
];
- configureFlags = [ "-f-documentation" "-f-example" ];
homepage = "https://github.com/angerman/network-service";
description = "Provide a service at the data type level";
license = stdenv.lib.licenses.mit;
@@ -80743,6 +83603,7 @@ self: {
homepage = "https://github.com/jdnavarro/network-simple-sockaddr";
description = "network-simple for resolved addresses";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-simple-tls" = callPackage
@@ -80757,9 +83618,11 @@ self: {
base bytestring certificate cprng-aes exceptions network
network-simple tls tls-extra transformers
];
+ jailbreak = true;
homepage = "https://github.com/k0001/network-simple-tls";
description = "Simple interface to TLS secured network sockets";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-socket-options" = callPackage
@@ -80786,6 +83649,7 @@ self: {
base binary bytestring cereal enumerator network stm text
transformers
];
+ jailbreak = true;
description = "ByteString and Text streams for networking";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -80807,9 +83671,11 @@ self: {
directory filepath logfloat mwc-random optparse-applicative
random-fu statistics stm text transformers vector
];
+ jailbreak = true;
homepage = "https://github.com/bgamari/bayes-stack";
description = "A few network topic model implementations for bayes-stack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"network-transport" = callPackage
@@ -80839,7 +83705,6 @@ self: {
testDepends = [
base network network-transport network-transport-tests
];
- configureFlags = [ "-f-use-mock-network" ];
homepage = "http://haskell-distributed.github.com";
description = "TCP instantiation of Network.Transport";
license = stdenv.lib.licenses.bsd3;
@@ -80883,9 +83748,7 @@ self: {
base network-transport network-transport-tests tasty tasty-hunit
zeromq4-haskell
];
- configureFlags = [
- "-f-unsafe" "-f-distributed-process-tests" "-f-install-benchmarks"
- ];
+ jailbreak = true;
description = "ZeroMQ backend for network-transport";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -80928,10 +83791,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base haskell98 network webserver ];
- configureFlags = [ "-f-buildexamples" ];
+ jailbreak = true;
homepage = "http://github.com/michaelmelanson/network-websocket";
description = "WebSocket library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"networked-game" = callPackage
@@ -80945,6 +83809,7 @@ self: {
buildDepends = [
base binary bytestring containers network time transformers
];
+ jailbreak = true;
description = "Networked-game support library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -80961,6 +83826,7 @@ self: {
homepage = "http://www.b7j0c.org/content/haskell-newports.html";
description = "List ports newer than N days on a FreeBSD system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"newsynth" = callPackage
@@ -80977,6 +83843,7 @@ self: {
homepage = "http://www.mathstat.dal.ca/~selinger/newsynth/";
description = "Exact and approximate synthesis of quantum circuits";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"newt" = callPackage
@@ -80996,9 +83863,10 @@ self: {
filepath HUnit mtl process QuickCheck safe test-framework
test-framework-hunit test-framework-quickcheck2 text Unixutils uuid
];
- configureFlags = [ "-f-tests" ];
+ jailbreak = true;
description = "A trivially simple app to create things from simple templates";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"newtype" = callPackage
@@ -81012,6 +83880,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "newtype-deriving" = callPackage
+ ({ mkDerivation, base, base-prelude, monad-control
+ , template-haskell, transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "newtype-deriving";
+ version = "0.1.1";
+ sha256 = "16rfzkmay9gpy75l56i6ra6vjramvq8dwpq0adsh7xqpx101cd21";
+ buildDepends = [
+ base base-prelude monad-control template-haskell transformers
+ transformers-base
+ ];
+ homepage = "https://github.com/nikita-volkov/newtype-deriving";
+ description = "Instance derivers for newtype wrappers";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"newtype-generics" = callPackage
({ mkDerivation, base, hspec, HUnit }:
mkDerivation {
@@ -81020,6 +83905,7 @@ self: {
sha256 = "1xghpqmpwnjyk944m9nsfzk2jlyqwdvcr5zrmr66d4n650cf1m2b";
buildDepends = [ base ];
testDepends = [ base hspec HUnit ];
+ jailbreak = true;
description = "A typeclass and set of functions for working with newtypes, with generics support";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -81035,6 +83921,7 @@ self: {
buildDepends = [
base haskell-src-meta newtype syb template-haskell
];
+ jailbreak = true;
homepage = "http://github.com/mgsloan/newtype-th";
description = "A template haskell deriver to create Control.Newtype instances.";
license = stdenv.lib.licenses.bsd3;
@@ -81076,6 +83963,7 @@ self: {
buildDepends = [
attoparsec base machines mtl parseargs resourcet sqlite-simple text
];
+ jailbreak = true;
homepage = "http://github.com/YoEight/ngrams-loader";
description = "Ngrams loader based on http://www.ngrams.info format";
license = stdenv.lib.licenses.mit;
@@ -81099,6 +83987,7 @@ self: {
];
description = "Packed, strict nibble arrays with a list interface (ByteString for nibbles)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nicify" = callPackage
@@ -81133,6 +84022,7 @@ self: {
homepage = "http://www.codemanic.com/uwe";
description = "Command line utility publishes Nike+ runs on blogs and Twitter";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nimber" = callPackage
@@ -81154,9 +84044,11 @@ self: {
version = "0.2.2.5";
sha256 = "17aqzk1kq670fwawia0qjmd8ld1b0h8zh0w8j8x4y48hlzyb75xb";
buildDepends = [ base bytestring ];
+ jailbreak = true;
homepage = "http://haskell.gonitro.io";
description = "Haskell bindings for Nitro";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nixos-types" = callPackage
@@ -81168,6 +84060,7 @@ self: {
homepage = "http://hackage.haskell.org/package/cabal2nix";
description = "this package is obsolete; see cabal2nix instead";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nkjp" = callPackage
@@ -81187,6 +84080,7 @@ self: {
homepage = "https://github.com/kawu/nkjp";
description = "Manipulating the National Corpus of Polish (NKJP)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nlp-scores" = callPackage
@@ -81210,6 +84104,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers nlp-scores split text ];
+ jailbreak = true;
homepage = "https://bitbucket.org/gchrupala/lingo";
description = "NLP scoring command-line programs";
license = stdenv.lib.licenses.bsd3;
@@ -81228,6 +84123,7 @@ self: {
pkgconfigDepends = [ glib libnm-glib ];
description = "Network Manager, binding to libnm-glib";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { g = null; inherit (pkgs) glib; libnm-glib = null;
nm-glib = null;};
@@ -81241,6 +84137,7 @@ self: {
homepage = "https://github.com/singpolyma/NME-Haskell";
description = "Bindings to the Nyctergatis Markup Engine";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nntp" = callPackage
@@ -81287,9 +84184,11 @@ self: {
network parsec
];
testDepends = [ base HTF HUnit parsec QuickCheck string-qq ];
+ jailbreak = true;
homepage = "http://github.com/brow/noise";
description = "A friendly language for graphic design";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"non-empty" = callPackage
@@ -81312,7 +84211,6 @@ self: {
sha256 = "163g3j3xrx1jkrbg2wnha3yyxyg1mn7kabmbpg82y3rbl3ihy1p7";
buildDepends = [ base QuickCheck utility-ht ];
testDepends = [ base QuickCheck utility-ht ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://code.haskell.org/~thielema/non-negative/";
description = "Non-negative numbers";
license = "GPL";
@@ -81364,7 +84262,6 @@ self: {
version = "0.3.7";
sha256 = "147dbq19n18ixfz6bhx9yi9ppr9j3wnc5dfz8kx5gwihy64b8l1b";
buildDepends = [ base primitive vector ];
- configureFlags = [ "-f-debug" ];
description = "Various iterative algorithms for optimization of nonlinear functions";
license = "GPL";
}) {};
@@ -81420,6 +84317,7 @@ self: {
buildDepends = [ base GLUT OpenGLRaw spatial-math time ];
description = "Painless 3D graphics, no affiliation with gloss";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"not-gloss-examples" = callPackage
@@ -81437,6 +84335,7 @@ self: {
];
description = "examples for not-gloss";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"not-in-base" = callPackage
@@ -81459,6 +84358,7 @@ self: {
sha256 = "1qdqwwy16n43djgrynzn8xv64vv450my6z2xddypafxwhvp7jaqy";
buildDepends = [ base template-haskell ];
testDepends = [ base template-haskell ];
+ jailbreak = true;
description = "Avoiding the C preprocessor via cunning use of Template Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -81479,6 +84379,7 @@ self: {
extraLibraries = [ glib gmime notmuch nsl talloc xapian zlib ];
description = "Binding for notmuch MUA library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) glib; inherit (pkgs) gmime;
inherit (pkgs) notmuch; nsl = null; inherit (pkgs) talloc;
inherit (pkgs) xapian; inherit (pkgs) zlib;};
@@ -81514,10 +84415,11 @@ self: {
testDepends = [
base hspec HUnit mime-mail text yesod yesod-core yesod-test
];
- configureFlags = [ "-f-no-icu" "-f-library-only" "-f-dev" ];
+ jailbreak = true;
homepage = "https://bitbucket.org/wuzzeb/notmuch-web";
description = "A web interface to the notmuch email indexer";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"np-extras" = callPackage
@@ -81527,6 +84429,7 @@ self: {
version = "0.3";
sha256 = "14lphbssmcvabg1rqzhy4bwvssfyzb69b2g9n45vd22xnvf9q0il";
buildDepends = [ base containers numeric-prelude primes ];
+ jailbreak = true;
description = "NumericPrelude extras";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -81542,8 +84445,10 @@ self: {
buildDepends = [
base binary containers numeric-prelude reflection tagged
];
+ jailbreak = true;
description = "Linear algebra for the numeric-prelude framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nptools" = callPackage
@@ -81585,6 +84490,7 @@ self: {
sha256 = "1qi1wq7wbnp3sv3c2v4185mnq80646vcsnqq16mqlshiy164wsly";
buildDepends = [ base type-level ];
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ntp-control" = callPackage
@@ -81617,9 +84523,11 @@ self: {
aeson base containers filepath scotty split stm text transformers
wai-extra warp
];
+ jailbreak = true;
homepage = "https://github.com/Tener/null-canvas";
description = "HTML5 Canvas Graphics Library - forked Blank Canvas";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"numbering" = callPackage
@@ -81669,6 +84577,7 @@ self: {
base base-unicode-symbols HUnit integer-gmp QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2 text
];
+ jailbreak = true;
homepage = "https://github.com/roelvandijk/numerals";
description = "Convert numbers to number words";
license = stdenv.lib.licenses.bsd3;
@@ -81691,9 +84600,11 @@ self: {
base base-unicode-symbols containers containers-unicode-symbols
fingertree HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
homepage = "https://github.com/roelvandijk/numerals-base";
description = "Convert numbers to number words";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"numeric-extras" = callPackage
@@ -81733,7 +84644,7 @@ self: {
array base containers deepseq non-negative parsec QuickCheck random
storable-record utility-ht
];
- configureFlags = [ "-f-buildtests" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Numeric_Prelude";
description = "An experimental alternative hierarchy of numeric type classes";
license = stdenv.lib.licenses.bsd3;
@@ -81752,6 +84663,7 @@ self: {
homepage = "https://github.com/nikita-volkov/numeric-qq";
description = "Quasi-quoters for numbers of different bases";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"numeric-quest" = callPackage
@@ -81761,7 +84673,6 @@ self: {
version = "0.2.0.1";
sha256 = "110v2frn085pggjzl3l8wqgr4vcdd5h29x2wak2a59x16ngjg7ga";
buildDepends = [ array base ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Numeric_Quest";
description = "Math and quantum mechanics";
license = "GPL";
@@ -81800,6 +84711,7 @@ self: {
sha256 = "0bbl7f3qd26sa92k73qni3r1jwxxrfq5k19hcvh5rgdh5ig9d6v8";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"numtype" = callPackage
@@ -81837,6 +84749,7 @@ self: {
buildDepends = [ base bytestring mtl ncurses text ];
description = "Bored? Nyan cat!";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nymphaea" = callPackage
@@ -81852,8 +84765,10 @@ self: {
buildDepends = [
base cairo containers glade glib gtk mtl parsec random
];
+ jailbreak = true;
description = "An interactive GUI for manipulating L-systems";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"oauthenticated" = callPackage
@@ -81872,7 +84787,6 @@ self: {
http-client http-types mtl network network-uri text time
transformers
];
- configureFlags = [ "-fnetwork-uri" ];
description = "Simple OAuth for http-client";
license = stdenv.lib.licenses.mit;
}) {};
@@ -81903,12 +84817,10 @@ self: {
array AspectAG base containers ghc-prim HList language-c mtl murder
template-haskell transformers uu-parsinglib uulib
];
- configureFlags = [
- "-f-t5" "-f-t3" "-f-t2" "-f-t1" "-f-l4" "-f-l3" "-f-l2" "-f-l1"
- ];
homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo";
description = "Oberon0 Compiler";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"obj" = callPackage
@@ -81928,6 +84840,7 @@ self: {
];
description = "Reads and writes obj models";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"objectid" = callPackage
@@ -81947,6 +84860,7 @@ self: {
homepage = "https://github.com/tsuraan/objectid";
description = "Rather unique identifier for things that need to be stored";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"objective" = callPackage
@@ -81982,14 +84896,16 @@ self: {
buildDepends = [
array base bytestring containers hexpr mtl parsec symbol text
];
+ jailbreak = true;
homepage = "https://github.com/Zankoku-Okuno/octopus/";
description = "Lisp with more dynamism, more power, more simplicity";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"oculus" = callPackage
- ({ mkDerivation, base, either, libX11, mesa, monads-tf, ovr
- , transformers, udev, vect-floating, Xinerama
+ ({ mkDerivation, base, either, libX11, libXinerama, mesa, monads-tf
+ , ovr, systemd, transformers, vect-floating
}:
mkDerivation {
pname = "oculus";
@@ -81998,12 +84914,15 @@ self: {
buildDepends = [
base either monads-tf transformers vect-floating
];
- extraLibraries = [ libX11 mesa ovr udev Xinerama ];
+ extraLibraries = [ libX11 libXinerama mesa ovr systemd ];
+ jailbreak = true;
homepage = "http://github.com/cpdurham/oculus";
description = "Oculus Rift ffi providing head tracking data";
license = stdenv.lib.licenses.bsd3;
- }) { Xinerama = null; inherit (pkgs.xlibs) libX11;
- inherit (pkgs) mesa; ovr = null; udev = null;};
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) { inherit (pkgs.xlibs) libX11;
+ inherit (pkgs.xlibs) libXinerama; inherit (pkgs) mesa;
+ ovr = null; inherit (pkgs) systemd;};
"oeis" = callPackage
({ mkDerivation, base, HTTP, HUnit, network, network-uri
@@ -82015,7 +84934,6 @@ self: {
sha256 = "1q7ywczm2d5inrjqgz3j8vfk5sj2yixvwdkzlfs2whd0gadbcfa0";
buildDepends = [ base HTTP network network-uri ];
testDepends = [ base HUnit test-framework test-framework-hunit ];
- configureFlags = [ "-fnetwork-uri" ];
description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -82027,6 +84945,7 @@ self: {
version = "0.1";
sha256 = "03sb2bmjw8v01908zkzmw8njsmqy5k2hcnv6ajbia7n8qawyhivj";
buildDepends = [ base parsec3 vector ];
+ jailbreak = true;
homepage = "https://github.com/acfoltzer/off-simple";
description = "A parser for simplified-syntax OFF files";
license = stdenv.lib.licenses.bsd3;
@@ -82065,6 +84984,7 @@ self: {
homepage = "https://github.com/fthomas/ohloh-hs";
description = "Interface to the Ohloh API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"oi" = callPackage
@@ -82090,8 +85010,10 @@ self: {
sha256 = "1p34xybkf5079pq5hkildaz6skx06f6s3qg0k2i73jhh93q3ckiq";
buildDepends = [ base hogre ];
extraLibraries = [ OIS ];
+ jailbreak = true;
description = "wrapper for OIS input manager for use with hogre";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { OIS = null;};
"old-locale_1_0_0_7" = callPackage
@@ -82132,9 +85054,10 @@ self: {
base bytestring fay fay-jquery fay-text lens mtl snap snap-core
snap-loader-dynamic snap-loader-static snap-server snaplet-fay text
];
- configureFlags = [ "-f-development" ];
+ jailbreak = true;
description = "An OpenLayers JavaScript Wrapper and Webframework with snaplet-fay";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"omaketex" = callPackage
@@ -82150,9 +85073,11 @@ self: {
buildDepends = [
base optparse-applicative shakespeare-text shelly text
];
+ jailbreak = true;
homepage = "https://github.com/pcapriotti/omaketex";
description = "A simple tool to generate OMakefile for latex files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"omega" = callPackage
@@ -82186,8 +85111,10 @@ self: {
buildDepends = [
base bytestring cmdargs conduit sandi transformers
];
+ jailbreak = true;
description = "data encoding and decoding command line utilities";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"on-a-horse" = callPackage
@@ -82207,6 +85134,7 @@ self: {
homepage = "http://haskell.on-a-horse.org";
description = "\"Haskell on a Horse\" - A combinatorial web framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"on-demand-ssh-tunnel" = callPackage
@@ -82218,6 +85146,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring network process random ];
+ jailbreak = true;
homepage = "https://github.com/crackleware/on-demand-ssh-tunnel";
description = "Program that sends traffic through SSH tunnels on-demand";
license = stdenv.lib.licenses.mit;
@@ -82281,6 +85210,7 @@ self: {
buildDepends = [ base smallcheck ];
description = "Code for the Haskell course taught at the Odessa National University in 2012";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"oo-prototypes" = callPackage
@@ -82335,13 +85265,10 @@ self: {
HTTP mtl network old-time parsec pretty process syb texmath
utf8-string xhtml xml zip-archive
];
- configureFlags = [
- "-f-citeproc" "-flibrary" "-fwrappers" "-fexecutable"
- "-f-highlighting"
- ];
homepage = "http://johnmacfarlane.net/pandoc";
description = "Conversion between markup formats";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"open-typerep" = callPackage
@@ -82369,6 +85296,7 @@ self: {
homepage = "https://github.com/RobotGymnast/open-union";
description = "Extensible, type-safe unions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"open-witness" = callPackage
@@ -82378,8 +85306,10 @@ self: {
version = "0.1.1";
sha256 = "1i38lhy1wla0xqgcbyf06179r1hs6194wqd8gg26q491ddc0vp3l";
buildDepends = [ base mtl witness ];
+ jailbreak = true;
description = "open witnesses";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opencv-raw" = callPackage
@@ -82390,9 +85320,11 @@ self: {
sha256 = "040hjkqd2zqkd8zbnfv8wmyzkfgckiv4njryilx1gpyp7c6qxpwn";
buildDepends = [ base bindings-DSL Cabal vector ];
pkgconfigDepends = [ opencv ];
+ jailbreak = true;
homepage = "www.github.com/arjuncomar/opencv-raw.git";
description = "Raw Haskell bindings to OpenCV >= 2.0";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) opencv;};
"opendatatable" = callPackage
@@ -82402,6 +85334,7 @@ self: {
version = "0.0.0";
sha256 = "1bv729ljw07arz9fzg0nqj6fkpwkxkjds073cz3zr9in0a5b1531";
buildDepends = [ base hxt template-haskell th-lift ];
+ jailbreak = true;
homepage = "https://github.com/fabianbergmark/OpenDataTable";
description = "A library for working with Open Data Tables";
license = stdenv.lib.licenses.bsd2;
@@ -82421,6 +85354,7 @@ self: {
homepage = "https://github.com/singpolyma/openexchangerates-haskell";
description = "Fetch exchange rates from OpenExchangeRates.org";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opengles" = callPackage
@@ -82438,6 +85372,7 @@ self: {
extraLibraries = [ EGL GLESv2 ];
description = "OpenGL ES 2.0 and 3.0 with EGL 1.4";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { EGL = null; GLESv2 = null;};
"openid" = callPackage
@@ -82453,10 +85388,10 @@ self: {
buildDepends = [
base bytestring containers HsOpenSSL HTTP monadLib network time xml
];
- configureFlags = [ "-fsplit-base" "-f-examples" ];
homepage = "http://github.com/elliottt/hsopenid";
description = "An implementation of the OpenID-2.0 spec.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"openpgp" = callPackage
@@ -82496,9 +85431,11 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2
utf8-string
];
+ jailbreak = true;
homepage = "http://github.com/singpolyma/OpenPGP-Crypto";
description = "Implementation of cryptography for use with OpenPGP using the Crypto library";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"openpgp-asciiarmor" = callPackage
@@ -82542,9 +85479,11 @@ self: {
test-framework-hunit test-framework-quickcheck2 transformers
utf8-string
];
+ jailbreak = true;
homepage = "http://github.com/singpolyma/OpenPGP-CryptoAPI";
description = "Implement cryptography for OpenPGP using crypto-api compatible libraries";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opensoundcontrol-ht" = callPackage
@@ -82558,10 +85497,10 @@ self: {
buildDepends = [
base binary bytestring hosc process random transformers utility-ht
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/SuperCollider";
description = "Haskell OpenSoundControl utilities";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"openssl-createkey" = callPackage
@@ -82603,6 +85542,7 @@ self: {
buildDepends = [ base opentheory-primitive QuickCheck random ];
description = "The Haskell base";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opentheory-char" = callPackage
@@ -82621,6 +85561,7 @@ self: {
];
description = "Unicode characters";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opentheory-parser" = callPackage
@@ -82638,6 +85579,7 @@ self: {
];
description = "Stream parsers";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opentheory-prime" = callPackage
@@ -82655,6 +85597,7 @@ self: {
];
description = "Prime numbers";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"opentheory-primitive" = callPackage
@@ -82668,6 +85611,7 @@ self: {
buildDepends = [ base QuickCheck random ];
description = "Haskell primitives used by OpenTheory packages";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"operational" = callPackage
@@ -82679,7 +85623,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base mtl random ];
- configureFlags = [ "-fbuildexamples" ];
homepage = "http://haskell.org/haskellwiki/Operational";
description = "Implementation of difficult monads made easy with operational semantics";
license = stdenv.lib.licenses.bsd3;
@@ -82692,7 +85635,6 @@ self: {
version = "0.4";
sha256 = "1bnr6lkcf2qs7pvrmd8a5xmklcg67l64b776hzclfvxqy1qil29x";
buildDepends = [ base directory xml ];
- configureFlags = [ "-fsmall_base" ];
description = "Representing and handling OPML subscription information";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -82733,6 +85675,7 @@ self: {
homepage = "https://github.com/tsuraan/optimal-blocks";
description = "Optimal Block boundary determination for rsync-like behaviours";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"optimization" = callPackage
@@ -82766,9 +85709,11 @@ self: {
base cmdargs containers fgl flite graphviz haskell98 mtl parsec
uniplate wl-pprint
];
+ jailbreak = true;
homepage = "http://optimusprime.posterous.com/";
description = "A supercompiler for f-lite";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"optional" = callPackage
@@ -82779,7 +85724,6 @@ self: {
sha256 = "1i1nl81gg5fndf3vafirpmklikn4xpy791is6ff8j7pzys0qfj8g";
buildDepends = [ base ];
testDepends = [ base directory doctest filepath QuickCheck ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/optional";
description = "Using type-classes for optional function arguments";
license = stdenv.lib.licenses.bsd3;
@@ -82810,7 +85754,6 @@ self: {
sha256 = "0rsmwalmnry71w23k6sg0a307xgb2s71j9s12zqqq380fw6c1bhm";
buildDepends = [ base old-locale options time ];
testDepends = [ base chell options time ];
- configureFlags = [ "-fold-locale" ];
homepage = "https://john-millikin.com/software/haskell-options/";
description = "Command-line option types for dates and times";
license = stdenv.lib.licenses.mit;
@@ -82882,9 +85825,9 @@ self: {
aeson base bytestring errors hspec lens QuickCheck smallcheck text
wreq
];
- configureFlags = [ "-f-network-specs" ];
description = "An API client for http://orchestrate.io/.";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"orchid" = callPackage
@@ -82902,8 +85845,10 @@ self: {
filestore hscolour mtl nano-md5 parsec process QuickCheck salvia
salvia-extras stm time unix xml
];
+ jailbreak = true;
description = "Haskell Wiki Library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"orchid-demo" = callPackage
@@ -82920,8 +85865,10 @@ self: {
base extensible-exceptions mtl network orchid Pipe salvia
salvia-extras stm
];
+ jailbreak = true;
description = "Haskell Wiki Demo";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ord-adhoc" = callPackage
@@ -82947,6 +85894,7 @@ self: {
buildDepends = [
base containers math-functions statistics vector vector-space
];
+ jailbreak = true;
homepage = "http://github.com/ekmett/order-statistics/";
description = "L-Estimators for robust statistics";
license = stdenv.lib.licenses.bsd3;
@@ -82970,6 +85918,7 @@ self: {
version = "0.1.0.0";
sha256 = "1ry6flg5sh3hl1xpkqk67ayd4y0xx3j2pwcz26q1pgqn6m84plzr";
buildDepends = [ base containers ];
+ jailbreak = true;
description = "basic orders";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -82997,6 +85946,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ attoparsec base text ];
+ jailbreak = true;
description = "Organize scala imports";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -83016,8 +85966,10 @@ self: {
attoparsec base HUnit old-locale tasty tasty-hunit text thyme
unordered-containers
];
+ jailbreak = true;
description = "A parser and writer for org-mode flavored documents";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"os-release" = callPackage
@@ -83049,6 +86001,7 @@ self: {
];
description = "Show keys pressed with an on-screen display (Linux only)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"osm-download" = callPackage
@@ -83068,8 +86021,10 @@ self: {
persistent-sqlite persistent-template pool-conduit stm stm-chans
text time transformers transformers-base
];
+ jailbreak = true;
description = "Download Open Street Map tiles";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"osx-ar" = callPackage
@@ -83102,6 +86057,7 @@ self: {
homepage = "https://github.com/operational-transformation/ot.hs";
description = "Real-time collaborative editing with Operational Transformation";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ottparse-pretty" = callPackage
@@ -83143,8 +86099,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base Cabal Diff filepath haskell-src-exts ];
+ jailbreak = true;
description = "Haskell Package Versioning Tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"packdeps" = callPackage
@@ -83194,9 +86152,12 @@ self: {
pname = "packedstring";
version = "0.1.0.1";
sha256 = "1x78pzzdlnpcmh9p37rlf8m5cxf3yqm2alf3whl4zpr9w25r0qj8";
+ editedCabalFile = "cbc334ff8e721fb18b6799b28dc3e77addc7234aa553725b0af68375f75e0bcf";
buildDepends = [ array base ];
+ jailbreak = true;
description = "(Deprecated) Packed Strings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"packer" = callPackage
@@ -83246,6 +86207,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base deepseq directory-tree ];
+ jailbreak = true;
homepage = "https://github.com/Tener/archlinux-utils";
description = "Read whole Pacman database which pushes it into the memory cache";
license = stdenv.lib.licenses.bsd3;
@@ -83262,9 +86224,11 @@ self: {
buildDepends = [
base containers hmidi minioperational transformers
];
+ jailbreak = true;
homepage = "https://github.com/fumieval/padKONTROL";
description = "Controlling padKONTROL native mode";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pagerduty" = callPackage
@@ -83286,9 +86250,11 @@ self: {
template-haskell text time transformers transformers-base
unordered-containers
];
+ jailbreak = true;
homepage = "http://github.com/brendanhay/pagerduty";
description = "Client library for PagerDuty Integration and REST APIs";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"palette" = callPackage
@@ -83348,6 +86314,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Panda";
description = "A simple static blog engine";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pandoc" = callPackage
@@ -83385,11 +86352,7 @@ self: {
process QuickCheck syb test-framework test-framework-hunit
test-framework-quickcheck2 text zip-archive
];
- configureFlags = [
- "-fhttps" "-fmake-pandoc-man-pages" "-fold-locale" "-fnetwork-uri"
- "-fmake-pandoc-man-pages" "-fhttps" "-f-trypandoc"
- "-f-embed_data_files"
- ];
+ configureFlags = [ "-fhttps" "-fmake-pandoc-man-pages" ];
homepage = "http://johnmacfarlane.net/pandoc";
description = "Conversion between markup formats";
license = "GPL";
@@ -83417,10 +86380,6 @@ self: {
aeson base bytestring directory filepath pandoc pandoc-types
process temporary text yaml
];
- configureFlags = [
- "-f-test_citeproc" "-f-unicode_collation" "-f-embed_data_files"
- "-fbibutils" "-fsmall_base"
- ];
description = "Supports using pandoc with citeproc";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -83464,6 +86423,7 @@ self: {
buildDepends = [ base pandoc ];
description = "Literate Haskell support for GitHub's Markdown flavor";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pango" = callPackage
@@ -83479,10 +86439,10 @@ self: {
];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ cairo pango ];
- configureFlags = [ "-fnew-exception" ];
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the Pango text rendering engine";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) cairo; inherit (pkgs.gnome) pango;};
"papillon" = callPackage
@@ -83502,6 +86462,7 @@ self: {
homepage = "https://skami.iocikun.jp/haskell/packages/papillon";
description = "packrat parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pappy" = callPackage
@@ -83546,9 +86507,10 @@ self: {
uniplate
];
buildTools = [ alex ];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
description = "Paragon";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"parallel" = callPackage
@@ -83571,7 +86533,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers extensible-exceptions random ];
- configureFlags = [ "-f-tests" "-f-fuzz" "-f-benchmark" ];
+ jailbreak = true;
homepage = "http://batterseapower.github.com/parallel-io";
description = "Combinators for executing IO actions in parallel on a thread pool";
license = stdenv.lib.licenses.bsd3;
@@ -83614,6 +86576,7 @@ self: {
homepage = "http://code.haskell.org/parameterized-data";
description = "Parameterized data library implementing lightweight dependent types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"parco" = callPackage
@@ -83625,6 +86588,7 @@ self: {
buildDepends = [ base mtl ];
description = "Generalised parser combinators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"parco-attoparsec" = callPackage
@@ -83636,6 +86600,7 @@ self: {
buildDepends = [ attoparsec base mtl parco ];
description = "Generalised parser combinators - Attoparsec interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"parco-parsec" = callPackage
@@ -83647,6 +86612,7 @@ self: {
buildDepends = [ base mtl parco parsec ];
description = "Generalised parser combinators - Parsec interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"parcom-lib" = callPackage
@@ -83660,6 +86626,7 @@ self: {
buildDepends = [
base bytestring containers mtl text transformers utf8-string word8
];
+ jailbreak = true;
homepage = "https://bitbucket.org/tdammers/parcom-lib";
description = "A simple parser-combinator library, a bit like Parsec but without the frills";
license = stdenv.lib.licenses.bsd3;
@@ -83686,11 +86653,10 @@ self: {
filepath HTTP monad-par network normaldistribution parallel random
repa stm template-haskell time transformers utf8-string vector xml
];
- configureFlags = [
- "-fdistributed" "-faccelerate" "-f-cuda" "-f-devil" "-f-llvm"
- ];
+ jailbreak = true;
description = "Examples to accompany the book \"Parallel and Concurrent Programming in Haskell\"";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"parport" = callPackage
@@ -83728,9 +86694,11 @@ self: {
template-haskell text th-lift
];
testDepends = [ cmdargs ];
+ jailbreak = true;
homepage = "http://github.com/gregwebs/cmdargs-help";
description = "generate command line arguments from a --help output";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"parseargs" = callPackage
@@ -83757,7 +86725,6 @@ self: {
sha256 = "01vqk7krbhy6bf30ydjdjvbzx5ynjdbc3dwlhzinzq6a69a6brlq";
buildDepends = [ base bytestring mtl text ];
testDepends = [ base HUnit test-framework test-framework-hunit ];
- configureFlags = [ "-fbase4" ];
homepage = "http://www.cs.uu.nl/~daan/parsec.html";
description = "Monadic parser combinators";
license = stdenv.lib.licenses.bsd3;
@@ -83781,7 +86748,6 @@ self: {
version = "0.1.0";
sha256 = "1gzy4v3r02kvdxvgg1nj83mmb6aph2v4ilf9c7y6nbvi2x49l0bp";
buildDepends = [ base parsec ];
- configureFlags = [ "-f-parsec1" ];
description = "Utilities for parsing numbers from strings";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -83796,6 +86762,7 @@ self: {
sha256 = "1knmcciyq07vp06s3xh4hwz654n017863dh9hdp1mwm57vc43s3j";
buildDepends = [ base parsec parsers ];
testDepends = [ base directory doctest filepath ];
+ jailbreak = true;
homepage = "http://github.com/ekmett/parsec-parsers/";
description = "Parsing instances for Parsec";
license = stdenv.lib.licenses.bsd3;
@@ -83878,7 +86845,6 @@ self: {
version = "0.1.0";
sha256 = "0i7fvbhvvmf5nld51kv9v0vpb42dlnpivxcl7ll0zwa3gzks2cm5";
buildDepends = [ base parsec ];
- configureFlags = [ "-f-parsec3" ];
description = "Utilities for parsing numbers from Char sequences";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -83890,7 +86856,6 @@ self: {
version = "3000.0.0";
sha256 = "0gsylvm8srddmh3g3ysjgqqmgp0ddg6pdi2sz15v6nrvsqfabiip";
buildDepends = [ base old-locale old-time parsec ];
- configureFlags = [ "-fsplit-base" ];
homepage = "http://www.cs.chalmers.se/~bringert/darcs/parsedate/doc/";
description = "Data and time parsing for CalendarTime";
license = stdenv.lib.licenses.bsd3;
@@ -83916,6 +86881,7 @@ self: {
buildDepends = [ base mtl parsec ];
homepage = "http://naesten.dyndns.org:8080/repos/parsely";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"parser-helper" = callPackage
@@ -83927,8 +86893,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ aeson base bytestring haskell-src-exts text ];
+ jailbreak = true;
description = "Prints Haskell parse trees in JSON";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"parsergen" = callPackage
@@ -83969,7 +86937,6 @@ self: {
attoparsec base bytestring containers directory doctest filepath
parsec QuickCheck quickcheck-instances
];
- configureFlags = [ "-f-lib-werror" ];
homepage = "http://github.com/ekmett/parsers/";
description = "Parsing combinators";
license = stdenv.lib.licenses.bsd3;
@@ -84054,8 +87021,10 @@ self: {
buildDepends = [
base comonad-transformers data-lens transformers
];
+ jailbreak = true;
description = "Haskell 98 Partial Lenses";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"partial-uri" = callPackage
@@ -84090,6 +87059,7 @@ self: {
homepage = "https://github.com/startling/partly";
description = "Inspect, create, and alter MBRs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"passage" = callPackage
@@ -84129,6 +87099,7 @@ self: {
buildDepends = [ base HTTP network ];
description = "Interface to the past.is URL shortening service";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pasty" = callPackage
@@ -84143,6 +87114,7 @@ self: {
homepage = "http://github.com/markusle/pasty/tree/master";
description = "A simple command line pasting utility";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"patch-combinators" = callPackage
@@ -84172,10 +87144,11 @@ self: {
accelerate-io accelerate-utility base Cabal filepath gnuplot
hmatrix JuicyPixels utility-ht vector
];
- configureFlags = [ "-f-builddraft" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/patch-image/";
description = "Compose a big image from overlapping parts";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"path-pieces" = callPackage
@@ -84201,6 +87174,7 @@ self: {
homepage = "http://github.com/TheBizzle";
description = "A toy pathfinding library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pathtype" = callPackage
@@ -84210,7 +87184,6 @@ self: {
version = "0.5.4";
sha256 = "1ns5q3nrkl99xp4mrmk8wpvb9qzyvnw5cyjwh5rh76ykm2d5dbg7";
buildDepends = [ base directory QuickCheck time ];
- configureFlags = [ "-f-old-time" ];
homepage = "http://code.haskell.org/pathtype";
description = "Type-safe replacement for System.FilePath etc";
license = stdenv.lib.licenses.bsd3;
@@ -84236,6 +87209,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base HandsomeSoup hxt ];
+ jailbreak = true;
description = "A webpage scraper for Patreon which dumps a list of patrons to a text file";
license = stdenv.lib.licenses.mit;
}) {};
@@ -84267,6 +87241,7 @@ self: {
homepage = "http://github.com/toschoo/mom";
description = "Common patterns in message-oriented applications";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"paymill" = callPackage
@@ -84293,9 +87268,11 @@ self: {
base bytestring conduit containers failure http-conduit http-types
mtl old-locale text time wai
];
+ jailbreak = true;
homepage = "http://projects.haskell.org/paypal-api/";
description = "PayPal API, currently supporting \"ButtonManager\"";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pb" = callPackage
@@ -84309,6 +87286,7 @@ self: {
buildDepends = [ base containers HTTP network process ];
description = "pastebin command line application";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pbc4hs" = callPackage
@@ -84318,6 +87296,7 @@ self: {
version = "0.1.1.5";
sha256 = "16dki82d9x6rpkbax090ax8ynwjxv31cvpzpy51ynq83kjg3v2z9";
buildDepends = [ base hslua string-qq ];
+ jailbreak = true;
homepage = "https://github.com/DavidFeng/pbc4hs";
description = "pbc for HsLua";
license = stdenv.lib.licenses.bsd3;
@@ -84435,7 +87414,6 @@ self: {
sha256 = "0l1df2sk5qwf424bvb8mbdkr2xjg43fi92n5r22yd7vm1zz0jqvf";
buildDepends = [ base bytestring ];
extraLibraries = [ pcre ];
- configureFlags = [ "-f-old_base" ];
homepage = "https://github.com/Daniel-Diaz/pcre-light";
description = "A small, efficient and portable regex library for Perl 5 compatible regular expressions";
license = stdenv.lib.licenses.bsd3;
@@ -84448,6 +87426,7 @@ self: {
version = "0.0.0";
sha256 = "1kjh36gglszd16rsh0rm2q5fxjlfipzld4hw0l2r23y0flbqkbvx";
buildDepends = [ base bytestring pcre-light ];
+ jailbreak = true;
homepage = "http://github.com/urso/pcre-light-extra";
description = "pcre-light extra functionality";
license = stdenv.lib.licenses.bsd3;
@@ -84540,6 +87519,7 @@ self: {
homepage = "https://github.com/Yuras/pdf-toolbox";
description = "Simple pdf viewer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pdf2line" = callPackage
@@ -84581,6 +87561,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base directory pdfinfo process temporary ];
+ jailbreak = true;
homepage = "http://dmwit.com/pdfsplit";
description = "split two-column PDFs, so there is one column per page";
license = stdenv.lib.licenses.bsd3;
@@ -84599,6 +87580,7 @@ self: {
];
description = "pdynload is polymorphic dynamic linking library";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"peakachu" = callPackage
@@ -84612,8 +87594,10 @@ self: {
buildDepends = [
base derive GLUT List template-haskell time TypeCompose
];
+ jailbreak = true;
description = "Experiemental library for composable interactive programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"peano-inf" = callPackage
@@ -84644,6 +87628,7 @@ self: {
];
description = "pec embedded compiler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pecoff" = callPackage
@@ -84689,7 +87674,7 @@ self: {
base hashtables haskell-src-meta ListLike monad-control mtl
template-haskell
];
- configureFlags = [ "-f-build-example" ];
+ jailbreak = true;
homepage = "http://tanakh.github.com/Peggy";
description = "The Parser Generator for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -84748,14 +87733,11 @@ self: {
anonymous-sums base parsec QuickCheck random-shuffle semigroups
tasty tasty-quickcheck text time transformers
];
- configureFlags = [
- "-fincabal" "-f-test" "-f-debug" "-fbuild-reconcile"
- "-fbuild-reprint" "-fbuild-diff" "-fbuild-selloff" "-fbuild-penny"
- "-f-build-gibberish"
- ];
+ jailbreak = true;
homepage = "http://www.github.com/massysett/penny";
description = "Extensible double-entry accounting system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"penny-bin" = callPackage
@@ -84772,13 +87754,11 @@ self: {
base containers explicit-exception multiarg parsec penny-lib
pretty-show semigroups text transformers
];
- configureFlags = [
- "-fbuild-reconcile" "-fbuild-reprint" "-fbuild-diff"
- "-fbuild-selloff" "-fbuild-penny" "-f-debug"
- ];
+ jailbreak = true;
homepage = "http://www.github.com/massysett/penny";
description = "Deprecated - use penny package instead";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"penny-lib" = callPackage
@@ -84798,10 +87778,11 @@ self: {
explicit-exception matchers multiarg ofx old-locale parsec prednote
pretty-show rainbow semigroups split text time transformers
];
- configureFlags = [ "-fbuildlib" "-fincabal" "-f-test" "-f-debug" ];
+ jailbreak = true;
homepage = "http://www.github.com/massysett/penny";
description = "Deprecated - use penny package instead";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"peparser" = callPackage
@@ -84814,6 +87795,7 @@ self: {
homepage = "https://github.com/igraves/peparser-haskell";
description = "A parser for PE object files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"perceptron" = callPackage
@@ -84847,9 +87829,11 @@ self: {
MonadRandom mtl primitive QuickCheck stm strict tagged
template-haskell time transformers unix
];
+ jailbreak = true;
homepage = "https://github.com/Cognimeta/perdure";
description = "Robust persistence for acyclic immutable data";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"perm" = callPackage
@@ -84867,6 +87851,7 @@ self: {
homepage = "https://github.com/sonyandy/perm";
description = "permutation Applicative and Monad with many mtl instances";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"permutation" = callPackage
@@ -84890,6 +87875,7 @@ self: {
buildDepends = [ base mtl ];
description = "Generalised permutation parser combinator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"persistable-record" = callPackage
@@ -84935,7 +87921,6 @@ self: {
unordered-containers vector
];
extraLibraries = [ sqlite ];
- configureFlags = [ "-f-nooverlap" ];
homepage = "http://www.yesodweb.com/book/persistent";
description = "Type-safe, multi-backend data serialization";
license = stdenv.lib.licenses.mit;
@@ -84948,6 +87933,7 @@ self: {
version = "0.1.0";
sha256 = "09akf8vpkn2jskf1vf9mq96sakqzr7mfs8hhri8qlbkwx3i5nr6f";
buildDepends = [ base cereal persistent text ];
+ jailbreak = true;
homepage = "http://hub.darcs.net/co-dan/persistent-cereal";
description = "Helper functions for writing Persistent instances";
license = stdenv.lib.licenses.publicDomain;
@@ -84960,6 +87946,7 @@ self: {
version = "0.3";
sha256 = "14nn01bbwskllbccgcnwnjwzyws6vppqv4l51n6pcvhwbphn18qz";
buildDepends = [ array base diffarray ];
+ jailbreak = true;
description = "Persistent equivalence relations (aka union-find)";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -84978,6 +87965,7 @@ self: {
];
description = "Declare Persistent entities using SQL SELECT query syntax";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"persistent-map" = callPackage
@@ -84992,9 +87980,11 @@ self: {
base binary containers directory EdisonAPI EdisonCore filepath LRU
mtl stm-io-hooks
];
+ jailbreak = true;
homepage = "http://darcs.monoid.at/persistent-map";
description = "A thread-safe (STM) persistency interface for finite map types";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"persistent-mongoDB" = callPackage
@@ -85011,7 +88001,6 @@ self: {
monad-control mongoDB network path-pieces persistent resource-pool
resourcet text time transformers
];
- configureFlags = [ "-f-high_precision_date" ];
homepage = "http://www.yesodweb.com/book/persistent";
description = "Backend for the persistent library using mongoDB";
license = stdenv.lib.licenses.mit;
@@ -85034,6 +88023,7 @@ self: {
homepage = "http://www.yesodweb.com/book/persistent";
description = "Backend for the persistent library using MySQL database server";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"persistent-odbc" = callPackage
@@ -85053,7 +88043,6 @@ self: {
monad-control monad-logger persistent persistent-template resourcet
text time transformers
];
- configureFlags = [ "-f-tester" "-f-debug" ];
homepage = "https://github.com/gbwey/persistent-odbc";
description = "Backend for the persistent library using ODBC";
license = stdenv.lib.licenses.mit;
@@ -85091,9 +88080,11 @@ self: {
base bytestring persistent protocol-buffers
protocol-buffers-descriptor template-haskell text
];
+ jailbreak = true;
homepage = "https://github.com/mstone/persistent-protobuf";
description = "Template-Haskell helpers for integrating protobufs with persistent";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"persistent-redis" = callPackage
@@ -85116,6 +88107,7 @@ self: {
path-pieces persistent persistent-template scientific
template-haskell text time transformers utf8-string
];
+ jailbreak = true;
description = "Backend for persistent library using Redis";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -85130,6 +88122,7 @@ self: {
homepage = "https://github.com/acfoltzer/persistent-refs";
description = "Haskell references backed by an IntMap for persistence and reversibility";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"persistent-sqlite" = callPackage
@@ -85150,7 +88143,6 @@ self: {
testDepends = [
base hspec persistent persistent-template time transformers
];
- configureFlags = [ "-f-build-sanity-exe" "-f-systemlib" ];
homepage = "http://www.yesodweb.com/book/persistent";
description = "Backend for the persistent library using sqlite3";
license = stdenv.lib.licenses.mit;
@@ -85194,6 +88186,7 @@ self: {
homepage = "https://github.com/travitch/persistent-vector";
description = "A persistent sequence based on array mapped tries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"persistent-zookeeper" = callPackage
@@ -85223,6 +88216,7 @@ self: {
];
description = "Backend for persistent library using Zookeeper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"persona" = callPackage
@@ -85240,6 +88234,7 @@ self: {
homepage = "https://github.com/frasertweedale/hs-persona";
description = "Persona (BrowserID) library";
license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pesca" = callPackage
@@ -85254,6 +88249,7 @@ self: {
homepage = "http://www.cs.chalmers.se/~aarne/pesca/";
description = "Proof Editor for Sequent Calculus";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"peyotls" = callPackage
@@ -85277,9 +88273,11 @@ self: {
base bytestring crypto-random handle-like network random stm x509
x509-store
];
+ jailbreak = true;
homepage = "https://github.com/YoshikuniJujo/peyotls/wiki";
description = "Pretty Easy YOshikuni-made TLS library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pez" = callPackage
@@ -85294,9 +88292,11 @@ self: {
testDepends = [
base QuickCheck test-framework test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://brandon.si/code/pez-zipper-library-released/";
description = "A Pretty Extraordinary Zipper library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pg-harness" = callPackage
@@ -85312,6 +88312,7 @@ self: {
buildDepends = [
async base ini postgresql-simple random scotty text transformers
];
+ jailbreak = true;
description = "REST service for creating temporary PostgreSQL databases";
license = stdenv.lib.licenses.agpl3;
}) {};
@@ -85343,6 +88344,7 @@ self: {
blaze-textual bytestring containers MonadCatchIO-transformers mtl
network old-locale pcre-light text time utf8-string
];
+ jailbreak = true;
homepage = "https://github.com/chrisdone/pgsql-simple";
description = "A mid-level PostgreSQL client library";
license = stdenv.lib.licenses.bsd3;
@@ -85367,9 +88369,11 @@ self: {
version = "0.1";
sha256 = "0i54myn9abrpzrs58llqgii9fhd9ns9hipnaj00dnqx2mfbg7pan";
buildDepends = [ array base ghc-prim monad-st primitive vector ];
+ jailbreak = true;
homepage = "http://github.com/glehel/phasechange";
description = "Freezing, thawing, and copy elision";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"phash" = callPackage
@@ -85408,6 +88412,7 @@ self: {
homepage = "https://github.com/gurgeh/haskell-phone-push";
description = "Push notifications for Android and iOS";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"phonetic-code" = callPackage
@@ -85431,9 +88436,11 @@ self: {
version = "2.0.0.1";
sha256 = "0aa0s7qmy78s4q1mjcnw0qiqlbmdmkmk2nbn6hkmw5fn29iq0iwj";
buildDepends = [ array base mtl reactive TypeCompose wx wxcore ];
+ jailbreak = true;
homepage = "http://haskell.org/haskellwiki/Phooey";
description = "Functional user interfaces";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"photoname" = callPackage
@@ -85456,6 +88463,7 @@ self: {
homepage = "http://ui3.info/d/proj/photoname.html";
description = "Rename JPEG photo files based on shoot date";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"phraskell" = callPackage
@@ -85467,9 +88475,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base mtl SDL transformers ];
+ jailbreak = true;
homepage = "https://github.com/skypers/phraskell";
description = "A fractal viewer";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"phybin" = callPackage
@@ -85495,10 +88505,11 @@ self: {
test-framework test-framework-hunit test-framework-th text time
vector
];
- configureFlags = [ "-f-sequential" "-f-bitvec" "-fhashrf" ];
+ jailbreak = true;
homepage = "http://www.cs.indiana.edu/~rrnewton/projects/phybin/";
description = "Utility for clustering phylogenetic trees in Newick format based on Robinson-Foulds distance";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pi-calculus" = callPackage
@@ -85516,9 +88527,11 @@ self: {
AES base binary byteable bytestring containers cryptohash HTTP
io-streams mtl network parsec RSA transformers
];
+ jailbreak = true;
homepage = "https://github.com/renzyq19/pi-calculus";
description = "Applied pi-calculus interpreter";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pianola" = callPackage
@@ -85541,6 +88554,7 @@ self: {
];
description = "Remotely controlling Java Swing applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"picologic" = callPackage
@@ -85552,10 +88566,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers mtl parsec picosat pretty ];
- configureFlags = [ "-f-shell" ];
homepage = "https://github.com/sdiehl/picologic";
description = "Utilities for symbolic predicate logic expressions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"picoparsec" = callPackage
@@ -85575,7 +88589,6 @@ self: {
base bytestring monoid-subclasses QuickCheck quickcheck-instances
tasty tasty-quickcheck text
];
- configureFlags = [ "-f-developer" ];
homepage = "https://bitbucket.org/blamario/picoparsec";
description = "Fast combinator parsing for bytestrings and text";
license = stdenv.lib.licenses.bsd3;
@@ -85604,6 +88617,7 @@ self: {
buildDepends = [ array base containers Imlib mtl ];
description = "A Piet interpreter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"piki" = callPackage
@@ -85618,6 +88632,7 @@ self: {
homepage = "http://www.mew.org/~kazu/proj/piki/";
description = "Yet another text-to-html converter";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pipes" = callPackage
@@ -85687,6 +88702,7 @@ self: {
buildDepends = [
attoparsec base bytestring pipes-core transformers
];
+ jailbreak = true;
description = "Streaming parsing in the pipes-core framework with Attoparsec";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -85708,6 +88724,7 @@ self: {
base binary bytestring ghc-prim lens-family-core pipes pipes-parse
smallcheck tasty tasty-hunit tasty-smallcheck transformers
];
+ jailbreak = true;
homepage = "https://github.com/k0001/pipes-binary";
description = "Encode and decode binary streams using the pipes and binary libraries";
license = stdenv.lib.licenses.bsd3;
@@ -85742,6 +88759,7 @@ self: {
homepage = "https://github.com/nikita-volkov/pipes-cereal-plus";
description = "A streaming serialization library on top of \"pipes\" and \"cereal-plus\"";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pipes-concurrency" = callPackage
@@ -85763,9 +88781,11 @@ self: {
version = "0.0.1";
sha256 = "1nzylhmi3f2m0xnqgx0m9g0p5pwl6xnidsz8ykzmv8wafrh60dh8";
buildDepends = [ base conduit mtl pipes-core ];
+ jailbreak = true;
homepage = "https://github.com/pcapriotti/pipes-extra";
description = "Conduit adapters";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pipes-core" = callPackage
@@ -85779,6 +88799,7 @@ self: {
buildDepends = [
base categories lifted-base monad-control transformers void
];
+ jailbreak = true;
homepage = "https://github.com/pcapriotti/pipes-core";
description = "Compositional pipelines";
license = stdenv.lib.licenses.bsd3;
@@ -85813,7 +88834,6 @@ self: {
base bytestring cassava HUnit pipes pipes-bytestring test-framework
test-framework-hunit vector
];
- configureFlags = [ "-ftest-hunit" ];
description = "Fast, streaming csv parser";
license = stdenv.lib.licenses.mit;
}) {};
@@ -85846,7 +88866,7 @@ self: {
base bytestring HUnit mtl pipes-core test-framework
test-framework-hunit test-framework-th-prime
];
- configureFlags = [ "-f-examples" ];
+ jailbreak = true;
homepage = "https://github.com/pcapriotti/pipes-extra";
description = "Various basic utilities for Pipes";
license = stdenv.lib.licenses.bsd3;
@@ -85936,9 +88956,11 @@ self: {
base bytestring network network-simple network-simple-tls pipes
pipes-network pipes-safe tls transformers
];
+ jailbreak = true;
homepage = "https://github.com/k0001/pipes-network-tls";
description = "TLS-secured network connections support for pipes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pipes-p2p" = callPackage
@@ -85957,6 +88979,7 @@ self: {
homepage = "https://github.com/jdnavarro/pipes-p2p";
description = "P2P network nodes with pipes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pipes-p2p-examples" = callPackage
@@ -85976,6 +88999,7 @@ self: {
homepage = "https://github.com/jdnavarro/pipes-p2p-examples";
description = "Examples using pipes-p2p";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pipes-parse" = callPackage
@@ -86048,6 +89072,7 @@ self: {
async base bytestring directory hspec pipes pipes-bytestring
pipes-safe process stm stm-chans text
];
+ jailbreak = true;
description = "Create proper Pipes from System.Process";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -86065,7 +89090,6 @@ self: {
base bytestring pipes pipes-bytestring pipes-group pipes-parse
pipes-safe streaming-commons text transformers
];
- configureFlags = [ "-f-noio" ];
homepage = "https://github.com/michaelt/text-pipes";
description = "Text pipes";
license = stdenv.lib.licenses.bsd3;
@@ -86115,6 +89139,7 @@ self: {
base QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/ixmatus/pipes-websockets";
description = "Library for using websockets ontop of pipes-network";
license = stdenv.lib.licenses.bsd3;
@@ -86150,9 +89175,10 @@ self: {
array base bytestring containers haskeline haskeline-class mpppc
mtl parsec text utf8-string
];
- configureFlags = [ "-f-debug" ];
+ jailbreak = true;
description = "A dependently typed core language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pit" = callPackage
@@ -86173,6 +89199,7 @@ self: {
homepage = "https://github.com/chiro/haskell-pit";
description = "Account management tool";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pkcs1" = callPackage
@@ -86198,6 +89225,7 @@ self: {
buildDepends = [ base Cabal split ];
description = "Package dependency graph for installed packages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pktree" = callPackage
@@ -86235,9 +89263,11 @@ self: {
buildDepends = [
base bytestring mtl stringable text time utf8-string
];
+ jailbreak = true;
homepage = "https://secure.plaimi.net/works/plailude";
description = "plaimi's prelude";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"planar-graph" = callPackage
@@ -86252,6 +89282,7 @@ self: {
attoparsec base blaze-builder bytestring containers data-clist
deepseq
];
+ jailbreak = true;
description = "A representation of planar graphs";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -86281,12 +89312,11 @@ self: {
attoparsec base bytestring filepath optparse-applicative text word8
];
testDepends = [ base bytestring doctest hlint hspec ];
- configureFlags = [
- "-ftest-doctest" "-ftest-hlint" "-f-maintainer"
- ];
+ jailbreak = true;
homepage = "https://github.com/pjones/playlists";
description = "Library and executable for working with playlist files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"plist" = callPackage
@@ -86314,9 +89344,11 @@ self: {
aeson base blaze-builder bytestring errors http-streams http-types
io-streams network-uri old-locale time unexceptionalio
];
+ jailbreak = true;
homepage = "https://github.com/singpolyma/plivo-haskell";
description = "Plivo API wrapper for Haskell";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"plot" = callPackage
@@ -86333,6 +89365,7 @@ self: {
homepage = "http://github.com/amcphail/plot";
description = "A plotting library, exportable as eps/pdf/svg/png or renderable with gtk";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"plot-gtk" = callPackage
@@ -86345,6 +89378,7 @@ self: {
homepage = "http://code.haskell.org/plot";
description = "GTK plots and interaction with GHCi";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"plot-gtk3" = callPackage
@@ -86357,6 +89391,7 @@ self: {
homepage = "http://code.haskell.org/plot";
description = "GTK3 plots and interaction with GHCi";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"plot-lab" = callPackage
@@ -86371,6 +89406,7 @@ self: {
homepage = "https://github.com/sumitsahrawat/plot-lab";
description = "A plotting tool with Mathematica like Manipulation abilities";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"plotserver-api" = callPackage
@@ -86415,6 +89451,7 @@ self: {
testDepends = [ base directory process ];
description = "Automatic recompilation and reloading of haskell modules";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"plugins-multistage" = callPackage
@@ -86471,6 +89508,7 @@ self: {
homepage = "https://skami.iocikun.jp/haskell/packages/png-file";
description = "read/write png file";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pngload" = callPackage
@@ -86484,6 +89522,7 @@ self: {
buildDepends = [ array base bytestring haskell98 mtl parsec zlib ];
description = "Pure Haskell loader for PNG images";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pngload-fixed" = callPackage
@@ -86495,6 +89534,7 @@ self: {
buildDepends = [ array base bytestring mtl parsec zlib ];
description = "Pure Haskell loader for PNG images";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pnm" = callPackage
@@ -86568,7 +89608,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers haskell-src mtl syb ];
- configureFlags = [ "-fseparatesyb" ];
homepage = "http://github.com/23Skidoo/pointful";
description = "Pointful refactoring tool";
license = stdenv.lib.licenses.bsd3;
@@ -86581,7 +89620,6 @@ self: {
version = "1.1.0.5";
sha256 = "17gzh3w5j05l6ig1sdjqrl7br17zzpy9yh5k2lck0gjl5prcjclw";
buildDepends = [ base ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~wren/";
description = "Some common point-free combinators";
license = stdenv.lib.licenses.bsd3;
@@ -86594,7 +89632,6 @@ self: {
version = "0.0.9";
sha256 = "0f0bnd6dyi1ancdxd2hkszshws9d8jz8iamz5pir0i4nsj69mqyx";
buildDepends = [ base GHood process syb ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://haskell.di.uminho.pt/wiki/Pointless+Haskell";
description = "Pointless Haskell library";
license = stdenv.lib.licenses.bsd3;
@@ -86614,6 +89651,7 @@ self: {
homepage = "http://haskell.di.uminho.pt/wiki/Pointless+Lenses";
description = "Pointless Lenses library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pointless-rewrite" = callPackage
@@ -86629,6 +89667,7 @@ self: {
];
description = "Pointless Rewrite library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"poker-eval" = callPackage
@@ -86669,9 +89708,11 @@ self: {
base binary containers dawg directory filepath mtl polysoup text
text-binary transformers
];
+ jailbreak = true;
homepage = "https://github.com/kawu/polh/tree/master/lexicon";
description = "A library for manipulating the historical dictionary of Polish (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"polimorf" = callPackage
@@ -86764,6 +89805,7 @@ self: {
];
description = "Taming Selective Strictness";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"polysoup" = callPackage
@@ -86773,6 +89815,7 @@ self: {
version = "0.5.2";
sha256 = "13923ff6lzvl6j059gyhcb3cx27plkxgbyjr7skg9g5hxia5j73b";
buildDepends = [ base containers polyparse tagsoup ];
+ jailbreak = true;
homepage = "https://github.com/kawu/polysoup";
description = "Online XML parsing with polyparse and tagsoup";
license = stdenv.lib.licenses.bsd3;
@@ -86787,6 +89830,7 @@ self: {
buildDepends = [ base ];
description = "Typeable for polymorphic types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"polytypeable-utils" = callPackage
@@ -86798,6 +89842,7 @@ self: {
buildDepends = [ base haskell98 polytypeable ];
description = "Utilities for polytypeable";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ponder" = callPackage
@@ -86807,6 +89852,7 @@ self: {
version = "0.0.1";
sha256 = "1nq4z063g429hxwf4vbyyr2b2s7sn325m0h6ggf793inlj48ci0h";
buildDepends = [ base mtl ];
+ jailbreak = true;
homepage = "https://gihub.com/matt76k/ponder";
description = "PEG parser combinator";
license = stdenv.lib.licenses.mit;
@@ -86826,9 +89872,11 @@ self: {
base HDBC HDBC-sqlite3 hlogger pontarius-xmpp pontarius-xpmn
xml-types
];
+ jailbreak = true;
homepage = "http://www.pontarius.org/projects/pontarius-mediaserver/";
description = "Extended Personal Media Network (XPMN) media server";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pontarius-xmpp" = callPackage
@@ -86862,10 +89910,11 @@ self: {
tasty tasty-hspec tasty-hunit tasty-quickcheck tasty-th text
transformers xml-picklers xml-types
];
- configureFlags = [ "-fwith-th" ];
+ jailbreak = true;
homepage = "https://github.com/pontarius/pontarius-xmpp/";
description = "An XMPP client library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pontarius-xpmn" = callPackage
@@ -86879,9 +89928,11 @@ self: {
buildDepends = [
base containers pontarius-xmpp random text xml-types
];
+ jailbreak = true;
homepage = "http://www.pontarius.org/projects/pontarius-xpmn/";
description = "Extended Personal Media Network (XPMN) library";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pony" = callPackage
@@ -86906,9 +89957,11 @@ self: {
sha256 = "1fwwnwxk3kprr2z9y7bwa1qwxfkzwcb2n5l6vkq1c5s8gjls581c";
editedCabalFile = "c79e139723764f4d4ba584c6cf6f73174700271910b15ed0f25a150a53a8c951";
buildDepends = [ base monad-control transformers ];
+ jailbreak = true;
homepage = "http://www.yesodweb.com/book/persistent";
description = "Thread-safe resource pools. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pool-conduit" = callPackage
@@ -86925,6 +89978,7 @@ self: {
homepage = "http://www.yesodweb.com/book/persistent";
description = "Resource pool allocations via ResourceT. (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pooled-io" = callPackage
@@ -86936,7 +89990,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base deepseq transformers unsafe utility-ht ];
- configureFlags = [ "-f-buildexamples" ];
homepage = "http://code.haskell.org/~thielema/pooled-io/";
description = "Run jobs on a limited number of threads and support data dependencies";
license = stdenv.lib.licenses.bsd3;
@@ -86964,6 +90017,7 @@ self: {
homepage = "http://www.haskell.org/~petersen/haskell/popenhs/";
description = "popenhs is a popen-like library for Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"poppler" = callPackage
@@ -86979,10 +90033,10 @@ self: {
];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ cairo gdk_pixbuf glib gtk pango popplerGlib ];
- configureFlags = [ "-f-gtk3" ];
homepage = "http://www.haskell.org/gtk2hs/";
description = "Binding to the Poppler";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) cairo; inherit (pkgs) gdk_pixbuf;
inherit (pkgs) glib; inherit (pkgs.gnome) gtk;
inherit (pkgs.gnome) pango; popplerGlib = null;};
@@ -87061,6 +90115,7 @@ self: {
homepage = "http://www.cse.unsw.edu.au/~chak/haskell/ports/";
description = "The Haskell Ports Library";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"positive" = callPackage
@@ -87070,8 +90125,10 @@ self: {
version = "0.4";
sha256 = "0vj0gd7xln1xihf8dyrr2sm7zh5wg6qvfzy30nslwgvzyn4f14gv";
buildDepends = [ base nats semigroups ];
+ jailbreak = true;
description = "Positive integers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"posix-acl" = callPackage
@@ -87087,9 +90144,11 @@ self: {
transformers-base unix
];
extraLibraries = [ acl ];
+ jailbreak = true;
homepage = "https://github.com/tensor5/posix-acl";
description = "Support for Posix ACL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) acl;};
"posix-escape" = callPackage
@@ -87138,6 +90197,7 @@ self: {
homepage = "https://bitbucket.org/merijnv/posix-pty";
description = "Pseudo terminal interaction with subprocesses";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"posix-realtime" = callPackage
@@ -87147,6 +90207,7 @@ self: {
version = "0.0.0.2";
sha256 = "1i3ag71ymmbcg1v0s6fqkpli8d1wplhj2jkalrv7alz8z666ms3h";
buildDepends = [ base unix ];
+ jailbreak = true;
description = "POSIX Realtime functionality";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -87172,6 +90233,7 @@ self: {
buildDepends = [ base unix ];
description = "Low-level wrapping of POSIX waitpid(2)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"possible" = callPackage
@@ -87229,6 +90291,7 @@ self: {
homepage = "https://github.com/nikita-volkov/postgresql-binary";
description = "Encoders and decoders for the PostgreSQL's binary format";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"postgresql-copy-escape" = callPackage
@@ -87315,6 +90378,7 @@ self: {
postgresql-simple time
];
testDepends = [ base bytestring hspec postgresql-simple ];
+ jailbreak = true;
homepage = "https://github.com/ameingast/postgresql-simple-migration";
description = "PostgreSQL Schema Migrations";
license = stdenv.lib.licenses.bsd3;
@@ -87347,6 +90411,7 @@ self: {
homepage = "https://github.com/tolysz/postgresql-simple-typed";
description = "Typed extension for PostgreSQL simple";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"postgresql-typed" = callPackage
@@ -87365,12 +90430,52 @@ self: {
template-haskell text time utf8-string uuid
];
testDepends = [ base network time ];
- configureFlags = [
- "-fscientific" "-fuuid" "-ftext" "-fbinary" "-fmd5"
- ];
homepage = "https://github.com/dylex/postgresql-typed";
description = "A PostgreSQL access library with compile-time SQL type inference";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "postgrest" = callPackage
+ ({ mkDerivation, aeson, base, base64-string, bcrypt, blaze-builder
+ , bytestring, case-insensitive, containers, convertible, hasql
+ , hasql-backend, hasql-postgres, hspec, hspec-wai, hspec-wai-json
+ , HTTP, http-media, http-types, mtl, network, network-uri
+ , optparse-applicative, parsec, process, QuickCheck, Ranged-sets
+ , regex-base, regex-tdfa, regex-tdfa-text, resource-pool
+ , scientific, split, string-conversions, stringsearch, text, time
+ , transformers, unordered-containers, vector, wai, wai-cors
+ , wai-extra, wai-middleware-static, warp
+ }:
+ mkDerivation {
+ pname = "postgrest";
+ version = "0.2.5.0";
+ sha256 = "1128s2yblmixqv3ywnzy3gsci9hncriyv21k09j1l81pjkk0cxgl";
+ isLibrary = false;
+ isExecutable = true;
+ buildDepends = [
+ aeson base base64-string bcrypt blaze-builder bytestring
+ case-insensitive containers convertible hasql hasql-backend
+ hasql-postgres HTTP http-types mtl network network-uri
+ optparse-applicative parsec Ranged-sets regex-base regex-tdfa
+ regex-tdfa-text resource-pool scientific split string-conversions
+ stringsearch text time transformers unordered-containers vector wai
+ wai-cors wai-extra wai-middleware-static warp
+ ];
+ testDepends = [
+ aeson base base64-string bcrypt blaze-builder bytestring
+ case-insensitive containers convertible hasql hasql-backend
+ hasql-postgres hspec hspec-wai hspec-wai-json HTTP http-media
+ http-types mtl network network-uri optparse-applicative parsec
+ process QuickCheck Ranged-sets regex-base regex-tdfa
+ regex-tdfa-text resource-pool scientific split string-conversions
+ stringsearch text time transformers unordered-containers vector wai
+ wai-cors wai-extra wai-middleware-static warp
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/begriffs/postgrest";
+ description = "REST API for any Postgres database";
+ license = stdenv.lib.licenses.mit;
}) {};
"postie" = callPackage
@@ -87389,7 +90494,6 @@ self: {
pipes pipes-bytestring pipes-parse stringsearch tls transformers
uuid
];
- configureFlags = [ "-f-examples" ];
description = "SMTP server library to receive emails from within Haskell programs";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -87408,7 +90512,6 @@ self: {
aeson attoparsec base bytestring containers http-client-tls
http-types network-api-support text
];
- configureFlags = [ "-f-demo" "-fsmall_base" ];
homepage = "https://github.com/apiengine/postmark";
description = "Library for postmarkapp.com HTTP Api";
license = stdenv.lib.licenses.bsd3;
@@ -87433,6 +90536,7 @@ self: {
homepage = "http://github.com/peti/postmaster";
description = "Postmaster ESMTP Server";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) adns; inherit (pkgs) openssl;};
"powermate" = callPackage
@@ -87445,6 +90549,7 @@ self: {
homepage = "http://neugierig.org/software/darcs/powermate/";
description = "PowerMate bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"powerpc" = callPackage
@@ -87479,10 +90584,10 @@ self: {
sha256 = "1n71qhlxn9js5cizyqdq9f7m08m5j0354871r8b47bnzdi2kqkc4";
buildDepends = [ base QuickCheck random stm ];
testDepends = [ base ChasingBottoms ];
- configureFlags = [ "-fsplit-base" ];
homepage = "http://hub.darcs.net/shelarcy/pqc";
description = "Parallel batch driver for QuickCheck";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pqueue" = callPackage
@@ -87507,8 +90612,10 @@ self: {
buildDepends = [
base containers ghc-prim MaybeT mtl stateful-mtl uvector
];
+ jailbreak = true;
description = "Fully encapsulated monad transformers with queuelike functionality";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"practice-room" = callPackage
@@ -87525,6 +90632,7 @@ self: {
homepage = "http://github.com/nfjinjing/practice-room";
description = "Practice Room";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"precis" = callPackage
@@ -87541,9 +90649,11 @@ self: {
base Cabal containers cpphs directory filepath haskell-src-exts
xhtml
];
+ jailbreak = true;
homepage = "http://code.google.com/p/copperbox/";
description = "Diff Cabal packages";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"predicates" = callPackage
@@ -87574,7 +90684,6 @@ self: {
base containers contravariant QuickCheck quickpull rainbow split
text
];
- configureFlags = [ "-f-visual-tests" ];
homepage = "http://www.github.com/massysett/prednote";
description = "Evaluate and display trees of predicates";
license = stdenv.lib.licenses.bsd3;
@@ -87594,6 +90703,7 @@ self: {
barecheck base containers prednote QuickCheck quickpull rainbow
rainbow-tests text
];
+ jailbreak = true;
homepage = "http://www.github.com/massysett/prednote";
description = "Tests and QuickCheck generators to accompany prednote";
license = stdenv.lib.licenses.bsd3;
@@ -87638,9 +90748,10 @@ self: {
testDepends = [
base cab containers directory filepath hspec process stm unix
];
- configureFlags = [ "-f-sample" ];
+ jailbreak = true;
description = "A library for building a prefork-style server quickly";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pregame" = callPackage
@@ -87680,6 +90791,7 @@ self: {
version = "0.4";
sha256 = "0h452pn7zs97z5gv2p3x9pg61phphwcw5y5g1w38k3gihdvym8jl";
buildDepends = [ base comonad logict transformers ];
+ jailbreak = true;
description = "Another kind of alternate Prelude file";
license = stdenv.lib.licenses.publicDomain;
}) {};
@@ -87693,7 +90805,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base utf8-string ];
- configureFlags = [ "-f-test" ];
description = "Prelude for rest of us";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -87716,7 +90827,6 @@ self: {
version = "0.1.1.1";
sha256 = "0cff77nbhy3dsamrwm2wxhbi1mf2bzkdd1pdzqv3klpbzjwkdszv";
buildDepends = [ base ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~wren/";
description = "A redefinition of the Prelude's Enum class in order to render it safe";
license = stdenv.lib.licenses.bsd3;
@@ -87742,6 +90852,7 @@ self: {
sha256 = "0chwx0906gsmbnjkf14d864qzfvxb5gzaih7nq7ckfc6icbc4x25";
buildDepends = [ base containers pretty ];
testDepends = [ base QuickCheck ];
+ jailbreak = true;
homepage = "http://github.com/yav/presburger";
description = "A decision procedure for quantifier-free linear arithmetic";
license = stdenv.lib.licenses.bsd3;
@@ -87772,6 +90883,7 @@ self: {
homepage = "http://github.com/bickfordb/text-press";
description = "Text template library targeted at the web / HTML generation";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"prettify" = callPackage
@@ -87785,13 +90897,13 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "pretty_1_1_2_0" = callPackage
+ "pretty_1_1_2_1" = callPackage
({ mkDerivation, base, deepseq, ghc-prim, QuickCheck }:
mkDerivation {
pname = "pretty";
- version = "1.1.2.0";
- sha256 = "043kcl2wjip51al5kx3r9qgazq5w002q520wdgdlv2c9xr74fabw";
- editedCabalFile = "77efb70e2934af601f99aa28b6cf21b4b21e5d80c95f11e8bbfc361209a6094b";
+ version = "1.1.2.1";
+ sha256 = "128bgw9qgm256f28ffb49dvqs9js01m9q6mj6dhg4nlcbpz5fhav";
+ editedCabalFile = "ebd25419c2eacdf4212ba30592975908255c84b928a228fe5b045bc4f32c102a";
buildDepends = [ base deepseq ghc-prim ];
testDepends = [ base deepseq ghc-prim QuickCheck ];
homepage = "http://github.com/haskell/pretty";
@@ -87953,6 +91065,7 @@ self: {
homepage = "http://kagami.touhou.ru/projects/show/primula";
description = "ImageBoard on Happstack and HSP";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"primula-bot" = callPackage
@@ -87968,9 +91081,11 @@ self: {
buildDepends = [
base ConfigFile directory HTTP mtl network parsec utf8-string XMPP
];
+ jailbreak = true;
homepage = "http://kagami.touhou.ru/projects/show/primula";
description = "Jabber-bot for primula-board ImageBoard";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"printf-mauke" = callPackage
@@ -88010,10 +91125,11 @@ self: {
version = "0.2.2";
sha256 = "0nsiil0yl32m80a1kpg3z0wd5fxwkpz2lzf66pa06iy24q0rz5lf";
buildDepends = [ base containers queue reord stateref ];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~mokus/priority-queue";
description = "Simple implementation of a priority queue";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"priority-sync" = callPackage
@@ -88067,7 +91183,6 @@ self: {
version = "0.2.4.1";
sha256 = "0nh73l03d7niz3a3h2y4i80mlp64ilfkx7krn57skzfi8drwnjvc";
buildDepends = [ base containers random transformers utility-ht ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Probabilistic_Functional_Programming";
description = "Probabilistic Functional Programming";
license = stdenv.lib.licenses.bsd3;
@@ -88167,6 +91282,7 @@ self: {
homepage = "https://github.com/garious/process-iterio";
description = "IterIO Process Library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"process-leksah" = callPackage
@@ -88176,9 +91292,10 @@ self: {
version = "1.0.1.4";
sha256 = "1899ybhnsj22sir2l933lhkk9fpcgjbb4qd6gscnby28qcs5bwbv";
buildDepends = [ base directory filepath unix ];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
description = "Process libraries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"process-listlike" = callPackage
@@ -88209,6 +91326,7 @@ self: {
homepage = "https://src.seereason.com/process-progress";
description = "Run a process and do reportsing on its progress";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"process-qq" = callPackage
@@ -88223,9 +91341,11 @@ self: {
base bytestring enumerator mtl process shakespeare-text
template-haskell text
];
+ jailbreak = true;
homepage = "http://github.com/tanakh/process-qq";
description = "Quasi-Quoters for exec process";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"process-streaming" = callPackage
@@ -88253,6 +91373,7 @@ self: {
pipes-safe pipes-text process semigroups tasty tasty-hunit text
transformers transformers-compat void
];
+ jailbreak = true;
description = "Streaming interface to system processes";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -88284,6 +91405,7 @@ self: {
buildDepends = [ base procrastinating-variable ];
description = "Pure structures that can be incrementally created in impure code";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"procrastinating-variable" = callPackage
@@ -88296,6 +91418,7 @@ self: {
homepage = "http://github.com/gcross/procrastinating-variable";
description = "Haskell values that cannot be evaluated immediately";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"procstat" = callPackage
@@ -88305,9 +91428,11 @@ self: {
version = "0.1.0.1";
sha256 = "1md75jc32nfnvs7ygf1mna00gl0wmimp2lkdcs9r9v0iy4b1hr5m";
buildDepends = [ attoparsec base bytestring ];
+ jailbreak = true;
homepage = "http://closure.ath.cx/procstat";
description = "get information on processes in Linux";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"proctest" = callPackage
@@ -88352,10 +91477,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers filepath haskell98 parsec ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://antiope.com/downloads.html";
description = "Convert GHC profiles into GraphViz's dot format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"prof2pretty" = callPackage
@@ -88390,6 +91515,7 @@ self: {
aeson attoparsec base bytestring filepath text unordered-containers
vector
];
+ jailbreak = true;
homepage = "http://github.com/jaspervdj/profiteur";
description = "Treemap visualiser for GHC prof files";
license = stdenv.lib.licenses.bsd3;
@@ -88405,6 +91531,7 @@ self: {
homepage = "http://github.com/ekmett/profunctor-extras/";
description = "This package has been absorbed into profunctors 4.0";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"profunctors" = callPackage
@@ -88433,6 +91560,7 @@ self: {
buildDepends = [ base time ];
description = "Simple progress tracking & projection library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"progressbar" = callPackage
@@ -88446,6 +91574,7 @@ self: {
buildDepends = [ base io-reactive ];
description = "Progressbar API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"progression" = callPackage
@@ -88460,9 +91589,11 @@ self: {
base containers criterion directory filepath haskeline process
txt-sushi
];
+ jailbreak = true;
homepage = "http://chplib.wordpress.com/2010/02/04/progression-supporting-optimisation-in-haskell/";
description = "Automates the recording and graphing of criterion benchmarks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"progressive" = callPackage
@@ -88479,9 +91610,11 @@ self: {
base binary bytestring containers directory filepath ghc-prim
process text
];
+ jailbreak = true;
homepage = "https://bitbucket.org/gchrupala/progression";
description = "Multilabel classification model which learns sequentially (online)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"proj4-hs-bindings" = callPackage
@@ -88494,6 +91627,7 @@ self: {
extraLibraries = [ proj ];
description = "Haskell bindings for the Proj4 C dynamic library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) proj;};
"project-template" = callPackage
@@ -88542,6 +91676,7 @@ self: {
base containers mtl parsec syb template-haskell th-lift
transformers
];
+ jailbreak = true;
homepage = "https://github.com/Erdwolf/prolog";
description = "A Prolog interpreter written in Haskell";
license = stdenv.lib.licenses.publicDomain;
@@ -88560,9 +91695,11 @@ self: {
buildDepends = [
base cmdargs fgl graphviz mtl prolog prolog-graph-lib text
];
+ jailbreak = true;
homepage = "https://github.com/Erdwolf/prolog";
description = "A command line tool to visualize query resolution in Prolog";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"prolog-graph-lib" = callPackage
@@ -88575,6 +91712,7 @@ self: {
homepage = "https://github.com/Erdwolf/prolog";
description = "Generating images of resolution trees for Prolog queries";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"promise" = callPackage
@@ -88602,6 +91740,7 @@ self: {
];
description = "Functional synthesis of images and animations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"propellor" = callPackage
@@ -88612,8 +91751,8 @@ self: {
}:
mkDerivation {
pname = "propellor";
- version = "1.2.1";
- sha256 = "0kpvlm4qj7i2zx427rymk20lfxy3ljhc6y9qwhqxsbxg0aka25nj";
+ version = "1.3.2";
+ sha256 = "02cfs90kfpk09njhx45bfms90350my7j4wcf1yyzfszlkpfn3mmc";
isLibrary = true;
isExecutable = true;
buildDepends = [
@@ -88633,6 +91772,7 @@ self: {
version = "0.0.2";
sha256 = "04a35zxgps9rn6y86x3jf6gma6kjl8izmnyl45hz64cl9yb5dwwi";
buildDepends = [ base ];
+ jailbreak = true;
description = "check quickCheck properties in real time";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -88666,6 +91806,7 @@ self: {
homepage = "http://www-users.cs.york.ac.uk/~ndm/proplang/";
description = "A library for functional GUI development";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"props" = callPackage
@@ -88722,9 +91863,11 @@ self: {
protocol-buffers-fork QuickCheck text utf8-string
];
extraLibraries = [ protobuf ];
+ jailbreak = true;
homepage = "https://github.com/nicta/protobuf-native";
description = "Protocol Buffers via C++";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) protobuf;};
"protocol-buffers" = callPackage
@@ -88739,7 +91882,6 @@ self: {
array base binary bytestring containers directory filepath mtl
parsec syb utf8-string
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/protocol-buffers/";
description = "Parse Google Protocol Buffer specifications";
license = stdenv.lib.licenses.bsd3;
@@ -88752,7 +91894,6 @@ self: {
version = "2.0.17";
sha256 = "0jl041645d83iqqiw891d2k760jql6djvi2mmjh9lnmp48lwjy3p";
buildDepends = [ base bytestring containers protocol-buffers ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/protocol-buffers/";
description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification";
license = stdenv.lib.licenses.bsd3;
@@ -88769,7 +91910,6 @@ self: {
buildDepends = [
base bytestring containers protocol-buffers-fork
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/";
description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification";
license = stdenv.lib.licenses.bsd3;
@@ -88787,7 +91927,6 @@ self: {
array base binary bytestring containers directory filepath mtl syb
utf8-string
];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/";
description = "Parse Google Protocol Buffer specifications";
license = stdenv.lib.licenses.bsd3;
@@ -88820,9 +91959,11 @@ self: {
optparse-applicative parsec parsers process safe text time
unordered-containers wai warp
];
+ jailbreak = true;
homepage = "https://github.com/prove-everywhere/server";
description = "The server for ProveEverywhere";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"proxy-kindness" = callPackage
@@ -88832,9 +91973,11 @@ self: {
version = "0.1";
sha256 = "0wpzj6hnlxvgd7lfd2921mrk97aw7ljf77jry3my97zdapkxz8i7";
buildDepends = [ base tagged ];
+ jailbreak = true;
homepage = "https://github.com/jberryman/proxy-kindness";
description = "A library for kind-polymorphic manipulation and inspection of Proxy values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pseudomacros" = callPackage
@@ -88882,8 +92025,10 @@ self: {
mtl network pipes pipes-bytestring safe system-filepath text time
transformers
];
+ jailbreak = true;
description = "Pipe stdin to a redis pub/sub channel";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"publicsuffixlist" = callPackage
@@ -88901,7 +92046,6 @@ self: {
base bytestring cereal containers data-default HUnit idna text
utf8-string
];
- configureFlags = [ "-f-runtimelist" "-f-create" ];
homepage = "https://github.com/litherum/publicsuffixlist";
description = "Is a given string a domain suffix?";
license = stdenv.lib.licenses.bsd3;
@@ -88920,9 +92064,11 @@ self: {
publicsuffixlist text
];
testDepends = [ base cereal HUnit publicsuffixlist ];
+ jailbreak = true;
homepage = "https://github.com/litherum/publicsuffixlist";
description = "Create the publicsuffixlist package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pubnub" = callPackage
@@ -88950,6 +92096,7 @@ self: {
base Cabal HUnit QuickCheck smallcheck tasty tasty-hunit
tasty-quickcheck tasty-smallcheck
];
+ jailbreak = true;
homepage = "http://github.com/pubnub/haskell";
description = "PubNub Haskell SDK";
license = stdenv.lib.licenses.mit;
@@ -88968,10 +92115,11 @@ self: {
buildDepends = [
base fastcgi feed HTTP json mime network random utf8-string xml
];
- configureFlags = [ "-f-old-base" ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/pubsub/";
description = "A library for Google/SixApart pubsub hub interaction";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"puffytools" = callPackage
@@ -89033,6 +92181,7 @@ self: {
homepage = "http://pugscode.org/";
description = "DrIFT with pugs-specific rules";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pugs-HsSyck" = callPackage
@@ -89044,6 +92193,7 @@ self: {
buildDepends = [ base bytestring ];
description = "Fast, lightweight YAML loader and dumper";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pugs-compat" = callPackage
@@ -89062,6 +92212,7 @@ self: {
];
description = "Portable Haskell/POSIX layer for Pugs";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pugs-hsregex" = callPackage
@@ -89071,10 +92222,10 @@ self: {
version = "1.0";
sha256 = "1px8qvz7afws2w8scplxs4zm628anvh5ssbf0ba9hajh686h133i";
buildDepends = [ array base haskell98 ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://repetae.net/john/computer/haskell/hsregex/";
description = "Haskell PCRE binding";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pulse-simple" = callPackage
@@ -89087,6 +92238,7 @@ self: {
extraLibraries = [ pulse-simple ];
description = "binding to Simple API of pulseaudio";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { pulse-simple = null;};
"punkt" = callPackage
@@ -89106,6 +92258,7 @@ self: {
homepage = "https://github.com/bryant/punkt";
description = "Multilingual unsupervised sentence tokenization with Punkt";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"punycode" = callPackage
@@ -89142,6 +92295,7 @@ self: {
homepage = "http://lpuppet.banquise.net";
description = "A program that displays the puppet resources associated to a node given .pp files.";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pure-cdb" = callPackage
@@ -89192,6 +92346,7 @@ self: {
version = "0.14";
sha256 = "125vnkjx6n7pgflk9iqg7b6daw55a1rdfi9pfgp39ikfcx9vhb3p";
buildDepends = [ base containers ];
+ jailbreak = true;
description = "A pure priority queue";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -89210,6 +92365,7 @@ self: {
base containers pure-priority-queue QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
description = "Tests for the pure-priority-queue package";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -89242,7 +92398,6 @@ self: {
version = "2.1.2.1";
sha256 = "1zsn949qk95bwx1fbyv84q0lhb4k18bgixl7nivfzsnmhr31fs37";
buildDepends = [ base binary bytestring cereal crypto-api tagged ];
- configureFlags = [ "-f-test" ];
description = "A Haskell-only implementation of the MD5 digest (hash) algorithm";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -89296,6 +92451,7 @@ self: {
homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/";
description = "A server-side library for sending push notifications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"push-notify-ccs" = callPackage
@@ -89316,6 +92472,7 @@ self: {
homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/";
description = "A server-side library for sending/receiving push notifications through CCS (Google Cloud Messaging)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"push-notify-general" = callPackage
@@ -89335,6 +92492,7 @@ self: {
homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/";
description = "A general library for sending/receiving push notif. through dif. services.";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pushme" = callPackage
@@ -89359,6 +92517,7 @@ self: {
homepage = "https://github.com/jwiegley/pushme";
description = "Tool to synchronize multiple directories with rsync, zfs or git-annex";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"putlenses" = callPackage
@@ -89375,6 +92534,7 @@ self: {
];
description = "Put-based lens library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"puzzle-draw" = callPackage
@@ -89398,9 +92558,9 @@ self: {
base blaze-svg bytestring containers deepseq diagrams-lib
diagrams-svg tasty tasty-hunit text yaml
];
- configureFlags = [ "-f-cairo" ];
description = "Creating graphics for pencil puzzles";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"puzzle-draw-cmdline" = callPackage
@@ -89417,9 +92577,10 @@ self: {
aeson base diagrams-lib diagrams-svg filepath optparse-applicative
puzzle-draw yaml
];
- configureFlags = [ "-f-cairo" ];
+ jailbreak = true;
description = "Creating graphics for pencil puzzles, command line tools";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pvd" = callPackage
@@ -89440,6 +92601,7 @@ self: {
homepage = "http://code.haskell.org/pvd";
description = "A photo viewer daemon application with remote controlling abilities";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) libdevil;};
"pwstore-cli" = callPackage
@@ -89457,7 +92619,6 @@ self: {
base bytestring HUnit process pwstore-fast test-framework
test-framework-hunit
];
- configureFlags = [ "-ffast" ];
homepage = "http://hub.darcs.net/rycee/pwstore-cli";
description = "Command line interface for the pwstore library";
license = stdenv.lib.licenses.gpl3;
@@ -89556,6 +92717,7 @@ self: {
buildDepends = [
attoparsec base bytestring cereal cmdargs containers mtl
];
+ jailbreak = true;
description = "Serialization/deserialization using Python Pickle format";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -89567,6 +92729,7 @@ self: {
version = "1.2.0.3";
sha256 = "13rga5haz26qvx3hznbl6ik55s8g7qi3nj7a6vhyx46vjhzwnsvg";
buildDepends = [ base fclabels QuickCheck template-haskell ];
+ jailbreak = true;
homepage = "http://www.iai.uni-bonn.de/~jv/GV14.html";
description = "Compile time generation of operation invariance tests for QuickCheck";
license = stdenv.lib.licenses.bsd3;
@@ -89582,6 +92745,7 @@ self: {
extraLibraries = [ qd ];
description = "double-double and quad-double number type via libqd";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { qd = null;};
"qd-vec" = callPackage
@@ -89593,6 +92757,7 @@ self: {
buildDepends = [ base qd Vec ];
description = "'Vec' instances for 'qd' types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"qhull-simple" = callPackage
@@ -89606,6 +92771,7 @@ self: {
homepage = "http://nonempty.org/software/haskell-qhull-simple";
description = "Simple bindings to Qhull, a library for computing convex hulls";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) qhull;};
"qrcode" = callPackage
@@ -89615,7 +92781,6 @@ self: {
version = "0.1.2";
sha256 = "1wfnxlz6rqjcgnkaqq0wdn75jsh3b9hagb84c1ljnwqaw98n3a9d";
buildDepends = [ array base containers mtl vector ];
- configureFlags = [ "-f-prof" ];
description = "QR Code library in pure Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -89634,6 +92799,7 @@ self: {
base directory doctest filepath mtl numbers QuickCheck tasty
tasty-quickcheck
];
+ jailbreak = true;
homepage = "https://github.com/ion1/quadratic-irrational";
description = "An implementation of quadratic irrationals";
license = stdenv.lib.licenses.mit;
@@ -89670,6 +92836,7 @@ self: {
base containers doctest Glob hlint hspec mtl parsec process
regex-compat
];
+ jailbreak = true;
homepage = "http://github.com/jdreaver/quantities";
description = "Unit conversion and manipulation library";
license = stdenv.lib.licenses.bsd3;
@@ -89682,6 +92849,7 @@ self: {
version = "0.0.5";
sha256 = "19z5b0jwnz20g0203xd78cv8rgm92diyxard4mbj6dyrj2kkfgww";
buildDepends = [ base MonadRandom mtl QuickCheck random ];
+ jailbreak = true;
homepage = "http://github.com/luqui/quantum-arrow";
description = "An embedding of quantum computation as a Haskell arrow";
license = "LGPL";
@@ -89702,6 +92870,7 @@ self: {
homepage = "https://github.com/jstepien/qudb";
description = "Quite Useless DB";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"querystring-pickle" = callPackage
@@ -89719,6 +92888,7 @@ self: {
];
description = "Picklers for de/serialising Generic data types to and from query strings";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"questioner" = callPackage
@@ -89730,10 +92900,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ ansi-terminal base readline terminal-size ];
- configureFlags = [ "-f-examples" ];
homepage = "https://github.com/yamadapc/haskell-questioner.git";
description = "A package for prompting values from the command-line";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"queue" = callPackage
@@ -89743,7 +92913,6 @@ self: {
version = "0.1.2";
sha256 = "0fx2svkj2sy2wd056lha9h20hy2z6gjspzl11jmv7i3rdwwfr6f7";
buildDepends = [ base stm ];
- configureFlags = [ "-fusestm" ];
homepage = "http://code.haskell.org/~mokus/queue";
description = "Abstraction typeclasses for queue-like things";
license = stdenv.lib.licenses.bsd3;
@@ -89758,6 +92927,7 @@ self: {
buildDepends = [ array base containers mtl stateful-mtl ];
description = "A library of queuelike data structures, both functional and stateful";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"quick-generator" = callPackage
@@ -89826,6 +92996,7 @@ self: {
];
description = "Automating QuickCheck for polymorphic and overlaoded properties";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"quickcheck-properties" = callPackage
@@ -89846,6 +93017,7 @@ self: {
version = "0.1.0.2";
sha256 = "0wqz2amhwf1djbwwdin142mzp94mxbzb12khznijissjdz38knp5";
buildDepends = [ base mtl QuickCheck ];
+ jailbreak = true;
homepage = "http://www.github.com/jfeltz/quickcheck-property-comb";
description = "Combinators for Quickcheck Property construction and diagnostics";
license = stdenv.lib.licenses.publicDomain;
@@ -89861,7 +93033,6 @@ self: {
sha256 = "12vg14xwhhsqwygrs5lylsg514am5sslqc15nbl8mwzzxix1w8xb";
buildDepends = [ base either QuickCheck transformers ];
testDepends = [ base directory doctest filepath QuickCheck ];
- configureFlags = [ "-ftests" ];
homepage = "http://github.com/bennofs/quickcheck-property-monad/";
description = "quickcheck-property-monad";
license = stdenv.lib.licenses.bsd3;
@@ -89881,6 +93052,7 @@ self: {
homepage = "http://github.com/audreyt/quickcheck-regex/";
description = "Generate regex-constrained strings for QuickCheck";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"quickcheck-relaxng" = callPackage
@@ -89897,6 +93069,7 @@ self: {
homepage = "http://github.com/audreyt/quickcheck-relaxng/";
description = "Generate RelaxNG-constrained XML documents for QuickCheck";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"quickcheck-rematch" = callPackage
@@ -89907,9 +93080,11 @@ self: {
sha256 = "0pmw9441l36sprw9ngq6gn2yi4v427zd5n22s9zicfyiwi4qf5ba";
buildDepends = [ base QuickCheck rematch ];
testDepends = [ base hspec HUnit QuickCheck rematch ];
+ jailbreak = true;
homepage = "http://github.com/tcrayford/rematch";
description = "QuickCheck support for rematch";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"quickcheck-script" = callPackage
@@ -89921,7 +93096,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base directory process QuickCheck ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.cs.chalmers.se/~rjmh/QuickCheck/";
description = "Automated test tool for QuickCheck";
license = stdenv.lib.licenses.bsd3;
@@ -89963,7 +93137,6 @@ self: {
base bytestring QuickCheck test-framework
test-framework-quickcheck2
];
- configureFlags = [ "-f-memory-safe" ];
homepage = "http://github.com/thoughtpolice/hs-quicklz";
description = "QuickLZ compression for ByteStrings";
license = stdenv.lib.licenses.gpl2;
@@ -89980,7 +93153,6 @@ self: {
isExecutable = true;
buildDepends = [ barecheck base directory filepath QuickCheck ];
testDepends = [ base directory filepath QuickCheck ];
- configureFlags = [ "-f-old-quick-check" "-f-build-test-gen" ];
homepage = "http://www.github.com/massysett/quickpull";
description = "Generate Main module with QuickCheck tests";
license = stdenv.lib.licenses.bsd3;
@@ -89995,6 +93167,7 @@ self: {
buildDepends = [ base vector vector-algorithms ];
description = "Very fast and memory-compact query-only set and map structures";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"quickspec" = callPackage
@@ -90025,6 +93198,7 @@ self: {
homepage = "https://github.com/davidsiegel/quicktest";
description = "A reflective batch tester for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"quickwebapp" = callPackage
@@ -90039,26 +93213,27 @@ self: {
}) {};
"quoridor-hs" = callPackage
- ({ mkDerivation, ansi-terminal, base, bytestring, containers
+ ({ mkDerivation, ansi-terminal, async, base, bytestring, containers
, directory, dlist, exceptions, filepath, hex, HUnit, mtl, network
- , network-simple, parsec, process, snap-core, snap-server
+ , network-simple, parsec, process, snap-core, snap-server, stm
, websockets, websockets-snap
}:
mkDerivation {
pname = "quoridor-hs";
- version = "0.1.0.0";
- sha256 = "0l08hz6835az1wcl1xyf7vgmgigpjlg7fi9v2a5f9wa3wkl3nvqa";
+ version = "0.1.1.0";
+ sha256 = "1hmxkzrl74vcxam6kpin2fgxd4rx408fy42yzdkbl87l4bklp0gd";
isLibrary = true;
isExecutable = true;
buildDepends = [
- ansi-terminal base bytestring containers directory dlist exceptions
- filepath hex mtl network network-simple parsec process snap-core
- snap-server websockets websockets-snap
+ ansi-terminal async base bytestring containers directory dlist
+ exceptions filepath hex mtl network network-simple parsec process
+ snap-core snap-server stm websockets websockets-snap
];
testDepends = [ base HUnit mtl ];
homepage = "https://github.com/talw/quoridor-hs";
description = "A Quoridor implementation in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rabocsv2qif" = callPackage
@@ -90081,6 +93256,7 @@ self: {
version = "0.1.6.3";
sha256 = "19g2lc3vmnapccdxf390cmkfl9bd3agcn01kk8ccd4lmaqn2c12d";
buildDepends = [ array base containers data-reify ];
+ jailbreak = true;
homepage = "http://comonad.com/reader/";
description = "Reverse Automatic Differentiation";
license = stdenv.lib.licenses.bsd3;
@@ -90098,7 +93274,6 @@ self: {
testDepends = [
base directory doctest filepath QuickCheck template-haskell
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/NICTA/radian";
description = "A floating-point wrapper for measurements that use radians";
license = stdenv.lib.licenses.bsd3;
@@ -90113,9 +93288,11 @@ self: {
sha256 = "01bmh77cjcz7phl4fzn97hzjnjx3wicr12m7nrdyflw2zckxycwl";
buildDepends = [ base containers parsec ];
testDepends = [ base Cabal containers hspec parsec QuickCheck ];
+ jailbreak = true;
homepage = "https://github.com/klangner/radium";
description = "Chemistry";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"radium-formula-parser" = callPackage
@@ -90127,9 +93304,11 @@ self: {
sha256 = "1b2gmc27dj9fanbjh7h0902jjh3jz1ydc6qvp9p3rfskaf6854bf";
buildDepends = [ base containers parsec ];
testDepends = [ base Cabal containers hspec parsec QuickCheck ];
+ jailbreak = true;
homepage = "https://github.com/klangner/radium-formula-parser";
description = "Chemistry";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rados-haskell" = callPackage
@@ -90143,7 +93322,6 @@ self: {
buildDepends = [ async base bytestring containers mtl uuid ];
testDepends = [ async base bytestring hspec HUnit mtl rados uuid ];
extraLibraries = [ rados ];
- configureFlags = [ "-f-atomic_writes" ];
homepage = "github";
description = "librados haskell bindings";
license = stdenv.lib.licenses.bsd3;
@@ -90165,19 +93343,21 @@ self: {
process transformers
];
testDepends = [ base containers HUnit process ];
+ jailbreak = true;
homepage = "https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14";
description = "Compiler and editor for the esolang rail";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rainbow" = callPackage
({ mkDerivation, base, terminfo, text }:
mkDerivation {
pname = "rainbow";
- version = "0.20.0.4";
- sha256 = "0myipv34pfyi71h1ni9hdi1662whjnl83g9jpag77a00sk0p3rkm";
+ version = "0.20.0.6";
+ sha256 = "0y9mzfh9j7603wlgls664xlm5dj8ywbff7a1lmvi8awyz9yn80yz";
buildDepends = [ base terminfo text ];
- homepage = "http://www.github.com/massysett/rainbow";
+ homepage = "https://www.github.com/massysett/rainbow";
description = "Print text to terminal with colors and effects";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -90191,6 +93371,7 @@ self: {
version = "0.20.0.4";
sha256 = "0cjq2m2zpk4j2f7gw65yqqvyc4kng1rsnq48fs4xcs6bdzw0zhlg";
buildDepends = [ barecheck base QuickCheck rainbow terminfo text ];
+ jailbreak = true;
homepage = "http://www.github.com/massysett/rainbow";
description = "Tests and QuickCheck generators to accompany rainbow";
license = stdenv.lib.licenses.bsd3;
@@ -90211,7 +93392,6 @@ self: {
array base QuickCheck rainbow rainbow-tests random tasty
tasty-quickcheck text transformers
];
- configureFlags = [ "-f-mosaic" ];
homepage = "http://www.github.com/massysett/rainbox";
description = "Two-dimensional box pretty printing, with colors";
license = stdenv.lib.licenses.bsd3;
@@ -90229,9 +93409,11 @@ self: {
attoparsec base bytestring containers lens mtl pipes scientific
transformers vector zlib
];
+ jailbreak = true;
homepage = "http://github.com/YoEight/rakhana";
description = "Stream based PDF library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ralist" = callPackage
@@ -90255,6 +93437,7 @@ self: {
homepage = "http://github.com/moonmaster9000/rallod";
description = "'$' in reverse";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rand-vars" = callPackage
@@ -90316,8 +93499,10 @@ self: {
version = "0.1.0.1";
sha256 = "1m28np0zfabp1n1d08przh35bxfr1l7d39kj4a5z61jkchmsaxyf";
buildDepends = [ base extensible-effects random ];
+ jailbreak = true;
description = "A simple random generator library for extensible-effects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"random-effin" = callPackage
@@ -90327,7 +93512,7 @@ self: {
version = "0.1.1.0";
sha256 = "0p1n5dfdsp00q9mlhd7xcl93k5d0wji91p59858gmfx9xf8j0p0h";
buildDepends = [ base effin random ];
- configureFlags = [ "-f-monadrandom" ];
+ jailbreak = true;
description = "A simple random generator library for effin";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -90346,19 +93531,18 @@ self: {
}) {};
"random-fu" = callPackage
- ({ mkDerivation, base, erf, logfloat, math-functions, monad-loops
+ ({ mkDerivation, base, erf, log-domain, math-functions, monad-loops
, mtl, random-shuffle, random-source, rvar, syb, template-haskell
, transformers, vector
}:
mkDerivation {
pname = "random-fu";
- version = "0.2.6.1";
- sha256 = "04fi92szpjyg0ffgxfayz00vpiqi67hzyahhin12wvw3pxbyyp9g";
+ version = "0.2.6.2";
+ sha256 = "1j7zr7h860vjwlh9d9sj319xs44ly2vyzn3s72c5qc39r0yv00ng";
buildDepends = [
- base erf logfloat math-functions monad-loops mtl random-shuffle
+ base erf log-domain math-functions monad-loops mtl random-shuffle
random-source rvar syb template-haskell transformers vector
];
- configureFlags = [ "-fmtl2" "-fbase4_2" ];
homepage = "https://github.com/mokus0/random-fu";
description = "Random number generation";
license = stdenv.lib.licenses.publicDomain;
@@ -90388,7 +93572,6 @@ self: {
base flexible-defaults mersenne-random-pure64 mtl mwc-random random
stateref syb template-haskell th-extras
];
- configureFlags = [ "-fmtl2" "-fbase4" ];
homepage = "https://github.com/mokus0/random-fu";
description = "Generic basis for random number generators";
license = stdenv.lib.licenses.publicDomain;
@@ -90401,11 +93584,9 @@ self: {
version = "0.1.1";
sha256 = "0q191kz3hmjzrgs143nja5gcis07igb38f51mwqw64zx7vjqvx66";
buildDepends = [ base binary bytestring random ];
- configureFlags = [
- "-f-have_win32_crypt" "-f-have_ssl" "-f-have_urandom"
- ];
description = "An infinite stream of random data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"randomgen" = callPackage
@@ -90463,8 +93644,10 @@ self: {
base Cabal QuickCheck random test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
description = "This has a bunch of code for specifying and managing ranges in your code";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"range-set-list" = callPackage
@@ -90475,7 +93658,7 @@ self: {
sha256 = "1qgw95gvbxar13ia6562ddz9zqd14ffyxwp9qi41w859prfc1728";
buildDepends = [ base ];
testDepends = [ base containers tasty tasty-quickcheck ];
- configureFlags = [ "-foptimized" ];
+ jailbreak = true;
homepage = "https://github.com/phadej/range-set-list";
description = "Memory efficient sets with continuous ranges of elements";
license = stdenv.lib.licenses.mit;
@@ -90497,9 +93680,11 @@ self: {
base QuickCheck semigroups test-framework
test-framework-quickcheck2 time vector-space vector-space-points
];
+ jailbreak = true;
homepage = "https://github.com/JohnLato/range-space";
description = "A Range type with vector-space instances";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rangemin" = callPackage
@@ -90509,9 +93694,9 @@ self: {
version = "2.2.2";
sha256 = "01n1m3ibi44pjg04mg16j751fjzkspmnq8bzxz55qbyi22wshnwc";
buildDepends = [ base containers primitive vector ];
- configureFlags = [ "-fwall" "-f-llvm" ];
description = "Linear range-min algorithms";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ranges" = callPackage
@@ -90562,6 +93747,7 @@ self: {
filepath HUnit mtl process QuickCheck tasty tasty-hunit
tasty-quickcheck vector
];
+ jailbreak = true;
homepage = "http://soli.github.io/rascal/";
description = "A command-line client for Reddit";
license = stdenv.lib.licenses.mit;
@@ -90624,6 +93810,7 @@ self: {
homepage = "http://bitbucket.org/dpwiz/raven-haskell";
description = "Sentry http interface for Scotty web server";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"raw-strings-qq" = callPackage
@@ -90666,6 +93853,7 @@ self: {
homepage = "http://malde.org/~ketil/";
description = "Mask nucleotide (EST) sequences in Fasta format";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rclient" = callPackage
@@ -90704,12 +93892,10 @@ self: {
network-uri parsec QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 text unordered-containers
];
- configureFlags = [
- "-fnetwork-uri" "-fhpc" "-f-tests" "-fsmall_base"
- ];
homepage = "https://github.com/robstewart57/rdf4h";
description = "A library for RDF processing in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rdioh" = callPackage
@@ -90728,6 +93914,7 @@ self: {
];
description = "A Haskell wrapper for Rdio's API";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rdtsc" = callPackage
@@ -90778,7 +93965,6 @@ self: {
buildDepends = [
base deepseq haste-compiler lens-family monads-tf transformers void
];
- configureFlags = [ "-f-haste-inst" ];
homepage = "https://github.com/joelburget/react-haskell";
description = "Haskell React bindings";
license = stdenv.lib.licenses.mit;
@@ -90813,6 +93999,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/reactive";
description = "Push-pull functional reactive programming";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reactive-bacon" = callPackage
@@ -90826,6 +94013,7 @@ self: {
homepage = "http://github.com/raimohanska/reactive-bacon";
description = "FRP (functional reactive programming) framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reactive-balsa" = callPackage
@@ -90844,10 +94032,11 @@ self: {
midi-alsa non-negative random reactive-banana transformers
utility-ht
];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Reactive-balsa";
description = "Programmatically edit MIDI events via ALSA and reactive-banana";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reactive-banana" = callPackage
@@ -90867,7 +94056,6 @@ self: {
base containers hashable HUnit pqueue test-framework
test-framework-hunit transformers unordered-containers vault
];
- configureFlags = [ "-fuseextensions" ];
homepage = "http://haskell.org/haskellwiki/Reactive-banana";
description = "Library for functional reactive programming (FRP)";
license = stdenv.lib.licenses.bsd3;
@@ -90888,6 +94076,7 @@ self: {
homepage = "https://github.com/JPMoresmau/reactive-banana-sdl";
description = "Reactive Banana bindings for SDL";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reactive-banana-threepenny" = callPackage
@@ -90899,10 +94088,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base reactive-banana threepenny-gui ];
- configureFlags = [ "-f-buildexamples" ];
+ jailbreak = true;
homepage = "http://haskell.org/haskellwiki/Reactive-banana";
description = "Examples for the reactive-banana library, using threepenny-gui";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reactive-banana-wx" = callPackage
@@ -90914,10 +94104,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base cabal-macosx reactive-banana wx wxcore ];
- configureFlags = [ "-f-buildExamples" "-f-buildexamples" ];
+ configureFlags = [ "-f-buildExamples" ];
homepage = "http://haskell.org/haskellwiki/Reactive-banana";
description = "Examples for the reactive-banana library, using wxHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reactive-fieldtrip" = callPackage
@@ -90935,6 +94126,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/reactive-fieldtrip";
description = "Connect Reactive and FieldTrip";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reactive-glut" = callPackage
@@ -90949,6 +94141,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/reactive-glut";
description = "Connects Reactive and GLUT";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reactive-haskell" = callPackage
@@ -90982,10 +94175,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base monad-parallel SDL stm transformers ];
- configureFlags = [ "-f-profile" ];
+ jailbreak = true;
homepage = "https://github.com/strager/reactive-thread";
description = "Reactive programming via imperative threads";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reactor" = callPackage
@@ -91000,9 +94194,11 @@ self: {
array base bits-atomic comonad contravariant mtl semigroupoids
transformers
];
+ jailbreak = true;
homepage = "http://comonad.com/reader/";
description = "Reactor - task parallel reactive programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"read-bounded" = callPackage
@@ -91012,6 +94208,7 @@ self: {
version = "0.1.0.0";
sha256 = "1nvfkxjxn38rpplvg48sgx671fmfxj80dy2a77pjvm3c31q0hhqm";
buildDepends = [ base ];
+ jailbreak = true;
description = "Class for reading bounded values";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -91035,9 +94232,9 @@ self: {
version = "1.0.3.0";
sha256 = "1sszlx34qa88fad3wlhd4rkb1my1nrpzvyd8vq7dn806j5sf3ff0";
buildDepends = [ base process ];
- configureFlags = [ "-fsplit-base" ];
description = "An interface to the GNU readline library";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"readline-statevar" = callPackage
@@ -91047,9 +94244,9 @@ self: {
version = "1.0.1.0";
sha256 = "1gfxs3wfdkkarxil2an5l58syrm2vajj0qpshzabzchni32yxic8";
buildDepends = [ base readline StateVar ];
- configureFlags = [ "-f-debug" ];
description = "Readline with variables (setX/getY) wrapped in state vars";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"readpyc" = callPackage
@@ -91073,9 +94270,11 @@ self: {
version = "0.4.0.0";
sha256 = "1qmrfisnvm9a25a9ssg4r466yna69vzbwn7s7f4zql28cndg3syy";
buildDepends = [ base parsec ];
+ jailbreak = true;
homepage = "http://website-ckkashyap.rhcloud.com";
description = "A really simple XML parser";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reasonable-lens" = callPackage
@@ -91097,7 +94296,6 @@ self: {
version = "0.1.0.3";
sha256 = "18rqsqzni11nr2cvs7ah9k87w493d92c0gmc0n6fhfq6gay9ia19";
buildDepends = [ base HTTP network network-uri xhtml ];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://github.com/jgm/recaptcha/tree/master";
description = "Functions for using the reCAPTCHA service in web applications";
license = stdenv.lib.licenses.bsd3;
@@ -91127,9 +94325,11 @@ self: {
aeson base data-default kinds records template-haskell text
type-functions unordered-containers
];
+ jailbreak = true;
homepage = "github.com/lassoinc/records-th";
description = "Template Haskell declarations for the records package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"recursion-schemes" = callPackage
@@ -91160,6 +94360,7 @@ self: {
homepage = "https://github.com/joeyadams/haskell-recursive-line-count";
description = "Count lines in files and display them hierarchically";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"redHandlers" = callPackage
@@ -91175,8 +94376,10 @@ self: {
array base bytestring cgi containers haskell98 MaybeT mtl network
old-time parsec stm unix xhtml
];
+ jailbreak = true;
description = "Monadic HTTP request handlers combinators to build a standalone web apps";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"redis" = callPackage
@@ -91227,6 +94430,7 @@ self: {
async base bytestring bytestring-conversion containers redis-resp
tasty tasty-hunit tinylog transformers
];
+ jailbreak = true;
homepage = "https://github.com/twittner/redis-io/";
description = "Yet another redis client";
license = "unknown";
@@ -91318,9 +94522,11 @@ self: {
version = "0.1.1.2";
sha256 = "109illgbz4g4a6qavgc4wvyxfjvjhyrxa2gpps67avmr1v90gihr";
buildDepends = [ base ghc-prim ];
+ jailbreak = true;
homepage = "https://bitbucket.org/carter/ref";
description = "Generic Mutable Ref Abstraction Layer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ref-fd" = callPackage
@@ -91342,6 +94548,7 @@ self: {
version = "0.3";
sha256 = "0wijkaf3qyp6qjz0cwyhb89z5jrcz792hx8m9a43xrp7v2f84080";
buildDepends = [ base mtl stm transformers ];
+ jailbreak = true;
homepage = "http://www.eecs.harvard.edu/~mainland/";
description = "A type class for monads with references compatible with the mtl2 library";
license = stdenv.lib.licenses.bsd3;
@@ -91403,6 +94610,7 @@ self: {
array base containers directory either filepath instance-control
mtl template-haskell text transformers
];
+ jailbreak = true;
homepage = "https://github.com/lazac/references";
description = "Generalization of lenses, folds and traversals to handle monads and addition";
license = stdenv.lib.licenses.bsd3;
@@ -91422,9 +94630,11 @@ self: {
buildDepends = [
base clippard cmdargs directory filepath haskheap network
];
+ jailbreak = true;
homepage = "https://github.com/Raynes/refh";
description = "A command-line tool for pasting to https://www.refheap.com";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reflection" = callPackage
@@ -91434,7 +94644,6 @@ self: {
version = "1.5.1";
sha256 = "18ail6j7rs5jff9zxphxd7vjkwanpv12dhi98s86r65425fdhjlx";
buildDepends = [ base template-haskell ];
- configureFlags = [ "-fth" "-f-slow" ];
homepage = "http://github.com/ekmett/reflection";
description = "Reifies arbitrary terms into types that can be reflected back into terms";
license = stdenv.lib.licenses.bsd3;
@@ -91448,9 +94657,11 @@ self: {
version = "0.1.1.0";
sha256 = "1cnqd8hrcvjvcdrida0q3dxkkmp36qsfqhv0a5zr94b1y5zfrj4k";
buildDepends = [ aeson base constraints lens reflection tagged ];
+ jailbreak = true;
homepage = "http://github.com/jfischoff/reflection-extras";
description = "Utilities for the reflection package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reflection-without-remorse" = callPackage
@@ -91512,6 +94723,7 @@ self: {
buildDepends = [
base bytestring happstack-server mtl random reform text utf8-string
];
+ jailbreak = true;
homepage = "http://www.happstack.com/";
description = "Happstack support for reform";
license = stdenv.lib.licenses.bsd3;
@@ -91527,6 +94739,7 @@ self: {
homepage = "http://www.happstack.com/";
description = "Add support for using HSP with Reform";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regex-applicative" = callPackage
@@ -91554,7 +94767,6 @@ self: {
version = "0.93.2";
sha256 = "0y1j4h2pg12c853nzmczs263di7xkkmlnsq5dlp5wgbgl49mgp10";
buildDepends = [ array base bytestring containers mtl ];
- configureFlags = [ "-fsplitbase" "-fnewbase" ];
homepage = "http://sourceforge.net/projects/lazy-regex";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
@@ -91567,7 +94779,6 @@ self: {
version = "0.95.1";
sha256 = "0fwmima3f04p9y4h3c23493n1xj629ia2dxaisqm6rynljjv2z6m";
buildDepends = [ array base regex-base regex-posix ];
- configureFlags = [ "-fsplitbase" "-fnewbase" ];
homepage = "http://sourceforge.net/projects/lazy-regex";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
@@ -91580,7 +94791,6 @@ self: {
version = "0.95.1.4";
sha256 = "1p90fn90yhp7fvljjdqjp41cszidcfz4pw7fwvzyx4739b98x8sg";
buildDepends = [ array base regex-base regex-tdfa ];
- configureFlags = [ "-fsplitbase" "-fnewbase" ];
homepage = "http://hub.darcs.net/shelarcy/regex-compat-tdfa";
description = "Unicode Support version of Text.Regex, using regex-tdfa";
license = stdenv.lib.licenses.bsd3;
@@ -91599,10 +94809,10 @@ self: {
base bitset bytestring containers deepseq dequeue ghc-prim hashable
hashtables mtl parallel parsec regex-base
];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.google.com/p/xhaskell-regex-deriv/";
description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Brzozowski's Deriviatives";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regex-dfa" = callPackage
@@ -91615,6 +94825,7 @@ self: {
homepage = "http://sourceforge.net/projects/lazy-regex";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regex-easy" = callPackage
@@ -91649,6 +94860,7 @@ self: {
homepage = "https://github.com/audreyt/regex-genex";
description = "From a regex, generate all possible strings it can match";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regex-parsec" = callPackage
@@ -91661,6 +94873,7 @@ self: {
homepage = "http://sourceforge.net/projects/lazy-regex";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regex-pcre" = callPackage
@@ -91673,7 +94886,6 @@ self: {
sha256 = "1h16w994g9s62iwkdqa7bar2n9cfixmkzz2rm8svm960qr57valf";
buildDepends = [ array base bytestring containers regex-base ];
extraLibraries = [ pcre ];
- configureFlags = [ "-fsplitbase" "-fnewbase" ];
homepage = "http://hackage.haskell.org/package/regex-pcre";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
@@ -91686,7 +94898,6 @@ self: {
version = "0.94.4.8.8.35";
sha256 = "0y7as9wqlkykpipka2cfdhmcnin345q01pp0wsva8fwmvsavdl8b";
buildDepends = [ array base bytestring containers regex-base ];
- configureFlags = [ "-fsplitbase" "-fnewbase" ];
homepage = "http://hackage.haskell.org/package/regex-pcre";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
@@ -91704,10 +94915,10 @@ self: {
base bitset bytestring containers deepseq ghc-prim mtl parallel
parsec regex-base
];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.google.com/p/xhaskell-library/";
description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Antimirov's partial derivatives.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regex-posix" = callPackage
@@ -91717,7 +94928,6 @@ self: {
version = "0.95.2";
sha256 = "0gkhzhj8nvfn1ija31c7xnl6p0gadwii9ihyp219ck2arlhrj0an";
buildDepends = [ array base bytestring containers regex-base ];
- configureFlags = [ "-fsplitbase" "-fnewbase" ];
homepage = "http://sourceforge.net/projects/lazy-regex";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
@@ -91751,7 +94961,6 @@ self: {
buildDepends = [
array base bytestring containers ghc-prim mtl parsec regex-base
];
- configureFlags = [ "-fbase4" ];
homepage = "http://hackage.haskell.org/package/regex-tdfa";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
@@ -91768,7 +94977,6 @@ self: {
buildDepends = [
array base bytestring containers ghc-prim mtl parsec regex-base
];
- configureFlags = [ "-fbase4" ];
homepage = "http://hackage.haskell.org/package/regex-tdfa";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
@@ -91828,6 +95036,7 @@ self: {
homepage = "http://sourceforge.net/projects/lazy-regex";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) tre;};
"regex-xmlschema" = callPackage
@@ -91837,9 +95046,11 @@ self: {
version = "0.1.5";
sha256 = "1dmhvnz6sj80kdnm2v7n0lvx8g9arhf9pqqzkn0rwzfhr2by0ss4";
buildDepends = [ base haskell98 parsec ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema";
description = "A regular expression library for W3C XML Schema regular expressions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regexchar" = callPackage
@@ -91856,7 +95067,7 @@ self: {
array base Cabal containers parallel parsec QuickCheck regex-base
regex-posix regexdot toolshed
];
- configureFlags = [ "-f-llvm" "-fthreaded" ];
+ jailbreak = true;
homepage = "http://functionalley.eu";
description = "A POSIX, extended regex-engine";
license = "GPL";
@@ -91869,7 +95080,6 @@ self: {
version = "0.11.1.0";
sha256 = "0hxqhfamy98ygnbh0ajhdab1zqnx4qnkwclnn5x5f9ra5iqj0rrq";
buildDepends = [ base deepseq parallel parsec toolshed ];
- configureFlags = [ "-fthreaded" "-f-llvm" "-fhavedeepseq" ];
homepage = "http://functionalley.eu";
description = "A polymorphic, POSIX, extended regex-engine";
license = "GPL";
@@ -91886,9 +95096,11 @@ self: {
buildDepends = [
base containers derive-trie template-haskell weighted-regexp
];
+ jailbreak = true;
homepage = "http://github.com/baldo/regexp-tries";
description = "Regular Expressions on Tries";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regexpr" = callPackage
@@ -91910,6 +95122,7 @@ self: {
version = "0.5";
sha256 = "1cpwvb5mmcaqwy617m6cr25pcb4v4yxwzxng82bcrwkhjfdklsdr";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "http://sulzmann.blogspot.com/2008/12/equality-containment-and-intersection.html";
description = "Regular expressions via symbolic manipulation";
license = stdenv.lib.licenses.bsd3;
@@ -91925,6 +95138,7 @@ self: {
homepage = "http://code.haskell.org/~morrow/code/haskell/regexqq";
description = "A quasiquoter for PCRE regexes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regional-pointers" = callPackage
@@ -91935,9 +95149,11 @@ self: {
version = "0.7";
sha256 = "1v71k64is86yc19n96062wl8f382xna1vnm0spcmr9jx6x3wyqv2";
buildDepends = [ base base-unicode-symbols regions transformers ];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/regional-pointers/";
description = "Regional memory pointers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regions" = callPackage
@@ -91951,9 +95167,11 @@ self: {
buildDepends = [
base base-unicode-symbols monad-control transformers
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/regions/";
description = "Provides the region monad for safely opening and working with scarce resources";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regions-monadsfd" = callPackage
@@ -91967,8 +95185,10 @@ self: {
buildDepends = [
base-unicode-symbols monads-fd regions transformers
];
+ jailbreak = true;
description = "Monads-fd instances for the RegionT monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regions-monadstf" = callPackage
@@ -91982,9 +95202,11 @@ self: {
buildDepends = [
base-unicode-symbols monads-tf regions transformers
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/regions-monadstf/";
description = "Monads-tf instances for the RegionT monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regions-mtl" = callPackage
@@ -91994,9 +95216,11 @@ self: {
version = "0.3.1.7";
sha256 = "1s0sr42k1kmwgmrnj5zcan0j9br8xrrm1vdnj6yhliqdfz41ifc0";
buildDepends = [ base-unicode-symbols mtl regions ];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/regions-mtl/";
description = "mtl instances for the RegionT monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regular" = callPackage
@@ -92017,9 +95241,10 @@ self: {
version = "0.2.3";
sha256 = "0x1sbps0ccwpvf6fx1jnbjxylqsvvfzkkynliip9jyh6gkhm44vx";
buildDepends = [ base binary deepseq QuickCheck regular ];
- configureFlags = [ "-fquickcheck2" ];
+ jailbreak = true;
description = "Additional functions for regular: arbitrary, coarbitrary, and binary get/put";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regular-web" = callPackage
@@ -92033,9 +95258,11 @@ self: {
buildDepends = [
applicative-extras base fclabels formlets json mtl regular xhtml
];
+ jailbreak = true;
homepage = "http://github.com/chriseidhof/regular-web";
description = "Generic programming for the web";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regular-xmlpickler" = callPackage
@@ -92063,6 +95290,7 @@ self: {
homepage = "https://github.com/mrVanDalo/reheat";
description = "to make notes and reduce impact on idle time on writing other programms";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rehoo" = callPackage
@@ -92104,9 +95332,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ghc ];
+ jailbreak = true;
homepage = "http://www.cs.mu.oz.au/~bjpop/code.html";
description = "Serialize data";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reinterpret-cast" = callPackage
@@ -92141,6 +95371,7 @@ self: {
version = "0.2.1";
sha256 = "03h6l8v3ppxbwg9ddgg121yx3i2v4vbcpwrv1vg3mgbw5pwq7x4c";
buildDepends = [ array base containers groom ];
+ jailbreak = true;
homepage = "https://www.github.com/d-day/relation/";
description = "A data structure representing Relations on Sets";
license = stdenv.lib.licenses.bsd3;
@@ -92162,6 +95393,7 @@ self: {
homepage = "https://github.com/yuga/haskell-relational-record-driver-postgresql8";
description = "PostgreSQL v8.x driver for haskell-relational-record";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"relational-query" = callPackage
@@ -92184,6 +95416,7 @@ self: {
homepage = "http://khibino.github.io/haskell-relational-record/";
description = "Typeful, Modular, Relational, algebraic query engine";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"relational-query-HDBC" = callPackage
@@ -92203,6 +95436,7 @@ self: {
homepage = "http://khibino.github.io/haskell-relational-record/";
description = "HDBC instance of relational join and typed query for HDBC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"relational-record" = callPackage
@@ -92215,6 +95449,7 @@ self: {
homepage = "http://khibino.github.io/haskell-relational-record/";
description = "Meta package of Relational Record";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"relational-record-examples" = callPackage
@@ -92234,6 +95469,7 @@ self: {
];
description = "Examples of Haskell Relationa Record";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"relational-schemas" = callPackage
@@ -92251,6 +95487,7 @@ self: {
homepage = "http://khibino.github.io/haskell-relational-record/";
description = "RDBMSs' schema templates for relational-query";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"relative-date" = callPackage
@@ -92261,6 +95498,7 @@ self: {
version = "0.0.1";
sha256 = "052rk17flm5zp70wcl7ki3ys47hnaa2d5c1vjsap7bfkcg4lff66";
buildDepends = [ base concatenative datetime mtl parsec time ];
+ jailbreak = true;
description = "Durations and generalized time parsing";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -92286,6 +95524,7 @@ self: {
testDepends = [ base hspec HUnit ];
description = "A simple api for matchers";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rematch-text" = callPackage
@@ -92298,6 +95537,7 @@ self: {
testDepends = [ base hspec HUnit rematch text ];
description = "`rematch` matchers for Data.Text";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"remote" = callPackage
@@ -92329,6 +95569,7 @@ self: {
homepage = "https://github.com/octomarat/HaskellDebugger";
description = "Interface to ghci debugger";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"remotion" = callPackage
@@ -92359,9 +95600,11 @@ self: {
placeholders QuickCheck quickcheck-instances stm system-fileio
system-filepath text time transformers-base
];
+ jailbreak = true;
homepage = "https://github.com/nikita-volkov/remotion";
description = "A library for client-server applications based on custom protocols";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reord" = callPackage
@@ -92386,8 +95629,10 @@ self: {
buildDepends = [
base constraints haskell-src-exts haskell-src-meta template-haskell
];
+ jailbreak = true;
description = "Define compound types that do not depend on member order";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repa" = callPackage
@@ -92426,9 +95671,11 @@ self: {
version = "3.0.0.1";
sha256 = "1q7kvm39iqabanrgyi438n8mfn1ikvpygralyakfc02rm2gpl0gb";
buildDepends = [ base repa ];
+ jailbreak = true;
homepage = "http://repa.ouroborus.net";
description = "(deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repa-devil" = callPackage
@@ -92459,6 +95706,7 @@ self: {
template-haskell vector
];
extraLibraries = [ llvm ];
+ jailbreak = true;
homepage = "http://repa.ouroborus.net";
description = "Examples using the Repa array library";
license = stdenv.lib.licenses.bsd3;
@@ -92476,6 +95724,7 @@ self: {
testDepends = [ base repa tasty tasty-hunit tasty-quickcheck ];
description = "Perform fft with repa via FFTW";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repa-io" = callPackage
@@ -92504,8 +95753,10 @@ self: {
base containers ddc-base ddc-core ddc-core-flow ddc-core-simpl ghc
mtl
];
+ jailbreak = true;
description = "Data Flow Fusion GHC Plugin";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repa-series" = callPackage
@@ -92515,8 +95766,10 @@ self: {
version = "1.0.0.1";
sha256 = "1kldz4d4cv0vliqw78ywbcfgh0mw4i5cd93j0jdagvhsbhlxlp5k";
buildDepends = [ base ghc ghc-prim vector ];
+ jailbreak = true;
description = "Series Expressionss API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repa-sndfile" = callPackage
@@ -92533,7 +95786,6 @@ self: {
testDepends = [
base directory filepath hsndfile hsndfile-vector repa vector
];
- configureFlags = [ "-f-example" ];
description = "Reading and writing sound files with repa arrays";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -92555,6 +95807,7 @@ self: {
homepage = "https://github.com/cgo/hsimage";
description = "Provides high-level access to webcams";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repl" = callPackage
@@ -92564,9 +95817,11 @@ self: {
version = "1.1";
sha256 = "0q9gk76r9n8gyn8fwqfmywbrjhyqy0gz8blmmvrvwghyfscabnh9";
buildDepends = [ base ghc ghc-paths haskell-src-exts parsec ];
+ jailbreak = true;
homepage = "https://github.com/mikeplus64/repl";
description = "IRC friendly REPL library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repl-toolkit" = callPackage
@@ -92581,20 +95836,24 @@ self: {
base functor-monadic ListLike listsafe monad-loops mtl numericpeano
parsec text
];
+ jailbreak = true;
homepage = "https://github.com/ombocomp/repl-toolkit";
description = "Toolkit for quickly whipping up command-line interfaces";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repline" = callPackage
({ mkDerivation, base, containers, haskeline, mtl }:
mkDerivation {
pname = "repline";
- version = "0.1.2.0";
- sha256 = "1d092sj75izr8kc1777sq53ldd4dy8nlx1d6b6c0sl8jgvyzb6lr";
+ version = "0.1.3.0";
+ sha256 = "0cdbsmcvgrizpkfkzalfzw2lxfh8hcm62h1h1gcly41y0acb5ka5";
buildDepends = [ base containers haskeline mtl ];
+ jailbreak = true;
description = "Haskeline wrapper for GHCi-like REPL interfaces";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repo-based-blog" = callPackage
@@ -92635,9 +95894,11 @@ self: {
buildDepends = [
base base-unicode-symbols dstring random string-combinators
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/repr";
description = "Render overloaded expressions to their textual representation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"repr-tree-syb" = callPackage
@@ -92647,6 +95908,7 @@ self: {
version = "0.1.0";
sha256 = "1kpxfvbmfv3zhn0fx7fznnppqxjz2f70g5n89hzkiqjz2am0ls5s";
buildDepends = [ base containers syb text ];
+ jailbreak = true;
homepage = "https://github.com/nikita-volkov/repr-tree-syb";
description = "Tree representation and pretty-printing of data structures based on SYB";
license = stdenv.lib.licenses.mit;
@@ -92666,9 +95928,11 @@ self: {
contravariant distributive free keys mtl semigroupoids semigroups
transformers
];
+ jailbreak = true;
homepage = "http://github.com/ekmett/representable-functors/";
description = "Representable functors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"representable-profunctors" = callPackage
@@ -92681,6 +95945,7 @@ self: {
homepage = "http://github.com/ekmett/representable-profunctors/";
description = "This package has been absorbed into profunctor-extras";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"representable-tries" = callPackage
@@ -92700,6 +95965,7 @@ self: {
homepage = "http://github.com/ekmett/representable-tries/";
description = "Tries from representations of polynomial functors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"request-monad" = callPackage
@@ -92709,9 +95975,11 @@ self: {
version = "0.3.0.1";
sha256 = "1aqcsm9a3zd11k7d4nbvxsy7l35fr77z7gyhrl7rvflnixid29ws";
buildDepends = [ base free mtl transformers ];
+ jailbreak = true;
homepage = "http://github.com/nahiluhmot/request-monad";
description = "A transformer for generic requests";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"reroute" = callPackage
@@ -92788,6 +96056,7 @@ self: {
base containers extensible-effects HUnit mtl QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/wowus/resource-effect/";
description = "A port of the package 'resourcet' for extensible effects";
license = stdenv.lib.licenses.bsd3;
@@ -92805,7 +96074,6 @@ self: {
base hashable monad-control stm time transformers transformers-base
vector
];
- configureFlags = [ "-f-developer" ];
homepage = "http://github.com/bos/pool";
description = "A high-performance striped resource pooling implementation";
license = stdenv.lib.licenses.bsd3;
@@ -92823,7 +96091,6 @@ self: {
base hashable MonadCatchIO-transformers stm time transformers
transformers-base vector
];
- configureFlags = [ "-f-developer" ];
homepage = "http://github.com/norm2782/pool";
description = "Fork of resource-pool, with a MonadCatchIO constraint";
license = stdenv.lib.licenses.bsd3;
@@ -92841,8 +96108,10 @@ self: {
base containers monad-control monad-fork mtl-evil-instances
transformers transformers-base
];
+ jailbreak = true;
description = "Allocate resources which are guaranteed to be released";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"resourcet" = callPackage
@@ -92884,9 +96153,11 @@ self: {
template-haskell text time transformers transformers-base
unordered-containers vector wai wai-extra warp
];
+ jailbreak = true;
homepage = "https://github.com/raptros/respond";
description = "process and route HTTP requests and generate responses on top of WAI";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rest-client" = callPackage
@@ -92951,7 +96222,6 @@ self: {
regular regular-xmlpickler rest-core rest-gen safe stm text time
transformers transformers-base unordered-containers
];
- configureFlags = [ "-fgen" "-f-snap" "-f-wai" "-f-happstack" ];
homepage = "http://www.github.com/silkapp/rest";
description = "Example project for rest";
license = stdenv.lib.licenses.bsd3;
@@ -93078,8 +96348,10 @@ self: {
digestive-functors errors heist lens mtl old-locale readable snap
snap-core snap-extras template-haskell text time xmlhtml
];
+ jailbreak = true;
homepage = "https://github.com/ozataman/restful-snap";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"restricted-workers" = callPackage
@@ -93096,9 +96368,11 @@ self: {
monad-control mtl network selinux stm text transformers
transformers-base unix
];
+ jailbreak = true;
homepage = "https://github.com/co-dan/interactive-diagrams/wiki/Restricted-Workers";
description = "Running worker processes under system resource restrictions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"restyle" = callPackage
@@ -93110,6 +96384,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base directory filepath utf8-string ];
+ jailbreak = true;
description = "Convert between camel case and separated words style";
license = stdenv.lib.licenses.mit;
}) {};
@@ -93121,6 +96396,7 @@ self: {
version = "0.0.0.20100920";
sha256 = "06lzjf8dcbxks57x434n27146whryzzpwcn8bq2mclwfcrv9g3gs";
buildDepends = [ base mtl ];
+ jailbreak = true;
description = "A monad transformer for resumable exceptions";
license = "unknown";
}) {};
@@ -93140,7 +96416,6 @@ self: {
utf8-string vector
];
testDepends = [ base doctest ];
- configureFlags = [ "-f-dev" ];
homepage = "http://github.com/atnnn/haskell-rethinkdb";
description = "A driver for RethinkDB 1.15";
license = stdenv.lib.licenses.asl20;
@@ -93164,9 +96439,11 @@ self: {
base hspec hspec-smallcheck smallcheck text time
unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/wereHamster/rethinkdb-client-driver";
description = "Client driver for RethinkDB";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rethinkdb-wereHamster" = callPackage
@@ -93202,6 +96479,7 @@ self: {
base data-default-class exceptions hspec HUnit QuickCheck time
transformers
];
+ jailbreak = true;
homepage = "http://github.com/Soostone/retry";
description = "Retry combinators for monadic actions that may fail";
license = stdenv.lib.licenses.bsd3;
@@ -93257,6 +96535,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "reverse-geocoding" = callPackage
+ ({ mkDerivation, aeson, base, iso3166-country-codes, lens
+ , lens-aeson, text, wreq
+ }:
+ mkDerivation {
+ pname = "reverse-geocoding";
+ version = "0.1.0.2";
+ sha256 = "1zbix3fx5w57zks5d4ba10r9193x4m7hbq92b06ysw73im13rnhn";
+ buildDepends = [
+ aeson base iso3166-country-codes lens lens-aeson text wreq
+ ];
+ homepage = "https://github.com/jcristovao/reverse-geocoding";
+ description = "Simple reverse geocoding using OpenStreeMap";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"reversi" = callPackage
({ mkDerivation, array, base, process }:
mkDerivation {
@@ -93266,6 +96560,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ array base process ];
+ jailbreak = true;
description = "Text-only reversi (aka othelo) game";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -93279,9 +96574,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring directory multiarg process ];
+ jailbreak = true;
homepage = "http://www.github.com/massysett/rewrite";
description = "open file and rewrite it with new contents";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rewriting" = callPackage
@@ -93325,8 +96622,10 @@ self: {
buildDepends = [
base bytestring containers datetime HTTP json mtl nano-md5 xhtml
];
+ jailbreak = true;
description = "Github resume generator";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rfc3339" = callPackage
@@ -93338,6 +96637,7 @@ self: {
buildDepends = [ base old-locale time ];
description = "Parse and display time according to RFC3339";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rfc5051" = callPackage
@@ -93349,7 +96649,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring containers ];
- configureFlags = [ "-f-mkunicodedata" ];
description = "Simple unicode collation as per RFC5051";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -93390,7 +96689,6 @@ self: {
base bytestring QuickCheck test-framework
test-framework-quickcheck2
];
- configureFlags = [ "-f-developer" "-fdebug" ];
homepage = "http://github.com/markhibberd/riak-haskell-client";
description = "A Haskell client for the Riak decentralized data store";
license = "unknown";
@@ -93437,6 +96735,7 @@ self: {
buildDepends = [
base binary bytestring either filepath transformers
];
+ jailbreak = true;
homepage = "https://bitbucket.org/robertmassaioli/riff/overview";
description = "RIFF parser for Haskell";
license = stdenv.lib.licenses.mit;
@@ -93460,6 +96759,7 @@ self: {
homepage = "http://modeemi.fi/~tuomov/riot/";
description = "Riot is an Information Organisation Tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) ncurses;};
"ripple" = callPackage
@@ -93480,6 +96780,7 @@ self: {
homepage = "https://github.com/singpolyma/ripple-haskell";
description = "Ripple payment system library";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ripple-federation" = callPackage
@@ -93498,6 +96799,7 @@ self: {
homepage = "https://github.com/singpolyma/ripple-federation-haskell";
description = "Utilities and types to work with the Ripple federation protocol";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"risc386" = callPackage
@@ -93511,9 +96813,11 @@ self: {
isExecutable = true;
buildDepends = [ array base containers mtl pretty ];
buildTools = [ alex happy ];
+ jailbreak = true;
homepage = "http://www2.tcs.ifi.lmu.de/~abel/";
description = "Reduced instruction set i386 simulator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rivers" = callPackage
@@ -93523,6 +96827,7 @@ self: {
version = "0.1.0";
sha256 = "0x7r04mwxwnqckfk865dckml4am11zx80a9k5kc91kz5ikq1ns64";
buildDepends = [ base lazysmallcheck oeis QuickCheck ];
+ jailbreak = true;
homepage = "https://github.com/d-rive/rivers";
description = "Rivers are like Streams, but different";
license = stdenv.lib.licenses.bsd3;
@@ -93540,9 +96845,9 @@ self: {
testDepends = [
base containers HUnit test-framework test-framework-hunit
];
- configureFlags = [ "-f-warn-as-error" ];
description = "Restricted monad library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rncryptor" = callPackage
@@ -93586,6 +96891,7 @@ self: {
homepage = "https://github.com/lfairy/robot";
description = "Simulate keyboard and mouse events";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"robots-txt" = callPackage
@@ -93621,6 +96927,7 @@ self: {
homepage = "http://github.com/agrafix/rocksdb-haskell";
description = "Haskell bindings to RocksDB";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { rocksdb = null;};
"roguestar" = callPackage
@@ -93657,9 +96964,11 @@ self: {
MaybeT MonadRandom mtl old-time parallel priority-sync PSQueue
random stm
];
+ jailbreak = true;
homepage = "http://roguestar.downstairspeople.org/";
description = "Sci-fi roguelike game. Backend.";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"roguestar-gl" = callPackage
@@ -93675,9 +96984,11 @@ self: {
arrows base bytestring containers filepath GLUT MonadRandom mtl
OpenGL priority-sync random rsagl rsagl-frp rsagl-math stm
];
+ jailbreak = true;
homepage = "http://roguestar.downstairspeople.org/";
description = "Sci-fi roguelike game. Client library.";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"roguestar-glut" = callPackage
@@ -93689,9 +97000,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base GLUT roguestar-gl rsagl ];
+ jailbreak = true;
homepage = "http://roguestar.downstairspeople.org/";
description = "Sci-fi roguelike game. GLUT front-end.";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rollbar" = callPackage
@@ -93724,6 +97037,7 @@ self: {
buildDepends = [
base optparse-applicative random regex-applicative
];
+ jailbreak = true;
homepage = "https://github.com/Econify/roller";
description = "Playing with applicatives and dice!";
license = stdenv.lib.licenses.gpl2;
@@ -93790,6 +97104,7 @@ self: {
version = "0.6.4";
sha256 = "1g77bv2mmfhy2mkb08k92m3f2jab6p2la2s7rfib2r1jy6lq5vhb";
buildDepends = [ base bytestring fingertree mtl utf8-string ];
+ jailbreak = true;
homepage = "http://github.com/ekmett/rope";
description = "Tools for manipulating fingertrees of bytestrings with optional annotations";
license = stdenv.lib.licenses.bsd3;
@@ -93811,6 +97126,7 @@ self: {
];
description = "Query the namecoin blockchain";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rosezipper" = callPackage
@@ -93849,10 +97165,11 @@ self: {
attoparsec base bytestring containers data-default-generics
filepath mtl pureMD5 tasty tasty-hunit testpack transformers
];
- configureFlags = [ "-flogging" ];
+ jailbreak = true;
homepage = "http://github.com/acowley/roshask";
description = "Haskell support for the ROS robotics framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rosso" = callPackage
@@ -93864,6 +97181,7 @@ self: {
buildDepends = [ base containers deepseq ];
description = "General purpose utility library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rot13" = callPackage
@@ -93903,9 +97221,11 @@ self: {
version = "0.3.0";
sha256 = "1d2vaijcna8gwcrhsjpclqw4gjdvdpmnrlyszqzcxnqf0l206a6y";
buildDepends = [ array base numeric-extras ];
+ jailbreak = true;
homepage = "http://patch-tag.com/r/ekmett/rounding";
description = "Explicit floating point rounding mode wrappers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"roundtrip" = callPackage
@@ -93951,9 +97271,9 @@ self: {
enumerator mtl pretty reference roundtrip roundtrip-string safe
text xml-enumerator xml-types
];
- configureFlags = [ "-f-tests" ];
description = "Bidirectional (de-)serialization for XML";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"route-generator" = callPackage
@@ -93968,6 +97288,7 @@ self: {
homepage = "http://github.com/singpolyma/route-generator";
description = "Utility to generate routes for use with yesod-routes";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"route-planning" = callPackage
@@ -93982,10 +97303,10 @@ self: {
base containers coordinate lens semigroupoids semigroups text xsd
];
testDepends = [ base directory doctest filepath QuickCheck ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/route";
description = "A library and utilities for creating a route";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rowrecord" = callPackage
@@ -93997,6 +97318,7 @@ self: {
buildDepends = [ base containers template-haskell ];
description = "Build records from lists of strings, as from CSV files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rpc" = callPackage
@@ -94013,6 +97335,7 @@ self: {
];
description = "type safe rpcs provided as basic IO actions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rpc-framework" = callPackage
@@ -94028,9 +97351,11 @@ self: {
buildDepends = [
base containers mtl network template-haskell transformers
];
+ jailbreak = true;
homepage = "http://github.com/mmirman/rpc-framework";
description = "a remote procedure call framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rpf" = callPackage
@@ -94061,9 +97386,9 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base directory filepath HaXml process ];
- configureFlags = [ "-fhpc" "-f-tests" ];
description = "Cozy little project to question unruly rpm packages";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rsagl" = callPackage
@@ -94081,9 +97406,11 @@ self: {
old-time OpenGL OpenGLRaw parallel parsec random rsagl-frp
rsagl-math stm Vec Vec-OpenGLRaw
];
+ jailbreak = true;
homepage = "http://roguestar.downstairspeople.org/";
description = "The RogueStar Animation and Graphics Library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rsagl-frp" = callPackage
@@ -94097,9 +97424,11 @@ self: {
buildDepends = [
array arrows base containers mtl old-time random rsagl-math stm
];
+ jailbreak = true;
homepage = "http://roguestar.downstairspeople.org/";
description = "The RogueStar Animation and Graphics Library: Functional Reactive Programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rsagl-math" = callPackage
@@ -94114,9 +97443,11 @@ self: {
array base containers deepseq OpenGL OpenGLRaw parallel parsec
random Vec Vec-OpenGLRaw
];
+ jailbreak = true;
homepage = "http://roguestar.downstairspeople.org/";
description = "The RogueStar Animation and Graphics Library: Mathematics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rss" = callPackage
@@ -94128,7 +97459,6 @@ self: {
version = "3000.2.0.4";
sha256 = "1kq7bk3kl48699n2ri15im5ds8cd2pmcjglh06br1knxkli80kbq";
buildDepends = [ base HaXml network network-uri old-locale time ];
- configureFlags = [ "-fnetwork-uri" "-fold-locale" ];
homepage = "https://github.com/basvandijk/rss";
description = "A library for generating RSS 2.0 feeds.";
license = stdenv.lib.licenses.publicDomain;
@@ -94152,9 +97482,11 @@ self: {
old-locale parsec regexpr resourcet safe split text time
transformers utf8-string
];
+ jailbreak = true;
homepage = "http://hackage.haskell.org/package/rss2irc";
description = "watches an RSS/Atom feed and writes it to an IRC channel";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rtld" = callPackage
@@ -94181,6 +97513,7 @@ self: {
homepage = "https://github.com/adamwalker/hrtlsdr";
description = "Bindings to librtlsdr";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { rtlsdr = null;};
"rtorrent-rpc" = callPackage
@@ -94233,6 +97566,7 @@ self: {
homepage = "https://github.com/mtolly/rubberband";
description = "Binding to the C++ audio stretching library Rubber Band";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) rubberband;};
"ruby-qq" = callPackage
@@ -94247,6 +97581,7 @@ self: {
base bytestring haskell-src-exts haskell-src-meta pcre-light
process template-haskell trifecta
];
+ jailbreak = true;
homepage = "https://github.com/joelteon/ruby-qq";
description = "rubyish quasiquoters";
license = stdenv.lib.licenses.mit;
@@ -94262,6 +97597,7 @@ self: {
homepage = "https://gitorious.org/ruff";
description = "relatively useful fractal functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ruler" = callPackage
@@ -94298,6 +97634,7 @@ self: {
];
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rungekutta" = callPackage
@@ -94309,6 +97646,7 @@ self: {
buildDepends = [ base ];
description = "A collection of explicit Runge-Kutta methods of various orders";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"runghc" = callPackage
@@ -94350,7 +97688,6 @@ self: {
version = "0.2.0.2";
sha256 = "1n24fl27mrm7cndp8b646b9c5hjm3hf5m12y9ni0f850dd739jm4";
buildDepends = [ base MonadPrompt mtl random-source transformers ];
- configureFlags = [ "-fmtl2" ];
homepage = "https://github.com/mokus0/random-fu";
description = "Random Variables";
license = stdenv.lib.licenses.publicDomain;
@@ -94363,7 +97700,6 @@ self: {
version = "0.0.0.3";
sha256 = "0isx32ayaqh7vhcyl11ykdy8f1chs1fdw73h3c2r53k989yfkmba";
buildDepends = [ base monad-loops-stm stm syb ];
- configureFlags = [ "-fbase4" ];
homepage = "https://github.com/mokus0/rwlock";
description = "Multiple-read / single-write locks";
license = stdenv.lib.licenses.publicDomain;
@@ -94384,6 +97720,7 @@ self: {
base binary bytestring parsec QuickCheck test-framework
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "https://github.com/karknu/rws";
description = "Packet Generation";
license = stdenv.lib.licenses.bsd3;
@@ -94424,9 +97761,11 @@ self: {
version = "0.2.1.0";
sha256 = "0k3ynhx6ydwz1b25z9yvpxkqy2ynz2d7db52pzbb70p6vmm1cq2i";
buildDepends = [ base mtl transformers ];
+ jailbreak = true;
homepage = "http://hub.darcs.net/thoferon/safe-access";
description = "A simple environment to control access to data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"safe-failure" = callPackage
@@ -94450,6 +97789,7 @@ self: {
buildDepends = [ base control-monad-exception safe-failure ];
description = "control-monad-exception Instances for safe-failure";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"safe-freeze" = callPackage
@@ -94459,9 +97799,11 @@ self: {
version = "0.2.1";
sha256 = "12mqgak0rla20n9b4m6ynx64bwr06njcr849csc0z0r573xw2v33";
buildDepends = [ base indexed mtl vector ];
+ jailbreak = true;
homepage = "https://github.com/reinerp/safe-freeze";
description = "Support for safely freezing multiple arrays in the ST monad";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"safe-globals" = callPackage
@@ -94473,6 +97815,7 @@ self: {
buildDepends = [ base stm template-haskell ];
description = "Safe top-level mutable variables which scope like ordinary values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"safe-lazy-io" = callPackage
@@ -94485,6 +97828,7 @@ self: {
buildDepends = [ base extensible-exceptions parallel strict-io ];
description = "A library providing safe lazy IO features";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"safe-plugins" = callPackage
@@ -94500,6 +97844,7 @@ self: {
];
description = "A small wrapper over hs-plugins to allow loading safe plugins";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"safecopy" = callPackage
@@ -94539,6 +97884,7 @@ self: {
];
description = "overflow-checked Int type";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"safer-file-handles" = callPackage
@@ -94553,9 +97899,11 @@ self: {
base base-unicode-symbols explicit-iomodes pathtype
regional-pointers regions transformers
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/safer-file-handles/";
description = "Type-safe file handling";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"safer-file-handles-bytestring" = callPackage
@@ -94570,9 +97918,11 @@ self: {
base bytestring explicit-iomodes-bytestring regions
safer-file-handles transformers
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/safer-file-handles-bytestring/";
description = "Extends safer-file-handles with ByteString operations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"safer-file-handles-text" = callPackage
@@ -94586,9 +97936,11 @@ self: {
buildDepends = [
explicit-iomodes-text regions safer-file-handles text transformers
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/safer-file-handles-text/";
description = "Extends safer-file-handles with Text operations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"saferoute" = callPackage
@@ -94598,6 +97950,7 @@ self: {
version = "0.2.0.0";
sha256 = "00ykmy44paghgc3m731p1hh00zv11416pl2xil4cav7vrr43nb6h";
buildDepends = [ base blaze-html containers text ];
+ jailbreak = true;
description = "A simple type-safe routing library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -94611,7 +97964,6 @@ self: {
sha256 = "07g7qpf7avv5hnxykrh4x7qr8sx9mwwv4hbavnsqi1n7zy2z91a3";
buildDepends = [ base containers ghc ghc-syb-utils syb ];
testDepends = [ base containers ghc ghc-syb-utils HUnit syb ];
- configureFlags = [ "-fuse_data_tree" ];
homepage = "http://fremissant.net/shape-syb";
description = "Obtain homogeneous values from arbitrary values, transforming or culling data";
license = stdenv.lib.licenses.bsd3;
@@ -94651,8 +98003,10 @@ self: {
salvia-protocol split stm text threadmanager time transformers unix
utf8-string
];
+ jailbreak = true;
description = "Modular web application framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"salvia-demo" = callPackage
@@ -94671,8 +98025,10 @@ self: {
salvia-protocol salvia-sessions salvia-websocket stm threadmanager
transformers
];
+ jailbreak = true;
description = "Demo Salvia servers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"salvia-extras" = callPackage
@@ -94691,8 +98047,10 @@ self: {
salvia-protocol sendfile split stm text threadmanager time
transformers utf8-string
];
+ jailbreak = true;
description = "Collection of non-fundamental handlers for the Salvia web server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"salvia-protocol" = callPackage
@@ -94707,8 +98065,10 @@ self: {
base bimap bytestring containers fclabels parsec safe split
utf8-string
];
+ jailbreak = true;
description = "Salvia webserver protocol suite supporting URI, HTTP, Cookie and MIME";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"salvia-sessions" = callPackage
@@ -94724,8 +98084,10 @@ self: {
base containers fclabels MaybeT-transformers monads-fd pureMD5
random safe salvia salvia-protocol stm time utf8-string
];
+ jailbreak = true;
description = "Session support for the Salvia webserver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"salvia-websocket" = callPackage
@@ -94740,8 +98102,10 @@ self: {
base bytestring fclabels monads-fd salvia salvia-protocol stm
utf8-string
];
+ jailbreak = true;
description = "Websocket implementation for the Salvia Webserver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sample-frame" = callPackage
@@ -94753,7 +98117,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base QuickCheck storable-record ];
- configureFlags = [ "-fsplitbase" "-f-buildbenchmarks" ];
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Handling of samples in an (audio) signal";
license = stdenv.lib.licenses.bsd3;
@@ -94766,7 +98129,6 @@ self: {
version = "0.0.4";
sha256 = "1l7447xjxj98jx99b75hdfdjps6mcm293yhx0fjrqwxkz6anxv6d";
buildDepends = [ base numeric-prelude sample-frame ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Orphan instances for types from sample-frame and numericprelude";
license = stdenv.lib.licenses.bsd3;
@@ -94785,7 +98147,6 @@ self: {
buildDepends = [ base bytestring filepath process seqloc vector ];
buildTools = [ c2hs ];
extraLibraries = [ zlib ];
- configureFlags = [ "-f-tests" ];
homepage = "http://www.ingolia-lab.org/samtools-tutorial.html";
description = "Binding to the C samtools library";
license = stdenv.lib.licenses.mit;
@@ -94804,7 +98165,7 @@ self: {
buildDepends = [
base bytestring conduit filepath resourcet samtools transformers
];
- configureFlags = [ "-f-examples" ];
+ jailbreak = true;
homepage = "http://www.ingolia-lab.org/samtools-tutorial.html";
description = "Conduit interface to SAM/BAM format files through samtools";
license = stdenv.lib.licenses.mit;
@@ -94838,9 +98199,9 @@ self: {
buildDepends = [
base bytestring iteratee monads-tf samtools transformers
];
- configureFlags = [ "-f-utilities" ];
description = "Iteratee interface to SamTools library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sandi" = callPackage
@@ -94855,7 +98216,6 @@ self: {
testDepends = [
base bytestring HUnit tasty tasty-hunit tasty-quickcheck tasty-th
];
- configureFlags = [ "-fwith-conduit" ];
homepage = "http://hackage.haskell.org/package/sandi";
description = "Data encoding library";
license = stdenv.lib.licenses.bsd3;
@@ -94868,6 +98228,7 @@ self: {
version = "0.0.2";
sha256 = "07wh6va4rpf6vvxnjqbmwfna3rg20ysjh2pnzylz6xzlayzq0pkx";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "http://github.com/regularlambda/sandlib";
description = "SAND data serialization and manipulation library";
license = stdenv.lib.licenses.bsd3;
@@ -94880,6 +98241,7 @@ self: {
version = "0.3.0.0";
sha256 = "0x8d5n2mydhwl9h7vzk7nr58b2aym9xb21p4m21rfa6vy6r2n438";
buildDepends = [ base deepseq portaudio ];
+ jailbreak = true;
homepage = "https://github.com/tokiwoousaka/Sarasvati";
description = "audio library";
license = stdenv.lib.licenses.bsd3;
@@ -94900,6 +98262,7 @@ self: {
homepage = "https://github.com/YoshikuniJujo/sasl/wiki";
description = "SASL implementation using simple-pipe";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sat" = callPackage
@@ -94914,6 +98277,7 @@ self: {
homepage = "http://tcana.info/sat.html";
description = "CNF SATisfier";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sat-micro-hs" = callPackage
@@ -94931,6 +98295,7 @@ self: {
];
description = "A minimal SAT solver";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"satchmo" = callPackage
@@ -94963,6 +98328,7 @@ self: {
homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/";
description = "driver for external satchmo backends";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"satchmo-examples" = callPackage
@@ -94981,6 +98347,7 @@ self: {
homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/";
description = "examples that show how to use satchmo";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"satchmo-funsat" = callPackage
@@ -94997,6 +98364,7 @@ self: {
homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/";
description = "funsat driver as backend for satchmo";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"satchmo-minisat" = callPackage
@@ -95009,6 +98377,7 @@ self: {
homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/";
description = "minisat driver as backend for satchmo";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"satchmo-toysat" = callPackage
@@ -95030,8 +98399,8 @@ self: {
}:
mkDerivation {
pname = "sbv";
- version = "3.4";
- sha256 = "1c4sh9l4kggw2mvv47raz36j2s9nn81l68y6w6dbq3m990j1zazm";
+ version = "3.5";
+ sha256 = "00r80h8p6w1ir2sk3m2xgims22fzxyvij9mz6b0kn9n0qsjmkpaz";
isLibrary = true;
isExecutable = true;
buildDepends = [
@@ -95054,6 +98423,7 @@ self: {
homepage = "http://rd.slavepianos.org/t/sc3-rdu";
description = "Haskell bindings to sc3-rdu (sc3 rd ugens)";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scalable-server" = callPackage
@@ -95069,6 +98439,7 @@ self: {
attoparsec attoparsec-enumerator base blaze-builder BoundedChan
bytestring enumerator mtl network network-enumerator
];
+ jailbreak = true;
homepage = "https://github.com/jamwt/haskell-scalable-server/";
description = "Library for writing fast/scalable TCP-based services";
license = stdenv.lib.licenses.bsd3;
@@ -95083,12 +98454,31 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base filepath gd ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/~dons/code/scaleimage";
description = "Scale an image to a new geometry";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "scalpel" = callPackage
+ ({ mkDerivation, base, bytestring, download-curl, HUnit, regex-base
+ , regex-tdfa, tagsoup, text
+ }:
+ mkDerivation {
+ pname = "scalpel";
+ version = "0.1.1";
+ sha256 = "0ypr6i4in1vvxjxi03r29q7mvig390bnpn2bcmjm9q1w51ypjdnr";
+ buildDepends = [
+ base bytestring download-curl regex-base regex-tdfa tagsoup text
+ ];
+ testDepends = [
+ base bytestring download-curl HUnit regex-base regex-tdfa tagsoup
+ text
+ ];
+ homepage = "https://github.com/fimad/scalpel";
+ description = "A high level web scraping library for Haskell";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"scan" = callPackage
({ mkDerivation, base, parsec }:
mkDerivation {
@@ -95098,7 +98488,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base parsec ];
- configureFlags = [ "-f-parsec1" ];
homepage = "http://projects.haskell.org/style-scanner";
description = "lexical style suggestions for source code";
license = stdenv.lib.licenses.bsd3;
@@ -95114,6 +98503,7 @@ self: {
testDepends = [ array base HUnit ];
description = "An implementation of the Scan Vector Machine instruction set in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scat" = callPackage
@@ -95134,9 +98524,11 @@ self: {
ansi-terminal base bytestring mtl optparse-applicative scrypt
vector
];
+ jailbreak = true;
homepage = "https://github.com/redelmann/scat";
description = "Generates unique passwords for various websites from a single password";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scc" = callPackage
@@ -95161,10 +98553,11 @@ self: {
monad-parallel monoid-subclasses QuickCheck test-framework
test-framework-quickcheck2 text transformers
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
homepage = "http://trac.haskell.org/SCC/";
description = "Streaming component combinators";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scenegraph" = callPackage
@@ -95179,9 +98572,11 @@ self: {
array base containers fgl GLUT haskell98 hmatrix mtl old-time
OpenGL process
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/SceneGraph";
description = "Scene Graph";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scgi" = callPackage
@@ -95197,6 +98592,7 @@ self: {
];
description = "A Haskell library for writing SCGI programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"schedevr" = callPackage
@@ -95210,6 +98606,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base directory filepath old-locale time xturtle ];
+ jailbreak = true;
description = "Marge schedules and show EVR";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -95221,6 +98618,7 @@ self: {
version = "1.0";
sha256 = "0lzhxlfxa660vx4y49gbg2q76v8dda00h3rznj5fhdjj29pkypgp";
buildDepends = [ base ];
+ jailbreak = true;
description = "Exposes standard POSIX function sched_yield";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -95258,10 +98656,7 @@ self: {
HUnit process QuickCheck scholdoc-types syb test-framework
test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [
- "-fnetwork-uri" "-f-make-pandoc-man-pages" "-fhttps"
- "-f-tryscholdoc" "-f-embed_data_files"
- ];
+ jailbreak = true;
homepage = "http://scholdoc.scholarlymarkdown.com";
description = "Converts ScholarlyMarkdown documents to HTML5/LaTeX/Docx format";
license = "GPL";
@@ -95291,10 +98686,6 @@ self: {
aeson base bytestring directory filepath process scholdoc
scholdoc-types temporary text yaml
];
- configureFlags = [
- "-f-test_citeproc" "-f-unicode_collation" "-f-embed_data_files"
- "-fbibutils" "-fsmall_base"
- ];
homepage = "http://scholdoc.scholarlymarkdown.com";
description = "Scholdoc fork of pandoc-citeproc";
license = stdenv.lib.licenses.bsd3;
@@ -95319,7 +98710,6 @@ self: {
base bytestring directory filepath process split temporary text
utf8-string xml
];
- configureFlags = [ "-fnetwork-uri" "-f-executable" ];
homepage = "http://scholdoc.scholarlymarkdown.com";
description = "Scholdoc fork of texmath";
license = "GPL";
@@ -95337,6 +98727,7 @@ self: {
buildDepends = [
aeson base bytestring containers deepseq-generics ghc-prim syb
];
+ jailbreak = true;
homepage = "http://scholdoc.scholarlymarkdown.com";
description = "Scholdoc fork of pandoc-types";
license = "GPL";
@@ -95373,6 +98764,7 @@ self: {
version = "0.2.0.0";
sha256 = "0qp3d9la929kks2b2pyylgznl86gy91lp3zgpb9bn7gas3wll9vy";
buildDepends = [ base ];
+ jailbreak = true;
description = "Mathematical/physical/chemical constants";
license = "unknown";
}) {};
@@ -95384,6 +98776,7 @@ self: {
version = "0.1.0.1";
sha256 = "0n39pfs7kfhy62vl9q2ka5f9bfckncpssjsdx71d1hrld0jcq2g8";
buildDepends = [ base dimensional numtype science-constants ];
+ jailbreak = true;
description = "Mathematical/physical/chemical constants";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -95405,7 +98798,6 @@ self: {
base bytestring QuickCheck smallcheck tasty tasty-ant-xml
tasty-hunit tasty-quickcheck tasty-smallcheck text
];
- configureFlags = [ "-f-integer-simple" "-fbytestring-builder" ];
homepage = "https://github.com/basvandijk/scientific";
description = "Numbers represented using scientific notation";
license = stdenv.lib.licenses.bsd3;
@@ -95427,10 +98819,11 @@ self: {
ghc-syb hslogger json multiset network network-bytestring time
uniplate utf8-string
];
- configureFlags = [ "-fserver" "-f-testing" ];
+ jailbreak = true;
homepage = "http://github.com/nominolo/scion";
description = "Haskell IDE library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scion-browser" = callPackage
@@ -95456,9 +98849,11 @@ self: {
resourcet tar text transformers unix unordered-containers
utf8-string vector zlib
];
+ jailbreak = true;
homepage = "http://github.com/JPMoresmau/scion-class-browser";
description = "Command-line interface for browsing and searching packages documentation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scons2dot" = callPackage
@@ -95470,6 +98865,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring containers process ];
+ jailbreak = true;
description = "Generates graphviz file of scons dependency information";
license = "GPL";
}) {};
@@ -95487,9 +98883,9 @@ self: {
base bytestring containers iteratee MonadCatchIO-transformers mtl
mwc-random time unix zoom-cache
];
- configureFlags = [ "-fsplitbase" ];
description = "An interactive renderer for plotting time-series data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scope-cairo" = callPackage
@@ -95506,9 +98902,9 @@ self: {
base cairo gtk MonadCatchIO-transformers mtl old-locale scope time
zoom-cache
];
- configureFlags = [ "-fsplitbase" ];
description = "An interactive renderer for plotting time-series data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scottish" = callPackage
@@ -95524,6 +98920,7 @@ self: {
base data-default enclosed-exceptions http-types lens mtl
persistent resource-pool scotty stm text transformers wai warp
];
+ jailbreak = true;
homepage = "https://github.com/echaozh/scottish";
description = "scotty with batteries included";
license = stdenv.lib.licenses.bsd3;
@@ -95581,6 +98978,7 @@ self: {
buildDepends = [ base blaze-builder blaze-html mtl scotty wai ];
description = "blaze-html integration for Scotty";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scotty-cookie" = callPackage
@@ -95595,6 +98993,7 @@ self: {
base blaze-builder bytestring containers cookie scotty text time
transformers
];
+ jailbreak = true;
homepage = "https://bitbucket.org/wniare/scotty-cookie";
description = "Cookie management helper functions for Scotty framework";
license = stdenv.lib.licenses.bsd3;
@@ -95618,8 +99017,10 @@ self: {
http-types HUnit scotty test-framework test-framework-hunit text
transformers wai wai-test
];
+ jailbreak = true;
description = "Fay integration for Scotty";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scotty-hastache" = callPackage
@@ -95685,6 +99086,7 @@ self: {
sha-streams unix
];
testDepends = [ base bytestring io-streams ];
+ jailbreak = true;
homepage = "https://github.com/noteed/scp-streams";
description = "An SCP protocol implementation";
license = stdenv.lib.licenses.bsd3;
@@ -95704,8 +99106,10 @@ self: {
array base binary containers deepseq directory mtl packed-dawg
parallel split
];
+ jailbreak = true;
description = "Scrabble play generation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scrobble" = callPackage
@@ -95722,7 +99126,6 @@ self: {
base containers curl MissingH network network-uri old-locale
pureMD5 time url
];
- configureFlags = [ "-fnetwork-uri" ];
description = "Scrobbling server";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -95768,6 +99171,7 @@ self: {
homepage = "http://github.com/wereHamster/scrz";
description = "Process management and supervision daemon";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"scyther-proof" = callPackage
@@ -95785,9 +99189,10 @@ self: {
array base cmdargs containers directory filepath json mtl parsec
pretty process safe tagsoup time uniplate
];
- configureFlags = [ "-fthreaded" ];
+ jailbreak = true;
description = "Automatic generation of Isabelle/HOL correctness proofs for security protocols";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sde-solver" = callPackage
@@ -95807,6 +99212,7 @@ self: {
homepage = "https://github.com/davnils/sde-solver";
description = "Distributed SDE solver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sdl2" = callPackage
@@ -95831,8 +99237,10 @@ self: {
buildDepends = [ base sdl2 ];
extraLibraries = [ SDL2 ];
pkgconfigDepends = [ SDL2 SDL2_image ];
+ jailbreak = true;
description = "Haskell binding to sdl2-image";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;};
"sdl2-ttf" = callPackage
@@ -95847,6 +99255,7 @@ self: {
extraLibraries = [ SDL2 SDL2_ttf ];
description = "Binding to libSDL2-ttf";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) SDL2; SDL2_ttf = null;};
"seacat" = callPackage
@@ -95868,9 +99277,11 @@ self: {
persistent-template text time transformers wai wai-extra
wai-middleware-static warp web-routes web-routes-wai
];
+ jailbreak = true;
homepage = "https://github.com/Barrucadu/lambdadelta";
description = "Small web framework using Warp and WAI";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"seal-module" = callPackage
@@ -95908,6 +99319,7 @@ self: {
version = "0.0.1";
sha256 = "1ryl0nm1a37r606xhxy6ykf3c8c1gml6gdqna428w8y3a2vg5q2v";
buildDepends = [ base template-haskell ];
+ jailbreak = true;
homepage = "http://github.com/urso/sec";
description = "Semantic Editor Combinators";
license = stdenv.lib.licenses.bsd3;
@@ -95925,6 +99337,7 @@ self: {
homepage = "http://github.com/pgavin/secdh";
description = "SECDH Machine Simulator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"seclib" = callPackage
@@ -95951,9 +99364,11 @@ self: {
buildDepends = [
base containers diagrams-cairo diagrams-lib haskell-qrencode random
];
+ jailbreak = true;
homepage = "https://github.com/rodrigosetti/secret-santa";
description = "Secret Santa game assigner using QR-Codes";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"secret-sharing" = callPackage
@@ -95975,6 +99390,7 @@ self: {
homepage = "http://monoid.at/code";
description = "Information-theoretic secure secret sharing";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"secrm" = callPackage
@@ -95986,8 +99402,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base haskell98 ];
+ jailbreak = true;
description = "Example of writing \"secure\" file removal in Haskell rather than C";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"secure-sockets" = callPackage
@@ -96010,8 +99428,8 @@ self: {
({ mkDerivation, base, byteable, bytestring, ghc-prim }:
mkDerivation {
pname = "securemem";
- version = "0.1.4";
- sha256 = "1wdbcnyaarrixfvz79mcyqmfnn9h5zsmrrsa64xj8650ppyaxi48";
+ version = "0.1.5";
+ sha256 = "1g3y6bb1879qdlrsh11c31fiai66slvcd732zpkrf9lg2zpv68af";
buildDepends = [ base byteable bytestring ghc-prim ];
homepage = "http://github.com/vincenthz/hs-securemem";
description = "abstraction to an auto scrubbing and const time eq, memory chunk";
@@ -96032,20 +99450,20 @@ self: {
extraLibraries = [ sedna ];
description = "Sedna C API XML Binding";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { sedna = null;};
"select" = callPackage
- ({ mkDerivation, base, rt }:
+ ({ mkDerivation, base }:
mkDerivation {
pname = "select";
version = "0.4.0.1";
sha256 = "180cj5m0bap1lb19s68icpn1dvk2s395cmlcc6dnwz3mpbj5alj0";
buildDepends = [ base ];
- extraLibraries = [ rt ];
homepage = "http://nonempty.org/software/haskell-select";
description = "Wrap the select(2) POSIX function";
license = stdenv.lib.licenses.bsd3;
- }) { rt = null;};
+ }) {};
"selectors" = callPackage
({ mkDerivation, alex, array, base, containers, happy
@@ -96062,6 +99480,7 @@ self: {
homepage = "http://github.com/rcallahan/selectors";
description = "CSS Selectors for DOM traversal";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"selenium" = callPackage
@@ -96071,9 +99490,9 @@ self: {
version = "0.2.5";
sha256 = "0vr3d891pj947lv2grgbc83nm828gz9bbz6dp8mnf9bsji3ih7l7";
buildDepends = [ base HTTP HUnit mtl network pretty ];
- configureFlags = [ "-fsmall_base" ];
description = "Test web applications through a browser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"selenium-server" = callPackage
@@ -96091,9 +99510,11 @@ self: {
utf8-string
];
testDepends = [ base hspec text webdriver ];
+ jailbreak = true;
homepage = "https://github.com/joelteon/selenium-server.git";
description = "Run the selenium standalone server for usage with webdriver";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"selfrestart" = callPackage
@@ -96119,6 +99540,7 @@ self: {
homepage = "https://github.com/luite/selinux";
description = "SELinux bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { selinux = null;};
"semaphore-plus" = callPackage
@@ -96157,6 +99579,7 @@ self: {
homepage = "http://github.com/ekmett/semigroupoid-extras";
description = "This package has been absorbed into semigroupoids 4.0";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"semigroupoids" = callPackage
@@ -96172,9 +99595,6 @@ self: {
base comonad containers contravariant distributive semigroups
transformers
];
- configureFlags = [
- "-fcomonad" "-fdistributive" "-fcontravariant" "-fcontainers"
- ];
homepage = "http://github.com/ekmett/semigroupoids";
description = "Semigroupoids: Category sans id";
license = stdenv.lib.licenses.bsd3;
@@ -96196,10 +99616,6 @@ self: {
testDepends = [
base directory doctest filepath QuickCheck template-haskell
];
- configureFlags = [
- "-fcomonad" "-fdistributive" "-fcontravariant" "-fcontainers"
- "-fsmall_base"
- ];
homepage = "https://github.com/NICTA/semigroupoids-syntax";
description = "RebindableSyntax using the semigroupoids package";
license = stdenv.lib.licenses.bsd3;
@@ -96217,10 +99633,6 @@ self: {
base bytestring containers deepseq hashable nats text
unordered-containers
];
- configureFlags = [
- "-funordered-containers" "-ftext" "-fdeepseq" "-fcontainers"
- "-fbytestring" "-fhashable"
- ];
homepage = "http://github.com/ekmett/semigroups/";
description = "Anything that associates";
license = stdenv.lib.licenses.bsd3;
@@ -96233,10 +99645,11 @@ self: {
version = "0.1";
sha256 = "0vns2vdchszw34i12s9rfl4cm76ympfrivpb397j2vzg2i7bghqb";
buildDepends = [ base containers semigroups ];
- configureFlags = [ "-f-base2" ];
+ jailbreak = true;
homepage = "http://github.com/ppetr/semigroups-actions/";
description = "Semigroups actions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"semiring" = callPackage
@@ -96254,7 +99667,7 @@ self: {
base Boolean containers HUnit monoids QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [ "-f-testing" ];
+ jailbreak = true;
homepage = "http://github.com/srush/SemiRings/tree/master";
description = "Semirings, ring-like structures used for dynamic programming applications";
license = stdenv.lib.licenses.bsd3;
@@ -96293,7 +99706,6 @@ self: {
version = "0.7.9";
sha256 = "0hnw1ym81cff49dwww19kgbs4s0kpandbvn6h5cml3y0p1nxybqh";
buildDepends = [ base bytestring network ];
- configureFlags = [ "-f-portable" ];
homepage = "http://hub.darcs.net/stepcut/sendfile";
description = "A portable sendfile library";
license = stdenv.lib.licenses.bsd3;
@@ -96312,9 +99724,11 @@ self: {
buildDepends = [
aeson base bytestring containers process stm zeromq3-haskell
];
+ jailbreak = true;
homepage = "https://github.com/rossdylan/sensenet";
description = "Distributed sensor network for the raspberry pi";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sentry" = callPackage
@@ -96332,9 +99746,11 @@ self: {
ansi-terminal base bytestring cereal cmdargs directory filepath
old-locale old-time process safecopy time unix
];
+ jailbreak = true;
homepage = "https://github.com/noteed/sentry";
description = "Process monitoring tool written and configured in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"senza" = callPackage
@@ -96345,6 +99761,7 @@ self: {
sha256 = "0pl7dcs9w4dzzajlfnkrjl5kgsx8zdzzl5hvikh9v9djsmw2290h";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"separated" = callPackage
@@ -96359,7 +99776,6 @@ self: {
testDepends = [
base directory doctest filepath QuickCheck template-haskell
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/separated";
description = "A data type with elements separated by values";
license = stdenv.lib.licenses.bsd3;
@@ -96381,15 +99797,11 @@ self: {
modulespection mtl process regex-base regex-pcre syb
template-haskell temporary th-expand-syns
];
- configureFlags = [
- "-fshow_type" "-f-nfdatan_only" "-f-no_top_level_seqinj_dummies"
- "-fdbg_seqaid" "-fdemo_mode" "-f-infer_top_level_types"
- "-fseqaidpp_types" "-f-th_type_in_types_ann" "-f-seqable_only"
- "-f-try_inject_noinline_on_requested_binds"
- ];
+ jailbreak = true;
homepage = "http://www.fremissant.net/seqaid";
description = "Dynamic strictness control, including space leak repair";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"seqid" = callPackage
@@ -96399,6 +99811,7 @@ self: {
version = "0.1.0";
sha256 = "0q5vs8kravhiq906rrzi5iw5837bb8s6fibycgdracyfwrzvxly0";
buildDepends = [ base transformers ];
+ jailbreak = true;
description = "Sequence ID production and consumption";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -96420,8 +99833,8 @@ self: {
}:
mkDerivation {
pname = "seqloc";
- version = "0.6.1";
- sha256 = "0ymc0p9n5jmqw3ffs9s86sxz9bkh3nz36lmfs0l14psqcd41ghwa";
+ version = "0.6.1.1";
+ sha256 = "1hsm9y6q0g7ixnqj562a33lmyka4k7f778fndcmn25v4m1myfda4";
buildDepends = [
attoparsec base biocore bytestring hashable unordered-containers
vector
@@ -96453,10 +99866,10 @@ self: {
random resourcet seqloc transformers transformers-base
unordered-containers vector
];
- configureFlags = [ "-f-tests" ];
homepage = "http://www.ingolia-lab.org/seqloc-datafiles-tutorial.html";
description = "Read and write BED and GTF format genome annotations";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sequence" = callPackage
@@ -96528,9 +99941,11 @@ self: {
attoparsec attoparsec-conduit base conduit mtl operational process
resourcet text
];
+ jailbreak = true;
homepage = "http://github.com/sanetracker/serf";
description = "Interact with Serf via Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"serial" = callPackage
@@ -96540,6 +99955,7 @@ self: {
version = "0.2.6";
sha256 = "17z0pkc0nz3hf9s68spbb6ijcx6b2dw4y50cavf5110aav59kik1";
buildDepends = [ base unix ];
+ jailbreak = true;
description = "POSIX serial port wrapper";
license = "LGPL";
}) {};
@@ -96652,7 +100068,7 @@ self: {
warp
];
testDepends = [ base hspec language-ecmascript servant ];
- configureFlags = [ "-f-example" ];
+ jailbreak = true;
homepage = "http://haskell-servant.github.io/";
description = "Automatically derive (jquery) javascript functions to query servant webservices";
license = stdenv.lib.licenses.bsd3;
@@ -96683,6 +100099,7 @@ self: {
homepage = "http://github.com/zalora/servant-pool";
description = "Utility functions for creating servant 'Context's with \"context/connection pooling\" support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"servant-postgresql" = callPackage
@@ -96700,6 +100117,7 @@ self: {
homepage = "http://github.com/zalora/servant-postgresql";
description = "Useful functions and instances for using servant with a PostgreSQL context";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"servant-response" = callPackage
@@ -96729,6 +100147,7 @@ self: {
homepage = "http://github.com/zalora/servant";
description = "Generate a web service for servant 'Resource's using scotty and JSON";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"servant-server" = callPackage
@@ -96776,9 +100195,11 @@ self: {
directory hamlet http-types mime-types shakespeare-css text
transformers wai wai-app-static wai-extra warp
];
+ jailbreak = true;
homepage = "http://github.com/yesodweb/hamlet";
description = "Serve Shakespearean templates via Warp (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ses-html" = callPackage
@@ -96796,6 +100217,7 @@ self: {
];
description = "Send HTML formatted emails using Amazon's SES REST API with blaze";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ses-html-snaplet" = callPackage
@@ -96812,6 +100234,7 @@ self: {
];
description = "Snaplet for the ses-html package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sessions" = callPackage
@@ -96825,6 +100248,7 @@ self: {
homepage = "http://www.wellquite.org/sessions/";
description = "Session Types for Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"set-cover" = callPackage
@@ -96836,7 +100260,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers utility-ht ];
- configureFlags = [ "-f-buildexamples" ];
homepage = "http://code.haskell.org/~thielema/set-cover/";
description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube";
license = stdenv.lib.licenses.bsd3;
@@ -96961,9 +100384,9 @@ self: {
buildDepends = [
base base64-string binary bytestring pretty QuickCheck random
];
- configureFlags = [ "-f-testing" ];
description = "S-expression printer and parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sext" = callPackage
@@ -96973,7 +100396,6 @@ self: {
version = "0.1.0.0";
sha256 = "0vq7fbm8gm7fym9qjaxsy2mk89rn2pjfkbhv3ym94xslcybwrwpy";
buildDepends = [ base bytestring template-haskell ];
- configureFlags = [ "-fbytestring" "-f-text" ];
homepage = "http://github.com/dzhus/sext/";
description = "Lists, Texts and ByteStrings with type-encoded length";
license = stdenv.lib.licenses.bsd3;
@@ -97017,6 +100439,7 @@ self: {
base binary bytestring containers deepseq filepath lazy-io logfloat
monad-par mtl primitive random temporary vector
];
+ jailbreak = true;
homepage = "https://github.com/kawu/sgd";
description = "Stochastic gradient descent";
license = stdenv.lib.licenses.bsd3;
@@ -97034,9 +100457,11 @@ self: {
base containers encoding extensible-exceptions mtl parsec split
time transformers
];
+ jailbreak = true;
homepage = "https://github.com/tonicebrian/sgf";
description = "SGF (Smart Game Format) parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sgrep" = callPackage
@@ -97062,6 +100487,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base binary bytestring io-streams SHA ];
+ jailbreak = true;
homepage = "https://github.com/noteed/sha-streams";
description = "SHA hashes for io-streams";
license = stdenv.lib.licenses.bsd3;
@@ -97129,6 +100555,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/shady";
description = "Functional GPU programming - DSEL & compiler";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shady-graphics" = callPackage
@@ -97147,6 +100574,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/shady";
description = "Functional GPU programming - DSEL & compiler";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shake" = callPackage
@@ -97171,7 +100599,6 @@ self: {
js-flot js-jquery old-time process QuickCheck random time
transformers unix unordered-containers utf8-string
];
- configureFlags = [ "-f-portable" ];
homepage = "http://www.shakebuild.com/";
description = "Build system library, like Make, but more accurate dependencies";
license = stdenv.lib.licenses.bsd3;
@@ -97202,9 +100629,11 @@ self: {
buildDepends = [
base bytestring cmdargs directory filepath shake
];
+ jailbreak = true;
homepage = "http://thoughtpolice.github.com/shake-extras";
description = "Extra utilities for shake build systems";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shake-language-c" = callPackage
@@ -97243,9 +100672,11 @@ self: {
regex-posix template-haskell test-framework test-framework-hunit
test-framework-quickcheck2
];
+ jailbreak = true;
homepage = "http://github.com/bonnefoa/Shaker";
description = "simple and interactive command-line build tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shakespeare" = callPackage
@@ -97268,9 +100699,6 @@ self: {
exceptions ghc-prim hspec HUnit parsec process system-fileio
system-filepath template-haskell text time transformers
];
- configureFlags = [
- "-f-test_roy" "-f-test_coffee" "-f-test_export"
- ];
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
description = "A toolkit for making compile-time interpolated templates";
license = stdenv.lib.licenses.mit;
@@ -97286,6 +100714,7 @@ self: {
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
description = "Stick your haskell variables into css at compile time. (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shakespeare-i18n" = callPackage
@@ -97298,6 +100727,7 @@ self: {
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
description = "A type-based approach to internationalization. (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shakespeare-js" = callPackage
@@ -97310,6 +100740,7 @@ self: {
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
description = "Stick your haskell variables into javascript/coffeescript at compile time. (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shakespeare-text" = callPackage
@@ -97367,6 +100798,7 @@ self: {
homepage = "http://github.com/jberryman/shapely-data";
description = "Generics using @(,)@ and @Either@, with algebraic operations and typed conversions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shared-buffer" = callPackage
@@ -97384,6 +100816,7 @@ self: {
];
description = "A circular buffer built on shared memory";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shared-memory" = callPackage
@@ -97423,6 +100856,7 @@ self: {
homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she";
description = "A Haskell preprocessor adding miscellaneous features";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shell-conduit" = callPackage
@@ -97444,6 +100878,7 @@ self: {
homepage = "https://github.com/chrisdone/shell-conduit";
description = "Write shell scripts with Conduit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shell-escape" = callPackage
@@ -97481,6 +100916,7 @@ self: {
homepage = "http://gnu.rtin.bz/directory/devel/prog/other/shell-haskell.html";
description = "Pipe streams through external shell commands";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shellish" = callPackage
@@ -97570,6 +101006,7 @@ self: {
homepage = "https://github.com/yesodweb/Shelly.hs";
description = "shelly features that require extra dependencies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shivers-cfg" = callPackage
@@ -97585,6 +101022,7 @@ self: {
];
description = "Implementation of Shivers' Control-Flow Analysis";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shoap" = callPackage
@@ -97594,6 +101032,7 @@ self: {
version = "0.2";
sha256 = "0ywb8bfkdpqqv2spb92j9rzx4fv5k1c7b65wj0zwnn9rp7ckq59v";
buildDepends = [ base curl ];
+ jailbreak = true;
homepage = "http://richardfergie.com/shoap";
description = "A very basic SOAP package";
license = stdenv.lib.licenses.bsd3;
@@ -97618,6 +101057,7 @@ self: {
version = "0.1.0.1";
sha256 = "1srqbc2kx1zn0xlzv94y7kqdrflmdck3jy6d2fl75zhf11wilxw3";
buildDepends = [ base text ];
+ jailbreak = true;
homepage = "https://github.com/Tarrasch/shorten-strings";
description = "Shorten a variety of string-like types adding ellipsis";
license = stdenv.lib.licenses.bsd3;
@@ -97630,7 +101070,6 @@ self: {
version = "0.6";
sha256 = "15bvfffnr034z8wbmhxa8h5qskbxwbflk434dx023l1qlm3sjmsg";
buildDepends = [ base syb ];
- configureFlags = [ "-fbase4" ];
description = "'Show' instances for Lambdabot";
license = "GPL";
}) {};
@@ -97656,8 +101095,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base glade gtk random ];
+ jailbreak = true;
description = "A simple gtk based Russian Roulette game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shpider" = callPackage
@@ -97721,7 +101162,6 @@ self: {
array base Cabal containers directory filepath network network-uri
process uhc-util uuagc uuagc-cabal uulib
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "https://github.com/UU-ComputerScience/shuffle";
description = "Shuffle tool for UHC";
license = stdenv.lib.licenses.bsd3;
@@ -97753,10 +101193,11 @@ self: {
base cairo containers directory fgl filepath glib gtk hxt mtl
parsec process sifflet-lib unix
];
- configureFlags = [ "-f-no-link" ];
+ jailbreak = true;
homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/";
description = "A simple, visual, functional programming language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sifflet-lib" = callPackage
@@ -97772,9 +101213,11 @@ self: {
parsec process unix
];
extraLibraries = [ gdk_x11 gtk_x11 ];
+ jailbreak = true;
homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/";
description = "Library of modules shared by sifflet and its tests and its exporters";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { gdk_x11 = null; gtk_x11 = null;};
"sign" = callPackage
@@ -97829,6 +101272,7 @@ self: {
homepage = "http://github.com/mikeizbicki/simd";
description = "simple interface to GHC's SIMD instructions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simgi" = callPackage
@@ -97844,9 +101288,11 @@ self: {
buildDepends = [
base containers haskell98 mersenne-random-pure64 mtl parsec random
];
+ jailbreak = true;
homepage = "http://simgi.sourceforge.net/";
description = "stochastic simulation engine";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple" = callPackage
@@ -97871,9 +101317,11 @@ self: {
testDepends = [
base hspec HUnit monad-control mtl transformers wai
];
+ jailbreak = true;
homepage = "http://simple.cx";
description = "A minimalist web framework for the WAI server interface";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple-actors" = callPackage
@@ -97896,7 +101344,7 @@ self: {
version = "0.2";
sha256 = "1kqkaay3r03plxvvyan3hdgj2rfynygnisi6hrsjwqgj4nw6va17";
buildDepends = [ base containers deepseq ];
- configureFlags = [ "-f-debug" ];
+ jailbreak = true;
homepage = "http://github.com/nominolo/simple-atom";
description = "Atom (or symbol) datatype for fast comparision and sorting";
license = stdenv.lib.licenses.bsd3;
@@ -97912,6 +101360,7 @@ self: {
extraLibraries = [ bluetooth ];
description = "Simple Bluetooth API for Windows and Linux (bluez)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { bluetooth = null;};
"simple-c-value" = callPackage
@@ -97933,6 +101382,7 @@ self: {
homepage = "https://github.com/jfischoff/simple-c-value";
description = "A simple C value type";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple-conduit" = callPackage
@@ -97952,6 +101402,7 @@ self: {
monad-control mono-traversable mtl mwc-random primitive semigroups
stm streaming-commons text transformers transformers-base vector
];
+ jailbreak = true;
homepage = "http://github.com/jwiegley/simple-conduit";
description = "A simple streaming I/O library based on monadic folds";
license = stdenv.lib.licenses.bsd3;
@@ -97970,7 +101421,6 @@ self: {
transformers
];
testDepends = [ base hspec ];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "https://github.com/yunomu/simple-config";
description = "Simple config file parser generator";
license = stdenv.lib.licenses.bsd3;
@@ -97989,6 +101439,7 @@ self: {
];
description = "simple binding of css and html";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple-eval" = callPackage
@@ -98015,6 +101466,7 @@ self: {
homepage = "https://github.com/aleator/simple-firewire";
description = "Simplified interface for firewire cameras";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple-form" = callPackage
@@ -98043,6 +101495,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base deepseq parallel random ];
+ jailbreak = true;
homepage = "http://eax.me/haskell-genetic-algorithm/";
description = "Simple parallel genetic algorithm implementation";
license = stdenv.lib.licenses.bsd3;
@@ -98059,6 +101512,7 @@ self: {
buildDepends = [
base containers hashable safecopy unordered-containers
];
+ jailbreak = true;
description = "Allows simple indexation on any data type";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -98077,6 +101531,7 @@ self: {
MonadCatchIO-transformers mtl old-locale SafeSemaphore text time
transformers
];
+ jailbreak = true;
homepage = "http://github.com/mvoidex/simple-log";
description = "Simple log for Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -98089,9 +101544,11 @@ self: {
version = "0.2.0";
sha256 = "1619jsxgz5afmwhjcixg54i7dhh8jl29cmziifjrg60mm4rf2c34";
buildDepends = [ base hsyslog simple-log text ];
+ jailbreak = true;
homepage = "http://github.com/mvoidex/simple-log-syslog";
description = "Syslog backend for simple-log";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple-neural-networks" = callPackage
@@ -98104,6 +101561,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers deepseq parallel random split ];
+ jailbreak = true;
homepage = "http://eax.me/haskell-neural-networks/";
description = "Simple parallel neural networks implementation";
license = stdenv.lib.licenses.bsd3;
@@ -98150,6 +101608,7 @@ self: {
base bytestring lifted-base monad-control monads-tf stm
transformers-base
];
+ jailbreak = true;
homepage = "https://github.com/YoshikuniJujo/simple-pipe/wiki";
description = "simple pipeline library like conduit";
license = stdenv.lib.licenses.bsd3;
@@ -98171,6 +101630,7 @@ self: {
homepage = "http://simple.cx";
description = "Connector package for integrating postgresql-orm with the Simple web framework";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple-reflect" = callPackage
@@ -98210,7 +101670,6 @@ self: {
base bytestring conduit conduit-extra directory hspec HUnit network
process resourcet unix
];
- configureFlags = [ "-fallow-bsd" ];
description = "Cross platform library for the sendfile system call";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -98247,6 +101706,7 @@ self: {
homepage = "http://simple.cx";
description = "Cookie-based session management for the Simple web framework";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple-sessions" = callPackage
@@ -98259,14 +101719,15 @@ self: {
homepage = "http://www.eecs.harvard.edu/~tov/pubs/haskell-session-types/";
description = "A simple implementation of session types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple-smt" = callPackage
({ mkDerivation, base, process }:
mkDerivation {
pname = "simple-smt";
- version = "0.5.0";
- sha256 = "00ag8kfc7lf0lkmbrblxmz81vwd05ifnfh5wkd4s0432b9vljjmb";
+ version = "0.5.3";
+ sha256 = "0m3ghgh2ip22808cyx1babfkpj6v0ii6lmnwgrk8adaj5aif9dfg";
buildDepends = [ base process ];
description = "A simple way to interact with an SMT solver process";
license = stdenv.lib.licenses.bsd3;
@@ -98286,7 +101747,6 @@ self: {
testDepends = [
base HUnit mtl parsec pretty test-framework test-framework-hunit
];
- configureFlags = [ "-f-sqlindent" ];
homepage = "http://jakewheat.github.io/simple-sql-parser/";
description = "A parser for SQL queries";
license = stdenv.lib.licenses.bsd3;
@@ -98316,6 +101776,7 @@ self: {
version = "0.1.0.0";
sha256 = "0p7rd8y6rhwg0ap6cib7l32bglvfkvbzg938pdwpb2ss6cv8b9zs";
buildDepends = [ base ];
+ jailbreak = true;
homepage = "http://github.com/BartMassey/simple-tabular";
description = "Simple tabular-text formatter";
license = stdenv.lib.licenses.mit;
@@ -98338,6 +101799,7 @@ self: {
homepage = "http://simple.cx";
description = "A basic template language for the Simple web framework";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple-vec3" = callPackage
@@ -98347,9 +101809,11 @@ self: {
version = "0.1.0.1";
sha256 = "1vzx88drwg40a9b7dzz4nbd5faawrc15wgyd1b12zmrsysn0h6s4";
buildDepends = [ base vector ];
+ jailbreak = true;
homepage = "http://github.com/dzhus/simple-vec3/";
description = "Three-dimensional vectors of doubles with basic operations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simpleargs" = callPackage
@@ -98379,6 +101843,7 @@ self: {
homepage = "http://github.com/dom96/SimpleIRC";
description = "Simple IRC Library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simpleirc-lens" = callPackage
@@ -98392,6 +101857,7 @@ self: {
homepage = "https://github.com/relrod/simpleirc-lens";
description = "Lenses for simpleirc types";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simplenote" = callPackage
@@ -98408,6 +101874,7 @@ self: {
];
description = "Haskell interface for the simplenote API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simpleprelude" = callPackage
@@ -98423,8 +101890,10 @@ self: {
buildDepends = [
base ghc-paths haskell-src-exts process uniplate
];
+ jailbreak = true;
description = "A simplified Haskell prelude for teaching";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simplesmtpclient" = callPackage
@@ -98450,6 +101919,7 @@ self: {
homepage = "http://hub.darcs.net/thoferon/simplessh";
description = "Simple wrapper around libssh2";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { ssh2 = null;};
"simplex" = callPackage
@@ -98482,6 +101952,7 @@ self: {
homepage = "http://malde.org/~ketil/";
description = "Simulate sequencing with different models for priming and errors";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simtreelo" = callPackage
@@ -98512,9 +101983,11 @@ self: {
x11-xim X11-xshape
];
pkgconfigDepends = [ libXft ];
+ jailbreak = true;
homepage = "http://sigkill.dk/programs/sindre";
description = "A programming language for simple GUIs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.xlibs) libXft;};
"singletons" = callPackage
@@ -98541,6 +102014,7 @@ self: {
version = "0.1.0.1";
sha256 = "04ny9450h2mlw1j0gn6a1vvgwsk3gbhhzshqv2sbcg5pwkzkdrzp";
buildDepends = [ base ];
+ jailbreak = true;
description = "An alternative to lazy I/O that doesn't conflate execution with evaluation";
license = stdenv.lib.licenses.mit;
}) {};
@@ -98577,6 +102051,7 @@ self: {
];
description = "Sirkel, a Chord DHT";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sitemap" = callPackage
@@ -98616,7 +102091,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ array base containers singletons ];
- configureFlags = [ "-f-all" ];
+ jailbreak = true;
homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools";
description = "Sized types in Haskell using the GHC Nat kind";
license = stdenv.lib.licenses.bsd3;
@@ -98671,9 +102146,6 @@ self: {
testDepends = [
base bytestring cereal crypto-api filepath hspec tagged
];
- configureFlags = [
- "-f-big-endian" "-f-force-endianness" "-f-reference"
- ];
homepage = "https://github.com/meteficha/skein";
description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well.";
license = stdenv.lib.licenses.bsd3;
@@ -98690,6 +102162,7 @@ self: {
buildDepends = [
base blaze-html bytestring containers http-types text wai
];
+ jailbreak = true;
homepage = "https://github.com/pharpend/skell";
description = "An overly complex Haskell web framework";
license = stdenv.lib.licenses.bsd3;
@@ -98708,10 +102181,10 @@ self: {
attoparsec base bytestring lifted-base monad-control mtl stm text
time transformers-base word8 X11
];
- configureFlags = [ "-f-carbon" "-f-x11" ];
homepage = "https://github.com/emonkak/haskell-skype";
description = "Skype Desktop API binding for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"skypelogexport" = callPackage
@@ -98729,6 +102202,7 @@ self: {
attoparsec base bytestring containers directory filepath ghc-binary
haskell98 IfElse old-locale regex-pcre time utf8-string
];
+ jailbreak = true;
homepage = "https://github.com/jdevelop/skypelogexport/wiki";
description = "Export Skype chat logs to text files";
license = stdenv.lib.licenses.bsd3;
@@ -98747,6 +102221,7 @@ self: {
aeson base containers either http-conduit mtl old-locale text time
transformers
];
+ jailbreak = true;
description = "Haskell API for interacting with Slack";
license = stdenv.lib.licenses.mit;
}) {};
@@ -98789,6 +102264,7 @@ self: {
homepage = "https://github.com/nikita-volkov/slave-thread";
description = "A principal solution to ghost threads and silent exceptions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"slice-cpp-gen" = callPackage
@@ -98831,18 +102307,18 @@ self: {
"sloane" = callPackage
({ mkDerivation, ansi-terminal, base, bytestring, cereal
, containers, directory, download-curl, filepath, HTTP, network
- , optparse-applicative, terminal-size, text, zlib
+ , optparse-applicative, stringsearch, terminal-size, text, zlib
}:
mkDerivation {
pname = "sloane";
- version = "2.0.3";
- sha256 = "1fglx4nl8cpjs1h1cpiyg54rdrcrj8si4fayhj2c6ijksq26pfn3";
+ version = "2.0.5";
+ sha256 = "1jmnyw5n2k9c0bsdgna7hxc6yxjrycss02wjwsavbq13i7amq8i9";
isLibrary = false;
isExecutable = true;
buildDepends = [
ansi-terminal base bytestring cereal containers directory
download-curl filepath HTTP network optparse-applicative
- terminal-size text zlib
+ stringsearch terminal-size text zlib
];
postInstall = ''
mkdir -p $out/share/man/man1
@@ -98888,9 +102364,11 @@ self: {
version = "0.2.2.4";
sha256 = "16fgxsg8grxhqx6d4s3mm89qbkw2k72qvr4r701ih1i8gmf1ms1z";
buildDepends = [ base bytestring deepseq hashable ];
+ jailbreak = true;
homepage = "http://community.haskell.org/~aslatter/code/bytearray";
description = "low-level unboxed arrays, with minimal features";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smallcaps" = callPackage
@@ -98935,9 +102413,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base vector ];
+ jailbreak = true;
homepage = "http://github.com/noteed/smallpt-hs";
description = "A Haskell port of the smallpt path tracer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smallstring" = callPackage
@@ -98951,9 +102431,11 @@ self: {
buildDepends = [
base bytestring deepseq hashable smallarray text utf8-string
];
+ jailbreak = true;
homepage = "http://community.haskell.org/~aslatter/code/smallstring/";
description = "A Unicode text type, optimized for low memory overhead";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smartGroup" = callPackage
@@ -98966,6 +102448,7 @@ self: {
homepage = "http://patch-tag.com/r/salazar/smartGroup";
description = "group strings or bytestrings by words in common";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smartcheck" = callPackage
@@ -98981,7 +102464,6 @@ self: {
buildDepends = [
base containers generic-deriving ghc-prim mtl QuickCheck random
];
- configureFlags = [ "-f-regression-flag" ];
homepage = "https://github.com/leepike/SmartCheck";
description = "A smarter QuickCheck";
license = stdenv.lib.licenses.bsd3;
@@ -98999,6 +102481,7 @@ self: {
homepage = "http://kyagrd.dyndns.org/~kyagrd/project/smartword/";
description = "Web based flash card for Word Smart I and II vocabularies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sme" = callPackage
@@ -99019,9 +102502,11 @@ self: {
version = "0.0.2";
sha256 = "1phm50pabahrpxrzp25mfhpafzhp4hz8cxp6fp93rwh4cl7cckky";
buildDepends = [ array base directory polyparse ];
+ jailbreak = true;
homepage = "http://tomahawkins.org";
description = "Parsing and printing SMT-LIB";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smtLib" = callPackage
@@ -99049,9 +102534,9 @@ self: {
constraints containers data-fix mtl process tagged text
transformers
];
- configureFlags = [ "-f-withdatakinds" "-fwithconstraints" ];
description = "A type-safe interface to communicate with an SMT solver";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smtp-mail" = callPackage
@@ -99083,6 +102568,7 @@ self: {
homepage = "https://github.com/singpolyma/sock2stream";
description = "Listen for SMTP traffic and send it to an MTA script";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smtps-gmail" = callPackage
@@ -99140,7 +102626,6 @@ self: {
stm syb template-haskell text time transformers
unordered-containers vector vector-algorithms xmlhtml
];
- configureFlags = [ "-f-old-base" ];
homepage = "http://snapframework.com/";
description = "Top-level package for the Snap Web Framework";
license = stdenv.lib.licenses.bsd3;
@@ -99153,9 +102638,11 @@ self: {
version = "0.1.0";
sha256 = "19sn7q9avb7y9j46fk7iga237qgcdm69sanb351c5s0lfgcpnf1m";
buildDepends = [ base http-media snap-core ];
+ jailbreak = true;
homepage = "http://github.com/zimothy/snap-accept";
description = "Accept header branching for the Snap web framework";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snap-app" = callPackage
@@ -99166,6 +102653,7 @@ self: {
sha256 = "1v3izzvxadjplir47ipi087sj6fcmfj5ivlhbkpp9ld7vj8sv2hi";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snap-auth-cli" = callPackage
@@ -99183,6 +102671,7 @@ self: {
aeson aeson-pretty base bytestring clientsession cmdargs snap text
unordered-containers utf8-string
];
+ jailbreak = true;
homepage = "https://github.com/dzhus/snap-auth-cli";
description = "Command-line tool to manage Snap AuthManager database";
license = stdenv.lib.licenses.bsd3;
@@ -99207,6 +102696,7 @@ self: {
version = "0.1.0.0";
sha256 = "05zi9rjd37xznjj8yhm5har12mfrclsrwd9fbcwh5ngccd7h7fiy";
buildDepends = [ base blaze-html clay snap-core ];
+ jailbreak = true;
homepage = "http://github.com/deckool/snap-blaze-clay";
description = "blaze-html-clay integration for Snap";
license = stdenv.lib.licenses.bsd3;
@@ -99242,7 +102732,6 @@ self: {
hashable HUnit MonadCatchIO-transformers mtl random regex-posix
text time unix unix-compat unordered-containers vector zlib-enum
];
- configureFlags = [ "-f-debug" "-f-portable" ];
homepage = "http://snapframework.com/";
description = "Snap: A Haskell Web Framework (core interfaces and types)";
license = stdenv.lib.licenses.bsd3;
@@ -99261,7 +102750,6 @@ self: {
attoparsec base bytestring case-insensitive hashable network
network-uri snap text transformers unordered-containers
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://github.com/ocharles/snap-cors";
description = "Add CORS headers to Snap applications";
license = stdenv.lib.licenses.bsd3;
@@ -99281,6 +102769,7 @@ self: {
];
description = "Serve Elm files through the Snap web framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snap-error-collector" = callPackage
@@ -99318,8 +102807,10 @@ self: {
digestive-functors-snap directory-tree errors filepath heist jmacro
mtl readable safe snap snap-core text transformers xmlhtml
];
+ jailbreak = true;
description = "A collection of useful helpers and utilities for Snap web applications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snap-loader-dynamic" = callPackage
@@ -99393,9 +102884,7 @@ self: {
enumerator HsOpenSSL MonadCatchIO-transformers mtl network
old-locale snap-core text time unix unix-compat
];
- configureFlags = [
- "-fopenssl" "-f-debug" "-fopenssl" "-f-portable"
- ];
+ configureFlags = [ "-fopenssl" ];
homepage = "http://snapframework.com/";
description = "A fast, iteratee-based, epoll-enabled web server for the Snap Framework";
license = stdenv.lib.licenses.bsd3;
@@ -99420,6 +102909,7 @@ self: {
hxt io-streams lens mtl process QuickCheck snap snap-core text
transformers
];
+ jailbreak = true;
homepage = "https://github.com/dbp/snap-testing";
description = "A library for BDD-style testing with the Snap Web Framework";
license = stdenv.lib.licenses.bsd3;
@@ -99437,9 +102927,11 @@ self: {
base bytestring heist http-types MonadCatchIO-transformers mtl snap
snap-core text xmlhtml
];
+ jailbreak = true;
homepage = "https://github.com/LukeHoersten/snap-utils";
description = "Snap Framework utilities";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snap-web-routes" = callPackage
@@ -99453,6 +102945,7 @@ self: {
buildDepends = [
base bytestring heist mtl snap snap-core text web-routes xmlhtml
];
+ jailbreak = true;
homepage = "https://github.com/lukerandall/snap-web-routes";
description = "Type safe URLs for Snap";
license = stdenv.lib.licenses.bsd3;
@@ -99465,6 +102958,7 @@ self: {
version = "0.2.6.1";
sha256 = "0wlawnsxisslqzspa29swsdmncgx04z3rd1bhwx73mx5pksykw60";
buildDepends = [ acid-state base snap text ];
+ jailbreak = true;
homepage = "https://github.com/mightybyte/snaplet-acid-state";
description = "acid-state snaplet for Snap Framework";
license = stdenv.lib.licenses.bsd3;
@@ -99489,9 +102983,11 @@ self: {
restful-snap snap snap-extras snaplet-persistent text time
transformers unordered-containers xmlhtml
];
+ jailbreak = true;
homepage = "https://github.com/soostone/snaplet-actionlog";
description = "Generic action log snaplet for the Snap Framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-amqp" = callPackage
@@ -99506,9 +103002,11 @@ self: {
amqp base bytestring configurator lens monad-control mtl network
resource-pool snap transformers
];
+ jailbreak = true;
homepage = "https://github.com/ixmatus/snaplet-amqp";
description = "Snap framework snaplet for the AMQP library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-auth-acid" = callPackage
@@ -99526,8 +103024,10 @@ self: {
errors filepath hashable lens MonadCatchIO-transformers mtl
safecopy snap snap-core text time unordered-containers vector
];
+ jailbreak = true;
description = "Provides an Acid-State backend for the Auth Snaplet";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-coffee" = callPackage
@@ -99576,8 +103076,10 @@ self: {
base bson configurator mtl regex-tdfa snap snap-core text
unordered-containers
];
+ jailbreak = true;
description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-fay" = callPackage
@@ -99595,6 +103097,7 @@ self: {
homepage = "https://github.com/faylang/snaplet-fay";
description = "Fay integration for Snap with request- and pre-compilation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-haxl" = callPackage
@@ -99608,6 +103111,7 @@ self: {
buildDepends = [
base haxl MonadCatchIO-transformers snap transformers
];
+ jailbreak = true;
homepage = "https://github.com/ChristopherBiscardi/snaplet-haxl";
description = "Snaplet for Facebook's Haxl";
license = stdenv.lib.licenses.bsd3;
@@ -99629,9 +103133,11 @@ self: {
resource-pool-catchio snap text time transformers
unordered-containers
];
+ jailbreak = true;
homepage = "http://norm2782.com/";
description = "HDBC snaplet for Snap Framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-hslogger" = callPackage
@@ -99645,6 +103151,7 @@ self: {
buildDepends = [
base configurator hslogger mtl snap transformers
];
+ jailbreak = true;
homepage = "https://github.com/ixmatus/snaplet-logger";
description = "Snap framework snaplet for the Logger API library";
license = stdenv.lib.licenses.bsd3;
@@ -99664,9 +103171,11 @@ self: {
base bytestring configurator filepath heist lens snap
snap-loader-static text xmlhtml
];
+ jailbreak = true;
homepage = "https://github.com/HaskellCNOrg/snaplet-i18n";
description = "snaplet-i18n";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-influxdb" = callPackage
@@ -99682,6 +103191,7 @@ self: {
base bytestring configurator http-client influxdb lens
monad-control mtl network snap text transformers
];
+ jailbreak = true;
homepage = "https://github.com/ixmatus/snaplet-influxdb";
description = "Snap framework snaplet for the InfluxDB library";
license = stdenv.lib.licenses.bsd3;
@@ -99715,6 +103225,7 @@ self: {
buildDepends = [
base configurator mandrill mtl network snap transformers
];
+ jailbreak = true;
homepage = "https://github.com/ixmatus/snaplet-mandrill";
description = "Snap framework snaplet for the Mandrill API library";
license = stdenv.lib.licenses.bsd3;
@@ -99735,8 +103246,10 @@ self: {
MonadCatchIO-transformers mongoDB mtl parsec regular safe snap
snap-core template-haskell text time
];
+ jailbreak = true;
description = "Snap Framework MongoDB support as Snaplet";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-mongodb-minimalistic" = callPackage
@@ -99747,9 +103260,11 @@ self: {
version = "0.0.6.12";
sha256 = "0d0hnn0qp4zd453wzh1d3adls68gpv28dnkr7dcmjfl4f5igdran";
buildDepends = [ base lens mongoDB mtl snap text transformers ];
+ jailbreak = true;
homepage = "https://github.com/Palmik/snaplet-mongodb-minimalistic";
description = "Minimalistic MongoDB Snaplet";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-mysql-simple" = callPackage
@@ -99767,9 +103282,11 @@ self: {
MonadCatchIO-transformers mtl mysql mysql-simple
resource-pool-catchio snap text transformers unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/ibotty/snaplet-mysql-simple";
description = "mysql-simple snaplet for the Snap Framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-oauth" = callPackage
@@ -99793,9 +103310,11 @@ self: {
aeson base bytestring bytestring-show HUnit test-framework
test-framework-hunit text
];
+ jailbreak = true;
homepage = "https://github.com/HaskellCNOrg/snaplet-oauth";
description = "snaplet-oauth";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-persistent" = callPackage
@@ -99815,9 +103334,11 @@ self: {
persistent-postgresql persistent-template readable resource-pool
resourcet safe snap text time transformers unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/soostone/snaplet-persistent";
description = "persistent snaplet for the Snap Framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-postgresql-simple" = callPackage
@@ -99851,11 +103372,28 @@ self: {
buildDepends = [
base configurator mtl postmark snap text transformers
];
+ jailbreak = true;
homepage = "https://github.com/LukeHoersten/snaplet-postmark";
description = "Postmark snaplet for the Snap Framework";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "snaplet-purescript" = callPackage
+ ({ mkDerivation, base, configurator, mtl, raw-strings-qq, shelly
+ , snap, snap-core, text
+ }:
+ mkDerivation {
+ pname = "snaplet-purescript";
+ version = "0.1.0.0";
+ sha256 = "04p1k9rrqn1y25fxdz15lgg43y2q5nd9q5r73qv27v3gn1qsr9y0";
+ buildDepends = [
+ base configurator mtl raw-strings-qq shelly snap snap-core text
+ ];
+ jailbreak = true;
+ description = "Automatic (re)compilation of purescript projects";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"snaplet-recaptcha" = callPackage
({ mkDerivation, aeson, base, blaze-builder, bytestring
, configurator, heist, http-conduit, lens
@@ -99885,6 +103423,7 @@ self: {
buildDepends = [
base configurator hedis lens mtl network snap text transformers
];
+ jailbreak = true;
homepage = "https://github.com/dzhus/snaplet-redis/";
description = "Redis support for Snap Framework";
license = stdenv.lib.licenses.bsd3;
@@ -99905,9 +103444,11 @@ self: {
data-lens-template easy-file hedis mtl snap snap-core snaplet-redis
text utf8-string websockets websockets-snap
];
+ jailbreak = true;
homepage = "https://github.com/dzhus/snaplet-redson/";
description = "CRUD for JSON data with Redis storage";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-rest" = callPackage
@@ -99923,9 +103464,11 @@ self: {
aeson base blaze-builder bytestring case-insensitive http-media
lens mtl snap snap-accept snap-core text utf8-string xmlhtml
];
+ jailbreak = true;
homepage = "http://github.com/zimothy/snaplet-rest";
description = "REST resources for the Snap web framework";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-riak" = callPackage
@@ -99941,6 +103484,7 @@ self: {
aeson base containers data-lens data-lens-template mtl riak
riak-protobuf snap snap-core time transformers
];
+ jailbreak = true;
homepage = "http://github.com/statusfailed/snaplet-riak";
description = "A Snaplet for the Riak database";
license = stdenv.lib.licenses.mit;
@@ -99958,6 +103502,7 @@ self: {
base bytestring configurator directory filepath mtl process snap
snap-core transformers
];
+ jailbreak = true;
homepage = "https://github.com/lukerandall/snaplet-sass";
description = "Sass integration for Snap with request- and pre-compilation";
license = stdenv.lib.licenses.bsd3;
@@ -99975,8 +103520,10 @@ self: {
base bytestring containers monad-control mtl resource-pool
sednaDBXML snap
];
+ jailbreak = true;
description = "Snaplet for Sedna Bindings. Essentailly a rip of snaplet-hdbc.";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-ses-html" = callPackage
@@ -99993,6 +103540,7 @@ self: {
];
description = "Snaplet for the ses-html package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-sqlite-simple" = callPackage
@@ -100036,6 +103584,7 @@ self: {
base bytestring configurator heist lens-family-core mtl snap stripe
text text-format transformers xmlhtml
];
+ jailbreak = true;
homepage = "https://github.com/LukeHoersten/snaplet-stripe";
description = "Stripe snaplet for the Snap Framework";
license = stdenv.lib.licenses.bsd3;
@@ -100053,8 +103602,10 @@ self: {
base bytestring containers curl data-hash haskell98 MissingH mtl
network snap snap-core
];
+ jailbreak = true;
description = "Snaplet for Snap Framework enabling developers to administrative tasks akin to Rake tasks from Ruby On Rails framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snaplet-typed-sessions" = callPackage
@@ -100070,6 +103621,7 @@ self: {
base bytestring cereal clientsession containers hashtables mtl
PSQueue random regex-posix snap snap-core time
];
+ jailbreak = true;
description = "Typed session snaplets and continuation-based programming for the Snap web framework";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -100091,6 +103643,7 @@ self: {
homepage = "http://github.com/bos/snappy";
description = "Bindings to the Google Snappy library for fast compression/decompression";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) snappy;};
"snappy-framing" = callPackage
@@ -100103,6 +103656,7 @@ self: {
homepage = "https://github.com/kim/snappy-framing";
description = "Snappy Framing Format in Haskell";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snappy-iteratee" = callPackage
@@ -100115,6 +103669,7 @@ self: {
homepage = "http://github.com/iand675/snappy-iteratee";
description = "An enumeratee that uses Google's snappy compression library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sndfile-enumerators" = callPackage
@@ -100131,10 +103686,11 @@ self: {
listlike-instances MonadCatchIO-transformers transformers vector
word24
];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://www.tiresiaspress.us/haskell/sndfile-enumerators";
description = "Audio file reading/writing";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snippet-extractor" = callPackage
@@ -100167,6 +103723,7 @@ self: {
homepage = "http://github.com/elginer/snm";
description = "The Simple Nice-Looking Manual Generator";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snmp" = callPackage
@@ -100198,6 +103755,7 @@ self: {
homepage = "http://github.com/nfjinjing/snow-white";
description = "encode any binary instance to white space";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"snowball" = callPackage
@@ -100243,6 +103801,7 @@ self: {
buildDepends = [
base bytestring containers gl-capture GLUT OpenGL OpenGLRaw random
];
+ jailbreak = true;
description = "randomized fractal snowflakes demo";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -100267,9 +103826,11 @@ self: {
base bytestring hspec HUnit text unordered-containers xml-conduit
xml-conduit-writer
];
+ jailbreak = true;
homepage = "https://bitbucket.org/dpwiz/haskell-soap";
description = "SOAP client tools";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"soap-openssl" = callPackage
@@ -100284,9 +103845,11 @@ self: {
base configurator data-default HsOpenSSL http-client
http-client-openssl soap text
];
+ jailbreak = true;
homepage = "https://bitbucket.org/dpwiz/haskell-soap";
description = "TLS-enabled SOAP transport (using openssl bindings)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"soap-tls" = callPackage
@@ -100302,9 +103865,11 @@ self: {
base configurator connection data-default http-client
http-client-tls soap text tls x509 x509-store x509-validation
];
+ jailbreak = true;
homepage = "https://bitbucket.org/dpwiz/haskell-soap";
description = "TLS-enabled SOAP transport (using tls package)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sock2stream" = callPackage
@@ -100323,6 +103888,7 @@ self: {
homepage = "https://github.com/singpolyma/sock2stream";
description = "Tunnel a socket over a single datastream (stdin/stdout)";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sockaddr" = callPackage
@@ -100388,8 +103954,10 @@ self: {
test-framework-hunit test-framework-quickcheck2 text
transformers-base unordered-containers vector wai warp
];
+ jailbreak = true;
description = "Socket.IO server";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"socks" = callPackage
@@ -100422,9 +103990,11 @@ self: {
version = "0.12.1";
sha256 = "01f49hwxc5h85iwzgnddxlh1lmb3s27zddmghxrlq958gcrr2iar";
buildDepends = [ base cairo gtk old-time stm ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/gtk2hs/";
description = "GUI functions as used in the book \"The Haskell School of Expression\"";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"som" = callPackage
@@ -100443,6 +104013,7 @@ self: {
homepage = "https://github.com/mhwombat/som";
description = "Self-Organising Maps";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sonic-visualiser" = callPackage
@@ -100461,6 +104032,7 @@ self: {
homepage = "http://darcs.k-hornz.de/cgi-bin/darcsweb.cgi?r=sonic-visualiser;a=summary";
description = "Sonic Visualiser";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sophia" = callPackage
@@ -100475,6 +104047,7 @@ self: {
testDepends = [
base bindings-sophia bytestring directory tasty tasty-hunit
];
+ jailbreak = true;
description = "Bindings to Sophia library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -100502,8 +104075,10 @@ self: {
version = "0.0.1";
sha256 = "0rzcxhzc4s4sbdnysmjh1i8pd39jyx7a4hbhkarsp2qbx29s4h03";
buildDepends = [ base ];
+ jailbreak = true;
description = "Efficient, type-safe sorted sequences";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sorty" = callPackage
@@ -100515,7 +104090,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring ];
- configureFlags = [ "-f-debug" ];
+ jailbreak = true;
description = "Sort lines per file size";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -100540,6 +104115,7 @@ self: {
];
description = "Approximate a song from other pieces of sound";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sounddelay" = callPackage
@@ -100577,6 +104153,7 @@ self: {
homepage = "http://github.com/nfjinjing/source-code-server";
description = "The server backend for the source code iPhone app";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sourcemap" = callPackage
@@ -100613,6 +104190,7 @@ self: {
homepage = "https://github.com/msiegenthaler/SouSiT";
description = "Source/Sink/Transform: An alternative to lazy IO and iteratees";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sox" = callPackage
@@ -100628,7 +104206,6 @@ self: {
base containers explicit-exception extensible-exceptions process
sample-frame transformers unix utility-ht
];
- configureFlags = [ "-f-executeshell" "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Sox";
description = "Play, write, read, convert audio signals using Sox";
license = "GPL";
@@ -100651,6 +104228,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Sox";
description = "Write, read, convert audio signals using libsox";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) sox;};
"soyuz" = callPackage
@@ -100667,10 +104245,10 @@ self: {
base bytestring cereal cmdargs containers pretty QuickCheck
trifecta uniplate vector
];
- configureFlags = [ "-fsplit-base" ];
homepage = "https://github.com/amtal/0x10c";
description = "DCPU-16 architecture utilities for Notch's 0x10c game";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"spacefill" = callPackage
@@ -100693,6 +104271,7 @@ self: {
version = "0.1.0.0";
sha256 = "118wch92ix54jp1hi4qw9mk46571lnak4df8ji83bs2vz3vax6jp";
buildDepends = [ base vector-space ];
+ jailbreak = true;
homepage = "http://code.haskell.org/data-spacepart";
description = "Space partition data structures. Currently only a QuadTree.";
license = stdenv.lib.licenses.bsd3;
@@ -100719,13 +104298,11 @@ self: {
test-framework test-framework-quickcheck2 test-framework-th
transformers vector
];
- configureFlags = [
- "-f-llvm" "-foptimize" "-ftest-hlint" "-ftest-doctests"
- "-ftest-properties"
- ];
+ jailbreak = true;
homepage = "http://github.com/ekmett/sparse";
description = "A playground of sparse linear algebra primitives using Morton ordering";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sparse-lin-alg" = callPackage
@@ -100756,6 +104333,7 @@ self: {
homepage = "http://kyagrd.dyndns.org/wiki/SparseBitmapsForPatternMatchCoverage";
description = "Sparse bitmaps for pattern match coverage";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sparsecheck" = callPackage
@@ -100795,6 +104373,7 @@ self: {
homepage = "http://github.com/nfjinjing/spata";
description = "brainless form validation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"spatial-math" = callPackage
@@ -100840,8 +104419,10 @@ self: {
version = "1.0.0.1";
sha256 = "0c68af104qxn9lhzshcy9s466q10n3ic7q4navqi53mmmmznivrd";
buildDepends = [ base mtl ];
+ jailbreak = true;
description = "Control.Applicative, Data.Foldable, Data.Traversable (compatibility package)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"special-keys" = callPackage
@@ -100886,6 +104467,7 @@ self: {
homepage = "https://github.com/jfischoff/specialize-th";
description = "Create specialized types from polymorphic ones using TH";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"species" = callPackage
@@ -100900,9 +104482,11 @@ self: {
base containers multiset-comb np-extras numeric-prelude
template-haskell
];
+ jailbreak = true;
homepage = "http://www.cis.upenn.edu/~byorgey/species";
description = "Computational combinatorial species";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"speculation" = callPackage
@@ -100912,7 +104496,6 @@ self: {
version = "1.5.0.1";
sha256 = "1kjshccmfnigb2dxq0czn3c1ckdflz6bl1q60h38qp3rc7250ml0";
buildDepends = [ base ghc-prim stm transformers ];
- configureFlags = [ "-foptimize" ];
homepage = "http://github.com/ekmett/speculation";
description = "A framework for safe, programmable, speculative parallelism";
license = stdenv.lib.licenses.bsd3;
@@ -100928,6 +104511,7 @@ self: {
homepage = "http://github.com/ekmett/speculation/";
description = "Merged into 'speculation'. Use that instead.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"spelling-suggest" = callPackage
@@ -100943,7 +104527,6 @@ self: {
buildDepends = [
base edit-distance parseargs phonetic-code sqlite
];
- configureFlags = [ "-fdebug" ];
homepage = "https://github.com/gregwebs/haskell-spell-suggest";
description = "Spelling suggestion tool with library and command-line interfaces";
license = stdenv.lib.licenses.bsd3;
@@ -100960,8 +104543,10 @@ self: {
buildDepends = [
base bytestring cereal containers mtl simple-bluetooth
];
+ jailbreak = true;
description = "Orbotix Sphero client library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sphinx" = callPackage
@@ -100976,7 +104561,6 @@ self: {
base binary bytestring data-binary-ieee754 network text text-icu
xml
];
- configureFlags = [ "-f-version-1-1-beta" ];
homepage = "https://github.com/gregwebs/haskell-sphinx-client";
description = "Haskell bindings to the Sphinx full-text searching daemon";
license = stdenv.lib.licenses.bsd3;
@@ -100993,6 +104577,7 @@ self: {
buildDepends = [ base sphinx ];
description = "Sphinx CLI and demo of Haskell Sphinx library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"spice" = callPackage
@@ -101007,6 +104592,7 @@ self: {
base bytestring containers data-default elerea GLFW JuicyPixels
JuicyPixels-repa OpenGL
];
+ jailbreak = true;
homepage = "http://github.com/crockeo/spice";
description = "An FRP-based game engine written in Haskell";
license = stdenv.lib.licenses.mit;
@@ -101028,9 +104614,11 @@ self: {
process random rosezipper stm webkit
];
pkgconfigDepends = [ libsoup ];
+ jailbreak = true;
homepage = "http://github.com/Tener/spike";
description = "Experimental web browser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) libsoup;};
"spine" = callPackage
@@ -101070,7 +104658,6 @@ self: {
version = "0.6.1.1";
sha256 = "0lsfkm4vfipzbnqpf3yli6fwrv5a5mwbs149dfzhs7spa9kbxyl1";
buildDepends = [ base network ];
- configureFlags = [ "-f-llvm" "-fportable" ];
homepage = "http://corsis.github.com/splice/";
description = "Cross-platform Socket to Socket Data Splicing";
license = stdenv.lib.licenses.bsd3;
@@ -101091,6 +104678,7 @@ self: {
];
description = "B-Splines, other splines, and NURBS";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"split" = callPackage
@@ -101134,6 +104722,7 @@ self: {
homepage = "http://code.haskell.org/~thielema/split-record/";
description = "Split a big audio file into pieces at positions of silence";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"split-tchan" = callPackage
@@ -101159,6 +104748,7 @@ self: {
homepage = "https://bitbucket.org/robertmassaioli/splitter";
description = "Use numerical ranges to split out certain lines from a file";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"splot" = callPackage
@@ -101176,7 +104766,6 @@ self: {
base bytestring bytestring-lexing cairo colour containers HUnit mtl
strptime template-haskell time vcs-revision
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Splot";
description = "A tool for visualizing the lifecycle of many concurrent multi-staged processes";
license = stdenv.lib.licenses.bsd3;
@@ -101221,6 +104810,7 @@ self: {
homepage = "http://github.com/elginer/SpoonUtilities";
description = "Spoon's utilities. Simple testing and nice looking error reporting.";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"spoty" = callPackage
@@ -101235,6 +104825,7 @@ self: {
aeson base bytestring lens lens-aeson pipes text
unordered-containers wreq
];
+ jailbreak = true;
homepage = "https://github.com/davnils/spoty";
description = "Spotify web API wrapper";
license = stdenv.lib.licenses.bsd3;
@@ -101250,7 +104841,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base explicit-exception transformers utility-ht ];
- configureFlags = [ "-fsplitbase" "-f-buildexamples" ];
homepage = "http://www.haskell.org/haskellwiki/Spreadsheet";
description = "Read and write spreadsheets from and to CSV files in a lazy way";
license = stdenv.lib.licenses.bsd3;
@@ -101263,6 +104853,7 @@ self: {
version = "0.1.0.0";
sha256 = "1syv2l0z7c2s6bbi5103i4var40j8pavahiic813v8m9s6waa4fk";
buildDepends = [ base lens mtl vector ];
+ jailbreak = true;
homepage = "https://github.com/relrod/spritz";
description = "An implementation of the Spritz RC4-like stream cipher in Haskell";
license = stdenv.lib.licenses.bsd2;
@@ -101281,7 +104872,6 @@ self: {
base hmatrix HUnit QuickCheck random test-framework
test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/yanatan16/haskell-spsa";
description = "Simultaneous Perturbation Stochastic Approximation Optimization Algorithm";
license = stdenv.lib.licenses.mit;
@@ -101308,7 +104898,6 @@ self: {
process QuickCheck system-filepath test-framework
test-framework-hunit test-framework-quickcheck2 time unix
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://bitbucket.org/ssaasen/spy";
description = "A compact file system watcher for Mac OS X, Linux and Windows";
license = stdenv.lib.licenses.bsd3;
@@ -101326,9 +104915,11 @@ self: {
base containers exceptions monad-control text transformers
transformers-base
];
+ jailbreak = true;
homepage = "https://github.com/philopon/sql-simple";
description = "common middle-level sql client";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sql-simple-mysql" = callPackage
@@ -101342,9 +104933,11 @@ self: {
buildDepends = [
base data-default-class mysql mysql-simple sql-simple text
];
+ jailbreak = true;
homepage = "https://github.com/philopon/sql-simple";
description = "mysql backend for sql-simple";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sql-simple-pool" = callPackage
@@ -101359,9 +104952,11 @@ self: {
base data-default-class monad-control resource-pool sql-simple text
time
];
+ jailbreak = true;
homepage = "https://github.com/philopon/sql-simple";
description = "conection pool for sql-simple";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sql-simple-postgresql" = callPackage
@@ -101375,9 +104970,11 @@ self: {
buildDepends = [
base data-default-class postgresql-simple sql-simple text
];
+ jailbreak = true;
homepage = "https://github.com/philopon/sql-simple";
description = "postgresql backend for sql-simple";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sql-simple-sqlite" = callPackage
@@ -101390,6 +104987,7 @@ self: {
homepage = "https://github.com/philopon/sql-simple";
description = "sqlite backend for sql-simple";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sql-words" = callPackage
@@ -101403,6 +105001,7 @@ self: {
homepage = "http://khibino.github.io/haskell-relational-record/";
description = "Simple idea SQL keywords data constructor into OverloadedString";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sqlite" = callPackage
@@ -101417,7 +105016,6 @@ self: {
base bytestring directory pretty time utf8-string
];
extraLibraries = [ sqlite ];
- configureFlags = [ "-f-builtin-sqlite3" ];
description = "Haskell binding to sqlite3";
license = stdenv.lib.licenses.bsd3;
}) { inherit (pkgs) sqlite;};
@@ -101458,6 +105056,7 @@ self: {
homepage = "https://github.com/tolysz/sqlite-simple-typed";
description = "Typed extension to sqlite simple";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sqlvalue-list" = callPackage
@@ -101485,10 +105084,10 @@ self: {
base Cabal directory factory filepath mtl QuickCheck random
toolshed unix
];
- configureFlags = [ "-fthreaded" "-f-llvm" ];
homepage = "http://functionalley.eu";
description = "A file-packing application";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"srcinst" = callPackage
@@ -101507,6 +105106,7 @@ self: {
];
description = "Build and install Debian packages completely from source";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"srcloc" = callPackage
@@ -101566,9 +105166,11 @@ self: {
crypto-api crypto-pubkey-types cryptohash-cryptoapi HsOpenSSL
network process random RSA SHA SimpleAES split transformers
];
+ jailbreak = true;
homepage = "http://hub.darcs.net/simon/ssh";
description = "A pure-Haskell SSH server library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sshtun" = callPackage
@@ -101608,10 +105210,11 @@ self: {
data-default http-conduit http-types mtl network-conduit text wai
wai-extra warp
];
- configureFlags = [ "-f-no-cli" ];
+ jailbreak = true;
homepage = "http://github.com/erudify/sssp/";
description = "HTTP proxy for S3";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sstable" = callPackage
@@ -101628,9 +105231,9 @@ self: {
array base binary bytestring cmdargs containers deepseq directory
iteratee
];
- configureFlags = [ "-f-tests" ];
description = "SSTables in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ssv" = callPackage
@@ -101666,6 +105269,7 @@ self: {
version = "0.2.4";
sha256 = "1mm3j63qaq12bdpn134j7jxzrikk9rawfd559xdkxkayq83z52i8";
buildDepends = [ base ghc-prim hashtables tagged ];
+ jailbreak = true;
description = "Memoization based on argument identity";
license = stdenv.lib.licenses.mit;
}) {};
@@ -101689,9 +105293,11 @@ self: {
base bytestring bytestring-arbitrary cereal containers mtl objectid
QuickCheck tasty tasty-quickcheck text
];
+ jailbreak = true;
homepage = "https://github.com/tsuraan/stable-tree";
description = "Trees whose branches are resistant to change";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stack-prism" = callPackage
@@ -101756,9 +105362,11 @@ self: {
buildDepends = [
base Cabal containers directory filepath optparse-applicative
];
+ jailbreak = true;
homepage = "http://documentup.com/feuerbach/standalone-haddock";
description = "Generate standalone haddock documentation for a set of packages";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"star-to-star" = callPackage
@@ -101790,6 +105398,7 @@ self: {
version = "0.3.0";
sha256 = "0i0f19k2b5y6vb0jngqwnf035csgiaqjgiw37wvj8vs2lbh907bp";
buildDepends = [ base binary bytestring failure transformers ];
+ jailbreak = true;
homepage = "http://community.haskell.org/~aslatter/starling";
description = "A memcached client";
license = stdenv.lib.licenses.bsd3;
@@ -101812,6 +105421,7 @@ self: {
homepage = "http://github.com/anttisalonen/starrover2";
description = "Space simulation game";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"state" = callPackage
@@ -101821,6 +105431,7 @@ self: {
version = "0.1";
sha256 = "0j5hbh0rkcwfigvskmgb0hql95qs0cjbys61c6sni2hc719bshx6";
buildDepends = [ arrows base mtl ];
+ jailbreak = true;
description = "Data.State";
license = "LGPL";
}) {};
@@ -101894,7 +105505,6 @@ self: {
version = "0.3";
sha256 = "0hdpw6g255lj7jjvgqwhjdpzmka546vda5qjvry8gjj6nfm91lvx";
buildDepends = [ base mtl stm ];
- configureFlags = [ "-fusetmvar" "-fusestm" ];
homepage = "http://code.haskell.org/~mokus/stateref/";
description = "Abstraction for things that work like IORef";
license = stdenv.lib.licenses.publicDomain;
@@ -101918,6 +105528,7 @@ self: {
version = "0.1.1";
sha256 = "05clniwqk4i3zz22jzbjj2x9cgkxb2ks7mccjyp3gyy4zbm2xlmz";
buildDepends = [ applicative base transformers ];
+ jailbreak = true;
description = "The ST monad and STRefs";
license = stdenv.lib.licenses.bsd3;
broken = true;
@@ -101936,6 +105547,7 @@ self: {
homepage = "http://github.com/brendanhay/statgrab";
description = "Collect system level metrics and statistics";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { statgrab = null;};
"static-hash" = callPackage
@@ -102016,8 +105628,10 @@ self: {
buildDepends = [
base deepseq hmatrix-special nonlinear-optimization vector
];
+ jailbreak = true;
description = "Functions for working with Dirichlet densities and mixtures on vectors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"statistics-fusion" = callPackage
@@ -102030,6 +105644,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/statistics-fusion";
description = "An implementation of high performance, minimal statistics functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"statistics-linreg" = callPackage
@@ -102057,6 +105672,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base statistics text vector ];
+ jailbreak = true;
homepage = "http://github.com/cheecheeo/stats/";
description = "command line statistics";
license = stdenv.lib.licenses.gpl3;
@@ -102073,6 +105689,7 @@ self: {
buildDepends = [
base bytestring monad-control mtl network random
];
+ jailbreak = true;
homepage = "https://github.com/mitchellwrosen/statsd-haskell";
description = "StatsD API";
license = stdenv.lib.licenses.gpl3;
@@ -102096,7 +105713,6 @@ self: {
version = "0.2.1";
sha256 = "1mx6i5q56wy13fvpnypb2c6fk2z3i5xdfblkpazzc70p2dgxaf52";
buildDepends = [ base bitmap bytestring ];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "A wrapper around Sean Barrett's JPEG/PNG decoder";
license = stdenv.lib.licenses.publicDomain;
@@ -102109,10 +105725,10 @@ self: {
version = "0.1.2";
sha256 = "1hbbi7hax5fw5zb7ashfs5paixqzqrrr64lwisda80dskdazld4m";
buildDepends = [ array base bytestring containers ];
- configureFlags = [ "-fbase4" "-fsplitbase" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "A wrapper around Sean Barrett's TrueType rasterizer library";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stdata" = callPackage
@@ -102122,6 +105738,7 @@ self: {
version = "0.0.4";
sha256 = "0ijir2knl4vc1cpzzmf32wcjfdc958li1wd7w5vdmgk4bx45kybf";
buildDepends = [ base parsec syb template-haskell ];
+ jailbreak = true;
description = "Structure Data Library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -102141,6 +105758,7 @@ self: {
aeson base base64-bytestring binary bytestring containers
data-binary-ieee754 split text time unix-time zlib
];
+ jailbreak = true;
homepage = "https://github.com/gitfoxi/Stdf";
description = "Parse Structured Test Data Format (STDF)";
license = stdenv.lib.licenses.gpl2;
@@ -102198,6 +105816,7 @@ self: {
buildDepends = [ base containers mtl ];
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stickyKeysHotKey" = callPackage
@@ -102207,6 +105826,7 @@ self: {
version = "0.1.0.1";
sha256 = "18p0yxfw9wnzk0yxdvlm3g23k8zq5nb707411i92z5m82l6pkpmi";
buildDepends = [ base ];
+ jailbreak = true;
description = "get and set STICKYKEYS.SKF_HOTKEYACTIVE";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -102256,6 +105876,7 @@ self: {
homepage = "http://github.com/kholdstare/stm-chunked-queues/";
description = "Chunked Communication Queues";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stm-conduit" = callPackage
@@ -102302,9 +105923,11 @@ self: {
mtl-prelude placeholders primitive QuickCheck transformers
unordered-containers
];
+ jailbreak = true;
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
@@ -102334,8 +105957,10 @@ self: {
stm-conduit transformers wai warp
];
testDepends = [ base hspec HUnit stm ];
+ jailbreak = true;
description = "Conduits and STM operations for fire hoses";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stm-io-hooks" = callPackage
@@ -102345,8 +105970,10 @@ self: {
version = "1.0.0";
sha256 = "1wx68z1vq693bdcvv7d52pmk2s3pin0m382bc7j4i0s67m0ldcdn";
buildDepends = [ array base containers mtl stm ];
+ jailbreak = true;
description = "STM with IO hooks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stm-lifted" = callPackage
@@ -102427,6 +106054,7 @@ self: {
version = "0.0";
sha256 = "11v2sq911byxvvmjbm7qkpdzma1mzzlch6rr529xsra0dv7myig2";
buildDepends = [ base stm ];
+ jailbreak = true;
description = "TMVars, TVars and TChans with distinguished input and output side";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -102464,6 +106092,7 @@ self: {
homepage = "http://sulzmann.blogspot.com/2008/12/stm-with-control-communication-for.html";
description = "Control communication among retrying transactions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stomp-conduit" = callPackage
@@ -102550,7 +106179,6 @@ self: {
version = "0.2.2";
sha256 = "01kwwkpbfjrv26vj83cd92px5qbq1bpgxj0r45534aksqhany1xb";
buildDepends = [ base ];
- configureFlags = [ "-f-instanceinbase" ];
homepage = "https://github.com/cartazio/storable-complex";
description = "Storable instance for Complex";
license = stdenv.lib.licenses.bsd3;
@@ -102563,7 +106191,6 @@ self: {
version = "0.2.5";
sha256 = "04j1nk0wga4dqrqvhm8yd9h9194db1n3yrnhg8s3gsc0jk7yw1p2";
buildDepends = [ base byteorder ];
- configureFlags = [ "-fsplitbase" ];
description = "Storable instances with endianness";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -102577,7 +106204,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base transformers utility-ht ];
- configureFlags = [ "-f-buildtests" "-fsplitbase" ];
homepage = "http://code.haskell.org/~thielema/storable-record/";
description = "Elegant definition of Storable instances for records";
license = stdenv.lib.licenses.bsd3;
@@ -102590,8 +106216,10 @@ self: {
version = "0.6.1.0";
sha256 = "0akdh6v2cdq38jw8v69bn3m50g6wxanh0plikq4hj5mfrkg6xsxm";
buildDepends = [ array base tagged vector ];
+ jailbreak = true;
description = "Statically-sized array wrappers with Storable instances for FFI marshaling";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"storable-tuple" = callPackage
@@ -102601,7 +106229,6 @@ self: {
version = "0.0.2";
sha256 = "03qls46rwc3za730r6pv63rrnjq4vkh3h2vjhx9082dqa9q7vqqd";
buildDepends = [ base storable-record utility-ht ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://code.haskell.org/~thielema/storable-tuple/";
description = "Storable instance for pairs and triples";
license = stdenv.lib.licenses.bsd3;
@@ -102619,10 +106246,11 @@ self: {
base non-negative QuickCheck syb transformers unsafe utility-ht
];
testDepends = [ base bytestring QuickCheck random utility-ht ];
- configureFlags = [ "-fseparatesyb" "-fsplitbase" ];
+ jailbreak = true;
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
@@ -102635,6 +106263,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Storable_Vector";
description = "Conversion between storablevector and carray";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"storablevector-streamfusion" = callPackage
@@ -102651,10 +106280,11 @@ self: {
base binary bytestring old-time storablevector stream-fusion
utility-ht
];
- configureFlags = [ "-f-buildtests" "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Storable_Vector";
description = "Conversion between storablevector and stream-fusion lists with fusion";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"str" = callPackage
@@ -102669,6 +106299,7 @@ self: {
base base16-bytestring bytestring Crypto hashable MissingH text
utf8-string
];
+ jailbreak = true;
homepage = "http://www.github.com/thinkpad20/str";
description = "A type class to abstract between many different string types";
license = stdenv.lib.licenses.mit;
@@ -102695,7 +106326,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base logict ];
- configureFlags = [ "-f-benchmarks" ];
+ jailbreak = true;
homepage = "http://github.com/sebfisch/stream-monad";
description = "Simple, Fair and Terminating Backtracking Monad";
license = stdenv.lib.licenses.bsd3;
@@ -102715,10 +106346,11 @@ self: {
data-accessor-transformers event-list midi midi-alsa non-negative
random transformers utility-ht
];
- configureFlags = [ "-f-buildexamples" "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/MIDI";
description = "Programmatically edit MIDI event streams via ALSA";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"streaming-commons" = callPackage
@@ -102738,7 +106370,6 @@ self: {
array async base blaze-builder bytestring deepseq hspec network
QuickCheck text unix zlib
];
- configureFlags = [ "-f-use-bytestring-builder" ];
homepage = "https://github.com/fpco/streaming-commons";
description = "Common lower-level functions needed by various streaming data libraries";
license = stdenv.lib.licenses.mit;
@@ -102779,7 +106410,6 @@ self: {
version = "0.3.2";
sha256 = "08cjajqz9h47fkq98mlf3rc8n5ghbmnmgn8pfsl3bdldjdkmmlrc";
buildDepends = [ array base ];
- configureFlags = [ "-fsplit-base" ];
homepage = "http://www.cse.unsw.edu.au/~rl/code/strict.html";
description = "Strict data types and String IO";
license = stdenv.lib.licenses.bsd3;
@@ -102812,6 +106442,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/strict-concurrency";
description = "Strict concurrency abstractions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"strict-ghc-plugin" = callPackage
@@ -102858,7 +106489,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base directory filepath process unix ];
- configureFlags = [ "-fsmall-base" ];
description = "Find a local optimum of strictness annotations";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -102870,6 +106500,7 @@ self: {
version = "1.0.0.0";
sha256 = "1a3azrg9ksb4kmbckjqw3krxj0app6q19ighd6k3z7xpf682qx3c";
buildDepends = [ base deepseq ];
+ jailbreak = true;
homepage = "https://github.com/DanBurton/strictly#readme";
description = "Combinators for strictifying functions";
license = stdenv.lib.licenses.bsd3;
@@ -102883,6 +106514,7 @@ self: {
sha256 = "1l94p8c9j8a2dbpwj5q7d1m61gdhmi6vllz34g8d9qjfwpnx7z6z";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"string-class" = callPackage
@@ -102927,6 +106559,7 @@ self: {
version = "2.0.0";
sha256 = "1wwx7j6qvb93yc0r2hdah1rgbi96r2mjhmibx72d4x7idhn0xsd9";
buildDepends = [ base bytestring text utf8-string ];
+ jailbreak = true;
homepage = "https://bitbucket.org/tdammers/string-convert";
description = "Provide universal string conversions between any two string-like types";
license = stdenv.lib.licenses.bsd3;
@@ -103003,9 +106636,11 @@ self: {
base bytestring QuickCheck quickcheck-instances test-framework
test-framework-quickcheck2 text
];
+ jailbreak = true;
homepage = "https://github.com/selectel/stringlike";
description = "Transformations to several string-like types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stringprep" = callPackage
@@ -103044,7 +106679,6 @@ self: {
version = "0.3.6.5";
sha256 = "1mjvb1qr4fkxv5qvq4jfswa3dcj3dwzvwx7dbp2wqw8zand41lsq";
buildDepends = [ array base bytestring containers ];
- configureFlags = [ "-f-base3" "-fbase4" ];
homepage = "https://bitbucket.org/dafis/stringsearch";
description = "Fast searching, splitting and replacing of ByteStrings";
license = stdenv.lib.licenses.bsd3;
@@ -103057,7 +106691,6 @@ self: {
version = "0.0.7";
sha256 = "1wp6w12bflrqcwi09y7s1crj72n4pbj8bkpwj2ia5gaqn5x56wjs";
buildDepends = [ base binary bytestring containers syb ];
- configureFlags = [ "-f-sybinbase" ];
homepage = "http://github.com/audreyt/stringtable-atom/";
description = "Memoize Strings as Atoms for fast comparison and sorting, with maps and sets";
license = stdenv.lib.licenses.bsd3;
@@ -103069,8 +106702,8 @@ self: {
}:
mkDerivation {
pname = "stripe";
- version = "0.8.1";
- sha256 = "0vmgj9n7q8ik31z7zzfjfv1qj8f8vrqn9cvk8kjp3k4shj25p7sy";
+ version = "0.8.3";
+ sha256 = "1lqz116lvj2444sf2j58dg1nkjwaxm9abrizp1zqkmixbl7ykaqh";
buildDepends = [
aeson base bytestring http-conduit http-types mtl text time
unordered-containers utf8-string
@@ -103100,24 +106733,23 @@ self: {
homepage = "https://github.com/dmjio/stripe-haskell";
description = "Stripe API for Haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"strive" = callPackage
- ({ mkDerivation, aeson, base, bytestring, data-default, Glob
- , gpolyline, hlint, http-conduit, http-types, markdown-unlit
- , regex-compat, template-haskell, text, time, transformers
+ ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline
+ , hlint, http-conduit, http-types, markdown-unlit, template-haskell
+ , text, time, transformers
}:
mkDerivation {
pname = "strive";
- version = "0.6.1";
- sha256 = "1cy555hhk5bdpk2hmkxx4pbi6m7vaadv4ksgfhcxbzyxmpi0wdwm";
+ version = "0.6.2";
+ sha256 = "1nlvzl58s2n50pqgvicmslfgv550sk1nk05hx7vllsa92acypz6h";
buildDepends = [
- aeson base bytestring data-default Glob gpolyline http-conduit
- http-types regex-compat template-haskell text time transformers
- ];
- testDepends = [
- aeson base bytestring data-default hlint markdown-unlit time
+ aeson base bytestring data-default gpolyline http-conduit
+ http-types template-haskell text time transformers
];
+ testDepends = [ base bytestring hlint markdown-unlit time ];
homepage = "http://taylor.fausak.me/strive/";
description = "A Haskell client for the Strava V3 API";
license = stdenv.lib.licenses.mit;
@@ -103130,7 +106762,6 @@ self: {
version = "1.0.10";
sha256 = "1f42yf49fqr2fyjfakscmmlnmw3w5rg7wyy6gjyrf0gcgsh0h9fd";
buildDepends = [ base bytestring text time ];
- configureFlags = [ "-fsplit-base" ];
description = "Efficient parsing of LocalTime using a binding to C's strptime, with some extra features (i.e. fractional seconds)";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -103149,22 +106780,24 @@ self: {
base geniplate language-haskell-extract mtl pretty QuickCheck safe
testing-feat
];
- configureFlags = [ "-f-werror" ];
homepage = "http://www.github.com/danr/structural-induction";
description = "Instantiate structural induction schemas for algebraic data types";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"structured-haskell-mode" = callPackage
- ({ mkDerivation, base, emacs, haskell-src-exts }:
+ ({ mkDerivation, base, descriptive, emacs, haskell-src-exts, text
+ }:
mkDerivation {
pname = "structured-haskell-mode";
- version = "1.0.4";
- sha256 = "1402wx27py7292ad7whsb13ywv71k36501jpfrn2p0v7knzknj8z";
+ version = "1.0.8";
+ sha256 = "00kr6wllr0rmjxiwdfbr98k8yj6jr9f3vbf9b2cx8ykgs35jayz9";
isLibrary = false;
isExecutable = true;
- buildDepends = [ base haskell-src-exts ];
+ buildDepends = [ base descriptive haskell-src-exts text ];
buildTools = [ emacs ];
+ jailbreak = true;
postInstall = ''
emacs -L elisp --batch -f batch-byte-compile "elisp/"*.el
install -d $out/share/emacs/site-lisp
@@ -103173,6 +106806,7 @@ self: {
homepage = "https://github.com/chrisdone/structured-haskell-mode";
description = "Structured editing Emacs mode for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) emacs;};
"structured-mongoDB" = callPackage
@@ -103189,8 +106823,10 @@ self: {
monad-control mongoDB mtl old-time template-haskell transformers
transformers-base
];
+ jailbreak = true;
description = "Structured MongoDB interface";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"structures" = callPackage
@@ -103215,10 +106851,6 @@ self: {
QuickCheck semigroups tasty tasty-quickcheck tasty-th
unordered-containers
];
- configureFlags = [
- "-foptimized" "-f-llvm" "-fthreaded" "-ftest-hlint"
- "-ftest-doctests" "-f-test-hunit" "-ftest-properties"
- ];
homepage = "http://github.com/ekmett/structures";
description = "\"Advanced\" Data Structures";
license = stdenv.lib.licenses.bsd3;
@@ -103262,10 +106894,10 @@ self: {
base binary bullet bytestring containers directory elerea GLFW-b
lambdacube-bullet lambdacube-engine mtl random vector
];
- configureFlags = [ "-f-portable" "-f-capture" ];
homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine";
description = "A revival of the classic game Stunts (LambdaCube tech demo)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"stylish-haskell" = callPackage
@@ -103300,6 +106932,7 @@ self: {
version = "0.1.3";
sha256 = "09gacqlq3vlnsnbjjr44pjypw9v3amg8sqsxg0xwl8ricxpww774";
buildDepends = [ ansi-terminal base ];
+ jailbreak = true;
homepage = "http://patch-tag.com/r/lucid/Stylized";
description = "Ways to output stylized text on ANSI consoles";
license = "GPL";
@@ -103312,7 +106945,6 @@ self: {
version = "0.5";
sha256 = "1kkr6zbnv777gnv2lwq3pyxq3vv5r24f4avwv5g4dds3y8d8mv3q";
buildDepends = [ attoparsec base containers text ];
- configureFlags = [ "-f-developer" ];
homepage = "https://patch-tag.com/r/rubenAst/subtitleParser/home";
description = "A parser for .srt and .sub files";
license = stdenv.lib.licenses.bsd3;
@@ -103340,6 +106972,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base HUnit vector ];
+ jailbreak = true;
homepage = "https://github.com/VictorDenisov/suffixarray";
description = "n log n implementation of suffix array";
license = stdenv.lib.licenses.gpl2;
@@ -103380,6 +107013,7 @@ self: {
buildDepends = [ base containers ];
description = "Abstract over the constraints on the parameters to type constructors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sundown" = callPackage
@@ -103406,6 +107040,7 @@ self: {
base bytestring Cabal directory old-locale process random time
tuple
];
+ jailbreak = true;
homepage = "http://www.github.com/massysett/sunlight";
description = "Test Cabalized package against multiple dependency versions";
license = stdenv.lib.licenses.bsd3;
@@ -103427,6 +107062,7 @@ self: {
homepage = "https://github.com/ku-fpg/sunroof-compiler";
description = "Monadic Javascript Compiler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sunroof-examples" = callPackage
@@ -103445,9 +107081,11 @@ self: {
process QuickCheck random semigroups shake stm sunroof-compiler
sunroof-server
];
+ jailbreak = true;
homepage = "https://github.com/ku-fpg/sunroof-examples";
description = "Tests for Sunroof";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sunroof-server" = callPackage
@@ -103467,9 +107105,11 @@ self: {
transformers unordered-containers vector vector-space
wai-middleware-static warp
];
+ jailbreak = true;
homepage = "https://github.com/ku-fpg/sunroof-server";
description = "Monadic Javascript Compiler - Server Utilities";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"supercollider-ht" = callPackage
@@ -103485,10 +107125,10 @@ self: {
buildDepends = [
base hosc hsc3 opensoundcontrol-ht process random transformers
];
- configureFlags = [ "-f-buildexamples" "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/SuperCollider";
description = "Haskell SuperCollider utilities";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"supercollider-midi" = callPackage
@@ -103509,10 +107149,11 @@ self: {
non-negative opensoundcontrol-ht random supercollider-ht
transformers utility-ht
];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/SuperCollider";
description = "Demonstrate how to control SuperCollider via ALSA-MIDI";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"superdoc" = callPackage
@@ -103527,6 +107168,7 @@ self: {
homepage = "http://www.mathstat.dal.ca/~selinger/superdoc/";
description = "Additional documentation markup and Unicode support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"supero" = callPackage
@@ -103543,9 +107185,11 @@ self: {
base containers cpphs directory filepath haskell-src-exts mtl
process time uniplate
];
+ jailbreak = true;
homepage = "http://community.haskell.org/~ndm/supero/";
description = "A Supercompiler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"supervisor" = callPackage
@@ -103584,9 +107228,11 @@ self: {
buildDepends = [
base haskell98 language-c pretty svgutils syb xml
];
+ jailbreak = true;
homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q";
description = "Code generation tool for Quartz code from a SVG";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"svgcairo" = callPackage
@@ -103614,6 +107260,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base filepath xml ];
+ jailbreak = true;
homepage = "https://patch-tag.com/r/twistedsquare/svgutils/home";
description = "Helper functions for dealing with SVG files";
license = stdenv.lib.licenses.bsd3;
@@ -103655,9 +107302,11 @@ self: {
base binary bindings-svm bytestring containers deepseq directory
monad-par mwc-random vector
];
+ jailbreak = true;
homepage = "http://github.com/aleator/Simple-SVM";
description = "Medium level, simplified, bindings to libsvm";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"svndump" = callPackage
@@ -103691,6 +107340,7 @@ self: {
testDepends = [ aeson base bytestring tasty tasty-hunit ];
description = "Implementation of swagger data model";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"swapper" = callPackage
@@ -103709,6 +107359,7 @@ self: {
homepage = "http://github.com/roman-smrz/swapper/";
description = "Transparently swapping data from in-memory structures to disk";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) tokyocabinet;};
"swf" = callPackage
@@ -103721,6 +107372,7 @@ self: {
homepage = "http://www.n-heptane.com/nhlab";
description = "A library for creating Shockwave Flash (SWF) files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"swift-lda" = callPackage
@@ -103758,7 +107410,6 @@ self: {
base containers hashable HUnit network-uri old-locale semigroups
test-framework test-framework-hunit text time
];
- configureFlags = [ "-fnetwork-uri" "-f-w3ctests" "-f-developer" ];
homepage = "https://bitbucket.org/doug_burke/swish/wiki/Home";
description = "A semantic web toolkit";
license = "LGPL";
@@ -103782,6 +107433,7 @@ self: {
resourcet transformers wai wai-extra wai-middleware-static warp
warp-tls x509
];
+ jailbreak = true;
description = "A simple web server for serving directories, similar to weborf";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -103809,6 +107461,7 @@ self: {
homepage = "http://github.com/ekmett/syb-extras/";
description = "Higher order versions of the Scrap Your Boilerplate classes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"syb-with-class" = callPackage
@@ -103858,9 +107511,11 @@ self: {
base parsec smallcheck test-framework test-framework-smallcheck
void
];
+ jailbreak = true;
homepage = "https://github.com/lfairy/sylvia";
description = "Lambda calculus visualization";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sym" = callPackage
@@ -103882,9 +107537,11 @@ self: {
version = "0.2.0";
sha256 = "0186i6c3dyvs5pa4fh0b284wgpm10pgwax9prahirnq8whph94p2";
buildDepends = [ base diagrams-cairo diagrams-lib sym ];
+ jailbreak = true;
homepage = "http://github.com/akc/sym-plot";
description = "Plot permutations; an addition to the sym package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"symbol" = callPackage
@@ -103908,6 +107565,7 @@ self: {
buildDepends = [ base stm ];
description = "A fast implementation of synchronous channels with a CML-like API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"synchronous-channels" = callPackage
@@ -103919,6 +107577,7 @@ self: {
buildDepends = [ base ];
description = "Synchronous communication channels";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"synt" = callPackage
@@ -103935,6 +107594,7 @@ self: {
testDepends = [
argparser base haskell-src-exts hpc hspec regexpr split Synt
];
+ jailbreak = true;
homepage = "http://github.com/brentlintner/synt";
description = "Similar code analysis";
license = "unknown";
@@ -104050,6 +107710,7 @@ self: {
buildDepends = [ base pretty scientific semi-iso syntax text ];
description = "Syntax instance for pretty, the pretty printing library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"syntax-printer" = callPackage
@@ -104081,6 +107742,7 @@ self: {
];
description = "Convert between different Haskell syntax trees";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"syntax-trees-fork-bairyn" = callPackage
@@ -104117,13 +107779,11 @@ self: {
old-time process QuickCheck random sox storable-record
storablevector transformers utility-ht
];
- configureFlags = [
- "-f-buildtests" "-f-buildprofilers" "-f-buildexamples"
- "-foptimizeadvanced" "-fcategory" "-fsplitbase"
- ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Audio signal processing coded in Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"synthesizer-alsa" = callPackage
@@ -104144,12 +107804,11 @@ self: {
synthesizer-core synthesizer-dimensional synthesizer-midi
transformers utility-ht
];
- configureFlags = [
- "-f-buildexamples" "-f-optimizeadvanced" "-fsplitbase"
- ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Control synthesizer effects via ALSA/MIDI";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"synthesizer-core" = callPackage
@@ -104174,10 +107833,10 @@ self: {
base containers event-list non-empty non-negative numeric-prelude
QuickCheck random storable-tuple storablevector utility-ht
];
- configureFlags = [ "-foptimizeadvanced" ];
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
@@ -104196,10 +107855,10 @@ self: {
storable-record storablevector synthesizer-core transformers
utility-ht
];
- configureFlags = [ "-f-buildexamples" "-foptimizeadvanced" ];
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Audio signal processing with static physical dimensions";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"synthesizer-inference" = callPackage
@@ -104216,10 +107875,7 @@ self: {
base event-list non-negative numeric-prelude random
synthesizer-core transformers UniqueLogicNP utility-ht
];
- configureFlags = [
- "-f-buildexamples" "-f-buildtests" "-f-buildprofilers"
- "-foptimizeadvanced" "-fcategory" "-fsplitbase"
- ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Audio signal processing with dynamic physical dimensions";
license = "GPL";
@@ -104245,12 +107901,11 @@ self: {
storable-tuple storablevector synthesizer-core synthesizer-midi tfp
transformers unsafe utility-ht vault
];
- configureFlags = [
- "-fjack" "-falsa" "-f-buildtests" "-f-buildexamples"
- ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Efficient signal processing using runtime compilation";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"synthesizer-midi" = callPackage
@@ -104272,12 +107927,10 @@ self: {
storable-record storablevector synthesizer-core
synthesizer-dimensional transformers utility-ht
];
- configureFlags = [
- "-f-buildtests" "-f-buildexamples" "-fsplitbase"
- ];
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Render audio signals from MIDI files or realtime messages";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sys-auth-smbclient" = callPackage
@@ -104331,7 +107984,6 @@ self: {
sha256 = "11lfr6xm5xpvq4244pc7a0psy2m1krz0b1jd9pdw6kzn5ammi1b2";
buildDepends = [ base directory filepath process transformers ];
testDepends = [ base directory doctest filepath QuickCheck ];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/system-command";
description = "A replacement for System.Exit and System.Process";
license = stdenv.lib.licenses.bsd3;
@@ -104414,6 +108066,7 @@ self: {
homepage = "https://github.com/jcristovao/system-lifted";
description = "Lifted versions of System functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"system-posix-redirect" = callPackage
@@ -104446,9 +108099,11 @@ self: {
base extensible-effects HUnit QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2 vector
];
+ jailbreak = true;
homepage = "https://github.com/wowus/system-random-effect";
description = "Random number generation for extensible effects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"system-time-monotonic" = callPackage
@@ -104480,6 +108135,7 @@ self: {
base directory easy-data either filepath hspec quickcheck-instances
semigroups system-lifted template-haskell transformers
];
+ jailbreak = true;
homepage = "https://github.com/jcristovao/system-util";
description = "Various system utils lifted to EitherT";
license = stdenv.lib.licenses.bsd3;
@@ -104501,7 +108157,6 @@ self: {
template-haskell
];
extraLibraries = [ libossp_uuid ];
- configureFlags = [ "-f-cli" "-fsplit-base" ];
homepage = "http://github.com/solidsnack/system-uuid/";
description = "Bindings to system UUID functions";
license = stdenv.lib.licenses.bsd3;
@@ -104527,7 +108182,6 @@ self: {
version = "0.2.0.0";
sha256 = "1m5395937yyxsa1bmlfn1dxa1jr15yjhlz9s15bpwapshcd8119y";
buildDepends = [ base syb ];
- configureFlags = [ "-fbase4" ];
homepage = "http://www.cs.indiana.edu/~adamsmd/papers/scrap_your_zippers/";
description = "Scrap Your Zippers";
license = stdenv.lib.licenses.bsd3;
@@ -104544,9 +108198,11 @@ self: {
buildDepends = [
base containers ghc-prim mtl Takusen template-haskell time
];
+ jailbreak = true;
homepage = "not available";
description = "Transito Abierto: convenience library when using Takusen and Oracle";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"table" = callPackage
@@ -104563,6 +108219,17 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "table-tennis" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "table-tennis";
+ version = "0.1.0.3";
+ sha256 = "1v5g4fbbspgm4smjxk499a0grh5xsr18688kmivql8knhxh1351k";
+ buildDepends = [ base ];
+ description = "A table tennis game tracking engine";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"tableaux" = callPackage
({ mkDerivation, base, cgi, containers, html, mtl, parsec
, QuickCheck
@@ -104576,6 +108243,7 @@ self: {
buildDepends = [ base cgi containers html mtl parsec QuickCheck ];
description = "An interactive theorem prover based on semantic tableaux";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tables" = callPackage
@@ -104597,7 +108265,6 @@ self: {
base containers directory doctest filepath lens transformers
unordered-containers
];
- configureFlags = [ "-f-transformers2" "-ftest-properties" ];
homepage = "http://github.com/ekmett/tables/";
description = "In-memory storage with multiple keys using lenses and traversals";
license = stdenv.lib.licenses.bsd3;
@@ -104621,6 +108288,7 @@ self: {
homepage = "http://github.com/paf31/tablestorage";
description = "Azure Table Storage REST API Wrapper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tabloid" = callPackage
@@ -104639,6 +108307,7 @@ self: {
];
description = "View the output of shell commands in a table";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tabular" = callPackage
@@ -104673,10 +108342,10 @@ self: {
utf8-string X11 xdg-basedir xmonad xmonad-contrib
];
pkgconfigDepends = [ gtk ];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://github.com/travitch/taffybar";
description = "A desktop bar similar to xmobar, but with more GUI";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtk;};
"tag-bits" = callPackage
@@ -104721,7 +108390,6 @@ self: {
base bytestring containers data-accessor explicit-exception
transformers utility-ht xml-basic
];
- configureFlags = [ "-f-buildtests" "-f-buildexamples" ];
homepage = "http://code.haskell.org/~thielema/tagchup/";
description = "alternative package for processing of tag soups";
license = "GPL";
@@ -104761,7 +108429,6 @@ self: {
version = "2.0.0.0";
sha256 = "02ny4yz9afaazw2pxpkpalffx8i5nhi3x9561blrd0pdrqq8qnib";
buildDepends = [ base exceptions mmorph transformers ];
- configureFlags = [ "-fbase-ge-4_2" "-f-pedantic" ];
homepage = "https://github.com/trskop/tagged-exception";
description = "Reflect exceptions using phantom types";
license = stdenv.lib.licenses.bsd3;
@@ -104782,8 +108449,10 @@ self: {
type-level-natural-number type-level-natural-number-induction
type-level-natural-number-operations
];
+ jailbreak = true;
description = "Lists tagged with a type-level natural number representing their length";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tagged-th" = callPackage
@@ -104793,8 +108462,10 @@ self: {
version = "0.1";
sha256 = "1qqysn5zrkx2q3rv8ynf6nmy5rwdqk6niw0fphg5kyrg72h31s69";
buildDepends = [ base tagged template-haskell type-spine ];
+ jailbreak = true;
description = "QuasiQuoter and Template Haskell splices for creating proxies at higher-kinds";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tagged-transformer" = callPackage
@@ -104878,6 +108549,7 @@ self: {
pkgconfigDepends = [ taglib_c ];
description = "Binding to TagLib (ID3 tag library)";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { tag_c = null; taglib_c = null;};
"taglib-api" = callPackage
@@ -104892,9 +108564,10 @@ self: {
base bytestring containers mtl text transformers
];
pkgconfigDepends = [ taglib_c ];
- configureFlags = [ "-fusepkgconfig" ];
+ jailbreak = true;
description = "An FFI layer over TagLib's C bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { taglib_c = null;};
"tagset-positional" = callPackage
@@ -104931,7 +108604,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring containers text ];
- configureFlags = [ "-f-download" "-f-testprog" ];
homepage = "http://community.haskell.org/~ndm/tagsoup/";
description = "Parsing and extracting information from (possibly malformed) HTML/XML documents";
license = stdenv.lib.licenses.bsd3;
@@ -104952,9 +108624,11 @@ self: {
base bytestring containers data-accessor explicit-exception
old-time tagsoup transformers utility-ht xml-basic
];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/tagsoup-ht/";
description = "alternative parser for the tagsoup package";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tagsoup-parsec" = callPackage
@@ -105003,10 +108677,10 @@ self: {
buildDepends = [ base mtl old-time QuickCheck random time ];
buildTools = [ sqlplus ];
extraLibraries = [ clntsh ];
- configureFlags = [ "-f-buildtests" ];
homepage = "https://github.com/paulrzcz/takusen-oracle.git";
description = "Database library with left-fold interface for Oracle";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { clntsh = null; sqlplus = null;};
"tamarin-prover" = callPackage
@@ -105033,12 +108707,11 @@ self: {
tamarin-prover-theory tamarin-prover-utils text threads time
transformers uniplate wai warp yesod-core yesod-json yesod-static
];
- configureFlags = [
- "-f-build-tests" "-ftest-coverage" "-fthreaded" "-f-no-gui"
- ];
+ jailbreak = true;
homepage = "http://www.infsec.ethz.ch/research/software/tamarin";
description = "The Tamarin prover for security protocol analysis";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tamarin-prover-term" = callPackage
@@ -105055,9 +108728,11 @@ self: {
directory dlist HUnit mtl parsec process safe split syb
tamarin-prover-utils
];
+ jailbreak = true;
homepage = "http://www.infsec.ethz.ch/research/software/tamarin";
description = "Term manipulation library for the tamarin prover";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tamarin-prover-theory" = callPackage
@@ -105077,9 +108752,11 @@ self: {
safe syb tamarin-prover-term tamarin-prover-utils time transformers
uniplate
];
+ jailbreak = true;
homepage = "http://www.infsec.ethz.ch/research/software/tamarin";
description = "Term manipulation library for the tamarin prover";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tamarin-prover-utils" = callPackage
@@ -105095,9 +108772,11 @@ self: {
base base64-bytestring binary blaze-builder bytestring containers
deepseq dlist fclabels mtl parsec pretty SHA syb time transformers
];
+ jailbreak = true;
homepage = "http://www.infsec.ethz.ch/research/software/tamarin";
description = "Utility library for the tamarin prover";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tamper" = callPackage
@@ -105107,6 +108786,7 @@ self: {
version = "0.4.0";
sha256 = "16ca5c4w0qmar1nv4m91cwrjw38ql76lphxd25d063d5v77lwr8z";
buildDepends = [ base containers mtl safe text ];
+ jailbreak = true;
description = "An HTML templating system similar to Blaze, implemented as a monad transformer of sorts";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -105134,7 +108814,6 @@ self: {
version = "0.3.0.0";
sha256 = "15f88b5qg4v1ah60y0jxkww9n6z7gvnkslx4inckh6m6c7yvj8k6";
buildDepends = [ base mtl ];
- configureFlags = [ "-f-use-undecidable-instances" ];
homepage = "https://github.com/DanBurton/tardis";
description = "Bidirectional state monad transformer";
license = stdenv.lib.licenses.bsd3;
@@ -105149,8 +108828,8 @@ self: {
}:
mkDerivation {
pname = "target";
- version = "0.1.0.0";
- sha256 = "08n2r457yjywfyb4pgjsrp96gb3h79zhmw2h042bvh89k36n44y1";
+ version = "0.1.1.0";
+ sha256 = "1b6kbiqpx57ghi98ki4gbqclyl91rs113ayd51bx8wmwwbaag21v";
buildDepends = [
base containers directory exceptions filepath ghc ghc-paths
liquid-fixpoint liquidhaskell mtl pretty process syb tagged
@@ -105164,6 +108843,7 @@ self: {
];
description = "Generate test-suites from refinement types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"task" = callPackage
@@ -105181,8 +108861,10 @@ self: {
aeson attoparsec base bytestring containers csv-enumerator
directory filepath old-locale random text time unix
];
+ jailbreak = true;
description = "A command line tool for keeping track of tasks you worked on";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"taskpool" = callPackage
@@ -105339,8 +109021,10 @@ self: {
stringbuilder system-filepath tasty tasty-quickcheck text
transformers
];
+ jailbreak = true;
description = "automated integration of QuickCheck properties into tasty suites";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tasty-kat" = callPackage
@@ -105382,7 +109066,6 @@ self: {
sha256 = "1q1fghmsjrdl6jkcnajmsvw4d893m6cyhzpai9vvrhxy9vdy0l1v";
buildDepends = [ base QuickCheck tagged tasty ];
testDepends = [ base pcre-light tasty tasty-hunit ];
- configureFlags = [ "-f-old-quickcheck" ];
homepage = "http://documentup.com/feuerbach/tasty";
description = "QuickCheck support for the Tasty test framework";
license = stdenv.lib.licenses.mit;
@@ -105457,9 +109140,11 @@ self: {
array base binary cautious-file containers directory filepath
IfElse monad-loops mtl random safe-failure stm-io-hooks
];
+ jailbreak = true;
homepage = "http://darcs.monoid.at/tbox";
description = "Transactional variables and data structures with IO hooks";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tcache-AWS" = callPackage
@@ -105493,6 +109178,7 @@ self: {
homepage = "http://bitcheese.net/wiki/code/tccli";
description = "TokyoCabinet CLI interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tconfig" = callPackage
@@ -105541,9 +109227,9 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2 time
transformers
];
- configureFlags = [ "-fquickcheck26" ];
description = "Test framework wrapper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tdoc" = callPackage
@@ -105571,6 +109257,7 @@ self: {
buildDepends = [ base containers fgl graphviz ];
description = "Graphical modeling tools for sequential teams";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tellbot" = callPackage
@@ -105587,6 +109274,7 @@ self: {
base bifunctors containers errors mtl network split time
transformers
];
+ jailbreak = true;
description = "IRC tellbot";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -105609,6 +109297,7 @@ self: {
version = "0.1.1";
sha256 = "07b8j11v0247fwaf3mv72m7aaq3crbsyrxmxa352vn9h2g6l1jsd";
buildDepends = [ base data-default template-haskell ];
+ jailbreak = true;
homepage = "https://github.com/haskell-pkg-janitors/template-default";
description = "declaring Default instances just got even easier";
license = stdenv.lib.licenses.bsd3;
@@ -105641,9 +109330,10 @@ self: {
testDepends = [
base parsec QuickCheck test-framework test-framework-quickcheck2
];
- configureFlags = [ "-f-testing" ];
+ jailbreak = true;
description = "Haskell's Simple Markup Language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"templatepg" = callPackage
@@ -105677,9 +109367,11 @@ self: {
aeson base blaze-builder bytestring containers HsOpenSSL HTTP
http-streams io-streams mtl old-locale text time
];
+ jailbreak = true;
homepage = "https://github.com/ixmatus/hs-tempodb";
description = "A small Haskell wrapper around the TempoDB api";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"temporal-csound" = callPackage
@@ -105818,7 +109510,7 @@ self: {
uniplate utf8-string
];
buildTools = [ happy ];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
description = "Interpreter for the FRP language Tempus";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -105849,9 +109541,11 @@ self: {
union-find-array
];
testDepends = [ base containers HUnit QuickCheck ];
+ jailbreak = true;
homepage = "http://cl-informatik.uibk.ac.at/software/haskell-rewriting/";
description = "Term Rewriting Library";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"terminal-progress-bar" = callPackage
@@ -105866,7 +109560,6 @@ self: {
testDepends = [
base base-unicode-symbols HUnit test-framework test-framework-hunit
];
- configureFlags = [ "-f-example" ];
homepage = "https://github.com/roelvandijk/terminal-progress-bar";
description = "A simple progress bar in the terminal";
license = stdenv.lib.licenses.bsd3;
@@ -105890,6 +109583,7 @@ self: {
version = "0.1";
sha256 = "1k32s5vzkxnsawj8vdscyfc96hk0s97zpj1mgw1hk93hwcrxn9wh";
buildDepends = [ base containers contravariant ];
+ jailbreak = true;
homepage = "http://www.github.com/batterseapower/termination-combinators";
description = "Termination combinators for forcing non-terminating algorithms to terminate";
license = stdenv.lib.licenses.bsd3;
@@ -105932,9 +109626,11 @@ self: {
sha256 = "0gciz8nvn7x1lclzihvwy8v1c53p6frb1q32ckpmsqw7xiasqlhb";
buildDepends = [ base haskell98 old-time ];
extraLibraries = [ terralib4c translib ];
+ jailbreak = true;
homepage = "http://lucc.ess.inpe.br/doku.php?id=terrahs";
description = "A Haskell GIS Programming Environment";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { terralib4c = null; translib = null;};
"tersmu" = callPackage
@@ -105947,7 +109643,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base containers mtl process syb transformers ];
- configureFlags = [ "-f-ircbot" ];
homepage = "http://mbays.freeshell.org/tersmu";
description = "A semantic parser for lojban";
license = stdenv.lib.licenses.gpl3;
@@ -105967,7 +109662,6 @@ self: {
ansi-terminal ansi-wl-pprint base containers hostname old-locale
random regex-posix time xml
];
- configureFlags = [ "-f-tests" ];
homepage = "https://batterseapower.github.io/test-framework/";
description = "Framework for running and organising tests, with HUnit and QuickCheck support";
license = stdenv.lib.licenses.bsd3;
@@ -105985,8 +109679,10 @@ self: {
base doctest test-framework test-framework-hunit
];
testDepends = [ base test-framework ];
+ jailbreak = true;
description = "Test.Framework wrapper for DocTest";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"test-framework-golden" = callPackage
@@ -106013,7 +109709,6 @@ self: {
version = "0.3.0.1";
sha256 = "1h0h55kf6ff25nbfx1mhliwyknc0glwv3zi78wpzllbjbs7gvyfk";
buildDepends = [ base extensible-exceptions HUnit test-framework ];
- configureFlags = [ "-f-base3" "-fbase4" ];
homepage = "https://batterseapower.github.io/test-framework/";
description = "HUnit support for the test-framework package";
license = stdenv.lib.licenses.bsd3;
@@ -106041,10 +109736,11 @@ self: {
buildDepends = [
base deepseq extensible-exceptions QuickCheck random test-framework
];
- configureFlags = [ "-f-base3" "-fbase4" ];
+ jailbreak = true;
homepage = "http://batterseapower.github.com/test-framework/";
description = "QuickCheck support for the test-framework package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"test-framework-quickcheck2" = callPackage
@@ -106058,7 +109754,6 @@ self: {
buildDepends = [
base extensible-exceptions QuickCheck random test-framework
];
- configureFlags = [ "-f-base3" "-fbase4" ];
homepage = "https://batterseapower.github.io/test-framework/";
description = "QuickCheck2 support for the test-framework package";
license = stdenv.lib.licenses.bsd3;
@@ -106083,6 +109778,7 @@ self: {
homepage = "http://gree.github.io/haskell-test-sandbox/";
description = "test-sandbox support for the test-framework package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"test-framework-skip" = callPackage
@@ -106100,6 +109796,7 @@ self: {
test-framework-hunit test-framework-quickcheck2
test-framework-smallcheck
];
+ jailbreak = true;
description = "Functions for conveniently marking some of the tests in a suite as being skipped";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -106168,7 +109865,7 @@ self: {
version = "0.3.0.0";
sha256 = "0fncybd3sxrbnrd4l1hri18rhfg9h0fm3k4305iwh4l65fbwg2n8";
buildDepends = [ base ];
- configureFlags = [ "-f-docheckwarns" ];
+ jailbreak = true;
description = "Just tests Hackage";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -106194,9 +109891,11 @@ self: {
base containers directory hastache heredoc hspec mtl process
QuickCheck regex-posix template-haskell text transformers unix
];
+ jailbreak = true;
homepage = "http://gree.github.io/haskell-test-sandbox/";
description = "Sandbox for system tests";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"test-sandbox-hunit" = callPackage
@@ -106209,6 +109908,7 @@ self: {
homepage = "http://gree.github.io/haskell-test-sandbox/";
description = "HUnit convenience functions for use with test-sandbox";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"test-sandbox-quickcheck" = callPackage
@@ -106225,6 +109925,7 @@ self: {
homepage = "http://gree.github.io/haskell-test-sandbox/";
description = "QuickCheck convenience functions for use with test-sandbox";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"test-shouldbe" = callPackage
@@ -106235,6 +109936,7 @@ self: {
sha256 = "0m8kb8ydj3s3agh45mzmn8icbik68fvh0fp2idkd1hs7km1qzaga";
buildDepends = [ base HUnit ];
testDepends = [ base hspec hspec-discover silently ];
+ jailbreak = true;
homepage = "https://github.com/sol/test-shouldbe#readme";
description = "Catchy combinators for HUnit";
license = stdenv.lib.licenses.mit;
@@ -106263,8 +109965,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base ];
+ jailbreak = true;
description = "Small test package";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"testing-feat" = callPackage
@@ -106291,9 +109995,11 @@ self: {
base Cabal directory filepath fsnotify hint mtl system-filepath
time unix
];
+ jailbreak = true;
homepage = "http://github.com/roman/testloop";
description = "Quick feedback loop for test suites";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"testpack" = callPackage
@@ -106304,7 +110010,6 @@ self: {
version = "2.1.3.0";
sha256 = "1rq5d64d7j3gpgbfxmfr4xmzizjy0ricw5ghrakv8gzvxmi2bn4p";
buildDepends = [ base containers HUnit mtl QuickCheck random ];
- configureFlags = [ "-fsplitbase" ];
homepage = "https://github.com/jgoerzen/testpack";
description = "Test Utililty Pack for HUnit and QuickCheck (unmaintained)";
license = "LGPL";
@@ -106322,6 +110027,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/testpattern";
description = "Display a monitor test pattern";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"testrunner" = callPackage
@@ -106334,6 +110040,7 @@ self: {
buildDepends = [ base HUnit QuickCheck random regex-compat stm ];
description = "Easy unit test driver framework";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tetris" = callPackage
@@ -106348,6 +110055,7 @@ self: {
homepage = "http://d.hatena.ne.jp/mokehehe/20080921/tetris";
description = "A 2-D clone of Tetris";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"texmath" = callPackage
@@ -106368,7 +110076,6 @@ self: {
base bytestring directory filepath process split temporary text
utf8-string xml
];
- configureFlags = [ "-fnetwork-uri" "-f-executable" ];
homepage = "http://github.com/jgm/texmath";
description = "Conversion between formats used to represent mathematics";
license = "GPL";
@@ -106392,7 +110099,6 @@ self: {
QuickCheck quickcheck-unicode random test-framework
test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [ "-f-integer-simple" "-f-developer" ];
homepage = "https://github.com/bos/text";
description = "An efficient packed Unicode text type";
license = stdenv.lib.licenses.bsd3;
@@ -106422,7 +110128,6 @@ self: {
array base double-conversion ghc-prim integer-gmp old-locale text
time transformers
];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/bos/text-format";
description = "Text formatting";
license = stdenv.lib.licenses.bsd3;
@@ -106531,6 +110236,7 @@ self: {
];
description = "Parser and Printer for LDAP text data stream";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"text-locale-encoding" = callPackage
@@ -106540,7 +110246,6 @@ self: {
version = "0.1.0.2";
sha256 = "1ls41s45qwrmmac8k1gryvxbhhczqy2wanwanw48m7xnbv52p9fg";
buildDepends = [ base bytestring bytestring-handle text ];
- configureFlags = [ "-ftrustworthy" ];
homepage = "https://github.com/exbb2/text-locale-encoding";
description = "Encode and decode Text to/from ByteString using TextEncoding";
license = stdenv.lib.licenses.bsd3;
@@ -106557,6 +110262,7 @@ self: {
homepage = "https://github.com/brendanhay/text-manipulate";
description = "Case conversion, word boundary manipulation, and textual subjugation";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"text-normal" = callPackage
@@ -106572,6 +110278,7 @@ self: {
homepage = "https://github.com/joelteon/text-normal.git";
description = "Unicode-normalized text";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"text-printer" = callPackage
@@ -106614,6 +110321,7 @@ self: {
version = "0.4.0";
sha256 = "0g0iihfin5vjfk69r7jjw4vs3l1k3f0kkg3bbc4xqm274vd72bph";
buildDepends = [ base containers mtl vector ];
+ jailbreak = true;
homepage = "https://github.com/acfoltzer/text-register-machine";
description = "A Haskell implementation of the 1# Text Register Machine";
license = stdenv.lib.licenses.bsd3;
@@ -106636,9 +110344,6 @@ self: {
array base bytestring nats quickcheck-instances tasty tasty-hunit
tasty-quickcheck text transformers transformers-compat void
];
- configureFlags = [
- "-f-transformers-four" "-frecent-text" "-finteger-gmp2"
- ];
homepage = "https://github.com/RyanGlScott/text-show";
description = "Efficient conversion of values into Text";
license = stdenv.lib.licenses.bsd3;
@@ -106666,10 +110371,11 @@ self: {
tasty-quickcheck template-haskell text-show time transformers unix
unordered-containers vector xhtml
];
- configureFlags = [ "-ftransformers-four" ];
+ jailbreak = true;
homepage = "https://github.com/RyanGlScott/text-show-instances";
description = "Additional instances for text-show";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"text-stream-decode" = callPackage
@@ -106681,7 +110387,6 @@ self: {
editedCabalFile = "d4ea8ff401a3ccbd8a6ce2918385bac4859150047ce9b7f752ff5575db71e9fd";
buildDepends = [ base bytestring text ];
testDepends = [ base bytestring deepseq hspec text ];
- configureFlags = [ "-ftext11" ];
homepage = "http://github.com/fpco/text-stream-decode";
description = "Streaming decoding functions for UTF encodings. (deprecated)";
license = stdenv.lib.licenses.mit;
@@ -106720,6 +110425,7 @@ self: {
homepage = "http://github.com/finnsson/Text.XML.Generic";
description = "Serialize Data to XML (strings)";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"text-xml-qq" = callPackage
@@ -106732,6 +110438,7 @@ self: {
homepage = "http://www.github.com/finnsson/text-xml-qq";
description = "Quasiquoter for xml. XML DSL in Haskell.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"textPlot" = callPackage
@@ -106743,6 +110450,7 @@ self: {
buildDepends = [ array base ];
description = "Plot functions in text";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"textmatetags" = callPackage
@@ -106757,6 +110465,7 @@ self: {
homepage = "https://github.com/spockz/Haskell-Code-Completion-for-TextMate";
description = "A simple Haskell program to provide tags for Haskell code completion in TextMate";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"texts" = callPackage
@@ -106767,6 +110476,7 @@ self: {
sha256 = "15r3lrd6qrhhsll6qlbvgd5g545mj2s6banahwlibcimqqdw8s9h";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tf-random" = callPackage
@@ -106789,7 +110499,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-build-test" ];
homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic";
description = "Type-level integers, booleans, lists using type families";
license = stdenv.lib.licenses.bsd3;
@@ -106824,6 +110533,7 @@ self: {
testDepends = [
base hslogger mtl network QuickCheck transformers
];
+ jailbreak = true;
homepage = "http://github.com/sheyll/tftp";
description = "A library for building tftp servers";
license = stdenv.lib.licenses.bsd3;
@@ -106836,6 +110546,7 @@ self: {
version = "0.2";
sha256 = "0lpc5z575y7cq03ww2knr5qdkfb36qnim5y1gkh552r9k3pfdjhf";
buildDepends = [ base bytestring ];
+ jailbreak = true;
description = "Reading and writing of tga image files";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -106878,8 +110589,8 @@ self: {
}:
mkDerivation {
pname = "th-desugar";
- version = "1.4.2";
- sha256 = "16l0khjx2wppnm9spp6mg659m95hxjkzfv3pjw5ays3z6clhx8b9";
+ version = "1.4.2.1";
+ sha256 = "1ys7j1hvvsl3pb8rrp336jw3q2cf0zfx12v8n4mz0wbg0xm7pwjr";
buildDepends = [ base containers mtl syb template-haskell ];
testDepends = [
base containers hspec HUnit mtl syb template-haskell
@@ -106908,7 +110619,6 @@ self: {
version = "0.0.0.2";
sha256 = "15sqf2jjnqcssq8hp80fk0ysgwqykjjc31gvvmzg4sypskpjs8cl";
buildDepends = [ base syb template-haskell ];
- configureFlags = [ "-fbase4" ];
homepage = "https://github.com/mokus0/th-extras";
description = "A grab bag of functions for use with Template Haskell";
license = stdenv.lib.licenses.publicDomain;
@@ -106944,9 +110654,11 @@ self: {
QuickCheck QuickCheck-GenT quickcheck-instances template-haskell
th-expand-syns
];
+ jailbreak = true;
homepage = "https://github.com/nikita-volkov/th-instance-reification";
description = "Fixed versions of instances reification functions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-instances" = callPackage
@@ -106970,6 +110682,7 @@ self: {
];
description = "A place to collect orphan instances for Template Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-kinds" = callPackage
@@ -106979,8 +110692,10 @@ self: {
version = "0.1.1";
sha256 = "0d8n0wnygdyi9qhkr7418f0227r3dcjwvmfhpw0kslryz0vqyf5b";
buildDepends = [ base containers mtl template-haskell ];
+ jailbreak = true;
description = "Automated kind inference in Template Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-lift" = callPackage
@@ -107012,6 +110727,7 @@ self: {
base bytestring containers directory doctest filepath QuickCheck
template-haskell text vector
];
+ jailbreak = true;
homepage = "http://github.com/bennofs/th-lift-instances/";
description = "Lift instances for template-haskell for common data types";
license = stdenv.lib.licenses.bsd3;
@@ -107091,9 +110807,11 @@ self: {
testDepends = [
aeson base bytestring HTTP HUnit network old-locale text time unix
];
+ jailbreak = true;
homepage = "http://github.com/pjones/themoviedb";
description = "Haskell API bindings for http://themoviedb.org";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"themplate" = callPackage
@@ -107113,6 +110831,7 @@ self: {
homepage = "http://github.com/bennofs/themplate/";
description = "themplate";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"theoremquest" = callPackage
@@ -107122,6 +110841,7 @@ self: {
version = "0.0.0";
sha256 = "05z0jppjbw70rlyh2qis27xp8vdx9fgn7i22ckxb0m2y75gffq61";
buildDepends = [ base HTTP json utf8-string ];
+ jailbreak = true;
description = "A common library for TheoremQuest, a theorem proving game";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -107135,8 +110855,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base HTTP network theoremquest ];
+ jailbreak = true;
description = "A simple client for the TheoremQuest theorem proving game";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"these" = callPackage
@@ -107152,6 +110874,7 @@ self: {
base bifunctors containers mtl profunctors semigroupoids semigroups
transformers vector
];
+ jailbreak = true;
homepage = "https://github.com/isomorphism/these";
description = "An either-or-both data type, with corresponding hybrid error/writer monad transformer";
license = stdenv.lib.licenses.bsd3;
@@ -107211,6 +110934,7 @@ self: {
homepage = "http://wiki.cs.pdx.edu/bartforge/thimk";
description = "Command-line spelling word suggestion tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"thorn" = callPackage
@@ -107226,6 +110950,7 @@ self: {
base bifunctors containers contravariant mtl profunctors random
template-haskell
];
+ jailbreak = true;
homepage = "https://github.com/Kinokkory/Thorn";
description = "Datatype Manipulation with Template Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -107310,9 +111035,11 @@ self: {
array base binary cairo containers deepseq filepath ghc-events glib
gtk mtl pango text time unix
];
+ configureFlags = [ "--ghc-options=-rtsopts" ];
homepage = "http://www.haskell.org/haskellwiki/ThreadScope";
description = "A graphical tool for profiling parallel Haskell programs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"threefish" = callPackage
@@ -107353,7 +111080,6 @@ self: {
transformers unordered-containers utf8-string vault websockets
websockets-snap
];
- configureFlags = [ "-f-rebug" "-fnetwork-uri" "-f-buildexamples" ];
homepage = "http://www.haskell.org/haskellwiki/Threepenny-gui";
description = "GUI framework that uses the web browser as a display";
license = stdenv.lib.licenses.bsd3;
@@ -107373,10 +111099,10 @@ self: {
network network-uri QuickCheck split text unordered-containers
vector
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://thrift.apache.org";
description = "Haskell bindings for the Apache Thrift RPC system";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"thrist" = callPackage
@@ -107399,6 +111125,7 @@ self: {
sha256 = "1yxmq7244a8bcw1jg00dqcpwzf8h1333c51k9d0v39flpkzp5qlc";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"thumbnail" = callPackage
@@ -107456,9 +111183,6 @@ self: {
time vector-space
];
buildTools = [ cpphs ];
- configureFlags = [
- "-f-werror" "-f-show-internal" "-f-lens" "-f-hlint" "-fbug-for-bug"
- ];
homepage = "https://github.com/liyang/thyme";
description = "A faster time library";
license = stdenv.lib.licenses.bsd3;
@@ -107467,24 +111191,26 @@ self: {
"tianbar" = callPackage
({ mkDerivation, aeson, base, blaze-html, blaze-markup, containers
, dbus, directory, gtk, gtk-traymanager, happstack-server, network
- , process, random, split, text, transformers, utf8-string, webkit
- , xdg-basedir, xmonad, xmonad-contrib
+ , network-uri, process, random, split, text, transformers
+ , utf8-string, webkit, xdg-basedir, xmonad, xmonad-contrib
}:
mkDerivation {
pname = "tianbar";
- version = "0.4.6.0";
- sha256 = "1gnx57yk65m5mh8j652y2r3c26zbv157lhmlf11dlxchpgi6qh3y";
+ version = "0.4.6.3";
+ sha256 = "1ns1gsjqq1xcdxqw7xplcax88ydfx8pn6id42n5idmcbgxkjzm9p";
isLibrary = true;
isExecutable = true;
buildDepends = [
aeson base blaze-html blaze-markup containers dbus directory gtk
- gtk-traymanager happstack-server network process random split text
- transformers utf8-string webkit xdg-basedir xmonad xmonad-contrib
+ gtk-traymanager happstack-server network network-uri process random
+ split text transformers utf8-string webkit xdg-basedir xmonad
+ xmonad-contrib
];
pkgconfigDepends = [ gtk ];
homepage = "https://github.com/koterpillar/tianbar";
description = "A desktop bar based on WebKit";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) gtk;};
"tic-tac-toe" = callPackage
@@ -107499,6 +111225,7 @@ self: {
homepage = "http://ecks.homeunix.net";
description = "Useful if reading \"Why FP matters\" by John Hughes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tickle" = callPackage
@@ -107517,7 +111244,6 @@ self: {
testDepends = [
base directory doctest filepath QuickCheck template-haskell
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/nicta/tickle";
description = "A port of @Data.Binary@";
license = stdenv.lib.licenses.bsd3;
@@ -107540,6 +111266,7 @@ self: {
homepage = "http://yaxu.org/tidal/";
description = "Pattern language for improvised music";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tidal-vis" = callPackage
@@ -107552,6 +111279,7 @@ self: {
homepage = "http://yaxu.org/tidal/";
description = "Visual rendering for Tidal patterns";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tie-knot" = callPackage
@@ -107561,6 +111289,7 @@ self: {
version = "0.2";
sha256 = "1iksr5h6cyyl88z35fbaskriv4vhc1696d3i1i3c171c0vq0hwg4";
buildDepends = [ base containers mtl recursion-schemes ];
+ jailbreak = true;
homepage = "https://github.com/ppetr/tie-knot";
description = "\"Ties the knot\" on a given set of structures that reference each other by keys";
license = "LGPL";
@@ -107591,6 +111320,7 @@ self: {
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Tiger Compiler of Universiteit Utrecht";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tightrope" = callPackage
@@ -107605,6 +111335,7 @@ self: {
aeson base bytestring containers http-types lens mtl text wai
wai-extra wreq
];
+ jailbreak = true;
description = "Nice API for a Slackbot";
license = stdenv.lib.licenses.mit;
}) {};
@@ -107624,6 +111355,7 @@ self: {
homepage = "https://github.com/YoshikuniJujo/tighttp/wiki";
description = "Tiny and Incrementally-Growing HTTP library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tilings" = callPackage
@@ -107655,6 +111387,7 @@ self: {
homepage = "http://www.timber-lang.org";
description = "The Timber Compiler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"time_1_5_0_1" = callPackage
@@ -107670,6 +111403,7 @@ self: {
base deepseq QuickCheck test-framework test-framework-quickcheck2
unix
];
+ jailbreak = true;
homepage = "https://github.com/haskell/time";
description = "A time library";
license = stdenv.lib.licenses.bsd3;
@@ -107694,9 +111428,11 @@ self: {
version = "1.1.4";
sha256 = "1k9adm922l431gyk8figx5df1n2xk5awir2fpijnvvyphrwk5p3l";
buildDepends = [ base time ];
+ jailbreak = true;
homepage = "http://semantic.org/TimeLib/";
description = "Data instances for the time package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"time-exts" = callPackage
@@ -107739,9 +111475,11 @@ self: {
blaze-textual bytestring convertible-text data-default failure
QuickCheck tagged time
];
+ jailbreak = true;
homepage = "http://cielonegro.org/HTTPDateTime.html";
description = "Parse and format HTTP/1.1 Date and Time strings";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"time-io-access" = callPackage
@@ -107751,6 +111489,7 @@ self: {
version = "0.1.0.0";
sha256 = "0n05lw6zpcfr3lwy2qn7v0j3ym1la9x0mak8szaxc2nbkyc8drrb";
buildDepends = [ base base-io-access time ];
+ jailbreak = true;
description = "IO Access for time";
license = stdenv.lib.licenses.gpl2;
}) {};
@@ -107773,7 +111512,6 @@ self: {
version = "0.1.0.1";
sha256 = "0q5d134cvcy7hlr473fanqqixqnqpqvz9ka2r45m59l6kzrws95c";
buildDepends = [ base old-locale time ];
- configureFlags = [ "-fold-locale" ];
homepage = "http://twitter.com/khibino/";
description = "Compatibility of TimeLocale between old-locale and time-1.5";
license = stdenv.lib.licenses.bsd3;
@@ -107790,9 +111528,11 @@ self: {
buildDepends = [
base intervals lens profunctors thyme vector-space
];
+ jailbreak = true;
homepage = "https://bitbucket.org/jfmueller/time-patterns";
description = "Patterns for reccurring events";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"time-recurrence" = callPackage
@@ -107808,7 +111548,6 @@ self: {
base data-ordlist HUnit mtl old-locale test-framework
test-framework-hunit time
];
- configureFlags = [ "-f-test-suite" ];
homepage = "http://github.com/hellertime/time-recurrence";
description = "Generate recurring dates";
license = stdenv.lib.licenses.gpl3;
@@ -107848,10 +111587,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base convertible parsec time ];
- configureFlags = [ "-f-build-test-suite" ];
+ jailbreak = true;
homepage = "http://cielonegro.org/W3CDateTime.html";
description = "Parse, format and convert W3C Date and Time";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"timecalc" = callPackage
@@ -107893,6 +111633,7 @@ self: {
homepage = "https://github.com/lambda-llama/timeout";
description = "Generalized sleep and timeout functions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"timeout-control" = callPackage
@@ -107906,9 +111647,11 @@ self: {
buildDepends = [
base ghc-prim lifted-base monad-control mtl transformers-base
];
+ jailbreak = true;
homepage = "http://github.com/alphaHeavy/timeout-control";
description = "Updatable timeouts as a Monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"timeout-with-results" = callPackage
@@ -107934,6 +111677,7 @@ self: {
buildDepends = [
attoparsec base bytestring containers convertible mtl time
];
+ jailbreak = true;
description = "Attoparsec parsers for various Date/Time formats";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -107981,6 +111725,7 @@ self: {
buildDepends = [
base lifted-base monad-control suspend transformers-base
];
+ jailbreak = true;
description = "Simple package that implements timers";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -108097,10 +111842,10 @@ self: {
isExecutable = true;
buildDepends = [ base mtl parsec pretty utf8-string vty ];
testDepends = [ HUnit test-framework test-framework-hunit ];
- configureFlags = [ "-f-test" ];
homepage = "http://patch-tag.com/r/nonowarn/tkhs/snapshot/current/content/pretty/README";
description = "Simple Presentation Utility";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tkyprof" = callPackage
@@ -108126,10 +111871,11 @@ self: {
vector wai wai-extra warp web-routes yesod yesod-core yesod-form
yesod-static
];
- configureFlags = [ "-f-devel" "-fproduction" ];
+ jailbreak = true;
homepage = "https://github.com/maoe/tkyprof";
description = "A web-based visualizer for GHC Profiling Reports";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tls" = callPackage
@@ -108142,8 +111888,8 @@ self: {
}:
mkDerivation {
pname = "tls";
- version = "1.2.13";
- sha256 = "1djjscmyn3wcnlzz1r0clz2nxa2y23rlyjk30xjsdp0m1sq0vdc3";
+ version = "1.2.15";
+ sha256 = "025l7zl50v813i3z184gi33fcffi9y5k9c6fccxsp6hzjjggy9m1";
buildDepends = [
asn1-encoding asn1-types async base byteable bytestring cereal
cipher-aes cipher-des cipher-rc4 crypto-cipher-types crypto-numbers
@@ -108156,7 +111902,6 @@ self: {
data-default-class hourglass mtl QuickCheck tasty tasty-quickcheck
x509 x509-validation
];
- configureFlags = [ "-fcompat" ];
homepage = "http://github.com/vincenthz/hs-tls";
description = "TLS/SSL protocol native implementation (Server and Client)";
license = stdenv.lib.licenses.bsd3;
@@ -108197,10 +111942,11 @@ self: {
base bytestring certificate cipher-aes cipher-rc4 crypto-pubkey
crypto-random cryptohash mtl network pem time tls vector
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
homepage = "http://github.com/vincenthz/hs-tls";
description = "TLS extra default values and helpers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tmpl" = callPackage
@@ -108230,6 +111976,7 @@ self: {
buildDepends = [
aeson aeson-pretty base bytestring optparse-applicative text time
];
+ jailbreak = true;
description = "A journaling program for Linux";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -108256,6 +112003,7 @@ self: {
homepage = "https://github.com/conal/to-haskell";
description = "A type class and some utilities for generating Haskell code";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"to-string-class" = callPackage
@@ -108267,6 +112015,7 @@ self: {
buildDepends = [ base ];
description = "Converting string-like types to Strings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"to-string-instances" = callPackage
@@ -108276,9 +112025,9 @@ self: {
version = "0.2";
sha256 = "1h5aq3shagzgh1j8sbslvi2rrkqv1djm595d522ci8hpj6h8vxl9";
buildDepends = [ to-string-class ];
- configureFlags = [ "-f-text" "-f-doc" "-f-bytestring" ];
description = "Instances for the ToString class";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"todos" = callPackage
@@ -108297,7 +112046,6 @@ self: {
directory dyre filepath Glob mtl parsec process regex-pcre syb time
utf8-string
];
- configureFlags = [ "-f-with_curses" ];
homepage = "http://gitorious.org/todos";
description = "Easy-to-use TODOs manager";
license = stdenv.lib.licenses.bsd3;
@@ -108334,9 +112082,11 @@ self: {
buildDepends = [
base containers old-locale strict time transformers utility-ht
];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/toilet/";
description = "Manage the toilet queue at the IMO";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"token-bucket" = callPackage
@@ -108347,7 +112097,6 @@ self: {
sha256 = "1l3axqdkrjf28pxhrvdvlpf9wi79czsfvhi33w4v2wbj0g00j9ii";
buildDepends = [ base ];
testDepends = [ base time ];
- configureFlags = [ "-fuse-cbits" ];
homepage = "https://github.com/hvr/token-bucket";
description = "Rate limiter using lazy bucket algorithm";
license = stdenv.lib.licenses.gpl3;
@@ -108379,8 +112128,8 @@ self: {
base bytestring containers criterion filepath gf haskell98 HUnit
iconv progression QuickCheck
];
- configureFlags = [ "-f-test" "-f-benchmark" ];
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tokyocabinet-haskell" = callPackage
@@ -108391,10 +112140,10 @@ self: {
sha256 = "1v6s39q8a6cnc0ggpspz9i0xw6aih4ixn9bhn4hwf9kwgcspardg";
buildDepends = [ base bytestring mtl ];
extraLibraries = [ tokyocabinet ];
- configureFlags = [ "-f-buildtest" ];
homepage = "http://tom-lpsd.github.com/tokyocabinet-haskell/";
description = "Haskell binding of Tokyo Cabinet";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) tokyocabinet;};
"tokyotyrant-haskell" = callPackage
@@ -108418,6 +112167,7 @@ self: {
version = "0.1.0.3";
sha256 = "0dk7s5fng3vybdqgqn9vqg7k6sjw4zgqld51i926lgqnixgpmw8z";
buildDepends = [ base OpenAL stm vector ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/tomato-rubato";
description = "Easy to use library for audio programming";
license = stdenv.lib.licenses.bsd3;
@@ -108451,7 +112201,6 @@ self: {
array base Cabal containers deepseq directory filepath QuickCheck
random
];
- configureFlags = [ "-f-llvm" "-fhavedeepseq" ];
homepage = "http://functionalley.eu";
description = "Utilities used by other packages";
license = "GPL";
@@ -108470,10 +112219,10 @@ self: {
buildDepends = [
ALUT array base filepath GLUT OpenAL OpenGL random
];
- configureFlags = [ "-f-ftgl" "-f-pdflaby" "-fsound" ];
homepage = "http://home.arcor.de/chr_bauer/topkata.html";
description = "OpenGL Arcade Game";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"torch" = callPackage
@@ -108486,6 +112235,7 @@ self: {
homepage = "http://patch-tag.com/repo/torch/home";
description = "Simple unit test library (or framework)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"torrent" = callPackage
@@ -108567,10 +112317,6 @@ self: {
prettyclass QuickCheck stm test-framework test-framework-hunit
test-framework-quickcheck2 test-framework-th vector-space
];
- configureFlags = [
- "-f-time15" "-frandom1013" "-fexceptions06" "-f-buildmiscprograms"
- "-f-buildsampleprograms" "-f-buildtoyfmf" "-f-forcechar8"
- ];
description = "Assorted decision procedures for SAT, Max-SAT, PB, MIP, etc";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -108621,6 +112367,7 @@ self: {
version = "0.1";
sha256 = "1fiz1v9d4ck8na68cywha53vgbgdk6iqad1zv6pj3lq0pwvkx6aw";
buildDepends = [ base containers mtl ];
+ jailbreak = true;
description = "functions for logging the arguments and results of function calls";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -108632,6 +112379,7 @@ self: {
version = "0.1";
sha256 = "0c5nsq9x59rmdkyvcrr1v94kjya48nhl9pnsad6xdmh77msf33xy";
buildDepends = [ base ];
+ jailbreak = true;
description = "Easy lightweight tracing of function arguments and results for ad hoc debugging";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -108643,7 +112391,6 @@ self: {
version = "2014.11.15";
sha256 = "17yrlfn54il2xf8xnl1b06cwnmmyzkqxb0k7pqycrjmwsxzqkig2";
buildDepends = [ base containers mtl pretty ];
- configureFlags = [ "-fbase4" ];
description = "Simple evaluation trace";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -108670,6 +112417,7 @@ self: {
buildDepends = [ base containers glib ];
description = "Client library for Tracker metadata database, indexer and search tool";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"trajectory" = callPackage
@@ -108687,9 +112435,11 @@ self: {
aeson attoparsec base bytestring cmdargs containers http-enumerator
http-types regexpr text unordered-containers uri
];
+ jailbreak = true;
homepage = "https://github.com/mike-burns/trajectory";
description = "Tools and a library for working with Trajectory";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"transactional-events" = callPackage
@@ -108701,6 +112451,7 @@ self: {
buildDepends = [ base ListZipper MonadPrompt stm ];
description = "Transactional events, based on Concurrent ML semantics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"transf" = callPackage
@@ -108735,6 +112486,7 @@ self: {
];
description = "Generic representation of tree transformations";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"transformers_0_4_2_0" = callPackage
@@ -108754,8 +112506,8 @@ self: {
}:
mkDerivation {
pname = "transformers-abort";
- version = "0.5";
- sha256 = "1l1aid4y77rnjgca41iaflimkd7h3028kgg2yw6pszv11g12cavc";
+ version = "0.5.0.1";
+ sha256 = "0s0vvjii3h7vw8kg3xf1ig6fkxdw7z69czwdyg6nvsrcc9kbs9gm";
buildDepends = [
base data-default-class monad-control pointed semigroupoids
transformers transformers-base
@@ -108773,7 +112525,6 @@ self: {
sha256 = "0bklr7piiipnh99jnqx262pdyb9hzk852d6hzk5sqppvz5ndcf4y";
editedCabalFile = "48e267c7ce3e0cbc1493d5d7dc3fd7301ae42d229857fd21240a3b915665545e";
buildDepends = [ base stm transformers ];
- configureFlags = [ "-forphaninstances" ];
homepage = "https://github.com/mvv/transformers-base";
description = "Lift computations from the bottom of a transformer stack";
license = stdenv.lib.licenses.bsd3;
@@ -108786,7 +112537,7 @@ self: {
version = "0.3.3.4";
sha256 = "1hab41ggyaxr4xn2szv8y9fg9np8zi8ifhimr33fspid1jz14xr5";
buildDepends = [ base transformers ];
- configureFlags = [ "-fthree" "-fthree" "-f-two" ];
+ configureFlags = [ "-fthree" ];
homepage = "http://github.com/ekmett/transformers-compat/";
description = "A small compatibility shim exposing the new types from transformers 0.3 and 0.4 to older Haskell platforms.";
license = stdenv.lib.licenses.bsd3;
@@ -108799,6 +112550,7 @@ self: {
version = "0.1";
sha256 = "0kvhl5s1js6i639hc6c4ib9jmgy4l1503ifs30a9ajrk97nagp6d";
buildDepends = [ base transformers ];
+ jailbreak = true;
homepage = "http://github.com/aristidb/transformers-compose";
description = "Arrow-like / category-like composition for transformers";
license = stdenv.lib.licenses.bsd3;
@@ -108818,9 +112570,11 @@ self: {
base data-easy directory either errors haskell-src-exts hlint hspec
HUnit QuickCheck text transformers unix
];
+ jailbreak = true;
homepage = "https://github.com/jcristovao/transformers-convert";
description = "Sensible conversions between some of the monad transformers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"transformers-free" = callPackage
@@ -108841,9 +112595,11 @@ self: {
version = "0.1.0.0";
sha256 = "0m1vvdfi661mmxm5rghsfnwcjd2r0r7ryc3jk0nwlzs0kaw5xi1s";
buildDepends = [ base transformers ];
+ jailbreak = true;
homepage = "https://github.com/JanBessai/transformers-runnable";
description = "A unified interface for the run operation of monad transformers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"transformers-supply" = callPackage
@@ -108866,6 +112622,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base fingertree ];
+ jailbreak = true;
description = "Integer sets with a constant time translate operation";
license = stdenv.lib.licenses.mit;
}) {};
@@ -108880,6 +112637,7 @@ self: {
homepage = "http://github.com/nfjinjing/translate";
description = "Haskell binding to Google's AJAX Language API for Translation and Detection";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"traverse-with-class" = callPackage
@@ -108902,9 +112660,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base gtk process ];
+ jailbreak = true;
homepage = "http://projects.haskell.org/traypoweroff";
description = "Tray Icon application to PowerOff / Reboot computer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tree-monad" = callPackage
@@ -108941,7 +112701,7 @@ self: {
buildDepends = [
base Cabal containers filepath ghc html parsec regex-posix
];
- configureFlags = [ "-f-testing" ];
+ jailbreak = true;
homepage = "http://rampa.sk/static/treemap-html.html";
description = "Generates HTML for Data.Tree as TreeMap";
license = stdenv.lib.licenses.bsd3;
@@ -108961,10 +112721,11 @@ self: {
base Cabal containers directory filepath ghc parsec regex-posix
split treemap-html xml
];
- configureFlags = [ "-f-testing" ];
+ jailbreak = true;
homepage = "http://rampa.sk/static/treemap-html.html";
description = "Treemap related commands for producing foldable TreeMap HTML";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"treeviz" = callPackage
@@ -108980,6 +112741,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Treeviz";
description = "Visualization of computation decomposition trees";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tremulous-query" = callPackage
@@ -109005,6 +112767,7 @@ self: {
sha256 = "11jx2jf6vi7368ys39mz0ziy6xknbi0z87926n2y16am6k2h25k3";
description = "Deprecated";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"triangulation" = callPackage
@@ -109021,6 +112784,7 @@ self: {
homepage = "http://www.dinkla.net/";
description = "triangulation of polygons";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"trifecta" = callPackage
@@ -109058,6 +112822,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bio bytestring simpleargs ];
+ jailbreak = true;
description = "Search for, annotate and trim poly-A tail";
license = "GPL";
}) {};
@@ -109101,8 +112866,8 @@ self: {
({ mkDerivation, base, containers, template-haskell, time }:
mkDerivation {
pname = "true-name";
- version = "0.0.0.0";
- sha256 = "1c3lfsc9yg88k08pn57nvddi2aqqpsgx5ksa2x4h1brksiybx1ah";
+ version = "0.0.0.1";
+ sha256 = "1qp70i08hf7w90zyc4kz9hnyx8qaf925sy8x01r1z3dbxd473dgm";
buildDepends = [ base template-haskell ];
testDepends = [ base containers template-haskell time ];
homepage = "https://github.com/liyang/true-name";
@@ -109134,6 +112899,7 @@ self: {
buildDepends = [ base containers mtl time transformers ];
description = "A Transaction Framework for Web Applications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tsession-happstack" = callPackage
@@ -109145,6 +112911,7 @@ self: {
buildDepends = [ base happstack-server transformers tsession ];
description = "A Transaction Framework for Happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tskiplist" = callPackage
@@ -109168,9 +112935,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base gloss stm vector ];
+ jailbreak = true;
homepage = "https://github.com/davnils/tsp-viz";
description = "Real time TSP tour visualization";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tsparse" = callPackage
@@ -109186,7 +112955,7 @@ self: {
buildDepends = [
base Decimal parsec pretty process random split time
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
homepage = "http://www.github.com/massysett/tsparse";
description = "Parses U.S. federal Thrift Savings Plan PDF quarterly statements";
license = stdenv.lib.licenses.bsd3;
@@ -109211,8 +112980,10 @@ self: {
version = "0.0.2";
sha256 = "0q6g2wcjddb9r1l9fxpn2qcssw5gyfwsam15rc3q6xjqbwz7fm41";
buildDepends = [ base bytestring unix ];
+ jailbreak = true;
description = "Interface to TUN/TAP drivers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tup-functor" = callPackage
@@ -109247,6 +113018,7 @@ self: {
version = "2.0";
sha256 = "0bgwsxq8wrh76hhbwadv0rag4c7dx3644zrh2aflnsych0rncvd7";
buildDepends = [ base combinat ];
+ jailbreak = true;
description = "Enum instances for tuples where the digits increase with the same speed";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -109270,6 +113042,7 @@ self: {
version = "0.1.0.2";
sha256 = "1qq1sla89410wr9pnkmj100izkraad1gr163815p3dvh7qi04c7w";
buildDepends = [ base lens template-haskell ];
+ jailbreak = true;
homepage = "http://github.com/jfischoff/tuple-lenses";
description = "Stock FieldN combos and generators";
license = stdenv.lib.licenses.bsd3;
@@ -109305,9 +113078,11 @@ self: {
version = "0.0.1";
sha256 = "0kcmcg1fxsslpzpg766r9hr8aysg0s5fyang2xc0aa77zi71qyi3";
buildDepends = [ base template-haskell ];
+ jailbreak = true;
homepage = "http://github.com/diegoeche/tupleinstances";
description = "Functor, Applicative and Monad for n-ary tuples";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tuples-homogenous-h98" = callPackage
@@ -109356,6 +113131,7 @@ self: {
version = "0.1.0.1";
sha256 = "1l5y94gac9s55wgn6w610pqb63c8l20vmlpsnmgbzw1f9vbnzgiw";
buildDepends = [ base containers lens stm transformers ];
+ jailbreak = true;
homepage = "http://github.com/jfischoff/tweak";
description = "A library for incremental computing";
license = stdenv.lib.licenses.bsd3;
@@ -109383,6 +113159,7 @@ self: {
buildDepends = [
base network text twentefp-number twentefp-websockets
];
+ jailbreak = true;
description = "Used as Lab Assignments Environment at Univeriteit Twente";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -109419,8 +113196,10 @@ self: {
buildDepends = [
base twentefp-eventloop-graphics twentefp-number
];
+ jailbreak = true;
description = "RoseTree type and show functions for lab assignment of University of Twente";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twentefp-trees" = callPackage
@@ -109448,6 +113227,7 @@ self: {
case-insensitive concurrent-extra containers entropy io-streams mtl
network random SHA text
];
+ jailbreak = true;
description = "A fork of the popular websockets package. It is used for the practical assignments of the University of Twente. A sensible and clean way to write WebSocket-capable servers in Haskell.";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -109472,9 +113252,11 @@ self: {
twitter-conduit
];
testDepends = [ base hspec QuickCheck ];
+ jailbreak = true;
homepage = "https://github.com/suzuki-shin/twhs";
description = "CLI twitter client";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twidge" = callPackage
@@ -109493,10 +113275,11 @@ self: {
hslogger MissingH mtl network old-locale parsec regex-posix text
time unix utf8-string
];
- configureFlags = [ "-f-withbitly" ];
+ jailbreak = true;
homepage = "http://software.complete.org/twidge";
description = "Unix Command-Line Twitter and Identica Client";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twilight-stm" = callPackage
@@ -109509,6 +113292,7 @@ self: {
homepage = "http://proglang.informatik.uni-freiburg.de/projects/twilight/";
description = "STM library with safe irrevocable I/O and inconsistency repair";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twill" = callPackage
@@ -109525,8 +113309,10 @@ self: {
bytestring cryptohash data-default datetime errors old-locale
QuickCheck text time
];
+ jailbreak = true;
description = "Twilio API interaction";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twiml" = callPackage
@@ -109537,9 +113323,11 @@ self: {
sha256 = "0ipc8i1hbsjdz6rp7ks25w0zbrcv4byp0791aw9rrdpyqzdir0zx";
buildDepends = [ base network xml ];
testDepends = [ base Cabal lens ];
+ jailbreak = true;
homepage = "https://github.com/markandrus/twiml-haskell";
description = "TwiML library for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twine" = callPackage
@@ -109556,6 +113344,7 @@ self: {
homepage = "http://twine.james-sanders.com";
description = "very simple template language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twisty" = callPackage
@@ -109569,8 +113358,10 @@ self: {
buildDepends = [
array base containers data-memocombinators MonadRandom parallel
];
+ jailbreak = true;
description = "Simulator of twisty puzzles à la Rubik's Cube";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twitch" = callPackage
@@ -109594,6 +113385,7 @@ self: {
homepage = "https://github.com/jfischoff/twitch";
description = "A high level file watcher DSL";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twitter" = callPackage
@@ -109611,6 +113403,7 @@ self: {
];
description = "A Haskell-based CLI Twitter client";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twitter-conduit" = callPackage
@@ -109643,13 +113436,10 @@ self: {
template-haskell text time transformers transformers-base
twitter-types twitter-types-lens
];
- configureFlags = [
- "-f-run-integrated-test" "-f-build-samples" "-flens-aeson"
- "-fnetwork-uri"
- ];
homepage = "https://github.com/himura/twitter-conduit";
description = "Twitter API package with conduit interface and Streaming API support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twitter-enumerator" = callPackage
@@ -109666,9 +113456,11 @@ self: {
containers enumerator http-enumerator http-types text tls-extra
transformers
];
+ jailbreak = true;
homepage = "https://github.com/himura/twitter-enumerator";
description = "Twitter API package with enumerator interface and Streaming API support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twitter-feed" = callPackage
@@ -109686,9 +113478,11 @@ self: {
testDepends = [
base containers HUnit test-framework test-framework-hunit
];
+ jailbreak = true;
homepage = "https://github.com/stackbuilders/twitter-feed";
description = "Client for fetching Twitter timeline via Oauth";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twitter-types" = callPackage
@@ -109710,6 +113504,7 @@ self: {
homepage = "https://github.com/himura/twitter-types";
description = "Twitter JSON parser and types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"twitter-types-lens" = callPackage
@@ -109723,6 +113518,7 @@ self: {
homepage = "https://github.com/himura/twitter-types-lens";
description = "Twitter JSON types (lens powered)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tx" = callPackage
@@ -109736,9 +113532,11 @@ self: {
buildDepends = [
base bytestring cereal safecopy stm transformers
];
+ jailbreak = true;
homepage = "https://github.com/mcschroeder/tx";
description = "Persistent transactions on top of STM";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"txt-sushi" = callPackage
@@ -109810,6 +113608,7 @@ self: {
homepage = "http://www.decidable.org/haskell/typalyze";
description = "Analyzes Haskell source files for easy reference";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-aligned" = callPackage
@@ -109849,6 +113648,7 @@ self: {
];
description = "Type-level serialization of type constructors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-digits" = callPackage
@@ -109860,6 +113660,7 @@ self: {
buildDepends = [ base template-haskell type-spine ];
description = "Arbitrary-base type-level digits";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-eq" = callPackage
@@ -109897,6 +113698,7 @@ self: {
homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check";
description = "Type equality check";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-functions" = callPackage
@@ -109957,6 +113759,7 @@ self: {
homepage = "http://code.haskell.org/type-level";
description = "Type-level programming library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-level-bst" = callPackage
@@ -109989,6 +113792,7 @@ self: {
version = "1.0.0.1";
sha256 = "1mwnsz5rbqnwskzf4cyv05zxha86afqh68b5ppwvizrvwf4jav2r";
buildDepends = [ base transformers type-level-natural-number ];
+ jailbreak = true;
description = "High-level combinators for performing inductive operations";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -110000,6 +113804,7 @@ self: {
version = "1.0";
sha256 = "0vql5q5zhbhmwv0wqqb0xi4ayqdsz149rymhs730c583pq0h9r3w";
buildDepends = [ base type-level-natural-number ];
+ jailbreak = true;
description = "Basic operations on type-level natural numbers";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -110025,6 +113830,7 @@ self: {
buildDepends = [ base ghc-prim ];
description = "Type-level sets (with value-level counterparts and various operations)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-level-tf" = callPackage
@@ -110076,6 +113882,7 @@ self: {
buildDepends = [ base template-haskell type-digits type-spine ];
description = "Type-level comparison operator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-ord-spine-cereal" = callPackage
@@ -110091,6 +113898,7 @@ self: {
];
description = "Generic type-level comparison of types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-prelude" = callPackage
@@ -110103,6 +113911,7 @@ self: {
homepage = "http://code.atnnn.com/projects/type-prelude";
description = "Partial port of prelude to the type level. Requires GHC 7.6.1.";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-settheory" = callPackage
@@ -110118,6 +113927,7 @@ self: {
];
description = "Sets and functions-as-relations in the type system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-spine" = callPackage
@@ -110129,6 +113939,7 @@ self: {
buildDepends = [ base template-haskell ];
description = "A spine-view on types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-structure" = callPackage
@@ -110153,9 +113964,11 @@ self: {
template-haskell text th-instance-reification time transformers
unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/nikita-volkov/type-structure";
description = "Type structure analysis";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-sub-th" = callPackage
@@ -110181,6 +113994,7 @@ self: {
homepage = "http://github.com/jfischoff/type-sub-th";
description = "Substitute types for other types with Template Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"type-unary" = callPackage
@@ -110207,9 +114021,11 @@ self: {
sha256 = "1ps9rkysx7zbcqkz51ahayg2jivlihiqdlb27iq7bf9aa7383k6v";
buildDepends = [ base template-haskell transformers ];
testDepends = [ base ];
+ jailbreak = true;
homepage = "http://github.com/bennofs/typeable-th";
description = "Automatic deriving of TypeableN instances with Template Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"typedquery" = callPackage
@@ -110224,10 +114040,10 @@ self: {
aeson base bytestring haskell-src-meta parsec template-haskell text
transformers
];
- configureFlags = [ "-f-debug-typed-queries" ];
homepage = "https://github.com/tolysz/typedquery";
description = "Parser for SQL augmented with types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"typehash" = callPackage
@@ -110239,6 +114055,7 @@ self: {
buildDepends = [ base binary bytestring mtl pureMD5 syb ];
description = "Create a unique hash value for a type";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"typelevel-tensor" = callPackage
@@ -110254,10 +114071,10 @@ self: {
array base HUnit numeric-prelude QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [ "-ftest" ];
homepage = "https://github.com/nushio3/typelevel-tensor";
description = "Tensors whose ranks and dimensions type-inferred and type-checked";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"typeof" = callPackage
@@ -110269,7 +114086,6 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base process ];
- configureFlags = [ "-fsmall_base" ];
description = "Small script for inferring types";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -110289,6 +114105,7 @@ self: {
homepage = "http://github.com/mikeizbicki/typeparams/";
description = "Lens-like interface for type level parameters; allows unboxed unboxed vectors and supercompilation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"typesafe-endian" = callPackage
@@ -110321,6 +114138,7 @@ self: {
homepage = "http://github.com/paf31/typescript-docs";
description = "A documentation generator for TypeScript Definition files";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"typical" = callPackage
@@ -110368,11 +114186,11 @@ self: {
test-framework-hunit test-framework-quickcheck2 test-framework-th
time tzdata unix vector
];
- configureFlags = [ "-ftemplate-haskell" ];
preConfigure = "export TZDIR=${tzdata}/share/zoneinfo";
homepage = "https://github.com/nilcons/haskell-tz";
description = "Efficient time zone handling";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tzdata" = callPackage
@@ -110408,8 +114226,10 @@ self: {
array base BNFC-meta cmdargs containers mtl parsec pretty split
transformers
];
+ jailbreak = true;
description = "A simplistic dependently-typed language with parametricity";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ua-parser" = callPackage
@@ -110431,6 +114251,7 @@ self: {
file-embed filepath HUnit pcre-light syb test-framework
test-framework-hunit test-framework-quickcheck2 text yaml
];
+ jailbreak = true;
description = "A library for parsing User-Agent strings, official Haskell port of ua-parser";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -110474,9 +114295,9 @@ self: {
sha256 = "0v71qw494klyh3ar8qdp7wx7kn7629iy83xham9b7jpmvk2p76bv";
buildDepends = [ base bytestring ];
extraLibraries = [ icu ];
- configureFlags = [ "-f-bytestring_in_base" ];
description = "String encoding conversion with ICU";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) icu;};
"udbus" = callPackage
@@ -110493,7 +114314,6 @@ self: {
base binary bytestring cereal containers ghc-prim mtl network unix
utf8-string
];
- configureFlags = [ "-f-executable" "-f-test" ];
homepage = "http://github.com/vincenthz/hs-udbus";
description = "Small DBus implementation";
license = stdenv.lib.licenses.bsd3;
@@ -110508,7 +114328,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring udbus xml ];
- configureFlags = [ "-f-executable" ];
homepage = "http://github.com/vincenthz/hs-udbus";
description = "Model API for udbus introspection and definitions";
license = stdenv.lib.licenses.bsd3;
@@ -110537,10 +114356,10 @@ self: {
isExecutable = true;
buildDepends = [ base bytestring posix-paths select unix ];
pkgconfigDepends = [ libudev ];
- configureFlags = [ "-f-examples" ];
homepage = "https://github.com/pxqr/udev";
description = "libudev bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { libudev = null;};
"uglymemo" = callPackage
@@ -110601,6 +114420,7 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring split ];
+ jailbreak = true;
description = "hex dumper for UTF-8 text";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -110618,9 +114438,11 @@ self: {
buildDepends = [
async base bytestring bytestring-lexing cmdargs deepseq network
];
+ jailbreak = true;
homepage = "https://github.com/hvr/uhttpc";
description = "Minimal HTTP client library optimized for benchmarking";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ui-command" = callPackage
@@ -110674,15 +114496,14 @@ self: {
}:
mkDerivation {
pname = "unagi-chan";
- version = "0.3.0.1";
- sha256 = "1s1bqrzxryp44xihd1xy465jmqiiphxkjkkcclj69m7l9rcpcv51";
+ version = "0.3.0.2";
+ sha256 = "1a6jpr6gynpfh3kqfq42arzxfij5ms18rqhl0xlf49iscj0c15lg";
isLibrary = true;
isExecutable = true;
buildDepends = [ atomic-primops base ghc-prim primitive ];
testDepends = [
atomic-primops base containers ghc-prim primitive
];
- configureFlags = [ "-f-dev" "-f-compare-benchmarks" ];
description = "Fast concurrent queues with a Chan-like API, and more";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -110694,6 +114515,7 @@ self: {
version = "0.1.1.0";
sha256 = "1mns1qmxv1xmrrsbhr1ywami37gk416rwxi5p3ry6j88cbf4i4zg";
buildDepends = [ base io-streams unagi-chan ];
+ jailbreak = true;
description = "Unagi Chan IO-Streams";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -110707,7 +114529,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-test" ];
homepage = "http://haskell.org/haskellwiki/unamb";
description = "Unambiguous choice";
license = stdenv.lib.licenses.bsd3;
@@ -110723,6 +114544,7 @@ self: {
homepage = "http://github.com/luqui/unamb-custom";
description = "Functional concurrency with unamb using a custom scheduler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unbound" = callPackage
@@ -110775,9 +114597,11 @@ self: {
version = "0.4";
sha256 = "02j4i2dms15vb87ar3m99hvpxrjdakljyql708zs716k1jdm7614";
buildDepends = [ base unbounded-delays units units-defs ];
+ jailbreak = true;
homepage = "https://github.com/jcristovao/unbouded-delays-units";
description = "Thread delays and timeouts using proper time units";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unboxed-containers" = callPackage
@@ -110790,6 +114614,7 @@ self: {
homepage = "http://github.com/ekmett/unboxed-containers";
description = "Self-optimizing unboxed sets using view patterns and data families";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unexceptionalio" = callPackage
@@ -110812,9 +114637,11 @@ self: {
version = "0.8.1";
sha256 = "0y3y8m271spkmzc3182v8j06kspkzv03yxiscaa1vvhm2sbqp2is";
buildDepends = [ base ghc-prim QuickCheck random transformers ];
+ jailbreak = true;
homepage = "https://github.com/sjoerdvisscher/unfoldable";
description = "Class of data structures that can be unfolded";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ungadtagger" = callPackage
@@ -110852,7 +114679,6 @@ self: {
buildDepends = [
base containers mtl uni-events uni-htk uni-reactor uni-util
];
- configureFlags = [ "-f-debug" ];
homepage = "http://www.informatik.uni-bremen.de/uniform/wb/";
description = "Graphs";
license = "LGPL";
@@ -110870,7 +114696,6 @@ self: {
base containers directory uni-events uni-posixutil uni-reactor
uni-util
];
- configureFlags = [ "-f-debug" ];
homepage = "http://www.informatik.uni-bremen.de/htk/";
description = "Graphical User Interface for Haskell Programs";
license = "LGPL";
@@ -110932,7 +114757,6 @@ self: {
array base bytestring containers directory ghc-prim mtl network
old-time parsec
];
- configureFlags = [ "-f-parsec1" "-f-debug" "-fbase4" ];
homepage = "http://www.informatik.uni-bremen.de/uniform/wb/";
description = "Utilities for the uniform workbench";
license = "LGPL";
@@ -110948,7 +114772,6 @@ self: {
isExecutable = true;
buildDepends = [ base containers ];
testDepends = [ base containers utility-ht ];
- configureFlags = [ "-f-buildexamples" ];
homepage = "http://code.haskell.org/~thielema/unicode/";
description = "Construct and transform unicode characters";
license = stdenv.lib.licenses.bsd3;
@@ -110973,10 +114796,10 @@ self: {
sha256 = "1smfc7a62xi6y4sc0vai2l0nljxl9dr9l5zkqi17n14cq36ppfwb";
buildDepends = [ base bytestring compact-string ];
extraLibraries = [ icu ];
- configureFlags = [ "-fsplit-base" ];
homepage = "http://sloompie.reinier.de/unicode-normalization/";
description = "Unicode normalization using the ICU library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) icu;};
"unicode-prelude" = callPackage
@@ -111008,6 +114831,7 @@ self: {
version = "0.1.1.2";
sha256 = "0y1awqrf1x2in158linszma69zyz3zp14h3rmdx3vmbmif9fvbyv";
buildDepends = [ base containers ];
+ jailbreak = true;
description = "Unicode alternatives for common functions and operators";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -111022,6 +114846,7 @@ self: {
isExecutable = true;
buildDepends = [ attoparsec base directory text ];
testDepends = [ attoparsec base text ];
+ jailbreak = true;
homepage = "https://github.com/Zankoku-Okuno/unicoder";
description = "Make writing in unicode easy";
license = stdenv.lib.licenses.bsd3;
@@ -111034,7 +114859,6 @@ self: {
version = "0.9.0";
sha256 = "0fdnpcpcpjlxlwxpqlawwbgqhs1p9lrksy5ln5isyvr06hwqh7ki";
buildDepends = [ base containers logict mtl ];
- configureFlags = [ "-fsplitbase" "-fbase4" ];
homepage = "http://code.haskell.org/~wren/";
description = "Simple generic unification algorithms";
license = stdenv.lib.licenses.bsd3;
@@ -111099,7 +114923,6 @@ self: {
buildDepends = [
base containers hashable syb unordered-containers
];
- configureFlags = [ "-fseparate_syb" "-ftypeable_fingerprint" ];
homepage = "http://community.haskell.org/~ndm/uniplate/";
description = "Help writing simple, concise and fast generic operations";
license = stdenv.lib.licenses.bsd3;
@@ -111117,6 +114940,7 @@ self: {
testDepends = [
base non-empty QuickCheck transformers utility-ht
];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/unique-logic/";
description = "Solve simple simultaneous equations";
license = stdenv.lib.licenses.bsd3;
@@ -111136,9 +114960,11 @@ self: {
testDepends = [
base non-empty QuickCheck transformers utility-ht
];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/unique-logic-tf/";
description = "Solve simple simultaneous equations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"uniqueid" = callPackage
@@ -111151,6 +114977,7 @@ self: {
homepage = "http://github.com/sebfisch/uniqueid/wikis";
description = "Splittable Unique Identifier Supply";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"units" = callPackage
@@ -111212,9 +115039,11 @@ self: {
sha256 = "1ab27rwnp8ncfn5sm4llxjxx7fbp495sl1838g8z9hishr5dgddl";
buildDepends = [ base ];
testDepends = [ base ];
+ jailbreak = true;
homepage = "https://bitbucket.org/xnyhps/haskell-unittyped/";
description = "An extendable library for type-safe computations including units";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"universal-binary" = callPackage
@@ -111281,6 +115110,7 @@ self: {
buildDepends = [
adjunctions base comonad universe-instances-base void
];
+ jailbreak = true;
homepage = "https://github.com/dmwit/universe";
description = "Universe instances for types from select extra packages";
license = stdenv.lib.licenses.bsd3;
@@ -111335,6 +115165,7 @@ self: {
homepage = "http://github.com/jfishcoff/universe-th";
description = "Construct a Dec's ancestor list";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unix_2_7_1_0" = callPackage
@@ -111368,7 +115199,6 @@ self: {
version = "0.4.1.4";
sha256 = "0jxk7j5pz2kgfpqr4hznndjg31pqj5xg2qfc5308fcn9xyg1myps";
buildDepends = [ base unix ];
- configureFlags = [ "-f-old-time" ];
homepage = "http://github.com/jystic/unix-compat";
description = "Portable POSIX-compatibility layer";
license = stdenv.lib.licenses.bsd3;
@@ -111426,9 +115256,11 @@ self: {
transformers unix
];
testDepends = [ base bytestring conduit hspec transformers unix ];
+ jailbreak = true;
homepage = "https://github.com/snoyberg/conduit";
description = "Run processes on Unix systems, with a conduit interface (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unix-pty-light" = callPackage
@@ -111470,6 +115302,7 @@ self: {
buildDepends = [ array base mtl unix ];
description = "Unlambda interpreter";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unlit" = callPackage
@@ -111483,6 +115316,7 @@ self: {
buildDepends = [ base directory text ];
description = "Tool to convert literate code between styles or to code";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unm-hip" = callPackage
@@ -111512,7 +115346,6 @@ self: {
base ChasingBottoms containers hashable HUnit QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2
];
- configureFlags = [ "-f-debug" ];
homepage = "https://github.com/tibbe/unordered-containers";
description = "Efficient hashing-based container types";
license = stdenv.lib.licenses.bsd3;
@@ -111530,9 +115363,11 @@ self: {
testDepends = [
base hashable hspec HUnit rematch unordered-containers
];
+ jailbreak = true;
homepage = "http://github.com/tcrayford/rematch";
description = "Rematch support for unordered containers";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unpack-funcs" = callPackage
@@ -111548,6 +115383,7 @@ self: {
];
description = "Monad transformers that mirror worker-wrapper transformations";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unroll-ghc-plugin" = callPackage
@@ -111595,7 +115431,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base ];
- configureFlags = [ "-f-examples" ];
homepage = "http://github.com/konn/unsafely";
description = "Flexible access control for unsafe operations and instances";
license = stdenv.lib.licenses.bsd3;
@@ -111616,6 +115451,7 @@ self: {
];
description = "Solve Boggle-like word games";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unusable-pkg" = callPackage
@@ -111644,6 +115480,7 @@ self: {
buildDepends = [
base directory filepath mtl parsec split transformers
];
+ jailbreak = true;
description = "Generates pathnames to up directories";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -111660,8 +115497,10 @@ self: {
aeson attoparsec base bytestring cryptohash hex http-conduit
http-types old-locale time
];
+ jailbreak = true;
description = "Haskell client for Uploadcare";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"upskirt" = callPackage
@@ -111673,6 +115512,7 @@ self: {
buildDepends = [ base bytestring ];
description = "Binding to upskirt";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ureader" = callPackage
@@ -111694,9 +115534,11 @@ self: {
network old-locale opml optparse-applicative parallel-io split
tagsoup terminal-size text time xml
];
+ jailbreak = true;
homepage = "https://github.com/pxqr/ureader";
description = "Minimalistic CLI RSS reader";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"urembed" = callPackage
@@ -111714,9 +115556,11 @@ self: {
base bytestring cake3 directory filepath language-javascript
mime-types mtl optparse-applicative process syb text
];
+ jailbreak = true;
homepage = "http://github.com/grwlf/urembed";
description = "Ur/Web static content generator";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"uri" = callPackage
@@ -111744,9 +115588,11 @@ self: {
base bytestring conduit containers deepseq failure monad-control
network system-fileio system-filepath text transformers
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/xml";
description = "Read and write URIs (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"uri-encode" = callPackage
@@ -111760,7 +115606,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring network-uri text utf8-string ];
- configureFlags = [ "-fnetwork-uri" "-f-tools" ];
description = "Unicode aware uri-encoding";
license = "unknown";
}) {};
@@ -111777,9 +115622,11 @@ self: {
base bytestring containers enumerator failure network text
transformers
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/xml";
description = "Read and write URIs (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"uri-enumerator-file" = callPackage
@@ -111796,9 +115643,11 @@ self: {
network system-fileio system-filepath text transformers
uri-enumerator
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/xml";
description = "uri-enumerator backend for the file scheme (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"uri-template" = callPackage
@@ -111810,7 +115659,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base containers utf8-string ];
- configureFlags = [ "-fnew-base" ];
description = "URI template library for Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -111869,10 +115717,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base bytestring containers mtl network old-time ];
- configureFlags = [ "-fsmall_base" ];
homepage = "http://code.haskell.org/~dons/code/urlcheck";
description = "Parallel link checker";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"urldecode" = callPackage
@@ -111887,6 +115735,7 @@ self: {
homepage = "https://github.com/beastaugh/urldecode";
description = "Decode percent-encoded strings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"urldisp-happstack" = callPackage
@@ -111898,6 +115747,7 @@ self: {
buildDepends = [ base bytestring happstack-server mtl ];
description = "Simple, declarative, expressive URL routing -- on happstack";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"urlencoded" = callPackage
@@ -111909,10 +115759,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base mtl network split ];
- configureFlags = [ "-f-test" ];
homepage = "https://github.com/pheaver/urlencoded";
description = "Generate or process x-www-urlencoded data";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"urlpath" = callPackage
@@ -111939,6 +115789,7 @@ self: {
sha256 = "1wxgq445nzfly9773bjx3mr15l8ga4840d2q1zw50kk07fwxx6h7";
buildDepends = [ base parsec ];
testDepends = [ base hspec ];
+ jailbreak = true;
homepage = "https://github.com/pxqr/urn";
description = "Universal Resource Names";
license = stdenv.lib.licenses.bsd3;
@@ -111957,9 +115808,11 @@ self: {
buildDepends = [
base filepath mtl optparse-applicative parsec process syb
];
+ jailbreak = true;
homepage = "http://github.com/grwlf/urxml";
description = "XML parser-printer supporting Ur/Web syntax extensions";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"usb" = callPackage
@@ -111990,8 +115843,10 @@ self: {
base base-unicode-symbols bindings-libusb iteratee monad-control
transformers usb
];
+ jailbreak = true;
description = "Iteratee enumerators for the usb package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"usb-id-database" = callPackage
@@ -112008,7 +115863,6 @@ self: {
base base-unicode-symbols bytestring containers
containers-unicode-symbols parsimony
];
- configureFlags = [ "-f-example" ];
homepage = "https://github.com/roelvandijk/usb-id-database";
description = "A database of USB identifiers";
license = stdenv.lib.licenses.bsd3;
@@ -112026,9 +115880,11 @@ self: {
base base-unicode-symbols bindings-libusb iteratee monad-control
usb vector
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/usb-iteratee";
description = "Iteratee enumerators for the usb package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"usb-safe" = callPackage
@@ -112043,9 +115899,11 @@ self: {
base base-unicode-symbols bindings-libusb bytestring iteratee
regions text transformers usb
];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/usb-safe/";
description = "Type-safe communication with USB devices";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"utf8-env" = callPackage
@@ -112090,7 +115948,6 @@ self: {
version = "0.3.8";
sha256 = "1h29dn0scsfkhmkg14ywq9178lw40ah1r36w249zfzqr02y7qxc0";
buildDepends = [ base bytestring ];
- configureFlags = [ "-f-bytestring-in-base" ];
homepage = "http://github.com/glguy/utf8-string/";
description = "Support for reading and writing UTF8 Strings";
license = stdenv.lib.licenses.bsd3;
@@ -112217,15 +116074,14 @@ self: {
}:
mkDerivation {
pname = "uuagc";
- version = "0.9.52";
- sha256 = "04qa3ahaj544xsjba7zw411nmcs92qp9v2a3fn5cvns3xnh1l8b6";
+ version = "0.9.52.1";
+ sha256 = "1191a1jr1s76wjdrfzafy1ibf7a7xpg54dvwhwz4kr1jrc9jn2cq";
isLibrary = true;
isExecutable = true;
buildDepends = [
array base containers directory filepath ghc-prim haskell-src-exts
mtl uuagc-cabal uulib
];
- configureFlags = [ "-f-with-loag" "-f-bootstrap_external" ];
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Attribute Grammar System of Universiteit Utrecht";
license = stdenv.lib.licenses.bsd3;
@@ -112367,10 +116223,11 @@ self: {
sha256 = "1psbdsq20nr28cr9ni2mwzwkpz3p20n1xqp0m0m9qafz66d2vi08";
editedCabalFile = "e289ff93c365248deb93e6268b57be8a47d724a39702887979fd842c80577508";
buildDepends = [ base ghc-prim ];
- configureFlags = [ "-f-safe" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~dons/code/uvector";
description = "Fast unboxed arrays with a flexible interface";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"uvector-algorithms" = callPackage
@@ -112383,6 +116240,7 @@ self: {
homepage = "http://code.haskell.org/~dolio/";
description = "Efficient algorithms for uvector unboxed arrays";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"uxadt" = callPackage
@@ -112423,6 +116281,7 @@ self: {
homepage = "https://gitorious.org/hsv4l2";
description = "interface to Video For Linux Two (V4L2)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"v4l2-examples" = callPackage
@@ -112434,9 +116293,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base GLUT v4l2 ];
+ jailbreak = true;
homepage = "https://gitorious.org/hsv4l2";
description = "video for linux two examples";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vacuum" = callPackage
@@ -112467,6 +116328,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/vacuum-cairo";
description = "Visualize live Haskell data structures using vacuum, graphviz and cairo";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vacuum-graphviz" = callPackage
@@ -112476,6 +116338,7 @@ self: {
version = "2.1.0.1";
sha256 = "093ba6n30a6gyifnk3bd50rkx8qldjqq9vsk92pnq152ibs36b2m";
buildDepends = [ base filepath graphviz vacuum ];
+ jailbreak = true;
description = "A library for transforming vacuum graphs into GraphViz output";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -112494,10 +116357,10 @@ self: {
base bitmap bitmap-opengl directory filepath GLUT network OpenGL
pretty process stb-image vacuum
];
- configureFlags = [ "-fbase4" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "Visualize live Haskell data structures using vacuum, graphviz and OpenGL";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vacuum-ubigraph" = callPackage
@@ -112507,6 +116370,7 @@ self: {
version = "0.2.0.2";
sha256 = "0zpag42dr2763ddrwdy7744lqkd6207ljfw3bqm6db3a1128861z";
buildDepends = [ base containers hubigraph vacuum ];
+ jailbreak = true;
description = "Visualize Haskell data structures using vacuum and Ubigraph";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -112537,6 +116401,7 @@ self: {
version = "0.1.0.1";
sha256 = "14gpkb6pbkvmny17g2gpq6i6kq7ahmcnkgrcrwm72vda12wxsl78";
buildDepends = [ base containers MonadRandom ];
+ jailbreak = true;
homepage = "https://i.joelt.io/symbols.html";
description = "Valid operator/module characters";
license = stdenv.lib.licenses.mit;
@@ -112550,6 +116415,7 @@ self: {
sha256 = "19d02sblyxg73prlrmlcs4vclzxzg2pzlrp67f2kx94nsw0v3l4p";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"validation" = callPackage
@@ -112567,7 +116433,6 @@ self: {
testDepends = [
base directory doctest filepath QuickCheck template-haskell
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/validation";
description = "A data-type like Either but with an accumulating Applicative";
license = stdenv.lib.licenses.bsd3;
@@ -112590,6 +116455,7 @@ self: {
test-framework test-framework-hunit test-framework-quickcheck2 text
transformers
];
+ jailbreak = true;
homepage = "https://github.com/mavenraven/validations";
description = "A nice way to define field validations in Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -112620,9 +116486,11 @@ self: {
base deepseq directory dlist fgl graphviz haskell-src-exts mtl
optparse-applicative process uniplate
];
+ jailbreak = true;
homepage = "https://github.com/benzrf/vampire";
description = "Analyze and visualize expression trees";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"var" = callPackage
@@ -112637,12 +116505,10 @@ self: {
testDepends = [
base QuickCheck test-framework test-framework-quickcheck2
];
- configureFlags = [
- "-fghc-conc-sync" "-fstrict-modifyref" "-fsafe-st"
- ];
homepage = "http://github.com/sonyandy/var";
description = "Mutable variables and tuples";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"varan" = callPackage
@@ -112675,7 +116541,7 @@ self: {
base complex-generic floatshow integer-gmp
type-level-natural-number
];
- configureFlags = [ "-ffast" ];
+ jailbreak = true;
homepage = "https://gitorious.org/variable-precision";
description = "variable-precision floating point";
license = stdenv.lib.licenses.bsd3;
@@ -112689,6 +116555,7 @@ self: {
sha256 = "0garxmxm11qhp2wm7xib4nrlkfiqbyzf3glkdbqb582nip0sb1rp";
buildDepends = [ base mtl stm ];
testDepends = [ base hspec mtl QuickCheck stm ];
+ jailbreak = true;
homepage = "https://github.com/prophile/variables";
description = "Monads with variables, without deep magic";
license = stdenv.lib.licenses.mit;
@@ -112702,7 +116569,6 @@ self: {
version = "0.3.0.4";
sha256 = "0ah6qrg71krc87f4vjy4b4shdd0mgyil8fikb3j6fl4kfwlg67jn";
buildDepends = [ base containers hashable unordered-containers ];
- configureFlags = [ "-fuseghc" ];
homepage = "https://github.com/HeinrichApfelmus/vault";
description = "a persistent store for values of arbitrary types";
license = stdenv.lib.licenses.bsd3;
@@ -112739,7 +116605,6 @@ self: {
version = "0.0.2";
sha256 = "1lp1wf440n7kinmxz7la0gyfqfdlip6f0bn8pmwkxd1dqyrvg5cg";
buildDepends = [ base process ];
- configureFlags = [ "-fsplit-base" ];
description = "Facilities for accessing the version control revision of the current directory";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -112757,10 +116622,10 @@ self: {
buildDepends = [
base directory filepath gtk3 mtl process text vcswrapper
];
- configureFlags = [ "-fgtk3" ];
homepage = "https://github.com/forste/haskellVCSGUI";
description = "GUI library for source code management systems";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vcswrapper" = callPackage
@@ -112788,7 +116653,6 @@ self: {
version = "0.4.7";
sha256 = "1049jh8rcxfnyckz5m5asdlyafqszlig96k387raldyfzbrf8f4d";
buildDepends = [ base random ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "A low-dimensional linear algebra library, tailored to computer graphics";
license = stdenv.lib.licenses.bsd3;
@@ -112801,6 +116665,7 @@ self: {
version = "0.1.0.4";
sha256 = "1kxsjsiqqpi7k0xz597z7r2fd45s38plgk6jplzxagg0i3bm0q4g";
buildDepends = [ base random ];
+ jailbreak = true;
homepage = "http://github.com/cpdurham/vect-floating";
description = "A low-dimensional linear algebra library, operating on the Floating typeclass";
license = stdenv.lib.licenses.bsd3;
@@ -112826,7 +116691,6 @@ self: {
version = "0.4.6.1";
sha256 = "1qp98j6bgldjcs71pd7iqc5sjf1ixb1jj0l267hw532j4yf81dig";
buildDepends = [ base OpenGL vect ];
- configureFlags = [ "-fopengl29" ];
homepage = "http://code.haskell.org/~bkomuves/";
description = "OpenGL support for the `vect' low-dimensional linear algebra library";
license = stdenv.lib.licenses.bsd3;
@@ -112846,9 +116710,6 @@ self: {
base QuickCheck random template-haskell test-framework
test-framework-quickcheck2 transformers
];
- configureFlags = [
- "-f-internalchecks" "-f-unsafechecks" "-fboundschecks"
- ];
homepage = "https://github.com/haskell/vector";
description = "Efficient Arrays";
license = stdenv.lib.licenses.bsd3;
@@ -112866,10 +116727,6 @@ self: {
isExecutable = true;
buildDepends = [ base bytestring mtl mwc-random primitive vector ];
testDepends = [ base bytestring containers QuickCheck vector ];
- configureFlags = [
- "-fproperties" "-f-bench" "-f-internalchecks" "-f-unsafechecks"
- "-fboundschecks"
- ];
homepage = "http://code.haskell.org/~dolio/";
description = "Efficient algorithms for vector arrays";
license = stdenv.lib.licenses.bsd3;
@@ -112908,6 +116765,7 @@ self: {
buildDepends = [ base deepseq vector ];
description = "A buffer compatible with Data.Vector.*";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vector-bytestring" = callPackage
@@ -112924,10 +116782,11 @@ self: {
base bytestring criterion deepseq ghc-prim primitive vector
];
testDepends = [ base directory QuickCheck random ];
- configureFlags = [ "-f-benchmark" ];
+ jailbreak = true;
homepage = "https://github.com/basvandijk/vector-bytestring";
description = "ByteStrings as type synonyms of Storable Vectors of Word8s";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vector-clock" = callPackage
@@ -112963,8 +116822,10 @@ self: {
base conduit HUnit primitive QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2 vector
];
+ jailbreak = true;
description = "Conduit utilities for vectors";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vector-fftw" = callPackage
@@ -112979,6 +116840,7 @@ self: {
homepage = "http://hackage.haskell.org/package/vector-fftw";
description = "A binding to the fftw library for one-dimensional vectors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { fftw3 = null;};
"vector-functorlazy" = callPackage
@@ -112992,6 +116854,7 @@ self: {
homepage = "http://github.com/mikeizbicki/vector-functorlazy/";
description = "vectors that perform the fmap operation in constant time";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vector-heterogenous" = callPackage
@@ -113029,6 +116892,7 @@ self: {
version = "0.1.0.1";
sha256 = "13xk2iwdwrnmdm33z0fmj4sg3irih4ayl3q5pgz31qs9kcsbhi0s";
buildDepends = [ base collections-api template-haskell vector ];
+ jailbreak = true;
homepage = "http://github.com/kreuzschlitzschraubenzieher/vector-instances-collections";
description = "Instances of the Data.Collections classes for Data.Vector.*";
license = stdenv.lib.licenses.bsd3;
@@ -113056,6 +116920,7 @@ self: {
homepage = "http://code.haskell.org/~dons/code/vector-random";
description = "Generate vectors filled with high quality pseudorandom numbers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vector-read-instances" = callPackage
@@ -113068,6 +116933,7 @@ self: {
homepage = "http://www.tbi.univie.ac.at/~choener/";
description = "(deprecated) Read instances for 'Data.Vector'";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vector-space" = callPackage
@@ -113088,6 +116954,7 @@ self: {
version = "0.1.0.1";
sha256 = "1s5hh7dlbw1ai3nqqcavrqgidddfj99mi0gmhf2x2zn6ag86xr8b";
buildDepends = [ base containers vector-space ];
+ jailbreak = true;
homepage = "https://github.com/conklech/vector-space-map";
description = "vector-space operations for finite maps using Data.Map";
license = stdenv.lib.licenses.mit;
@@ -113128,9 +116995,11 @@ self: {
version = "0.3.0.1";
sha256 = "19spzrk64j2rgyi15dvs8gfbx3nc79ybssaxkv8dn9df4fwksv91";
buildDepends = [ base primitive vector ];
+ jailbreak = true;
homepage = "http://github.com/geezusfreeek/vector-static";
description = "Statically checked sizes on Data.Vector";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vector-strategies" = callPackage
@@ -113163,6 +117032,7 @@ self: {
version = "1.0.0.0";
sha256 = "0wai72bqb1vp4p7ml1yj2jdmkjglihai9vhmgj7ri6y2qgzkpwly";
buildDepends = [ base regex-pcre ];
+ jailbreak = true;
homepage = "https://github.com/VerbalExpressions/HaskellVerbalExpressions";
description = "Regular expressions made easy";
license = stdenv.lib.licenses.mit;
@@ -113179,6 +117049,7 @@ self: {
homepage = "http://github.com/tomahawkins/verilog";
description = "Verilog parser and DSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vhd" = callPackage
@@ -113201,7 +117072,6 @@ self: {
base byteable bytestring cereal cryptohash filepath mmap QuickCheck
random test-framework test-framework-quickcheck2 text time
];
- configureFlags = [ "-f-executable" ];
homepage = "https://github.com/vincenthz/hs-vhd";
description = "Provides functions to inspect and manipulate virtual hard disk (VHD) files";
license = stdenv.lib.licenses.bsd3;
@@ -113225,6 +117095,7 @@ self: {
version = "1.0";
sha256 = "0kzwp58lki3jvx09n6w8rc97idhy947xqik72p2fqjyigkymv04h";
buildDepends = [ base mtl ];
+ jailbreak = true;
description = "Views allow you to run a State monad on part of a state";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -113265,10 +117136,11 @@ self: {
time transformers unix unordered-containers vector warp yesod
yesod-core yesod-platform
];
- configureFlags = [ "-f-no-client" "-f-no-server" ];
+ jailbreak = true;
homepage = "http://github.com/michaelxavier/vigilance";
description = "An extensible dead-man's switch system";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vimus" = callPackage
@@ -113315,6 +117187,7 @@ self: {
homepage = "http://www.vintage-basic.net";
description = "Interpreter for microcomputer-era BASIC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vinyl" = callPackage
@@ -113325,6 +117198,7 @@ self: {
sha256 = "026h8lgz487d9xhfjscnfpykgv1ppk944hl8mb6z7y3c1vh4g63b";
buildDepends = [ base ghc-prim ];
testDepends = [ base doctest lens singletons ];
+ jailbreak = true;
description = "Extensible Records";
license = stdenv.lib.licenses.mit;
}) {};
@@ -113362,9 +117236,10 @@ self: {
aeson base bytestring template-haskell text vinyl
];
testDepends = [ base hlint ];
- configureFlags = [ "-f-documentation" ];
+ jailbreak = true;
description = "Provide json instances automagically to vinyl types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vinyl-utils" = callPackage
@@ -113393,9 +117268,11 @@ self: {
base bytestring Cabal directory file-embed filepath mtl process
safe split
];
+ jailbreak = true;
homepage = "https://github.com/Paczesiowa/virthualenv";
description = "Virtual Haskell Environment builder";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vision" = callPackage
@@ -113416,6 +117293,7 @@ self: {
];
description = "An XMMS2 client";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"visual-graphrewrite" = callPackage
@@ -113435,9 +117313,11 @@ self: {
ipprint isevaluated lazysmallcheck parallel pretty process
strict-concurrency svgcairo value-supply
];
+ jailbreak = true;
homepage = "http://github.com/zsol/visual-graphrewrite/";
description = "Visualize the graph-rewrite steps of a Haskell program";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"visual-prof" = callPackage
@@ -113454,10 +117334,11 @@ self: {
base containers directory filepath haskell-src-exts mtl pretty
process regexpr split uniplate
];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://github.com/djv/VisualProf";
description = "Create a visual profile of a program's source code";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vk-aws-route53" = callPackage
@@ -113498,7 +117379,6 @@ self: {
version = "0.7";
sha256 = "0ivgr4minxb5v56v4kbd045iwqk1c2w89c830731l75mkg8qa6wq";
buildDepends = [ base ghc-prim hashable semigroups ];
- configureFlags = [ "-f-safe" ];
homepage = "http://github.com/ekmett/void";
description = "A Haskell 98 logically uninhabited data type";
license = stdenv.lib.licenses.bsd3;
@@ -113523,9 +117403,11 @@ self: {
version = "0.1.2";
sha256 = "09z6nbsj4rqzhksk75glrsrmcs21p8x0jmcpqs6rc9iizz79db8g";
buildDepends = [ base bytestring ];
+ jailbreak = true;
homepage = "https://github.com/cartazio/Vowpal-Utils";
description = "Vowpal Wabbit utilities";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"voyeur" = callPackage
@@ -113538,6 +117420,7 @@ self: {
homepage = "https://github.com/sethfowler/hslibvoyeur";
description = "Haskell bindings for libvoyeur";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vte" = callPackage
@@ -113552,6 +117435,7 @@ self: {
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the VTE library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) vte;};
"vtegtk3" = callPackage
@@ -113566,6 +117450,7 @@ self: {
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the VTE library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.gnome) vte;};
"vty" = callPackage
@@ -113596,6 +117481,7 @@ self: {
homepage = "https://github.com/coreyoconnor/vty";
description = "A simple terminal UI library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vty-examples" = callPackage
@@ -113614,9 +117500,11 @@ self: {
mtl parallel parsec QuickCheck random string-qq terminfo text unix
utf8-string vector vty
];
+ jailbreak = true;
homepage = "https://github.com/coreyoconnor/vty";
description = "Examples programs using the vty library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vty-menu" = callPackage
@@ -113628,8 +117516,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base vty ];
+ jailbreak = true;
description = "A lib for displaying a menu and getting a selection using VTY";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vty-ui" = callPackage
@@ -113648,10 +117538,10 @@ self: {
mtl old-locale QuickCheck random regex-base stm text time unix
vector vty
];
- configureFlags = [ "-f-demos" "-f-no-tests" ];
homepage = "http://jtdaugherty.github.com/vty-ui/";
description = "An interactive terminal user interface library for Vty";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"vty-ui-extras" = callPackage
@@ -113661,8 +117551,10 @@ self: {
version = "0.1";
sha256 = "1c60bvhk1riilj7sl7x7nw4d9yg56f2k0ps1aivmjm0q4brhgnx7";
buildDepends = [ base regex-base regex-pcre vty vty-ui ];
+ jailbreak = true;
description = "Extra vty-ui functionality not included in the core library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai" = callPackage
@@ -113671,8 +117563,8 @@ self: {
}:
mkDerivation {
pname = "wai";
- version = "3.0.2.1";
- sha256 = "0aia14y1vy6yppfhwalmbcpnv1ypk8a08jbj05mk3w96hsaxnc19";
+ version = "3.0.2.2";
+ sha256 = "1whfpycwcj2xx81llvzgrmi5fxkjfqjipfdkld17jbd6klgfkyzc";
buildDepends = [
base blaze-builder bytestring http-types network text vault
];
@@ -113723,8 +117615,8 @@ self: {
}:
mkDerivation {
pname = "wai-app-static";
- version = "3.0.0.5";
- sha256 = "1v3zy79s5y4rdp9m6mg8mynsajjdf9zjlx5q9lnfk0d8pq3k8bwl";
+ version = "3.0.0.6";
+ sha256 = "0ilwlawffvib1p98q5jcc5m2i93n7iwmszwlbkb3ihlh1wz5q2b8";
isLibrary = true;
isExecutable = true;
buildDepends = [
@@ -113739,7 +117631,6 @@ self: {
base bytestring hspec http-date http-types mime-types network
old-locale text time transformers unix-compat wai wai-extra zlib
];
- configureFlags = [ "-f-print" ];
homepage = "http://www.yesodweb.com/book/web-application-interface";
description = "WAI application for static serving";
license = stdenv.lib.licenses.mit;
@@ -113818,6 +117709,7 @@ self: {
homepage = "http://www.yesodweb.com/book/web-application-interface";
description = "WAI support for server-sent events (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-extra" = callPackage
@@ -113862,6 +117754,7 @@ self: {
];
description = "Run CGI apps on WAI";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-graceful" = callPackage
@@ -113871,9 +117764,11 @@ self: {
version = "0.1.0.1";
sha256 = "0a06yrakg9gwjjj4f9nr474j8i8xz642aj56m8vaq621i1kn7jaq";
buildDepends = [ base http-types mtl resourcet unix wai ];
+ jailbreak = true;
homepage = "https://bitbucket.org/dpwiz/wai-graceful";
description = "Graceful shutdown for WAI applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-handler-devel" = callPackage
@@ -113891,9 +117786,11 @@ self: {
attoparsec base bytestring cmdargs directory hint http-types
network old-time text time transformers wai wai-extra warp
];
+ jailbreak = true;
homepage = "http://github.com/yesodweb/wai";
description = "WAI server that automatically reloads code after modification. (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-handler-fastcgi" = callPackage
@@ -113932,6 +117829,7 @@ self: {
version = "2.0.0.2";
sha256 = "0h7d78d641bjsnmxsnz4b7s9pw4x0y0xi8bld51y4nqnbjl8gvac";
buildDepends = [ base bytestring wai wai-extra ];
+ jailbreak = true;
homepage = "http://www.yesodweb.com/book/web-application-interface";
description = "Wai handler to SCGI (deprecated)";
license = stdenv.lib.licenses.mit;
@@ -113949,9 +117847,11 @@ self: {
base bytestring containers enumerator snap-core snap-server
transformers wai
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/wai-handler-snap";
description = "Web Application Interface handler using snap-server. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-handler-webkit" = callPackage
@@ -113965,6 +117865,7 @@ self: {
homepage = "https://github.com/yesodweb/wai/tree/master/wai-handler-webkit";
description = "Turn WAI applications into standalone GUIs using QtWebkit";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { QtWebKit = null;};
"wai-hastache" = callPackage
@@ -113981,6 +117882,7 @@ self: {
homepage = "https://github.com/singpolyma/wai-hastache";
description = "Nice wrapper around hastache for use with WAI";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-hmac-auth" = callPackage
@@ -114001,9 +117903,11 @@ self: {
cryptohash hspec http-types monad-loops mtl transformers wai
wai-extra
];
+ jailbreak = true;
homepage = "https://github.com/raptros/wai-hmac-auth";
description = "hmac authentication tools for WAI apps";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-lite" = callPackage
@@ -114017,8 +117921,10 @@ self: {
buildDepends = [
base bytestring conduit http-types text transformers wai wai-extra
];
+ jailbreak = true;
description = "DEPCRECATED (use package \"simple\" instead) A minimalist web framework for WAI web applications";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-logger" = callPackage
@@ -114054,6 +117960,7 @@ self: {
];
description = "A logging system for preforked WAI apps";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-middleware-cache" = callPackage
@@ -114073,9 +117980,11 @@ self: {
base bytestring http-types HUnit test-framework
test-framework-hunit wai wai-test
];
+ jailbreak = true;
homepage = "https://github.com/akaspin/wai-middleware-cache";
description = "Caching middleware for WAI";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-middleware-cache-redis" = callPackage
@@ -114092,9 +118001,11 @@ self: {
conduit hedis hedis-pile http-types transformers wai
wai-middleware-cache
];
+ jailbreak = true;
homepage = "https://github.com/akaspin/wai-middleware-cache-redis";
description = "Redis backend for wai-middleware-cache";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-middleware-catch" = callPackage
@@ -114104,9 +118015,11 @@ self: {
version = "0.3.6";
sha256 = "1vh5sad3zhdwxqbmivmy9hkbnq9vrv4k6k17rjk4f79lv2xcq56h";
buildDepends = [ base bytestring http-types lifted-base wai ];
+ jailbreak = true;
homepage = "https://github.com/akaspin/wai-middleware-catch";
description = "Wai error catching middleware";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-middleware-etag" = callPackage
@@ -114122,9 +118035,11 @@ self: {
base base64-bytestring bytestring cryptohash filepath http-date
http-types unix-compat unordered-containers wai
];
+ jailbreak = true;
homepage = "https://github.com/ameingast/wai-middleware-etag";
description = "WAI ETag middleware for static files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-middleware-headers" = callPackage
@@ -114137,6 +118052,7 @@ self: {
homepage = "http://github.com/seanhess/wai-middleware-headers";
description = "cors and addHeaders for WAI";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-middleware-route" = callPackage
@@ -114155,9 +118071,11 @@ self: {
base bytestring http-types HUnit test-framework
test-framework-hunit text wai wai-test
];
+ jailbreak = true;
homepage = "https://github.com/akaspin/wai-middleware-route";
description = "Wai dispatch middleware";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-middleware-static" = callPackage
@@ -114238,6 +118156,7 @@ self: {
version = "1.0.0.1";
sha256 = "1827mk64vyivdc12z4h230c4b993i6g8wl4sl0364jda586z58p7";
buildDepends = [ base text wai ];
+ jailbreak = true;
homepage = "http://github.com/mdmarek/wai-router";
description = "Provides basic routing on URL paths for WAI";
license = stdenv.lib.licenses.mit;
@@ -114255,9 +118174,11 @@ self: {
aeson base blaze-builder bytestring http-types mtl template-haskell
text wai yesod-routes
];
+ jailbreak = true;
homepage = "https://github.com/ajnsit/wai-routes";
description = "Typesafe URLs for Wai applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-routing" = callPackage
@@ -114333,6 +118254,7 @@ self: {
homepage = "https://github.com/singpolyma/wai-session-tokyocabinet";
description = "Session store based on Tokyo Cabinet";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-static-cache" = callPackage
@@ -114369,6 +118291,7 @@ self: {
homepage = "https://github.com/gregwebs/wai-static-pages";
description = "generate static html pages from a WAI application";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-test" = callPackage
@@ -114381,6 +118304,7 @@ self: {
homepage = "http://www.yesodweb.com/book/web-application-interface";
description = "Unit test framework (built on HUnit) for WAI applications. (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-throttler" = callPackage
@@ -114392,8 +118316,10 @@ self: {
version = "0.1.0.3";
sha256 = "0wfbmjdw8k63fs4425fpnq24xssl9yf16dpy6cwkz68dn0vs0dkd";
buildDepends = [ base bytestring containers http-types time wai ];
+ jailbreak = true;
description = "Wai middleware for request throttling";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wai-util" = callPackage
@@ -114430,7 +118356,6 @@ self: {
http-types network text transformers wai wai-app-static warp
websockets
];
- configureFlags = [ "-fexample" ];
homepage = "http://github.com/yesodweb/wai";
description = "Provide a bridge betweeen WAI and the websockets package";
license = stdenv.lib.licenses.mit;
@@ -114482,9 +118407,6 @@ self: {
simple-sendfile streaming-commons text time transformers unix
unix-compat void wai
];
- configureFlags = [
- "-f-warp-debug" "-fallow-sendfilefd" "-f-network-bytestring"
- ];
homepage = "http://github.com/yesodweb/wai";
description = "A fast, light-weight web server for WAI applications";
license = stdenv.lib.licenses.mit;
@@ -114499,9 +118421,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base data-default dyre http-types wai warp ];
+ jailbreak = true;
homepage = "http://tanakh.jp";
description = "Dynamic configurable warp HTTP server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"warp-static" = callPackage
@@ -114518,6 +118442,7 @@ self: {
base bytestring cmdargs containers directory mime-types text
wai-app-static wai-extra warp
];
+ jailbreak = true;
homepage = "http://github.com/yesodweb/wai";
description = "Static file server based on Warp and wai-app-static (deprecated)";
license = stdenv.lib.licenses.mit;
@@ -114529,8 +118454,8 @@ self: {
}:
mkDerivation {
pname = "warp-tls";
- version = "3.0.1.2";
- sha256 = "1xcfvk5b4hgcppmwh21fba26slsiywqfvmzhn0cgq2kvqdxn2s72";
+ version = "3.0.1.3";
+ sha256 = "0x0y1g79il7l3vx3888p6vjf7jpqwpc46xb54pl3cxw3j9jjd4gc";
buildDepends = [
base bytestring cprng-aes data-default-class network
streaming-commons tls wai warp
@@ -114555,9 +118480,10 @@ self: {
base bytestring certificate conduit crypto-random http-types
network network-conduit pem tls tls-extra unix wai warp
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
description = "set group and user id before running server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"watchdog" = callPackage
@@ -114583,6 +118509,7 @@ self: {
base basic-prelude containers hinotify system-fileio
system-filepath
];
+ jailbreak = true;
description = "Opinionated filesystem watcher";
license = stdenv.lib.licenses.mit;
}) {};
@@ -114636,9 +118563,11 @@ self: {
base binary bytestring bytestring-lexing bytestring-show
delimited-text
];
+ jailbreak = true;
homepage = "http://code.haskell.org/~StefanKersten/code/wavesurfer";
description = "Parse WaveSurfer files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wavy" = callPackage
@@ -114655,6 +118584,7 @@ self: {
base binary bytestring containers filepath pretty-show riff split
vector
];
+ jailbreak = true;
homepage = "http://bitbucket.org/robertmassaioli/wavy";
description = "Process WAVE files in Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -114673,7 +118603,6 @@ self: {
buildDepends = [
attoparsec base bytestring containers setlocale utf8-string
];
- configureFlags = [ "-f-cli" "-fsplit-base" ];
homepage = "http://github.com/solidsnack/wcwidth/";
description = "Native wcwidth";
license = stdenv.lib.licenses.bsd3;
@@ -114690,9 +118619,11 @@ self: {
buildDepends = [
aeson attoparsec base bytestring HTTP network utf8-string vector
];
+ jailbreak = true;
homepage = "https://github.com/cvb/hs-weather-api.git";
description = "Weather api implemented in haskell";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"web-browser-in-haskell" = callPackage
@@ -114704,6 +118635,7 @@ self: {
buildDepends = [ base gtk webkit ];
description = "Web Browser In Haskell";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"web-css" = callPackage
@@ -114713,6 +118645,7 @@ self: {
version = "0.1.0";
sha256 = "1havyvd6f0xagynxpar2jsmx5x1izwl7wgxia0wbwbzaj0fzn2k2";
buildDepends = [ base text ];
+ jailbreak = true;
description = "Simple functions for CSS";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -114730,7 +118663,7 @@ self: {
buildDepends = [
base bytestring directory failure old-locale text time
];
- configureFlags = [ "-f-buildtests" ];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/web-encodings/tree/master";
description = "Encapsulate multiple web encoding in a single package. (deprecated)";
license = stdenv.lib.licenses.bsd3;
@@ -114769,6 +118702,7 @@ self: {
homepage = "http://github.com/cmoore/web-mongrel2";
description = "Bindings for the Mongrel2 web server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"web-page" = callPackage
@@ -114786,7 +118720,6 @@ self: {
base blaze-builder blaze-html bytestring clay containers jmacro
lens mtl Stream text vector wl-pprint-text
];
- configureFlags = [ "-f-testprogram" ];
homepage = "http://hub.darcs.net/ertes/web-page";
description = "Monoidally construct web pages";
license = stdenv.lib.licenses.bsd3;
@@ -114883,10 +118816,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base path-pieces template-haskell text ];
- configureFlags = [ "-f-buildtests" ];
+ jailbreak = true;
homepage = "http://docs.yesodweb.com/web-routes-quasi/";
description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"web-routes-regular" = callPackage
@@ -114927,8 +118861,10 @@ self: {
version = "0.19.1";
sha256 = "0pm1v9wqlzi6cg92lajbwbnhsdm509371i8mvyvvj6qa5m58cdib";
buildDepends = [ base transformers web-routes ];
+ jailbreak = true;
description = "Extends web-routes with some transformers instances for RouteT";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"web-routes-wai" = callPackage
@@ -114964,7 +118900,6 @@ self: {
transformers-base unordered-containers vector zip-archive
];
testDepends = [ base parallel text ];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "https://github.com/kallisti-dev/hs-webdriver";
description = "a Haskell client for the Selenium WebDriver protocol";
license = stdenv.lib.licenses.bsd3;
@@ -115013,9 +118948,11 @@ self: {
unordered-containers vector zip-archive
];
testDepends = [ base parallel text ];
+ jailbreak = true;
homepage = "https://github.com/kallisti-dev/hs-webdriver";
description = "a Haskell client for the Selenium WebDriver protocol (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"webidl" = callPackage
@@ -115031,6 +118968,7 @@ self: {
buildDepends = [
base bytestring HSFFIG LEXER parsec pretty utf8-env utf8-string
];
+ jailbreak = true;
description = "Parser and Pretty Printer for the Web IDL Language";
license = stdenv.lib.licenses.bsd3;
broken = true;
@@ -115051,10 +118989,11 @@ self: {
base binary binary-strict bytestring containers filepath hopfli
optparse-applicative text vector xmlgen zlib
];
- configureFlags = [ "-f-debug" ];
+ jailbreak = true;
homepage = "http://github.com/ananthakumaran/webify";
description = "webfont generator";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"webkit" = callPackage
@@ -115071,6 +119010,7 @@ self: {
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the Webkit library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) webkit;};
"webkit-javascriptcore" = callPackage
@@ -115084,6 +119024,7 @@ self: {
pkgconfigDepends = [ webkit ];
description = "JavaScriptCore FFI from webkitgtk";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) webkit;};
"webkitgtk3" = callPackage
@@ -115100,6 +119041,7 @@ self: {
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the Webkit library";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) webkit;};
"webkitgtk3-javascriptcore" = callPackage
@@ -115115,6 +119057,7 @@ self: {
pkgconfigDepends = [ webkit ];
description = "JavaScriptCore FFI from webkitgtk";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) webkit;};
"webpage" = callPackage
@@ -115207,6 +119150,7 @@ self: {
];
description = "Functional reactive web framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wedding-announcement" = callPackage
@@ -115223,6 +119167,26 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "wedged" = callPackage
+ ({ mkDerivation, array, base, colour, containers, diagrams-cairo
+ , diagrams-lib, MonadRandom, strict
+ }:
+ mkDerivation {
+ pname = "wedged";
+ version = "0";
+ sha256 = "1sdnqc40qg5pv0kj4qw33vk5cy3yym60csh3iwmpm7pzpray7511";
+ editedCabalFile = "64bac15c983cf83ab2b05b002439b8f125b9c942ae46ed75a187f7e2dc68dba5";
+ isLibrary = false;
+ isExecutable = true;
+ buildDepends = [
+ array base colour containers diagrams-cairo diagrams-lib
+ MonadRandom strict
+ ];
+ description = "Wedged postcard generator";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"weighted-regexp" = callPackage
({ mkDerivation, array, base, happy }:
mkDerivation {
@@ -115233,10 +119197,11 @@ self: {
isExecutable = true;
buildDepends = [ array base ];
buildTools = [ happy ];
- configureFlags = [ "-f-criterion" "-f-quickcheck" ];
+ jailbreak = true;
homepage = "http://sebfisch.github.com/haskell-regexp";
description = "Weighted Regular Expression Matcher";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"weighted-search" = callPackage
@@ -115264,9 +119229,11 @@ self: {
aeson base blaze-builder bytestring conduit http-types lifted-base
resourcet text transformers unordered-containers wai warp
];
+ jailbreak = true;
homepage = "https://github.com/mcschroeder/welshy";
description = "Haskell web framework (because Scotty had trouble yodeling)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wheb-mongo" = callPackage
@@ -115276,9 +119243,11 @@ self: {
version = "0.0.3.0";
sha256 = "1xxks0jxjwph7372jqnscm6z0b28zz3dvb49b2aw37jmnvwrfdcy";
buildDepends = [ base bson mongoDB mtl text Wheb ];
+ jailbreak = true;
homepage = "https://github.com/hansonkd/Wheb-Framework";
description = "MongoDB plugin for Wheb";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wheb-redis" = callPackage
@@ -115288,9 +119257,11 @@ self: {
version = "0.0.1.0";
sha256 = "025chjp41qbjr9m6c3pd9v510h4aac1rvbyrki3c7617sca8a45h";
buildDepends = [ base bytestring hedis mtl text Wheb ];
+ jailbreak = true;
homepage = "https://github.com/hansonkd/Wheb-Framework";
description = "Redis connection for Wheb";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wheb-strapped" = callPackage
@@ -115300,9 +119271,11 @@ self: {
version = "0.1.0.0";
sha256 = "1wykpp325336kk7a1vnnjffankcw0kaw3jcfin53cp8hsx4bwfdp";
buildDepends = [ base mtl StrappedTemplates text Wheb ];
+ jailbreak = true;
homepage = "https://github.com/hansonkd/Wheb-Framework";
description = "Strapped templates for Wheb";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"while-lang-parser" = callPackage
@@ -115330,6 +119303,7 @@ self: {
buildDepends = [
base containers GLUT mtl OpenGL process random X11
];
+ jailbreak = true;
homepage = "http://neugierig.org/software/darcs/whim/";
description = "A Haskell window manager";
license = stdenv.lib.licenses.bsd3;
@@ -115342,6 +119316,7 @@ self: {
version = "0.1.0.3";
sha256 = "0kbyv0q6z2d2plblafqcmwcfiyhdbijqnqg2w7qxr7dklka8245v";
buildDepends = [ base parsec template-haskell ];
+ jailbreak = true;
description = "Mustache templates with Template Haskell";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -115368,7 +119343,6 @@ self: {
sha256 = "199fd710zicx7ijyvipc7p0d3yg18f6nppcln2wz38hl9kfv0iv0";
editedCabalFile = "c11f42da958683ffb7a2e958dcefe2ef1a3e732732010f44facfbb0fffd7571e";
buildDepends = [ base network network-uri split ];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://github.com/relrod/whois-hs";
description = "WHOIS client library";
license = stdenv.lib.licenses.bsd3;
@@ -115392,6 +119366,7 @@ self: {
homepage = "http://rampa.sk/static/wikipedia4epub.html";
description = "Wikipedia EPUB E-Book construction from Firefox history";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"win-hp-path" = callPackage
@@ -115421,10 +119396,11 @@ self: {
buildDepends = [
base Crypto dataenc mtl network parsec pretty split time urlencoded
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
homepage = "http://patch-tag.com/repo/windowslive";
description = "Implements Windows Live Web Authentication and Delegated Authentication";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"winerror" = callPackage
@@ -115435,6 +119411,7 @@ self: {
sha256 = "0xamx4yhyv264mka4ypp0r1xh3xv7ba31sis3lbhjycn4i07wlhd";
description = "Error handling for foreign calls to the Windows API";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"winio" = callPackage
@@ -115452,6 +119429,7 @@ self: {
homepage = "http://github.com/felixmar/winio";
description = "I/O library for Windows";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { kernel32 = null; ws2_32 = null;};
"witherable" = callPackage
@@ -115563,10 +119541,10 @@ self: {
base bytestring containers nats semigroups terminfo text
transformers wl-pprint-extras
];
- configureFlags = [ "-fcursed" ];
homepage = "http://github.com/ekmett/wl-pprint-terminfo/";
description = "A color pretty printer with terminfo support";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wl-pprint-text" = callPackage
@@ -115607,9 +119585,11 @@ self: {
lifted-async mwc-random network QuickCheck quickcheck-instances
safe system-fileio system-filepath text transformers
];
+ jailbreak = true;
homepage = "https://github.com/nikita-volkov/wobsurv";
description = "A simple and highly performant HTTP file server";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"woffex" = callPackage
@@ -115621,8 +119601,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base binary bytestring filepath zlib ];
+ jailbreak = true;
description = "Web Open Font Format (WOFF) unpacker";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wol" = callPackage
@@ -115634,6 +119616,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base network split ];
+ jailbreak = true;
homepage = "http://tom.lokhorst.eu/wol";
description = "Send a Wake on LAN Magic Packet";
license = stdenv.lib.licenses.bsd3;
@@ -115682,6 +119665,7 @@ self: {
homepage = "http://www.tiresiaspress.us/haskell/word24";
description = "24-bit word and int types for GHC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"word8" = callPackage
@@ -115704,6 +119688,7 @@ self: {
sha256 = "1jdcv5h41k5xckviyc0p0k0q68s371llcvmkdbg78vh4b3xw7cd5";
description = "None";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wordexp" = callPackage
@@ -115759,6 +119744,7 @@ self: {
buildDepends = [ array base containers fclabels ];
description = "A word search solver library and executable";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wordsetdiff" = callPackage
@@ -115789,8 +119775,10 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base feed HTTP network parallel tagsoup ];
+ jailbreak = true;
description = "Subscribe to a wiki's RSS feed and archive external links";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wraparound" = callPackage
@@ -115821,10 +119809,11 @@ self: {
hxt-filter polyparse tagchup tagsoup transformers utility-ht
xml-basic
];
- configureFlags = [ "-f-buildexamples" ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~thielema/wraxml/";
description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wreq" = callPackage
@@ -115858,7 +119847,6 @@ self: {
test-framework-hunit test-framework-quickcheck2 text transformers
unix-compat uuid
];
- configureFlags = [ "-f-developer" "-f-httpbin" "-fdoctest" ];
homepage = "http://www.serpentine.com/wreq";
description = "An easy-to-use HTTP client library";
license = stdenv.lib.licenses.bsd3;
@@ -115876,8 +119864,10 @@ self: {
testDepends = [
assertions base bed-and-breakfast containers filepath lens
];
+ jailbreak = true;
description = "Colour space transformations and metrics";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wsedit" = callPackage
@@ -115893,6 +119883,7 @@ self: {
buildDepends = [
base bencode bytestring containers directory safe utf8-string
];
+ jailbreak = true;
description = "A small tool to list, add and remove webseeds from a torrent file";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -115906,6 +119897,7 @@ self: {
buildDepends = [ base old-locale time transformers ];
description = "Wojcik Tool Kit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wtk-gtk" = callPackage
@@ -115921,6 +119913,7 @@ self: {
];
description = "GTK tools within Wojcik Tool Kit";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wumpus-basic" = callPackage
@@ -115937,6 +119930,7 @@ self: {
homepage = "http://code.google.com/p/copperbox/";
description = "Basic objects and system code built on Wumpus-Core";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wumpus-core" = callPackage
@@ -115965,6 +119959,7 @@ self: {
homepage = "http://code.google.com/p/copperbox/";
description = "High-level drawing objects built on Wumpus-Basic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wumpus-microprint" = callPackage
@@ -115978,9 +119973,11 @@ self: {
buildDepends = [
base vector-space wumpus-basic wumpus-core wumpus-drawing
];
+ jailbreak = true;
homepage = "http://code.google.com/p/copperbox/";
description = "Microprints - \"greek-text\" pictures";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wumpus-tree" = callPackage
@@ -115998,6 +119995,7 @@ self: {
homepage = "http://code.google.com/p/copperbox/";
description = "Drawing trees";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wx" = callPackage
@@ -116007,10 +120005,10 @@ self: {
version = "0.91.0.0";
sha256 = "133cjc3vfqxyw71a5x99flzg23qa2k28p2zajw6vp0z7qhv8kfjy";
buildDepends = [ base stm wxcore ];
- configureFlags = [ "-fnewbase" "-fsplitbase" ];
homepage = "http://haskell.org/haskellwiki/WxHaskell";
description = "wxHaskell";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wxAsteroids" = callPackage
@@ -116025,6 +120023,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/wxAsteroids";
description = "Try to avoid the asteroids with your space ship";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wxFruit" = callPackage
@@ -116036,10 +120035,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base old-time wx wxcore Yampa ];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/WxFruit";
description = "An implementation of Fruit using wxHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wxc" = callPackage
@@ -116056,6 +120056,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/WxHaskell";
description = "wxHaskell C++ wrapper";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.xlibs) libX11; inherit (pkgs) mesa;
inherit (pkgs) wxGTK;};
@@ -116072,10 +120073,10 @@ self: {
wxc wxdirect
];
extraLibraries = [ libX11 mesa wxGTK ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://haskell.org/haskellwiki/WxHaskell";
description = "wxHaskell core";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.xlibs) libX11; inherit (pkgs) mesa;
inherit (pkgs) wxGTK;};
@@ -116092,7 +120093,6 @@ self: {
buildDepends = [
base containers directory filepath parsec process strict time
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://haskell.org/haskellwiki/WxHaskell";
description = "helper tool for building wxHaskell";
license = stdenv.lib.licenses.bsd3;
@@ -116107,9 +120107,11 @@ self: {
isLibrary = false;
isExecutable = true;
buildDepends = [ base wx wxcore ];
+ jailbreak = true;
homepage = "http://github.com/elbrujohalcon/wxhnotepad";
description = "An example of how to implement a basic notepad with wxHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wxturtle" = callPackage
@@ -116123,6 +120125,7 @@ self: {
buildDepends = [ base convertible Imlib wx yjsvg yjtools ];
description = "turtle like LOGO with wxHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wybor" = callPackage
@@ -116161,9 +120164,11 @@ self: {
base bytestring ConfigFile containers dgs directory filepath mtl
parsec process sgf split
];
+ jailbreak = true;
homepage = "http://dmwit.com/wyvern";
description = "An autoresponder for Dragon Go Server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"x-dsp" = callPackage
@@ -116178,9 +120183,11 @@ self: {
array base bytestring containers monads-tf text transformers
type-level
];
+ jailbreak = true;
homepage = "http://jwlato.webfactional.com/haskell/x-dsp";
description = "A embedded DSL for manipulating DSP languages in Haskell";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"x11-xim" = callPackage
@@ -116208,6 +120215,7 @@ self: {
homepage = "http://redmine.iportnov.ru/projects/x11-xinput";
description = "Haskell FFI bindings for X11 XInput library (-lXi)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs.xlibs) libXi;};
"x509" = callPackage
@@ -116247,7 +120255,6 @@ self: {
asn1-encoding asn1-types base bytestring containers
crypto-pubkey-types directory filepath mtl pem process x509
];
- configureFlags = [ "-f-executable" "-f-test" ];
homepage = "http://github.com/vincenthz/hs-certificate";
description = "X.509 collection accessing and storing methods";
license = stdenv.lib.licenses.bsd3;
@@ -116376,6 +120383,7 @@ self: {
base filepath HUnit language-python test-framework
test-framework-hunit xcb-types
];
+ jailbreak = true;
homepage = "http://github.com/tych0/xcffib";
description = "A cffi-based python binding for X";
license = stdenv.lib.licenses.mit;
@@ -116392,6 +120400,7 @@ self: {
buildDepends = [ base directory filepath process unix ];
description = "XChat";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xdg-basedir" = callPackage
@@ -116429,8 +120438,10 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base cairo graphviz gtk mtl polyparse text ];
+ jailbreak = true;
description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xenstore" = callPackage
@@ -116442,7 +120453,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base bytestring cereal mtl network ];
- configureFlags = [ "-f-executable" ];
description = "Xenstore client access";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -116458,10 +120468,10 @@ self: {
buildDepends = [ base glib ];
buildTools = [ gtk2hs-buildtools ];
pkgconfigDepends = [ libxfconf-0 ];
- configureFlags = [ "-f-buildtests" ];
homepage = "http://patch-tag.com/r/obbele/xfconf/home";
description = "FFI bindings to xfconf";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { libxfconf-0 = null;};
"xformat" = callPackage
@@ -116488,10 +120498,11 @@ self: {
buildDepends = [
base bytestring containers ghc-prim mtl parsec regex-base
];
- configureFlags = [ "-fbase4" ];
+ jailbreak = true;
homepage = "http://code.google.com/p/xhaskell-library/";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xhb" = callPackage
@@ -116509,6 +120520,7 @@ self: {
homepage = "https://github.com/aslatter/xhb";
description = "X Haskell Bindings";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xhtml_3000_2_1" = callPackage
@@ -116562,6 +120574,7 @@ self: {
homepage = "http://github.com/joachifm/hxine";
description = "Bindings to xine-lib";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { libxine = null; xine = null;};
"xing-api" = callPackage
@@ -116581,10 +120594,11 @@ self: {
transformers
];
testDepends = [ aeson base bytestring containers HTF text time ];
- configureFlags = [ "-f-minimal-demo" "-f-demos" ];
+ jailbreak = true;
homepage = "http://github.com/JanAhrens/xing-api-haskell";
description = "Wrapper for the XING API, v1";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xkbcommon" = callPackage
@@ -116604,6 +120618,7 @@ self: {
extraLibraries = [ xkbcommon ];
description = "Haskell bindings for libxkbcommon";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { xkbcommon = null;};
"xkcd" = callPackage
@@ -116622,6 +120637,7 @@ self: {
homepage = "http://github.com/sellweek/xkcd";
description = "Downloads the most recent xkcd comic";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xlsior" = callPackage
@@ -116644,6 +120660,7 @@ self: {
];
description = "Streaming Excel file generation and parsing";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xlsx" = callPackage
@@ -116687,9 +120704,11 @@ self: {
base bytestring conduit containers data-default parsec text time
transformers xlsx
];
+ jailbreak = true;
homepage = "https://github.com/qrilka/xlsx-templater";
description = "Simple and incomplete Excel file templater";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xml" = callPackage
@@ -116715,7 +120734,6 @@ self: {
buildDepends = [
base containers data-accessor explicit-exception utility-ht
];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/XML-Basic";
description = "Basics for XML/HTML representation and processing";
license = stdenv.lib.licenses.bsd3;
@@ -116733,9 +120751,11 @@ self: {
base bytestring conduit containers text transformers uri-conduit
xml-conduit
];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/xml";
description = "Parse XML catalog files (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xml-conduit" = callPackage
@@ -116798,10 +120818,11 @@ self: {
base bytestring containers enumerator hspec HUnit text transformers
xml-types
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
homepage = "http://github.com/snoyberg/xml";
description = "Pure-Haskell utilities for dealing with XML with the enumerator package. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xml-enumerator-combinators" = callPackage
@@ -116817,9 +120838,10 @@ self: {
buildDepends = [
base containers enumerator xml-enumerator xml-types
];
- configureFlags = [ "-f-test" ];
+ jailbreak = true;
description = "Parser combinators for xml-enumerator and compatible XML parsers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xml-extractors" = callPackage
@@ -116907,6 +120929,7 @@ self: {
version = "0.5";
sha256 = "17axppy0xzshmvw8y23hxcj2ixm2fqw3hqrjk90qmpkjcv4nk44r";
buildDepends = [ base mtl transformers transformers-compose xml ];
+ jailbreak = true;
homepage = "http://github.com/aristidb/xml-monad";
description = "Monadic extensions to the xml package";
license = stdenv.lib.licenses.bsd3;
@@ -116922,6 +120945,7 @@ self: {
homepage = "http://sep07.mroot.net/";
description = "Parsing XML with Parsec";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xml-picklers" = callPackage
@@ -116951,6 +120975,7 @@ self: {
homepage = "https://github.com/YoshikuniJujo/xml-pipe/wiki";
description = "XML parser which uses simple-pipe";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xml-prettify" = callPackage
@@ -116965,6 +120990,7 @@ self: {
homepage = "http://github.com/rosenbergdm/xml-prettify";
description = "Pretty print XML";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xml-push" = callPackage
@@ -116982,9 +121008,11 @@ self: {
peyotls random sasl simple-pipe stm tighttp transformers-base uuid
x509 x509-store x509-validation xml-pipe xmpipe
];
+ jailbreak = true;
homepage = "https://github.com/YoshikuniJujo/xml-push/wiki";
description = "Push XML from/to client to/from server over XMPP or HTTP";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xml-to-json" = callPackage
@@ -117003,6 +121031,7 @@ self: {
hxt-curl hxt-expat hxt-tagsoup process regex-posix tagsoup text
unordered-containers vector
];
+ jailbreak = true;
homepage = "https://github.com/sinelaw/xml-to-json";
description = "Library and command line tool for converting XML files to json";
license = stdenv.lib.licenses.mit;
@@ -117066,9 +121095,11 @@ self: {
testDepends = [
aeson base bytestring hspec resourcet text transformers
];
+ jailbreak = true;
homepage = "http://github.com/yihuang/xml2json";
description = "translate xml to json";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xml2x" = callPackage
@@ -117084,8 +121115,10 @@ self: {
buildDepends = [
array base bio bytestring containers directory xhtml
];
+ jailbreak = true;
description = "Convert BLAST output in XML format to CSV or HTML";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xmlgen" = callPackage
@@ -117142,6 +121175,7 @@ self: {
homepage = "http://github.com/dagle/hs-xmltv";
description = "Show tv channels in the terminal";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xmms2-client" = callPackage
@@ -117156,6 +121190,7 @@ self: {
buildTools = [ c2hs ];
description = "An XMMS2 client library";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xmms2-client-glib" = callPackage
@@ -117168,6 +121203,7 @@ self: {
buildTools = [ c2hs ];
description = "An XMMS2 client library — GLib integration";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xmobar" = callPackage
@@ -117190,12 +121226,7 @@ self: {
unix utf8-string X11 X11-xft
];
extraLibraries = [ libXpm libXrandr wirelesstools ];
- configureFlags = [
- "-fall_extensions" "-f-with_threaded" "-f-with_xpm" "-f-with_dbus"
- "-f-with_mpris" "-f-with_datezone" "-f-with_alsa"
- "-fall_extensions" "-f-with_mpd" "-f-with_iwlib" "-f-with_inotify"
- "-fwith_utf8" "-f-with_xft"
- ];
+ configureFlags = [ "-fall_extensions" ];
homepage = "http://xmobar.org";
description = "A Minimalistic Text Based Status Bar";
license = stdenv.lib.licenses.bsd3;
@@ -117217,7 +121248,6 @@ self: {
base containers directory extensible-exceptions filepath mtl
process unix utf8-string X11
];
- configureFlags = [ "-f-testing" "-fsmall_base" ];
postInstall = ''
shopt -s globstar
mkdir -p $out/share/man/man1
@@ -117242,7 +121272,7 @@ self: {
base containers directory extensible-exceptions filepath mtl
process unix X11
];
- configureFlags = [ "-f-testing" "-fsmall_base" ];
+ jailbreak = true;
homepage = "http://xmonad.org";
description = "A tiling window manager";
license = stdenv.lib.licenses.bsd3;
@@ -117261,7 +121291,6 @@ self: {
base containers directory extensible-exceptions mtl old-locale
old-time process random unix utf8-string X11 X11-xft xmonad
];
- configureFlags = [ "-f-testing" "-fuse_xft" "-fsmall_base" ];
homepage = "http://xmonad.org/";
description = "Third party extensions for xmonad";
license = stdenv.lib.licenses.bsd3;
@@ -117281,10 +121310,11 @@ self: {
old-time process random unix utf8-string X11 X11-xft
xmonad-bluetilebranch
];
- configureFlags = [ "-f-testing" "-fuse_xft" "-fsmall_base" ];
+ jailbreak = true;
homepage = "http://xmonad.org/";
description = "Third party extensions for xmonad";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xmonad-contrib-gpl" = callPackage
@@ -117299,6 +121329,23 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "xmonad-entryhelper" = callPackage
+ ({ mkDerivation, base, directory, extensible-exceptions, filepath
+ , mtl, process, unix, X11, xmonad, xmonad-contrib
+ }:
+ mkDerivation {
+ pname = "xmonad-entryhelper";
+ version = "0.1.0.0";
+ sha256 = "1xwjdy7swc4bqqx0y7bny7rci4wpq2318m9nbz365x2r7i379v9h";
+ buildDepends = [
+ base directory extensible-exceptions filepath mtl process unix X11
+ xmonad xmonad-contrib
+ ];
+ homepage = "https://github.com/Javran/xmonad-entryhelper";
+ description = "XMonad config entry point wrapper";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"xmonad-eval" = callPackage
({ mkDerivation, base, containers, directory, hint, mtl, old-locale
, old-time, process, random, unix, X11, xmonad, xmonad-contrib
@@ -117311,10 +121358,11 @@ self: {
base containers directory hint mtl old-locale old-time process
random unix X11 xmonad xmonad-contrib
];
- configureFlags = [ "-fsmall_base" ];
+ jailbreak = true;
homepage = "http://xmonad.org/";
description = "Module for evaluation Haskell expressions in the running xmonad instance";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xmonad-extras" = callPackage
@@ -117331,10 +121379,7 @@ self: {
random regex-posix split unix X11 xmonad xmonad-contrib
];
configureFlags = [
- "-f-with_hlist" "-fwith_split" "-fwith_parsec" "-f-testing"
- "-fwith_template_haskell" "-fwith_regex_posix" "-f-with_hlist"
- "-f-with_mpd" "-f-with_hint" "-fwith_split" "-fwith_parsec"
- "-fsmall_base"
+ "-f-with_hlist" "-fwith_split" "-fwith_parsec"
];
homepage = "http://projects.haskell.org/xmonad-extras";
description = "Third party extensions for xmonad with wacky dependencies";
@@ -117351,6 +121396,7 @@ self: {
homepage = "http://github.com/supki/xmonad-screenshot";
description = "Workspaces screenshooting utility for XMonad";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xmonad-utils" = callPackage
@@ -117382,6 +121428,7 @@ self: {
homepage = "https://github.com/YoshikuniJujo/xmpipe/wiki";
description = "XMPP implementation using simple-PIPE";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xorshift" = callPackage
@@ -117420,6 +121467,7 @@ self: {
base blaze-builder bytestring double-conversion strict
xournal-types
];
+ jailbreak = true;
description = "text builder for xournal file format";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -117439,9 +121487,11 @@ self: {
base bytestring cairo cmdargs directory filepath HStringTemplate
mtl xournal-parser xournal-render xournal-types
];
+ jailbreak = true;
homepage = "http://ianwookim.org/hxournal";
description = "convert utility for xoj files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xournal-parser" = callPackage
@@ -117462,6 +121512,7 @@ self: {
homepage = "http://ianwookim.org/hoodle";
description = "Xournal file parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xournal-render" = callPackage
@@ -117476,9 +121527,10 @@ self: {
base bytestring cairo containers fclabels mtl poppler strict
TypeCompose xournal-types
];
- configureFlags = [ "-fpoppler" ];
+ jailbreak = true;
description = "Xournal file renderer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xournal-types" = callPackage
@@ -117509,9 +121561,11 @@ self: {
buildDepends = [
array base containers directory process random unix
];
+ jailbreak = true;
homepage = "http://malde.org/~ketil/";
description = "Cluster EST sequences";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xsd" = callPackage
@@ -117526,7 +121580,6 @@ self: {
testDepends = [
base directory doctest filepath QuickCheck quickcheck-instances
];
- configureFlags = [ "-fsmall_base" ];
homepage = "https://github.com/tonymorris/xsd";
description = "XML Schema data structures";
license = stdenv.lib.licenses.bsd3;
@@ -117539,7 +121592,6 @@ self: {
version = "0.0.0";
sha256 = "0xljcmc8rsvkpchrdam3lpp4igq1gmym9v3drp15a9k8rfa8irmi";
buildDepends = [ base HUnit QuickCheck uniplate vector ];
- configureFlags = [ "-fsplit-base" ];
description = "cryptanalysis of Blizzard's broken SHA-1 implementation";
license = stdenv.lib.licenses.mit;
}) {};
@@ -117554,6 +121606,7 @@ self: {
extraLibraries = [ xslt ];
description = "Binding to libxslt";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { xslt = null;};
"xss-sanitize" = callPackage
@@ -117572,7 +121625,6 @@ self: {
attoparsec base containers css-text hspec HUnit network-uri tagsoup
text utf8-string
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://github.com/yesodweb/haskell-xss-sanitize";
description = "sanitize untrusted HTML to prevent XSS attacks";
license = stdenv.lib.licenses.bsd3;
@@ -117588,6 +121640,7 @@ self: {
homepage = "http://github.com/alanz/xtc";
description = "eXtended & Typed Controls for wxHaskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"xtest" = callPackage
@@ -117628,6 +121681,7 @@ self: {
editedCabalFile = "1d641797e9e431c6152dc41cbe72551bb2f91cec8265d3a5e3b2b9718764d274";
buildDepends = [ base bytestring crypto-api tagged ];
testDepends = [ base bytestring hspec QuickCheck ];
+ jailbreak = true;
description = "A Haskell implementation of the xxHash algorithm";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -117664,7 +121718,6 @@ self: {
transformers unordered-containers vector wai warp yaml yesod-core
yesod-form zlib
];
- configureFlags = [ "-fupload" ];
homepage = "http://github.com/snoyberg/yackage";
description = "Personal Hackage replacement for testing new packages";
license = stdenv.lib.licenses.bsd3;
@@ -117681,6 +121734,7 @@ self: {
buildDepends = [
attoparsec base cassava conduit lens mtl text vector wreq
];
+ jailbreak = true;
description = "Streaming aproach to the yahoo finance api";
license = stdenv.lib.licenses.mit;
}) {};
@@ -117695,6 +121749,7 @@ self: {
homepage = "http://www.people.fas.harvard.edu/~stewart5/code/yahoo-web-search";
description = "Yahoo Web Search Services";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yajl" = callPackage
@@ -117709,6 +121764,7 @@ self: {
homepage = "https://john-millikin.com/software/haskell-yajl/";
description = "Bindings for YAJL, an event-based JSON implementation";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) yajl;};
"yajl-enumerator" = callPackage
@@ -117722,9 +121778,11 @@ self: {
buildDepends = [
base bytestring enumerator json-types text transformers yajl
];
+ jailbreak = true;
homepage = "https://john-millikin.com/software/haskell-yajl/";
description = "Enumerator-based interface to YAJL, an event-based JSON implementation";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yall" = callPackage
@@ -117772,9 +121830,6 @@ self: {
hspec-expectations HUnit resourcet text transformers
unordered-containers vector
];
- configureFlags = [
- "-f-no-unicode" "-f-system-libyaml" "-f-no-exe"
- ];
homepage = "http://github.com/snoyberg/yaml/";
description = "Support for parsing and rendering YAML documents";
license = stdenv.lib.licenses.bsd3;
@@ -117795,6 +121850,7 @@ self: {
base deepseq failure hashable QuickCheck tasty tasty-quickcheck
text unordered-containers yaml
];
+ jailbreak = true;
description = "Configuration management";
license = stdenv.lib.licenses.mit;
}) {};
@@ -117860,6 +121916,7 @@ self: {
homepage = "http://redmine.iportnov.ru/projects/yaml-rpc";
description = "Scotty server backend for yaml-rpc";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yaml-rpc-snap" = callPackage
@@ -117877,6 +121934,7 @@ self: {
homepage = "http://redmine.iportnov.ru/projects/yaml-rpc";
description = "Snap server backend for yaml-rpc";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yaml2owl" = callPackage
@@ -117895,6 +121953,7 @@ self: {
homepage = "http://github.com/leifw/yaml2owl";
description = "Generate OWL schema from YAML syntax, and an RDFa template";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yampa-canvas" = callPackage
@@ -117906,7 +121965,6 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base blank-canvas stm text time Yampa ];
- configureFlags = [ "-f-example" ];
description = "blank-canvas frontend for yampa";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -117921,9 +121979,11 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base GLFW-b newtype OpenGL vector-space Yampa ];
+ jailbreak = true;
homepage = "https://github.com/deepfire/yampa-glfw";
description = "Connects GLFW-b (GLFW 3+) with the Yampa FRP library";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yampa-glut" = callPackage
@@ -117959,6 +122019,7 @@ self: {
version = "0.2";
sha256 = "14lq549jhgnf51pgy1jv31ik8qx71yl7d53w8dpq1f9mlsn1g16i";
buildDepends = [ base ];
+ jailbreak = true;
description = "yet another prelude - a simplistic refactoring with algebraic classes";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -118016,10 +122077,10 @@ self: {
version = "0.1";
sha256 = "0aa0g2r7ck052wqkqqxzvkdqv9d7x3v7rqqd8iajwys9cvqny4m5";
buildDepends = [ base containers csv mtl uniplate yhccore ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Yhc";
description = "Additional utilities to work with Yhc Core";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yeganesh" = callPackage
@@ -118036,7 +122097,6 @@ self: {
base containers directory filepath process strict time unix
xdg-basedir
];
- configureFlags = [ "-f-profiling" ];
homepage = "http://dmwit.com/yeganesh";
description = "small dmenu wrapper";
license = stdenv.lib.licenses.bsd3;
@@ -118095,6 +122155,7 @@ self: {
aeson base containers shakespeare template-haskell text
transformers yesod
];
+ jailbreak = true;
description = "Yesod Angular JS integration";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -118123,7 +122184,6 @@ self: {
resourcet safe shakespeare template-haskell text time transformers
unordered-containers wai yesod-core yesod-form yesod-persistent
];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://www.yesodweb.com/";
description = "Authentication for Yesod";
license = stdenv.lib.licenses.mit;
@@ -118164,9 +122224,11 @@ self: {
base bcrypt bytestring text yesod-auth yesod-core yesod-form
yesod-persistent
];
+ jailbreak = true;
homepage = "http://www.yesodweb.com/";
description = "BCrypt salted and hashed passwords in a database as auth for yesod";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-auth-deskcom" = callPackage
@@ -118259,10 +122321,11 @@ self: {
authenticate-ldap base bytestring hamlet LDAP text transformers
yesod-auth yesod-core yesod-form
];
- configureFlags = [ "-fghc7" ];
+ jailbreak = true;
homepage = "http://www.yesodweb.com/";
description = "LDAP Authentication for Yesod";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-auth-oauth" = callPackage
@@ -118277,7 +122340,6 @@ self: {
authenticate-oauth base bytestring lifted-base text transformers
yesod-auth yesod-core yesod-form
];
- configureFlags = [ "-fghc7" ];
homepage = "http://www.yesodweb.com/";
description = "OAuth Authentication for Yesod";
license = stdenv.lib.licenses.bsd3;
@@ -118297,7 +122359,6 @@ self: {
lifted-base network-uri text transformers uuid yesod-auth
yesod-core yesod-form
];
- configureFlags = [ "-fnetwork-uri" "-fghc7" ];
homepage = "http://github.com/scan/yesod-auth-oauth2";
description = "Library to authenticate with OAuth 2.0 for Yesod web applications.";
license = stdenv.lib.licenses.bsd3;
@@ -118316,6 +122377,7 @@ self: {
];
description = "Provides PAM authentication module";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-auth-smbclient" = callPackage
@@ -118333,6 +122395,7 @@ self: {
homepage = "https://github.com/kkazuo/yesod-auth-smbclient.git";
description = "Authentication plugin for Yesod using smbclient";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-auth-zendesk" = callPackage
@@ -118349,6 +122412,7 @@ self: {
http-conduit http-types template-haskell text time transformers wai
yesod-auth yesod-core
];
+ jailbreak = true;
homepage = "https://github.com/prowdsponsor/yesod-auth-zendesk";
description = "Zendesk remote authentication support for Yesod apps";
license = stdenv.lib.licenses.bsd3;
@@ -118401,9 +122465,11 @@ self: {
persistent template-haskell text time wai yesod yesod-auth
yesod-form yesod-markdown
];
+ jailbreak = true;
homepage = "http://github.com/pbrisbin/yesod-comments";
description = "A generic comments interface for a Yesod application";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-continuations" = callPackage
@@ -118423,6 +122489,7 @@ self: {
homepage = "https://github.com/softmechanics/yesod-continuations/";
description = "Continuations for Yesod";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-core" = callPackage
@@ -118486,9 +122553,11 @@ self: {
template-haskell test-framework test-framework-hunit
test-framework-quickcheck2 text transformers
];
+ jailbreak = true;
homepage = "http://github.com/tlaitinen/yesod-datatables";
description = "Yesod plugin for DataTables (jQuery grid plugin)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-default" = callPackage
@@ -118519,9 +122588,11 @@ self: {
shakespeare-text strict syb text transformers
];
buildTools = [ alex happy ];
+ jailbreak = true;
homepage = "https://github.com/tlaitinen/yesod-dsl";
description = "DSL for generating Yesod subsite to manage an RDBMS;";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-eventsource" = callPackage
@@ -118539,6 +122610,7 @@ self: {
homepage = "http://www.yesodweb.com/";
description = "Server-sent events support for Yesod apps";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-examples" = callPackage
@@ -118558,10 +122630,11 @@ self: {
yesod-core yesod-static
];
extraLibraries = [ sqlite ];
- configureFlags = [ "-fghc7" ];
+ jailbreak = true;
homepage = "http://www.yesodweb.com/";
description = "Example programs using the Yesod Web Framework. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { inherit (pkgs) sqlite;};
"yesod-fay" = callPackage
@@ -118583,6 +122656,7 @@ self: {
homepage = "https://github.com/fpco/yesod-fay";
description = "Utilities for using the Fay Haskell-to-JS compiler with Yesod";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-fb" = callPackage
@@ -118620,7 +122694,6 @@ self: {
time transformers wai xss-sanitize yesod-core yesod-persistent
];
testDepends = [ base hspec text time ];
- configureFlags = [ "-fnetwork-uri" ];
homepage = "http://www.yesodweb.com/";
description = "Form handling support for Yesod Web Framework";
license = stdenv.lib.licenses.mit;
@@ -118672,9 +122745,11 @@ self: {
base blaze-html bytestring directory HTTP old-locale pandoc pureMD5
text time yesod yesod-form
];
+ jailbreak = true;
homepage = "http://github.com/pbrisbin/yesod-goodies";
description = "A collection of various small helpers useful in any yesod application";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-json" = callPackage
@@ -118696,6 +122771,7 @@ self: {
version = "0.3.0";
sha256 = "0i1b4lgwv98pp7251fm3h4cdb1d868fqwm6175rk7zg699g2v61y";
buildDepends = [ base text yesod-core ];
+ jailbreak = true;
homepage = "http://github.com/pbrisbin/yesod-goodies/yesod-links";
description = "A typeclass which simplifies creating link widgets throughout your site";
license = stdenv.lib.licenses.bsd3;
@@ -118727,10 +122803,11 @@ self: {
wai-logger warp yaml yesod yesod-auth yesod-core yesod-form
yesod-persistent yesod-static
];
- configureFlags = [ "-fconduit11" "-flibrary-only" "-f-dev" ];
+ jailbreak = true;
homepage = "https://github.com/prowdsponsor/mangopay";
description = "Yesod library for MangoPay API access";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-markdown" = callPackage
@@ -118775,9 +122852,9 @@ self: {
version = "0.1";
sha256 = "088m7prg774wdh8fp7zljxj65zj5krl4pggl63anv2wk7nlw27py";
buildDepends = [ base template-haskell yesod ];
- configureFlags = [ "-fghc7" ];
description = "Pagination for Yesod sites";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-pagination" = callPackage
@@ -118797,6 +122874,7 @@ self: {
homepage = "https://github.com/joelteon/yesod-pagination";
description = "Pagination in Yesod";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-paginator" = callPackage
@@ -118810,9 +122888,11 @@ self: {
buildDepends = [
base persistent resourcet text transformers yesod
];
+ jailbreak = true;
homepage = "http://github.com/pbrisbin/yesod-paginator";
description = "A pagination approach for yesod";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-persistent" = callPackage
@@ -118902,9 +122982,11 @@ self: {
yesod-auth yesod-auth-hashdb yesod-core yesod-form yesod-persistent
yesod-routes yesod-static yesod-test
];
+ jailbreak = true;
homepage = "http://www.yesodweb.com/";
description = "Meta package for Yesod (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-pnotify" = callPackage
@@ -118918,6 +123000,7 @@ self: {
buildDepends = [
base shakespeare text transformers yesod yesod-form
];
+ jailbreak = true;
homepage = "https://github.com/cutsea110/yesod-pnotify";
description = "Yet another getMessage/setMessage using pnotify jquery plugins";
license = stdenv.lib.licenses.bsd3;
@@ -118930,9 +123013,11 @@ self: {
version = "0.1.0.2";
sha256 = "0v3xvhk5nxc2y3c21y6h7w6lg5vm1s2vzf9f02qw8gj928vsidzg";
buildDepends = [ base fast-logger text yesod yesod-core ];
+ jailbreak = true;
homepage = "https://github.com/snoyberg/yesod-pure";
description = "Yesod in pure Haskell: no Template Haskell or QuasiQuotes (deprecated)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-purescript" = callPackage
@@ -119024,9 +123109,11 @@ self: {
base blaze-html directory hamlet pandoc persistent text
xss-sanitize yesod-core yesod-form
];
+ jailbreak = true;
homepage = "http://github.com/pSub/yesod-rst";
description = "Tools for using reStructuredText (RST) in a yesod application";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-s3" = callPackage
@@ -119044,6 +123131,7 @@ self: {
homepage = "https://github.com/tvh/yesod-s3";
description = "Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-session-redis" = callPackage
@@ -119062,6 +123150,7 @@ self: {
homepage = "https://github.com/ollieh/yesod-session-redis";
description = "Redis-Powered Sessions for Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-sitemap" = callPackage
@@ -119140,10 +123229,10 @@ self: {
base bytestring hamlet hspec HUnit shakespeare template-haskell
text yesod-core yesod-static yesod-test
];
- configureFlags = [ "-f-example" ];
homepage = "https://bitbucket.org/wuzzeb/yesod-static-generators";
description = "Yesod generators for embedding AngularJs code into yesod-static at compile time";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-tableview" = callPackage
@@ -119155,6 +123244,7 @@ self: {
buildDepends = [ base hamlet persistent yesod ];
description = "Table view for Yesod applications";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-test" = callPackage
@@ -119196,9 +123286,11 @@ self: {
aeson base bytestring conduit hspec http-types HUnit text
transformers wai wai-test yesod-default
];
+ jailbreak = true;
homepage = "https://github.com/bogiebro/yesod-test-json";
description = "Utility functions for testing JSON web services written in Yesod";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-text-markdown" = callPackage
@@ -119248,9 +123340,11 @@ self: {
base blaze-html hamlet monad-logger persistent persistent-sqlite
resourcet text yesod yesod-form
];
+ jailbreak = true;
homepage = "https://github.com/Tener/yesod-vend";
description = "Simple CRUD classes for easy view creation for Yesod";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-websockets" = callPackage
@@ -119284,9 +123378,11 @@ self: {
resourcet stm template-haskell transformers transformers-base yesod
yesod-core
];
+ jailbreak = true;
homepage = "https://github.com/jamesdabbs/yesod-worker";
description = "Drop-in(ish) background worker system for Yesod apps";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yhccore" = callPackage
@@ -119296,10 +123392,10 @@ self: {
version = "0.9.1";
sha256 = "18gjzlpxn0hp723ybjgq1zdbpl35iqphs7b8r5x9ddbkm435sw93";
buildDepends = [ base containers mtl pretty uniplate ];
- configureFlags = [ "-fsplitbase" ];
homepage = "http://www.haskell.org/haskellwiki/Yhc";
description = "Yhc's Internal Core language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi" = callPackage
@@ -119332,13 +123428,11 @@ self: {
base directory filepath HUnit lens QuickCheck semigroups tasty
tasty-hunit tasty-quickcheck text yi-language yi-rope
];
- configureFlags = [
- "-fpango" "-fvty" "-ftesting" "-f-eventlog" "-f-profiling" "-fvty"
- "-fpango"
- ];
+ configureFlags = [ "-fpango" "-fvty" ];
homepage = "http://haskell.org/haskellwiki/Yi";
description = "The Haskell-Scriptable Editor";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-contrib" = callPackage
@@ -119355,9 +123449,11 @@ self: {
oo-prototypes split text time transformers-base yi yi-language
yi-rope
];
+ jailbreak = true;
homepage = "http://haskell.org/haskellwiki/Yi";
description = "Add-ons to Yi, the Haskell-Scriptable Editor";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-emacs-colours" = callPackage
@@ -119388,6 +123484,7 @@ self: {
homepage = "https://github.com/yi-editor/yi-fuzzy-open";
description = "Fuzzy open plugin for Yi";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-gtk" = callPackage
@@ -119399,6 +123496,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Yi";
description = "The Haskell-Scriptable Editor, helper package";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-language" = callPackage
@@ -119437,6 +123535,7 @@ self: {
homepage = "https://github.com/Fuuzetsu/yi-monokai";
description = "Monokai colour theme for the Yi text editor";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-rope" = callPackage
@@ -119467,6 +123566,7 @@ self: {
homepage = "https://github.com/yi-editor/yi-snippet";
description = "Snippet support for Yi";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-spolsky" = callPackage
@@ -119476,9 +123576,11 @@ self: {
version = "0.1";
sha256 = "152ys2x416322c13nxmi25wpilq0ddd6hj36mr25jaacf1qszv6q";
buildDepends = [ base yi ];
+ jailbreak = true;
homepage = "https://github.com/melrief/yi-spolsky";
description = "Spolsky colour theme for the Yi text editor";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yi-vty" = callPackage
@@ -119490,6 +123592,7 @@ self: {
homepage = "http://haskell.org/haskellwiki/Yi";
description = "The Haskell-Scriptable Editor, helper package";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yices" = callPackage
@@ -119527,7 +123630,6 @@ self: {
base containers pretty strict-concurrency vector
];
extraLibraries = [ gmp yices ];
- configureFlags = [ "-fyices-dynamic" ];
homepage = "http://code.haskell.org/~dons/code/yices-painless";
description = "An embedded language for programming the Yices SMT solver";
license = stdenv.lib.licenses.bsd3;
@@ -119546,9 +123648,11 @@ self: {
buildDepends = [
base directory ftphs haskeline hsConfigure mtl process unix
];
+ jailbreak = true;
homepage = "http://homepage3.nifty.com/salamander/second/projects/yjftp/index.xhtml";
description = "CUI FTP client like 'ftp', 'ncftp'";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yjftp-libs" = callPackage
@@ -119560,6 +123664,7 @@ self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ base directory ftphs mtl process unix ];
+ jailbreak = true;
homepage = "http://homepage3.nifty.com/salamander/second/projects/yjftp/index.xhtml";
description = "CUI FTP client like 'ftp', 'ncftp'";
license = "GPL";
@@ -119622,6 +123727,7 @@ self: {
];
description = "Generic Programming with Disbanded Data Types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"york-lava" = callPackage
@@ -119634,6 +123740,7 @@ self: {
homepage = "http://www.cs.york.ac.uk/fp/reduceron/";
description = "A library for digital circuit description";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"youtube" = callPackage
@@ -119668,9 +123775,11 @@ self: {
hxt lens opendatatable parsec SHA text transformers
unordered-containers uri-template utf8-string uuid vector zlib
];
+ jailbreak = true;
homepage = "https://github.com/fabianbergmark/YQL";
description = "A YQL engine to execute Open Data Tables";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yst" = callPackage
@@ -119723,6 +123832,7 @@ self: {
homepage = "http://github.com/nfjinjing/yuuko";
description = "A transcendental HTML parser gently wrapping the HXT library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"z3" = callPackage
@@ -119736,6 +123846,7 @@ self: {
homepage = "http://bitbucket.org/iago/z3-haskell";
description = "Bindings for the Z3 Theorem Prover";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { gomp = null; inherit (pkgs) z3;};
"zampolit" = callPackage
@@ -119767,6 +123878,7 @@ self: {
homepage = "https://skami.iocikun.jp/haskell/packages/zasni-gerna";
description = "lojban parser (zasni gerna)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zcache" = callPackage
@@ -119809,9 +123921,11 @@ self: {
http-types monad-logger mtl pem template-haskell text time tls
transformers unordered-containers x509 x509-store x509-validation
];
+ jailbreak = true;
homepage = "https://github.com/VictorDenisov/zendesk-api";
description = "Zendesk API for Haskell programming language";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zeno" = callPackage
@@ -119830,6 +123944,7 @@ self: {
];
description = "An automated proof system for Haskell programs";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zeromq-haskell" = callPackage
@@ -119849,6 +123964,7 @@ self: {
homepage = "http://github.com/twittner/zeromq-haskell/";
description = "Bindings to ZeroMQ 2.1.x";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { zeromq = null;};
"zeromq3-conduit" = callPackage
@@ -119866,6 +123982,7 @@ self: {
homepage = "https://github.com/NicolasT/zeromq3-conduit";
description = "Conduit bindings for zeromq3-haskell";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zeromq3-haskell" = callPackage
@@ -119889,6 +124006,7 @@ self: {
homepage = "http://github.com/twittner/zeromq-haskell/";
description = "Bindings to ZeroMQ 3.x";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) { zeromq = null;};
"zeromq4-haskell" = callPackage
@@ -119927,8 +124045,10 @@ self: {
base Cabal derive directory filepath haskell-src-exts hskeleton
monoid-record process syb template-haskell
];
+ jailbreak = true;
description = "ZeroTH - remove unnecessary TH dependencies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zigbee-znet25" = callPackage
@@ -119943,7 +124063,6 @@ self: {
base bytestring cereal MissingH mtl transformers
];
testDepends = [ base bytestring mtl QuickCheck random ];
- configureFlags = [ "-f-developer" ];
homepage = "https://github.com/djoyner/zigbee-znet25";
description = "XBee ZNet 2.5 (ZigBee) wireless modem communications";
license = stdenv.lib.licenses.bsd3;
@@ -119967,7 +124086,6 @@ self: {
testDepends = [
base bytestring directory HUnit old-time process time
];
- configureFlags = [ "-f-executable" "-fsplitbase" ];
homepage = "http://github.com/jgm/zip-archive";
description = "Library for creating and modifying zip archives";
license = stdenv.lib.licenses.bsd3;
@@ -120082,6 +124200,7 @@ self: {
homepage = "http://github.com/snoyberg/conduit";
description = "Streaming compression/decompression via conduits. (deprecated)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zlib-enum" = callPackage
@@ -120097,7 +124216,6 @@ self: {
buildDepends = [
base bytestring enumerator transformers zlib-bindings
];
- configureFlags = [ "-f-test" ];
homepage = "http://github.com/maltem/zlib-enum";
description = "Enumerator interface for zlib compression";
license = stdenv.lib.licenses.mit;
@@ -120127,6 +124245,7 @@ self: {
homepage = "https://github.com/lucasdicioccio/zmcat";
description = "Command-line tool for ZeroMQ";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zmidi-core" = callPackage
@@ -120154,6 +124273,7 @@ self: {
aeson base binary containers data-ordlist deepseq deepseq-generics
directory filepath mtl parallel-io text zmidi-core
];
+ jailbreak = true;
homepage = "https://bitbucket.org/bash/zmidi-score";
description = "Representing MIDI a simple score";
license = stdenv.lib.licenses.gpl3;
@@ -120174,6 +124294,7 @@ self: {
];
description = "A socat-like tool for zeromq library";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zoneinfo" = callPackage
@@ -120183,8 +124304,10 @@ self: {
version = "0.5";
sha256 = "1n27j8ca79a1ijn7k7dp61kjz62i6zfzlns8n0kwgyvpx413ws8y";
buildDepends = [ base time ];
+ jailbreak = true;
description = "ZoneInfo library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zoom" = callPackage
@@ -120200,9 +124323,11 @@ self: {
buildDepends = [
base directory filepath ghc hamlet hint mtl template-haskell text
];
+ jailbreak = true;
homepage = "http://github.com/iand675/Zoom";
description = "A rake/thor-like task runner written in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zoom-cache" = callPackage
@@ -120227,9 +124352,10 @@ self: {
base blaze-builder iteratee QuickCheck random test-framework
test-framework-quickcheck2 transformers type-level unix
];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
description = "A streamable, seekable, zoomable cache file format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zoom-cache-pcm" = callPackage
@@ -120244,9 +124370,10 @@ self: {
base blaze-builder bytestring containers iteratee ListLike mtl
type-level zoom-cache
];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
description = "Library for zoom-cache PCM audio codecs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zoom-cache-sndfile" = callPackage
@@ -120264,9 +124391,10 @@ self: {
base bytestring containers data-default hsndfile hsndfile-vector
mtl ui-command vector zoom-cache zoom-cache-pcm
];
- configureFlags = [ "-fsplitbase" ];
+ jailbreak = true;
description = "Tools for generating zoom-cache-pcm files";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"zot" = callPackage
@@ -120295,6 +124423,7 @@ self: {
homepage = "https://github.com/MasseR/zsh-battery";
description = "Ascii bars representing battery status";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ztail" = callPackage
@@ -120311,7 +124440,6 @@ self: {
array base containers filepath hinotify old-locale process
regex-compat time unix
];
- configureFlags = [ "-finotify" ];
description = "Multi-file, colored, filtered log tailer";
license = stdenv.lib.licenses.bsd3;
}) {};
diff --git a/pkgs/development/haskell-modules/lib.nix b/pkgs/development/haskell-modules/lib.nix
index 121508488e9..4d0afb33ca0 100644
--- a/pkgs/development/haskell-modules/lib.nix
+++ b/pkgs/development/haskell-modules/lib.nix
@@ -8,8 +8,8 @@ rec {
overrideScope = scope: overrideCabal (drv.overrideScope scope) f;
};
- doHaddock = drv: overrideCabal drv (drv: { noHaddock = false; });
- dontHaddock = drv: overrideCabal drv (drv: { noHaddock = true; });
+ doHaddock = drv: overrideCabal drv (drv: { doHaddock = true; });
+ dontHaddock = drv: overrideCabal drv (drv: { doHaddock = false; });
doJailbreak = drv: overrideCabal drv (drv: { jailbreak = true; });
dontJailbreak = drv: overrideCabal drv (drv: { jailbreak = false; });
diff --git a/pkgs/development/haskell-modules/with-packages-wrapper.nix b/pkgs/development/haskell-modules/with-packages-wrapper.nix
index 4648050dd73..2824296c08f 100644
--- a/pkgs/development/haskell-modules/with-packages-wrapper.nix
+++ b/pkgs/development/haskell-modules/with-packages-wrapper.nix
@@ -30,7 +30,7 @@ let
libDir = "$out/lib/ghc-${ghc.version}";
docDir = "$out/share/doc/ghc/html";
packageCfgDir = "${libDir}/package.conf.d";
- isHaskellPkg = x: (x ? pname) && (x ? version);
+ isHaskellPkg = x: (x ? pname) && (x ? version) && (x ? env);
paths = stdenv.lib.filter isHaskellPkg (stdenv.lib.closePropagation packages);
in
if paths == [] then ghc else
diff --git a/pkgs/development/interpreters/lua-4/default.nix b/pkgs/development/interpreters/lua-4/default.nix
index 835b71f38bf..2d216389bd7 100644
--- a/pkgs/development/interpreters/lua-4/default.nix
+++ b/pkgs/development/interpreters/lua-4/default.nix
@@ -25,5 +25,6 @@ stdenv.mkDerivation {
'';
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux;
+ branch = "4";
};
}
diff --git a/pkgs/development/interpreters/mujs/default.nix b/pkgs/development/interpreters/mujs/default.nix
index e21216ffe5e..e437d016fac 100644
--- a/pkgs/development/interpreters/mujs/default.nix
+++ b/pkgs/development/interpreters/mujs/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchgit, clang }:
stdenv.mkDerivation rec {
- name = "mujs-2014-11-29";
+ name = "mujs-2015-01-18";
src = fetchgit {
url = git://git.ghostscript.com/mujs.git;
- rev = "9bc5fec0804381d59ef8dc62304ed6892fb7c4ca";
- sha256 = "0ba6p92ygcssfzd4ij89vilfr2kwql2d1jpyqxflh5wyh1i92wjl";
+ rev = "b005928523d2427f8b1daac093c259ab53dba3e9";
+ sha256 = "1fgcpa0lm521nbhp7ldh515q0l8012wcfkfyiffchza2wsgmrgfj";
};
buildInputs = [ clang ];
diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix
index d13fe9178bd..87e4dceee4d 100644
--- a/pkgs/development/interpreters/python/2.6/default.nix
+++ b/pkgs/development/interpreters/python/2.6/default.nix
@@ -24,6 +24,9 @@ let
# doesn't work in Nix because Nix changes the mtime of files in
# the Nix store to 1. So treat that as a special case.
./nix-store-mtime.patch
+
+ # http://bugs.python.org/issue10013
+ ./python2.6-fix-parallel-make.patch
];
preConfigure = ''
diff --git a/pkgs/development/interpreters/python/2.6/python2.6-fix-parallel-make.patch b/pkgs/development/interpreters/python/2.6/python2.6-fix-parallel-make.patch
new file mode 100644
index 00000000000..c43e141f9af
--- /dev/null
+++ b/pkgs/development/interpreters/python/2.6/python2.6-fix-parallel-make.patch
@@ -0,0 +1,37 @@
+diff -up Python-2.7/Makefile.pre.in.fix-parallel-make Python-2.7/Makefile.pre.in
+--- Python-2.7/Makefile.pre.in.fix-parallel-make 2010-07-22 15:01:39.567996932 -0400
++++ Python-2.7/Makefile.pre.in 2010-07-22 15:47:02.437998509 -0400
+@@ -207,6 +207,7 @@ SIGNAL_OBJS= @SIGNAL_OBJS@
+
+ ##########################################################################
+ # Grammar
++GRAMMAR_STAMP= $(srcdir)/grammar-stamp
+ GRAMMAR_H= $(srcdir)/Include/graminit.h
+ GRAMMAR_C= $(srcdir)/Python/graminit.c
+ GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
+@@ -530,10 +531,24 @@ Modules/getpath.o: $(srcdir)/Modules/get
+ Modules/python.o: $(srcdir)/Modules/python.c
+ $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
+
++# GNU "make" interprets rules with two dependents as two copies of the rule.
++#
++# In a parallel build this can lead to pgen being run twice, once for each of
++# GRAMMAR_H and GRAMMAR_C, leading to race conditions in which the compiler
++# reads a partially-overwritten copy of one of these files, leading to syntax
++# errors (or linker errors if the fragment happens to be syntactically valid C)
++#
++# See http://www.gnu.org/software/hello/manual/automake/Multiple-Outputs.html
++# for more information
++#
++# Introduce ".grammar-stamp" as a contrived single output from PGEN to avoid
++# this:
++$(GRAMMAR_H) $(GRAMMAR_C): $(GRAMMAR_STAMP)
+
+-$(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
++$(GRAMMAR_STAMP): $(PGEN) $(GRAMMAR_INPUT)
+ -@$(INSTALL) -d Include
+ -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
++ touch $(GRAMMAR_STAMP)
+
+ $(PGEN): $(PGENOBJS)
+ $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
diff --git a/pkgs/development/interpreters/ruby/ruby-2.2.0.nix b/pkgs/development/interpreters/ruby/ruby-2.2.0.nix
new file mode 100644
index 00000000000..908d8a566b6
--- /dev/null
+++ b/pkgs/development/interpreters/ruby/ruby-2.2.0.nix
@@ -0,0 +1,105 @@
+{ stdenv, fetchurl, fetchgit, fetchFromGitHub
+, zlib, zlibSupport ? true
+, openssl, opensslSupport ? true
+, gdbm, gdbmSupport ? true
+, ncurses, readline, cursesSupport ? false
+, groff, docSupport ? false
+, libyaml, yamlSupport ? true
+, libffi, fiddleSupport ? true
+, ruby_2_2_0, autoreconfHook, bison, useRailsExpress ? true
+}:
+
+let
+ op = stdenv.lib.optional;
+ ops = stdenv.lib.optionals;
+ patchSet = import ./rvm-patchsets.nix { inherit fetchFromGitHub; };
+ config = import ./config.nix fetchgit;
+ baseruby = ruby_2_2_0.override { useRailsExpress = false; };
+in
+
+stdenv.mkDerivation rec {
+ version = with passthru; "${majorVersion}.${minorVersion}.${teenyVersion}-p${patchLevel}";
+
+ name = "ruby-${version}";
+
+ src = if useRailsExpress then fetchFromGitHub {
+ owner = "ruby";
+ repo = "ruby";
+ rev = "v2_2_0";
+ sha256 = "1w7rr2nq1bbw6aiagddzlrr3rl95kk33x4pv6570nm072g55ybpi";
+ } else fetchurl {
+ url = "http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.0.tar.gz";
+ sha256 = "1z2092fbpc2qkv1j3yj7jdz7qwvqpxqpmcnkphpjcpgvmfaf6wbn";
+ };
+
+ # Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
+ NROFF = "${groff}/bin/nroff";
+
+ buildInputs = ops useRailsExpress [ autoreconfHook bison ]
+ ++ (op fiddleSupport libffi)
+ ++ (ops cursesSupport [ ncurses readline ])
+ ++ (op docSupport groff)
+ ++ (op zlibSupport zlib)
+ ++ (op opensslSupport openssl)
+ ++ (op gdbmSupport gdbm)
+ ++ (op yamlSupport libyaml)
+ # Looks like ruby fails to build on darwin without readline even if curses
+ # support is not enabled, so add readline to the build inputs if curses
+ # support is disabled (if it's enabled, we already have it) and we're
+ # running on darwin
+ ++ (op (!cursesSupport && stdenv.isDarwin) readline);
+
+ enableParallelBuilding = true;
+
+ patches = ops useRailsExpress [
+ "${patchSet}/patches/ruby/2.2.0/railsexpress/01-zero-broken-tests.patch"
+ "${patchSet}/patches/ruby/2.2.0/railsexpress/02-improve-gc-stats.patch"
+ "${patchSet}/patches/ruby/2.2.0/railsexpress/03-display-more-detailed-stack-trace.patch"
+ "${patchSet}/patches/ruby/2.2.0/railsexpress/04-backport-401c8bb.patch"
+ "${patchSet}/patches/ruby/2.2.0/railsexpress/05-fix-packed-bitfield-compat-warning-for-older-gccs.patch"
+ ];
+
+ # Ruby >= 2.1.0 tries to download config.{guess,sub}
+ postPatch = ''
+ rm tool/config_files.rb
+ cp ${config}/config.guess tool/
+ cp ${config}/config.sub tool/
+ '';
+
+ configureFlags = ["--enable-shared" ]
+ ++ op useRailsExpress "--with-baseruby=${baseruby}/bin/ruby"
+ # on darwin, we have /usr/include/tk.h -- so the configure script detects
+ # that tk is installed
+ ++ ( if stdenv.isDarwin then [ "--with-out-ext=tk " ] else [ ]);
+
+ installFlags = stdenv.lib.optionalString docSupport "install-doc";
+ # Bundler tries to create this directory
+ postInstall = ''
+ # Bundler tries to create this directory
+ mkdir -pv $out/${passthru.gemPath}
+ mkdir -p $out/nix-support
+ cat > $out/nix-support/setup-hook < ghostscript != null;
+assert enableGtk2 -> pygtk != null;
+
+buildPythonPackage rec {
+ name = "matplotlib-1.4.2";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/matplotlib/${name}.tar.gz";
+ sha256 = "0m6v9nwdldlwk22gcd339zg6mny5m301fxgks7z8sb8m9wawg8qp";
+ };
+
+ XDG_RUNTIME_DIR = "/tmp";
+
+ buildInputs = [ python which stdenv ]
+ ++ stdenv.lib.optional enableGhostscript ghostscript;
+
+ propagatedBuildInputs =
+ [ dateutil nose numpy pyparsing tornado freetype
+ libpng pkgconfig mock pytz
+ ]
+ ++ stdenv.lib.optional enableGtk2 pygtk
+ ++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobjectIntrospection pygobject3 ];
+
+ meta = with stdenv.lib; {
+ description = "python plotting library, making publication quality plots";
+ homepage = "http://matplotlib.sourceforge.net/";
+ maintainers = with maintainers; [ lovek323 ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/tools/haskell/ihaskell/wrapper.nix b/pkgs/development/tools/haskell/ihaskell/wrapper.nix
index 3637400b46d..281a3177bae 100644
--- a/pkgs/development/tools/haskell/ihaskell/wrapper.nix
+++ b/pkgs/development/tools/haskell/ihaskell/wrapper.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
- inherit (ihaskell) name;
+ inherit (ihaskell) name pname version;
buildInputs = [ makeWrapper ];
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
--set PROFILE_DIR "\$HOME/.ipython/profile_haskell" \
--set PROFILE_TAR "$(find ${ihaskell} -iname "profile.tar")" \
--set PROFILE_INIT "\$([ ! -d \$PROFILE_DIR ] && mkdir -p \$PROFILE_DIR && tar xvf \$PROFILE_TAR -C \$PROFILE_DIR)" \
- --prefix GHC_PACKAGE_PATH : "\$(${ghc.GHCGetPackages} ${ghc.version}|sed -e 's, -package-db ,:,g'|cut -b 2-):${ihaskell}/lib/ghc-${ghc.version}/package.conf.d/${name}.installedconf" \
+ --prefix GHC_PACKAGE_PATH : "\$(${ghc.GHCGetPackages} ${ghc.version}|sed -e 's, -package-db ,:,g'|cut -b 2-):${ihaskell}/lib/ghc-${ghc.version}/package.conf.d/${pname}-${version}.installedconf" \
--set GHC_PACKAGE_PATH "\$GHC_PACKAGE_PATH:" # always end with : to include base packages
'';
diff --git a/pkgs/development/tools/ocaml/merlin/default.nix b/pkgs/development/tools/ocaml/merlin/default.nix
index b20354e76b2..106581b8fea 100644
--- a/pkgs/development/tools/ocaml/merlin/default.nix
+++ b/pkgs/development/tools/ocaml/merlin/default.nix
@@ -5,11 +5,11 @@ assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00";
stdenv.mkDerivation {
- name = "merlin-2.0";
+ name = "merlin-2.1";
src = fetchurl {
- url = https://github.com/the-lambda-church/merlin/archive/v2.0.tar.gz;
- sha256 = "1khvmncj6gfk9p5wl07gp6ii9csc5s1bcv892lkfpfbnsspis7cp";
+ url = https://github.com/the-lambda-church/merlin/archive/v2.1.tar.gz;
+ sha256 = "0rk5ffhr69wbhr50ixgw1vnv0wkhxwh1z3cpbcwkm72cnac74nj6";
};
buildInputs = [ ocaml findlib yojson menhir ]
diff --git a/pkgs/development/tools/slimerjs/default.nix b/pkgs/development/tools/slimerjs/default.nix
index fd3f48b8b82..67a70b42bc4 100644
--- a/pkgs/development/tools/slimerjs/default.nix
+++ b/pkgs/development/tools/slimerjs/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation {
echo 'export SLIMERJSLAUNCHER=${firefox}/bin/firefox' >> "$out/bin/slimerjs"
echo "'$out/lib/slimerjs/slimerjs' \"\$@\"" >> "$out/bin/slimerjs"
chmod a+x "$out/bin/slimerjs"
- sed -e 's@MaxVersion=32[.]@MaxVersion=33.@' -i "$out/lib/slimerjs/application.ini"
+ sed -e 's@MaxVersion=3[0-9][.]@MaxVersion=40.@' -i "$out/lib/slimerjs/application.ini"
'';
meta = {
inherit (s) version;
diff --git a/pkgs/development/tools/sloc/default.nix b/pkgs/development/tools/sloc/default.nix
new file mode 100644
index 00000000000..6cc7ed8c299
--- /dev/null
+++ b/pkgs/development/tools/sloc/default.nix
@@ -0,0 +1,30 @@
+{ pkgs }:
+
+let
+ nodePackages = import {
+ inherit pkgs;
+ inherit (pkgs) stdenv nodejs fetchurl fetchgit;
+ neededNatives = [ pkgs.python ] ++ pkgs.lib.optional pkgs.stdenv.isLinux pkgs.utillinux;
+ self = nodePackages;
+ generated = ./package.nix;
+ };
+
+in rec {
+
+ build = nodePackages.buildNodePackage {
+ name = "sloc-0.1.6";
+ src = [
+ (pkgs.fetchgit {
+ url = "https://github.com/flosse/sloc.git";
+ sha256 = "0064va0cd4604vqp8y8ggm33klp2xgqmgrwk9ilp7230x27wykyf";
+ rev = "refs/tags/v0.1.6";
+ })
+ ];
+ buildInputs = [ nodePackages.coffee-script ];
+ postInstall = ''
+ coffee -o $out/lib/node_modules/sloc/lib/ -c $src/src/
+ '';
+ deps = [ nodePackages.commander nodePackages.async nodePackages.cli-table nodePackages.readdirp ];
+ passthru.names = [ "sloc" ];
+ };
+}
diff --git a/pkgs/development/tools/sloc/package.nix b/pkgs/development/tools/sloc/package.nix
new file mode 100644
index 00000000000..36a4fee1358
--- /dev/null
+++ b/pkgs/development/tools/sloc/package.nix
@@ -0,0 +1,614 @@
+{ self, fetchurl, fetchgit ? null, lib }:
+
+{
+ by-spec."assertion-error"."1.0.0" =
+ self.by-version."assertion-error"."1.0.0";
+ by-version."assertion-error"."1.0.0" = lib.makeOverridable self.buildNodePackage {
+ name = "node-assertion-error-1.0.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/assertion-error/-/assertion-error-1.0.0.tgz";
+ name = "assertion-error-1.0.0.tgz";
+ sha1 = "c7f85438fdd466bc7ca16ab90c81513797a5d23b";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."assertion-error" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "assertion-error" ];
+ };
+ by-spec."async"."~0.9.0" =
+ self.by-version."async"."0.9.0";
+ by-version."async"."0.9.0" = lib.makeOverridable self.buildNodePackage {
+ name = "node-async-0.9.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/async/-/async-0.9.0.tgz";
+ name = "async-0.9.0.tgz";
+ sha1 = "ac3613b1da9bed1b47510bb4651b8931e47146c7";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."async" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "async" ];
+ };
+ "async" = self.by-version."async"."0.9.0";
+ by-spec."chai"."~1.9.1" =
+ self.by-version."chai"."1.9.1";
+ by-version."chai"."1.9.1" = lib.makeOverridable self.buildNodePackage {
+ name = "node-chai-1.9.1";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/chai/-/chai-1.9.1.tgz";
+ name = "chai-1.9.1.tgz";
+ sha1 = "3711bb6706e1568f34c0b36098bf8f19455c81ae";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."chai" or []);
+ deps = [
+ self.by-version."assertion-error"."1.0.0"
+ self.by-version."deep-eql"."0.1.3"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "chai" ];
+ };
+ "chai" = self.by-version."chai"."1.9.1";
+ by-spec."cli-table"."^0.3.0" =
+ self.by-version."cli-table"."0.3.0";
+ by-version."cli-table"."0.3.0" = lib.makeOverridable self.buildNodePackage {
+ name = "node-cli-table-0.3.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/cli-table/-/cli-table-0.3.0.tgz";
+ name = "cli-table-0.3.0.tgz";
+ sha1 = "44a43c2641667701e084202bff7aa934128aa13e";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."cli-table" or []);
+ deps = [
+ self.by-version."colors"."0.6.2"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "cli-table" ];
+ };
+ "cli-table" = self.by-version."cli-table"."0.3.0";
+ by-spec."coffee-script"."~1.8.0" =
+ self.by-version."coffee-script"."1.8.0";
+ by-version."coffee-script"."1.8.0" = lib.makeOverridable self.buildNodePackage {
+ name = "coffee-script-1.8.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/coffee-script/-/coffee-script-1.8.0.tgz";
+ name = "coffee-script-1.8.0.tgz";
+ sha1 = "9c9f1d2b4a52a000ded15b659791703648263c1d";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."coffee-script" or []);
+ deps = [
+ self.by-version."mkdirp"."0.3.5"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "coffee-script" ];
+ };
+ "coffee-script" = self.by-version."coffee-script"."1.8.0";
+ by-spec."colors"."0.6.2" =
+ self.by-version."colors"."0.6.2";
+ by-version."colors"."0.6.2" = lib.makeOverridable self.buildNodePackage {
+ name = "node-colors-0.6.2";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/colors/-/colors-0.6.2.tgz";
+ name = "colors-0.6.2.tgz";
+ sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."colors" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "colors" ];
+ };
+ by-spec."commander"."0.6.1" =
+ self.by-version."commander"."0.6.1";
+ by-version."commander"."0.6.1" = lib.makeOverridable self.buildNodePackage {
+ name = "node-commander-0.6.1";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/commander/-/commander-0.6.1.tgz";
+ name = "commander-0.6.1.tgz";
+ sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."commander" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "commander" ];
+ };
+ by-spec."commander"."2.0.0" =
+ self.by-version."commander"."2.0.0";
+ by-version."commander"."2.0.0" = lib.makeOverridable self.buildNodePackage {
+ name = "node-commander-2.0.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/commander/-/commander-2.0.0.tgz";
+ name = "commander-2.0.0.tgz";
+ sha1 = "d1b86f901f8b64bd941bdeadaf924530393be928";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."commander" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "commander" ];
+ };
+ by-spec."commander"."~2.3.0" =
+ self.by-version."commander"."2.3.0";
+ by-version."commander"."2.3.0" = lib.makeOverridable self.buildNodePackage {
+ name = "node-commander-2.3.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/commander/-/commander-2.3.0.tgz";
+ name = "commander-2.3.0.tgz";
+ sha1 = "fd430e889832ec353b9acd1de217c11cb3eef873";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."commander" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "commander" ];
+ };
+ "commander" = self.by-version."commander"."2.3.0";
+ by-spec."core-util-is"."~1.0.0" =
+ self.by-version."core-util-is"."1.0.1";
+ by-version."core-util-is"."1.0.1" = lib.makeOverridable self.buildNodePackage {
+ name = "node-core-util-is-1.0.1";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz";
+ name = "core-util-is-1.0.1.tgz";
+ sha1 = "6b07085aef9a3ccac6ee53bf9d3df0c1521a5538";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."core-util-is" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "core-util-is" ];
+ };
+ by-spec."debug"."*" =
+ self.by-version."debug"."2.0.0";
+ by-version."debug"."2.0.0" = lib.makeOverridable self.buildNodePackage {
+ name = "node-debug-2.0.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/debug/-/debug-2.0.0.tgz";
+ name = "debug-2.0.0.tgz";
+ sha1 = "89bd9df6732b51256bc6705342bba02ed12131ef";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."debug" or []);
+ deps = [
+ self.by-version."ms"."0.6.2"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "debug" ];
+ };
+ by-spec."deep-eql"."0.1.3" =
+ self.by-version."deep-eql"."0.1.3";
+ by-version."deep-eql"."0.1.3" = lib.makeOverridable self.buildNodePackage {
+ name = "node-deep-eql-0.1.3";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz";
+ name = "deep-eql-0.1.3.tgz";
+ sha1 = "ef558acab8de25206cd713906d74e56930eb69f2";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."deep-eql" or []);
+ deps = [
+ self.by-version."type-detect"."0.1.1"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "deep-eql" ];
+ };
+ by-spec."diff"."1.0.7" =
+ self.by-version."diff"."1.0.7";
+ by-version."diff"."1.0.7" = lib.makeOverridable self.buildNodePackage {
+ name = "node-diff-1.0.7";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/diff/-/diff-1.0.7.tgz";
+ name = "diff-1.0.7.tgz";
+ sha1 = "24bbb001c4a7d5522169e7cabdb2c2814ed91cf4";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."diff" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "diff" ];
+ };
+ by-spec."glob"."3.2.3" =
+ self.by-version."glob"."3.2.3";
+ by-version."glob"."3.2.3" = lib.makeOverridable self.buildNodePackage {
+ name = "node-glob-3.2.3";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/glob/-/glob-3.2.3.tgz";
+ name = "glob-3.2.3.tgz";
+ sha1 = "e313eeb249c7affaa5c475286b0e115b59839467";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."glob" or []);
+ deps = [
+ self.by-version."minimatch"."0.2.14"
+ self.by-version."graceful-fs"."2.0.3"
+ self.by-version."inherits"."2.0.1"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "glob" ];
+ };
+ by-spec."graceful-fs"."~2.0.0" =
+ self.by-version."graceful-fs"."2.0.3";
+ by-version."graceful-fs"."2.0.3" = lib.makeOverridable self.buildNodePackage {
+ name = "node-graceful-fs-2.0.3";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz";
+ name = "graceful-fs-2.0.3.tgz";
+ sha1 = "7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."graceful-fs" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "graceful-fs" ];
+ };
+ by-spec."growl"."1.8.x" =
+ self.by-version."growl"."1.8.1";
+ by-version."growl"."1.8.1" = lib.makeOverridable self.buildNodePackage {
+ name = "node-growl-1.8.1";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/growl/-/growl-1.8.1.tgz";
+ name = "growl-1.8.1.tgz";
+ sha1 = "4b2dec8d907e93db336624dcec0183502f8c9428";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."growl" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "growl" ];
+ };
+ by-spec."inherits"."2" =
+ self.by-version."inherits"."2.0.1";
+ by-version."inherits"."2.0.1" = lib.makeOverridable self.buildNodePackage {
+ name = "node-inherits-2.0.1";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz";
+ name = "inherits-2.0.1.tgz";
+ sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."inherits" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "inherits" ];
+ };
+ by-spec."inherits"."~2.0.1" =
+ self.by-version."inherits"."2.0.1";
+ by-spec."isarray"."0.0.1" =
+ self.by-version."isarray"."0.0.1";
+ by-version."isarray"."0.0.1" = lib.makeOverridable self.buildNodePackage {
+ name = "node-isarray-0.0.1";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz";
+ name = "isarray-0.0.1.tgz";
+ sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."isarray" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "isarray" ];
+ };
+ by-spec."jade"."0.26.3" =
+ self.by-version."jade"."0.26.3";
+ by-version."jade"."0.26.3" = lib.makeOverridable self.buildNodePackage {
+ name = "jade-0.26.3";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/jade/-/jade-0.26.3.tgz";
+ name = "jade-0.26.3.tgz";
+ sha1 = "8f10d7977d8d79f2f6ff862a81b0513ccb25686c";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."jade" or []);
+ deps = [
+ self.by-version."commander"."0.6.1"
+ self.by-version."mkdirp"."0.3.0"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "jade" ];
+ };
+ by-spec."lru-cache"."2" =
+ self.by-version."lru-cache"."2.5.0";
+ by-version."lru-cache"."2.5.0" = lib.makeOverridable self.buildNodePackage {
+ name = "node-lru-cache-2.5.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.5.0.tgz";
+ name = "lru-cache-2.5.0.tgz";
+ sha1 = "d82388ae9c960becbea0c73bb9eb79b6c6ce9aeb";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."lru-cache" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "lru-cache" ];
+ };
+ by-spec."minimatch"."~0.2.11" =
+ self.by-version."minimatch"."0.2.14";
+ by-version."minimatch"."0.2.14" = lib.makeOverridable self.buildNodePackage {
+ name = "node-minimatch-0.2.14";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz";
+ name = "minimatch-0.2.14.tgz";
+ sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."minimatch" or []);
+ deps = [
+ self.by-version."lru-cache"."2.5.0"
+ self.by-version."sigmund"."1.0.0"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "minimatch" ];
+ };
+ by-spec."minimatch"."~0.2.12" =
+ self.by-version."minimatch"."0.2.14";
+ by-spec."mkdirp"."0.3.0" =
+ self.by-version."mkdirp"."0.3.0";
+ by-version."mkdirp"."0.3.0" = lib.makeOverridable self.buildNodePackage {
+ name = "node-mkdirp-0.3.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz";
+ name = "mkdirp-0.3.0.tgz";
+ sha1 = "1bbf5ab1ba827af23575143490426455f481fe1e";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."mkdirp" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "mkdirp" ];
+ };
+ by-spec."mkdirp"."0.3.5" =
+ self.by-version."mkdirp"."0.3.5";
+ by-version."mkdirp"."0.3.5" = lib.makeOverridable self.buildNodePackage {
+ name = "node-mkdirp-0.3.5";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz";
+ name = "mkdirp-0.3.5.tgz";
+ sha1 = "de3e5f8961c88c787ee1368df849ac4413eca8d7";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."mkdirp" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "mkdirp" ];
+ };
+ by-spec."mkdirp"."~0.3.5" =
+ self.by-version."mkdirp"."0.3.5";
+ by-spec."mocha"."~1.21.4" =
+ self.by-version."mocha"."1.21.4";
+ by-version."mocha"."1.21.4" = lib.makeOverridable self.buildNodePackage {
+ name = "mocha-1.21.4";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/mocha/-/mocha-1.21.4.tgz";
+ name = "mocha-1.21.4.tgz";
+ sha1 = "e77d69c3773ba3e2b4fe6b628c28b5dd43880adc";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."mocha" or []);
+ deps = [
+ self.by-version."commander"."2.0.0"
+ self.by-version."growl"."1.8.1"
+ self.by-version."jade"."0.26.3"
+ self.by-version."diff"."1.0.7"
+ self.by-version."debug"."2.0.0"
+ self.by-version."mkdirp"."0.3.5"
+ self.by-version."glob"."3.2.3"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "mocha" ];
+ };
+ "mocha" = self.by-version."mocha"."1.21.4";
+ by-spec."ms"."0.6.2" =
+ self.by-version."ms"."0.6.2";
+ by-version."ms"."0.6.2" = lib.makeOverridable self.buildNodePackage {
+ name = "node-ms-0.6.2";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/ms/-/ms-0.6.2.tgz";
+ name = "ms-0.6.2.tgz";
+ sha1 = "d89c2124c6fdc1353d65a8b77bf1aac4b193708c";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."ms" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "ms" ];
+ };
+ by-spec."readable-stream"."~1.0.26-2" =
+ self.by-version."readable-stream"."1.0.31";
+ by-version."readable-stream"."1.0.31" = lib.makeOverridable self.buildNodePackage {
+ name = "node-readable-stream-1.0.31";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.31.tgz";
+ name = "readable-stream-1.0.31.tgz";
+ sha1 = "8f2502e0bc9e3b0da1b94520aabb4e2603ecafae";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."readable-stream" or []);
+ deps = [
+ self.by-version."core-util-is"."1.0.1"
+ self.by-version."isarray"."0.0.1"
+ self.by-version."string_decoder"."0.10.31"
+ self.by-version."inherits"."2.0.1"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "readable-stream" ];
+ };
+ by-spec."readdirp"."^1.1.0" =
+ self.by-version."readdirp"."1.1.0";
+ by-version."readdirp"."1.1.0" = lib.makeOverridable self.buildNodePackage {
+ name = "node-readdirp-1.1.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/readdirp/-/readdirp-1.1.0.tgz";
+ name = "readdirp-1.1.0.tgz";
+ sha1 = "6506f9d5d8bb2edc19c855a60bb92feca5fae39c";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."readdirp" or []);
+ deps = [
+ self.by-version."graceful-fs"."2.0.3"
+ self.by-version."minimatch"."0.2.14"
+ self.by-version."readable-stream"."1.0.31"
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "readdirp" ];
+ };
+ "readdirp" = self.by-version."readdirp"."1.1.0";
+ by-spec."sigmund"."~1.0.0" =
+ self.by-version."sigmund"."1.0.0";
+ by-version."sigmund"."1.0.0" = lib.makeOverridable self.buildNodePackage {
+ name = "node-sigmund-1.0.0";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz";
+ name = "sigmund-1.0.0.tgz";
+ sha1 = "66a2b3a749ae8b5fb89efd4fcc01dc94fbe02296";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."sigmund" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "sigmund" ];
+ };
+ by-spec."string_decoder"."~0.10.x" =
+ self.by-version."string_decoder"."0.10.31";
+ by-version."string_decoder"."0.10.31" = lib.makeOverridable self.buildNodePackage {
+ name = "node-string_decoder-0.10.31";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
+ name = "string_decoder-0.10.31.tgz";
+ sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."string_decoder" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "string_decoder" ];
+ };
+ by-spec."type-detect"."0.1.1" =
+ self.by-version."type-detect"."0.1.1";
+ by-version."type-detect"."0.1.1" = lib.makeOverridable self.buildNodePackage {
+ name = "node-type-detect-0.1.1";
+ src = [
+ (fetchurl {
+ url = "http://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz";
+ name = "type-detect-0.1.1.tgz";
+ sha1 = "0ba5ec2a885640e470ea4e8505971900dac58822";
+ })
+ ];
+ buildInputs =
+ (self.nativeDeps."type-detect" or []);
+ deps = [
+ ];
+ peerDependencies = [
+ ];
+ passthru.names = [ "type-detect" ];
+ };
+}
diff --git a/pkgs/games/gnubg/default.nix b/pkgs/games/gnubg/default.nix
new file mode 100644
index 00000000000..00ae4e28860
--- /dev/null
+++ b/pkgs/games/gnubg/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, pkgconfig, glib, python, gtk2 }:
+
+let version = "1.04.000"; in
+stdenv.mkDerivation {
+ name = "gnubg-"+version;
+
+ src = fetchurl {
+ url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz";
+ sha256 = "0gsfl6qbj529d1jg3bkyj9m7bvb566wd7pq5fslgg5yn6c6rbjk6";
+ };
+
+ buildInputs = [ pkgconfig python glib gtk2 ];
+
+ configureFlags = [ "--with-gtk" "--with--board3d" ];
+
+ meta = with stdenv.lib;
+ { description = "World class backgammon application.";
+ homepage = http://www.gnubg.org/;
+ license = licenses.gpl3;
+ maintainers = [ maintainers.emery ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/os-specific/linux/batman-adv/alfred.nix b/pkgs/os-specific/linux/batman-adv/alfred.nix
new file mode 100644
index 00000000000..2d9f5079586
--- /dev/null
+++ b/pkgs/os-specific/linux/batman-adv/alfred.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchurl, pkgconfig, gpsd }:
+
+let
+ ver = "2014.4.0";
+in
+stdenv.mkDerivation rec {
+ name = "alfred-${ver}";
+
+ src = fetchurl {
+ url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
+ sha256 = "99e6c64e7069b0b7cb861369d5c198bfc7d74d41509b8edd8a17ba78e7c8d034";
+ };
+
+ buildInputs = [ pkgconfig gpsd ];
+
+ preBuild = ''
+ makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"
+ '';
+
+ meta = {
+ homepage = http://www.open-mesh.org/projects/batman-adv/wiki/Wiki;
+ description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2, information distribution tool";
+ license = stdenv.lib.licenses.gpl2;
+ maintainers = with stdenv.lib.maintainers; [ fpletz ];
+ platforms = with stdenv.lib.platforms; linux;
+ };
+}
diff --git a/pkgs/os-specific/linux/batman-adv/batctl.nix b/pkgs/os-specific/linux/batman-adv/batctl.nix
index 6e57e7651c4..5ac3e6b4117 100644
--- a/pkgs/os-specific/linux/batman-adv/batctl.nix
+++ b/pkgs/os-specific/linux/batman-adv/batctl.nix
@@ -1,14 +1,14 @@
{stdenv, fetchurl}:
let
- ver = "2013.4.0";
+ ver = "2014.4.0";
in
stdenv.mkDerivation rec {
name = "batctl-${ver}";
src = fetchurl {
url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz";
- sha256 = "0k6b695h38m92a8wn5gvb3z746m3fm0ygv58yyn163adcsvf7sjd";
+ sha256 = "4deae3b6664d0d13acf7a8ece74175a31a72fe58fb15cb9112a9a2014b32cb4c";
};
preBuild = ''
diff --git a/pkgs/os-specific/linux/batman-adv/default.nix b/pkgs/os-specific/linux/batman-adv/default.nix
index 8407f270f48..341b6f3af1d 100644
--- a/pkgs/os-specific/linux/batman-adv/default.nix
+++ b/pkgs/os-specific/linux/batman-adv/default.nix
@@ -2,14 +2,14 @@
assert stdenv.lib.versionOlder kernel.version "3.17";
-let base = "batman-adv-2014.3.0"; in
+let base = "batman-adv-2014.4.0"; in
stdenv.mkDerivation rec {
name = "${base}-${kernel.version}";
src = fetchurl {
url = "http://downloads.open-mesh.org/batman/releases/${base}/${base}.tar.gz";
- sha1 = "wh3if8v4wfwskvzwqsjsyr929krzfmsx";
+ sha256 = "757b9ddd346680f6fd87dc28fde6da0ddc0423a65fbc88fdbaa7b247fed2c1a8";
};
preBuild = ''
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
homepage = http://www.open-mesh.org/projects/batman-adv/wiki/Wiki;
description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2";
license = stdenv.lib.licenses.gpl2;
- maintainers = with stdenv.lib.maintainers; [viric];
+ maintainers = with stdenv.lib.maintainers; [ viric fpletz ];
platforms = with stdenv.lib.platforms; linux;
};
}
diff --git a/pkgs/os-specific/linux/jfbview/default.nix b/pkgs/os-specific/linux/jfbview/default.nix
new file mode 100644
index 00000000000..b497784861f
--- /dev/null
+++ b/pkgs/os-specific/linux/jfbview/default.nix
@@ -0,0 +1,44 @@
+{ stdenv, fetchFromGitHub, freetype, imlib2, jbig2dec, libjpeg, libX11, mujs
+, mupdf, ncurses, openjpeg, openssl }:
+
+stdenv.mkDerivation rec {
+ version = "0.4.2"; # TODO: update to 0.5 or later when nixpkgs has caught up
+ name = "jfbview-${version}";
+
+ src = fetchFromGitHub {
+ repo = "JFBView";
+ owner = "jichu4n";
+ rev = version;
+ sha256 = "1hhlzvs0jhygd3mqpzg5zymrbay9c8ilc4wjnwg00lvxhv3rwswr";
+ };
+
+ buildInputs = [ freetype imlib2 jbig2dec libjpeg libX11 mujs mupdf ncurses
+ openjpeg openssl ];
+
+ enableParallelBuilding = true;
+
+ makeFlags = "jfbpdf jfbview";
+
+ installPhase = ''
+ mkdir -p $out/bin
+ install jfbpdf jfbview $out/bin
+ '';
+
+ meta = with stdenv.lib; {
+ description = "PDF and image viewer for the Linux framebuffer";
+ longDescription = ''
+ PDF and image viewer for the Linux framebuffer. Very fast with a number
+ of advanced and unique features including:
+ - Reads PDFs (MuPDF) and common image formats (Imlib2).
+ - Supports arbitrary zoom (10% - 1000%) and rotation.
+ - Table of Contents (TOC) viewer for PDF documents.
+ - Multi-threaded rendering on multi-core machines.
+ - Asynchronous background rendering of the next page.
+ - Customizable multi-threaded caching.
+ '';
+ homepage = http://seasonofcode.com/pages/jfbview.html;
+ license = with licenses; asl20;
+ platforms = with platforms; linux;
+ maintainers = with maintainers; [ nckx ];
+ };
+}
diff --git a/pkgs/os-specific/linux/kernel/linux-3.10.nix b/pkgs/os-specific/linux/kernel/linux-3.10.nix
index fbcab796dda..4e9af61309b 100644
--- a/pkgs/os-specific/linux/kernel/linux-3.10.nix
+++ b/pkgs/os-specific/linux/kernel/linux-3.10.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // rec {
- version = "3.10.64";
+ version = "3.10.65";
extraMeta.branch = "3.10";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
- sha256 = "0k3n5q4d5y88xady3rdjvy3p3g12gk1fxszc27sw7a752hv41qpq";
+ sha256 = "0nv6zwwpwmpd7zpkjvznbxszk2c5rkdivmmrb71b1a99q6iyxj0f";
};
features.iwlwifi = true;
diff --git a/pkgs/os-specific/linux/kernel/linux-3.12.nix b/pkgs/os-specific/linux/kernel/linux-3.12.nix
index 1dd49edf6d7..86fc9045c0a 100644
--- a/pkgs/os-specific/linux/kernel/linux-3.12.nix
+++ b/pkgs/os-specific/linux/kernel/linux-3.12.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // rec {
- version = "3.12.35";
+ version = "3.12.36";
extraMeta.branch = "3.12";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
- sha256 = "1krzd21hi93kwmffaxfbmyh8cbxl6afgma3yk14xm5ff5z0nlaxy";
+ sha256 = "15b1hvsmnq63kjqv24w2p5l94z7gdkdz445niz5p21z5jdn8bcq0";
};
features.iwlwifi = true;
diff --git a/pkgs/os-specific/linux/kernel/linux-3.14.nix b/pkgs/os-specific/linux/kernel/linux-3.14.nix
index 3ed4bf21107..b4fd4eeefbc 100644
--- a/pkgs/os-specific/linux/kernel/linux-3.14.nix
+++ b/pkgs/os-specific/linux/kernel/linux-3.14.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // rec {
- version = "3.14.28";
+ version = "3.14.29";
# Remember to update grsecurity!
extraMeta.branch = "3.14";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
- sha256 = "08akxzqpj3708ixraxks81bwd5c69nzz4n6ysb53zpsl6h7vybbp";
+ sha256 = "0hklzp0bv7f1pbhwgi84k2iqv9lb2aai1jgxzdrzilp6sz9z8f5v";
};
features.iwlwifi = true;
diff --git a/pkgs/os-specific/linux/kernel/linux-3.18.nix b/pkgs/os-specific/linux/kernel/linux-3.18.nix
index b3e46a8ef8b..dc56325666a 100644
--- a/pkgs/os-specific/linux/kernel/linux-3.18.nix
+++ b/pkgs/os-specific/linux/kernel/linux-3.18.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // rec {
- version = "3.18.2";
+ version = "3.18.3";
# Remember to update grsecurity!
extraMeta.branch = "3.18";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
- sha256 = "1gqs5c3s2qm5slhmqwdrrnkjn0w4mwaj71q79x8qxhyxvnagm40h";
+ sha256 = "0ma2x68975xsi9kb15p0615nx9sm5ppb309kfdz7fgx9pg84q0hf";
};
features.iwlwifi = true;
diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix
index f712d57c8f0..5d413a32102 100644
--- a/pkgs/os-specific/linux/kernel/patches.nix
+++ b/pkgs/os-specific/linux/kernel/patches.nix
@@ -65,17 +65,17 @@ rec {
};
grsecurity_stable = grsecPatch
- { kversion = "3.14.28";
- revision = "201501120819";
+ { kversion = "3.14.29";
+ revision = "201501182217";
branch = "stable";
- sha256 = "0ipgaifbbzn75kmkrrvq3rfijdddanivq1lidrc3gc4aclblnzs8";
+ sha256 = "1g3ijwrclcli2hxv3f9yhvcxcxzs5mmzsw3632zq4pd9vcmsn8iz";
};
grsecurity_unstable = grsecPatch
- { kversion = "3.18.2";
- revision = "201501120821";
+ { kversion = "3.18.3";
+ revision = "201501182219";
branch = "test";
- sha256 = "146vy632wvjlnnvbh3kc7pssz71x0zdgwglpk1i68pm8rnq4awig";
+ sha256 = "06s62kvxsc99rsslngkn3lrhyg58wmvnzq4p2zxyh8hm46bjm3ds";
};
grsec_fix_path =
diff --git a/pkgs/os-specific/linux/spl/default.nix b/pkgs/os-specific/linux/spl/default.nix
index 0648be4e41a..8f4a7491427 100644
--- a/pkgs/os-specific/linux/spl/default.nix
+++ b/pkgs/os-specific/linux/spl/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "0id0m3sfpkz8w7b2pc51px8kvz8xnaf8msps57ddarxidmxvb45g";
};
- patches = [ ./install_prefix.patch ./const.patch ];
+ patches = [ ./install_prefix.patch ./const.patch ./time.patch ];
buildInputs = [ perl autoconf automake libtool ];
diff --git a/pkgs/os-specific/linux/spl/time.patch b/pkgs/os-specific/linux/spl/time.patch
new file mode 100644
index 00000000000..6b1e23bc05e
--- /dev/null
+++ b/pkgs/os-specific/linux/spl/time.patch
@@ -0,0 +1,18 @@
+diff --git a/module/spl/spl-time.c b/module/spl/spl-time.c
+index 0ed49cc..b0fad4f 100644
+--- a/module/spl/spl-time.c
++++ b/module/spl/spl-time.c
+@@ -40,12 +40,7 @@ extern unsigned long long monotonic_clock(void);
+ void
+ __gethrestime(timestruc_t *ts)
+ {
+- struct timespec tspec;
+-
+- getnstimeofday(&tspec);
+-
+- ts->tv_sec = tspec.tv_sec;
+- ts->tv_nsec = tspec.tv_nsec;
++ *ts = current_kernel_time();
+ }
+ EXPORT_SYMBOL(__gethrestime);
+
diff --git a/pkgs/servers/dict/dictd-wiktionary.nix b/pkgs/servers/dict/dictd-wiktionary.nix
index 370bfd39137..42eb3c0757e 100644
--- a/pkgs/servers/dict/dictd-wiktionary.nix
+++ b/pkgs/servers/dict/dictd-wiktionary.nix
@@ -17,7 +17,6 @@ stdenv.mkDerivation rec {
mkdir -p $out/share/dictd/
cd $out/share/dictd
- export LOCALE_ARCHIVE=${glibcLocales}/lib/locale/locale-archive
python -O ${convert} ${data}
dictzip wiktionary-en.dict
echo en_US.UTF-8 > locale
diff --git a/pkgs/servers/http/couchdb/default.nix b/pkgs/servers/http/couchdb/default.nix
index 0e714617544..54412d2ab40 100644
--- a/pkgs/servers/http/couchdb/default.nix
+++ b/pkgs/servers/http/couchdb/default.nix
@@ -13,6 +13,18 @@ stdenv.mkDerivation rec {
buildInputs = [ erlang icu openssl spidermonkey curl help2man sphinx which
file pkgconfig ];
+ /* This patch removes the `-Werror` flag as there are warnings due to
+ * _BSD_SOURCE being deprecated in glibc >= 2.20
+ */
+ patchPhase = ''
+ patch src/couchdb/priv/Makefile.in < couchjs_CFLAGS = -g -Wall -D_BSD_SOURCE \$(CURL_CFLAGS) \$(JS_CFLAGS)
+ EOF
+ '';
+
postInstall = ''
sed -i -e "s|\`getopt|\`${getopt}/bin/getopt|" $out/bin/couchdb
'';
diff --git a/pkgs/servers/http/pshs/default.nix b/pkgs/servers/http/pshs/default.nix
new file mode 100644
index 00000000000..141f58417fb
--- /dev/null
+++ b/pkgs/servers/http/pshs/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, pkgconfig, libevent, file, qrencode }:
+
+let
+ version = "0.2.6";
+in stdenv.mkDerivation {
+ name = "pshs-${version}";
+
+ src = fetchurl {
+ url = "https://www.bitbucket.org/mgorny/pshs/downloads/pshs-${version}.tar.bz2";
+ sha256 = "0n8l5sjnwjqjmw0jzg3hb93n6npg2wahmdg1zrpsw8fyh9ggjg4g";
+ };
+
+ buildInputs = [ pkgconfig libevent file qrencode ];
+
+ # TODO: enable ssl once dependencies
+ # (libssl libcrypto libevent >= 2.1 libevent_openssl) can be met
+ configureFlags = "--disable-ssl";
+
+ meta = {
+ description = "Pretty small HTTP server - a command-line tool to share files";
+ homepage = "https://bitbucket.org/mgorny/pshs/";
+ license = stdenv.lib.licenses.bsd3;
+ maintainers = [ stdenv.lib.maintainers.eduarrrd ];
+ };
+}
diff --git a/pkgs/servers/monitoring/munin/default.nix b/pkgs/servers/monitoring/munin/default.nix
index 4d3065b6542..51eda757e3c 100644
--- a/pkgs/servers/monitoring/munin/default.nix
+++ b/pkgs/servers/monitoring/munin/default.nix
@@ -96,6 +96,9 @@ stdenv.mkDerivation rec {
'';
postFixup = ''
+ echo "Removing references to /usr/{bin,sbin}/ from munin plugins..."
+ find "$out/lib/plugins" -type f -print0 | xargs -0 -L1 sed -i -e "s|/usr/bin/||g" -e "s|/usr/sbin/||g"
+
if test -e $out/nix-support/propagated-native-build-inputs; then
ln -s $out/nix-support/propagated-native-build-inputs $out/nix-support/propagated-user-env-packages
fi
diff --git a/pkgs/servers/s6/default.nix b/pkgs/servers/s6/default.nix
index 32d219bf4aa..1452f82573e 100644
--- a/pkgs/servers/s6/default.nix
+++ b/pkgs/servers/s6/default.nix
@@ -1,20 +1,23 @@
-{ stdenv, execline, fetchurl, skalibs }:
+{ stdenv, execline, fetchgit, skalibs }:
let
- version = "2.0.0.0";
+ version = "2.0.1.0";
in stdenv.mkDerivation rec {
name = "s6-${version}";
- src = fetchurl {
- url = "http://www.skarnet.org/software/s6/${name}.tar.gz";
- sha256 = "14x4l3xp152c9v34zs7nzxzacizfpp0k0lzwh40rxm0w5wz4x0ls";
+ src = fetchgit {
+ url = "git://git.skarnet.org/s6";
+ rev = "refs/tags/v${version}";
+ sha256 = "1x7za0b1a2i6xn06grpb5j361s9bl4524bp5mz3zcdg8s9nil50d";
};
dontDisableStatic = true;
+ enableParallelBuilding = true;
+
configureFlags = [
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
"--with-include=${skalibs}/include"
diff --git a/pkgs/servers/squid/squids.nix b/pkgs/servers/squid/squids.nix
index 3cb8d71e303..587c17a3cee 100644
--- a/pkgs/servers/squid/squids.nix
+++ b/pkgs/servers/squid/squids.nix
@@ -50,5 +50,16 @@ rec {
configureFlags = ["--enable-ssl" "--enable-ssl-crtd"];
};
- latest = squid34;
+ squid35 = squid30.merge rec {
+ name = "squid-3.5.1";
+ src = args.fetchurl {
+ url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2";
+ sha256 = "0rfv1v5vkk7l08v4j16l0lz2grrzd8qf2n25i73qd7c8rgwd6a3x";
+ };
+ buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2
+ libtool openssl];
+ configureFlags = ["--with-openssl" "--enable-ssl-crtd"];
+ };
+
+ latest = squid35;
}
diff --git a/pkgs/tools/X11/bumblebee/default.nix b/pkgs/tools/X11/bumblebee/default.nix
index 1d5c2a129c0..d314c7857ea 100644
--- a/pkgs/tools/X11/bumblebee/default.nix
+++ b/pkgs/tools/X11/bumblebee/default.nix
@@ -31,6 +31,8 @@
# TODO: Confusing. Perhaps use "SubArch" instead of i686?
, nvidia_x11_i686 ? null
, virtualgl_i686 ? null
+, useDisplayDevice ? false
+, extraDeviceOptions ? ""
}:
with stdenv.lib;
let
@@ -77,15 +79,26 @@ let
allEnvs = [hostEnv] ++ optional (i686Env != null) i686Env;
ldPathString = makeLibraryPath allEnvs;
+ # By default we don't want to use a display device
+ deviceOptions = if useDisplayDevice
+ then ""
+ else ''
+
+ # Disable display device
+ Option "UseEDID" "false"
+ Option "UseDisplayDevice" "none"
+ ''
+ + extraDeviceOptions;
+
in stdenv.mkDerivation {
- inherit name;
+ inherit name deviceOptions;
src = fetchurl {
url = "http://bumblebee-project.org/${name}.tar.gz";
sha256 = "03p3gvx99lwlavznrpg9l7jnl1yfg2adcj8jcjj0gxp20wxp060h";
};
- patches = [ ./xopts.patch ];
+ patches = [ ./xopts.patch ./nvidia-conf.patch];
preConfigure = ''
# Substitute the path to the actual modinfo program in module.c.
@@ -98,6 +111,10 @@ in stdenv.mkDerivation {
# Don't use a special group, just reuse wheel.
substituteInPlace configure \
--replace 'CONF_GID="bumblebee"' 'CONF_GID="wheel"'
+
+ # Apply configuration options
+ substituteInPlace conf/xorg.conf.nvidia \
+ --subst-var deviceOptions
'';
# Build-time dependencies of bumblebeed and optirun.
diff --git a/pkgs/tools/X11/bumblebee/nvidia-conf.patch b/pkgs/tools/X11/bumblebee/nvidia-conf.patch
new file mode 100644
index 00000000000..f5535c417cf
--- /dev/null
+++ b/pkgs/tools/X11/bumblebee/nvidia-conf.patch
@@ -0,0 +1,11 @@
+--- bumblebee-3.2.1/conf/xorg.conf.nvidia
++++ bumblebee-3.2.1/conf/xorg.conf.nvidia
+@@ -29,6 +29,5 @@ Section "Device"
+ Option "ProbeAllGpus" "false"
+
+ Option "NoLogo" "true"
+- Option "UseEDID" "false"
+- Option "UseDisplayDevice" "none"
++@deviceOptions@
+ EndSection
+
diff --git a/pkgs/tools/X11/bumblebee/xopts.patch b/pkgs/tools/X11/bumblebee/xopts.patch
index f24b2a20562..6fd3a6a0483 100644
--- a/pkgs/tools/X11/bumblebee/xopts.patch
+++ b/pkgs/tools/X11/bumblebee/xopts.patch
@@ -1,5 +1,5 @@
---- bumblebee-3.0/src/bbsecondary.c.orig 2012-02-05 00:03:06.003439638 +0100
-+++ bumblebee-3.0/src/bbsecondary.c 2012-02-05 00:46:38.017382619 +0100
+--- bumblebee-3.2.1/src/bbsecondary.c 2012-02-05 00:03:06.003439638 +0100
++++ bumblebee-3.2.1/src/bbsecondary.c 2012-02-05 00:46:38.017382619 +0100
@@ -149,6 +149,8 @@
"-sharevts",
"-nolisten", "tcp",
diff --git a/pkgs/tools/X11/xbrightness/default.nix b/pkgs/tools/X11/xbrightness/default.nix
new file mode 100644
index 00000000000..cb10718a11b
--- /dev/null
+++ b/pkgs/tools/X11/xbrightness/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, xlibs }:
+
+stdenv.mkDerivation {
+
+ name = "xbrightness-0.3-mika-akk";
+ src = fetchurl {
+ url = http://shallowsky.com/software/xbrightness/xbrightness-0.3-mika-akk.tar.gz;
+ sha256 = "2564dbd393544657cdabe4cbf535d9cfb9abe8edddb1b8cdb1ed4d12f358626e";
+ };
+
+ buildInputs = [
+ xlibs.imake
+ xlibs.libX11
+ xlibs.libXaw
+ xlibs.libXext
+ xlibs.libXmu
+ xlibs.libXpm
+ xlibs.libXxf86vm
+ ];
+
+ configurePhase = "xmkmf";
+
+ installPhase = ''
+ make install BINDIR=$out/bin
+ make install.man MANPATH=$out/share/man
+ '';
+
+ meta = {
+ description = "X11 brigthness and gamma software control";
+ homepage = http://shallowsky.com/software;
+ license = stdenv.lib.licenses.mit;
+ };
+}
diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix
index 334e7f6ce1d..a37aa26cf7c 100644
--- a/pkgs/tools/admin/awscli/default.nix
+++ b/pkgs/tools/admin/awscli/default.nix
@@ -1,13 +1,13 @@
-{ stdenv, fetchurl, pythonPackages }:
+{ stdenv, fetchzip, pythonPackages, groff }:
pythonPackages.buildPythonPackage rec {
name = "awscli-${version}";
- version = "1.6.10";
+ version = "1.7.0";
namePrefix = "";
- src = fetchurl {
+ src = fetchzip {
url = "https://github.com/aws/aws-cli/archive/${version}.tar.gz";
- sha256 = "1g25yqxpcjrwjiibwgjrlqdyx6hpdlcb6zr2s05w592gr9gpbwpm";
+ sha256 = "14cbfvwx18vs2l8hhvamy1mbvjwa3xrm58l8yyalhrh5pqq952mi";
};
propagatedBuildInputs = [
@@ -18,6 +18,7 @@ pythonPackages.buildPythonPackage rec {
pythonPackages.docutils
pythonPackages.rsa
pythonPackages.pyasn1
+ groff
];
meta = {
diff --git a/pkgs/tools/filesystems/smbnetfs/default.nix b/pkgs/tools/filesystems/smbnetfs/default.nix
index e9d9b27d751..5b5ca199613 100644
--- a/pkgs/tools/filesystems/smbnetfs/default.nix
+++ b/pkgs/tools/filesystems/smbnetfs/default.nix
@@ -1,5 +1,5 @@
x@{builderDefsPackage
- , fuse, samba, pkgconfig
+ , fuse, samba, pkgconfig, glib
, ...}:
builderDefsPackage
(a :
@@ -12,7 +12,7 @@ let
sourceInfo = rec {
baseName="smbnetfs";
dirBaseName="SMBNetFS";
- version = "0.5.3b";
+ version = "0.6.0";
name="${baseName}-${version}";
project="${baseName}";
url="mirror://sourceforge/project/${project}/${baseName}/${dirBaseName}-${version}/${name}.tar.bz2";
@@ -21,7 +21,7 @@ in
rec {
src = a.fetchurl {
url = sourceInfo.url;
- sha256 = "1j9b30kh4ymv4nr8c1qc7hfg6pscgyj75ib16pqa0zljjk1klx18";
+ sha256 = "16sikr81ipn8v1a1zrqgnsy2as3zcaxbzkr0bm5vxy012bq0plkd";
};
inherit (sourceInfo) name version;
diff --git a/pkgs/tools/graphics/gnuplot/default.nix b/pkgs/tools/graphics/gnuplot/default.nix
index b1d02149d37..f8dd35576ff 100644
--- a/pkgs/tools/graphics/gnuplot/default.nix
+++ b/pkgs/tools/graphics/gnuplot/default.nix
@@ -14,18 +14,18 @@
, fontconfig ? null
, gnused ? null
, coreutils ? null
-, withQt ? false, qt4 }:
+, withQt ? false, qt }:
assert libX11 != null -> (fontconfig != null && gnused != null && coreutils != null);
let
withX = libX11 != null && !aquaterm && !stdenv.isDarwin;
in
stdenv.mkDerivation rec {
- name = "gnuplot-4.6.6";
+ name = "gnuplot-5.0.0";
src = fetchurl {
url = "mirror://sourceforge/gnuplot/${name}.tar.gz";
- sha256 = "0x022d7psl9g6q389x5rjlfsvfciz88yrgxg4lig4ichs1pmj68z";
+ sha256 = "1bqg6zbsin9w9m53rbf6adzv0j2gs66z2p5pkd060jlipk2lnza1";
};
buildInputs =
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
++ lib.optional withTeXLive texLive
++ lib.optional withLua lua
++ lib.optionals withX [ libX11 libXpm libXt libXaw ]
- ++ lib.optional withQt [ qt4 ]
+ ++ lib.optional withQt [ qt ]
# compiling with wxGTK causes a malloc (double free) error on darwin
++ lib.optional (withWxGTK && !stdenv.isDarwin) wxGTK;
diff --git a/pkgs/tools/misc/execline/default.nix b/pkgs/tools/misc/execline/default.nix
index 96126233458..320115b4f2d 100644
--- a/pkgs/tools/misc/execline/default.nix
+++ b/pkgs/tools/misc/execline/default.nix
@@ -1,20 +1,23 @@
-{ stdenv, fetchurl, skalibs }:
+{ stdenv, fetchgit, skalibs }:
let
- version = "2.0.0.0";
+ version = "2.0.1.1";
in stdenv.mkDerivation rec {
name = "execline-${version}";
- src = fetchurl {
- url = "http://skarnet.org/software/execline/${name}.tar.gz";
- sha256 = "1g5v6icxsf7p2ccj9iq85iikkm12xph65ri86ydakihv6al3jw71";
+ src = fetchgit {
+ url = "git://git.skarnet.org/execline";
+ rev = "refs/tags/v${version}";
+ sha256 = "06fn4fb8hp68pffgfc55l5raph3bk9v0gngbgxfyzkmwbb1gxhll";
};
dontDisableStatic = true;
+ enableParallelBuilding = true;
+
configureFlags = [
"--libdir=\${prefix}/lib"
"--includedir=\${prefix}/include"
diff --git a/pkgs/tools/networking/darkstat/default.nix b/pkgs/tools/networking/darkstat/default.nix
new file mode 100644
index 00000000000..af15f6a62e5
--- /dev/null
+++ b/pkgs/tools/networking/darkstat/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, libpcap, zlib }:
+
+stdenv.mkDerivation rec {
+ version = "3.0.718";
+ name = "darkstat-${version}";
+
+ src = fetchurl {
+ url = "${meta.homepage}/${name}.tar.bz2";
+ sha256 = "1zxd4bxdfk1pjpcxhrcp54l991g0lljl4sr312nsd7p8yi9kwbv8";
+ };
+
+ buildInputs = [ libpcap zlib ];
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "Network statistics web interface";
+ longDescription = ''
+ Captures network traffic, calculates statistics about usage, and serves
+ reports over HTTP. Features:
+ - Traffic graphs, reports per host, shows ports for each host.
+ - Embedded web-server with deflate compression.
+ - Asynchronous reverse DNS resolution using a child process.
+ - Small. Portable. Single-threaded. Efficient.
+ - Supports IPv6.
+ '';
+ homepage = http://unix4lyfe.org/darkstat;
+ license = with licenses; gpl2;
+ maintainers = with maintainers; [ nckx ];
+ };
+}
diff --git a/pkgs/tools/networking/httping/default.nix b/pkgs/tools/networking/httping/default.nix
new file mode 100644
index 00000000000..7e9906e7971
--- /dev/null
+++ b/pkgs/tools/networking/httping/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, gettext }:
+
+stdenv.mkDerivation rec {
+ name = "httping-${version}";
+
+ version = "2.3.4";
+
+ src = fetchurl {
+ url = "http://www.vanheusden.com/httping/httping-2.3.4.tgz";
+ sha256 = "1hkbhdxb0phrvrddx9kcfpqlzm41xv9jvy82nfkqa7bb0v5p2qd7";
+ };
+
+ buildInputs = [ gettext ];
+
+ makeFlags = [
+ "DESTDIR=$(out)"
+ "PREFIX="
+ ];
+
+ meta = {
+ homepage = "http://www.vanheusden.com/httping";
+ description = "ping for HTTP requests";
+ maintainers = with stdenv.lib.maintainers; [ rickynils ];
+ platforms = with stdenv.lib.platforms; linux;
+ };
+}
diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix
new file mode 100644
index 00000000000..e9a0157b123
--- /dev/null
+++ b/pkgs/tools/networking/netsniff-ng/default.nix
@@ -0,0 +1,44 @@
+{ stdenv, fetchFromGitHub, bison, flex, geoip, libcli, libnet
+, libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl
+, pkgconfig, which, zlib }:
+
+stdenv.mkDerivation rec {
+ version = "0.5.9-rc4-40-g5107740";
+ name = "netsniff-ng-${version}";
+
+ src = fetchFromGitHub rec { # Upstream recommends and supports git
+ repo = "netsniff-ng";
+ owner = repo;
+ rev = "5107740603d10feed6104afd75042970cb392843";
+ sha256 = "1z3b7pa5rhz37dhfb1riy1j9lg917bs4z7clqbxm1hzi1x2ln988";
+ };
+
+ buildInputs = [ bison flex geoip libcli libnet libnl libnetfilter_conntrack
+ libpcap libsodium liburcu ncurses perl pkgconfig which zlib ];
+
+ # ./configure is not autoGNU but some home-brewn magic
+ configurePhase = ''
+ patchShebangs configure
+ NACL_INC_DIR=${libsodium}/include/sodium NACL_LIB=sodium ./configure
+ '';
+
+ enableParallelBuilding = true;
+
+ # Tries to install to /etc, but they're more like /share files anyway
+ makeFlags = "PREFIX=$(out) ETCDIR=$(out)/etc";
+
+ meta = with stdenv.lib; {
+ description = "Swiss army knife for daily Linux network plumbing";
+ longDescription = ''
+ netsniff-ng is a free Linux networking toolkit. Its gain of performance
+ is reached by zero-copy mechanisms, so that on packet reception and
+ transmission the kernel does not need to copy packets from kernel space
+ to user space and vice versa. The toolkit can be used for network
+ development and analysis, debugging, auditing or network reconnaissance.
+ '';
+ homepage = http://netsniff-ng.org/;
+ license = with licenses; gpl2;
+ platforms = with platforms; linux;
+ maintainers = with maintainers; [ nckx ];
+ };
+}
diff --git a/pkgs/tools/networking/s6-dns/default.nix b/pkgs/tools/networking/s6-dns/default.nix
index 4dae1a1c8c3..2339ac5ff05 100644
--- a/pkgs/tools/networking/s6-dns/default.nix
+++ b/pkgs/tools/networking/s6-dns/default.nix
@@ -1,20 +1,23 @@
-{ stdenv, fetchurl, skalibs }:
+{ stdenv, fetchgit, skalibs }:
let
- version = "2.0.0.0";
+ version = "2.0.0.2";
in stdenv.mkDerivation rec {
name = "s6-dns-${version}";
- src = fetchurl {
- url = "http://www.skarnet.org/software/s6-dns/${name}.tar.gz";
- sha256 = "07k6rzgsgcxr0bq209as79sjn2nrcjj9mlmk9vvy1hvsag0xnkcq";
+ src = fetchgit {
+ url = "git://git.skarnet.org/s6-dns";
+ rev = "refs/tags/v${version}";
+ sha256 = "0y76gvgvg2y3hhr3pk2nkki1idjj6sxxcnvd29yd79v0419p2dl3";
};
dontDisableStatic = true;
+ enableParallelBuilding = true;
+
configureFlags = [
"--includedir=\${prefix}/include"
"--libdir=\${prefix}/lib"
diff --git a/pkgs/tools/networking/s6-networking/default.nix b/pkgs/tools/networking/s6-networking/default.nix
index 09d9e722245..e8857e35e67 100644
--- a/pkgs/tools/networking/s6-networking/default.nix
+++ b/pkgs/tools/networking/s6-networking/default.nix
@@ -1,30 +1,36 @@
-{ stdenv, execline, fetchurl, s6Dns, skalibs }:
+{ stdenv, execline, fetchgit, s6, s6Dns, skalibs }:
let
- version = "2.0.0.0";
+ version = "2.0.1.0";
in stdenv.mkDerivation rec {
name = "s6-networking-${version}";
- src = fetchurl {
- url = "http://www.skarnet.org/software/s6-networking/${name}.tar.gz";
- sha256 = "0k2i0g5lsvh1gz90ixwdip1pngj9vd45d4fpmdg075vd8zhh7j37";
+ src = fetchgit {
+ url = "git://git.skarnet.org/s6-networking";
+ rev = "refs/tags/v${version}";
+ sha256 = "1q094x8x99cy0kkq74kfw1rd9kmp6ynpz9ahx0lviz05n9paq7ya";
};
dontDisableStatic = true;
+ enableParallelBuilding = true;
+
configureFlags = [
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
"--with-include=${skalibs}/include"
"--with-include=${execline}/include"
+ "--with-include=${s6}/include"
"--with-include=${s6Dns}/include"
"--with-lib=${skalibs}/lib"
"--with-lib=${execline}/lib"
+ "--with-lib=${s6}/lib"
"--with-lib=${s6Dns}/lib"
"--with-dynlib=${skalibs}/lib"
"--with-dynlib=${execline}/lib"
+ "--with-dynlib=${s6}/lib"
"--with-dynlib=${s6Dns}/lib"
];
diff --git a/pkgs/tools/package-management/nix-prefetch-scripts/default.nix b/pkgs/tools/package-management/nix-prefetch-scripts/default.nix
index 84439136d49..07cbd99a10b 100644
--- a/pkgs/tools/package-management/nix-prefetch-scripts/default.nix
+++ b/pkgs/tools/package-management/nix-prefetch-scripts/default.nix
@@ -17,6 +17,7 @@ stdenv.mkDerivation {
wrapArgs="$wrapArgs --prefix PATH : $dep/bin"
done
wrapArgs="$wrapArgs --prefix PATH : ${gnused}/bin"
+ wrapArgs="$wrapArgs --set HOME : /homeless-shelter"
wrapProgram $out/bin/$name $wrapArgs
}
diff --git a/pkgs/tools/package-management/nix/unstable.nix b/pkgs/tools/package-management/nix/unstable.nix
index 91c35b59964..251ff5b220c 100644
--- a/pkgs/tools/package-management/nix/unstable.nix
+++ b/pkgs/tools/package-management/nix/unstable.nix
@@ -5,11 +5,11 @@
}:
stdenv.mkDerivation rec {
- name = "nix-1.8pre3919_f43a8ed";
+ name = "nix-1.9pre4020_f6716e9";
src = fetchurl {
- url = http://hydra.nixos.org/build/17676230/download/4/nix-1.8pre3919_f43a8ed.tar.xz;
- sha256 = "6837adca17a1571fb82f7db0f21230577ff5d3d9b2a5ae1e465862033c6fded4";
+ url = "http://hydra.nixos.org/build/18780017/download/4/${name}.tar.xz";
+ sha256 = "0jki14yxwv1f33fqkd1bi8bpxafkzjv8yixiwnw8nkhx074sipsn";
};
nativeBuildInputs = [ perl pkgconfig ];
diff --git a/pkgs/tools/system/plan9port/default.nix b/pkgs/tools/system/plan9port/default.nix
index 709f83d3cbe..ca248da56cf 100644
--- a/pkgs/tools/system/plan9port/default.nix
+++ b/pkgs/tools/system/plan9port/default.nix
@@ -7,6 +7,11 @@ stdenv.mkDerivation rec {
name = "plan9port-20140306";
patches = [ ./fontsrv.patch ];
+ postPatch =
+ ''
+ substituteInPlace src/cmd/acme/acme.c \
+ --replace /lib/font/bit $out/plan9/font
+ '';
builder = ./builder.sh;
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index db155f185ae..e15e116ddf7 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -444,6 +444,10 @@ let
### TOOLS
+ "3dfsb" = callPackage ../applications/misc/3dfsb {
+ glibc = glibc.override { debugSymbols = true; };
+ };
+
abduco = callPackage ../tools/misc/abduco { };
acct = callPackage ../tools/system/acct { };
@@ -973,6 +977,8 @@ let
dar = callPackage ../tools/archivers/dar { };
+ darkstat = callPackage ../tools/networking/darkstat { };
+
davfs2 = callPackage ../tools/filesystems/davfs2 { };
dbench = callPackage ../development/tools/misc/dbench { };
@@ -1341,7 +1347,7 @@ let
gnupg = gnupg20;
- gnuplot = callPackage ../tools/graphics/gnuplot { };
+ gnuplot = callPackage ../tools/graphics/gnuplot { qt = qt5; };
gnuplot_qt = gnuplot.override { withQt = true; };
@@ -1499,6 +1505,8 @@ let
httpie = callPackage ../tools/networking/httpie { };
+ httping = callPackage ../tools/networking/httping {};
+
httpfs2 = callPackage ../tools/filesystems/httpfs { };
httptunnel = callPackage ../tools/networking/httptunnel { };
@@ -1633,6 +1641,8 @@ let
netperf = callPackage ../applications/networking/netperf { };
+ netsniff-ng = callPackage ../tools/networking/netsniff-ng { };
+
ninka = callPackage ../development/tools/misc/ninka { };
nodejs = callPackage ../development/web/nodejs { };
@@ -2266,6 +2276,8 @@ let
inherit python libsexy pkgconfig libxml2 pygtk pango gtk glib;
};
+ pytrainer = callPackage ../applications/misc/pytrainer { };
+
openmpi = callPackage ../development/libraries/openmpi { };
qastools = callPackage ../tools/audio/qastools {
@@ -2808,6 +2820,8 @@ let
xarchiver = callPackage ../tools/archivers/xarchiver { };
+ xbrightness = callPackage ../tools/X11/xbrightness { };
+
xcruiser = callPackage ../applications/misc/xcruiser { };
unarj = callPackage ../tools/archivers/unarj { };
@@ -4291,6 +4305,7 @@ let
ruby_2_1_1 = lowPrio (callPackage ../development/interpreters/ruby/ruby-2.1.1.nix { });
ruby_2_1_2 = lowPrio (callPackage ../development/interpreters/ruby/ruby-2.1.2.nix { });
ruby_2_1_3 = lowPrio (callPackage ../development/interpreters/ruby/ruby-2.1.3.nix { });
+ ruby_2_2_0 = lowPrio (callPackage ../development/interpreters/ruby/ruby-2.2.0.nix { });
# Ruby aliases
ruby = ruby_1_9;
@@ -4298,6 +4313,7 @@ let
ruby_1_9 = ruby_1_9_3;
ruby_2_0 = ruby_2_0_0;
ruby_2_1 = ruby_2_1_3;
+ ruby_2_2 = ruby_2_2_0;
rubyLibs = recurseIntoAttrs (callPackage ../development/interpreters/ruby/libs.nix { });
@@ -4547,6 +4563,8 @@ let
inherit pkgs ctags writeScriptBin;
};
+ ctodo = callPackage ../applications/misc/ctodo { };
+
cmake = callPackage ../development/tools/build-managers/cmake { };
cmake-3_0 = callPackage ../development/tools/build-managers/cmake/3.0.nix { };
@@ -4856,6 +4874,8 @@ let
sloccount = callPackage ../development/tools/misc/sloccount { };
+ sloc = callPackage ../development/tools/sloc { };
+
smatch = callPackage ../development/tools/analysis/smatch {
buildllvmsparse = false;
buildc2xml = false;
@@ -5412,7 +5432,8 @@ let
installLocales = config.glibc.locales or false;
};
- glibcLocales = callPackage ../development/libraries/glibc/locales.nix { };
+ # Not supported on Darwin
+ glibcLocales = if (! stdenv.isDarwin) then (callPackage ../development/libraries/glibc/locales.nix { }) else null;
glibcInfo = callPackage ../development/libraries/glibc/info.nix { };
@@ -5832,6 +5853,8 @@ let
libchop = callPackage ../development/libraries/libchop { };
+ libcli = callPackage ../development/libraries/libcli { };
+
libcm = callPackage ../development/libraries/libcm { };
inherit (gnome3) libcroco;
@@ -6659,6 +6682,8 @@ let
openbabel = callPackage ../development/libraries/openbabel { };
+ openbr = callPackage ../development/libraries/openbr { };
+
opencascade = callPackage ../development/libraries/opencascade { };
opencascade_6_5 = callPackage ../development/libraries/opencascade/6.5.nix {
@@ -6916,6 +6941,8 @@ let
readline63 = callPackage ../development/libraries/readline/6.3.nix { };
+ readosm = callPackage ../development/libraries/readosm { };
+
librdf_raptor = callPackage ../development/libraries/librdf/raptor.nix { };
librdf_raptor2 = callPackage ../development/libraries/librdf/raptor2.nix { };
@@ -6981,6 +7008,8 @@ let
SDL_sound = callPackage ../development/libraries/SDL_sound { };
+ SDL_stretch= callPackage ../development/libraries/SDL_stretch { };
+
SDL_ttf = callPackage ../development/libraries/SDL_ttf { };
SDL2 = callPackage ../development/libraries/SDL2 {
@@ -7040,6 +7069,8 @@ let
spandsp = callPackage ../development/libraries/spandsp {};
+ spatialite_tools = callPackage ../development/libraries/spatialite-tools { };
+
speechd = callPackage ../development/libraries/speechd { };
speech_tools = callPackage ../development/libraries/speech-tools {};
@@ -7844,6 +7875,8 @@ let
postfix = postfix211;
+ pshs = callPackage ../servers/http/pshs { };
+
pulseaudio = callPackage ../servers/pulseaudio {
gconf = gnome.GConf;
# The following are disabled in the default build, because if this
@@ -8132,6 +8165,8 @@ let
acpitool = callPackage ../os-specific/linux/acpitool { };
+ alfred = callPackage ../os-specific/linux/batman-adv/alfred.nix { };
+
alienfx = callPackage ../os-specific/linux/alienfx { };
alsaLib = callPackage ../os-specific/linux/alsa-lib { };
@@ -8357,6 +8392,8 @@ let
iwlegacy = callPackage ../os-specific/linux/firmware/iwlegacy { };
+ jfbview = callPackage ../os-specific/linux/jfbview { };
+
jujuutils = callPackage ../os-specific/linux/jujuutils { };
kbd = callPackage ../os-specific/linux/kbd { };
@@ -9148,6 +9185,8 @@ let
oldstandard = callPackage ../data/fonts/oldstandard { };
+ open-dyslexic = callPackage ../data/fonts/open-dyslexic { };
+
opensans-ttf = callPackage ../data/fonts/opensans-ttf { };
poly = callPackage ../data/fonts/poly { };
@@ -9188,10 +9227,11 @@ let
source-serif-pro = callPackage ../data/fonts/source-serif-pro { };
- source-han-sans-japanese = callPackage ../data/fonts/source-han-sans/japanese.nix {};
- source-han-sans-korean = callPackage ../data/fonts/source-han-sans/korean.nix {};
- source-han-sans-simplified-chinese = callPackage ../data/fonts/source-han-sans/simplified-chinese.nix {};
- source-han-sans-traditional-chinese = callPackage ../data/fonts/source-han-sans/traditional-chinese.nix {};
+ sourceHanSansPackages = callPackage ../data/fonts/source-han-sans { };
+ source-han-sans-japanese = sourceHanSansPackages.japanese;
+ source-han-sans-korean = sourceHanSansPackages.korean;
+ source-han-sans-simplified-chinese = sourceHanSansPackages.simplified-chinese;
+ source-han-sans-traditional-chinese = sourceHanSansPackages.traditional-chinese;
tango-icon-theme = callPackage ../data/icons/tango-icon-theme { };
@@ -9338,9 +9378,9 @@ let
backintime-common = callPackage ../applications/networking/sync/backintime/common.nix { };
- backintime-gnome = callPackage ../applications/networking/sync/backintime/gnome.nix { };
+ backintime-qt4 = callPackage ../applications/networking/sync/backintime/qt4.nix { };
- backintime = backintime-gnome;
+ backintime = backintime-qt4;
bar = callPackage ../applications/window-managers/bar { };
@@ -9470,6 +9510,8 @@ let
inherit (gnome) libgnomeui GConf;
};
+ cortex = callPackage ../applications/misc/cortex { };
+
csound = callPackage ../applications/audio/csound { };
cinepaint = callPackage ../applications/graphics/cinepaint {
@@ -10252,6 +10294,11 @@ let
inherit (pythonPackages) lxml;
};
+ jumanji = callPackage ../applications/networking/browsers/jumanji {
+ webkitgtk = webkitgtk24x;
+ gtk = gtk3;
+ };
+
jwm = callPackage ../applications/window-managers/jwm { };
k3d = callPackage ../applications/graphics/k3d {
@@ -10957,6 +11004,10 @@ let
conf = config.st.conf or null;
};
+ stag = callPackage ../applications/misc/stag {
+ curses = ncurses;
+ };
+
stella = callPackage ../misc/emulators/stella { };
linuxstopmotion = callPackage ../applications/video/linuxstopmotion { };
@@ -11035,8 +11086,8 @@ let
stp = callPackage ../applications/science/logic/stp {};
+ stumpwmContrib = callPackage ../applications/window-managers/stumpwm/contrib.nix { };
stumpwm = callPackage ../applications/window-managers/stumpwm {
- stumpwmContrib = callPackage ../applications/window-managers/stumpwm/contrib.nix { };
sbcl = sbcl_1_2_5;
lispPackages = lispPackagesFor (wrapLisp sbcl_1_2_5);
};
@@ -11328,6 +11379,11 @@ let
else null;
};
+ # use if you intend to connect the nvidia card to a monitor
+ bumblebee_display = bumblebee.override {
+ useDisplayDevice = true;
+ };
+
vkeybd = callPackage ../applications/audio/vkeybd {
inherit (xlibs) libX11;
};
@@ -11809,6 +11865,8 @@ let
gltron = callPackage ../games/gltron { };
+ gnubg = callPackage ../games/gnubg { };
+
gnuchess = callPackage ../games/gnuchess { };
gnugo = callPackage ../games/gnugo { };
@@ -12346,8 +12404,6 @@ let
archimedes = callPackage ../applications/science/electronics/archimedes { };
- biolib = callPackage ../development/libraries/science/biology/biolib { };
-
emboss = callPackage ../applications/science/biology/emboss { };
mrbayes = callPackage ../applications/science/biology/mrbayes { };
@@ -12838,13 +12894,10 @@ let
stateDir = config.nix.stateDir or "/nix/var";
};
- /*
nixUnstable = callPackage ../tools/package-management/nix/unstable.nix {
storeDir = config.nix.storeDir or "/nix/store";
stateDir = config.nix.stateDir or "/nix/var";
};
- */
- nixUnstable = nixStable;
nixops = callPackage ../tools/package-management/nixops { };
diff --git a/pkgs/top-level/haskell-defaults.nix b/pkgs/top-level/haskell-defaults.nix
index 9e3c8b149d4..509c3d5acdf 100644
--- a/pkgs/top-level/haskell-defaults.nix
+++ b/pkgs/top-level/haskell-defaults.nix
@@ -134,7 +134,6 @@
binary = super.binary_0_7_2_2.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
cabalInstall_1_16_0_2 = super.cabalInstall_1_16_0_2;
caseInsensitive = super.caseInsensitive.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
- GLUT = self.GLUT_2_2_2_1;
happy = super.happy.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
hashable = super.hashable.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
hashtables = super.hashtables.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
@@ -142,8 +141,6 @@
HTTP = super.HTTP.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
HUnit = super.HUnit.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
network = super.network_2_2_1_7.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
- OpenGLRaw = self.OpenGLRaw_1_3_0_0;
- OpenGL = self.OpenGL_2_6_0_1;
parsec = super.parsec.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
QuickCheck = super.QuickCheck.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
stm = self.stm_2_4_2.override { cabal = self.cabal.override { Cabal = self.Cabal_1_16_0_3; }; };
@@ -158,20 +155,17 @@
# Abstraction for Haskell packages collections
packagesFun = makeOverridable
- ({ ghcPath
- , ghcBinary ? ghc6101Binary
+ ({ ghc
, prefFun
, extension ? (self : super : {})
, profExplicit ? false, profDefault ? false
, modifyPrio ? lowPrio
- , extraArgs ? {}
} :
let haskellPackagesClass = import ./haskell-packages.nix {
- inherit pkgs newScope modifyPrio;
+ inherit pkgs newScope ghc modifyPrio;
enableLibraryProfiling =
if profExplicit then profDefault
else config.cabal.libraryProfiling or profDefault;
- ghc = callPackage ghcPath ({ ghc = ghcBinary; } // extraArgs);
};
haskellPackagesPrefsClass = self : let super = haskellPackagesClass self; in super // prefFun self super;
haskellPackagesExtensionClass = self : let super = haskellPackagesPrefsClass self; in super // extension self super;
@@ -195,60 +189,19 @@
modifyPrio = defaultVersionPrioFun true; };
};
- # Binary versions of GHC
- #
- # GHC binaries are around for bootstrapping purposes
-
- ghc6101Binary = lowPrio (callPackage ../development/compilers/ghc/6.10.1-binary.nix {
- gmp = pkgs.gmp4;
- });
-
- ghc6102Binary = lowPrio (callPackage ../development/compilers/ghc/6.10.2-binary.nix {
- gmp = pkgs.gmp4;
- });
-
- ghc6121Binary = lowPrio (callPackage ../development/compilers/ghc/6.12.1-binary.nix {
- gmp = pkgs.gmp4;
- });
-
- ghc704Binary = lowPrio (callPackage ../development/compilers/ghc/7.0.4-binary.nix {
- gmp = pkgs.gmp4;
- });
-
- ghc742Binary = lowPrio (callPackage ../development/compilers/ghc/7.4.2-binary.nix {
- gmp = pkgs.gmp4;
- });
-
- ghc783Binary = lowPrio (callPackage ../development/compilers/ghc/7.8.3-binary.nix {});
-
- ghc6101BinaryDarwin = if stdenv.isDarwin then ghc704Binary else ghc6101Binary;
- ghc6121BinaryDarwin = if stdenv.isDarwin then ghc704Binary else ghc6121Binary;
-
# Compiler configurations
#
# Here, we associate compiler versions with bootstrap compiler versions and
# preference functions.
- packages_ghcHEAD =
- packages { ghcPath = ../development/compilers/ghc/head.nix;
- ghcBinary = pkgs.haskellPackages.ghcPlain;
- prefFun = ghcHEADPrefs;
- extraArgs = {
- happy = pkgs.haskellPackages.happy;
- alex = pkgs.haskellPackages.alex;
- };
- };
-
packages_ghc784 =
- packages { ghcPath = ../development/compilers/ghc/7.8.4.nix;
- ghcBinary = if stdenv.isDarwin then ghc783Binary else ghc742Binary;
+ packages { ghc = pkgs.haskell-ng.compiler.ghc784;
prefFun = ghc784Prefs;
};
packages_ghcjs =
packages {
- ghcPath = ../development/compilers/ghc/7.8.4.nix;
- ghcBinary = if stdenv.isDarwin then ghc783Binary else ghc742Binary;
+ ghc = pkgs.haskell-ng.compiler.ghc784;
prefFun = self : super : super // {
ghc = let parent = packages_ghc784; in
callPackage ../development/compilers/ghcjs/wrapper.nix {
@@ -329,36 +282,32 @@
};
packages_ghc763 =
- packages { ghcPath = ../development/compilers/ghc/7.6.3.nix;
- ghcBinary = ghc704Binary;
+ packages { ghc = pkgs.haskell-ng.compiler.ghc763;
prefFun = ghc763Prefs;
};
packages_ghc742 =
- packages { ghcPath = ../development/compilers/ghc/7.4.2.nix;
- ghcBinary = ghc6121BinaryDarwin;
+ packages { ghc = pkgs.haskell-ng.compiler.ghc742;
prefFun = ghc742Prefs;
};
packages_ghc722 =
- packages { ghcPath = ../development/compilers/ghc/7.2.2.nix;
- ghcBinary = ghc6121BinaryDarwin;
+ packages { ghc = pkgs.haskell-ng.compiler.ghc722;
prefFun = ghc722Prefs;
};
packages_ghc704 =
- packages { ghcPath = ../development/compilers/ghc/7.0.4.nix;
- ghcBinary = ghc6101BinaryDarwin;
+ packages { ghc = pkgs.haskell-ng.compiler.ghc704;
prefFun = ghc704Prefs;
};
packages_ghc6123 =
- packages { ghcPath = ../development/compilers/ghc/6.12.3.nix;
+ packages { ghc = pkgs.haskell-ng.compiler.ghc6123;
prefFun = ghc6123Prefs;
};
packages_ghc6104 =
- packages { ghcPath = ../development/compilers/ghc/6.10.4.nix;
+ packages { ghc = pkgs.haskell-ng.compiler.ghc6104;
prefFun = ghc6104Prefs;
};
diff --git a/pkgs/top-level/haskell-ng.nix b/pkgs/top-level/haskell-ng.nix
index ca9982c65dd..220fca90a53 100644
--- a/pkgs/top-level/haskell-ng.nix
+++ b/pkgs/top-level/haskell-ng.nix
@@ -9,7 +9,6 @@ rec {
ghc6102Binary = callPackage ../development/compilers/ghc/6.10.2-binary.nix { gmp = pkgs.gmp4; };
ghc704Binary = callPackage ../development/compilers/ghc/7.0.4-binary.nix { gmp = pkgs.gmp4; };
ghc742Binary = callPackage ../development/compilers/ghc/7.4.2-binary.nix { gmp = pkgs.gmp4; };
- ghc783Binary = callPackage ../development/compilers/ghc/7.8.3-binary.nix { gmp = pkgs.gmp4; };
ghc6104 = callPackage ../development/compilers/ghc/6.10.4.nix { ghc = compiler.ghc6102Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
ghc6123 = callPackage ../development/compilers/ghc/6.12.3.nix { ghc = compiler.ghc6102Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
@@ -18,7 +17,8 @@ rec {
ghc742 = callPackage ../development/compilers/ghc/7.4.2.nix { ghc = compiler.ghc704Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
ghc763 = callPackage ../development/compilers/ghc/7.6.3.nix { ghc = compiler.ghc704Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
ghc784 = callPackage ../development/compilers/ghc/7.8.4.nix { ghc = compiler.ghc742Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
- ghcHEAD = callPackage ../development/compilers/ghc/head.nix { inherit (packages.ghc784) ghc alex happy; };
+ ghc7101 = callPackage ../development/compilers/ghc/7.10.1.nix { ghc = compiler.ghc784; gmp = pkgs.gmp.override { withStatic = true; }; };
+ ghcHEAD = callPackage ../development/compilers/ghc/head.nix { ghc = compiler.ghc784; gmp = pkgs.gmp.override { withStatic = true; }; };
ghc = compiler.ghc784;
};
@@ -26,25 +26,38 @@ rec {
packages = {
ghc6104 = callPackage ../development/haskell-modules { ghc = compiler.ghc6104; };
- ghc6123 = callPackage ../development/haskell-modules { ghc = compiler.ghc6123; };
- ghc704 = callPackage ../development/haskell-modules { ghc = compiler.ghc704; };
- ghc722 = callPackage ../development/haskell-modules { ghc = compiler.ghc722; };
- ghc742 = callPackage ../development/haskell-modules { ghc = compiler.ghc742; };
+ ghc6123 = callPackage ../development/haskell-modules {
+ ghc = compiler.ghc6123;
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-6.12.x.nix { };
+ };
+ ghc704 = callPackage ../development/haskell-modules {
+ ghc = compiler.ghc704;
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.0.x.nix { };
+ };
+ ghc722 = callPackage ../development/haskell-modules {
+ ghc = compiler.ghc722;
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.2.x.nix { };
+ };
+ ghc742 = callPackage ../development/haskell-modules {
+ ghc = compiler.ghc742;
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.4.x.nix { };
+ };
ghc763 = callPackage ../development/haskell-modules {
ghc = compiler.ghc763;
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.6.x.nix { };
};
-
ghc784 = callPackage ../development/haskell-modules {
ghc = compiler.ghc784;
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.8.x.nix { };
};
-
+ ghc7101 = callPackage ../development/haskell-modules {
+ ghc = compiler.ghc7101;
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { };
+ };
ghcHEAD = callPackage ../development/haskell-modules {
ghc = compiler.ghcHEAD;
- packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-7.9.x.nix { };
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { };
};
-
ghcjs = callPackage ../development/haskell-modules {
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { };
};
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index c42be49dc41..71a2ab092e4 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -2997,6 +2997,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
yesodNewsfeed = callPackage ../development/libraries/haskell/yesod-newsfeed {};
+ yesodPagination = callPackage ../development/libraries/haskell/yesod-pagination {};
+
yesodPersistent = callPackage ../development/libraries/haskell/yesod-persistent {};
yesodRoutes = callPackage ../development/libraries/haskell/yesod-routes {};
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index e11def2d3b9..11cbe593a59 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -4019,10 +4019,10 @@ let self = _self // overrides; _self = with self; {
};
Glib = buildPerlPackage rec {
- name = "Glib-1.306";
+ name = "Glib-1.307";
src = fetchurl {
url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz";
- sha256 = "0j4kf707vy9vhpifwl6icc7rqyf75z2lhc626af7ag8srqva81ic";
+ sha256 = "1km4261a5kaazz77qplpqj2yv91p0bqcjjvd6xdvdgdd4rib7ngr";
};
buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig pkgs.glib ];
meta = {
@@ -4099,10 +4099,10 @@ let self = _self // overrides; _self = with self; {
};
Gtk2 = buildPerlPackage rec {
- name = "Gtk2-1.2493";
+ name = "Gtk2-1.2494";
src = fetchurl {
url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz";
- sha256 = "1zhrvwl584yrf0b1rrkli0k2ly221xhdyix8ykmm9zs674gain0z";
+ sha256 = "1kkm1z1xqnrfdfjric5y3935dbi9qnhcd6c1z58g4m0y95mwpv9v";
};
buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Pango pkgs.gtk2 ];
meta = {
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 47160cb6be1..1eeb11f5dc4 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -30,9 +30,6 @@ let
crypt = null;
};
- # glibcLocales doesn't build on Darwin
- localePath = optionalString (! stdenv.isDarwin) "${pkgs.glibcLocales}/lib/locale/locale-archive";
-
pythonPackages = modules // import ./python-packages-generated.nix {
inherit pkgs python;
inherit (pkgs) stdenv fetchurl;
@@ -832,6 +829,20 @@ let
propagatedBuildInputs = with self; [ iowait psutil pyzmq tornado mock ];
};
+ cornice = buildPythonPackage rec {
+ name = "cornice-${version}";
+ version = "0.17.0";
+ src = pkgs.fetchgit {
+ url = https://github.com/mozilla-services/cornice.git;
+ rev = "refs/tags/${version}";
+ sha256 = "12yrcsv1sdl5w308y1cc939ppq7pi2490s54zfcbs481cvsyr1lg";
+ };
+
+ propagatedBuildInputs = with self; [ pyramid simplejson ];
+
+ doCheck = false; # lazy packager
+ };
+
cvxopt = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "cvxopt";
@@ -1088,12 +1099,12 @@ let
};
botocore = buildPythonPackage rec {
- version = "0.80.0";
+ version = "0.81.0";
name = "botocore-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz";
- sha256 = "1zmsg0n21wq25v1dgnmf3hvw8yszxyryiylmp4alybcsg8nkg5fz";
+ sha256 = "0mdkkk0038ng6557cw5520xy624sqgv0avjx387bc3fbgxi8bksj";
};
propagatedBuildInputs =
@@ -1465,21 +1476,26 @@ let
};
};
+ click = buildPythonPackage rec {
+ name = "click-3.3";
- click = buildPythonPackage {
- name = "click-2.1";
src = pkgs.fetchurl {
- url = https://pypi.python.org/packages/source/c/click/click-2.1.tar.gz;
- md5 = "0ba97ba09af82c56e2d35f3412d0aa6e";
+ url = "https://pypi.python.org/packages/source/c/click/${name}.tar.gz";
+ sha256 = "1rfn8ml80rw3hkgpm1an5p3vdyhh7hzx4zynr8dhfl7bsw28r77p";
};
- meta = {
- homepage = "http://click.pocoo.org/";
- description = "A Python package for creating beautiful command line interfaces in a composable way with as little code as necessary";
- license = stdenv.lib.licenses.bsd3;
+
+ meta = with stdenv.lib; {
+ homepage = http://click.pocoo.org/;
+ description = "Create beautiful command line interfaces in Python";
+ longDescription = ''
+ A Python package for creating beautiful command line interfaces in a
+ composable way, with as little code as necessary.
+ '';
+ license = with licenses; [ bsd3 ];
+ maintainers = with maintainers; [ nckx ];
};
};
-
clepy = buildPythonPackage rec {
name = "clepy-0.3.20";
@@ -1605,6 +1621,26 @@ let
};
};
+ # Backported version of the ConfigParser library of Python 3.3
+ configparser = if isPy3k then null else buildPythonPackage rec {
+ name = "configparser-${version}";
+ version = "3.3.0r2";
+
+ # running install_egg_info
+ # error: [Errno 9] Bad file descriptor: ''
+ disabled = isPyPy;
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/source/c/configparser/${name}.tar.gz";
+ sha256 = "6a2318590dfc4013fc5bf53c2bec14a8cb455a232295eb282a13f94786c4b0b2";
+ };
+
+ meta = {
+ maintainers = [ ];
+ platforms = stdenv.lib.platforms.all;
+ };
+ };
+
ColanderAlchemy = buildPythonPackage rec {
name = "ColanderAlchemy-0.2.0";
@@ -2068,8 +2104,9 @@ let
propagatedBuildInputs = with self; [ self.six ];
+ buildInputs = [ pkgs.glibcLocales ];
+
preBuild = ''
- export LOCALE_ARCHIVE=${localePath}
export LC_ALL="en_US.UTF-8"
'';
@@ -2782,8 +2819,9 @@ let
sha256 = "0qk8fv8cszzqpdi3wl9vvkym1jil502ycn6sic4jrxckw5s9jsfj";
};
+ buildInputs = [ pkgs.glibcLocales ];
+
preBuild = ''
- export LOCALE_ARCHIVE=${localePath}
export LC_ALL="en_US.UTF-8"
'';
@@ -3200,6 +3238,18 @@ let
};
};
+ pyramid_hawkauth = buildPythonPackage rec {
+ name = "pyramidhawkauth-${version}";
+ version = "0.1.0";
+ src = pkgs.fetchgit {
+ url = https://github.com/mozilla-services/pyramid_hawkauth.git;
+ rev = "refs/tags/v${version}";
+ sha256 = "1ic7xl72qnz382xaqhcy9ql17gx7pxbs78znp8xr66sp3dcx2s3c";
+ };
+
+ propagatedBuildInputs = with self; [ pyramid hawkauthlib tokenlib webtest ];
+ };
+
radicale = buildPythonPackage rec {
name = "radicale-${version}";
namePrefix = "";
@@ -3968,22 +4018,21 @@ let
};
};
-
eventlet = buildPythonPackage rec {
- name = "eventlet-0.15.1";
+ name = "eventlet-0.16.1";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/e/eventlet/${name}.tar.gz";
- md5 = "7155780824bb6344651a573838416f21";
+ md5 = "58f6e5cd1bcd8ab78e32a2594aa0abad";
};
- buildInputs = with self; [ nose httplib2 ];
+ buildInputs = with self; [ nose httplib2 pyopenssl ];
propagatedBuildInputs = optionals (!isPyPy) [ self.greenlet ];
- PYTHON_EGG_CACHE = "`pwd`/.egg-cache";
-
- doCheck = false; # !!! fix; tests access the network
+ preCheck = ''
+ substituteInPlace tests/__init__.py --replace "TEST_TIMEOUT = 1" "TEST_TIMEOUT = 60"
+ '';
meta = {
homepage = http://pypi.python.org/pypi/eventlet/;
@@ -4016,8 +4065,9 @@ let
md5 = "92978492871342ad64e8ae0ccfcf200c";
};
+ buildInputs = [ pkgs.glibcLocales ];
+
preConfigure = ''
- export LOCALE_ARCHIVE=${pkgs.glibcLocales}/lib/locale/locale-archive
export LC_ALL="en_US.UTF-8"
'';
@@ -4321,7 +4371,7 @@ let
sha256 = "16cddyk5is0gjfn0ia5n2l4lhdzvbjzlx6sfpy7ddjd3d3fq7ckl";
};
- propagatedBuildInputs = with self; [ twisted self.pyopenssl ];
+ propagatedBuildInputs = [ self.twisted self.pyopenssl ];
meta = {
homepage = http://foolscap.lothar.com/;
@@ -4381,6 +4431,34 @@ let
};
});
+ fusepy = buildPythonPackage rec {
+ name = "fusepy-2.0.2";
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/source/f/fusepy/${name}.tar.gz";
+ sha256 = "1z0va3z1hzjw167skl21k9dsklbmr46k66j80qadibjc8vajjnda";
+ };
+
+ propagatedBuildInputs = [ pkgs.fuse ];
+
+ patchPhase = ''
+ substituteInPlace fuse.py --replace \
+ "find_library('fuse')" "'${pkgs.fuse}/lib/libfuse.so'"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Simple ctypes bindings for FUSE";
+ longDescription = ''
+ Python module that provides a simple interface to FUSE and MacFUSE.
+ It's just one file and is implemented using ctypes.
+ '';
+ homepage = http://github.com/terencehonles/fusepy;
+ license = with licenses; isc;
+ platforms = with platforms; linux;
+ maintainers = with maintainers; [ nckx ];
+ };
+ };
+
future = buildPythonPackage rec {
version = "v0.14.3";
name = "future-${version}";
@@ -4444,6 +4522,42 @@ let
};
};
+ gdrivefs = buildPythonPackage rec {
+ version = "0.14.2";
+ name = "gdrivefs-${version}";
+ disabled = !isPy27;
+
+ src = pkgs.fetchurl {
+ url = "https://github.com/dsoprea/GDriveFS/archive/${version}.tar.gz";
+ sha256 = "0cfx9y1kqikrn3ngyl93k9f939hf1h7adqv0lpfri8m8glszhchz";
+ };
+
+ buildInputs = with self; [ gipc greenlet httplib2 six ];
+ propagatedBuildInputs = with self; [ dateutil fusepy google_api_python_client ];
+
+ patchPhase = ''
+ substituteInPlace gdrivefs/resources/requirements.txt \
+ --replace "==" ">="
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Mount Google Drive as a local file system";
+ longDescription = ''
+ GDriveFS is a FUSE wrapper for Google Drive developed. Design goals:
+ - Thread for monitoring changes via "changes" functionality of API.
+ - Complete stat() implementation.
+ - Seamlessly work around duplicate-file allowances in Google Drive.
+ - Seamlessly manage file-type versatility in Google Drive
+ (Google Doc files do not have a particular format).
+ - Allow for the same file at multiple paths.
+ '';
+ homepage = https://github.com/dsoprea/GDriveFS;
+ license = with licenses; gpl2;
+ platforms = with platforms; linux;
+ maintainers = with maintainers; [ nckx ];
+ };
+ };
+
genshi = buildPythonPackage {
name = "genshi-0.7";
@@ -4479,6 +4593,8 @@ let
url = "https://pypi.python.org/packages/source/g/gevent/${name}.tar.gz";
sha256 = "0hyzfb0gcx9pm5c2igan8y57hqy2wixrwvdjwsaivxsqs0ay49s6";
};
+
+ patches = [ ../development/python-modules/gevent_sslwrap.patch ];
buildInputs = with self; [ pkgs.libev ];
propagatedBuildInputs = optionals (!isPyPy) [ self.greenlet ];
@@ -4567,6 +4683,32 @@ let
};
};
+ gipc = buildPythonPackage rec {
+ name = "gipc-0.5.0";
+ disabled = !isPy26 && !isPy27;
+
+ src = pkgs.fetchurl {
+ url = "http://pypi.python.org/packages/source/g/gipc/${name}.zip";
+ sha256 = "08c35xzv7nr12d9xwlywlbyzzz2igy0yy6y52q2nrkmh5d4slbpc";
+ };
+
+ propagatedBuildInputs = with self; [ gevent ];
+
+ meta = with stdenv.lib; {
+ description = "gevent-cooperative child processes and IPC";
+ longDescription = ''
+ Usage of Python's multiprocessing package in a gevent-powered
+ application may raise problems and most likely breaks the application
+ in various subtle ways. gipc (pronunciation "gipsy") is developed with
+ the motivation to solve many of these issues transparently. With gipc,
+ multiprocessing. Process-based child processes can safely be created
+ anywhere within your gevent-powered application.
+ '';
+ homepage = http://gehrcke.de/gipc;
+ license = with licenses; mit;
+ maintainers = with maintainers; [ nckx ];
+ };
+ };
glance = buildPythonPackage rec {
name = "glance-0.1.7";
@@ -4662,7 +4804,7 @@ let
};
};
- google_apputils = buildPythonPackage rec {
+ google_apputils = buildPythonPackage rec {
name = "google-apputils-0.4.0";
disabled = isPy3k;
@@ -4760,6 +4902,18 @@ let
};
};
+ hawkauthlib = buildPythonPackage rec {
+ name = "hawkauthlib-${version}";
+ version = "0.1.1";
+ src = pkgs.fetchgit {
+ url = https://github.com/mozilla-services/hawkauthlib.git;
+ rev = "refs/tags/v${version}";
+ sha256 = "0b3xydii50ifs8qkgbpdlidfs2rzw63f807ahrq9flz90ahf582h";
+ };
+
+ propagatedBuildInputs = with self; [ requests webob ];
+ };
+
hcs_utils = buildPythonPackage rec {
name = "hcs_utils-1.5";
@@ -4769,11 +4923,10 @@ let
};
preBuild = ''
- export LOCALE_ARCHIVE=${localePath}
export LC_ALL="en_US.UTF-8"
'';
- buildInputs = with self; [ six ];
+ buildInputs = with self; [ six pkgs.glibcLocales ];
meta = with stdenv.lib; {
description = "Library collecting some useful snippets";
@@ -5080,11 +5233,11 @@ let
};
jedi = buildPythonPackage (rec {
- name = "jedi-0.8.0-final0";
+ name = "jedi-0.8.1";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/j/jedi/${name}.tar.gz";
- sha256 = "0jnhwh0b1hy5cssi3n5a4j7z9pgpcckyv5s52ba4jnq5bwgdpbcf";
+ sha256 = "1a7bg159mc1la5p1zsblzpr9hmypa7nz0mpvf7dww57cgi2sw8sd";
};
meta = {
@@ -5181,6 +5334,29 @@ let
};
};
+ konfig = buildPythonPackage rec {
+ name = "konfig-${version}";
+ version = "0.9";
+
+ # konfig unconditionaly depend on configparser, even if it is part of
+ # the standard library in python 3.2 or above.
+ disabled = isPy3k;
+
+ src = pkgs.fetchgit {
+ url = https://github.com/mozilla-services/konfig.git;
+ rev = "refs/tags/${version}";
+ sha256 = "1v9pjb9idapjlc75p6h06kx7bi8zxhfgj93yxq1bn337kmyk1xdf";
+ };
+
+ propagatedBuildInputs = with self; [ configparser argparse ];
+
+ meta = with stdenv.lib; {
+ description = "Yet Another Config Parser";
+ homepage = "https://github.com/mozilla-services/konfig";
+ license = licenses.mpl20;
+ };
+ };
+
kitchen = buildPythonPackage (rec {
name = "kitchen-1.1.1";
disabled = isPy3k;
@@ -5498,28 +5674,9 @@ let
};
- matplotlib = buildPythonPackage rec {
- name = "matplotlib-1.4.2";
-
- src = pkgs.fetchurl {
- url = "mirror://sourceforge/matplotlib/${name}.tar.gz";
- sha256 = "0m6v9nwdldlwk22gcd339zg6mny5m301fxgks7z8sb8m9wawg8qp";
- };
-
- buildInputs = with self; [ python pkgs.which pkgs.ghostscript ] ++
- (if stdenv.isDarwin then [ pkgs.clangStdenv ] else [ pkgs.stdenv ]);
-
- propagatedBuildInputs = with self;
- [ dateutil nose numpy pyparsing tornado pkgs.freetype pkgs.libpng pkgs.pkgconfig
- mock pytz
- ];
-
- meta = with stdenv.lib; {
- description = "python plotting library, making publication quality plots";
- homepage = "http://matplotlib.sourceforge.net/";
- maintainers = with maintainers; [ lovek323 ];
- platforms = platforms.unix;
- };
+ matplotlib = callPackage ../development/python-modules/matplotlib/default.nix {
+ stdenv = if stdenv.isDarwin then pkgs.clangStdenv else pkgs.stdenv;
+ enableGhostscript = true;
};
@@ -5698,7 +5855,6 @@ let
doCheck = false;
preBuild = ''
- export LOCALE_ARCHIVE=${localePath}
export LC_ALL="en_US.UTF-8"
'';
@@ -5710,7 +5866,7 @@ let
'';
buildInputs = with self; [
- pkgs.libjpeg pkgs.freetype pkgs.zlib
+ pkgs.libjpeg pkgs.freetype pkgs.zlib pkgs.glibcLocales
pillow twitter pyfiglet requests arrow dateutil modules.readline pysocks
];
@@ -5809,7 +5965,6 @@ let
};
};
-
mox = buildPythonPackage rec {
name = "mox-0.5.3";
@@ -5827,6 +5982,29 @@ let
};
};
+ mozsvc = buildPythonPackage rec {
+ name = "mozsvc-${version}";
+ version = "0.8";
+
+ src = pkgs.fetchgit {
+ url = https://github.com/mozilla-services/mozservices.git;
+ rev = "refs/tags/${version}";
+ sha256 = "0k1d7v8aa4xd3f9h8m5crl647136ba15i9nzdrpxg5aqmv2n0i0p";
+ };
+
+ patches = singleton (pkgs.fetchurl {
+ url = https://github.com/nbp/mozservices/commit/f86c0b0b870cd8f80ce90accde9e16ecb2e88863.diff;
+ sha256 = "1lnghx821f6dqp3pa382ka07cncdz7hq0mkrh44d0q3grvrlrp9n";
+ });
+
+ doCheck = false; # lazy packager
+ propagatedBuildInputs = with self; [ pyramid simplejson konfig ];
+
+ meta = {
+ homepage = https://github.com/mozilla-services/mozservices;
+ description = "Various utilities for Mozilla apps";
+ };
+ };
mpmath = buildPythonPackage rec {
name = "mpmath-0.17";
@@ -5875,9 +6053,10 @@ let
md5 = "84a117c9a75b86842b0fa5f5c9c767f3";
};
+ buildInputs = [ pkgs.glibcLocales ];
+
# some files in tests dir include unicode names
preBuild = ''
- export LOCALE_ARCHIVE=${localePath}
export LC_ALL="en_US.UTF-8"
'';
@@ -5943,8 +6122,9 @@ let
md5 = "9e17a181af72d04a291c9a960bc73d44";
};
+ buildInputs = [ pkgs.glibcLocales ];
+
preCheck = ''
- export LOCALE_ARCHIVE=${localePath}
export LC_ALL="en_US.UTF-8"
'';
@@ -6012,6 +6192,33 @@ let
};
});
+ pymysql = buildPythonPackage rec {
+ name = "pymysql-${version}";
+ version = "0.6.3";
+ src = pkgs.fetchgit {
+ url = https://github.com/PyMySQL/PyMySQL.git;
+ rev = "refs/tags/pymysql-${version}";
+ sha256 = "1m9fr2x49s3aixlmccr3w80skl19dya9h3x69wgl6ly1z27iyg24";
+ };
+ };
+
+ pymysqlsa = self.buildPythonPackage rec {
+ name = "pymysqlsa-${version}";
+ version = "1.0";
+
+ propagatedBuildInputs = with self; [ pymysql sqlalchemy9 ];
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/source/p/pymysql_sa/pymysql_sa-1.0.tar.gz";
+ sha256 = "a2676bce514a29b2d6ab418812259b0c2f7564150ac53455420a20bd7935314a";
+ };
+
+ meta = {
+ description = "PyMySQL dialect for SQL Alchemy";
+ homepage = https://pypi.python.org/pypi/pymysql_sa;
+ license = licenses.mit;
+ };
+ };
MySQL_python = buildPythonPackage {
name = "MySQL-python-1.2.3";
@@ -6763,6 +6970,26 @@ let
};
};
+ pasteScript = buildPythonPackage rec {
+ version = "1.7.5";
+ name = "PasterScript-${version}";
+
+ src = pkgs.fetchurl {
+ url = "http://pypi.python.org/packages/source/P/PasteScript/${name}.tar.gz";
+ sha256 = "2b685be69d6ac8bc0fe6f558f119660259db26a15e16a4943c515fbee8093539";
+ };
+
+ doCheck = false;
+ buildInputs = with self; [ nose ];
+ propagatedBuildInputs = with self; [ paste paste_deploy cheetah argparse ];
+
+ meta = {
+ description = "A pluggable command-line frontend, including commands to setup package file layouts";
+ homepage = http://pythonpaste.org/script/;
+ platforms = stdenv.lib.platforms.all;
+ };
+ };
+
pathpy = buildPythonPackage rec {
name = "path.py-5.2";
@@ -6828,7 +7055,6 @@ let
};
preConfigure = ''
- export LOCALE_ARCHIVE=${pkgs.glibcLocales}/lib/locale/locale-archive
export LC_ALL="en_US.UTF-8"
'';
@@ -6836,6 +7062,8 @@ let
#buildInputs = [nose mock];
doCheck = false;
+ buildInputs = [ pkgs.glibcLocales ];
+
propagatedBuildInputs = with self; [
jinja2 pygments docutils pytz unidecode six dateutil feedgenerator
blinker pillow beautifulsoup4
@@ -7126,10 +7354,11 @@ let
url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.bz2";
sha1 = "ad346a18d92c1d95f2295397c7a8a4f489e48851";
};
+
+ buildInputs = [ pkgs.glibcLocales ];
preCheck = ''
export LANG="en_US.UTF-8"
- export LOCALE_ARCHIVE=${localePath}
'';
meta = {
@@ -7673,16 +7902,19 @@ let
};
pygments = buildPythonPackage rec {
- name = "Pygments-1.6";
+ version = "2.0.1";
+ name = "Pygments-${version}";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/P/Pygments/${name}.tar.gz";
- md5 = "a18feedf6ffd0b0cc8c8b0fbdb2027b1";
+ sha256 = "1js5vq0xvsiykzpj5snxhdz3li9fmk8vc549slg9hcnj80frw0sy";
};
- meta = {
+ meta = with stdenv.lib; {
homepage = http://pygments.org/;
description = "A generic syntax highlighter";
+ license = with licenses; [ bsd2 ];
+ maintainers = with maintainers; [ nckx ];
};
};
@@ -9149,7 +9381,7 @@ let
md5 = "d9822ad0238e17b382a3c756ea94fe0d";
};
- buildInputs = with self; [ nose pillow pkgs.gfortran ];
+ buildInputs = with self; [ nose pillow pkgs.gfortran pkgs.glibcLocales ];
propagatedBuildInputs = with self; [ numpy scipy pkgs.atlas ];
buildPhase = ''
@@ -9158,7 +9390,7 @@ let
'';
checkPhase = ''
- LOCALE_ARCHIVE=${localePath} LC_ALL="en_US.UTF-8" HOME=$TMPDIR ATLAS="" nosetests
+ LC_ALL="en_US.UTF-8" HOME=$TMPDIR ATLAS="" nosetests
'';
meta = {
@@ -9341,11 +9573,10 @@ let
sha256 = "099sc7ajpp6hbgrx3c0bl6hhkz1mhnr0ahvc7s4i3f3b7q1zfn7l";
};
- buildInputs = with self; [ pkgs.geos ];
+ buildInputs = with self; [ pkgs.geos pkgs.glibcLocales ];
preConfigure = ''
export LANG="en_US.UTF-8";
- export LOCALE_ARCHIVE=${localePath}
'';
patchPhase = ''
@@ -9401,9 +9632,10 @@ let
sha256 = "0h1b9mx0snyyybj1x1ga69qssgjzkkgx2rw6nddjhyz1fknf8ywh";
};
+ buildInputs = [ pkgs.glibcLocales ];
+
preCheck = ''
export LANG="en_US.UTF-8"
- export LOCALE_ARCHIVE=${localePath}
'';
meta = with stdenv.lib; {
@@ -9466,10 +9698,9 @@ let
preCheck = ''
export LANG="en_US.UTF-8"
- export LOCALE_ARCHIVE=${localePath}
'';
- buildInputs = with self; [ pytest py mock ];
+ buildInputs = with self; [ pytest py mock pkgs.glibcLocales ];
meta = with stdenv.lib; {
maintainers = [ maintainers.iElectric ];
@@ -9982,7 +10213,6 @@ let
version = "1.2.8";
preBuild = ''
- export LOCALE_ARCHIVE=${localePath}
export LC_ALL="en_US.UTF-8"
'';
@@ -9995,7 +10225,7 @@ let
sha256 = "0pgi9xg00wcw0m1pv5qp7jv53q38yffcmkf2fj1zlfi2b9c3njid";
};
- buildInputs = with self; [ nose ];
+ buildInputs = with self; [ nose pkgs.glibcLocales ];
propagatedBuildInputs = with self; [ six mock ];
@@ -10511,6 +10741,23 @@ let
};
};
+ umemcache = buildPythonPackage rec {
+ name = "umemcache-${version}";
+ version = "1.6.3";
+ disabled = isPy3k;
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/source/u/umemcache/${name}.zip";
+ sha256 = "211031a03576b7796bf277dbc9c9e3e754ba066bbb7fb601ab5c6291b8ec1918";
+ };
+
+ meta = {
+ description = "Ultra fast memcache client written in highly optimized C++ with Python bindings";
+ homepage = https://github.com/esnme/ultramemcache;
+ license = licenses.bsdOriginal;
+ };
+ };
+
unittest2 = buildPythonPackage rec {
version = "0.5.1";
name = "unittest2-${version}";
@@ -11596,7 +11843,7 @@ let
propagatedBuildInputs = with self; [ zope_interface zope_exceptions zope_testing six ] ++ optional (!python.is_py3k or false) subunit;
- doCheck = true;
+ doCheck = !isPy27;
meta = {
description = "A flexible test runner with layer support";
@@ -11697,6 +11944,17 @@ let
doCheck = false;
};
+ tokenlib = buildPythonPackage rec {
+ name = "tokenlib-${version}";
+ version = "0.3.1";
+ src = pkgs.fetchgit {
+ url = https://github.com/mozilla-services/tokenlib.git;
+ rev = "refs/tags/${version}";
+ sha256 = "0dmq41sy64jmkj7n49jgbpii5n5d41ci263lyhqbff5slr289m51";
+ };
+
+ propagatedBuildInputs = with self; [ requests webob ];
+ };
tornadokick = buildPythonPackage rec {
name = "tornadokick-0.2.1";
@@ -11779,6 +12037,26 @@ let
propagatedBuildInputs = with self; [ pkgs.libarchive ];
};
+ pybrowserid = buildPythonPackage rec {
+ name = "PyBrowserID-${version}";
+ version = "0.9.2";
+ disabled = isPy3k; # Errors in the test suite.
+
+ src = pkgs.fetchgit {
+ url = https://github.com/mozilla/PyBrowserID.git;
+ rev = "refs/tags/${version}";
+ sha256 = "0nyqb0v8yrkqnrqsh1hlhvzr2pyvkxvkw701p3gpsvk29c0gb5n6";
+ };
+
+ buildInputs = with self; [ mock unittest2 ];
+ propagatedBuildInputs = with self; [ requests ];
+
+ meta = with stdenv.lib; {
+ description = "Python library for the BrowserID Protocol";
+ homepage = "https://github.com/mozilla/PyBrowserID";
+ license = licenses.mpl20;
+ };
+ };
pyzmq = buildPythonPackage rec {
name = "pyzmq-13.0.0";
@@ -11790,6 +12068,28 @@ let
doCheck = false;
};
+ tokenserver = buildPythonPackage rec {
+ name = "tokenserver-${version}";
+ version = "1.2.11";
+
+ src = pkgs.fetchgit {
+ url = https://github.com/mozilla-services/tokenserver.git;
+ rev = "refs/tags/${version}";
+ sha256 = "1pjrw7xhhqx7h4s08h1lsaa499r2ymc41zdknjimn6zlqdjdk1fb";
+ };
+
+ doCheck = false;
+ propagatedBuildInputs = with self; [ cornice mozsvc pybrowserid tokenlib ];
+
+ patchPhase = ''
+ sed -i "s|'testfixtures'||" setup.py
+ '';
+
+ meta = {
+ maintainers = [ ];
+ platforms = stdenv.lib.platforms.all;
+ };
+ };
tissue = buildPythonPackage rec {
name = "tissue-0.9.2";
@@ -12660,6 +12960,46 @@ let
};
};
+ syncserver = buildPythonPackage rec {
+ name = "syncserver-${version}";
+ version = "1.5.0";
+
+ src = pkgs.fetchgit {
+ url = https://github.com/mozilla-services/syncserver.git;
+ rev = "refs/tags/${version}";
+ sha256 = "1xljylycxg7351hmqh7aa6fvvsjg06zvd4r7hcjqyd0k0sxvk7y6";
+ };
+
+ buildInputs = with self; [ unittest2 ];
+ propagatedBuildInputs = with self; [
+ cornice gunicorn pyramid requests simplejson sqlalchemy9 mozsvc tokenserver
+ serversyncstorage configparser
+ ];
+
+ meta = {
+ maintainers = [ ];
+ platforms = stdenv.lib.platforms.all;
+ };
+ };
+
+ serversyncstorage = buildPythonPackage rec {
+ name = "serversyncstorage-${version}";
+ version = "1.5.11";
+ src = pkgs.fetchgit {
+ url = https://github.com/mozilla-services/server-syncstorage.git;
+ rev = "refs/tags/${version}";
+ sha256 = "1byq2k2f36f1jli9599ygfm2qsb4adl9140sxjpgfjbznb74q90q";
+ };
+
+ propagatedBuildInputs = with self; [
+ pyramid sqlalchemy9 simplejson mozsvc cornice pyramid_hawkauth pymysql
+ pymysqlsa umemcache wsgiproxy2 requests pybrowserid
+ ];
+
+ doCheck = false; # lazy packager
+ };
+
+
thumbor = self.buildPythonPackage rec {
name = "thumbor-4.0.4";
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index 0a9030f8e50..47026336403 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -270,29 +270,7 @@ let
gnome_vfs = linux;
};
- haskellPackages_ghc6104 = {
- ghc = ghcSupported;
- };
-
- haskellPackages_ghc6123 = {
- ghc = ghcSupported;
- };
-
- haskellPackages_ghc704 = {
- ghc = ghcSupported;
- };
-
- haskellPackages_ghc722 = {
- ghc = ghcSupported;
- };
-
- haskellPackages_ghc742 = {
- ghc = ghcSupported;
- };
-
- haskellPackages_ghc763 = {
- ghc = ghcSupported;
- };
+ haskell-ng.compiler = packagesWithMetaPlatform pkgs.haskell-ng.compiler;
strategoPackages = {
sdf = linux;