diff --git a/default.nix b/default.nix index bdbe13b3ea2..e2227b13bbb 100644 --- a/default.nix +++ b/default.nix @@ -1,6 +1,8 @@ -if ! builtins ? nixVersion || builtins.compareVersions "1.8" builtins.nixVersion == 1 then +let requiredVersion = "1.10"; in - abort "This version of Nixpkgs requires Nix >= 1.8, please upgrade! See https://nixos.org/wiki/How_to_update_when_nix_is_too_old_to_evaluate_nixpkgs" +if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.nixVersion == 1 then + + abort "This version of Nixpkgs requires Nix >= ${requiredVersion}, please upgrade! See https://nixos.org/wiki/How_to_update_when_Nix_is_too_old_to_evaluate_Nixpkgs" else diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 1eb2906c6a5..6248ecadb7d 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -81,6 +81,7 @@ dezgeg = "Tuomas Tynkkynen "; dfoxfranke = "Daniel Fox Franke "; dmalikov = "Dmitry Malikov "; + dochang = "Desmond O. Chang "; doublec = "Chris Double "; ebzzry = "Rommel Martinez "; ederoyd46 = "Matthew Brown "; diff --git a/lib/modules.nix b/lib/modules.nix index 3e4d0547ecc..12ec7004d1e 100644 --- a/lib/modules.nix +++ b/lib/modules.nix @@ -469,6 +469,7 @@ rec { mkBefore = mkOrder 500; mkAfter = mkOrder 1500; + # Convenient property used to transfer all definitions and their # properties from one option to another. This property is useful for # renaming options, and also for including properties from another module @@ -498,4 +499,68 @@ rec { /* Compatibility. */ fixMergeModules = modules: args: evalModules { inherit modules args; check = false; }; + + /* Return a module that causes a warning to be shown if the + specified option is defined. For example, + + mkRemovedOptionModule [ "boot" "loader" "grub" "bootDevice" ] + + causes a warning if the user defines boot.loader.grub.bootDevice. + */ + mkRemovedOptionModule = optionName: + { options, ... }: + { options = setAttrByPath optionName (mkOption { + visible = false; + }); + config.warnings = + let opt = getAttrFromPath optionName options; in + optional opt.isDefined + "The option definition `${showOption optionName}' in ${showFiles opt.files} no longer has any effect; please remove it."; + }; + + /* Return a module that causes a warning to be shown if the + specified "from" option is defined; the defined value is however + forwarded to the "to" option. This can be used to rename options + while providing backward compatibility. For example, + + mkRenamedOptionModule [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ] + + forwards any definitions of boot.copyKernels to + boot.loader.grub.copyKernels while printing a warning. + */ + mkRenamedOptionModule = from: to: doRename { + inherit from to; + visible = false; + warn = true; + use = builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'."; + }; + + /* Like ‘mkRenamedOptionModule’, but doesn't show a warning. */ + mkAliasOptionModule = from: to: doRename { + inherit from to; + visible = true; + warn = false; + use = id; + }; + + doRename = { from, to, visible, warn, use }: + let + toOf = attrByPath to + (abort "Renaming error: option `${showOption to}' does not exists."); + in + { config, options, ... }: + { options = setAttrByPath from (mkOption { + description = "Alias of ."; + apply = x: use (toOf config); + }); + config = { + /* + warnings = + let opt = getAttrFromPath from options; in + optional (warn && opt.isDefined) + "The option `${showOption from}' defined in ${showFiles opt.files} has been renamed to `${showOption to}'."; + */ + } // setAttrByPath to (mkAliasDefinitions (getAttrFromPath from options)); + }; + } diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix index adc014eed41..485926fb1dd 100644 --- a/nixos/modules/config/users-groups.nix +++ b/nixos/modules/config/users-groups.nix @@ -550,4 +550,8 @@ in { }; + imports = + [ (mkAliasOptionModule [ "users" "extraUsers" ] [ "users" "users" ]) + (mkAliasOptionModule [ "users" "extraGroups" ] [ "users" "groups" ]) + ]; } diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl index 39ef4c51ba1..19656c9b9ea 100644 --- a/nixos/modules/installer/tools/nixos-generate-config.pl +++ b/nixos/modules/installer/tools/nixos-generate-config.pl @@ -152,6 +152,22 @@ sub pciCheck { push @kernelModules, "wl"; } + # broadcom FullMac driver + # list taken from + # https://wireless.wiki.kernel.org/en/users/Drivers/brcm80211#brcmfmac + if ($vendor eq "0x14e4" && + ($device eq "0x43a3" || $device eq "0x43df" || $device eq "0x43ec" || + $device eq "0x43d3" || $device eq "0x43d9" || $device eq "0x43e9" || + $device eq "0x43ba" || $device eq "0x43bb" || $device eq "0x43bc" || + $device eq "0xaa52" || $device eq "0x43ca" || $device eq "0x43cb" || + $device eq "0x43cc" || $device eq "0x43c3" || $device eq "0x43c4" || + $device eq "0x43c5" + ) ) + { + # we need e.g. brcmfmac43602-pcie.bin + push @imports, ""; + } + # Can't rely on $module here, since the module may not be loaded # due to missing firmware. Ideally we would check modules.pcimap # here. diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 62be7dc6cae..28ac1c3e888 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -1,170 +1,88 @@ -{ config, lib, options, ... }: +{ lib, ... }: with lib; -let +{ + imports = [ + (mkRenamedOptionModule [ "environment" "x11Packages" ] [ "environment" "systemPackages" ]) + (mkRenamedOptionModule [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ]) + (mkRenamedOptionModule [ "environment" "nix" ] [ "nix" "package" ]) + (mkRenamedOptionModule [ "fonts" "enableFontConfig" ] [ "fonts" "fontconfig" "enable" ]) + (mkRenamedOptionModule [ "fonts" "extraFonts" ] [ "fonts" "fonts" ]) - alias = from: to: rename { - inherit from to; - name = "Alias"; - use = id; - define = id; - visible = true; - }; + (mkRenamedOptionModule [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ]) + (mkRenamedOptionModule [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ]) + (mkRenamedOptionModule [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ]) - # warn option was renamed - obsolete = from: to: rename { - inherit from to; - name = "Obsolete name"; - use = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x; - define = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x; - }; + # Old Grub-related options. + (mkRenamedOptionModule [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ]) + (mkRenamedOptionModule [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ]) - # abort if deprecated option is used - deprecated = from: to: rename { - inherit from to; - name = "Deprecated name"; - use = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'."; - define = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'."; - }; + # smartd + (mkRenamedOptionModule [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ]) - showOption = concatStringsSep "."; + # OpenSSH + (mkRenamedOptionModule [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ]) + (mkAliasOptionModule [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ]) + (mkRenamedOptionModule [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ]) + (mkRenamedOptionModule [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ]) + (mkRenamedOptionModule [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ]) + (mkRenamedOptionModule [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ]) + (mkRenamedOptionModule [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ]) + (mkRenamedOptionModule [ "services" "xserver" "startOpenSSHAgent" ] [ "programs" "ssh" "startAgent" ]) + (mkAliasOptionModule [ "services" "openssh" "knownHosts" ] [ "programs" "ssh" "knownHosts" ]) - zipModules = list: - zipAttrsWith (n: v: - if tail v != [] then - if all (o: isAttrs o && o ? _type) v then mkMerge v - else if n == "_type" then head v - else if n == "warnings" then concatLists v - else if n == "description" || n == "apply" then - abort "Cannot rename an option to multiple options." - else zipModules v - else head v - ) list; + # VirtualBox + (mkRenamedOptionModule [ "services" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ]) + (mkRenamedOptionModule [ "services" "virtualboxGuest" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ]) + (mkRenamedOptionModule [ "programs" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ]) + (mkRenamedOptionModule [ "programs" "virtualbox" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ]) + (mkRenamedOptionModule [ "programs" "virtualbox" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ]) + (mkRenamedOptionModule [ "services" "virtualboxHost" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ]) + (mkRenamedOptionModule [ "services" "virtualboxHost" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ]) + (mkRenamedOptionModule [ "services" "virtualboxHost" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ]) - rename = { from, to, name, use, define, visible ? false }: - let - setTo = setAttrByPath to; - setFrom = setAttrByPath from; - toOf = attrByPath to - (abort "Renaming error: option `${showOption to}' does not exists."); - fromOf = attrByPath from - (abort "Internal error: option `${showOption from}' should be declared."); - in - [ { options = setFrom (mkOption { - description = "${name} of ."; - apply = x: use (toOf config); - inherit visible; - }); + # Tarsnap + (mkRenamedOptionModule [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ]) - config = setTo (mkAliasAndWrapDefinitions define (fromOf options)); - } - ]; + # proxy + (mkRenamedOptionModule [ "nix" "proxy" ] [ "networking" "proxy" "default" ]) - obsolete' = option: singleton - { options = setAttrByPath option (mkOption { - default = null; - visible = false; - }); - config.warnings = optional (getAttrFromPath option config != null) - "The option `${showOption option}' defined in your configuration no longer has any effect; please remove it."; - }; + # KDE + (mkRenamedOptionModule [ "kde" "extraPackages" ] [ "environment" "systemPackages" ]) + (mkRenamedOptionModule [ "environment" "kdePackages" ] [ "environment" "systemPackages" ]) -in zipModules ([] + # Multiple efi bootloaders now + (mkRenamedOptionModule [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ]) -++ obsolete [ "environment" "x11Packages" ] [ "environment" "systemPackages" ] -++ obsolete [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ] -++ obsolete [ "environment" "nix" ] [ "nix" "package" ] -++ obsolete [ "fonts" "enableFontConfig" ] [ "fonts" "fontconfig" "enable" ] -++ obsolete [ "fonts" "extraFonts" ] [ "fonts" "fonts" ] -++ alias [ "users" "extraUsers" ] [ "users" "users" ] -++ alias [ "users" "extraGroups" ] [ "users" "groups" ] + # NixOS environment changes + # !!! this hardcodes bash, could we detect from config which shell is actually used? + (mkRenamedOptionModule [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ]) -++ obsolete [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ] -++ obsolete [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ] -++ obsolete [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ] + (mkRenamedOptionModule [ "services" "xserver" "driSupport" ] [ "hardware" "opengl" "driSupport" ]) + (mkRenamedOptionModule [ "services" "xserver" "driSupport32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ]) + (mkRenamedOptionModule [ "services" "xserver" "s3tcSupport" ] [ "hardware" "opengl" "s3tcSupport" ]) + (mkRenamedOptionModule [ "hardware" "opengl" "videoDrivers" ] [ "services" "xserver" "videoDrivers" ]) -# FIXME: Remove these eventually. -++ obsolete [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ] -++ obsolete [ "boot" "systemd" "targets" ] [ "systemd" "targets" ] -++ obsolete [ "boot" "systemd" "services" ] [ "systemd" "services" ] + (mkRenamedOptionModule [ "services" "mysql55" ] [ "services" "mysql" ]) -# Old Grub-related options. -++ obsolete [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ] -++ obsolete [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ] -++ obsolete [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ] -++ obsolete [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ] -++ obsolete [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ] -++ obsolete [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ] + (mkAliasOptionModule [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ]) -++ obsolete [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ] -++ obsolete [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ] + # XBMC + (mkRenamedOptionModule [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]) + (mkRenamedOptionModule [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]) -# smartd -++ obsolete [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ] + # DNSCrypt-proxy + (mkRenamedOptionModule [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ]) -# OpenSSH -++ obsolete [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ] -++ alias [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ] -++ obsolete [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ] -++ obsolete [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ] -++ obsolete [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ] -++ obsolete [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ] -++ obsolete [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ] -++ obsolete [ "services" "xserver" "startOpenSSHAgent" ] [ "programs" "ssh" "startAgent" ] -++ alias [ "services" "openssh" "knownHosts" ] [ "programs" "ssh" "knownHosts" ] + # Options that are obsolete and have no replacement. + (mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ]) + (mkRemovedOptionModule [ "programs" "bash" "enable" ]) + (mkRemovedOptionModule [ "services" "samba" "defaultShare" ]) + (mkRemovedOptionModule [ "services" "syslog-ng" "serviceName" ]) + (mkRemovedOptionModule [ "services" "syslog-ng" "listenToJournal" ]) + (mkRemovedOptionModule [ "ec2" "metadata" ]) + (mkRemovedOptionModule [ "services" "openvpn" "enable" ]) -# VirtualBox -++ obsolete [ "services" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ] -++ obsolete [ "services" "virtualboxGuest" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ] -++ obsolete [ "programs" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ] -++ obsolete [ "programs" "virtualbox" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ] -++ obsolete [ "programs" "virtualbox" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ] -++ obsolete [ "services" "virtualboxHost" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ] -++ obsolete [ "services" "virtualboxHost" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ] -++ obsolete [ "services" "virtualboxHost" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ] - -# Tarsnap -++ obsolete [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ] - -# proxy -++ obsolete [ "nix" "proxy" ] [ "networking" "proxy" "default" ] - -# KDE -++ deprecated [ "kde" "extraPackages" ] [ "environment" "systemPackages" ] -++ obsolete [ "environment" "kdePackages" ] [ "environment" "systemPackages" ] - -# Multiple efi bootloaders now -++ obsolete [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ] - -# NixOS environment changes -# !!! this hardcodes bash, could we detect from config which shell is actually used? -++ obsolete [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ] - -++ obsolete [ "services" "xserver" "driSupport" ] [ "hardware" "opengl" "driSupport" ] -++ obsolete [ "services" "xserver" "driSupport32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ] -++ obsolete [ "services" "xserver" "s3tcSupport" ] [ "hardware" "opengl" "s3tcSupport" ] -++ obsolete [ "hardware" "opengl" "videoDrivers" ] [ "services" "xserver" "videoDrivers" ] - -++ obsolete [ "services" "mysql55" ] [ "services" "mysql" ] - -++ alias [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ] - -# XBMC -++ obsolete [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ] -++ obsolete [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ] - -# DNSCrypt-proxy -++ obsolete [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ] - -# Options that are obsolete and have no replacement. -++ obsolete' [ "boot" "loader" "grub" "bootDevice" ] -++ obsolete' [ "boot" "initrd" "luks" "enable" ] -++ obsolete' [ "programs" "bash" "enable" ] -++ obsolete' [ "services" "samba" "defaultShare" ] -++ obsolete' [ "services" "syslog-ng" "serviceName" ] -++ obsolete' [ "services" "syslog-ng" "listenToJournal" ] -++ obsolete' [ "ec2" "metadata" ] -++ obsolete' [ "services" "openvpn" "enable" ] - -) + ]; +} diff --git a/nixos/modules/services/networking/copy-com.nix b/nixos/modules/services/networking/copy-com.nix index 69a41ab9796..ee0d043d471 100644 --- a/nixos/modules/services/networking/copy-com.nix +++ b/nixos/modules/services/networking/copy-com.nix @@ -39,7 +39,8 @@ in systemd.services."copy-com-${cfg.user}" = { description = "Copy.com client"; - after = [ "network.target" "local-fs.target" ]; + wants = [ "network-online.target" ]; + after = [ "network-online.target" "local-fs.target" ]; wantedBy = [ "multi-user.target" ]; serviceConfig = { ExecStart = "${pkgs.copy-com}/bin/CopyConsole ${if cfg.debug then "-consoleOutput -debugToConsole=dirwatch,path-watch,csm_path,csm -debug -console" else ""}"; diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix index ce3efc3cd7c..5f09e937537 100644 --- a/nixos/modules/system/boot/loader/grub/grub.nix +++ b/nixos/modules/system/boot/loader/grub/grub.nix @@ -488,4 +488,15 @@ in ]; + + imports = + [ (mkRemovedOptionModule [ "boot" "loader" "grub" "bootDevice" ]) + (mkRenamedOptionModule [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ]) + (mkRenamedOptionModule [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ]) + (mkRenamedOptionModule [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ]) + (mkRenamedOptionModule [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ]) + (mkRenamedOptionModule [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ]) + (mkRenamedOptionModule [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ]) + ]; + } diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 13c44e0930a..4704b3981e4 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -772,4 +772,11 @@ in }; + # FIXME: Remove these eventually. + imports = + [ (mkRenamedOptionModule [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ]) + (mkRenamedOptionModule [ "boot" "systemd" "targets" ] [ "systemd" "targets" ]) + (mkRenamedOptionModule [ "boot" "systemd" "services" ] [ "systemd" "services" ]) + ]; + } diff --git a/nixos/modules/tasks/filesystems/nfs.nix b/nixos/modules/tasks/filesystems/nfs.nix index 79de6556f25..e454eca3a0e 100644 --- a/nixos/modules/tasks/filesystems/nfs.nix +++ b/nixos/modules/tasks/filesystems/nfs.nix @@ -90,7 +90,7 @@ in serviceConfig.Type = "forking"; serviceConfig.ExecStart = '' @${pkgs.nfs-utils}/sbin/rpc.statd rpc.statd --no-notify \ - ${if cfg.statdPort != null then "-p ${toString statdPort}" else ""} + ${if cfg.statdPort != null then "-p ${toString cfg.statdPort}" else ""} ''; serviceConfig.Restart = "always"; }; diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index a3948401d78..4dc221dba68 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -51,7 +51,7 @@ in rec { (all nixos.tests.chromium) (all nixos.tests.firefox) (all nixos.tests.firewall) - (all nixos.tests.gnome3) + nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux (all nixos.tests.installer.lvm) (all nixos.tests.installer.luksroot) (all nixos.tests.installer.separateBoot) diff --git a/pkgs/applications/audio/meterbridge/buf_rect.patch b/pkgs/applications/audio/meterbridge/buf_rect.patch new file mode 100644 index 00000000000..f108b80c101 --- /dev/null +++ b/pkgs/applications/audio/meterbridge/buf_rect.patch @@ -0,0 +1,12 @@ +--- ../tmp-orig/meterbridge-0.9.2/src/main.h 2003-06-05 11:42:41.000000000 +0200 ++++ ./src/main.h 2004-12-29 10:27:24.160912488 +0100 +@@ -8,7 +8,7 @@ + + extern SDL_Surface *screen; + extern SDL_Surface *image, *meter, *meter_buf; +-extern SDL_Rect win, buf_rect[MAX_METERS], dest[MAX_METERS]; ++extern SDL_Rect win, dest[MAX_METERS]; + + extern jack_port_t *input_ports[MAX_METERS]; + extern jack_port_t *output_ports[MAX_METERS]; + diff --git a/pkgs/applications/audio/meterbridge/default.nix b/pkgs/applications/audio/meterbridge/default.nix new file mode 100644 index 00000000000..e15febda231 --- /dev/null +++ b/pkgs/applications/audio/meterbridge/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, pkgconfig, SDL, SDL_image, libjack2 +}: + +stdenv.mkDerivation rec { + version = "0.9.2"; + name = "meterbridge-${version}"; + + src = fetchurl { + url = "http://plugin.org.uk/meterbridge/${name}.tar.gz"; + sha256 = "0jb6g3kbfyr5yf8mvblnciva2bmc01ijpr51m21r27rqmgi8gj5k"; + }; + + patches = [ ./buf_rect.patch ]; + + buildInputs = + [ pkgconfig SDL SDL_image libjack2 + ]; + + meta = with stdenv.lib; { + description = "Various meters (VU, PPM, DPM, JF, SCO) for Jack Audio Connection Kit"; + homepage = http://plugin.org.uk/meterbridge/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.nico202 ]; + }; +} diff --git a/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix b/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix new file mode 100644 index 00000000000..7176b289b8b --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, emacs }: + +let + version = "2.0-82-gfe30ef7"; +in +stdenv.mkDerivation { + name = "markdown-mode-${version}"; + + src = fetchFromGitHub { + owner = "defunkt"; + repo = "markdown-mode"; + rev = "v${version}"; + sha256 = "14a6r05j0g2ppq2q4kd14qyxwr6yv5jwndavbwzkmp6qhmm9k8nz"; + }; + + buildInputs = [ emacs ]; + + buildPhase = '' + emacs -L . --batch -f batch-byte-compile *.el + ''; + + installPhase = '' + install -d $out/share/emacs/site-lisp + install *.el *.elc $out/share/emacs/site-lisp + ''; + + meta.license = stdenv.lib.licenses.gpl3Plus; +} diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 1cc39b6465c..be0a00482f3 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -14,7 +14,7 @@ with stdenv.lib; let - version = "2015-10-08"; + version = "2015-10-12"; # Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness: neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation { @@ -58,8 +58,8 @@ let name = "neovim-${version}"; src = fetchFromGitHub { - sha256 = "1kx4jsajl09klg0h0gzsv7mjz2kr09q4glznxwf8f5cncahgldfc"; - rev = "57d3a2a52fea57874d08472d0f8ee8f1bcee87c1"; + sha256 = "1rlybdldz708pz7k0qs2rpm0cjk8ywwyj5s38hyq4mzsswqszdsc"; + rev = "a3f048ee06dea15490d7b874d295c3fc850cdc51"; repo = "neovim"; owner = "neovim"; }; @@ -103,7 +103,7 @@ let '' + optionalString withPython '' ln -s ${pythonEnv}/bin/python $out/bin/nvim-python '' + optionalString withPython3 '' - ln -s ${python3Env}/bin/python $out/bin/nvim-python3 + ln -s ${python3Env}/bin/python3 $out/bin/nvim-python3 '' + optionalString (withPython || withPython3) '' wrapProgram $out/bin/nvim --add-flags "${ (optionalString withPython diff --git a/pkgs/applications/graphics/pencil/default.nix b/pkgs/applications/graphics/pencil/default.nix index 94ab1b76cda..a067efe82ea 100644 --- a/pkgs/applications/graphics/pencil/default.nix +++ b/pkgs/applications/graphics/pencil/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, xulrunner }: stdenv.mkDerivation rec { - version = "2.0.13"; + version = "2.0.14"; name = "pencil-${version}"; src = fetchurl { url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz"; - sha256 = "150jsaq27n01l0vf10jiyrlfm0canqhphdxi42di96b9zsfkphpk"; + sha256 = "59f46db863e6d95ee6987e600d658ad4b58b03b0744c5c6d17ce04f5ae92d260"; }; diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index c5d1b936233..d5f5d6c672c 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb , libxml2, makeWrapper, packagekit, pkgconfig, saneBackends, systemd, vala }: -let version = "3.18.0"; in +let version = "3.18.1"; in stdenv.mkDerivation rec { name = "simple-scan-${version}"; src = fetchurl { - sha256 = "09qki4h1px65fxwpr7jppzqsi5cfcb8168p13blp3wcfizjgb9gl"; + sha256 = "1i37j36kbn1h8yfzcvbis6f38xz2nj5512ls3gb0j5na0bvja2cw"; url = "https://launchpad.net/simple-scan/3.18/${version}/+download/${name}.tar.xz"; }; diff --git a/pkgs/applications/graphics/yed/default.nix b/pkgs/applications/graphics/yed/default.nix index e3b7d001174..51c41e01bf9 100644 --- a/pkgs/applications/graphics/yed/default.nix +++ b/pkgs/applications/graphics/yed/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, requireFile, makeWrapper, unzip, jre }: stdenv.mkDerivation rec { - name = "yEd-3.14.3"; + name = "yEd-3.14.4"; src = requireFile { name = "${name}.zip"; url = "https://www.yworks.com/en/products/yfiles/yed/"; - sha256 = "0xgazknbz82sgk65hxmvbycl1vd25z80a7jgwjgw7syicrgmplcl"; + sha256 = "0pm271ss6cq2s6cv9ww92haaq2abkjxd9dvc8d72h6af5awv8xy6"; }; nativeBuildInputs = [ unzip makeWrapper ]; diff --git a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix index 6a1acca48d9..03a505591b7 100644 --- a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix +++ b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix @@ -1,12 +1,14 @@ -{ stdenv, fetchgit }: +{ stdenv, fetchFromGitHub }: -stdenv.mkDerivation { - name = "urxvt-perls-2015-03-28"; +stdenv.mkDerivation rec { + name = "urxvt-perls-${version}"; + version = "2.2"; - src = fetchgit { - url = "git://github.com/muennich/urxvt-perls"; - rev = "e4dbde31edd19e2f4c2b6c91117ee91e2f83ddd7"; - sha256 = "1f8a27c3d54377fdd4ab0be2f4efb8329d4900bb1c792b306dc23b5ee59260b1"; + src = fetchFromGitHub { + owner = "muennich"; + repo = "urxvt-perls"; + rev = version; + sha256 = "1cb0jbjmwfy2dlq2ny8wpc04k79jp3pz9qhbmgagsxs3sp1jg2hz"; }; installPhase = '' diff --git a/pkgs/applications/misc/rxvt_unicode/default.nix b/pkgs/applications/misc/rxvt_unicode/default.nix index c1d74c247ce..325a42b70b1 100644 --- a/pkgs/applications/misc/rxvt_unicode/default.nix +++ b/pkgs/applications/misc/rxvt_unicode/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl, +{ stdenv, fetchurl, fetchpatch, perlSupport, libX11, libXt, libXft, ncurses, perl, fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf, unicode3Support }: @@ -28,6 +28,10 @@ stdenv.mkDerivation (rec { patches = [ ./rxvt-unicode-9.06-font-width.patch ./rxvt-unicode-256-color-resources.patch + (fetchpatch { + url = "https://raw.githubusercontent.com/mina86/urxvt-tabbedex/ad4f54c8b8d3a01fc17975fd3fd14aa674c07d2b/rxvt-unicode-scroll-bug-fix.patch"; + sha256 = "1ild0r6y7jb800yiss5pgd4k60s7l9njv3nn3x280yvg1lx6ihpg"; + }) ] ++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch; diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index 94755ea3ad4..974a4ecf27b 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -7,15 +7,15 @@ sha256bin64 = "1ycdp37ikdc9w4hp9qgpzjp47zh37g01ax8x4ack202vrv0dxhsh"; }; beta = { - version = "46.0.2490.52"; - sha256 = "00sgb1pnp3fcijwdwpngnnddmn5nrbljsqz7f6dlnd63qfc91xjw"; - sha256bin32 = "10jgcxc2zwffg8lxi55zl9apql6pyxh1g1n3z46gcb6j6am4y5m5"; - sha256bin64 = "0i839ir4qcjl9llpqnwy793hvbdfh898x1izc5k93h7nm6i34ry9"; + version = "46.0.2490.64"; + sha256 = "1k2zir4rbs7hwdasbjpwyjr4ibis2vm6lx45bfm2r2f469mf3y2g"; + sha256bin32 = "0j1xncws0r5z2rvvjsi0gxxmnslfcbiasaxr6bjhbxnzjv7chrd4"; + sha256bin64 = "1m8vv3qh79an3719afz7n2ijqanf4cyxz2q4bzm512x52z5zipl7"; }; stable = { - version = "45.0.2454.101"; - sha256 = "1yw5xlgy5hd3iwcyf0sillq5p367fcpvp4mizpmv52cwmv52ss0v"; - sha256bin32 = "1ll8lmkmx7v74naz1vcnrwk5ighh0skfcb66jkq4kgxrb5fjgwm5"; - sha256bin64 = "1cwbd3n77dnbfnrfr8g0qng9xkgvz6y7mx489gpx1wsamgi42bzj"; + version = "46.0.2490.71"; + sha256 = "1dnwhwvn39x8lm1jszjn8y7vy478zy75gm696rr2dvk4kqj1hjyd"; + sha256bin32 = "1v1acg32dzmkydzy7sh6xjbzqar052iw8x8hql2yjz5kxznir4sf"; + sha256bin64 = "15ladhxiym760mid5zq09vp73irzwlp31br9yqslzgv4460ma3np"; }; } diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index 2a554c5b3f6..4b94ecdcf5f 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -36,7 +36,7 @@ let # -> http://get.adobe.com/flashplayer/ - version = "11.2.202.521"; + version = "11.2.202.535"; src = if stdenv.system == "x86_64-linux" then @@ -47,7 +47,7 @@ let else rec { inherit version; url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz"; - sha256 = "1fckmapjy7rvy1g5jr71x69j7vviy9262wwpwk6cipym2fi7zvid"; + sha256 = "13fy842plbnv4w081sbhga0jrpbwz8yydg49c2v96l2marmzw9zp"; } else if stdenv.system == "i686-linux" then if debug then @@ -60,7 +60,7 @@ let else rec { inherit version; url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz"; - sha256 = "1483bi34ymchv1cqg57whxhlrhhvwhcw33zjgwzmy7bacxbkj9ia"; + sha256 = "0z99nz1k0cf86dgs367ddxfnf05m32psidpmdzi5qiqaj10h6j6s"; } else throw "Flash Player is not supported on this platform"; diff --git a/pkgs/applications/networking/feedreaders/rsstail/default.nix b/pkgs/applications/networking/feedreaders/rsstail/default.nix index 5786d708cd6..1a36dd8ae20 100644 --- a/pkgs/applications/networking/feedreaders/rsstail/default.nix +++ b/pkgs/applications/networking/feedreaders/rsstail/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, cppcheck, libmrss }: -let version = "2015-09-06"; in +let version = "2.1"; in stdenv.mkDerivation rec { name = "rsstail-${version}"; src = fetchFromGitHub { - sha256 = "1rfzib5fzm0i8wf3njld1lvxgbci0hxxnvp2qx1k4bwpv744xkpx"; - rev = "16636539e4cc75dafbfa7f05539769be7dad4b66"; + sha256 = "12p69i3g1fwlw0bds9jqsdmzkid3k5a41w31d227i7vm12wcvjf6"; + rev = "6f2436185372b3f945a4989406c4b6a934fe8a95"; repo = "rsstail"; owner = "flok99"; }; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional doCheck cppcheck; postPatch = '' - substituteInPlace Makefile --replace -liconv "" + substituteInPlace Makefile --replace -liconv_hook "" ''; makeFlags = "prefix=$(out)"; diff --git a/pkgs/applications/networking/instant-messengers/baresip/default.nix b/pkgs/applications/networking/instant-messengers/baresip/default.nix index d41ba5fcdb3..2b60b3a7a46 100644 --- a/pkgs/applications/networking/instant-messengers/baresip/default.nix +++ b/pkgs/applications/networking/instant-messengers/baresip/default.nix @@ -4,11 +4,11 @@ , gsm, speex, portaudio, spandsp, libuuid }: stdenv.mkDerivation rec { - version = "0.4.14"; + version = "0.4.15"; name = "baresip-${version}"; src=fetchurl { url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz"; - sha256 = "19vn63j6dpybjy14mgnwf0yk2jbcbfdjs50whzwyrrkcv6ipj6hc"; + sha256 = "13712li6y3ikwzl17j46w25xyv3z98yqj7zpr3jifyvbna9ls5r3"; }; buildInputs = [zlib openssl libre librem pkgconfig cairo mpg123 gstreamer gst_ffmpeg gst_plugins_base gst_plugins_bad gst_plugins_good diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix index 2045dcdeca4..b2325e87e0d 100644 --- a/pkgs/applications/networking/instant-messengers/gajim/default.nix +++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix @@ -20,11 +20,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "gajim-${version}"; - version = "0.16.3"; + version = "0.16.4"; src = fetchurl { url = "http://www.gajim.org/downloads/0.16/gajim-${version}.tar.bz2"; - sha256 = "05a59hf9wna6n9fi0a4bhz1hifqj21bwb4ff9rd0my23rdwmij51"; + sha256 = "0zyfs7q1qg8iqszr8l1gb18gqla6zrrfsgpmbxblpi9maqxas5i1"; }; patches = [ diff --git a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix index c13c5e07001..c0acb13740a 100644 --- a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { make install PREFIX=$out ''; - meta = { + meta = with stdenv.lib; { homepage = "https://www.agwa.name/projects/git-crypt"; description = "transparent file encryption in git"; longDescription = '' @@ -33,9 +33,9 @@ stdenv.mkDerivation rec { entire repository. ''; downloadPage = "https://github.com/AGWA/git-crypt/releases"; - license = stdenv.lib.licenses.gpl3; + license = licenses.gpl3; version = "0.5.0"; - maintainers = [ "Desmond O. Chang " ]; + maintainers = [ maintainers.dochang ]; }; } diff --git a/pkgs/applications/video/kodi/default.nix b/pkgs/applications/video/kodi/default.nix index 3fd3d31c18c..142822023fb 100644 --- a/pkgs/applications/video/kodi/default.nix +++ b/pkgs/applications/video/kodi/default.nix @@ -110,6 +110,7 @@ in stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH ":" "${libvdpau}/lib" \ --prefix LD_LIBRARY_PATH ":" "${libcec}/lib" \ --prefix LD_LIBRARY_PATH ":" "${libcec_platform}/lib" \ + --prefix LD_LIBRARY_PATH ":" "${libass}/lib" \ --prefix LD_LIBRARY_PATH ":" "${rtmpdump}/lib" done ''; diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index d2305f83067..e3172dcaa3e 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pythonPackages, intltool, libxml2Python, curl, python , wrapGAppsHook, virtinst, pyGtkGlade, pythonDBus, gnome_python, gtkvnc, vte , gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib -, avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3 +, avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3, system-libvirt }: with stdenv.lib; @@ -40,6 +40,10 @@ buildPythonPackage rec { dconf ]; + patchPhase = '' + sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py + ''; + configurePhase = '' sed -i 's/from distutils.core/from setuptools/g' setup.py sed -i 's/from distutils.command.install/from setuptools.command.install/g' setup.py diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index f26291e7daa..3bf40a2e8d6 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -33,7 +33,7 @@ let grKernel = if cfg.stable then mkKernel pkgs.linux_3_14 stable-patch - else mkKernel pkgs.linux_4_1 test-patch; + else mkKernel pkgs.linux_4_2 test-patch; ## -- grsecurity configuration --------------------------------------------- diff --git a/pkgs/data/fonts/kawkab-mono/default.nix b/pkgs/data/fonts/kawkab-mono/default.nix new file mode 100644 index 00000000000..4f6e430f7a2 --- /dev/null +++ b/pkgs/data/fonts/kawkab-mono/default.nix @@ -0,0 +1,26 @@ +{stdenv, fetchurl, unzip}: + +stdenv.mkDerivation rec { + name = "kawkab-mono-20151015"; + + src = fetchurl { + url = "http://makkuk.com/kawkab-mono/downloads/kawkab-mono-0.1.zip"; + sha256 = "16pv9s4q7199aacbzfi2d10rcrq77vyfvzcy42g80nhfrkz1cb0m"; + }; + + buildInputs = [ unzip ]; + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp *.ttf $out/share/fonts/truetype + ''; + + meta = { + description = "An arab fixed-width font"; + homepage = "http://makkuk.com/kawkab-mono/"; + license = stdenv.lib.licenses.ofl; + }; +} + + diff --git a/pkgs/data/fonts/paratype-pt/mono.nix b/pkgs/data/fonts/paratype-pt/mono.nix new file mode 100644 index 00000000000..7c7a8c530e2 --- /dev/null +++ b/pkgs/data/fonts/paratype-pt/mono.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "paratype-pt-mono"; + + src = fetchurl rec { + url = "http://www.paratype.ru/uni/public/PTMono.zip"; + sha256 = "1wqaai7d6xh552vvr5svch07kjn1q89ab5jimi2z0sbd0rbi86vl"; + }; + + buildInputs = [unzip]; + + phases = "unpackPhase installPhase"; + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + mkdir -p $out/share/doc/paratype + cp *.ttf $out/share/fonts/truetype + cp *.txt $out/share/doc/paratype + ''; + + meta = with stdenv.lib; { + homepage = "http://www.paratype.ru/public/"; + description = "An open Paratype font"; + + license = "Open Paratype license"; + # no commercial distribution of the font on its own + # must rename on modification + # http://www.paratype.ru/public/pt_openlicense.asp + + platforms = platforms.all; + maintainers = with maintainers; [ raskin ]; + }; +} + diff --git a/pkgs/data/fonts/paratype-pt/sans.nix b/pkgs/data/fonts/paratype-pt/sans.nix new file mode 100644 index 00000000000..2958611e474 --- /dev/null +++ b/pkgs/data/fonts/paratype-pt/sans.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "paratype-pt-sane"; + + src = fetchurl rec { + url = "http://www.paratype.ru/uni/public/PTSans.zip"; + sha256 = "1j9gkbqyhxx8pih5agr9nl8vbpsfr9vdqmhx73ji3isahqm3bhv5"; + }; + + buildInputs = [unzip]; + + phases = "unpackPhase installPhase"; + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + mkdir -p $out/share/doc/paratype + cp *.ttf $out/share/fonts/truetype + cp *.txt $out/share/doc/paratype + ''; + + meta = with stdenv.lib; { + homepage = "http://www.paratype.ru/public/"; + description = "An open Paratype font"; + + license = "Open Paratype license"; + # no commercial distribution of the font on its own + # must rename on modification + # http://www.paratype.ru/public/pt_openlicense.asp + + platforms = platforms.all; + maintainers = with maintainers; [ raskin ]; + }; +} + diff --git a/pkgs/data/fonts/paratype-pt/serif.nix b/pkgs/data/fonts/paratype-pt/serif.nix new file mode 100644 index 00000000000..b0304c37386 --- /dev/null +++ b/pkgs/data/fonts/paratype-pt/serif.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "paratype-pt-serif"; + + src = fetchurl rec { + url = "http://www.paratype.ru/uni/public/PTSerif.zip"; + sha256 = "0x3l58c1rvwmh83bmmgqwwbw9av1mvvq68sw2hdkyyihjvamyvvs"; + }; + + buildInputs = [unzip]; + + phases = "unpackPhase installPhase"; + sourceRoot = "."; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + mkdir -p $out/share/doc/paratype + cp *.ttf $out/share/fonts/truetype + cp *.txt $out/share/doc/paratype + ''; + + meta = with stdenv.lib; { + homepage = "http://www.paratype.ru/public/"; + description = "An open Paratype font"; + + license = "Open Paratype license"; + # no commercial distribution of the font on its own + # must rename on modification + # http://www.paratype.ru/public/pt_openlicense.asp + + platforms = platforms.all; + maintainers = with maintainers; [ raskin ]; + }; +} + diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 51e46f4335a..fa704aef097 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,7 +8,7 @@ let # Annoyingly, these files are updated without a change in URL. This means that # builds will start failing every month or so, until the hashes are updated. - version = "2015-10-09"; + version = "2015-10-13"; in stdenv.mkDerivation { name = "geolite-legacy-${version}"; @@ -27,10 +27,10 @@ stdenv.mkDerivation { "0jdgfcy90mk7q25rhb8ymnddkskmp2cmyzmbjr3ij0zvbbpzxl4i"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "05j2nygvb7xi4s636dik12vgrdi37q5fdv5k3liqgswf9z0msz81"; + "0j73lw2i6nnx1mgp1hspfa95zca5h0hqj12g16rln7pss868wnwi"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "17s7pcqmfd9xvq0hd7g7nh62sjayl24w04ifm39snrq2a32l667n"; + "1id4rkxp5pppr274y276w2zmx44dn0h44d4ax780g8cbhlc9n2br"; meta = with stdenv.lib; { inherit version; diff --git a/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix b/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix index 11655edded0..9ed8494098d 100644 --- a/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix +++ b/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix @@ -5,14 +5,15 @@ , gnome3, librsvg, gnome_doc_utils, webkitgtk }: let - majorVersion = "0.8"; + majorVersion = "0.10"; + minorVersion = "0"; in stdenv.mkDerivation rec { - name = "geary-${majorVersion}.2"; + name = "geary-${majorVersion}.${minorVersion}"; src = fetchurl { url = "mirror://gnome/sources/geary/${majorVersion}/${name}.tar.xz"; - sha256 = "3cfa626168935acf49c9415fad54c7849f17fd833026cfd3c224ba0fb892d641"; + sha256 = "46197a5a1b8b040adcee99082dbfd9fff9ca804e3bf0055a2e90b13214bdbca5"; }; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; @@ -39,7 +40,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - patches = [ ./disable_valadoc.patch ]; + # patches = [ ./disable_valadoc.patch ]; patchFlags = "-p0"; meta = with stdenv.lib; { diff --git a/pkgs/development/compilers/uhc/default.nix b/pkgs/development/compilers/uhc/default.nix index 017dcfb3e12..b0bd70fab03 100644 --- a/pkgs/development/compilers/uhc/default.nix +++ b/pkgs/development/compilers/uhc/default.nix @@ -1,18 +1,18 @@ { stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages }: -let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [shuffle hashable mtl network uhc-util uulib] ); +let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [fgl vector syb uulib network binary hashable uhc-util mtl transformers directory containers array process filepath shuffle uuagc] ); in stdenv.mkDerivation rec { # Important: # The commits "Fixate/tag v..." are the released versions. # Ignore the "bumped version to ...." commits, they do not # correspond to releases. - version = "1.1.9.1.20150611"; + version = "1.1.9.1"; name = "uhc-${version}"; src = fetchgit { url = "https://github.com/UU-ComputerScience/uhc.git"; - rev = "b80098e07d12900f098ea964b1d2b3f38e5c9900"; - sha256 = "14qg1fd9pgbczcmn5ggkd9674qadx1izmz8363ps7c207dg94f9x"; + rev = "ce93d01486972c994ea2bbbd3d43859911120c39"; + sha256 = "1y670sc6ky74l3msayzqjlkjv1kpv3g35pirsq3q79klzvnpyj2x"; }; postUnpack = "sourceRoot=\${sourceRoot}/EHC"; @@ -50,6 +50,5 @@ in stdenv.mkDerivation rec { # On Darwin, the GNU libtool is used, which does not # support the -static flag and thus breaks the build. platforms = ["x86_64-linux"]; - broken = true; # https://github.com/UU-ComputerScience/uhc/issues/60 }; } diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index cc11adbb431..ad26ad43bdf 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -635,8 +635,8 @@ self: super: { # Uses OpenGL in testing caramia = dontCheck super.caramia; - # Supports only 3.4 for now, https://github.com/bscarlet/llvm-general/issues/144 - llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_34; }; + # Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142 + llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_35; }; # Needs help finding LLVM. spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm; diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix index bfb9ecdb5ba..06fedc6a1c4 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -91,4 +91,7 @@ self: super: { # Needs hashable on pre 7.10.x compilers. nats = addBuildDepend super.nats self.hashable; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix index 55432ccdac5..9ce0e920042 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -73,4 +73,7 @@ self: super: { # Newer versions require bytestring >=0.10. tar = super.tar_0_4_1_0; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix index c848a50cd36..ae85c4a009c 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -73,4 +73,7 @@ self: super: { # Newer versions require bytestring >=0.10. tar = super.tar_0_4_1_0; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index 0046ad66c23..aa27b70a566 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -82,4 +82,7 @@ self: super: { # Newer versions require bytestring >=0.10. tar = super.tar_0_4_1_0; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } 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 ccc4aa54c28..a1ce7cf68d6 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -79,10 +79,6 @@ self: super: { # Needs hashable on pre 7.10.x compilers. nats = addBuildDepend super.nats self.hashable; - # Newer versions always trigger the non-deterministic library ID bug - # and are virtually impossible to compile on Hydra. - conduit = super.conduit_1_2_4_1; - # https://github.com/magthe/sandi/issues/7 sandi = overrideCabal super.sandi (drv: { postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal"; @@ -96,4 +92,7 @@ self: super: { convertible = markBroken super.convertible; ghc-mod = markBroken super.ghc-mod; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } 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 e5f5d3c953a..4b1d9df24e4 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -138,4 +138,7 @@ self: super: { xss-sanitize_0_3_5_4 = addBuildDepend super.xss-sanitize_0_3_5_4 self.network; xss-sanitize_0_3_5_5 = addBuildDepend super.xss-sanitize_0_3_5_5 self.network; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index e4ce6501b50..4e96633ffec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -617,6 +617,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3035,6 +3036,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7658,6 +7660,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 29eff60a39a..a83b845553d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -617,6 +617,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3034,6 +3035,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7657,6 +7659,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 39c535c9728..2be11aabdd1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -617,6 +617,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3034,6 +3035,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7657,6 +7659,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 5e3bbb30a88..73960f178c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -617,6 +617,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3034,6 +3035,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7657,6 +7659,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 32838efe2e6..ab5ed4f9716 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -617,6 +617,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3033,6 +3034,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7652,6 +7654,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 8385b60aea6..03a086680ff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -617,6 +617,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3033,6 +3034,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7652,6 +7654,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 0065e61039a..6053fa578c2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -617,6 +617,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3030,6 +3031,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7646,6 +7648,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 6fb4028382a..1b029b2e72e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -617,6 +617,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3030,6 +3031,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7646,6 +7648,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 887247343e8..cfda037af8b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -614,6 +614,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3020,6 +3021,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7630,6 +7632,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 96703054c6a..88fe2a12f3b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -614,6 +614,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3014,6 +3015,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7612,6 +7614,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 4282ea24d14..37ecceb293d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -613,6 +613,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3005,6 +3006,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5367,6 +5369,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7574,6 +7577,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7839,6 +7843,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7969,6 +7974,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index d2fee33b620..0a719cd2991 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -613,6 +613,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3005,6 +3006,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5363,6 +5365,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7568,6 +7571,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7833,6 +7837,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7963,6 +7968,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 4317fe0a721..807e25d18c6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -613,6 +613,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3005,6 +3006,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5362,6 +5364,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7565,6 +7568,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7830,6 +7834,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7960,6 +7965,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 1f509f1d170..3d185d8b333 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -613,6 +613,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3004,6 +3005,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5359,6 +5361,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7561,6 +7564,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7826,6 +7830,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7956,6 +7961,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index e2a60b64f90..03b0d820f99 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -612,6 +612,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3001,6 +3002,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5353,6 +5355,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7553,6 +7556,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7818,6 +7822,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7948,6 +7953,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 0ea1c32f4d2..d9021160b64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -612,6 +612,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2996,6 +2997,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5347,6 +5349,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7541,6 +7544,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7806,6 +7810,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7935,6 +7940,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index d4443fe5450..72bc49e3c83 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -614,6 +614,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3012,6 +3013,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7606,6 +7608,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -8005,6 +8008,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 93b3618b443..4e3b1824c72 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -613,6 +613,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3010,6 +3011,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7599,6 +7601,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7998,6 +8001,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 1a69fca9369..3bde16664d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -613,6 +613,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3009,6 +3010,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7597,6 +7599,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7994,6 +7997,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index fb3cba5b31c..a4735937363 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -613,6 +613,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3009,6 +3010,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7591,6 +7593,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7988,6 +7991,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 094aa59e3a5..f8436e1c0b1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -613,6 +613,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3007,6 +3008,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -7586,6 +7588,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7982,6 +7985,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 2ec02ed4ac1..a9e76b26d8a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -613,6 +613,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -3007,6 +3008,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5369,6 +5371,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7582,6 +7585,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7978,6 +7982,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 1c70e065943..f029092a405 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -607,6 +607,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2975,6 +2976,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5292,6 +5294,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7463,6 +7466,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7727,6 +7731,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7855,6 +7860,7 @@ self: super: { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 32440077dd1..ec9899ec447 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -607,6 +607,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2974,6 +2975,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5290,6 +5292,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7461,6 +7464,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7725,6 +7729,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7852,6 +7857,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index d99b088b54d..fa6fe9727c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2953,6 +2955,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5246,6 +5249,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7394,6 +7398,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7656,6 +7661,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7783,6 +7789,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 8b648dfe214..9aa629669e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2952,6 +2954,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5238,6 +5241,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7381,6 +7385,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7643,6 +7648,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7770,6 +7776,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index f9c78759faa..5c43ee1b2de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2952,6 +2954,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5238,6 +5241,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7380,6 +7384,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7642,6 +7647,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7769,6 +7775,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 1a53bf0b520..11fda4472e3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2952,6 +2954,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5236,6 +5239,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7376,6 +7380,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7638,6 +7643,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7765,6 +7771,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 9941d2e320b..289ca8719fe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2950,6 +2952,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5233,6 +5236,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7371,6 +7375,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7633,6 +7638,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7760,6 +7766,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 4d93d9d4c55..9d1bf3da059 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2948,6 +2950,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5230,6 +5233,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7365,6 +7369,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7627,6 +7632,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7754,6 +7760,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 849b4eb458f..9d052f9785f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -603,6 +604,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2941,6 +2943,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5220,6 +5223,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7353,6 +7357,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7615,6 +7620,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7742,6 +7748,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index fb1eee12fe1..b0675f292f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -603,6 +604,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2936,6 +2938,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5212,6 +5215,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7342,6 +7346,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7604,6 +7609,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7731,6 +7737,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index df7ca966d33..f11cb01559d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -602,6 +603,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2930,6 +2932,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5204,6 +5207,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7331,6 +7335,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7593,6 +7598,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7720,6 +7726,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 31d20ccfb5f..c6858c8f66b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -602,6 +603,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2930,6 +2932,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5202,6 +5205,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7326,6 +7330,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7588,6 +7593,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7715,6 +7721,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 9dca0321278..eb52972daf7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -607,6 +607,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2971,6 +2972,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5286,6 +5288,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7456,6 +7459,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7720,6 +7724,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7847,6 +7852,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 451743606d5..a645487603d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -602,6 +603,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2926,6 +2928,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5197,6 +5200,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7319,6 +7323,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7581,6 +7586,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7708,6 +7714,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 7ed6f83c98b..fa1cd007556 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -602,6 +603,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2926,6 +2928,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5195,6 +5198,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7313,6 +7317,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7575,6 +7580,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7700,6 +7706,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 0dc04ffbbb2..13f101981d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -346,6 +346,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -602,6 +603,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2925,6 +2927,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5191,6 +5194,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7309,6 +7313,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7571,6 +7576,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7696,6 +7702,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index baaae9b69df..efc5e18e7f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -607,6 +607,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2970,6 +2971,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5284,6 +5286,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7453,6 +7456,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7717,6 +7721,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7844,6 +7849,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index c6635aec357..e385c5e8041 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -607,6 +607,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2969,6 +2970,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5282,6 +5284,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7447,6 +7450,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7711,6 +7715,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7838,6 +7843,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index e27d01b2d33..4d8785f64de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -607,6 +607,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2967,6 +2968,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5279,6 +5281,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7443,6 +7446,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7707,6 +7711,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7834,6 +7839,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index d63eb109d2c..a508c266754 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -607,6 +607,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2963,6 +2964,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5273,6 +5275,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7436,6 +7439,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7698,6 +7702,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7825,6 +7830,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index c5f96fdf36e..6e9e7ff7f10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2961,6 +2963,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5271,6 +5274,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7434,6 +7438,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7696,6 +7701,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7823,6 +7829,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index b4c261140f7..e9b2c5052dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2960,6 +2962,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5267,6 +5270,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7426,6 +7430,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7688,6 +7693,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7815,6 +7821,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 42212b80ba6..3ad75c3f98e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -347,6 +347,7 @@ self: super: { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -605,6 +606,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2955,6 +2957,7 @@ self: super: { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -5257,6 +5260,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -7409,6 +7413,7 @@ self: super: { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7671,6 +7676,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; @@ -7798,6 +7804,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index d19b6d3b367..09a04be9184 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -587,6 +587,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2455,6 +2456,7 @@ self: super: { "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; "dlist" = doDistribute super."dlist_0_7_1_1"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2810,6 +2812,7 @@ self: super: { "find-conduit" = dontDistribute super."find-conduit"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -3399,6 +3402,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4975,6 +4979,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -7009,6 +7014,7 @@ self: super: { "time-w3c" = dontDistribute super."time-w3c"; "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7169,6 +7175,7 @@ self: super: { "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; @@ -7261,6 +7268,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7375,6 +7383,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 3af3b09834e..50d34a82985 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -587,6 +587,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2452,6 +2453,7 @@ self: super: { "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; "dlist" = doDistribute super."dlist_0_7_1_1"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2804,6 +2806,7 @@ self: super: { "find-conduit" = dontDistribute super."find-conduit"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -3393,6 +3396,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4967,6 +4971,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -6998,6 +7003,7 @@ self: super: { "time-w3c" = dontDistribute super."time-w3c"; "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7158,6 +7164,7 @@ self: super: { "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; @@ -7250,6 +7257,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7363,6 +7371,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index d84e7e046be..baec2a6a87e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -584,6 +584,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2447,6 +2448,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2799,6 +2801,7 @@ self: super: { "find-conduit" = dontDistribute super."find-conduit"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -3386,6 +3389,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4957,6 +4961,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -6980,6 +6985,7 @@ self: super: { "time-w3c" = dontDistribute super."time-w3c"; "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7140,6 +7146,7 @@ self: super: { "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; @@ -7232,6 +7239,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7345,6 +7353,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index a38627e75f1..c83d3237350 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -583,6 +583,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2442,6 +2443,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2794,6 +2796,7 @@ self: super: { "find-conduit" = dontDistribute super."find-conduit"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -3380,6 +3383,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4949,6 +4953,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4983,6 +4988,7 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -6966,6 +6972,7 @@ self: super: { "time-w3c" = dontDistribute super."time-w3c"; "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7126,6 +7133,7 @@ self: super: { "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; @@ -7218,6 +7226,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7330,6 +7339,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 43a9b7dc884..74cf66b00f3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -583,6 +583,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -2441,6 +2442,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2793,6 +2795,7 @@ self: super: { "find-conduit" = dontDistribute super."find-conduit"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -3379,6 +3382,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4948,6 +4952,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4982,6 +4987,7 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -6963,6 +6969,7 @@ self: super: { "time-w3c" = dontDistribute super."time-w3c"; "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7123,6 +7130,7 @@ self: super: { "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; @@ -7215,6 +7223,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7327,6 +7336,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 44e33ca667b..a238a1165eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -583,6 +583,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -772,6 +773,7 @@ self: super: { "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; "RandomDotOrg" = dontDistribute super."RandomDotOrg"; @@ -2437,6 +2439,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2787,6 +2790,7 @@ self: super: { "find-conduit" = dontDistribute super."find-conduit"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -3373,6 +3377,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4935,6 +4940,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4969,6 +4975,7 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -6940,6 +6947,7 @@ self: super: { "time-w3c" = dontDistribute super."time-w3c"; "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7100,6 +7108,7 @@ self: super: { "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; @@ -7192,6 +7201,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7304,6 +7314,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 1fc5b2ba285..28533c82c11 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -583,6 +583,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -772,6 +773,7 @@ self: super: { "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; "RandomDotOrg" = dontDistribute super."RandomDotOrg"; @@ -2432,6 +2434,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2778,6 +2781,7 @@ self: super: { "find-conduit" = dontDistribute super."find-conduit"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -3360,6 +3364,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4915,6 +4920,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4949,6 +4955,7 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -6913,6 +6920,7 @@ self: super: { "time-w3c" = dontDistribute super."time-w3c"; "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7072,6 +7080,7 @@ self: super: { "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; @@ -7164,6 +7173,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7275,6 +7285,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index cbdc1bc7eb1..440d6163086 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -581,6 +581,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -770,6 +771,7 @@ self: super: { "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; "RandomDotOrg" = dontDistribute super."RandomDotOrg"; @@ -2418,6 +2420,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2763,6 +2766,7 @@ self: super: { "find-conduit" = dontDistribute super."find-conduit"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -3344,6 +3348,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4893,6 +4898,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4927,6 +4933,7 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -6176,16 +6183,21 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_4"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6876,6 +6888,7 @@ self: super: { "time-w3c" = dontDistribute super."time-w3c"; "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7033,6 +7046,7 @@ self: super: { "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; @@ -7125,6 +7139,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7236,6 +7251,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 337cc99d73e..c2b6eabf5f0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -581,6 +581,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -770,6 +771,7 @@ self: super: { "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; "RandomDotOrg" = dontDistribute super."RandomDotOrg"; @@ -2404,6 +2406,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2748,6 +2751,7 @@ self: super: { "find-conduit" = dontDistribute super."find-conduit"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -3328,6 +3332,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4873,6 +4878,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4907,6 +4913,7 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -6152,16 +6159,21 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_4"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6848,6 +6860,7 @@ self: super: { "time-w3c" = dontDistribute super."time-w3c"; "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7004,6 +7017,7 @@ self: super: { "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; @@ -7096,6 +7110,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7207,6 +7222,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7327,6 +7343,7 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_0"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index cfa9c491280..ea7dd04fa31 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -580,6 +580,7 @@ self: super: { "LambdaNet" = dontDistribute super."LambdaNet"; "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdaya" = dontDistribute super."Lambdaya"; "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; "Lastik" = dontDistribute super."Lastik"; "Lattices" = dontDistribute super."Lattices"; @@ -768,6 +769,7 @@ self: super: { "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; "RandomDotOrg" = dontDistribute super."RandomDotOrg"; @@ -2397,6 +2399,7 @@ self: super: { "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2739,6 +2742,7 @@ self: super: { "find-conduit" = dontDistribute super."find-conduit"; "fingertree-tf" = dontDistribute super."fingertree-tf"; "finite-field" = dontDistribute super."finite-field"; + "first-and-last" = dontDistribute super."first-and-last"; "first-class-patterns" = dontDistribute super."first-class-patterns"; "firstify" = dontDistribute super."firstify"; "fishfood" = dontDistribute super."fishfood"; @@ -3318,6 +3322,7 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -4861,6 +4866,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4894,6 +4900,7 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -6136,16 +6143,21 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_4"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6831,6 +6843,7 @@ self: super: { "time-w3c" = dontDistribute super."time-w3c"; "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -6987,6 +7000,7 @@ self: super: { "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; @@ -7079,6 +7093,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; @@ -7190,6 +7205,7 @@ self: super: { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7309,6 +7325,7 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_0"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; @@ -7485,6 +7502,7 @@ self: super: { "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index d13b8d5ba5c..c9c4b5b2575 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -6065,7 +6065,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; - "GLURaw" = callPackage + "GLURaw_1_5_0_1" = callPackage ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: mkDerivation { pname = "GLURaw"; @@ -6076,6 +6076,20 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; + + "GLURaw" = callPackage + ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: + mkDerivation { + pname = "GLURaw"; + version = "1.5.0.2"; + sha256 = "dd24af039bef7f44dc580692b57a7a16a36a44b7261c8d3008aba60b696a4c3f"; + libraryHaskellDepends = [ base OpenGLRaw transformers ]; + librarySystemDepends = [ freeglut mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUT_2_5_1_1" = callPackage @@ -11343,6 +11357,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Lambdaya" = callPackage + ({ mkDerivation, base, mtl, unix }: + mkDerivation { + pname = "Lambdaya"; + version = "0.1.0.0"; + sha256 = "99107e7588c63f173c085c6310ab122cee45ce55f16f6ded2eed7b279f0c7301"; + libraryHaskellDepends = [ base mtl unix ]; + description = "Library for RedPitaya"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "LargeCardinalHierarchy" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -12359,6 +12384,8 @@ self: { pname = "MonadRandom"; version = "0.3.0.1"; sha256 = "40e6a19cecf9c72a5281e813c982e037104c287eef3e4b49a03b4fdd6736722d"; + revision = "1"; + editedCabalFile = "aef6c8f98c9f4c1fc09753192ec83a6c259087dd098ca2e6cacd3219872f071c"; libraryHaskellDepends = [ base mtl random transformers ]; description = "Random-number generation monad"; license = "unknown"; @@ -12373,6 +12400,8 @@ self: { pname = "MonadRandom"; version = "0.3.0.2"; sha256 = "71afdea34f7836678d989cef3373f76a62cca5f47440aa0185c85fff5694eaa1"; + revision = "1"; + editedCabalFile = "1b96fa21489194e7d5634e42f1f4efef26c5e0f9c0cea47c0ea0ca86dc4fd2e6"; libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; @@ -12389,6 +12418,8 @@ self: { pname = "MonadRandom"; version = "0.4"; sha256 = "d32f3f7a8390125f43a67b78741c6655452dfc4388009ab4ca5a265ab5b86f93"; + revision = "1"; + editedCabalFile = "d913e82863e6b10963cc9f48a74e70739336e17debbcccef66f7e5068cdf7f1d"; libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; @@ -13684,6 +13715,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) mesa;}; + "OpenGLRaw_2_6_0_0" = callPackage + ({ mkDerivation, base, bytestring, containers, half, mesa, text + , transformers + }: + mkDerivation { + pname = "OpenGLRaw"; + version = "2.6.0.0"; + sha256 = "e962c18eb40d6e1ef7c2c3a877b0be14c35dbf533612d33074d5011bd266cc0d"; + libraryHaskellDepends = [ + base bytestring containers half text transformers + ]; + librarySystemDepends = [ mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) mesa;}; + "OpenGLRaw21" = callPackage ({ mkDerivation, OpenGLRaw }: mkDerivation { @@ -14999,7 +15048,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "RSA" = callPackage + "RSA_2_1_0_3" = callPackage ({ mkDerivation, base, binary, bytestring, crypto-api , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged , test-framework, test-framework-quickcheck2 @@ -15017,9 +15066,10 @@ self: { ]; description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "RSA_2_2_0" = callPackage + "RSA" = callPackage ({ mkDerivation, base, binary, bytestring, crypto-api , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged , test-framework, test-framework-quickcheck2 @@ -15037,7 +15087,6 @@ self: { ]; description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Raincat" = callPackage @@ -19596,8 +19645,8 @@ self: { pname = "accelerate-cuda"; version = "0.15.0.0"; sha256 = "bec5de97e2a621d8eab3da2598143e34c4145fb10adad6d4164ed4ce237316fd"; - revision = "2"; - editedCabalFile = "5ed199c4c1d360ed3eaee24df7016462ed1fb1313ff47d6828be546eec8708fc"; + revision = "3"; + editedCabalFile = "14c5a52cc4989793c20d22d81dec4aa91e4c64be122fde0453b0bd6cd790af82"; libraryHaskellDepends = [ accelerate array base binary bytestring cryptohash cuda directory fclabels filepath hashable hashtables language-c-quote @@ -19737,14 +19786,11 @@ self: { }: mkDerivation { pname = "accelerate-io"; - version = "0.15.0.0"; - sha256 = "66a48e417e353f6daad24e7ca385370764d6a0a1979066c1e890fba77b95e802"; - revision = "1"; - editedCabalFile = "5c3f8f7ebc03117652646329743ea251d281f72d81454e55538c27e87e8c0ecc"; + version = "0.15.1.0"; + sha256 = "d531fc6c950a6fcf0bdd72c65438c27fbffe2f3043444128979490d53fc7677c"; libraryHaskellDepends = [ accelerate array base bmp bytestring repa vector ]; - jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-io"; description = "Read and write Accelerate arrays in various formats"; license = stdenv.lib.licenses.bsd3; @@ -40302,8 +40348,8 @@ self: { }: mkDerivation { pname = "cef"; - version = "0.1.2"; - sha256 = "9191a449057e8889c3626f8e625b85a27af059cc43c74d6202dad30a7b91b838"; + version = "0.1.3"; + sha256 = "9918fb0b19e23aefe90ed914e30498011f1fa6ea0c8ffdc9e8f8a90337ac41d4"; libraryHaskellDepends = [ base bytestring text time ]; testHaskellDepends = [ base directory doctest filepath ]; homepage = "http://github.com/picussecurity/haskell-cef.git"; @@ -43206,8 +43252,8 @@ self: { }: mkDerivation { pname = "clckwrks"; - version = "0.23.10"; - sha256 = "7e85091501c7a91a51c17920b415e764f20b730f1bf59ad0e0cc5be9b777cbe7"; + version = "0.23.11"; + sha256 = "65868751cc51e409a000edc5fb26e25f3c151f8a792ca80006ae87813cc9ea6e"; libraryHaskellDepends = [ acid-state aeson aeson-qq attoparsec base blaze-html bytestring cereal containers directory filepath happstack-authenticate @@ -43231,14 +43277,13 @@ self: { }: mkDerivation { pname = "clckwrks-cli"; - version = "0.2.14"; - sha256 = "2336de23aed5c6cb2dafdafbd42581c43db3313835a91ad70a664a2d7ecf9bb7"; + version = "0.2.15"; + sha256 = "8a7fad8590c6c1297b7076a7e4cc03689f37cd9371171748f351967cbb91b7f2"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ acid-state base clckwrks haskeline mtl network parsec ]; - jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "a command-line interface for adminstrating some aspects of clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -43370,13 +43415,12 @@ self: { }: mkDerivation { pname = "clckwrks-theme-bootstrap"; - version = "0.4.0"; - sha256 = "9f4e43b58b2a8ec3d9a8d33663c3cad8121981e72d69cada7c76467b329d4d23"; + version = "0.4.1"; + sha256 = "59399a42c5d928e9aa332e0901d023e00f6add27c03b95cddf405e392885f852"; libraryHaskellDepends = [ base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro mtl text web-plugins ]; - jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "simple bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -43388,8 +43432,8 @@ self: { }: mkDerivation { pname = "clckwrks-theme-clckwrks"; - version = "0.5.1"; - sha256 = "93540dc0dafbf1e9bc6863c215391905201bc4653133fd01c0f0c6a9bacd6858"; + version = "0.5.2"; + sha256 = "53182128e49924132191d6d607e7088f92367a10ab31d38b5e4a1d8a2471ed1c"; libraryHaskellDepends = [ base clckwrks containers happstack-authenticate hsp hsx2hs mtl text web-plugins @@ -57751,6 +57795,7 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -58128,6 +58173,7 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -58448,7 +58494,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dns" = callPackage + "dns_2_0_0" = callPackage ({ mkDerivation, attoparsec, base, binary, blaze-builder , bytestring, conduit, conduit-extra, containers, doctest, hspec , iproute, mtl, network, random, resourcet, word8 @@ -58470,6 +58516,31 @@ self: { testTarget = "spec"; description = "DNS library in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dns" = callPackage + ({ mkDerivation, attoparsec, base, binary, blaze-builder + , bytestring, conduit, conduit-extra, containers, doctest, hspec + , iproute, mtl, network, random, resourcet, word8 + }: + mkDerivation { + pname = "dns"; + version = "2.0.1"; + sha256 = "3d11e14bbfd07b46bba9c676dd970731be190d6dc9c5e95089c4da60565e47d2"; + libraryHaskellDepends = [ + attoparsec base binary blaze-builder bytestring conduit + conduit-extra containers iproute mtl network random resourcet + ]; + testHaskellDepends = [ + attoparsec base binary blaze-builder bytestring conduit + conduit-extra containers doctest hspec iproute mtl network random + resourcet word8 + ]; + doCheck = false; + testTarget = "spec"; + description = "DNS library in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "dnscache" = callPackage @@ -67208,6 +67279,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "first-and-last" = callPackage + ({ mkDerivation, base, Cabal }: + mkDerivation { + pname = "first-and-last"; + version = "0.1.0.0"; + sha256 = "d3d54fb686d09717501eed65a1ae21fdd5434ad73f958ff57d7ae849b1519653"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base Cabal ]; + homepage = "https://github.com/markandrus/first-and-last"; + description = "First and Last generalized to return up to n values"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "first-class-patterns" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -71939,8 +72023,8 @@ self: { }: mkDerivation { pname = "getopt-generics"; - version = "0.11.0.1"; - sha256 = "b3f49f80af9e7eba12260f772c8b2b85cea4be80c7f33fc363c28f5f9d7f9eca"; + version = "0.11.0.2"; + sha256 = "d1d989bbf86df719c57cb01db59a554f3b07c475644dd3cecc48bfc29d885010"; libraryHaskellDepends = [ base base-compat base-orphans generics-sop tagged ]; @@ -71949,7 +72033,7 @@ self: { QuickCheck safe silently tagged ]; doCheck = false; - homepage = "https://github.com/zalora/getopt-generics#readme"; + homepage = "https://github.com/soenkehahn/getopt-generics#readme"; description = "Create command line interfaces with ease"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76689,27 +76773,14 @@ self: { ({ mkDerivation, base, containers, deepseq, pointed }: mkDerivation { pname = "grouped-list"; - version = "0.1.0.0"; - sha256 = "e8d4003fa846ee6a928209bd78c526691d40b7eaaec76fdc636d38967f05c9fb"; + version = "0.1.2.0"; + sha256 = "77aa60756373ca42065568fb5c57c8cb9b5f85e89ed3d35192b8df4c48ae390f"; libraryHaskellDepends = [ base containers deepseq pointed ]; homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; description = "Grouped lists. Equal consecutive elements are grouped."; license = stdenv.lib.licenses.bsd3; }) {}; - "grouped-list_0_1_1_0" = callPackage - ({ mkDerivation, base, containers, deepseq, pointed }: - mkDerivation { - pname = "grouped-list"; - version = "0.1.1.0"; - sha256 = "ee4d9d19edb36c8f3bcf5b85e3ef461d73018424197a0ae1cc1161edd8ebc765"; - libraryHaskellDepends = [ base containers deepseq pointed ]; - homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; - description = "Grouped lists. Equal consecutive elements are grouped."; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "groupoid" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -80726,24 +80797,25 @@ self: { "happstack-authenticate" = callPackage ({ mkDerivation, acid-state, aeson, authenticate, base , base64-bytestring, boomerang, bytestring, containers - , data-default, filepath, happstack-hsp, happstack-jmacro - , happstack-server, hsp, hsx-jmacro, hsx2hs, http-conduit - , http-types, ixset-typed, jmacro, jwt, lens, mime-mail, mtl - , pwstore-purehaskell, random, safecopy, shakespeare, text, time - , unordered-containers, userid, web-routes, web-routes-boomerang - , web-routes-happstack, web-routes-hsp, web-routes-th + , data-default, email-validate, filepath, happstack-hsp + , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs + , http-conduit, http-types, ixset-typed, jmacro, jwt, lens + , mime-mail, mtl, pwstore-purehaskell, random, safecopy + , shakespeare, text, time, unordered-containers, userid, web-routes + , web-routes-boomerang, web-routes-happstack, web-routes-hsp + , web-routes-th }: mkDerivation { pname = "happstack-authenticate"; - version = "2.2.0"; - sha256 = "7093ae69b6be698102f87df7851eafbdeb830f55467083aea06bd8b11adf5078"; + version = "2.3.0"; + sha256 = "d459a80c7c54a05e31a803f200233bb491350099e04f2fb27567735fe0dfe9c2"; libraryHaskellDepends = [ acid-state aeson authenticate base base64-bytestring boomerang - bytestring containers data-default filepath happstack-hsp - happstack-jmacro happstack-server hsp hsx-jmacro hsx2hs - http-conduit http-types ixset-typed jmacro jwt lens mime-mail mtl - pwstore-purehaskell random safecopy shakespeare text time - unordered-containers userid web-routes web-routes-boomerang + bytestring containers data-default email-validate filepath + happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro + hsx2hs http-conduit http-types ixset-typed jmacro jwt lens + mime-mail mtl pwstore-purehaskell random safecopy shakespeare text + time unordered-containers userid web-routes web-routes-boomerang web-routes-happstack web-routes-hsp web-routes-th ]; homepage = "http://www.happstack.com/"; @@ -81176,7 +81248,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-server" = callPackage + "happstack-server_7_4_4" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring , containers, directory, exceptions, extensible-exceptions , filepath, hslogger, html, HUnit, monad-control, mtl, network @@ -81203,6 +81275,36 @@ self: { homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "happstack-server" = callPackage + ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring + , containers, directory, exceptions, extensible-exceptions + , filepath, hslogger, html, HUnit, monad-control, mtl, network + , network-uri, old-locale, parsec, process, sendfile, syb + , system-filepath, template-haskell, text, threads, time + , time-compat, transformers, transformers-base, transformers-compat + , unix, utf8-string, xhtml, zlib + }: + mkDerivation { + pname = "happstack-server"; + version = "7.4.5"; + sha256 = "704a11b50604e57bd960633a73baa77fe23993f41b35202a0e26f4af2f91dc96"; + libraryHaskellDepends = [ + base base64-bytestring blaze-html bytestring containers directory + exceptions extensible-exceptions filepath hslogger html + monad-control mtl network network-uri old-locale parsec process + sendfile syb system-filepath template-haskell text threads time + time-compat transformers transformers-base transformers-compat unix + utf8-string xhtml zlib + ]; + testHaskellDepends = [ + base bytestring containers HUnit parsec zlib + ]; + homepage = "http://happstack.com"; + description = "Web related tools and services"; + license = stdenv.lib.licenses.bsd3; }) {}; "happstack-server-tls" = callPackage @@ -84234,8 +84336,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "haskore-vintage"; - version = "0.2"; - sha256 = "d618cd63ca221c980b61fde864e8a024bfefba0318984d92a270c3b1fbd1f8b6"; + version = "0.3"; + sha256 = "0bd49a041c73292d195897a1e8a73713669b09b1a73f3e29251f72223da708ab"; libraryHaskellDepends = [ base ]; homepage = "http://haskell.org/haskore/"; description = "The February 2000 version of Haskore"; @@ -85147,8 +85249,8 @@ self: { }: mkDerivation { pname = "hastily"; - version = "0.1.0.4"; - sha256 = "0cb4cb729d1c6a382a81c2667c0bd42ec6be3aaa90604e8de2067f5ec8a351fb"; + version = "0.1.0.6"; + sha256 = "d001119682dc0389bbac946793401209c7286a01d9b157fab638ac8fda78a72e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -96076,8 +96178,8 @@ self: { ({ mkDerivation, base, checkers, hspec }: mkDerivation { pname = "hspec-checkers"; - version = "0.1.0"; - sha256 = "cd4ceeed2d9b46f42d440914814162657264e541ad25232ae609b274e5fb7810"; + version = "0.1.0.1"; + sha256 = "9703ad134d1711b17301d760cebc36814c48a0e4e5712590514c93e6ec278dab"; libraryHaskellDepends = [ base checkers hspec ]; testHaskellDepends = [ base checkers hspec ]; description = "Allows to use checkers properties from hspec"; @@ -97191,6 +97293,7 @@ self: { libraryHaskellDepends = [ base exceptions hsqml-datamodel type-list vinyl ]; + jailbreak = true; homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; description = "HsQML DataModel instances for Vinyl Rec"; license = stdenv.lib.licenses.bsd3; @@ -98125,23 +98228,6 @@ self: { }) {}; "http-api-data" = callPackage - ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit - , QuickCheck, text, time - }: - mkDerivation { - pname = "http-api-data"; - version = "0.2"; - sha256 = "25b9127e356d15b7edea37068629f87523854a12f0ce4ac65a03ae391a4a6659"; - libraryHaskellDepends = [ base bytestring text time ]; - testHaskellDepends = [ - base doctest Glob hspec HUnit QuickCheck text time - ]; - homepage = "http://github.com/fizruk/http-api-data"; - description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "http-api-data_0_2_1" = callPackage ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit , QuickCheck, text, time }: @@ -98156,7 +98242,6 @@ self: { homepage = "http://github.com/fizruk/http-api-data"; description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-attoparsec" = callPackage @@ -108779,8 +108864,8 @@ self: { pname = "keter"; version = "1.3.7"; sha256 = "a0710bf072a8829f5e696a6cf760554b26006d520f311ae29a53bf46e96f98c3"; - revision = "2"; - editedCabalFile = "cefc8c00964e630396ca46f09d13a77fc4870db48e5526796817ca6d35aa3e49"; + revision = "3"; + editedCabalFile = "97b84a04bdbef02b95c502f4a4e27791dc3a6e10f40a4797cf267311be1c6875"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -108822,8 +108907,8 @@ self: { pname = "keter"; version = "1.3.7.1"; sha256 = "003ce327d5b8ce407df901b46a99a37109b2ce14d6f51e50212130ba5ed9843e"; - revision = "2"; - editedCabalFile = "a1c0a6f6e7ffa9cd6c5a1c2780fdb5ce14a95d3c5fe9fe96cfeccc3726e91e98"; + revision = "3"; + editedCabalFile = "a534637676d741ad4b3a5c0ba745df72206f16008e52ed037cc7de8cb4db2556"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -111272,15 +111357,15 @@ self: { }) {}; "language-lua2" = callPackage - ({ mkDerivation, base, containers, Earley, lexer-applicative - , microlens, optparse-applicative, QuickCheck, regex-applicative - , semigroups, srcloc, tasty, tasty-hunit, tasty-quickcheck - , transformers, unordered-containers, wl-pprint + ({ mkDerivation, base, containers, deepseq, Earley + , lexer-applicative, microlens, optparse-applicative, QuickCheck + , regex-applicative, semigroups, srcloc, tasty, tasty-hunit + , tasty-quickcheck, transformers, unordered-containers, wl-pprint }: mkDerivation { pname = "language-lua2"; - version = "0.1.0.3"; - sha256 = "f375d752b3100a5cf2afa3238ba6a3fac5311af3e937e3f988c569de319aa009"; + version = "0.1.0.4"; + sha256 = "3d5e92e4ec4b096cb44432fc7e2ee2620470c4912c3fd85e30b07a7b834c422b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -111292,9 +111377,10 @@ self: { base Earley lexer-applicative optparse-applicative srcloc wl-pprint ]; testHaskellDepends = [ - base lexer-applicative QuickCheck semigroups srcloc tasty + base deepseq lexer-applicative QuickCheck semigroups srcloc tasty tasty-hunit tasty-quickcheck unordered-containers ]; + doCheck = false; homepage = "http://github.com/mitchellwrosen/language-lua2"; description = "Lua parser and pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -118492,29 +118578,6 @@ self: { }) {}; "mandrill" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-html - , bytestring, containers, email-validate, http-client - , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck - , raw-strings-qq, tasty, tasty-hunit, tasty-quickcheck, text, time - }: - mkDerivation { - pname = "mandrill"; - version = "0.4.1.0"; - sha256 = "677f358e4ff991a41baff9e105a96d90849778dfa1ed12b316866e2df4cdb7e6"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-html bytestring containers - email-validate http-client http-client-tls http-types lens mtl - old-locale QuickCheck text time - ]; - testHaskellDepends = [ - aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit - tasty-quickcheck text - ]; - description = "Library for interfacing with the Mandrill JSON API"; - license = stdenv.lib.licenses.mit; - }) {}; - - "mandrill_0_5_0_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-html , bytestring, containers, email-validate, http-client , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck @@ -118536,7 +118599,6 @@ self: { ]; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mandulia" = callPackage @@ -122653,7 +122715,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-parallel" = callPackage + "monad-parallel_0_7_1_4" = callPackage ({ mkDerivation, base, parallel, transformers, transformers-compat }: mkDerivation { @@ -122666,6 +122728,22 @@ self: { homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; description = "Parallel execution of monadic computations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-parallel" = callPackage + ({ mkDerivation, base, parallel, transformers, transformers-compat + }: + mkDerivation { + pname = "monad-parallel"; + version = "0.7.2"; + sha256 = "fa410be89895b177dd092a30a324e12a026d59bc999070e0c1d4da91d747bee3"; + libraryHaskellDepends = [ + base parallel transformers transformers-compat + ]; + homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; + description = "Parallel execution of monadic computations"; + license = stdenv.lib.licenses.bsd3; }) {}; "monad-parallel-progressbar" = callPackage @@ -123520,7 +123598,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mono-traversable" = callPackage + "mono-traversable_0_9_3" = callPackage ({ mkDerivation, base, bytestring, comonad, containers, dlist , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck , semigroupoids, semigroups, split, text, transformers @@ -123542,6 +123620,31 @@ self: { homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mono-traversable" = callPackage + ({ mkDerivation, base, bytestring, comonad, containers, dlist + , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck + , semigroupoids, semigroups, split, text, transformers + , unordered-containers, vector, vector-algorithms, vector-instances + }: + mkDerivation { + pname = "mono-traversable"; + version = "0.10.0"; + sha256 = "5f71c909ed5b5b399fdceeb565b3eb3c19fbcdd771ca9a87595f863c35429fab"; + libraryHaskellDepends = [ + base bytestring comonad containers dlist dlist-instances hashable + semigroupoids semigroups split text transformers + unordered-containers vector vector-algorithms vector-instances + ]; + testHaskellDepends = [ + base bytestring containers foldl hspec HUnit QuickCheck semigroups + text transformers unordered-containers vector + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "Type classes for mapping, folding, and traversing monomorphic containers"; + license = stdenv.lib.licenses.mit; }) {}; "monoid-extras_0_3_3_5" = callPackage @@ -126500,8 +126603,8 @@ self: { }: mkDerivation { pname = "ncurses"; - version = "0.2.11"; - sha256 = "f3dbd238d44c4bf44ccb5364540300bc9a16b539822535f3cd5d9e1189105922"; + version = "0.2.12"; + sha256 = "fbafe7fcb6e829fa1c3a3827c9adc871e7784cd76448d0c75d99b92f81dc1165"; libraryHaskellDepends = [ base containers text transformers ]; librarySystemDepends = [ ncurses ]; libraryToolDepends = [ c2hs ]; @@ -129913,8 +130016,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "observable-sharing"; - version = "0.2.3"; - sha256 = "36438ff9a35a7d7ff0f73d5bc798e544584d1aa0efc07e7f0fb7a5513ed20432"; + version = "0.2.4"; + sha256 = "400efecddcfdd992717caccc3a7b00590e7635bf92305d7d93f81d47327811d3"; libraryHaskellDepends = [ base containers ]; homepage = "https://github.com/atzeus/observable-sharing"; description = "Simple observable sharing"; @@ -131878,8 +131981,8 @@ self: { }: mkDerivation { pname = "ot"; - version = "0.2.0.0"; - sha256 = "a3e917487a3aab56966fc3d676a3b8cf079acbd05b0ea0c887d6b90a18a6c46d"; + version = "0.2.1.0"; + sha256 = "56f1c888103c699b1025c1f23a7e3423a5b7cf93041af24d8fbd1eb9f08caa04"; libraryHaskellDepends = [ aeson attoparsec base binary either ghc mtl QuickCheck text ]; @@ -131887,7 +131990,6 @@ self: { aeson base binary HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; - jailbreak = true; homepage = "https://github.com/operational-transformation/ot.hs"; description = "Real-time collaborative editing with Operational Transformation"; license = stdenv.lib.licenses.mit; @@ -132037,8 +132139,8 @@ self: { }: mkDerivation { pname = "packer"; - version = "0.1.8"; - sha256 = "713d29b95f41aff8ed21dc59551c5caf3ac165c07d43d4e403cb1b161429f8e4"; + version = "0.1.9"; + sha256 = "d2926f876da4ef8e4590bbc501caf83b0703018971ad5413e9d6647667d681e4"; libraryHaskellDepends = [ base bytestring ghc-prim transformers ]; testHaskellDepends = [ base bytestring tasty tasty-hunit tasty-quickcheck @@ -132665,6 +132767,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pandoc-citeproc_0_8" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring + , containers, data-default, directory, filepath, hs-bibutils, mtl + , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 + , setenv, split, syb, tagsoup, temporary, text, time, vector + , xml-conduit, yaml + }: + mkDerivation { + pname = "pandoc-citeproc"; + version = "0.8"; + sha256 = "834ba89edc9d92dd2e9bf0f001a5ce3d5713b8a7b580232b6a088b5f7f6ddc5e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers data-default directory filepath + hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051 + setenv split syb tagsoup text time vector xml-conduit yaml + ]; + executableHaskellDepends = [ + aeson aeson-pretty attoparsec base bytestring containers directory + filepath pandoc pandoc-types process syb temporary text vector yaml + ]; + testHaskellDepends = [ + aeson base bytestring directory filepath pandoc pandoc-types + process temporary text yaml + ]; + description = "Supports using pandoc with citeproc"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pandoc-citeproc-preamble" = callPackage ({ mkDerivation, base, directory, filepath, pandoc-types, process }: @@ -135520,7 +135653,6 @@ self: { monad-control monad-logger mysql mysql-simple persistent resourcet text transformers ]; - doHaddock = false; homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using MySQL database server"; license = stdenv.lib.licenses.mit; @@ -136856,17 +136988,21 @@ self: { }) {}; "picologic" = callPackage - ({ mkDerivation, base, containers, mtl, parsec, picosat, pretty }: + ({ mkDerivation, base, containers, mtl, parsec, picosat, pretty + , QuickCheck + }: mkDerivation { pname = "picologic"; - version = "0.1.1"; - sha256 = "40b8f3a30f200f956d967c4bfa8063cbaf9a9e1963c246cffcc79e8e5da29193"; + version = "0.1.2"; + sha256 = "449f6ead23c54d1751d66437a06950a5b2a478348c53e6b927ec9a2bb9e9e40f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers mtl parsec picosat pretty ]; - jailbreak = true; + testHaskellDepends = [ + base containers mtl picosat pretty QuickCheck + ]; homepage = "https://github.com/sdiehl/picologic"; description = "Utilities for symbolic predicate logic expressions"; license = stdenv.lib.licenses.mit; @@ -146349,8 +146485,8 @@ self: { }: mkDerivation { pname = "reflex-transformers"; - version = "0.1"; - sha256 = "b7871b9e833eadfa04832cf978bfbb762c3f02cab68a8876eeb8b45af2fd219e"; + version = "0.2"; + sha256 = "81ab5c2fd634285c6c3044310ec37082e2d2350a8857f29c3c615198593b8430"; libraryHaskellDepends = [ base containers lens mtl reflex semigroups stateWriter transformers ]; @@ -149154,21 +149290,6 @@ self: { }) {}; "rest-happstack" = callPackage - ({ mkDerivation, base, containers, happstack-server, mtl, rest-core - , rest-gen, utf8-string - }: - mkDerivation { - pname = "rest-happstack"; - version = "0.3"; - sha256 = "494b9ae9e126e03e45d0fd61cbd77c4160ad3493448fcfbfcb1e2d0d8e9bc766"; - libraryHaskellDepends = [ - base containers happstack-server mtl rest-core rest-gen utf8-string - ]; - description = "Rest driver for Happstack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "rest-happstack_0_3_1" = callPackage ({ mkDerivation, base, containers, happstack-server, mtl, rest-core , rest-gen, utf8-string }: @@ -149181,7 +149302,6 @@ self: { ]; description = "Rest driver for Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-snap_0_1_17_14" = callPackage @@ -154739,7 +154859,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant" = callPackage + "servant_0_4_4_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-media, http-types, network-uri @@ -154763,6 +154883,33 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-media, http-types, network-uri + , parsec, QuickCheck, quickcheck-instances, string-conversions + , text, url + }: + mkDerivation { + pname = "servant"; + version = "0.4.4.5"; + sha256 = "b82abafe5bd1357c64c36c344ab38dc8fa8ad8f40126b86323da9bfc4047f544"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring bytestring-conversion + case-insensitive http-media http-types network-uri + string-conversions text + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring directory doctest filemanip + filepath hspec parsec QuickCheck quickcheck-instances + string-conversions text url + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-JuicyPixels_0_1_0_0" = callPackage @@ -154812,8 +154959,8 @@ self: { ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; - version = "0.4.4.4"; - sha256 = "58e3d5922b9031559aebc7ae99e52712d6a208cb2c0164da5baffb4cd55cafa1"; + version = "0.4.4.5"; + sha256 = "b2ac467c4cc6e3e439436616f9132818e1023ea048e918d87f133342705bc991"; libraryHaskellDepends = [ base blaze-html http-media servant ]; homepage = "http://haskell-servant.github.io/"; description = "Blaze-html support for servant"; @@ -154900,7 +155047,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-client" = callPackage + "servant-client_0_4_4_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq , either, exceptions, hspec, http-client, http-client-tls , http-media, http-types, HUnit, network, network-uri, QuickCheck @@ -154924,6 +155071,33 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-client" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq + , either, exceptions, hspec, http-client, http-client-tls + , http-media, http-types, HUnit, network, network-uri, QuickCheck + , safe, servant, servant-server, string-conversions, text + , transformers, wai, warp + }: + mkDerivation { + pname = "servant-client"; + version = "0.4.4.5"; + sha256 = "7ca47d0bb95268222fe19d34b31acf501ea89d7a9a4ce77a3ebc0cd18386b953"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring either exceptions http-client + http-client-tls http-media http-types network-uri safe servant + string-conversions text transformers + ]; + testHaskellDepends = [ + aeson base bytestring deepseq either hspec http-client http-media + http-types HUnit network QuickCheck servant servant-server text wai + warp + ]; + homepage = "http://haskell-servant.github.io/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-docs_0_3_1" = callPackage @@ -155007,7 +155181,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-docs" = callPackage + "servant-docs_0_4_4_4" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , case-insensitive, hashable, hspec, http-media, http-types, lens , servant, string-conversions, text, unordered-containers @@ -155033,6 +155207,35 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-docs" = callPackage + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion + , case-insensitive, hashable, hspec, http-media, http-types, lens + , servant, string-conversions, text, unordered-containers + }: + mkDerivation { + pname = "servant-docs"; + version = "0.4.4.5"; + sha256 = "55f4c036cc96aebac19eeea43af412f696002a8e3497a95ff4aa25429c7c474e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring bytestring-conversion case-insensitive hashable + http-media http-types lens servant string-conversions text + unordered-containers + ]; + executableHaskellDepends = [ + aeson base bytestring-conversion lens servant string-conversions + text + ]; + testHaskellDepends = [ + aeson base hspec lens servant string-conversions + ]; + homepage = "http://haskell-servant.github.io/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-ede" = callPackage @@ -155067,8 +155270,8 @@ self: { }: mkDerivation { pname = "servant-examples"; - version = "0.4.4.4"; - sha256 = "e180ff93d58ebb467097b337e00f77b42e9780880627ab52a2b8d69363fc7de4"; + version = "0.4.4.5"; + sha256 = "51a0f8953c3eeed16c6745286d858338f657d000af9ad2f6a7a7531688426425"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -155153,7 +155356,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-jquery" = callPackage + "servant-jquery_0_4_4_4" = callPackage ({ mkDerivation, aeson, base, charset, filepath, hspec , hspec-expectations, language-ecmascript, lens, servant , servant-server, stm, text, transformers, warp @@ -155174,14 +155377,38 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-jquery" = callPackage + ({ mkDerivation, aeson, base, charset, filepath, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-server, stm, text, transformers, warp + }: + mkDerivation { + pname = "servant-jquery"; + version = "0.4.4.5"; + sha256 = "33059d2a707bfad6fcd3f92cdaac69da9767dce1f2e11f7c4c9b2ad9df1d1b3c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base charset lens servant text ]; + executableHaskellDepends = [ + aeson base filepath servant servant-server stm transformers warp + ]; + testHaskellDepends = [ + base hspec hspec-expectations language-ecmascript lens servant + ]; + homepage = "http://haskell-servant.github.io/"; + description = "Automatically derive (jquery) javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-lucid" = callPackage ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; - version = "0.4.4.4"; - sha256 = "c42702b20da1f8daea4c2a633e777214e524a2afac96c0b559209351f1f1cd0d"; + version = "0.4.4.5"; + sha256 = "85c922b88dbf4c7c0e8447e326938ab1f3f8dd60400f1b23a0d63109e6159913"; libraryHaskellDepends = [ base http-media lucid servant ]; homepage = "http://haskell-servant.github.io/"; description = "Servant support for lucid"; @@ -155194,8 +155421,8 @@ self: { }: mkDerivation { pname = "servant-mock"; - version = "0.4.4.4"; - sha256 = "1df192ac10aea342cffd5da509f9c5eca40b659fa3c7b77aad87ec0bbb82f35c"; + version = "0.4.4.5"; + sha256 = "3b1cb43127ceb10979fa056c847e588d030293ee8842e13d1c18458b886d7ed6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155426,7 +155653,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-server" = callPackage + "servant-server_0_4_4_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, directory, doctest, either, exceptions , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl @@ -155455,6 +155682,38 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-server" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , bytestring-conversion, directory, doctest, either, exceptions + , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl + , network, network-uri, parsec, QuickCheck, safe, servant, split + , string-conversions, system-filepath, temporary, text + , transformers, wai, wai-app-static, wai-extra, warp + }: + mkDerivation { + pname = "servant-server"; + version = "0.4.4.5"; + sha256 = "30d9668ff406911356a0ebcba7591924c5bb5c55a228e5682e394a66ee593a58"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring either filepath http-types mmorph + mtl network-uri safe servant split string-conversions + system-filepath text transformers wai wai-app-static warp + ]; + executableHaskellDepends = [ aeson base servant text wai warp ]; + testHaskellDepends = [ + aeson base bytestring bytestring-conversion directory doctest + either exceptions filemanip filepath hspec hspec-wai http-types mtl + network parsec QuickCheck servant string-conversions temporary text + transformers wai wai-extra warp + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; }) {}; "serversession" = callPackage @@ -173065,8 +173324,8 @@ self: { }: mkDerivation { pname = "threads-supervisor"; - version = "1.0.3.0"; - sha256 = "b64e2b63d65808de4a64a1157ebacb831efc549fdbd38a97012f48ecb3a437c6"; + version = "1.0.4.0"; + sha256 = "6d48e9007275c6ff3ce01c35f89a106110878e65c67c654f3432c3c3d6b9e02f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -173802,6 +174061,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "timeless" = callPackage + ({ mkDerivation, base, time, transformers }: + mkDerivation { + pname = "timeless"; + version = "0.8.0.2"; + sha256 = "bb32b4ed361bbb17d2d86d19958513a0231d9789c615a52975cedb7efba99ad7"; + libraryHaskellDepends = [ base time transformers ]; + homepage = "https://github.com/carldong/timeless"; + description = "An Arrow based Functional Reactive Programming library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "timeout" = callPackage ({ mkDerivation, base, exceptions, mtl, QuickCheck, tasty , tasty-quickcheck, time @@ -175745,8 +176016,8 @@ self: { ({ mkDerivation, base, containers, template-haskell, time }: mkDerivation { pname = "true-name"; - version = "0.0.0.1"; - sha256 = "f5b57148ebab8d1f72001d795d44720aa3ee2d4c7f12e63f48fc38884004e7e2"; + version = "0.0.0.2"; + sha256 = "55e3785f6072bd0b5ed030ae3894bb92c5684681217833ddc4f112b0d32f9c3e"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base containers template-haskell time ]; homepage = "https://github.com/liyang/true-name"; @@ -176677,6 +176948,7 @@ self: { template-haskell text time transformers transformers-base twitter-types twitter-types-lens ]; + doCheck = false; homepage = "https://github.com/himura/twitter-conduit"; description = "Twitter API package with conduit interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; @@ -176786,6 +177058,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th-prime text time unordered-containers ]; + doCheck = false; homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; @@ -177194,7 +177467,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "type-list" = callPackage + "type-list_0_2_0_0" = callPackage ({ mkDerivation, base, singletons }: mkDerivation { pname = "type-list"; @@ -177203,6 +177476,18 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Operations on type-level lists and tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "type-list" = callPackage + ({ mkDerivation, base, singletons }: + mkDerivation { + pname = "type-list"; + version = "0.3.0.2"; + sha256 = "80e7f52a5fb88880be9a166fbe664bda7e9f94d64d70c877471c833567722aee"; + libraryHaskellDepends = [ base singletons ]; + description = "Operations on type-level lists and tuples"; + license = stdenv.lib.licenses.bsd3; }) {}; "type-natural" = callPackage @@ -177753,10 +178038,8 @@ self: { }: mkDerivation { pname = "uhc-light"; - version = "1.1.9.0"; - sha256 = "72d6c7c3a8b94b315c6346684e9ba2e97215ebf6e49d97bbc3852e4b0a000b37"; - revision = "1"; - editedCabalFile = "8847b4a41a2f6c9be09cf7b4835f53219522da9ef0ca26b918159fec747bd938"; + version = "1.1.9.1"; + sha256 = "9192b3ce50cf5f796799490b8f22b6ee20a3310e7e2216e09dc9706765e0cc61"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -177776,16 +178059,16 @@ self: { "uhc-util" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers - , directory, fclabels, fgl, hashable, ListLike, mtl, process, syb - , time, time-compat, uulib + , directory, fclabels, fgl, hashable, mtl, process, syb, time + , time-compat, uulib }: mkDerivation { pname = "uhc-util"; - version = "0.1.6.0"; - sha256 = "128641dd69d7adb85095988132914ac5d14140ef063e28cee5102997d1acb6d9"; + version = "0.1.6.2"; + sha256 = "f559daf2f339b4d3ab2194895c19a10a304c68970b10c1e6571b52734f4bd19a"; libraryHaskellDepends = [ array base binary bytestring containers directory fclabels fgl - hashable ListLike mtl process syb time time-compat uulib + hashable mtl process syb time time-compat uulib ]; homepage = "https://github.com/UU-ComputerScience/uhc-util"; description = "UHC utilities"; @@ -178845,7 +179128,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unix-time" = callPackage + "unix-time_0_3_5" = callPackage ({ mkDerivation, base, binary, bytestring, doctest, hspec , old-locale, old-time, QuickCheck, time }: @@ -178860,6 +179143,24 @@ self: { doCheck = false; description = "Unix time parser/formatter and utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "unix-time" = callPackage + ({ mkDerivation, base, binary, bytestring, doctest, hspec + , old-locale, old-time, QuickCheck, time + }: + mkDerivation { + pname = "unix-time"; + version = "0.3.6"; + sha256 = "5d15ebd0ee74e13638a7c04a7fc5f05a29ccd3228c8798df226939a778f7db37"; + libraryHaskellDepends = [ base binary bytestring old-time ]; + testHaskellDepends = [ + base bytestring doctest hspec old-locale old-time QuickCheck time + ]; + doCheck = false; + description = "Unix time parser/formatter and utilities"; + license = stdenv.lib.licenses.bsd3; }) {}; "unlambda" = callPackage @@ -181626,12 +181927,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-th-unbox" = callPackage + "vector-th-unbox_0_2_1_2" = callPackage ({ mkDerivation, base, data-default, template-haskell, vector }: mkDerivation { pname = "vector-th-unbox"; version = "0.2.1.2"; sha256 = "0df696462d424bab569cc7a8ba1b1d0057bc5a71c510567fe5bcd1a940ae4d05"; + revision = "1"; + editedCabalFile = "bddeef74d6aab09ec3f1b5c9781f96b4a92f6f1234836cbaff78a493e73ca1fa"; + libraryHaskellDepends = [ base template-haskell vector ]; + testHaskellDepends = [ base data-default vector ]; + description = "Deriver for Data.Vector.Unboxed using Template Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "vector-th-unbox" = callPackage + ({ mkDerivation, base, data-default, template-haskell, vector }: + mkDerivation { + pname = "vector-th-unbox"; + version = "0.2.1.3"; + sha256 = "33db750d3d867f23d0406a7165952b030831ed610b06ef777cfae8439b382689"; libraryHaskellDepends = [ base template-haskell vector ]; testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; @@ -182280,8 +182596,8 @@ self: { }: mkDerivation { pname = "waddle"; - version = "0.1.0.5"; - sha256 = "9b2101391babec27362f11bea8775d2b778766cbc24184cb82e7e3154086986c"; + version = "0.1.0.6"; + sha256 = "48782ba072e71678cb7d01043f8c10981ea7e7e5a123f0d8fb7a482f75c4ca15"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -182292,7 +182608,6 @@ self: { base binary bytestring case-insensitive containers directory JuicyPixels ]; - jailbreak = true; homepage = "https://github.com/mgrabmueller/waddle"; description = "DOOM WAD file utilities"; license = stdenv.lib.licenses.bsd3; @@ -185222,8 +185537,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.1.4"; - sha256 = "6e7e96dd49f0d0635e3453dbe3a074db3ab8ce69ce48b9da7701f211198029b9"; + version = "3.1.6"; + sha256 = "34ce9ad59002bee92224b25bc64bec7d86576b41900cde305af419f304ad4093"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring bytestring-builder case-insensitive containers ghc-prim hashable http-date http-types @@ -185663,15 +185978,16 @@ self: { "wavefront" = callPackage ({ mkDerivation, attoparsec, base, dlist, filepath, mtl, text - , transformers + , transformers, vector }: mkDerivation { pname = "wavefront"; - version = "0.2"; - sha256 = "5f9130cb8fa4ecb1b4f6313aa24c8e7c595c15cce72fa9a2e0f009dd6cb9503c"; + version = "0.3"; + sha256 = "65443f1ca1ceb6418e3740c085bd8f6f85c6ca2033deeafd7c7e4f418043e3a2"; libraryHaskellDepends = [ - attoparsec base dlist filepath mtl text transformers + attoparsec base dlist filepath mtl text transformers vector ]; + jailbreak = true; homepage = "https://github.com/phaazon/wavefront"; description = "Wavefront OBJ loader"; license = stdenv.lib.licenses.bsd3; @@ -186268,26 +186584,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "webdriver_0_7" = callPackage + "webdriver_0_8" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, cond, data-default, directory, directory-tree + , bytestring, cond, data-default-class, directory, directory-tree , exceptions, filepath, http-client, http-types, lifted-base - , monad-control, mtl, network, network-uri, parallel, scientific - , temporary, text, time, transformers, transformers-base - , unordered-containers, vector, zip-archive + , monad-control, network, network-uri, scientific, temporary, text + , time, transformers, transformers-base, unordered-containers + , vector, zip-archive }: mkDerivation { pname = "webdriver"; - version = "0.7"; - sha256 = "3e26d74d378318d58fd8080d2e18394e953821801ee6ce8394e6321c7bdb6b6f"; + version = "0.8"; + sha256 = "357b6d21d9c3e322a7d85868e40464505d30fce3d3e3fd318c1742247cc431aa"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring bytestring cond - data-default directory directory-tree exceptions filepath - http-client http-types lifted-base monad-control mtl network + data-default-class directory directory-tree exceptions filepath + http-client http-types lifted-base monad-control network network-uri scientific temporary text time transformers transformers-base unordered-containers vector zip-archive ]; - testHaskellDepends = [ base parallel text ]; + testHaskellDepends = [ base text ]; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; license = stdenv.lib.licenses.bsd3; @@ -186686,7 +187002,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "websockets" = callPackage + "websockets_0_9_6_0" = callPackage ({ mkDerivation, attoparsec, base, base64-bytestring, binary , blaze-builder, bytestring, case-insensitive, containers, entropy , HUnit, network, QuickCheck, random, SHA, test-framework @@ -186716,6 +187032,39 @@ self: { homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "websockets" = callPackage + ({ mkDerivation, attoparsec, base, base64-bytestring, binary + , blaze-builder, bytestring, case-insensitive, containers, entropy + , HUnit, network, QuickCheck, random, SHA, test-framework + , test-framework-hunit, test-framework-quickcheck2, text + }: + mkDerivation { + pname = "websockets"; + version = "0.9.6.1"; + sha256 = "3c75cb59585710862c57277c8be718903ba727452d5f662288abb8b59eb57cd4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy network random SHA text + ]; + executableHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy network random SHA text + ]; + testHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy HUnit network QuickCheck random + SHA test-framework test-framework-hunit test-framework-quickcheck2 + text + ]; + doCheck = false; + homepage = "http://jaspervdj.be/websockets"; + description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "websockets-snap" = callPackage @@ -187120,6 +187469,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "witherable_0_1_3_1" = callPackage + ({ mkDerivation, base, base-orphans, containers, hashable + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "witherable"; + version = "0.1.3.1"; + sha256 = "4b11917e2d562ce725394d994600ef59c7d1928dccbffe44a5bdf6de62af2fd0"; + libraryHaskellDepends = [ + base base-orphans containers hashable transformers + unordered-containers vector + ]; + homepage = "https://github.com/fumieval/witherable"; + description = "Generalization of filter and catMaybes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "witness" = callPackage ({ mkDerivation, base, categories, constraints, transformers }: mkDerivation { @@ -191989,7 +192356,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth" = callPackage + "yesod-auth_1_4_7" = callPackage ({ mkDerivation, aeson, authenticate, base, base16-bytestring , base64-bytestring, binary, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, conduit, conduit-extra @@ -192016,6 +192383,36 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth" = callPackage + ({ mkDerivation, aeson, authenticate, base, base16-bytestring + , base64-bytestring, binary, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, conduit, conduit-extra + , containers, cryptohash, data-default, email-validate, file-embed + , http-client, http-conduit, http-types, lifted-base, mime-mail + , network-uri, nonce, persistent, persistent-template, random + , resourcet, safe, shakespeare, template-haskell, text, time + , transformers, unordered-containers, wai, yesod-core, yesod-form + , yesod-persistent + }: + mkDerivation { + pname = "yesod-auth"; + version = "1.4.8"; + sha256 = "65a16bb6fb9601be88ec9af99577800041b455eaa5d0b2f645c618c306587cb2"; + libraryHaskellDepends = [ + aeson authenticate base base16-bytestring base64-bytestring binary + blaze-builder blaze-html blaze-markup byteable bytestring conduit + conduit-extra containers cryptohash data-default email-validate + file-embed http-client http-conduit http-types lifted-base + mime-mail network-uri nonce persistent persistent-template random + resourcet safe shakespeare template-haskell text time transformers + unordered-containers wai yesod-core yesod-form yesod-persistent + ]; + homepage = "http://www.yesodweb.com/"; + description = "Authentication for Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-auth-account" = callPackage diff --git a/pkgs/development/libraries/cppzmq/default.nix b/pkgs/development/libraries/cppzmq/default.nix index 282ad7bfcd7..f74ee51cab2 100644 --- a/pkgs/development/libraries/cppzmq/default.nix +++ b/pkgs/development/libraries/cppzmq/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchgit }: stdenv.mkDerivation rec { - name = "cppzmq-2015-07-06"; + name = "cppzmq-20150926"; src = fetchgit { url = "https://github.com/zeromq/cppzmq"; - rev = "a88bf3e0b0bc6ed5f5b25a58f8997a1dae374c8b"; - sha256 = "75a6630b870c1f0d5b9d6a0ba03e83ceee47aaa2a253894e75a8a93a6d65d3aa"; + rev = "fa2f2c67a79c31d73bfef6862cc8ce12a98dd022"; + sha256 = "7b46712b5fa7e59cd0ffae190674046c71d5762c064003c125d6cd7a3da19b71"; }; installPhase = '' diff --git a/pkgs/development/libraries/folly/default.nix b/pkgs/development/libraries/folly/default.nix index 4659ba21123..046b7f97ba4 100644 --- a/pkgs/development/libraries/folly/default.nix +++ b/pkgs/development/libraries/folly/default.nix @@ -1,21 +1,29 @@ -{ stdenv, fetchFromGitHub, autoreconfHook, boost, libevent, double_conversion, glog +{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, boost, libevent, double_conversion, glog , google-gflags, python, libiberty, openssl }: stdenv.mkDerivation rec { - version = "2015-09-17"; + version = "0.57.0"; name = "folly-${version}"; src = fetchFromGitHub { owner = "facebook"; repo = "folly"; - rev = "e4527fb5d04f5fec823bd6a2402b620a6e1a64e3"; - sha256 = "0iicq19yylafr7qs221xgk8pcwf6nnyx6srgsx9y9cyf72siadcb"; + rev = "v${version}"; + sha256 = "12b9bkwmndfwmsknc209kpplxn9wqmwr3p2h0l2szrppq4qqyfq9"; }; + patches = [ + # Fix compatibility with Boost 1.59 + (fetchpatch { + url = "https://github.com/facebook/folly/commit/29193aca605bb93d82a3c92acd95bb342115f3a4.patch"; + sha256 = "1ixpgq1wjr3i7madx4faw72n17ilc9cr435k5w1x95jr954m9j7b"; + }) + ]; + nativeBuildInputs = [ autoreconfHook python ]; buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ]; - postUnpack = "sourceRoot=\${sourceRoot}/folly"; + postPatch = "cd folly"; preBuild = '' patchShebangs build ''; diff --git a/pkgs/development/libraries/libbluray/default.nix b/pkgs/development/libraries/libbluray/default.nix index d8571254967..77fa6dec43e 100644 --- a/pkgs/development/libraries/libbluray/default.nix +++ b/pkgs/development/libraries/libbluray/default.nix @@ -19,12 +19,12 @@ assert withFonts -> freetype != null; stdenv.mkDerivation rec { baseName = "libbluray"; - version = "0.8.1"; + version = "0.9.0"; name = "${baseName}-${version}"; src = fetchurl { url = "ftp://ftp.videolan.org/pub/videolan/${baseName}/${version}/${name}.tar.bz2"; - sha256 = "13zvkrwy2fr877gkifgwnqfsb3krbz7hklfcwqfjbhmvqn0cdgnd"; + sha256 = "0kb9znxk6610vi0fjhqxn4z5i98nvxlsz1f8dakj99rg42livdl4"; }; nativeBuildInputs = [ pkgconfig autoreconfHook ] diff --git a/pkgs/development/libraries/libmicrohttpd/default.nix b/pkgs/development/libraries/libmicrohttpd/default.nix index fb6ba1761b5..3ef4ba77c31 100644 --- a/pkgs/development/libraries/libmicrohttpd/default.nix +++ b/pkgs/development/libraries/libmicrohttpd/default.nix @@ -1,13 +1,15 @@ { lib, stdenv, fetchurl, libgcrypt }: stdenv.mkDerivation rec { - name = "libmicrohttpd-0.9.43"; + name = "libmicrohttpd-0.9.44"; src = fetchurl { url = "mirror://gnu/libmicrohttpd/${name}.tar.gz"; - sha256 = "17q6v5q0jpg57vylby6rx1qkil72bdx8gij1g9m694gxf5sb6js1"; + sha256 = "07j1p21rvbrrfpxngk8xswzkmjkh94bp1971xfjh1p0ja709qwzj"; }; + outputs = [ "out" "info" ]; + buildInputs = [ libgcrypt ]; preCheck = diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 25bd92add38..ebdce2bfc48 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -5,10 +5,10 @@ let version = "${libVersion}-list-${listVersion}"; - listVersion = "2015-09-25"; + listVersion = "2015-10-11"; listSources = fetchFromGitHub { - sha256 = "045snl0pz8ma5rk51xxbjcamm28hi4z2v7gd8zkkv8yrjyg9yp82"; - rev = "509db00ef21795e58bfc2c576cebf72c8ee7a6f9"; + sha256 = "1zvfywi43kyh7b6hsm8ldmdypk9n36jzp0s1lf2rzd4yzcyxwgzy"; + rev = "8952c0c398ba44d507a8ed430fd1cff7b92dfde8"; repo = "list"; owner = "publicsuffix"; }; diff --git a/pkgs/development/libraries/libtermkey/default.nix b/pkgs/development/libraries/libtermkey/default.nix index c59542fdfed..bbc7c9a6094 100644 --- a/pkgs/development/libraries/libtermkey/default.nix +++ b/pkgs/development/libraries/libtermkey/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "libtermkey-${version}"; - version = "0.17"; + version = "0.18"; src = fetchzip { url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-${version}.tar.gz"; - sha256 = "085mdshgqsn76gfnnzfns7awv6lals9mgv5a6bybd9f9aj7lvrm5"; + sha256 = "0a0ih1a114phzmyq6jzgbp03x97463fwvrp1cgnl26awqw3f8sbf"; }; makeFlags = [ "PREFIX=$(out)" ] diff --git a/pkgs/development/libraries/science/math/ipopt/default.nix b/pkgs/development/libraries/science/math/ipopt/default.nix index 89d2a242f96..f9897e4add3 100644 --- a/pkgs/development/libraries/science/math/ipopt/default.nix +++ b/pkgs/development/libraries/science/math/ipopt/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, unzip, openblas, gfortran }: stdenv.mkDerivation rec { - version = "3.12.3"; + version = "3.12.4"; name = "ipopt-${version}"; src = fetchurl { url = "http://www.coin-or.org/download/source/Ipopt/Ipopt-${version}.zip"; - sha256 = "0h8qx3hq2m21qrg4v3n26v2qbhl6saxrpa7rbhnmkkcfj5s942yr"; + sha256 = "0hxmpi3zx5zgv2ijscdvc40xf88hx5if0d9sgch155z70g15wx0l"; }; preConfigure = '' diff --git a/pkgs/development/mobile/androidenv/androidsdk.nix b/pkgs/development/mobile/androidenv/androidsdk.nix index bc994603ab4..055c307f2cc 100644 --- a/pkgs/development/mobile/androidenv/androidsdk.nix +++ b/pkgs/development/mobile/androidenv/androidsdk.nix @@ -53,12 +53,21 @@ stdenv.mkDerivation rec { done ''} - # The android script used SWT and wants to dynamically load some GTK+ stuff. - # The following wrapper ensures that they can be found: + # The following scripts used SWT and wants to dynamically load some GTK+ stuff. + # Creating these wrappers ensure that they can be found: + wrapProgram `pwd`/android \ --prefix PATH : ${jdk}/bin \ --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib + wrapProgram `pwd`/uiautomatorviewer \ + --prefix PATH : ${jdk}/bin \ + --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib + + wrapProgram `pwd`/hierarchyviewer \ + --prefix PATH : ${jdk}/bin \ + --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib + # The emulators need additional libraries, which are dynamically loaded => let's wrap them for i in emulator emulator-arm emulator-mips emulator-x86 diff --git a/pkgs/development/mobile/androidenv/build-tools.nix b/pkgs/development/mobile/androidenv/build-tools.nix index a73eae3f50c..1b49c8f6fc4 100644 --- a/pkgs/development/mobile/androidenv/build-tools.nix +++ b/pkgs/development/mobile/androidenv/build-tools.nix @@ -1,4 +1,4 @@ -{stdenv, stdenv_32bit, fetchurl, unzip, zlib_32bit}: +{stdenv, stdenv_32bit, fetchurl, unzip, zlib_32bit, ncurses_32bit}: stdenv.mkDerivation rec { version = "23.0.1"; @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { cd android-* # Patch the interpreter - for i in aapt aidl dexdump llvm-rs-cc + for i in aapt aidl bcc_compat dexdump llvm-rs-cc do patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i done @@ -36,13 +36,22 @@ stdenv.mkDerivation rec { done # These binaries need to find libstdc++, libgcc_s and libraries in the current folder - for i in lib/libbcc.so lib/libbcinfo.so lib/libclang.so llvm-rs-cc + for i in lib/libbcc.so lib/libbcinfo.so lib/libclang.so aidl do patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i done + + # Create link to make libtinfo.so.5 work + ln -s ${ncurses_32bit}/lib/libncurses.so.5 `pwd`/lib/libtinfo.so.5 + + # These binaries need to find libstdc++, libgcc_s, ncurses, and libraries in the current folder + for i in bcc_compat llvm-rs-cc + do + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${ncurses_32bit}/lib:`pwd`/lib $i + done # These binaries also need zlib in addition to libstdc++ - for i in zipalign + for i in arm-linux-androideabi-ld i686-linux-android-ld mipsel-linux-android-ld split-select zipalign do patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i diff --git a/pkgs/development/mobile/androidenv/default.nix b/pkgs/development/mobile/androidenv/default.nix index ed8e838722c..86d82abbea4 100644 --- a/pkgs/development/mobile/androidenv/default.nix +++ b/pkgs/development/mobile/androidenv/default.nix @@ -4,12 +4,14 @@ rec { platformTools = import ./platform-tools.nix { inherit (pkgs) stdenv fetchurl unzip; stdenv_32bit = pkgs_i686.stdenv; + zlib_32bit = pkgs_i686.zlib; }; buildTools = import ./build-tools.nix { inherit (pkgs) stdenv fetchurl unzip; stdenv_32bit = pkgs_i686.stdenv; zlib_32bit = pkgs_i686.zlib; + ncurses_32bit = pkgs_i686.ncurses; }; support = import ./support.nix { diff --git a/pkgs/development/mobile/androidenv/platform-tools.nix b/pkgs/development/mobile/androidenv/platform-tools.nix index d217d57643d..1243ba429a3 100644 --- a/pkgs/development/mobile/androidenv/platform-tools.nix +++ b/pkgs/development/mobile/androidenv/platform-tools.nix @@ -1,4 +1,4 @@ -{stdenv, stdenv_32bit, fetchurl, unzip}: +{stdenv, stdenv_32bit, zlib_32bit, fetchurl, unzip}: stdenv.mkDerivation rec { version = "23.0.1"; @@ -22,10 +22,16 @@ stdenv.mkDerivation rec { ${stdenv.lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") '' - for i in adb fastboot + for i in adb dmtracedump fastboot hprof-conv sqlite3 do patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i + done + + for i in etc1tool + do + patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i done ''} diff --git a/pkgs/development/ocaml-modules/cmdliner/default.nix b/pkgs/development/ocaml-modules/cmdliner/default.nix index e90e7c4571c..ba955061740 100644 --- a/pkgs/development/ocaml-modules/cmdliner/default.nix +++ b/pkgs/development/ocaml-modules/cmdliner/default.nix @@ -2,11 +2,11 @@ let pname = "cmdliner"; - version = "0.9.7"; + version = "0.9.8"; ocaml_version = (builtins.parseDrvName ocaml.name).version; in -assert stdenv.lib.versionAtLeast ocaml_version "4.00"; +assert stdenv.lib.versionAtLeast ocaml_version "3.12"; stdenv.mkDerivation { @@ -14,7 +14,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz"; - sha256 = "0ymzy1l6z85b6779lfxk179igfpf7rgfik70kr3c7lxmzwy8j6cw"; + sha256 = "0hdxlkgiwjml9dpaa80282a8350if7mc1m6yz2mrd7gci3fszykx"; }; unpackCmd = "tar xjf $src"; diff --git a/pkgs/development/ocaml-modules/eliom/default.nix b/pkgs/development/ocaml-modules/eliom/default.nix index 7fe26863b3d..23959306d2d 100644 --- a/pkgs/development/ocaml-modules/eliom/default.nix +++ b/pkgs/development/ocaml-modules/eliom/default.nix @@ -3,6 +3,8 @@ ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp, reactivedata, opam}: +assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4"; + stdenv.mkDerivation rec { pname = "eliom"; diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index ee18d297d43..c68874cf231 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "1.631"; + version = "1.633"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "0bfh5gv3yk9awkzf660jxf9vzzdcr6qa9hl0hkivaj4gmp5f9sp8"; + sha256 = "1s5jihq9shscsdazb1c393qab0djms4by5zn3ciylcgvif431n8m"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; diff --git a/pkgs/development/tools/heroku/default.nix b/pkgs/development/tools/heroku/default.nix index df5f6454f6d..f41ad639e45 100644 --- a/pkgs/development/tools/heroku/default.nix +++ b/pkgs/development/tools/heroku/default.nix @@ -2,7 +2,7 @@ with stdenv.lib; stdenv.mkDerivation rec { - version = "3.32.0"; + version = "3.42.20"; name = "heroku-${version}"; meta = { @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://s3.amazonaws.com/assets.heroku.com/heroku-client/heroku-client-${version}.tgz"; - sha256 = "1596zmnlwshx15xiccfskm71syrlm87jf40y2x0y7wn0vfcyis5s"; + sha256 = "1d472vm37lx5nyyaymjglavisb1mkyzbjglzjp5im7wjfifvsd29"; }; installPhase = '' diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff b/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff index e6fc96038ff..0e3f55df6d2 100644 --- a/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff +++ b/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff @@ -8,3 +8,14 @@ #### +--- old/Makefile 2014-09-30 16:40:37.000000000 +0200 ++++ new/Makefile 2015-10-14 10:28:41.366815864 +0200 +@@ -52,7 +52,7 @@ + install-bin: + install -d -m 755 $(BINDIR) + install $(BIN) $(BINDIR) +- install $(TOOLS) $(BINDIR) ++ install $(TOOLS) $(BINDIR) || true + + uninstall: uninstall-lib uninstall-bin + diff --git a/pkgs/development/tools/ocaml/ocp-indent/default.nix b/pkgs/development/tools/ocaml/ocp-indent/default.nix index 9ad2976adbf..224ce57808f 100644 --- a/pkgs/development/tools/ocaml/ocp-indent/default.nix +++ b/pkgs/development/tools/ocaml/ocp-indent/default.nix @@ -1,23 +1,25 @@ -{ stdenv, fetchurl, ocaml, findlib, ocpBuild, opam, cmdliner }: +{ stdenv, fetchzip, ocaml, findlib, ocpBuild, opam, cmdliner }: let inherit (stdenv.lib) getVersion versionAtLeast; in assert versionAtLeast (getVersion ocaml) "3.12.1"; -assert versionAtLeast (getVersion ocpBuild) "1.99.3-beta"; +assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; stdenv.mkDerivation { - name = "ocp-indent-1.4.2b"; + name = "ocp-indent-1.5.2"; - src = fetchurl { - url = "https://github.com/OCamlPro/ocp-indent/archive/1.4.2b.tar.gz"; - sha256 = "1p0n2zcl5kf543x2xlqrz1aa51f0dqal8l392sa41j6wx82j0gpb"; + src = fetchzip { + url = "https://github.com/OCamlPro/ocp-indent/archive/1.5.2.tar.gz"; + sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz"; }; buildInputs = [ ocaml findlib ocpBuild opam cmdliner ]; createFindlibDestdir = true; + preConfigure = "patchShebangs ./install.sh"; + postInstall = '' mv $out/lib/{ocp-indent,ocaml/${getVersion ocaml}/site-lib/} ''; diff --git a/pkgs/development/tools/ocaml/ocp-index/default.nix b/pkgs/development/tools/ocaml/ocp-index/default.nix index c901d676b90..76be5f8bd47 100644 --- a/pkgs/development/tools/ocaml/ocp-index/default.nix +++ b/pkgs/development/tools/ocaml/ocp-index/default.nix @@ -2,7 +2,7 @@ let inherit (stdenv.lib) getVersion versionAtLeast optional; in -assert versionAtLeast (getVersion ocaml) "3.12.1"; +assert versionAtLeast (getVersion ocaml) "4"; assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; assert versionAtLeast (getVersion ocpIndent) "1.4.2"; diff --git a/pkgs/games/crawl/default.nix b/pkgs/games/crawl/default.nix index 43dc3409591..06151365060 100644 --- a/pkgs/games/crawl/default.nix +++ b/pkgs/games/crawl/default.nix @@ -3,7 +3,7 @@ , tileMode ? true }: -let version = "0.16.1"; +let version = "0.16.2"; in stdenv.mkDerivation rec { name = "crawl-${version}" + (if tileMode then "-tiles" else ""); @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { owner = "crawl-ref"; repo = "crawl-ref"; rev = version; - sha256 = "0gciqaij05qr5bwkk5mblvk5k0p6bzjd58czk1b6x5xx5qcp6mmh"; + sha256 = "08ns49if8941vsg6abywgw3mnjafgj5sga0cdvvvviq0qqzprhw9"; }; patches = [ ./crawl_purify.patch ]; diff --git a/pkgs/games/onscripter-en/default.nix b/pkgs/games/onscripter-en/default.nix index 8e9f5a988bf..ab60041aa30 100644 --- a/pkgs/games/onscripter-en/default.nix +++ b/pkgs/games/onscripter-en/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Japanese visual novel scripting engine"; - homepage = "http://dev.haeleth.net/onscripter.shtml"; + homepage = "http://unclemion.com/onscripter/"; license = licenses.gpl2; platforms = platforms.unix; maintainers = with maintainers; [ abbradar ]; diff --git a/pkgs/games/scrolls/default.nix b/pkgs/games/scrolls/default.nix index 0f252a5043f..5fa7410ef93 100644 --- a/pkgs/games/scrolls/default.nix +++ b/pkgs/games/scrolls/default.nix @@ -2,7 +2,7 @@ , mesa_glu, libX11, libXext, libXcursor, libpulseaudio }: stdenv.mkDerivation { - name = "scrolls-2014-03-08"; + name = "scrolls-2015-10-13"; meta = { description = "A strategy collectible card game"; @@ -16,7 +16,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://download.scrolls.com/client/linux.tar.gz"; - sha256 = "164d13ce5b81b215a58bae5a0d024b4cf6e32c986ca57a2c9d4e80326edb5004"; + sha256 = "ead1fd14988aa07041fedfa7f845c756cd5077a5a402d85bfb749cb669ececec"; }; libPath = stdenv.lib.makeLibraryPath [ @@ -39,7 +39,7 @@ stdenv.mkDerivation { --set-rpath "$libPath" "$out/opt/Scrolls/Scrolls" mkdir "$out/bin" - ln -s "$out/opt/Scrolls/Scrolls" "$out/bin/Scrolls" + ln -s "$out/opt/Scrolls/Scrolls" "$out/bin/Scrolls" ''; } diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix index 2775150385d..f3f1e3bff15 100644 --- a/pkgs/misc/emulators/wine/versions.nix +++ b/pkgs/misc/emulators/wine/versions.nix @@ -1,7 +1,7 @@ { unstable = { - wineVersion = "1.7.48"; - wineSha256 = "13kcjirif57p8mg4yhzxf0hjpghlwc18iskz66dx94i0dvjmrxg3"; + wineVersion = "1.7.52"; + wineSha256 = "0jsm1p7zwhfb5fpp0xd39vnx9m98kqgfng1q9kdj70rm1hmb6wq7"; geckoVersion = "2.36"; geckoSha256 = "12hjks32yz9jq4w3xhk3y1dy2g3iakqxd7aldrdj51cqiz75g95g"; gecko64Version = "2.36"; @@ -20,8 +20,8 @@ monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; }; staging = { - version = "1.7.48"; - sha256 = "06p1h92vaqlzk09aj4na6z7k3a81y9nw19rfg9q2szpcqjdd437w"; + version = "1.7.52"; + sha256 = "12r100gv34k44kia14wrfa42q0cjd8ir8vi8cx1b6hgnzw3x0gzk"; }; winetricks = { version = "20150706"; diff --git a/pkgs/os-specific/linux/android-udev-rules/default.nix b/pkgs/os-specific/linux/android-udev-rules/default.nix index 3f763e917e3..137a362bcd8 100644 --- a/pkgs/os-specific/linux/android-udev-rules/default.nix +++ b/pkgs/os-specific/linux/android-udev-rules/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchgit }: stdenv.mkDerivation { - name = "android-udev-rules-20150821"; + name = "android-udev-rules-20150920"; src = fetchgit { url = "https://github.com/M0Rf30/android-udev-rules"; - rev = "07ccded2a89c2bb6da984e596c015c5e9546e497"; - sha256 = "953fc10bd0de46afef999dc1c1b20801b3d6e289af48d18fa96b1cac3ac54518"; + rev = "d2e89a3f6deb096071b15e18b9e3608a02d62437"; + sha256 = "bdc553a1eb4efc4e85866f61f50f2c2f7b8d09d2eb5122afad7c9b38e0fdc4fb"; }; installPhase = '' diff --git a/pkgs/os-specific/linux/eudev/default.nix b/pkgs/os-specific/linux/eudev/default.nix index 1db5967aab5..e9fcf5d8c4d 100644 --- a/pkgs/os-specific/linux/eudev/default.nix +++ b/pkgs/os-specific/linux/eudev/default.nix @@ -3,10 +3,10 @@ let s = # Generated upstream information rec { baseName="eudev"; - version = "3.1.2"; + version = "3.1.5"; name="${baseName}-${version}"; url="http://dev.gentoo.org/~blueness/eudev/eudev-${version}.tar.gz"; - sha256 = "0wq2w67ip957l5bi21jj3w2rv7s7klcrnlg6zpg1g0fxjfgbd4s3"; + sha256 = "0akg9gcc3c2p56xbhlvbybqavcprly5q0bvk655zwl6d62j8an7p"; }; buildInputs = [ glib pkgconfig gperf utillinux diff --git a/pkgs/os-specific/linux/kernel/linux-3.12.nix b/pkgs/os-specific/linux/kernel/linux-3.12.nix index da520d13a02..2fdabf30c99 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, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.12.48"; + version = "3.12.49"; extraMeta.branch = "3.12"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "1mvvpi2s8avg629y72miak8mdbv0mwb5dz0m7b48aah6dg866hiz"; + sha256 = "1vl8ghwhrs2sxd7kgi95nqlmf5k8ps0kr2lyly40ys262174i8lg"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-4.1.nix b/pkgs/os-specific/linux/kernel/linux-4.1.nix index ba0ff2a5ede..8a1f27afb8a 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.1.nix @@ -2,7 +2,6 @@ import ./generic.nix (args // rec { version = "4.1.10"; - # Remember to update grsecurity! extraMeta.branch = "4.1"; src = fetchurl { diff --git a/pkgs/os-specific/linux/kernel/linux-4.2.nix b/pkgs/os-specific/linux/kernel/linux-4.2.nix index a2d9b5076dd..24df9a7eb92 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.2.nix @@ -2,6 +2,7 @@ import ./generic.nix (args // rec { version = "4.2.3"; + # Remember to update grsecurity! extraMeta.branch = "4.2"; src = fetchurl { diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index de1b16347e1..cd34819a848 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -87,10 +87,10 @@ rec { }; grsecurity_unstable = grsecPatch - { kversion = "4.1.7"; - revision = "201509131604"; + { kversion = "4.2.3"; + revision = "201510130858"; branch = "test"; - sha256 = "1frfyi1pkiqc3awri3sr7xv41qxc8m2kb1yhfvj6xkrwb9li2bki"; + sha256 = "0ndzcx9i94c065dlyvgykmin5bfkbydrv0kxxq52a4c9is6nlsrb"; }; grsec_fix_path = diff --git a/pkgs/os-specific/linux/powertop/auto-tune.patch b/pkgs/os-specific/linux/powertop/auto-tune.patch new file mode 100644 index 00000000000..c9095336e8d --- /dev/null +++ b/pkgs/os-specific/linux/powertop/auto-tune.patch @@ -0,0 +1,11 @@ +diff --git a/src/devices/devfreq.cpp b/src/devices/devfreq.cpp +index d2e56e3..4de5c9b 100644 +--- a/src/devices/devfreq.cpp ++++ b/src/devices/devfreq.cpp +@@ -247,6 +247,7 @@ void create_all_devfreq_devices(void) + fprintf(stderr, "Devfreq not enabled\n"); + is_enabled = false; + closedir(dir); ++ dir = NULL; + return; + } diff --git a/pkgs/os-specific/linux/powertop/default.nix b/pkgs/os-specific/linux/powertop/default.nix index 9e32cd70cfb..82ca746d6a4 100644 --- a/pkgs/os-specific/linux/powertop/default.nix +++ b/pkgs/os-specific/linux/powertop/default.nix @@ -10,7 +10,11 @@ stdenv.mkDerivation rec { buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ]; - patchPhase = '' + # Fix --auto-tune bug: + # https://lists.01.org/pipermail/powertop/2014-December/001727.html + patches = [ ./auto-tune.patch ]; + + postPatch = '' substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe" ''; diff --git a/pkgs/os-specific/linux/syslinux/default.nix b/pkgs/os-specific/linux/syslinux/default.nix index 3c01516b081..150b2b44729 100644 --- a/pkgs/os-specific/linux/syslinux/default.nix +++ b/pkgs/os-specific/linux/syslinux/default.nix @@ -21,6 +21,8 @@ stdenv.mkDerivation rec { substituteInPlace gpxe/src/Makefile --replace /usr/bin/perl $(type -P perl) ''; + stripDebugList = "bin sbin share/syslinux/com32"; + makeFlags = [ "BINDIR=$(out)/bin" "SBINDIR=$(out)/sbin" diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix index e7e7502665f..89260109e26 100644 --- a/pkgs/servers/uwsgi/default.nix +++ b/pkgs/servers/uwsgi/default.nix @@ -24,11 +24,11 @@ in assert builtins.filter (x: lib.all (y: y.name != x) available) plugins == []; stdenv.mkDerivation rec { - name = "uwsgi-2.0.11.1"; + name = "uwsgi-2.0.11.2"; src = fetchurl { url = "http://projects.unbit.it/downloads/${name}.tar.gz"; - sha256 = "11v2j9n204hlvi1p1wp4r3nn22fqyd1qlbqcfqddi77sih9x79vm"; + sha256 = "0p482j4yi48bmpgx1qpdfk86hjn4dswb137jbmigdlrd9l5rp20b"; }; nativeBuildInputs = [ python3 pkgconfig ]; diff --git a/pkgs/stdenv/default.nix b/pkgs/stdenv/default.nix index 71bdc3e8f82..da93229ce94 100644 --- a/pkgs/stdenv/default.nix +++ b/pkgs/stdenv/default.nix @@ -54,7 +54,7 @@ rec { if system == "armv7l-linux" then stdenvLinux else if system == "mips64el-linux" then stdenvLinux else if system == "powerpc-linux" then /* stdenvLinux */ stdenvNative else - if system == "x86_64-darwin" then stdenvDarwin else + if system == "x86_64-darwin" then stdenvDarwinPure else if system == "x86_64-solaris" then stdenvNix else if system == "i686-cygwin" then stdenvNative else if system == "x86_64-cygwin" then stdenvNative else diff --git a/pkgs/stdenv/pure-darwin/default.nix b/pkgs/stdenv/pure-darwin/default.nix index 1d194f90d9b..860d2e0b54b 100644 --- a/pkgs/stdenv/pure-darwin/default.nix +++ b/pkgs/stdenv/pure-darwin/default.nix @@ -6,7 +6,8 @@ let # libSystem and its transitive dependencies. Get used to this; it's a recurring theme in darwin land - libSystemClosure = [ + libSystemClosure = if system == "x86_64-darwin" + then [ "/usr/lib/libSystem.dylib" "/usr/lib/libSystem.B.dylib" "/usr/lib/libobjc.A.dylib" @@ -16,7 +17,8 @@ let "/usr/lib/libc++.1.dylib" "/usr/lib/libDiagnosticMessagesClient.dylib" "/usr/lib/system" - ]; + ] + else []; fetch = { file, sha256 }: derivation ((import { url = "https://dl.dropboxusercontent.com/u/2857322/${file}"; diff --git a/pkgs/tools/X11/dex/default.nix b/pkgs/tools/X11/dex/default.nix new file mode 100644 index 00000000000..d147ef4a70c --- /dev/null +++ b/pkgs/tools/X11/dex/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchFromGitHub, python3 }: + +stdenv.mkDerivation rec { + program = "dex"; + name = "${program}-${version}"; + version = "0.7"; + + src = fetchFromGitHub { + owner = "jceb"; + repo = program; + rev = "v${version}"; + sha256 = "041ms01snalapapaniabr92d8iim1qrxian626nharjmp2rd69v5"; + }; + + propagatedBuildInputs = [ python3 ]; + makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ]; + + meta = { + description = "A program to generate and execute DesktopEntry files of the Application type"; + homepage = https://github.com/jceb/dex; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/tools/backup/borg/default.nix b/pkgs/tools/backup/borg/default.nix index f9a949f4d3f..df3523322e8 100644 --- a/pkgs/tools/backup/borg/default.nix +++ b/pkgs/tools/backup/borg/default.nix @@ -1,21 +1,23 @@ -{ stdenv, fetchzip, python3Packages, openssl, acl }: +{ stdenv, fetchurl, python3Packages, openssl, acl, lz4 }: python3Packages.buildPythonPackage rec { - name = "borg-${version}"; - version = "0.23.0"; + name = "borgbackup-${version}"; + version = "0.27.0"; namePrefix = ""; - src = fetchzip { - name = "${name}-src"; - url = "https://github.com/borgbackup/borg/archive/${version}.tar.gz"; - sha256 = "1ns00bhrh4zm1s70mm32gnahj7yh4jdpkb8ziarhvcnknz7aga67"; + src = fetchurl { + url = "https://pypi.python.org/packages/source/b/borgbackup/borgbackup-${version}.tar.gz"; + sha256 = "04iizidag4fwy6kx1747d633s1amr81slgk743qsfbwixaxfjq9b"; }; propagatedBuildInputs = with python3Packages; - [ cython msgpack openssl acl llfuse tox detox ]; + [ cython msgpack openssl acl llfuse tox detox lz4 setuptools_scm ]; preConfigure = '' export BORG_OPENSSL_PREFIX="${openssl}" + export BORG_LZ4_PREFIX="${lz4}" + # note: fix for this issue already upstream and probably in 0.27.1 (or whatever the next release is called) + substituteInPlace setup.py --replace "possible_openssl_prefixes.insert(0, os.environ.get('BORG_LZ4_PREFIX'))" "possible_lz4_prefixes.insert(0, os.environ.get('BORG_LZ4_PREFIX'))" ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/filesystems/djmount/default.nix b/pkgs/tools/filesystems/djmount/default.nix new file mode 100644 index 00000000000..7010a60bcbc --- /dev/null +++ b/pkgs/tools/filesystems/djmount/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, fuse }: + +stdenv.mkDerivation rec { + name = "djmount-${version}"; + version = "0.71"; + src = fetchurl { + url = "mirror://sourceforge/djmount/${version}/${name}.tar.gz"; + sha256 = "0kqf0cy3h4cfiy5a2sigmisx0lvvsi1n0fbyb9ll5gacmy1b8nxa"; + }; + + buildInputs = [ pkgconfig fuse]; + + meta = { + homepage = http://djmount.sourceforge.net/; + description = "UPnP AV client, mounts as a Linux filesystem the media content of compatible UPnP AV devices"; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.jagajaga ]; + license = stdenv.lib.licenses.gpl2; + }; +} diff --git a/pkgs/tools/filesystems/yandex-disk/default.nix b/pkgs/tools/filesystems/yandex-disk/default.nix index 97d70d1a45b..42308947c07 100644 --- a/pkgs/tools/filesystems/yandex-disk/default.nix +++ b/pkgs/tools/filesystems/yandex-disk/default.nix @@ -6,18 +6,18 @@ let p = if stdenv.is64bit then { arch = "x86_64"; gcclib = "${stdenv.cc.cc}/lib64"; - sha256 = "08mmjz061b0hrqp8zg31w089n5bk3sq4r3w84zr33d8pnvkgq2wk"; + sha256 = "1dr976z0zgg5jk477hrnfmpcx4llh5xi1493k0pkp28m6ypbxy2q"; } else { arch = "i386"; gcclib = "${stdenv.cc.cc}/lib"; - sha256 = "1zb6cnldd43nr4k2qg9hnrkgj0iik2gpxqrjypbhwv75hnvjma93"; + sha256 = "01v0caf194y6yb0zc0d3ywx3y0rwb7sxkav4ickd4l968jpi8p91"; }; in stdenv.mkDerivation rec { name = "yandex-disk-${version}"; - version = "0.1.5.905"; + version = "0.1.5.940"; src = fetchurl { url = "http://repo.yandex.ru/yandex-disk/rpm/stable/${p.arch}/${name}-1.fedora.${p.arch}.rpm"; diff --git a/pkgs/tools/misc/less/default.nix b/pkgs/tools/misc/less/default.nix index 8c0f0e96d21..af8a0dd7d81 100644 --- a/pkgs/tools/misc/less/default.nix +++ b/pkgs/tools/misc/less/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, ncurses }: stdenv.mkDerivation rec { - name = "less-475"; + name = "less-481"; src = fetchurl { url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz"; - sha256 = "16703m6g5l97af3jwpypgac7gpmh3yjkdpqygf5a2scfip0hxm2g"; + sha256 = "19fxj0h10y5bhr3a1xa7kqvnwl44db3sdypz8jxl1q79yln8z8rz"; }; # Look for ‘sysless’ in /etc. diff --git a/pkgs/tools/misc/sdl-jstest/default.nix b/pkgs/tools/misc/sdl-jstest/default.nix index cf62039fc03..677f52c2c32 100644 --- a/pkgs/tools/misc/sdl-jstest/default.nix +++ b/pkgs/tools/misc/sdl-jstest/default.nix @@ -1,11 +1,11 @@ { fetchgit, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: stdenv.mkDerivation rec { - name = "sdl-jstest-20150625"; + name = "sdl-jstest-20150806"; src = fetchgit { url = "https://github.com/Grumbel/sdl-jstest"; - rev = "3f54b86ebe0d2f95e9c1d034bc4ed02d6d2b6409"; - sha256 = "d33e0a2c66b551ecf333590f1a6e1730093af31cee1be8757748624d42e14df1"; + rev = "7b792376178c9656c851ddf106c7d57b2495e8b9"; + sha256 = "3aa9a002de9c9999bd7c6248b94148f15dba6106489e418b2a1a410324f75eb8"; }; buildInputs = [ SDL SDL2 ncurses ]; diff --git a/pkgs/tools/misc/tlp/default.nix b/pkgs/tools/misc/tlp/default.nix index 1e90ecfee32..4f90b432d04 100644 --- a/pkgs/tools/misc/tlp/default.nix +++ b/pkgs/tools/misc/tlp/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils, kmod , enableRDW ? true, networkmanager }: -let version = "0.7"; +let version = "0.8"; in stdenv.mkDerivation { inherit enableRDW; @@ -11,7 +11,7 @@ in stdenv.mkDerivation { owner = "linrunner"; repo = "TLP"; rev = "${version}"; - sha256 = "0vgx2jnk9gp41fw992l9dmv462jpcrnwqkzsa8z0lh0l77ax2jcg"; + sha256 = "19fvk0xz6i2ryf41akk4jg1c4sb4rcyxdl9fr0w4lja7g76d5zww"; }; makeFlags = [ "DESTDIR=$(out)" diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index 9ccc91b7bc1..27175c9ed23 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -2,7 +2,7 @@ , libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl , pkgconfig, zlib }: -let version = "0.5.9-98-gb3a9f17"; in +let version = "0.5.9-106-g895377c"; in stdenv.mkDerivation { name = "netsniff-ng-${version}"; @@ -10,8 +10,8 @@ stdenv.mkDerivation { src = fetchFromGitHub rec { repo = "netsniff-ng"; owner = repo; - rev = "b3a9f17eb9c7a47e6c4aee3649179b2a54d17eca"; - sha256 = "05nwi5ksijv42w7km08dhymiyyvcj43b5lrpdf9x5j725l79yqdb"; + rev = "895377c6e96ec8ac853568eb275043741a7621cd"; + sha256 = "092jzakldpqram26dccd5k5hv4jc396c3l7iaf9r3139dx83plag"; }; buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl diff --git a/pkgs/tools/networking/openvpn/update-resolv-conf.nix b/pkgs/tools/networking/openvpn/update-resolv-conf.nix index de04c1419e2..f5937f05004 100644 --- a/pkgs/tools/networking/openvpn/update-resolv-conf.nix +++ b/pkgs/tools/networking/openvpn/update-resolv-conf.nix @@ -1,7 +1,7 @@ { stdenv, fetchgit, makeWrapper, openresolv, coreutils }: stdenv.mkDerivation rec { - name = "update-resolv-conf-2014-10-03"; + name = "update-resolv-conf-20141003"; src = fetchgit { url = https://github.com/masterkorp/openvpn-update-resolv-conf/; diff --git a/pkgs/tools/networking/ripmime/default.nix b/pkgs/tools/networking/ripmime/default.nix index d9445b74976..fd5964cb55f 100644 --- a/pkgs/tools/networking/ripmime/default.nix +++ b/pkgs/tools/networking/ripmime/default.nix @@ -29,8 +29,8 @@ rec { /* doConfigure should be removed if not needed */ phaseNames = ["fixTarget" "doMakeInstall"]; fixTarget = a.fullDepEntry ('' - sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" - mkdir -p "$out/bin" "$out/man/man1" + sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" -e "s@man/man1@share/&@" + mkdir -p "$out/bin" "$out/share/man/man1" '') ["doUnpack" "minInit" "defEnsureDir"]; meta = { diff --git a/pkgs/tools/security/chkrootkit/default.nix b/pkgs/tools/security/chkrootkit/default.nix index 36a203a7b50..2dad4b3e43a 100644 --- a/pkgs/tools/security/chkrootkit/default.nix +++ b/pkgs/tools/security/chkrootkit/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { name = "chkrootkit-0.50"; src = fetchurl { - url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz; + url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit-0.50.tar.gz; sha256 = "1ivclp7ixndacjmf7xgj8lfa6h7ihx44mzzsapqdvf0c5f9gqj4m"; }; diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix index fbb8f0321ef..cdafb560565 100644 --- a/pkgs/tools/security/eid-mw/default.nix +++ b/pkgs/tools/security/eid-mw/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, autoreconfHook, gtk2, nssTools, pcsclite , pkgconfig }: -let version = "4.1.6"; in +let version = "4.1.7"; in stdenv.mkDerivation { name = "eid-mw-${version}"; src = fetchFromGitHub { - sha256 = "006s7093wqmk36mrlakjv89bqddyh599rvmgv0zgsp15vf9160zi"; + sha256 = "1m44s8mzz8gg97xdmbng40279hc4i7q7i7yd45hbagacny0wxi1k"; rev = "v${version}"; repo = "eid-mw"; owner = "Fedict"; @@ -29,10 +29,11 @@ stdenv.mkDerivation { --replace "modutil" "${nssTools}/bin/modutil" # Only provides a useless "about-eid-mw.desktop" that segfaults anyway: - rm -rf $out/share/applications $out/bin/about-eid-mw + rm -r $out/share/applications $out/bin/about-eid-mw ''; meta = with stdenv.lib; { + inherit version; description = "Belgian electronic identity card (eID) middleware"; homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/; license = licenses.lgpl3; diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix index 20d2eb15b97..5fbd6e83970 100644 --- a/pkgs/tools/security/gnupg/21.nix +++ b/pkgs/tools/security/gnupg/21.nix @@ -13,11 +13,11 @@ with stdenv.lib; assert x11Support -> pinentry != null; stdenv.mkDerivation rec { - name = "gnupg-2.1.8"; + name = "gnupg-2.1.9"; src = fetchurl { url = "mirror://gnupg/gnupg/${name}.tar.bz2"; - sha256 = "18w14xp0ynzzwpklyplkzbrncds1hly4k2gjx115swch8qgd1f53"; + sha256 = "1dpp555glln6fldk72ad7lkrn8h3cr2bg714z5kfn2qrawx67dqw"; }; postPatch = stdenv.lib.optionalString stdenv.isLinux '' diff --git a/pkgs/tools/system/dd_rescue/default.nix b/pkgs/tools/system/dd_rescue/default.nix index a0ff9b063dd..d90b5d1d2f0 100644 --- a/pkgs/tools/system/dd_rescue/default.nix +++ b/pkgs/tools/system/dd_rescue/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, autoconf }: stdenv.mkDerivation rec { - version = "1.98"; + version = "1.99"; name = "dd_rescue-${version}"; src = fetchurl { - sha256 = "14lf2pv52sr16977qjq1rsr42rfd3ywsss2xw9svgaa14g49ss6b"; + sha256 = "0gkbwssn134fjyyvjvylyvassw4fwv5mbis9gcb969xdc64dfhg1"; url="http://www.garloff.de/kurt/linux/ddrescue/${name}.tar.bz2"; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 676da43beb4..c1362445f15 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -602,6 +602,8 @@ let bonnie = callPackage ../tools/filesystems/bonnie { }; + djmount = callPackage ../tools/filesystems/djmount { }; + grc = callPackage ../tools/misc/grc { }; lastpass-cli = callPackage ../tools/security/lastpass-cli { }; @@ -712,7 +714,7 @@ let bochs = callPackage ../applications/virtualization/bochs { }; - borg = callPackage ../tools/backup/borg { }; + borgbackup = callPackage ../tools/backup/borg { }; boomerang = callPackage ../development/tools/boomerang { }; @@ -1229,6 +1231,8 @@ let gtk = gtk3; }; + dex = callPackage ../tools/X11/dex { }; + ddccontrol = callPackage ../tools/misc/ddccontrol { }; ddccontrol-db = callPackage ../data/misc/ddccontrol-db { }; @@ -7577,6 +7581,8 @@ let paths = [ mesa_noglu mesa_glu ]; }); + meterbridge = callPackage ../applications/audio/meterbridge { }; + metaEnvironment = recurseIntoAttrs (let callPackage = newScope pkgs.metaEnvironment; in rec { sdfLibrary = callPackage ../development/libraries/sdf-library { aterm = aterm28; }; toolbuslib = callPackage ../development/libraries/toolbuslib { aterm = aterm28; inherit (windows) w32api; }; @@ -10447,7 +10453,7 @@ let coreclr = callPackage ../development/compilers/coreclr { }; corefonts = callPackage ../data/fonts/corefonts { }; - + culmus = callPackage ../data/fonts/culmus { }; wrapFonts = paths : (callPackage ../data/fonts/fontWrap { inherit paths; }); @@ -10531,6 +10537,8 @@ let junicode = callPackage ../data/fonts/junicode { }; + kawkab-mono-font = callPackage ../data/fonts/kawkab-mono {}; + kochi-substitute = callPackage ../data/fonts/kochi-substitute {}; kochi-substitute-naga10 = callPackage ../data/fonts/kochi-substitute-naga10 {}; @@ -10582,6 +10590,10 @@ let pecita = callPackage ../data/fonts/pecita {}; + paratype-pt-mono = callPackage ../data/fonts/paratype-pt/mono.nix {}; + paratype-pt-sans = callPackage ../data/fonts/paratype-pt/sans.nix {}; + paratype-pt-serif = callPackage ../data/fonts/paratype-pt/serif.nix {}; + poly = callPackage ../data/fonts/poly { }; posix_man_pages = callPackage ../data/documentation/man-pages-posix { }; @@ -11238,6 +11250,8 @@ let magit = callPackage ../applications/editors/emacs-modes/magit { }; + markdownMode = callPackage ../applications/editors/emacs-modes/markdown-mode { }; + maudeMode = callPackage ../applications/editors/emacs-modes/maude { }; metaweblog = callPackage ../applications/editors/emacs-modes/metaweblog { }; @@ -12386,7 +12400,7 @@ let pencil = callPackage ../applications/graphics/pencil { }; - perseus = callPackage ../applications/science/math/perseus {}; + perseus = callPackage ../applications/science/math/perseus {}; petrifoo = callPackage ../applications/audio/petrifoo { inherit (gnome) libgnomecanvas; @@ -12425,9 +12439,9 @@ let plugins = []; }; - pidginlatex = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex { }; - - pidginlatexSF = pidginlatex; + pidginlatex = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex { + texLive = texlive.combined.scheme-basic; + }; pidginmsnpecan = callPackage ../applications/networking/instant-messengers/pidgin-plugins/msn-pecan { }; @@ -13074,6 +13088,7 @@ let dconf = gnome3.dconf; gtkvnc = gtkvnc.override { enableGTK3 = true; }; spice_gtk = spice_gtk.override { enableGTK3 = true; }; + system-libvirt = libvirt; }; virtinst = callPackage ../applications/virtualization/virtinst {}; @@ -15193,6 +15208,7 @@ aliases = with self; rec { xlibs = xorg; # added 2015-09 youtube-dl = pythonPackages.youtube-dl; # added 2015-06-07 youtubeDL = youtube-dl; # added 2014-10-26 + pidginlatexSF = pidginlatex; # added 2014-11-02 }; tweakAlias = _n: alias: with lib; @@ -15201,4 +15217,3 @@ tweakAlias = _n: alias: with lib; else alias; in lib.mapAttrs tweakAlias aliases // self; in pkgs - diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 3cd2ecc894b..c3865223554 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2353,6 +2353,19 @@ let self = _self // overrides; _self = with self; { buildInputs = [ PathClass TryTiny ]; }; + CryptX = buildPerlModule rec { + name = "CryptX-0.025"; + src = fetchurl { + url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; + sha256 = "f8b7e3ec1713c8dfe3eef9d114f45f223b97e2340f81a20589b5605fa49cfe38"; + }; + propagatedBuildInputs = [ JSON ]; + meta = { + description = "Crypto toolkit"; + license = "perl"; + }; + }; + CSSDOM = buildPerlPackage rec { name = "CSS-DOM-0.15"; src = fetchurl { @@ -10983,11 +10996,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ PerlCritic ]; }; - TestPod = buildPerlPackage { - name = "Test-Pod-1.48"; + TestPod = buildPerlPackage rec { + name = "Test-Pod-1.51"; src = fetchurl { - url = mirror://cpan/authors/id/D/DW/DWHEELER/Test-Pod-1.48.tar.gz; - sha256 = "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "1yvy5mc4j3s2h4aizryvark2nm58g2c6zhw9mlx9wmsavz7d78f1"; }; meta = { homepage = http://search.cpan.org/dist/Test-Pod/; @@ -11032,11 +11045,11 @@ let self = _self // overrides; _self = with self; { }; }; - TestRequires = buildPerlPackage { - name = "Test-Requires-0.06"; + TestRequires = buildPerlPackage rec { + name = "Test-Requires-0.10"; src = fetchurl { - url = mirror://cpan/authors/id/T/TO/TOKUHIROM/Test-Requires-0.06.tar.gz; - sha256 = "1ksyg4npzx5faf2sj80rm74qjra4q679750vfqfvw3kg1d69wvwv"; + url = "mirror://cpan/authors/id/T/TO/TOKUHIROM/${name}.tar.gz"; + sha256 = "1d9f481lj12cw1ciil46xq9nq16p6a90nm7yrsalpf8asn8s6s17"; }; meta = { description = "Checks to see if the module can be loaded"; @@ -11084,11 +11097,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ ProbePerl IPCRun3 ]; }; - TestSharedFork = buildPerlPackage { - name = "Test-SharedFork-0.29"; + TestSharedFork = buildPerlPackage rec { + name = "Test-SharedFork-0.34"; src = fetchurl { - url = mirror://cpan/authors/id/E/EX/EXODIST/Test-SharedFork-0.29.tar.gz; - sha256 = "63af7788cc35b9b7e6fa37c61220ca66abd6364d8bb90c20038e3d8241988a6e"; + url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz"; + sha256 = "1yq4xzify3wqdc07zq33lwgh9gywp3qd8w6wzwrllbjw0hhkm4s8"; }; buildInputs = [ TestRequires ]; meta = { @@ -11100,11 +11113,11 @@ let self = _self // overrides; _self = with self; { TestSimple = null; - TestSpec = buildPerlPackage { - name = "Test-Spec-0.47"; + TestSpec = buildPerlPackage rec { + name = "Test-Spec-0.51"; src = fetchurl { - url = mirror://cpan/authors/id/P/PH/PHILIP/Test-Spec-0.47.tar.gz; - sha256 = "e425c0b9efa3c7e21496d31a607d072a63e31988c3d298a8c1fd7d145cc0681e"; + url = "mirror://cpan/authors/id/A/AN/ANDYJONES/${name}.tar.gz"; + sha256 = "0n2pzc32q4fr1b9w292ld9gh3yn3saxib3hxrjx6jvcmy3k9jkbi"; }; propagatedBuildInputs = [ PackageStash TestDeep TestTrap TieIxHash ]; meta = { @@ -11122,11 +11135,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ HookLexWrap ]; }; - TestSynopsis = buildPerlPackage { - name = "Test-Synopsis-0.10"; + TestSynopsis = buildPerlPackage rec { + name = "Test-Synopsis-0.11"; src = fetchurl { - url = mirror://cpan/authors/id/Z/ZO/ZOFFIX/Test-Synopsis-0.10.tar.gz; - sha256 = "0gbk4d2vwlldsj5shmbdar3a29vgrw84ldsvm26mflkr5ji34adv"; + url = "mirror://cpan/authors/id/Z/ZO/ZOFFIX/${name}.tar.gz"; + sha256 = "1jn3vna5r5fa9nv33n1x0bmgc434sk0ggar3jm78xx0zzy5jnsxv"; }; meta = { description = "Test your SYNOPSIS code"; @@ -11148,11 +11161,11 @@ let self = _self // overrides; _self = with self; { }; }; - TestTCP = buildPerlPackage { - name = "Test-TCP-1.18"; + TestTCP = buildPerlPackage rec { + name = "Test-TCP-2.14"; src = fetchurl { - url = mirror://cpan/authors/id/T/TO/TOKUHIROM/Test-TCP-1.18.tar.gz; - sha256 = "0flm7x0z7amppi9y6s8mxm0pkrgfihfpfjs0w4i6s80jiss1gfld"; + url = "mirror://cpan/authors/id/T/TO/TOKUHIROM/${name}.tar.gz"; + sha256 = "00bxgm7qva4fd25phwl8fvv36h8h5k3jk89hz9302a288wv3ysmr"; }; propagatedBuildInputs = [ TestSharedFork ]; meta = { @@ -11210,13 +11223,13 @@ let self = _self // overrides; _self = with self; { }; }; - TestWarnings = buildPerlPackage { - name = "Test-Warnings-0.016"; + TestWarnings = buildPerlPackage rec { + name = "Test-Warnings-0.021"; src = fetchurl { - url = mirror://cpan/authors/id/E/ET/ETHER/Test-Warnings-0.016.tar.gz; - sha256 = "09ebc9afa29eb4d1d44fbd974dfcd52e0a2d9ce7ec3e3ee7602394157831aba9"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "0i1crkhqfl5gs55i5nrvsw3xy946ajgnvp4gqrzvsn1x6cp1i2nr"; }; - buildInputs = [ TestTester if_ ]; + buildInputs = [ TestTester if_ CPANMetaCheck ModuleMetadata ]; meta = { homepage = https://github.com/karenetheridge/Test-Warnings; description = "Test for warnings and the lack of them"; @@ -11627,10 +11640,10 @@ let self = _self // overrides; _self = with self; { }; }; - TestTrap = buildPerlPackage { - name = "Test-Trap-0.2.2"; + TestTrap = buildPerlPackage rec { + name = "Test-Trap-0.3.2"; src = fetchurl { - url = mirror://cpan/authors/id/E/EB/EBHANSSEN/Test-Trap-v0.2.2.tar.gz; + url = "mirror://cpan/authors/id/E/EB/EBHANSSEN/${name}.tar.gz"; sha256 = "1ci5ag9pm850ww55n2929skvw3avy6xcrwmmi2yyn0hifxx9dybs"; }; buildInputs = [ TestTester ]; @@ -11657,11 +11670,11 @@ let self = _self // overrides; _self = with self; { }; }; - TestVersion = buildPerlPackage { - name = "Test-Version-1.002004"; + TestVersion = buildPerlPackage rec { + name = "Test-Version-2.03"; src = fetchurl { - url = mirror://cpan/authors/id/X/XE/XENO/Test-Version-1.002004.tar.gz; - sha256 = "1lvg1p6i159ssk5br5qb3gvrzdg59wchd97z7j44arnlkhfvwhgv"; + url = "mirror://cpan/authors/id/P/PL/PLICEASE/${name}.tar.gz"; + sha256 = "02nbi7iqab1b0ngkiim9kbvnnr9bhi17bq54vm8hn9ridzgbj1vj"; }; buildInputs = [ TestException TestRequires TestTester ]; propagatedBuildInputs = [ FileFindRulePerl ]; @@ -12320,10 +12333,10 @@ let self = _self // overrides; _self = with self; { }; Wx = buildPerlPackage rec { - name = "Wx-0.9923"; + name = "Wx-0.9927"; src = fetchurl { url = "mirror://cpan/authors/id/M/MD/MDOOTSON/${name}.tar.gz"; - sha256 = "1ja2fkz0xabafyc6gnp3nnwsbkkjsf44kq9x5zz6cb5fsp3p9sck"; + sha256 = "1fr23nn5cvzydl8nxfv0iljn10pvwbny0nvpjx31fn2md8dvsx51"; }; propagatedBuildInputs = [ ExtUtilsXSpp AlienWxWidgets ]; # Testing requires an X server: @@ -12378,10 +12391,10 @@ let self = _self // overrides; _self = with self; { }; X11XCB = buildPerlPackage rec { - name = "X11-XCB-0.12"; + name = "X11-XCB-0.14"; src = fetchurl { url = "mirror://cpan/authors/id/M/MS/MSTPLBG/${name}.tar.gz"; - sha256 = "15jq55qcc27s5bn925pwry0vx2f4d42rlyz2hlfglnn2qnhsp37s"; + sha256 = "11ff0a4nqbdj68mxdvyqdqvi573ha10vy67wpi7mklpxvlm011bn"; }; AUTOMATED_TESTING = false; buildInputs = [ diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 293a655eb9a..d7bedaec8d4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1080,10 +1080,10 @@ let }; buttersink = buildPythonPackage rec { - name = "buttersink-0.6.6"; + name = "buttersink-0.6.7"; src = pkgs.fetchurl { - sha256 = "1vi0pz8r3d17bsn5g7clkyph7sc0rjzbzqk6rwglaxcah7sfj2mj"; + sha256 = "1azd0g0p9qk9wp344jmvqp4wk5f3wpsz3lb750xvnmd7qzf6v377"; url = "https://pypi.python.org/packages/source/b/buttersink/${name}.tar.gz"; };