ardour: merge upstream master

+1720 -564
+4 -2
default.nix
··· 1 - if ! builtins ? nixVersion || builtins.compareVersions "1.8" builtins.nixVersion == 1 then 1 + let requiredVersion = "1.10"; in 2 2 3 - 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" 3 + if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.nixVersion == 1 then 4 + 5 + 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" 4 6 5 7 else 6 8
+1
lib/maintainers.nix
··· 81 81 dezgeg = "Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>"; 82 82 dfoxfranke = "Daniel Fox Franke <dfoxfranke@gmail.com>"; 83 83 dmalikov = "Dmitry Malikov <malikov.d.y@gmail.com>"; 84 + dochang = "Desmond O. Chang <dochang@gmail.com>"; 84 85 doublec = "Chris Double <chris.double@double.co.nz>"; 85 86 ebzzry = "Rommel Martinez <ebzzry@gmail.com>"; 86 87 ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>";
+65
lib/modules.nix
··· 469 469 mkBefore = mkOrder 500; 470 470 mkAfter = mkOrder 1500; 471 471 472 + 472 473 # Convenient property used to transfer all definitions and their 473 474 # properties from one option to another. This property is useful for 474 475 # renaming options, and also for including properties from another module ··· 497 498 498 499 /* Compatibility. */ 499 500 fixMergeModules = modules: args: evalModules { inherit modules args; check = false; }; 501 + 502 + 503 + /* Return a module that causes a warning to be shown if the 504 + specified option is defined. For example, 505 + 506 + mkRemovedOptionModule [ "boot" "loader" "grub" "bootDevice" ] 507 + 508 + causes a warning if the user defines boot.loader.grub.bootDevice. 509 + */ 510 + mkRemovedOptionModule = optionName: 511 + { options, ... }: 512 + { options = setAttrByPath optionName (mkOption { 513 + visible = false; 514 + }); 515 + config.warnings = 516 + let opt = getAttrFromPath optionName options; in 517 + optional opt.isDefined 518 + "The option definition `${showOption optionName}' in ${showFiles opt.files} no longer has any effect; please remove it."; 519 + }; 520 + 521 + /* Return a module that causes a warning to be shown if the 522 + specified "from" option is defined; the defined value is however 523 + forwarded to the "to" option. This can be used to rename options 524 + while providing backward compatibility. For example, 525 + 526 + mkRenamedOptionModule [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ] 527 + 528 + forwards any definitions of boot.copyKernels to 529 + boot.loader.grub.copyKernels while printing a warning. 530 + */ 531 + mkRenamedOptionModule = from: to: doRename { 532 + inherit from to; 533 + visible = false; 534 + warn = true; 535 + use = builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'."; 536 + }; 537 + 538 + /* Like ‘mkRenamedOptionModule’, but doesn't show a warning. */ 539 + mkAliasOptionModule = from: to: doRename { 540 + inherit from to; 541 + visible = true; 542 + warn = false; 543 + use = id; 544 + }; 545 + 546 + doRename = { from, to, visible, warn, use }: 547 + let 548 + toOf = attrByPath to 549 + (abort "Renaming error: option `${showOption to}' does not exists."); 550 + in 551 + { config, options, ... }: 552 + { options = setAttrByPath from (mkOption { 553 + description = "Alias of <option>${showOption to}</option>."; 554 + apply = x: use (toOf config); 555 + }); 556 + config = { 557 + /* 558 + warnings = 559 + let opt = getAttrFromPath from options; in 560 + optional (warn && opt.isDefined) 561 + "The option `${showOption from}' defined in ${showFiles opt.files} has been renamed to `${showOption to}'."; 562 + */ 563 + } // setAttrByPath to (mkAliasDefinitions (getAttrFromPath from options)); 564 + }; 500 565 501 566 }
+4
nixos/modules/config/users-groups.nix
··· 550 550 551 551 }; 552 552 553 + imports = 554 + [ (mkAliasOptionModule [ "users" "extraUsers" ] [ "users" "users" ]) 555 + (mkAliasOptionModule [ "users" "extraGroups" ] [ "users" "groups" ]) 556 + ]; 553 557 }
+16
nixos/modules/installer/tools/nixos-generate-config.pl
··· 152 152 push @kernelModules, "wl"; 153 153 } 154 154 155 + # broadcom FullMac driver 156 + # list taken from 157 + # https://wireless.wiki.kernel.org/en/users/Drivers/brcm80211#brcmfmac 158 + if ($vendor eq "0x14e4" && 159 + ($device eq "0x43a3" || $device eq "0x43df" || $device eq "0x43ec" || 160 + $device eq "0x43d3" || $device eq "0x43d9" || $device eq "0x43e9" || 161 + $device eq "0x43ba" || $device eq "0x43bb" || $device eq "0x43bc" || 162 + $device eq "0xaa52" || $device eq "0x43ca" || $device eq "0x43cb" || 163 + $device eq "0x43cc" || $device eq "0x43c3" || $device eq "0x43c4" || 164 + $device eq "0x43c5" 165 + ) ) 166 + { 167 + # we need e.g. brcmfmac43602-pcie.bin 168 + push @imports, "<nixos/modules/hardware/network/broadcom-43xx.nix>"; 169 + } 170 + 155 171 # Can't rely on $module here, since the module may not be loaded 156 172 # due to missing firmware. Ideally we would check modules.pcimap 157 173 # here.
+68 -150
nixos/modules/rename.nix
··· 1 - { config, lib, options, ... }: 1 + { lib, ... }: 2 2 3 3 with lib; 4 4 5 - let 5 + { 6 + imports = [ 7 + (mkRenamedOptionModule [ "environment" "x11Packages" ] [ "environment" "systemPackages" ]) 8 + (mkRenamedOptionModule [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ]) 9 + (mkRenamedOptionModule [ "environment" "nix" ] [ "nix" "package" ]) 10 + (mkRenamedOptionModule [ "fonts" "enableFontConfig" ] [ "fonts" "fontconfig" "enable" ]) 11 + (mkRenamedOptionModule [ "fonts" "extraFonts" ] [ "fonts" "fonts" ]) 6 12 7 - alias = from: to: rename { 8 - inherit from to; 9 - name = "Alias"; 10 - use = id; 11 - define = id; 12 - visible = true; 13 - }; 13 + (mkRenamedOptionModule [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ]) 14 + (mkRenamedOptionModule [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ]) 15 + (mkRenamedOptionModule [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ]) 14 16 15 - # warn option was renamed 16 - obsolete = from: to: rename { 17 - inherit from to; 18 - name = "Obsolete name"; 19 - use = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x; 20 - define = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x; 21 - }; 22 - 23 - # abort if deprecated option is used 24 - deprecated = from: to: rename { 25 - inherit from to; 26 - name = "Deprecated name"; 27 - use = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'."; 28 - define = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'."; 29 - }; 30 - 31 - showOption = concatStringsSep "."; 32 - 33 - zipModules = list: 34 - zipAttrsWith (n: v: 35 - if tail v != [] then 36 - if all (o: isAttrs o && o ? _type) v then mkMerge v 37 - else if n == "_type" then head v 38 - else if n == "warnings" then concatLists v 39 - else if n == "description" || n == "apply" then 40 - abort "Cannot rename an option to multiple options." 41 - else zipModules v 42 - else head v 43 - ) list; 44 - 45 - rename = { from, to, name, use, define, visible ? false }: 46 - let 47 - setTo = setAttrByPath to; 48 - setFrom = setAttrByPath from; 49 - toOf = attrByPath to 50 - (abort "Renaming error: option `${showOption to}' does not exists."); 51 - fromOf = attrByPath from 52 - (abort "Internal error: option `${showOption from}' should be declared."); 53 - in 54 - [ { options = setFrom (mkOption { 55 - description = "${name} of <option>${showOption to}</option>."; 56 - apply = x: use (toOf config); 57 - inherit visible; 58 - }); 59 - 60 - config = setTo (mkAliasAndWrapDefinitions define (fromOf options)); 61 - } 62 - ]; 63 - 64 - obsolete' = option: singleton 65 - { options = setAttrByPath option (mkOption { 66 - default = null; 67 - visible = false; 68 - }); 69 - config.warnings = optional (getAttrFromPath option config != null) 70 - "The option `${showOption option}' defined in your configuration no longer has any effect; please remove it."; 71 - }; 72 - 73 - in zipModules ([] 74 - 75 - ++ obsolete [ "environment" "x11Packages" ] [ "environment" "systemPackages" ] 76 - ++ obsolete [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ] 77 - ++ obsolete [ "environment" "nix" ] [ "nix" "package" ] 78 - ++ obsolete [ "fonts" "enableFontConfig" ] [ "fonts" "fontconfig" "enable" ] 79 - ++ obsolete [ "fonts" "extraFonts" ] [ "fonts" "fonts" ] 80 - ++ alias [ "users" "extraUsers" ] [ "users" "users" ] 81 - ++ alias [ "users" "extraGroups" ] [ "users" "groups" ] 82 - 83 - ++ obsolete [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ] 84 - ++ obsolete [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ] 85 - ++ obsolete [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ] 86 - 87 - # FIXME: Remove these eventually. 88 - ++ obsolete [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ] 89 - ++ obsolete [ "boot" "systemd" "targets" ] [ "systemd" "targets" ] 90 - ++ obsolete [ "boot" "systemd" "services" ] [ "systemd" "services" ] 91 - 92 - # Old Grub-related options. 93 - ++ obsolete [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ] 94 - ++ obsolete [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ] 95 - ++ obsolete [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ] 96 - ++ obsolete [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ] 97 - ++ obsolete [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ] 98 - ++ obsolete [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ] 99 - 100 - ++ obsolete [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ] 101 - ++ obsolete [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ] 17 + # Old Grub-related options. 18 + (mkRenamedOptionModule [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ]) 19 + (mkRenamedOptionModule [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ]) 102 20 103 - # smartd 104 - ++ obsolete [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ] 21 + # smartd 22 + (mkRenamedOptionModule [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ]) 105 23 106 - # OpenSSH 107 - ++ obsolete [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ] 108 - ++ alias [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ] 109 - ++ obsolete [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ] 110 - ++ obsolete [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ] 111 - ++ obsolete [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ] 112 - ++ obsolete [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ] 113 - ++ obsolete [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ] 114 - ++ obsolete [ "services" "xserver" "startOpenSSHAgent" ] [ "programs" "ssh" "startAgent" ] 115 - ++ alias [ "services" "openssh" "knownHosts" ] [ "programs" "ssh" "knownHosts" ] 24 + # OpenSSH 25 + (mkRenamedOptionModule [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ]) 26 + (mkAliasOptionModule [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ]) 27 + (mkRenamedOptionModule [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ]) 28 + (mkRenamedOptionModule [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ]) 29 + (mkRenamedOptionModule [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ]) 30 + (mkRenamedOptionModule [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ]) 31 + (mkRenamedOptionModule [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ]) 32 + (mkRenamedOptionModule [ "services" "xserver" "startOpenSSHAgent" ] [ "programs" "ssh" "startAgent" ]) 33 + (mkAliasOptionModule [ "services" "openssh" "knownHosts" ] [ "programs" "ssh" "knownHosts" ]) 116 34 117 - # VirtualBox 118 - ++ obsolete [ "services" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ] 119 - ++ obsolete [ "services" "virtualboxGuest" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ] 120 - ++ obsolete [ "programs" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ] 121 - ++ obsolete [ "programs" "virtualbox" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ] 122 - ++ obsolete [ "programs" "virtualbox" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ] 123 - ++ obsolete [ "services" "virtualboxHost" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ] 124 - ++ obsolete [ "services" "virtualboxHost" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ] 125 - ++ obsolete [ "services" "virtualboxHost" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ] 35 + # VirtualBox 36 + (mkRenamedOptionModule [ "services" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ]) 37 + (mkRenamedOptionModule [ "services" "virtualboxGuest" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ]) 38 + (mkRenamedOptionModule [ "programs" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ]) 39 + (mkRenamedOptionModule [ "programs" "virtualbox" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ]) 40 + (mkRenamedOptionModule [ "programs" "virtualbox" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ]) 41 + (mkRenamedOptionModule [ "services" "virtualboxHost" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ]) 42 + (mkRenamedOptionModule [ "services" "virtualboxHost" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ]) 43 + (mkRenamedOptionModule [ "services" "virtualboxHost" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ]) 126 44 127 - # Tarsnap 128 - ++ obsolete [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ] 45 + # Tarsnap 46 + (mkRenamedOptionModule [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ]) 129 47 130 - # proxy 131 - ++ obsolete [ "nix" "proxy" ] [ "networking" "proxy" "default" ] 48 + # proxy 49 + (mkRenamedOptionModule [ "nix" "proxy" ] [ "networking" "proxy" "default" ]) 132 50 133 - # KDE 134 - ++ deprecated [ "kde" "extraPackages" ] [ "environment" "systemPackages" ] 135 - ++ obsolete [ "environment" "kdePackages" ] [ "environment" "systemPackages" ] 51 + # KDE 52 + (mkRenamedOptionModule [ "kde" "extraPackages" ] [ "environment" "systemPackages" ]) 53 + (mkRenamedOptionModule [ "environment" "kdePackages" ] [ "environment" "systemPackages" ]) 136 54 137 - # Multiple efi bootloaders now 138 - ++ obsolete [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ] 55 + # Multiple efi bootloaders now 56 + (mkRenamedOptionModule [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ]) 139 57 140 - # NixOS environment changes 141 - # !!! this hardcodes bash, could we detect from config which shell is actually used? 142 - ++ obsolete [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ] 58 + # NixOS environment changes 59 + # !!! this hardcodes bash, could we detect from config which shell is actually used? 60 + (mkRenamedOptionModule [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ]) 143 61 144 - ++ obsolete [ "services" "xserver" "driSupport" ] [ "hardware" "opengl" "driSupport" ] 145 - ++ obsolete [ "services" "xserver" "driSupport32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ] 146 - ++ obsolete [ "services" "xserver" "s3tcSupport" ] [ "hardware" "opengl" "s3tcSupport" ] 147 - ++ obsolete [ "hardware" "opengl" "videoDrivers" ] [ "services" "xserver" "videoDrivers" ] 62 + (mkRenamedOptionModule [ "services" "xserver" "driSupport" ] [ "hardware" "opengl" "driSupport" ]) 63 + (mkRenamedOptionModule [ "services" "xserver" "driSupport32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ]) 64 + (mkRenamedOptionModule [ "services" "xserver" "s3tcSupport" ] [ "hardware" "opengl" "s3tcSupport" ]) 65 + (mkRenamedOptionModule [ "hardware" "opengl" "videoDrivers" ] [ "services" "xserver" "videoDrivers" ]) 148 66 149 - ++ obsolete [ "services" "mysql55" ] [ "services" "mysql" ] 67 + (mkRenamedOptionModule [ "services" "mysql55" ] [ "services" "mysql" ]) 150 68 151 - ++ alias [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ] 69 + (mkAliasOptionModule [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ]) 152 70 153 - # XBMC 154 - ++ obsolete [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ] 155 - ++ obsolete [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ] 71 + # XBMC 72 + (mkRenamedOptionModule [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]) 73 + (mkRenamedOptionModule [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]) 156 74 157 - # DNSCrypt-proxy 158 - ++ obsolete [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ] 75 + # DNSCrypt-proxy 76 + (mkRenamedOptionModule [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ]) 159 77 160 - # Options that are obsolete and have no replacement. 161 - ++ obsolete' [ "boot" "loader" "grub" "bootDevice" ] 162 - ++ obsolete' [ "boot" "initrd" "luks" "enable" ] 163 - ++ obsolete' [ "programs" "bash" "enable" ] 164 - ++ obsolete' [ "services" "samba" "defaultShare" ] 165 - ++ obsolete' [ "services" "syslog-ng" "serviceName" ] 166 - ++ obsolete' [ "services" "syslog-ng" "listenToJournal" ] 167 - ++ obsolete' [ "ec2" "metadata" ] 168 - ++ obsolete' [ "services" "openvpn" "enable" ] 78 + # Options that are obsolete and have no replacement. 79 + (mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ]) 80 + (mkRemovedOptionModule [ "programs" "bash" "enable" ]) 81 + (mkRemovedOptionModule [ "services" "samba" "defaultShare" ]) 82 + (mkRemovedOptionModule [ "services" "syslog-ng" "serviceName" ]) 83 + (mkRemovedOptionModule [ "services" "syslog-ng" "listenToJournal" ]) 84 + (mkRemovedOptionModule [ "ec2" "metadata" ]) 85 + (mkRemovedOptionModule [ "services" "openvpn" "enable" ]) 169 86 170 - ) 87 + ]; 88 + }
+2 -1
nixos/modules/services/networking/copy-com.nix
··· 39 39 40 40 systemd.services."copy-com-${cfg.user}" = { 41 41 description = "Copy.com client"; 42 - after = [ "network.target" "local-fs.target" ]; 42 + wants = [ "network-online.target" ]; 43 + after = [ "network-online.target" "local-fs.target" ]; 43 44 wantedBy = [ "multi-user.target" ]; 44 45 serviceConfig = { 45 46 ExecStart = "${pkgs.copy-com}/bin/CopyConsole ${if cfg.debug then "-consoleOutput -debugToConsole=dirwatch,path-watch,csm_path,csm -debug -console" else ""}";
+11
nixos/modules/system/boot/loader/grub/grub.nix
··· 488 488 489 489 ]; 490 490 491 + 492 + imports = 493 + [ (mkRemovedOptionModule [ "boot" "loader" "grub" "bootDevice" ]) 494 + (mkRenamedOptionModule [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ]) 495 + (mkRenamedOptionModule [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ]) 496 + (mkRenamedOptionModule [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ]) 497 + (mkRenamedOptionModule [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ]) 498 + (mkRenamedOptionModule [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ]) 499 + (mkRenamedOptionModule [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ]) 500 + ]; 501 + 491 502 }
+7
nixos/modules/system/boot/systemd.nix
··· 772 772 773 773 }; 774 774 775 + # FIXME: Remove these eventually. 776 + imports = 777 + [ (mkRenamedOptionModule [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ]) 778 + (mkRenamedOptionModule [ "boot" "systemd" "targets" ] [ "systemd" "targets" ]) 779 + (mkRenamedOptionModule [ "boot" "systemd" "services" ] [ "systemd" "services" ]) 780 + ]; 781 + 775 782 }
+1 -1
nixos/modules/tasks/filesystems/nfs.nix
··· 90 90 serviceConfig.Type = "forking"; 91 91 serviceConfig.ExecStart = '' 92 92 @${pkgs.nfs-utils}/sbin/rpc.statd rpc.statd --no-notify \ 93 - ${if cfg.statdPort != null then "-p ${toString statdPort}" else ""} 93 + ${if cfg.statdPort != null then "-p ${toString cfg.statdPort}" else ""} 94 94 ''; 95 95 serviceConfig.Restart = "always"; 96 96 };
+1 -1
nixos/release-combined.nix
··· 51 51 (all nixos.tests.chromium) 52 52 (all nixos.tests.firefox) 53 53 (all nixos.tests.firewall) 54 - (all nixos.tests.gnome3) 54 + nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux 55 55 (all nixos.tests.installer.lvm) 56 56 (all nixos.tests.installer.luksroot) 57 57 (all nixos.tests.installer.separateBoot)
+12
pkgs/applications/audio/meterbridge/buf_rect.patch
··· 1 + --- ../tmp-orig/meterbridge-0.9.2/src/main.h 2003-06-05 11:42:41.000000000 +0200 2 + +++ ./src/main.h 2004-12-29 10:27:24.160912488 +0100 3 + @@ -8,7 +8,7 @@ 4 + 5 + extern SDL_Surface *screen; 6 + extern SDL_Surface *image, *meter, *meter_buf; 7 + -extern SDL_Rect win, buf_rect[MAX_METERS], dest[MAX_METERS]; 8 + +extern SDL_Rect win, dest[MAX_METERS]; 9 + 10 + extern jack_port_t *input_ports[MAX_METERS]; 11 + extern jack_port_t *output_ports[MAX_METERS]; 12 +
+26
pkgs/applications/audio/meterbridge/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, SDL, SDL_image, libjack2 2 + }: 3 + 4 + stdenv.mkDerivation rec { 5 + version = "0.9.2"; 6 + name = "meterbridge-${version}"; 7 + 8 + src = fetchurl { 9 + url = "http://plugin.org.uk/meterbridge/${name}.tar.gz"; 10 + sha256 = "0jb6g3kbfyr5yf8mvblnciva2bmc01ijpr51m21r27rqmgi8gj5k"; 11 + }; 12 + 13 + patches = [ ./buf_rect.patch ]; 14 + 15 + buildInputs = 16 + [ pkgconfig SDL SDL_image libjack2 17 + ]; 18 + 19 + meta = with stdenv.lib; { 20 + description = "Various meters (VU, PPM, DPM, JF, SCO) for Jack Audio Connection Kit"; 21 + homepage = http://plugin.org.uk/meterbridge/; 22 + license = licenses.gpl2; 23 + platforms = platforms.linux; 24 + maintainers = [ maintainers.nico202 ]; 25 + }; 26 + }
+28
pkgs/applications/editors/emacs-modes/markdown-mode/default.nix
··· 1 + { stdenv, fetchFromGitHub, emacs }: 2 + 3 + let 4 + version = "2.0-82-gfe30ef7"; 5 + in 6 + stdenv.mkDerivation { 7 + name = "markdown-mode-${version}"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "defunkt"; 11 + repo = "markdown-mode"; 12 + rev = "v${version}"; 13 + sha256 = "14a6r05j0g2ppq2q4kd14qyxwr6yv5jwndavbwzkmp6qhmm9k8nz"; 14 + }; 15 + 16 + buildInputs = [ emacs ]; 17 + 18 + buildPhase = '' 19 + emacs -L . --batch -f batch-byte-compile *.el 20 + ''; 21 + 22 + installPhase = '' 23 + install -d $out/share/emacs/site-lisp 24 + install *.el *.elc $out/share/emacs/site-lisp 25 + ''; 26 + 27 + meta.license = stdenv.lib.licenses.gpl3Plus; 28 + }
+4 -4
pkgs/applications/editors/neovim/default.nix
··· 14 14 15 15 let 16 16 17 - version = "2015-10-08"; 17 + version = "2015-10-12"; 18 18 19 19 # Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness: 20 20 neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation { ··· 58 58 name = "neovim-${version}"; 59 59 60 60 src = fetchFromGitHub { 61 - sha256 = "1kx4jsajl09klg0h0gzsv7mjz2kr09q4glznxwf8f5cncahgldfc"; 62 - rev = "57d3a2a52fea57874d08472d0f8ee8f1bcee87c1"; 61 + sha256 = "1rlybdldz708pz7k0qs2rpm0cjk8ywwyj5s38hyq4mzsswqszdsc"; 62 + rev = "a3f048ee06dea15490d7b874d295c3fc850cdc51"; 63 63 repo = "neovim"; 64 64 owner = "neovim"; 65 65 }; ··· 103 103 '' + optionalString withPython '' 104 104 ln -s ${pythonEnv}/bin/python $out/bin/nvim-python 105 105 '' + optionalString withPython3 '' 106 - ln -s ${python3Env}/bin/python $out/bin/nvim-python3 106 + ln -s ${python3Env}/bin/python3 $out/bin/nvim-python3 107 107 '' + optionalString (withPython || withPython3) '' 108 108 wrapProgram $out/bin/nvim --add-flags "${ 109 109 (optionalString withPython
+2 -2
pkgs/applications/graphics/pencil/default.nix
··· 1 1 { stdenv, fetchurl, makeWrapper, xulrunner }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.0.13"; 4 + version = "2.0.14"; 5 5 name = "pencil-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz"; 9 - sha256 = "150jsaq27n01l0vf10jiyrlfm0canqhphdxi42di96b9zsfkphpk"; 9 + sha256 = "59f46db863e6d95ee6987e600d658ad4b58b03b0744c5c6d17ce04f5ae92d260"; 10 10 11 11 }; 12 12
+2 -2
pkgs/applications/graphics/simple-scan/default.nix
··· 1 1 { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb 2 2 , libxml2, makeWrapper, packagekit, pkgconfig, saneBackends, systemd, vala }: 3 3 4 - let version = "3.18.0"; in 4 + let version = "3.18.1"; in 5 5 stdenv.mkDerivation rec { 6 6 name = "simple-scan-${version}"; 7 7 8 8 src = fetchurl { 9 - sha256 = "09qki4h1px65fxwpr7jppzqsi5cfcb8168p13blp3wcfizjgb9gl"; 9 + sha256 = "1i37j36kbn1h8yfzcvbis6f38xz2nj5512ls3gb0j5na0bvja2cw"; 10 10 url = "https://launchpad.net/simple-scan/3.18/${version}/+download/${name}.tar.xz"; 11 11 }; 12 12
+2 -2
pkgs/applications/graphics/yed/default.nix
··· 1 1 { stdenv, fetchurl, requireFile, makeWrapper, unzip, jre }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "yEd-3.14.3"; 4 + name = "yEd-3.14.4"; 5 5 6 6 src = requireFile { 7 7 name = "${name}.zip"; 8 8 url = "https://www.yworks.com/en/products/yfiles/yed/"; 9 - sha256 = "0xgazknbz82sgk65hxmvbycl1vd25z80a7jgwjgw7syicrgmplcl"; 9 + sha256 = "0pm271ss6cq2s6cv9ww92haaq2abkjxd9dvc8d72h6af5awv8xy6"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ unzip makeWrapper ];
+9 -7
pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix
··· 1 - { stdenv, fetchgit }: 1 + { stdenv, fetchFromGitHub }: 2 2 3 - stdenv.mkDerivation { 4 - name = "urxvt-perls-2015-03-28"; 3 + stdenv.mkDerivation rec { 4 + name = "urxvt-perls-${version}"; 5 + version = "2.2"; 5 6 6 - src = fetchgit { 7 - url = "git://github.com/muennich/urxvt-perls"; 8 - rev = "e4dbde31edd19e2f4c2b6c91117ee91e2f83ddd7"; 9 - sha256 = "1f8a27c3d54377fdd4ab0be2f4efb8329d4900bb1c792b306dc23b5ee59260b1"; 7 + src = fetchFromGitHub { 8 + owner = "muennich"; 9 + repo = "urxvt-perls"; 10 + rev = version; 11 + sha256 = "1cb0jbjmwfy2dlq2ny8wpc04k79jp3pz9qhbmgagsxs3sp1jg2hz"; 10 12 }; 11 13 12 14 installPhase = ''
+5 -1
pkgs/applications/misc/rxvt_unicode/default.nix
··· 1 - { stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl, 1 + { stdenv, fetchurl, fetchpatch, perlSupport, libX11, libXt, libXft, ncurses, perl, 2 2 fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf, 3 3 unicode3Support }: 4 4 ··· 28 28 patches = [ 29 29 ./rxvt-unicode-9.06-font-width.patch 30 30 ./rxvt-unicode-256-color-resources.patch 31 + (fetchpatch { 32 + url = "https://raw.githubusercontent.com/mina86/urxvt-tabbedex/ad4f54c8b8d3a01fc17975fd3fd14aa674c07d2b/rxvt-unicode-scroll-bug-fix.patch"; 33 + sha256 = "1ild0r6y7jb800yiss5pgd4k60s7l9njv3nn3x280yvg1lx6ihpg"; 34 + }) 31 35 ] 32 36 ++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch; 33 37
+8 -8
pkgs/applications/networking/browsers/chromium/source/sources.nix
··· 7 7 sha256bin64 = "1ycdp37ikdc9w4hp9qgpzjp47zh37g01ax8x4ack202vrv0dxhsh"; 8 8 }; 9 9 beta = { 10 - version = "46.0.2490.52"; 11 - sha256 = "00sgb1pnp3fcijwdwpngnnddmn5nrbljsqz7f6dlnd63qfc91xjw"; 12 - sha256bin32 = "10jgcxc2zwffg8lxi55zl9apql6pyxh1g1n3z46gcb6j6am4y5m5"; 13 - sha256bin64 = "0i839ir4qcjl9llpqnwy793hvbdfh898x1izc5k93h7nm6i34ry9"; 10 + version = "46.0.2490.64"; 11 + sha256 = "1k2zir4rbs7hwdasbjpwyjr4ibis2vm6lx45bfm2r2f469mf3y2g"; 12 + sha256bin32 = "0j1xncws0r5z2rvvjsi0gxxmnslfcbiasaxr6bjhbxnzjv7chrd4"; 13 + sha256bin64 = "1m8vv3qh79an3719afz7n2ijqanf4cyxz2q4bzm512x52z5zipl7"; 14 14 }; 15 15 stable = { 16 - version = "45.0.2454.101"; 17 - sha256 = "1yw5xlgy5hd3iwcyf0sillq5p367fcpvp4mizpmv52cwmv52ss0v"; 18 - sha256bin32 = "1ll8lmkmx7v74naz1vcnrwk5ighh0skfcb66jkq4kgxrb5fjgwm5"; 19 - sha256bin64 = "1cwbd3n77dnbfnrfr8g0qng9xkgvz6y7mx489gpx1wsamgi42bzj"; 16 + version = "46.0.2490.71"; 17 + sha256 = "1dnwhwvn39x8lm1jszjn8y7vy478zy75gm696rr2dvk4kqj1hjyd"; 18 + sha256bin32 = "1v1acg32dzmkydzy7sh6xjbzqar052iw8x8hql2yjz5kxznir4sf"; 19 + sha256bin64 = "15ladhxiym760mid5zq09vp73irzwlp31br9yqslzgv4460ma3np"; 20 20 }; 21 21 }
+3 -3
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
··· 36 36 37 37 let 38 38 # -> http://get.adobe.com/flashplayer/ 39 - version = "11.2.202.521"; 39 + version = "11.2.202.535"; 40 40 41 41 src = 42 42 if stdenv.system == "x86_64-linux" then ··· 47 47 else rec { 48 48 inherit version; 49 49 url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz"; 50 - sha256 = "1fckmapjy7rvy1g5jr71x69j7vviy9262wwpwk6cipym2fi7zvid"; 50 + sha256 = "13fy842plbnv4w081sbhga0jrpbwz8yydg49c2v96l2marmzw9zp"; 51 51 } 52 52 else if stdenv.system == "i686-linux" then 53 53 if debug then ··· 60 60 else rec { 61 61 inherit version; 62 62 url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz"; 63 - sha256 = "1483bi34ymchv1cqg57whxhlrhhvwhcw33zjgwzmy7bacxbkj9ia"; 63 + sha256 = "0z99nz1k0cf86dgs367ddxfnf05m32psidpmdzi5qiqaj10h6j6s"; 64 64 } 65 65 else throw "Flash Player is not supported on this platform"; 66 66
+4 -4
pkgs/applications/networking/feedreaders/rsstail/default.nix
··· 1 1 { stdenv, fetchFromGitHub, cppcheck, libmrss }: 2 2 3 - let version = "2015-09-06"; in 3 + let version = "2.1"; in 4 4 stdenv.mkDerivation rec { 5 5 name = "rsstail-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 - sha256 = "1rfzib5fzm0i8wf3njld1lvxgbci0hxxnvp2qx1k4bwpv744xkpx"; 9 - rev = "16636539e4cc75dafbfa7f05539769be7dad4b66"; 8 + sha256 = "12p69i3g1fwlw0bds9jqsdmzkid3k5a41w31d227i7vm12wcvjf6"; 9 + rev = "6f2436185372b3f945a4989406c4b6a934fe8a95"; 10 10 repo = "rsstail"; 11 11 owner = "flok99"; 12 12 }; ··· 15 15 ++ stdenv.lib.optional doCheck cppcheck; 16 16 17 17 postPatch = '' 18 - substituteInPlace Makefile --replace -liconv "" 18 + substituteInPlace Makefile --replace -liconv_hook "" 19 19 ''; 20 20 21 21 makeFlags = "prefix=$(out)";
+2 -2
pkgs/applications/networking/instant-messengers/baresip/default.nix
··· 4 4 , gsm, speex, portaudio, spandsp, libuuid 5 5 }: 6 6 stdenv.mkDerivation rec { 7 - version = "0.4.14"; 7 + version = "0.4.15"; 8 8 name = "baresip-${version}"; 9 9 src=fetchurl { 10 10 url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz"; 11 - sha256 = "19vn63j6dpybjy14mgnwf0yk2jbcbfdjs50whzwyrrkcv6ipj6hc"; 11 + sha256 = "13712li6y3ikwzl17j46w25xyv3z98yqj7zpr3jifyvbna9ls5r3"; 12 12 }; 13 13 buildInputs = [zlib openssl libre librem pkgconfig 14 14 cairo mpg123 gstreamer gst_ffmpeg gst_plugins_base gst_plugins_bad gst_plugins_good
+2 -2
pkgs/applications/networking/instant-messengers/gajim/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 name = "gajim-${version}"; 23 - version = "0.16.3"; 23 + version = "0.16.4"; 24 24 25 25 src = fetchurl { 26 26 url = "http://www.gajim.org/downloads/0.16/gajim-${version}.tar.bz2"; 27 - sha256 = "05a59hf9wna6n9fi0a4bhz1hifqj21bwb4ff9rd0my23rdwmij51"; 27 + sha256 = "0zyfs7q1qg8iqszr8l1gb18gqla6zrrfsgpmbxblpi9maqxas5i1"; 28 28 }; 29 29 30 30 patches = [
+3 -3
pkgs/applications/version-management/git-and-tools/git-crypt/default.nix
··· 18 18 make install PREFIX=$out 19 19 ''; 20 20 21 - meta = { 21 + meta = with stdenv.lib; { 22 22 homepage = "https://www.agwa.name/projects/git-crypt"; 23 23 description = "transparent file encryption in git"; 24 24 longDescription = '' ··· 33 33 entire repository. 34 34 ''; 35 35 downloadPage = "https://github.com/AGWA/git-crypt/releases"; 36 - license = stdenv.lib.licenses.gpl3; 36 + license = licenses.gpl3; 37 37 version = "0.5.0"; 38 - maintainers = [ "Desmond O. Chang <dochang@gmail.com>" ]; 38 + maintainers = [ maintainers.dochang ]; 39 39 }; 40 40 41 41 }
+1
pkgs/applications/video/kodi/default.nix
··· 110 110 --prefix LD_LIBRARY_PATH ":" "${libvdpau}/lib" \ 111 111 --prefix LD_LIBRARY_PATH ":" "${libcec}/lib" \ 112 112 --prefix LD_LIBRARY_PATH ":" "${libcec_platform}/lib" \ 113 + --prefix LD_LIBRARY_PATH ":" "${libass}/lib" \ 113 114 --prefix LD_LIBRARY_PATH ":" "${rtmpdump}/lib" 114 115 done 115 116 '';
+5 -1
pkgs/applications/virtualization/virt-manager/default.nix
··· 1 1 { stdenv, fetchurl, pythonPackages, intltool, libxml2Python, curl, python 2 2 , wrapGAppsHook, virtinst, pyGtkGlade, pythonDBus, gnome_python, gtkvnc, vte 3 3 , gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib 4 - , avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3 4 + , avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3, system-libvirt 5 5 }: 6 6 7 7 with stdenv.lib; ··· 39 39 wrapGAppsHook 40 40 dconf 41 41 ]; 42 + 43 + patchPhase = '' 44 + sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py 45 + ''; 42 46 43 47 configurePhase = '' 44 48 sed -i 's/from distutils.core/from setuptools/g' setup.py
+1 -1
pkgs/build-support/grsecurity/default.nix
··· 33 33 34 34 grKernel = if cfg.stable 35 35 then mkKernel pkgs.linux_3_14 stable-patch 36 - else mkKernel pkgs.linux_4_1 test-patch; 36 + else mkKernel pkgs.linux_4_2 test-patch; 37 37 38 38 ## -- grsecurity configuration --------------------------------------------- 39 39
+26
pkgs/data/fonts/kawkab-mono/default.nix
··· 1 + {stdenv, fetchurl, unzip}: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "kawkab-mono-20151015"; 5 + 6 + src = fetchurl { 7 + url = "http://makkuk.com/kawkab-mono/downloads/kawkab-mono-0.1.zip"; 8 + sha256 = "16pv9s4q7199aacbzfi2d10rcrq77vyfvzcy42g80nhfrkz1cb0m"; 9 + }; 10 + 11 + buildInputs = [ unzip ]; 12 + sourceRoot = "."; 13 + 14 + installPhase = '' 15 + mkdir -p $out/share/fonts/truetype 16 + cp *.ttf $out/share/fonts/truetype 17 + ''; 18 + 19 + meta = { 20 + description = "An arab fixed-width font"; 21 + homepage = "http://makkuk.com/kawkab-mono/"; 22 + license = stdenv.lib.licenses.ofl; 23 + }; 24 + } 25 + 26 +
+36
pkgs/data/fonts/paratype-pt/mono.nix
··· 1 + { stdenv, fetchurl, unzip }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "paratype-pt-mono"; 5 + 6 + src = fetchurl rec { 7 + url = "http://www.paratype.ru/uni/public/PTMono.zip"; 8 + sha256 = "1wqaai7d6xh552vvr5svch07kjn1q89ab5jimi2z0sbd0rbi86vl"; 9 + }; 10 + 11 + buildInputs = [unzip]; 12 + 13 + phases = "unpackPhase installPhase"; 14 + sourceRoot = "."; 15 + 16 + installPhase = '' 17 + mkdir -p $out/share/fonts/truetype 18 + mkdir -p $out/share/doc/paratype 19 + cp *.ttf $out/share/fonts/truetype 20 + cp *.txt $out/share/doc/paratype 21 + ''; 22 + 23 + meta = with stdenv.lib; { 24 + homepage = "http://www.paratype.ru/public/"; 25 + description = "An open Paratype font"; 26 + 27 + license = "Open Paratype license"; 28 + # no commercial distribution of the font on its own 29 + # must rename on modification 30 + # http://www.paratype.ru/public/pt_openlicense.asp 31 + 32 + platforms = platforms.all; 33 + maintainers = with maintainers; [ raskin ]; 34 + }; 35 + } 36 +
+36
pkgs/data/fonts/paratype-pt/sans.nix
··· 1 + { stdenv, fetchurl, unzip }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "paratype-pt-sane"; 5 + 6 + src = fetchurl rec { 7 + url = "http://www.paratype.ru/uni/public/PTSans.zip"; 8 + sha256 = "1j9gkbqyhxx8pih5agr9nl8vbpsfr9vdqmhx73ji3isahqm3bhv5"; 9 + }; 10 + 11 + buildInputs = [unzip]; 12 + 13 + phases = "unpackPhase installPhase"; 14 + sourceRoot = "."; 15 + 16 + installPhase = '' 17 + mkdir -p $out/share/fonts/truetype 18 + mkdir -p $out/share/doc/paratype 19 + cp *.ttf $out/share/fonts/truetype 20 + cp *.txt $out/share/doc/paratype 21 + ''; 22 + 23 + meta = with stdenv.lib; { 24 + homepage = "http://www.paratype.ru/public/"; 25 + description = "An open Paratype font"; 26 + 27 + license = "Open Paratype license"; 28 + # no commercial distribution of the font on its own 29 + # must rename on modification 30 + # http://www.paratype.ru/public/pt_openlicense.asp 31 + 32 + platforms = platforms.all; 33 + maintainers = with maintainers; [ raskin ]; 34 + }; 35 + } 36 +
+36
pkgs/data/fonts/paratype-pt/serif.nix
··· 1 + { stdenv, fetchurl, unzip }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "paratype-pt-serif"; 5 + 6 + src = fetchurl rec { 7 + url = "http://www.paratype.ru/uni/public/PTSerif.zip"; 8 + sha256 = "0x3l58c1rvwmh83bmmgqwwbw9av1mvvq68sw2hdkyyihjvamyvvs"; 9 + }; 10 + 11 + buildInputs = [unzip]; 12 + 13 + phases = "unpackPhase installPhase"; 14 + sourceRoot = "."; 15 + 16 + installPhase = '' 17 + mkdir -p $out/share/fonts/truetype 18 + mkdir -p $out/share/doc/paratype 19 + cp *.ttf $out/share/fonts/truetype 20 + cp *.txt $out/share/doc/paratype 21 + ''; 22 + 23 + meta = with stdenv.lib; { 24 + homepage = "http://www.paratype.ru/public/"; 25 + description = "An open Paratype font"; 26 + 27 + license = "Open Paratype license"; 28 + # no commercial distribution of the font on its own 29 + # must rename on modification 30 + # http://www.paratype.ru/public/pt_openlicense.asp 31 + 32 + platforms = platforms.all; 33 + maintainers = with maintainers; [ raskin ]; 34 + }; 35 + } 36 +
+3 -3
pkgs/data/misc/geolite-legacy/default.nix
··· 8 8 9 9 # Annoyingly, these files are updated without a change in URL. This means that 10 10 # builds will start failing every month or so, until the hashes are updated. 11 - version = "2015-10-09"; 11 + version = "2015-10-13"; 12 12 in 13 13 stdenv.mkDerivation { 14 14 name = "geolite-legacy-${version}"; ··· 27 27 "0jdgfcy90mk7q25rhb8ymnddkskmp2cmyzmbjr3ij0zvbbpzxl4i"; 28 28 srcGeoIPASNum = fetchDB 29 29 "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" 30 - "05j2nygvb7xi4s636dik12vgrdi37q5fdv5k3liqgswf9z0msz81"; 30 + "0j73lw2i6nnx1mgp1hspfa95zca5h0hqj12g16rln7pss868wnwi"; 31 31 srcGeoIPASNumv6 = fetchDB 32 32 "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" 33 - "17s7pcqmfd9xvq0hd7g7nh62sjayl24w04ifm39snrq2a32l667n"; 33 + "1id4rkxp5pppr274y276w2zmx44dn0h44d4ax780g8cbhlc9n2br"; 34 34 35 35 meta = with stdenv.lib; { 36 36 inherit version;
+5 -4
pkgs/desktops/gnome-3/3.16/misc/geary/default.nix
··· 5 5 , gnome3, librsvg, gnome_doc_utils, webkitgtk }: 6 6 7 7 let 8 - majorVersion = "0.8"; 8 + majorVersion = "0.10"; 9 + minorVersion = "0"; 9 10 in 10 11 stdenv.mkDerivation rec { 11 - name = "geary-${majorVersion}.2"; 12 + name = "geary-${majorVersion}.${minorVersion}"; 12 13 13 14 src = fetchurl { 14 15 url = "mirror://gnome/sources/geary/${majorVersion}/${name}.tar.xz"; 15 - sha256 = "3cfa626168935acf49c9415fad54c7849f17fd833026cfd3c224ba0fb892d641"; 16 + sha256 = "46197a5a1b8b040adcee99082dbfd9fff9ca804e3bf0055a2e90b13214bdbca5"; 16 17 }; 17 18 18 19 propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; ··· 39 40 40 41 enableParallelBuilding = true; 41 42 42 - patches = [ ./disable_valadoc.patch ]; 43 + # patches = [ ./disable_valadoc.patch ]; 43 44 patchFlags = "-p0"; 44 45 45 46 meta = with stdenv.lib; {
+4 -5
pkgs/development/compilers/uhc/default.nix
··· 1 1 { stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages }: 2 2 3 - let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [shuffle hashable mtl network uhc-util uulib] ); 3 + let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [fgl vector syb uulib network binary hashable uhc-util mtl transformers directory containers array process filepath shuffle uuagc] ); 4 4 in stdenv.mkDerivation rec { 5 5 # Important: 6 6 # The commits "Fixate/tag v..." are the released versions. 7 7 # Ignore the "bumped version to ...." commits, they do not 8 8 # correspond to releases. 9 - version = "1.1.9.1.20150611"; 9 + version = "1.1.9.1"; 10 10 name = "uhc-${version}"; 11 11 12 12 src = fetchgit { 13 13 url = "https://github.com/UU-ComputerScience/uhc.git"; 14 - rev = "b80098e07d12900f098ea964b1d2b3f38e5c9900"; 15 - sha256 = "14qg1fd9pgbczcmn5ggkd9674qadx1izmz8363ps7c207dg94f9x"; 14 + rev = "ce93d01486972c994ea2bbbd3d43859911120c39"; 15 + sha256 = "1y670sc6ky74l3msayzqjlkjv1kpv3g35pirsq3q79klzvnpyj2x"; 16 16 }; 17 17 18 18 postUnpack = "sourceRoot=\${sourceRoot}/EHC"; ··· 50 50 # On Darwin, the GNU libtool is used, which does not 51 51 # support the -static flag and thus breaks the build. 52 52 platforms = ["x86_64-linux"]; 53 - broken = true; # https://github.com/UU-ComputerScience/uhc/issues/60 54 53 }; 55 54 }
+2 -2
pkgs/development/haskell-modules/configuration-common.nix
··· 635 635 # Uses OpenGL in testing 636 636 caramia = dontCheck super.caramia; 637 637 638 - # Supports only 3.4 for now, https://github.com/bscarlet/llvm-general/issues/144 639 - llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_34; }; 638 + # Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142 639 + llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_35; }; 640 640 641 641 # Needs help finding LLVM. 642 642 spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm;
+3
pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
··· 91 91 # Needs hashable on pre 7.10.x compilers. 92 92 nats = addBuildDepend super.nats self.hashable; 93 93 94 + # Needs void on pre 7.10.x compilers. 95 + conduit = addBuildDepend super.conduit self.void; 96 + 94 97 }
+3
pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
··· 73 73 # Newer versions require bytestring >=0.10. 74 74 tar = super.tar_0_4_1_0; 75 75 76 + # Needs void on pre 7.10.x compilers. 77 + conduit = addBuildDepend super.conduit self.void; 78 + 76 79 }
+3
pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
··· 73 73 # Newer versions require bytestring >=0.10. 74 74 tar = super.tar_0_4_1_0; 75 75 76 + # Needs void on pre 7.10.x compilers. 77 + conduit = addBuildDepend super.conduit self.void; 78 + 76 79 }
+3
pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
··· 82 82 # Newer versions require bytestring >=0.10. 83 83 tar = super.tar_0_4_1_0; 84 84 85 + # Needs void on pre 7.10.x compilers. 86 + conduit = addBuildDepend super.conduit self.void; 87 + 85 88 }
+3 -4
pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
··· 79 79 # Needs hashable on pre 7.10.x compilers. 80 80 nats = addBuildDepend super.nats self.hashable; 81 81 82 - # Newer versions always trigger the non-deterministic library ID bug 83 - # and are virtually impossible to compile on Hydra. 84 - conduit = super.conduit_1_2_4_1; 85 - 86 82 # https://github.com/magthe/sandi/issues/7 87 83 sandi = overrideCabal super.sandi (drv: { 88 84 postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal"; ··· 95 91 # bytestring and ghc-mod won't build without convertible 96 92 convertible = markBroken super.convertible; 97 93 ghc-mod = markBroken super.ghc-mod; 94 + 95 + # Needs void on pre 7.10.x compilers. 96 + conduit = addBuildDepend super.conduit self.void; 98 97 99 98 }
+3
pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
··· 138 138 xss-sanitize_0_3_5_4 = addBuildDepend super.xss-sanitize_0_3_5_4 self.network; 139 139 xss-sanitize_0_3_5_5 = addBuildDepend super.xss-sanitize_0_3_5_5 self.network; 140 140 141 + # Needs void on pre 7.10.x compilers. 142 + conduit = addBuildDepend super.conduit self.void; 143 + 141 144 }
+3
pkgs/development/haskell-modules/configuration-lts-0.0.nix
··· 617 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 620 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 622 "Lastik" = dontDistribute super."Lastik"; 622 623 "Lattices" = dontDistribute super."Lattices"; ··· 3035 3036 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3036 3037 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3037 3038 "finite-field" = dontDistribute super."finite-field"; 3039 + "first-and-last" = dontDistribute super."first-and-last"; 3038 3040 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3039 3041 "firstify" = dontDistribute super."firstify"; 3040 3042 "fishfood" = dontDistribute super."fishfood"; ··· 7658 7660 "timecalc" = dontDistribute super."timecalc"; 7659 7661 "timeconsole" = dontDistribute super."timeconsole"; 7660 7662 "timeit" = dontDistribute super."timeit"; 7663 + "timeless" = dontDistribute super."timeless"; 7661 7664 "timeout" = dontDistribute super."timeout"; 7662 7665 "timeout-control" = dontDistribute super."timeout-control"; 7663 7666 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.1.nix
··· 617 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 620 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 622 "Lastik" = dontDistribute super."Lastik"; 622 623 "Lattices" = dontDistribute super."Lattices"; ··· 3034 3035 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3035 3036 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3036 3037 "finite-field" = dontDistribute super."finite-field"; 3038 + "first-and-last" = dontDistribute super."first-and-last"; 3037 3039 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3038 3040 "firstify" = dontDistribute super."firstify"; 3039 3041 "fishfood" = dontDistribute super."fishfood"; ··· 7657 7659 "timecalc" = dontDistribute super."timecalc"; 7658 7660 "timeconsole" = dontDistribute super."timeconsole"; 7659 7661 "timeit" = dontDistribute super."timeit"; 7662 + "timeless" = dontDistribute super."timeless"; 7660 7663 "timeout" = dontDistribute super."timeout"; 7661 7664 "timeout-control" = dontDistribute super."timeout-control"; 7662 7665 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.2.nix
··· 617 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 620 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 622 "Lastik" = dontDistribute super."Lastik"; 622 623 "Lattices" = dontDistribute super."Lattices"; ··· 3034 3035 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3035 3036 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3036 3037 "finite-field" = dontDistribute super."finite-field"; 3038 + "first-and-last" = dontDistribute super."first-and-last"; 3037 3039 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3038 3040 "firstify" = dontDistribute super."firstify"; 3039 3041 "fishfood" = dontDistribute super."fishfood"; ··· 7657 7659 "timecalc" = dontDistribute super."timecalc"; 7658 7660 "timeconsole" = dontDistribute super."timeconsole"; 7659 7661 "timeit" = dontDistribute super."timeit"; 7662 + "timeless" = dontDistribute super."timeless"; 7660 7663 "timeout" = dontDistribute super."timeout"; 7661 7664 "timeout-control" = dontDistribute super."timeout-control"; 7662 7665 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.3.nix
··· 617 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 620 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 622 "Lastik" = dontDistribute super."Lastik"; 622 623 "Lattices" = dontDistribute super."Lattices"; ··· 3034 3035 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3035 3036 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3036 3037 "finite-field" = dontDistribute super."finite-field"; 3038 + "first-and-last" = dontDistribute super."first-and-last"; 3037 3039 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3038 3040 "firstify" = dontDistribute super."firstify"; 3039 3041 "fishfood" = dontDistribute super."fishfood"; ··· 7657 7659 "timecalc" = dontDistribute super."timecalc"; 7658 7660 "timeconsole" = dontDistribute super."timeconsole"; 7659 7661 "timeit" = dontDistribute super."timeit"; 7662 + "timeless" = dontDistribute super."timeless"; 7660 7663 "timeout" = dontDistribute super."timeout"; 7661 7664 "timeout-control" = dontDistribute super."timeout-control"; 7662 7665 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.4.nix
··· 617 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 620 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 622 "Lastik" = dontDistribute super."Lastik"; 622 623 "Lattices" = dontDistribute super."Lattices"; ··· 3033 3034 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3034 3035 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3035 3036 "finite-field" = dontDistribute super."finite-field"; 3037 + "first-and-last" = dontDistribute super."first-and-last"; 3036 3038 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3037 3039 "firstify" = dontDistribute super."firstify"; 3038 3040 "fishfood" = dontDistribute super."fishfood"; ··· 7652 7654 "timecalc" = dontDistribute super."timecalc"; 7653 7655 "timeconsole" = dontDistribute super."timeconsole"; 7654 7656 "timeit" = dontDistribute super."timeit"; 7657 + "timeless" = dontDistribute super."timeless"; 7655 7658 "timeout" = dontDistribute super."timeout"; 7656 7659 "timeout-control" = dontDistribute super."timeout-control"; 7657 7660 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.5.nix
··· 617 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 620 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 622 "Lastik" = dontDistribute super."Lastik"; 622 623 "Lattices" = dontDistribute super."Lattices"; ··· 3033 3034 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3034 3035 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3035 3036 "finite-field" = dontDistribute super."finite-field"; 3037 + "first-and-last" = dontDistribute super."first-and-last"; 3036 3038 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3037 3039 "firstify" = dontDistribute super."firstify"; 3038 3040 "fishfood" = dontDistribute super."fishfood"; ··· 7652 7654 "timecalc" = dontDistribute super."timecalc"; 7653 7655 "timeconsole" = dontDistribute super."timeconsole"; 7654 7656 "timeit" = dontDistribute super."timeit"; 7657 + "timeless" = dontDistribute super."timeless"; 7655 7658 "timeout" = dontDistribute super."timeout"; 7656 7659 "timeout-control" = dontDistribute super."timeout-control"; 7657 7660 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.6.nix
··· 617 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 620 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 622 "Lastik" = dontDistribute super."Lastik"; 622 623 "Lattices" = dontDistribute super."Lattices"; ··· 3030 3031 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3031 3032 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3032 3033 "finite-field" = dontDistribute super."finite-field"; 3034 + "first-and-last" = dontDistribute super."first-and-last"; 3033 3035 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3034 3036 "firstify" = dontDistribute super."firstify"; 3035 3037 "fishfood" = dontDistribute super."fishfood"; ··· 7646 7648 "timecalc" = dontDistribute super."timecalc"; 7647 7649 "timeconsole" = dontDistribute super."timeconsole"; 7648 7650 "timeit" = dontDistribute super."timeit"; 7651 + "timeless" = dontDistribute super."timeless"; 7649 7652 "timeout" = dontDistribute super."timeout"; 7650 7653 "timeout-control" = dontDistribute super."timeout-control"; 7651 7654 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.7.nix
··· 617 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 620 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 622 "Lastik" = dontDistribute super."Lastik"; 622 623 "Lattices" = dontDistribute super."Lattices"; ··· 3030 3031 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3031 3032 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3032 3033 "finite-field" = dontDistribute super."finite-field"; 3034 + "first-and-last" = dontDistribute super."first-and-last"; 3033 3035 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3034 3036 "firstify" = dontDistribute super."firstify"; 3035 3037 "fishfood" = dontDistribute super."fishfood"; ··· 7646 7648 "timecalc" = dontDistribute super."timecalc"; 7647 7649 "timeconsole" = dontDistribute super."timeconsole"; 7648 7650 "timeit" = dontDistribute super."timeit"; 7651 + "timeless" = dontDistribute super."timeless"; 7649 7652 "timeout" = dontDistribute super."timeout"; 7650 7653 "timeout-control" = dontDistribute super."timeout-control"; 7651 7654 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-1.0.nix
··· 614 614 "LambdaNet" = dontDistribute super."LambdaNet"; 615 615 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 616 616 "LambdaShell" = dontDistribute super."LambdaShell"; 617 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 618 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 619 "Lastik" = dontDistribute super."Lastik"; 619 620 "Lattices" = dontDistribute super."Lattices"; ··· 3020 3021 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3021 3022 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3022 3023 "finite-field" = dontDistribute super."finite-field"; 3024 + "first-and-last" = dontDistribute super."first-and-last"; 3023 3025 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3024 3026 "firstify" = dontDistribute super."firstify"; 3025 3027 "fishfood" = dontDistribute super."fishfood"; ··· 7630 7632 "timecalc" = dontDistribute super."timecalc"; 7631 7633 "timeconsole" = dontDistribute super."timeconsole"; 7632 7634 "timeit" = dontDistribute super."timeit"; 7635 + "timeless" = dontDistribute super."timeless"; 7633 7636 "timeout" = dontDistribute super."timeout"; 7634 7637 "timeout-control" = dontDistribute super."timeout-control"; 7635 7638 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-1.1.nix
··· 614 614 "LambdaNet" = dontDistribute super."LambdaNet"; 615 615 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 616 616 "LambdaShell" = dontDistribute super."LambdaShell"; 617 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 618 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 619 "Lastik" = dontDistribute super."Lastik"; 619 620 "Lattices" = dontDistribute super."Lattices"; ··· 3014 3015 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3015 3016 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3016 3017 "finite-field" = dontDistribute super."finite-field"; 3018 + "first-and-last" = dontDistribute super."first-and-last"; 3017 3019 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3018 3020 "firstify" = dontDistribute super."firstify"; 3019 3021 "fishfood" = dontDistribute super."fishfood"; ··· 7612 7614 "timecalc" = dontDistribute super."timecalc"; 7613 7615 "timeconsole" = dontDistribute super."timeconsole"; 7614 7616 "timeit" = dontDistribute super."timeit"; 7617 + "timeless" = dontDistribute super."timeless"; 7615 7618 "timeout" = dontDistribute super."timeout"; 7616 7619 "timeout-control" = dontDistribute super."timeout-control"; 7617 7620 "timeout-with-results" = dontDistribute super."timeout-with-results";
+6
pkgs/development/haskell-modules/configuration-lts-1.10.nix
··· 613 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 618 "Lastik" = dontDistribute super."Lastik"; 618 619 "Lattices" = dontDistribute super."Lattices"; ··· 3005 3006 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3006 3007 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3007 3008 "finite-field" = dontDistribute super."finite-field"; 3009 + "first-and-last" = dontDistribute super."first-and-last"; 3008 3010 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3009 3011 "firstify" = dontDistribute super."firstify"; 3010 3012 "fishfood" = dontDistribute super."fishfood"; ··· 5367 5369 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5368 5370 "monad-open" = dontDistribute super."monad-open"; 5369 5371 "monad-ox" = dontDistribute super."monad-ox"; 5372 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5370 5373 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5371 5374 "monad-param" = dontDistribute super."monad-param"; 5372 5375 "monad-peel" = dontDistribute super."monad-peel"; ··· 7574 7577 "timecalc" = dontDistribute super."timecalc"; 7575 7578 "timeconsole" = dontDistribute super."timeconsole"; 7576 7579 "timeit" = dontDistribute super."timeit"; 7580 + "timeless" = dontDistribute super."timeless"; 7577 7581 "timeout" = dontDistribute super."timeout"; 7578 7582 "timeout-control" = dontDistribute super."timeout-control"; 7579 7583 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7839 7843 "unix-memory" = dontDistribute super."unix-memory"; 7840 7844 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7841 7845 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7846 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7842 7847 "unlambda" = dontDistribute super."unlambda"; 7843 7848 "unlit" = dontDistribute super."unlit"; 7844 7849 "unm-hip" = dontDistribute super."unm-hip"; ··· 7969 7974 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7970 7975 "vector-static" = dontDistribute super."vector-static"; 7971 7976 "vector-strategies" = dontDistribute super."vector-strategies"; 7977 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7972 7978 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7973 7979 "verbosity" = dontDistribute super."verbosity"; 7974 7980 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-1.11.nix
··· 613 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 618 "Lastik" = dontDistribute super."Lastik"; 618 619 "Lattices" = dontDistribute super."Lattices"; ··· 3005 3006 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3006 3007 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3007 3008 "finite-field" = dontDistribute super."finite-field"; 3009 + "first-and-last" = dontDistribute super."first-and-last"; 3008 3010 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3009 3011 "firstify" = dontDistribute super."firstify"; 3010 3012 "fishfood" = dontDistribute super."fishfood"; ··· 5363 5365 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5364 5366 "monad-open" = dontDistribute super."monad-open"; 5365 5367 "monad-ox" = dontDistribute super."monad-ox"; 5368 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5366 5369 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5367 5370 "monad-param" = dontDistribute super."monad-param"; 5368 5371 "monad-peel" = dontDistribute super."monad-peel"; ··· 7568 7571 "timecalc" = dontDistribute super."timecalc"; 7569 7572 "timeconsole" = dontDistribute super."timeconsole"; 7570 7573 "timeit" = dontDistribute super."timeit"; 7574 + "timeless" = dontDistribute super."timeless"; 7571 7575 "timeout" = dontDistribute super."timeout"; 7572 7576 "timeout-control" = dontDistribute super."timeout-control"; 7573 7577 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7833 7837 "unix-memory" = dontDistribute super."unix-memory"; 7834 7838 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7835 7839 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7840 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7836 7841 "unlambda" = dontDistribute super."unlambda"; 7837 7842 "unlit" = dontDistribute super."unlit"; 7838 7843 "unm-hip" = dontDistribute super."unm-hip"; ··· 7963 7968 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7964 7969 "vector-static" = dontDistribute super."vector-static"; 7965 7970 "vector-strategies" = dontDistribute super."vector-strategies"; 7971 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7966 7972 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7967 7973 "verbosity" = dontDistribute super."verbosity"; 7968 7974 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-1.12.nix
··· 613 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 618 "Lastik" = dontDistribute super."Lastik"; 618 619 "Lattices" = dontDistribute super."Lattices"; ··· 3005 3006 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3006 3007 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3007 3008 "finite-field" = dontDistribute super."finite-field"; 3009 + "first-and-last" = dontDistribute super."first-and-last"; 3008 3010 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3009 3011 "firstify" = dontDistribute super."firstify"; 3010 3012 "fishfood" = dontDistribute super."fishfood"; ··· 5362 5364 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5363 5365 "monad-open" = dontDistribute super."monad-open"; 5364 5366 "monad-ox" = dontDistribute super."monad-ox"; 5367 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5365 5368 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5366 5369 "monad-param" = dontDistribute super."monad-param"; 5367 5370 "monad-peel" = dontDistribute super."monad-peel"; ··· 7565 7568 "timecalc" = dontDistribute super."timecalc"; 7566 7569 "timeconsole" = dontDistribute super."timeconsole"; 7567 7570 "timeit" = dontDistribute super."timeit"; 7571 + "timeless" = dontDistribute super."timeless"; 7568 7572 "timeout" = dontDistribute super."timeout"; 7569 7573 "timeout-control" = dontDistribute super."timeout-control"; 7570 7574 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7830 7834 "unix-memory" = dontDistribute super."unix-memory"; 7831 7835 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7832 7836 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7837 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7833 7838 "unlambda" = dontDistribute super."unlambda"; 7834 7839 "unlit" = dontDistribute super."unlit"; 7835 7840 "unm-hip" = dontDistribute super."unm-hip"; ··· 7960 7965 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7961 7966 "vector-static" = dontDistribute super."vector-static"; 7962 7967 "vector-strategies" = dontDistribute super."vector-strategies"; 7968 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7963 7969 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7964 7970 "verbosity" = dontDistribute super."verbosity"; 7965 7971 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-1.13.nix
··· 613 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 618 "Lastik" = dontDistribute super."Lastik"; 618 619 "Lattices" = dontDistribute super."Lattices"; ··· 3004 3005 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3005 3006 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3006 3007 "finite-field" = dontDistribute super."finite-field"; 3008 + "first-and-last" = dontDistribute super."first-and-last"; 3007 3009 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3008 3010 "firstify" = dontDistribute super."firstify"; 3009 3011 "fishfood" = dontDistribute super."fishfood"; ··· 5359 5361 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5360 5362 "monad-open" = dontDistribute super."monad-open"; 5361 5363 "monad-ox" = dontDistribute super."monad-ox"; 5364 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5362 5365 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5363 5366 "monad-param" = dontDistribute super."monad-param"; 5364 5367 "monad-peel" = dontDistribute super."monad-peel"; ··· 7561 7564 "timecalc" = dontDistribute super."timecalc"; 7562 7565 "timeconsole" = dontDistribute super."timeconsole"; 7563 7566 "timeit" = dontDistribute super."timeit"; 7567 + "timeless" = dontDistribute super."timeless"; 7564 7568 "timeout" = dontDistribute super."timeout"; 7565 7569 "timeout-control" = dontDistribute super."timeout-control"; 7566 7570 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7826 7830 "unix-memory" = dontDistribute super."unix-memory"; 7827 7831 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7828 7832 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7833 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7829 7834 "unlambda" = dontDistribute super."unlambda"; 7830 7835 "unlit" = dontDistribute super."unlit"; 7831 7836 "unm-hip" = dontDistribute super."unm-hip"; ··· 7956 7961 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7957 7962 "vector-static" = dontDistribute super."vector-static"; 7958 7963 "vector-strategies" = dontDistribute super."vector-strategies"; 7964 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7959 7965 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7960 7966 "verbosity" = dontDistribute super."verbosity"; 7961 7967 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-1.14.nix
··· 612 612 "LambdaNet" = dontDistribute super."LambdaNet"; 613 613 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 614 614 "LambdaShell" = dontDistribute super."LambdaShell"; 615 + "Lambdaya" = dontDistribute super."Lambdaya"; 615 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 616 617 "Lastik" = dontDistribute super."Lastik"; 617 618 "Lattices" = dontDistribute super."Lattices"; ··· 3001 3002 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3002 3003 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3003 3004 "finite-field" = dontDistribute super."finite-field"; 3005 + "first-and-last" = dontDistribute super."first-and-last"; 3004 3006 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3005 3007 "firstify" = dontDistribute super."firstify"; 3006 3008 "fishfood" = dontDistribute super."fishfood"; ··· 5353 5355 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5354 5356 "monad-open" = dontDistribute super."monad-open"; 5355 5357 "monad-ox" = dontDistribute super."monad-ox"; 5358 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5356 5359 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5357 5360 "monad-param" = dontDistribute super."monad-param"; 5358 5361 "monad-peel" = dontDistribute super."monad-peel"; ··· 7553 7556 "timecalc" = dontDistribute super."timecalc"; 7554 7557 "timeconsole" = dontDistribute super."timeconsole"; 7555 7558 "timeit" = dontDistribute super."timeit"; 7559 + "timeless" = dontDistribute super."timeless"; 7556 7560 "timeout" = dontDistribute super."timeout"; 7557 7561 "timeout-control" = dontDistribute super."timeout-control"; 7558 7562 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7818 7822 "unix-memory" = dontDistribute super."unix-memory"; 7819 7823 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7820 7824 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7825 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7821 7826 "unlambda" = dontDistribute super."unlambda"; 7822 7827 "unlit" = dontDistribute super."unlit"; 7823 7828 "unm-hip" = dontDistribute super."unm-hip"; ··· 7948 7953 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7949 7954 "vector-static" = dontDistribute super."vector-static"; 7950 7955 "vector-strategies" = dontDistribute super."vector-strategies"; 7956 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7951 7957 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7952 7958 "verbosity" = dontDistribute super."verbosity"; 7953 7959 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-1.15.nix
··· 612 612 "LambdaNet" = dontDistribute super."LambdaNet"; 613 613 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 614 614 "LambdaShell" = dontDistribute super."LambdaShell"; 615 + "Lambdaya" = dontDistribute super."Lambdaya"; 615 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 616 617 "Lastik" = dontDistribute super."Lastik"; 617 618 "Lattices" = dontDistribute super."Lattices"; ··· 2996 2997 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2997 2998 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2998 2999 "finite-field" = dontDistribute super."finite-field"; 3000 + "first-and-last" = dontDistribute super."first-and-last"; 2999 3001 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3000 3002 "firstify" = dontDistribute super."firstify"; 3001 3003 "fishfood" = dontDistribute super."fishfood"; ··· 5347 5349 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5348 5350 "monad-open" = dontDistribute super."monad-open"; 5349 5351 "monad-ox" = dontDistribute super."monad-ox"; 5352 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5350 5353 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5351 5354 "monad-param" = dontDistribute super."monad-param"; 5352 5355 "monad-peel" = dontDistribute super."monad-peel"; ··· 7541 7544 "timecalc" = dontDistribute super."timecalc"; 7542 7545 "timeconsole" = dontDistribute super."timeconsole"; 7543 7546 "timeit" = dontDistribute super."timeit"; 7547 + "timeless" = dontDistribute super."timeless"; 7544 7548 "timeout" = dontDistribute super."timeout"; 7545 7549 "timeout-control" = dontDistribute super."timeout-control"; 7546 7550 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7806 7810 "unix-memory" = dontDistribute super."unix-memory"; 7807 7811 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7808 7812 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7813 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7809 7814 "unlambda" = dontDistribute super."unlambda"; 7810 7815 "unlit" = dontDistribute super."unlit"; 7811 7816 "unm-hip" = dontDistribute super."unm-hip"; ··· 7935 7940 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7936 7941 "vector-static" = dontDistribute super."vector-static"; 7937 7942 "vector-strategies" = dontDistribute super."vector-strategies"; 7943 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7938 7944 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7939 7945 "verbosity" = dontDistribute super."verbosity"; 7940 7946 "verilog" = dontDistribute super."verilog";
+4
pkgs/development/haskell-modules/configuration-lts-1.2.nix
··· 614 614 "LambdaNet" = dontDistribute super."LambdaNet"; 615 615 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 616 616 "LambdaShell" = dontDistribute super."LambdaShell"; 617 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 618 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 619 "Lastik" = dontDistribute super."Lastik"; 619 620 "Lattices" = dontDistribute super."Lattices"; ··· 3012 3013 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3013 3014 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3014 3015 "finite-field" = dontDistribute super."finite-field"; 3016 + "first-and-last" = dontDistribute super."first-and-last"; 3015 3017 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3016 3018 "firstify" = dontDistribute super."firstify"; 3017 3019 "fishfood" = dontDistribute super."fishfood"; ··· 7606 7608 "timecalc" = dontDistribute super."timecalc"; 7607 7609 "timeconsole" = dontDistribute super."timeconsole"; 7608 7610 "timeit" = dontDistribute super."timeit"; 7611 + "timeless" = dontDistribute super."timeless"; 7609 7612 "timeout" = dontDistribute super."timeout"; 7610 7613 "timeout-control" = dontDistribute super."timeout-control"; 7611 7614 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 8005 8008 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 8006 8009 "vector-static" = dontDistribute super."vector-static"; 8007 8010 "vector-strategies" = dontDistribute super."vector-strategies"; 8011 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 8008 8012 "verbalexpressions" = dontDistribute super."verbalexpressions"; 8009 8013 "verbosity" = dontDistribute super."verbosity"; 8010 8014 "verilog" = dontDistribute super."verilog";
+4
pkgs/development/haskell-modules/configuration-lts-1.4.nix
··· 613 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 618 "Lastik" = dontDistribute super."Lastik"; 618 619 "Lattices" = dontDistribute super."Lattices"; ··· 3010 3011 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3011 3012 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3012 3013 "finite-field" = dontDistribute super."finite-field"; 3014 + "first-and-last" = dontDistribute super."first-and-last"; 3013 3015 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3014 3016 "firstify" = dontDistribute super."firstify"; 3015 3017 "fishfood" = dontDistribute super."fishfood"; ··· 7599 7601 "timecalc" = dontDistribute super."timecalc"; 7600 7602 "timeconsole" = dontDistribute super."timeconsole"; 7601 7603 "timeit" = dontDistribute super."timeit"; 7604 + "timeless" = dontDistribute super."timeless"; 7602 7605 "timeout" = dontDistribute super."timeout"; 7603 7606 "timeout-control" = dontDistribute super."timeout-control"; 7604 7607 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7998 8001 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7999 8002 "vector-static" = dontDistribute super."vector-static"; 8000 8003 "vector-strategies" = dontDistribute super."vector-strategies"; 8004 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 8001 8005 "verbalexpressions" = dontDistribute super."verbalexpressions"; 8002 8006 "verbosity" = dontDistribute super."verbosity"; 8003 8007 "verilog" = dontDistribute super."verilog";
+4
pkgs/development/haskell-modules/configuration-lts-1.5.nix
··· 613 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 618 "Lastik" = dontDistribute super."Lastik"; 618 619 "Lattices" = dontDistribute super."Lattices"; ··· 3009 3010 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3010 3011 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3011 3012 "finite-field" = dontDistribute super."finite-field"; 3013 + "first-and-last" = dontDistribute super."first-and-last"; 3012 3014 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3013 3015 "firstify" = dontDistribute super."firstify"; 3014 3016 "fishfood" = dontDistribute super."fishfood"; ··· 7597 7599 "timecalc" = dontDistribute super."timecalc"; 7598 7600 "timeconsole" = dontDistribute super."timeconsole"; 7599 7601 "timeit" = dontDistribute super."timeit"; 7602 + "timeless" = dontDistribute super."timeless"; 7600 7603 "timeout" = dontDistribute super."timeout"; 7601 7604 "timeout-control" = dontDistribute super."timeout-control"; 7602 7605 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7994 7997 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7995 7998 "vector-static" = dontDistribute super."vector-static"; 7996 7999 "vector-strategies" = dontDistribute super."vector-strategies"; 8000 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7997 8001 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7998 8002 "verbosity" = dontDistribute super."verbosity"; 7999 8003 "verilog" = dontDistribute super."verilog";
+4
pkgs/development/haskell-modules/configuration-lts-1.7.nix
··· 613 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 618 "Lastik" = dontDistribute super."Lastik"; 618 619 "Lattices" = dontDistribute super."Lattices"; ··· 3009 3010 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3010 3011 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3011 3012 "finite-field" = dontDistribute super."finite-field"; 3013 + "first-and-last" = dontDistribute super."first-and-last"; 3012 3014 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3013 3015 "firstify" = dontDistribute super."firstify"; 3014 3016 "fishfood" = dontDistribute super."fishfood"; ··· 7591 7593 "timecalc" = dontDistribute super."timecalc"; 7592 7594 "timeconsole" = dontDistribute super."timeconsole"; 7593 7595 "timeit" = dontDistribute super."timeit"; 7596 + "timeless" = dontDistribute super."timeless"; 7594 7597 "timeout" = dontDistribute super."timeout"; 7595 7598 "timeout-control" = dontDistribute super."timeout-control"; 7596 7599 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7988 7991 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7989 7992 "vector-static" = dontDistribute super."vector-static"; 7990 7993 "vector-strategies" = dontDistribute super."vector-strategies"; 7994 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7991 7995 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7992 7996 "verbosity" = dontDistribute super."verbosity"; 7993 7997 "verilog" = dontDistribute super."verilog";
+4
pkgs/development/haskell-modules/configuration-lts-1.8.nix
··· 613 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 618 "Lastik" = dontDistribute super."Lastik"; 618 619 "Lattices" = dontDistribute super."Lattices"; ··· 3007 3008 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3008 3009 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3009 3010 "finite-field" = dontDistribute super."finite-field"; 3011 + "first-and-last" = dontDistribute super."first-and-last"; 3010 3012 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3011 3013 "firstify" = dontDistribute super."firstify"; 3012 3014 "fishfood" = dontDistribute super."fishfood"; ··· 7586 7588 "timecalc" = dontDistribute super."timecalc"; 7587 7589 "timeconsole" = dontDistribute super."timeconsole"; 7588 7590 "timeit" = dontDistribute super."timeit"; 7591 + "timeless" = dontDistribute super."timeless"; 7589 7592 "timeout" = dontDistribute super."timeout"; 7590 7593 "timeout-control" = dontDistribute super."timeout-control"; 7591 7594 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7982 7985 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7983 7986 "vector-static" = dontDistribute super."vector-static"; 7984 7987 "vector-strategies" = dontDistribute super."vector-strategies"; 7988 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7985 7989 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7986 7990 "verbosity" = dontDistribute super."verbosity"; 7987 7991 "verilog" = dontDistribute super."verilog";
+5
pkgs/development/haskell-modules/configuration-lts-1.9.nix
··· 613 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 618 "Lastik" = dontDistribute super."Lastik"; 618 619 "Lattices" = dontDistribute super."Lattices"; ··· 3007 3008 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3008 3009 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3009 3010 "finite-field" = dontDistribute super."finite-field"; 3011 + "first-and-last" = dontDistribute super."first-and-last"; 3010 3012 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3011 3013 "firstify" = dontDistribute super."firstify"; 3012 3014 "fishfood" = dontDistribute super."fishfood"; ··· 5369 5371 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5370 5372 "monad-open" = dontDistribute super."monad-open"; 5371 5373 "monad-ox" = dontDistribute super."monad-ox"; 5374 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5372 5375 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5373 5376 "monad-param" = dontDistribute super."monad-param"; 5374 5377 "monad-peel" = dontDistribute super."monad-peel"; ··· 7582 7585 "timecalc" = dontDistribute super."timecalc"; 7583 7586 "timeconsole" = dontDistribute super."timeconsole"; 7584 7587 "timeit" = dontDistribute super."timeit"; 7588 + "timeless" = dontDistribute super."timeless"; 7585 7589 "timeout" = dontDistribute super."timeout"; 7586 7590 "timeout-control" = dontDistribute super."timeout-control"; 7587 7591 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7978 7982 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7979 7983 "vector-static" = dontDistribute super."vector-static"; 7980 7984 "vector-strategies" = dontDistribute super."vector-strategies"; 7985 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7981 7986 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7982 7987 "verbosity" = dontDistribute super."verbosity"; 7983 7988 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.0.nix
··· 607 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 612 "Lastik" = dontDistribute super."Lastik"; 612 613 "Lattices" = dontDistribute super."Lattices"; ··· 2975 2976 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2976 2977 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2977 2978 "finite-field" = dontDistribute super."finite-field"; 2979 + "first-and-last" = dontDistribute super."first-and-last"; 2978 2980 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2979 2981 "firstify" = dontDistribute super."firstify"; 2980 2982 "fishfood" = dontDistribute super."fishfood"; ··· 5292 5294 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5293 5295 "monad-open" = dontDistribute super."monad-open"; 5294 5296 "monad-ox" = dontDistribute super."monad-ox"; 5297 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5295 5298 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5296 5299 "monad-param" = dontDistribute super."monad-param"; 5297 5300 "monad-peel" = dontDistribute super."monad-peel"; ··· 7463 7466 "timecalc" = dontDistribute super."timecalc"; 7464 7467 "timeconsole" = dontDistribute super."timeconsole"; 7465 7468 "timeit" = dontDistribute super."timeit"; 7469 + "timeless" = dontDistribute super."timeless"; 7466 7470 "timeout" = dontDistribute super."timeout"; 7467 7471 "timeout-control" = dontDistribute super."timeout-control"; 7468 7472 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7727 7731 "unix-memory" = dontDistribute super."unix-memory"; 7728 7732 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7729 7733 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7734 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7730 7735 "unlambda" = dontDistribute super."unlambda"; 7731 7736 "unlit" = dontDistribute super."unlit"; 7732 7737 "unm-hip" = dontDistribute super."unm-hip"; ··· 7855 7860 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7856 7861 "vector-static" = dontDistribute super."vector-static"; 7857 7862 "vector-strategies" = dontDistribute super."vector-strategies"; 7863 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7858 7864 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7859 7865 "verbosity" = dontDistribute super."verbosity"; 7860 7866 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.1.nix
··· 607 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 612 "Lastik" = dontDistribute super."Lastik"; 612 613 "Lattices" = dontDistribute super."Lattices"; ··· 2974 2975 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2975 2976 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2976 2977 "finite-field" = dontDistribute super."finite-field"; 2978 + "first-and-last" = dontDistribute super."first-and-last"; 2977 2979 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2978 2980 "firstify" = dontDistribute super."firstify"; 2979 2981 "fishfood" = dontDistribute super."fishfood"; ··· 5290 5292 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5291 5293 "monad-open" = dontDistribute super."monad-open"; 5292 5294 "monad-ox" = dontDistribute super."monad-ox"; 5295 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5293 5296 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5294 5297 "monad-param" = dontDistribute super."monad-param"; 5295 5298 "monad-peel" = dontDistribute super."monad-peel"; ··· 7461 7464 "timecalc" = dontDistribute super."timecalc"; 7462 7465 "timeconsole" = dontDistribute super."timeconsole"; 7463 7466 "timeit" = dontDistribute super."timeit"; 7467 + "timeless" = dontDistribute super."timeless"; 7464 7468 "timeout" = dontDistribute super."timeout"; 7465 7469 "timeout-control" = dontDistribute super."timeout-control"; 7466 7470 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7725 7729 "unix-memory" = dontDistribute super."unix-memory"; 7726 7730 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7727 7731 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7732 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7728 7733 "unlambda" = dontDistribute super."unlambda"; 7729 7734 "unlit" = dontDistribute super."unlit"; 7730 7735 "unm-hip" = dontDistribute super."unm-hip"; ··· 7852 7857 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7853 7858 "vector-static" = dontDistribute super."vector-static"; 7854 7859 "vector-strategies" = dontDistribute super."vector-strategies"; 7860 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7855 7861 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7856 7862 "verbosity" = dontDistribute super."verbosity"; 7857 7863 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.10.nix
··· 347 347 "GLHUI" = dontDistribute super."GLHUI"; 348 348 "GLM" = dontDistribute super."GLM"; 349 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 352 "GLUtil" = dontDistribute super."GLUtil"; 352 353 "GPX" = dontDistribute super."GPX"; ··· 605 606 "LambdaNet" = dontDistribute super."LambdaNet"; 606 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 611 "Lastik" = dontDistribute super."Lastik"; 610 612 "Lattices" = dontDistribute super."Lattices"; ··· 2953 2955 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2954 2956 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2955 2957 "finite-field" = dontDistribute super."finite-field"; 2958 + "first-and-last" = dontDistribute super."first-and-last"; 2956 2959 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2957 2960 "firstify" = dontDistribute super."firstify"; 2958 2961 "fishfood" = dontDistribute super."fishfood"; ··· 5246 5249 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5247 5250 "monad-open" = dontDistribute super."monad-open"; 5248 5251 "monad-ox" = dontDistribute super."monad-ox"; 5252 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5249 5253 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5250 5254 "monad-param" = dontDistribute super."monad-param"; 5251 5255 "monad-peel" = dontDistribute super."monad-peel"; ··· 7394 7398 "timecalc" = dontDistribute super."timecalc"; 7395 7399 "timeconsole" = dontDistribute super."timeconsole"; 7396 7400 "timeit" = dontDistribute super."timeit"; 7401 + "timeless" = dontDistribute super."timeless"; 7397 7402 "timeout" = dontDistribute super."timeout"; 7398 7403 "timeout-control" = dontDistribute super."timeout-control"; 7399 7404 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7656 7661 "unix-memory" = dontDistribute super."unix-memory"; 7657 7662 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7658 7663 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7664 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7659 7665 "unlambda" = dontDistribute super."unlambda"; 7660 7666 "unlit" = dontDistribute super."unlit"; 7661 7667 "unm-hip" = dontDistribute super."unm-hip"; ··· 7783 7789 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7784 7790 "vector-static" = dontDistribute super."vector-static"; 7785 7791 "vector-strategies" = dontDistribute super."vector-strategies"; 7792 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7786 7793 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7787 7794 "verbosity" = dontDistribute super."verbosity"; 7788 7795 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.11.nix
··· 347 347 "GLHUI" = dontDistribute super."GLHUI"; 348 348 "GLM" = dontDistribute super."GLM"; 349 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 352 "GLUtil" = dontDistribute super."GLUtil"; 352 353 "GPX" = dontDistribute super."GPX"; ··· 605 606 "LambdaNet" = dontDistribute super."LambdaNet"; 606 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 611 "Lastik" = dontDistribute super."Lastik"; 610 612 "Lattices" = dontDistribute super."Lattices"; ··· 2952 2954 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2953 2955 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2954 2956 "finite-field" = dontDistribute super."finite-field"; 2957 + "first-and-last" = dontDistribute super."first-and-last"; 2955 2958 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2956 2959 "firstify" = dontDistribute super."firstify"; 2957 2960 "fishfood" = dontDistribute super."fishfood"; ··· 5238 5241 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5239 5242 "monad-open" = dontDistribute super."monad-open"; 5240 5243 "monad-ox" = dontDistribute super."monad-ox"; 5244 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5241 5245 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5242 5246 "monad-param" = dontDistribute super."monad-param"; 5243 5247 "monad-peel" = dontDistribute super."monad-peel"; ··· 7381 7385 "timecalc" = dontDistribute super."timecalc"; 7382 7386 "timeconsole" = dontDistribute super."timeconsole"; 7383 7387 "timeit" = dontDistribute super."timeit"; 7388 + "timeless" = dontDistribute super."timeless"; 7384 7389 "timeout" = dontDistribute super."timeout"; 7385 7390 "timeout-control" = dontDistribute super."timeout-control"; 7386 7391 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7643 7648 "unix-memory" = dontDistribute super."unix-memory"; 7644 7649 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7645 7650 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7651 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7646 7652 "unlambda" = dontDistribute super."unlambda"; 7647 7653 "unlit" = dontDistribute super."unlit"; 7648 7654 "unm-hip" = dontDistribute super."unm-hip"; ··· 7770 7776 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7771 7777 "vector-static" = dontDistribute super."vector-static"; 7772 7778 "vector-strategies" = dontDistribute super."vector-strategies"; 7779 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7773 7780 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7774 7781 "verbosity" = dontDistribute super."verbosity"; 7775 7782 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.12.nix
··· 347 347 "GLHUI" = dontDistribute super."GLHUI"; 348 348 "GLM" = dontDistribute super."GLM"; 349 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 352 "GLUtil" = dontDistribute super."GLUtil"; 352 353 "GPX" = dontDistribute super."GPX"; ··· 605 606 "LambdaNet" = dontDistribute super."LambdaNet"; 606 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 611 "Lastik" = dontDistribute super."Lastik"; 610 612 "Lattices" = dontDistribute super."Lattices"; ··· 2952 2954 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2953 2955 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2954 2956 "finite-field" = dontDistribute super."finite-field"; 2957 + "first-and-last" = dontDistribute super."first-and-last"; 2955 2958 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2956 2959 "firstify" = dontDistribute super."firstify"; 2957 2960 "fishfood" = dontDistribute super."fishfood"; ··· 5238 5241 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5239 5242 "monad-open" = dontDistribute super."monad-open"; 5240 5243 "monad-ox" = dontDistribute super."monad-ox"; 5244 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5241 5245 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5242 5246 "monad-param" = dontDistribute super."monad-param"; 5243 5247 "monad-peel" = dontDistribute super."monad-peel"; ··· 7380 7384 "timecalc" = dontDistribute super."timecalc"; 7381 7385 "timeconsole" = dontDistribute super."timeconsole"; 7382 7386 "timeit" = dontDistribute super."timeit"; 7387 + "timeless" = dontDistribute super."timeless"; 7383 7388 "timeout" = dontDistribute super."timeout"; 7384 7389 "timeout-control" = dontDistribute super."timeout-control"; 7385 7390 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7642 7647 "unix-memory" = dontDistribute super."unix-memory"; 7643 7648 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7644 7649 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7650 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7645 7651 "unlambda" = dontDistribute super."unlambda"; 7646 7652 "unlit" = dontDistribute super."unlit"; 7647 7653 "unm-hip" = dontDistribute super."unm-hip"; ··· 7769 7775 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7770 7776 "vector-static" = dontDistribute super."vector-static"; 7771 7777 "vector-strategies" = dontDistribute super."vector-strategies"; 7778 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7772 7779 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7773 7780 "verbosity" = dontDistribute super."verbosity"; 7774 7781 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.13.nix
··· 347 347 "GLHUI" = dontDistribute super."GLHUI"; 348 348 "GLM" = dontDistribute super."GLM"; 349 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 352 "GLUtil" = dontDistribute super."GLUtil"; 352 353 "GPX" = dontDistribute super."GPX"; ··· 605 606 "LambdaNet" = dontDistribute super."LambdaNet"; 606 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 611 "Lastik" = dontDistribute super."Lastik"; 610 612 "Lattices" = dontDistribute super."Lattices"; ··· 2952 2954 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2953 2955 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2954 2956 "finite-field" = dontDistribute super."finite-field"; 2957 + "first-and-last" = dontDistribute super."first-and-last"; 2955 2958 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2956 2959 "firstify" = dontDistribute super."firstify"; 2957 2960 "fishfood" = dontDistribute super."fishfood"; ··· 5236 5239 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5237 5240 "monad-open" = dontDistribute super."monad-open"; 5238 5241 "monad-ox" = dontDistribute super."monad-ox"; 5242 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5239 5243 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5240 5244 "monad-param" = dontDistribute super."monad-param"; 5241 5245 "monad-peel" = dontDistribute super."monad-peel"; ··· 7376 7380 "timecalc" = dontDistribute super."timecalc"; 7377 7381 "timeconsole" = dontDistribute super."timeconsole"; 7378 7382 "timeit" = dontDistribute super."timeit"; 7383 + "timeless" = dontDistribute super."timeless"; 7379 7384 "timeout" = dontDistribute super."timeout"; 7380 7385 "timeout-control" = dontDistribute super."timeout-control"; 7381 7386 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7638 7643 "unix-memory" = dontDistribute super."unix-memory"; 7639 7644 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7640 7645 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7646 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7641 7647 "unlambda" = dontDistribute super."unlambda"; 7642 7648 "unlit" = dontDistribute super."unlit"; 7643 7649 "unm-hip" = dontDistribute super."unm-hip"; ··· 7765 7771 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7766 7772 "vector-static" = dontDistribute super."vector-static"; 7767 7773 "vector-strategies" = dontDistribute super."vector-strategies"; 7774 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7768 7775 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7769 7776 "verbosity" = dontDistribute super."verbosity"; 7770 7777 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.14.nix
··· 347 347 "GLHUI" = dontDistribute super."GLHUI"; 348 348 "GLM" = dontDistribute super."GLM"; 349 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 352 "GLUtil" = dontDistribute super."GLUtil"; 352 353 "GPX" = dontDistribute super."GPX"; ··· 605 606 "LambdaNet" = dontDistribute super."LambdaNet"; 606 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 611 "Lastik" = dontDistribute super."Lastik"; 610 612 "Lattices" = dontDistribute super."Lattices"; ··· 2950 2952 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2951 2953 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2952 2954 "finite-field" = dontDistribute super."finite-field"; 2955 + "first-and-last" = dontDistribute super."first-and-last"; 2953 2956 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2954 2957 "firstify" = dontDistribute super."firstify"; 2955 2958 "fishfood" = dontDistribute super."fishfood"; ··· 5233 5236 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5234 5237 "monad-open" = dontDistribute super."monad-open"; 5235 5238 "monad-ox" = dontDistribute super."monad-ox"; 5239 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5236 5240 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5237 5241 "monad-param" = dontDistribute super."monad-param"; 5238 5242 "monad-peel" = dontDistribute super."monad-peel"; ··· 7371 7375 "timecalc" = dontDistribute super."timecalc"; 7372 7376 "timeconsole" = dontDistribute super."timeconsole"; 7373 7377 "timeit" = dontDistribute super."timeit"; 7378 + "timeless" = dontDistribute super."timeless"; 7374 7379 "timeout" = dontDistribute super."timeout"; 7375 7380 "timeout-control" = dontDistribute super."timeout-control"; 7376 7381 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7633 7638 "unix-memory" = dontDistribute super."unix-memory"; 7634 7639 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7635 7640 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7641 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7636 7642 "unlambda" = dontDistribute super."unlambda"; 7637 7643 "unlit" = dontDistribute super."unlit"; 7638 7644 "unm-hip" = dontDistribute super."unm-hip"; ··· 7760 7766 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7761 7767 "vector-static" = dontDistribute super."vector-static"; 7762 7768 "vector-strategies" = dontDistribute super."vector-strategies"; 7769 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7763 7770 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7764 7771 "verbosity" = dontDistribute super."verbosity"; 7765 7772 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.15.nix
··· 347 347 "GLHUI" = dontDistribute super."GLHUI"; 348 348 "GLM" = dontDistribute super."GLM"; 349 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 352 "GLUtil" = dontDistribute super."GLUtil"; 352 353 "GPX" = dontDistribute super."GPX"; ··· 605 606 "LambdaNet" = dontDistribute super."LambdaNet"; 606 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 611 "Lastik" = dontDistribute super."Lastik"; 610 612 "Lattices" = dontDistribute super."Lattices"; ··· 2948 2950 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2949 2951 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2950 2952 "finite-field" = dontDistribute super."finite-field"; 2953 + "first-and-last" = dontDistribute super."first-and-last"; 2951 2954 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2952 2955 "firstify" = dontDistribute super."firstify"; 2953 2956 "fishfood" = dontDistribute super."fishfood"; ··· 5230 5233 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5231 5234 "monad-open" = dontDistribute super."monad-open"; 5232 5235 "monad-ox" = dontDistribute super."monad-ox"; 5236 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5233 5237 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5234 5238 "monad-param" = dontDistribute super."monad-param"; 5235 5239 "monad-peel" = dontDistribute super."monad-peel"; ··· 7365 7369 "timecalc" = dontDistribute super."timecalc"; 7366 7370 "timeconsole" = dontDistribute super."timeconsole"; 7367 7371 "timeit" = dontDistribute super."timeit"; 7372 + "timeless" = dontDistribute super."timeless"; 7368 7373 "timeout" = dontDistribute super."timeout"; 7369 7374 "timeout-control" = dontDistribute super."timeout-control"; 7370 7375 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7627 7632 "unix-memory" = dontDistribute super."unix-memory"; 7628 7633 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7629 7634 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7635 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7630 7636 "unlambda" = dontDistribute super."unlambda"; 7631 7637 "unlit" = dontDistribute super."unlit"; 7632 7638 "unm-hip" = dontDistribute super."unm-hip"; ··· 7754 7760 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7755 7761 "vector-static" = dontDistribute super."vector-static"; 7756 7762 "vector-strategies" = dontDistribute super."vector-strategies"; 7763 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7757 7764 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7758 7765 "verbosity" = dontDistribute super."verbosity"; 7759 7766 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.16.nix
··· 346 346 "GLHUI" = dontDistribute super."GLHUI"; 347 347 "GLM" = dontDistribute super."GLM"; 348 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 349 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 351 "GLUtil" = dontDistribute super."GLUtil"; 351 352 "GPX" = dontDistribute super."GPX"; ··· 603 604 "LambdaNet" = dontDistribute super."LambdaNet"; 604 605 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 605 606 "LambdaShell" = dontDistribute super."LambdaShell"; 607 + "Lambdaya" = dontDistribute super."Lambdaya"; 606 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 607 609 "Lastik" = dontDistribute super."Lastik"; 608 610 "Lattices" = dontDistribute super."Lattices"; ··· 2941 2943 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2942 2944 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2943 2945 "finite-field" = dontDistribute super."finite-field"; 2946 + "first-and-last" = dontDistribute super."first-and-last"; 2944 2947 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2945 2948 "firstify" = dontDistribute super."firstify"; 2946 2949 "fishfood" = dontDistribute super."fishfood"; ··· 5220 5223 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5221 5224 "monad-open" = dontDistribute super."monad-open"; 5222 5225 "monad-ox" = dontDistribute super."monad-ox"; 5226 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5223 5227 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5224 5228 "monad-param" = dontDistribute super."monad-param"; 5225 5229 "monad-peel" = dontDistribute super."monad-peel"; ··· 7353 7357 "timecalc" = dontDistribute super."timecalc"; 7354 7358 "timeconsole" = dontDistribute super."timeconsole"; 7355 7359 "timeit" = dontDistribute super."timeit"; 7360 + "timeless" = dontDistribute super."timeless"; 7356 7361 "timeout" = dontDistribute super."timeout"; 7357 7362 "timeout-control" = dontDistribute super."timeout-control"; 7358 7363 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7615 7620 "unix-memory" = dontDistribute super."unix-memory"; 7616 7621 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7617 7622 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7623 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7618 7624 "unlambda" = dontDistribute super."unlambda"; 7619 7625 "unlit" = dontDistribute super."unlit"; 7620 7626 "unm-hip" = dontDistribute super."unm-hip"; ··· 7742 7748 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7743 7749 "vector-static" = dontDistribute super."vector-static"; 7744 7750 "vector-strategies" = dontDistribute super."vector-strategies"; 7751 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7745 7752 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7746 7753 "verbosity" = dontDistribute super."verbosity"; 7747 7754 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.17.nix
··· 346 346 "GLHUI" = dontDistribute super."GLHUI"; 347 347 "GLM" = dontDistribute super."GLM"; 348 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 349 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 351 "GLUtil" = dontDistribute super."GLUtil"; 351 352 "GPX" = dontDistribute super."GPX"; ··· 603 604 "LambdaNet" = dontDistribute super."LambdaNet"; 604 605 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 605 606 "LambdaShell" = dontDistribute super."LambdaShell"; 607 + "Lambdaya" = dontDistribute super."Lambdaya"; 606 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 607 609 "Lastik" = dontDistribute super."Lastik"; 608 610 "Lattices" = dontDistribute super."Lattices"; ··· 2936 2938 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2937 2939 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2938 2940 "finite-field" = dontDistribute super."finite-field"; 2941 + "first-and-last" = dontDistribute super."first-and-last"; 2939 2942 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2940 2943 "firstify" = dontDistribute super."firstify"; 2941 2944 "fishfood" = dontDistribute super."fishfood"; ··· 5212 5215 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5213 5216 "monad-open" = dontDistribute super."monad-open"; 5214 5217 "monad-ox" = dontDistribute super."monad-ox"; 5218 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5215 5219 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5216 5220 "monad-param" = dontDistribute super."monad-param"; 5217 5221 "monad-peel" = dontDistribute super."monad-peel"; ··· 7342 7346 "timecalc" = dontDistribute super."timecalc"; 7343 7347 "timeconsole" = dontDistribute super."timeconsole"; 7344 7348 "timeit" = dontDistribute super."timeit"; 7349 + "timeless" = dontDistribute super."timeless"; 7345 7350 "timeout" = dontDistribute super."timeout"; 7346 7351 "timeout-control" = dontDistribute super."timeout-control"; 7347 7352 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7604 7609 "unix-memory" = dontDistribute super."unix-memory"; 7605 7610 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7606 7611 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7612 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7607 7613 "unlambda" = dontDistribute super."unlambda"; 7608 7614 "unlit" = dontDistribute super."unlit"; 7609 7615 "unm-hip" = dontDistribute super."unm-hip"; ··· 7731 7737 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7732 7738 "vector-static" = dontDistribute super."vector-static"; 7733 7739 "vector-strategies" = dontDistribute super."vector-strategies"; 7740 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7734 7741 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7735 7742 "verbosity" = dontDistribute super."verbosity"; 7736 7743 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.18.nix
··· 346 346 "GLHUI" = dontDistribute super."GLHUI"; 347 347 "GLM" = dontDistribute super."GLM"; 348 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 349 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 351 "GLUtil" = dontDistribute super."GLUtil"; 351 352 "GPX" = dontDistribute super."GPX"; ··· 602 603 "LambdaNet" = dontDistribute super."LambdaNet"; 603 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 604 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 + "Lambdaya" = dontDistribute super."Lambdaya"; 605 607 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 606 608 "Lastik" = dontDistribute super."Lastik"; 607 609 "Lattices" = dontDistribute super."Lattices"; ··· 2930 2932 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2931 2933 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2932 2934 "finite-field" = dontDistribute super."finite-field"; 2935 + "first-and-last" = dontDistribute super."first-and-last"; 2933 2936 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2934 2937 "firstify" = dontDistribute super."firstify"; 2935 2938 "fishfood" = dontDistribute super."fishfood"; ··· 5204 5207 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5205 5208 "monad-open" = dontDistribute super."monad-open"; 5206 5209 "monad-ox" = dontDistribute super."monad-ox"; 5210 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5207 5211 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5208 5212 "monad-param" = dontDistribute super."monad-param"; 5209 5213 "monad-peel" = dontDistribute super."monad-peel"; ··· 7331 7335 "timecalc" = dontDistribute super."timecalc"; 7332 7336 "timeconsole" = dontDistribute super."timeconsole"; 7333 7337 "timeit" = dontDistribute super."timeit"; 7338 + "timeless" = dontDistribute super."timeless"; 7334 7339 "timeout" = dontDistribute super."timeout"; 7335 7340 "timeout-control" = dontDistribute super."timeout-control"; 7336 7341 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7593 7598 "unix-memory" = dontDistribute super."unix-memory"; 7594 7599 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7595 7600 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7601 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7596 7602 "unlambda" = dontDistribute super."unlambda"; 7597 7603 "unlit" = dontDistribute super."unlit"; 7598 7604 "unm-hip" = dontDistribute super."unm-hip"; ··· 7720 7726 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7721 7727 "vector-static" = dontDistribute super."vector-static"; 7722 7728 "vector-strategies" = dontDistribute super."vector-strategies"; 7729 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7723 7730 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7724 7731 "verbosity" = dontDistribute super."verbosity"; 7725 7732 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.19.nix
··· 346 346 "GLHUI" = dontDistribute super."GLHUI"; 347 347 "GLM" = dontDistribute super."GLM"; 348 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 349 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 351 "GLUtil" = dontDistribute super."GLUtil"; 351 352 "GPX" = dontDistribute super."GPX"; ··· 602 603 "LambdaNet" = dontDistribute super."LambdaNet"; 603 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 604 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 + "Lambdaya" = dontDistribute super."Lambdaya"; 605 607 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 606 608 "Lastik" = dontDistribute super."Lastik"; 607 609 "Lattices" = dontDistribute super."Lattices"; ··· 2930 2932 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2931 2933 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2932 2934 "finite-field" = dontDistribute super."finite-field"; 2935 + "first-and-last" = dontDistribute super."first-and-last"; 2933 2936 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2934 2937 "firstify" = dontDistribute super."firstify"; 2935 2938 "fishfood" = dontDistribute super."fishfood"; ··· 5202 5205 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5203 5206 "monad-open" = dontDistribute super."monad-open"; 5204 5207 "monad-ox" = dontDistribute super."monad-ox"; 5208 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5205 5209 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5206 5210 "monad-param" = dontDistribute super."monad-param"; 5207 5211 "monad-peel" = dontDistribute super."monad-peel"; ··· 7326 7330 "timecalc" = dontDistribute super."timecalc"; 7327 7331 "timeconsole" = dontDistribute super."timeconsole"; 7328 7332 "timeit" = dontDistribute super."timeit"; 7333 + "timeless" = dontDistribute super."timeless"; 7329 7334 "timeout" = dontDistribute super."timeout"; 7330 7335 "timeout-control" = dontDistribute super."timeout-control"; 7331 7336 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7588 7593 "unix-memory" = dontDistribute super."unix-memory"; 7589 7594 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7590 7595 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7596 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7591 7597 "unlambda" = dontDistribute super."unlambda"; 7592 7598 "unlit" = dontDistribute super."unlit"; 7593 7599 "unm-hip" = dontDistribute super."unm-hip"; ··· 7715 7721 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7716 7722 "vector-static" = dontDistribute super."vector-static"; 7717 7723 "vector-strategies" = dontDistribute super."vector-strategies"; 7724 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7718 7725 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7719 7726 "verbosity" = dontDistribute super."verbosity"; 7720 7727 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.2.nix
··· 607 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 612 "Lastik" = dontDistribute super."Lastik"; 612 613 "Lattices" = dontDistribute super."Lattices"; ··· 2971 2972 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2972 2973 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2973 2974 "finite-field" = dontDistribute super."finite-field"; 2975 + "first-and-last" = dontDistribute super."first-and-last"; 2974 2976 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2975 2977 "firstify" = dontDistribute super."firstify"; 2976 2978 "fishfood" = dontDistribute super."fishfood"; ··· 5286 5288 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5287 5289 "monad-open" = dontDistribute super."monad-open"; 5288 5290 "monad-ox" = dontDistribute super."monad-ox"; 5291 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5289 5292 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5290 5293 "monad-param" = dontDistribute super."monad-param"; 5291 5294 "monad-peel" = dontDistribute super."monad-peel"; ··· 7456 7459 "timecalc" = dontDistribute super."timecalc"; 7457 7460 "timeconsole" = dontDistribute super."timeconsole"; 7458 7461 "timeit" = dontDistribute super."timeit"; 7462 + "timeless" = dontDistribute super."timeless"; 7459 7463 "timeout" = dontDistribute super."timeout"; 7460 7464 "timeout-control" = dontDistribute super."timeout-control"; 7461 7465 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7720 7724 "unix-memory" = dontDistribute super."unix-memory"; 7721 7725 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7722 7726 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7727 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7723 7728 "unlambda" = dontDistribute super."unlambda"; 7724 7729 "unlit" = dontDistribute super."unlit"; 7725 7730 "unm-hip" = dontDistribute super."unm-hip"; ··· 7847 7852 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7848 7853 "vector-static" = dontDistribute super."vector-static"; 7849 7854 "vector-strategies" = dontDistribute super."vector-strategies"; 7855 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7850 7856 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7851 7857 "verbosity" = dontDistribute super."verbosity"; 7852 7858 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.20.nix
··· 346 346 "GLHUI" = dontDistribute super."GLHUI"; 347 347 "GLM" = dontDistribute super."GLM"; 348 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 349 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 351 "GLUtil" = dontDistribute super."GLUtil"; 351 352 "GPX" = dontDistribute super."GPX"; ··· 602 603 "LambdaNet" = dontDistribute super."LambdaNet"; 603 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 604 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 + "Lambdaya" = dontDistribute super."Lambdaya"; 605 607 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 606 608 "Lastik" = dontDistribute super."Lastik"; 607 609 "Lattices" = dontDistribute super."Lattices"; ··· 2926 2928 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2927 2929 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2928 2930 "finite-field" = dontDistribute super."finite-field"; 2931 + "first-and-last" = dontDistribute super."first-and-last"; 2929 2932 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2930 2933 "firstify" = dontDistribute super."firstify"; 2931 2934 "fishfood" = dontDistribute super."fishfood"; ··· 5197 5200 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5198 5201 "monad-open" = dontDistribute super."monad-open"; 5199 5202 "monad-ox" = dontDistribute super."monad-ox"; 5203 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5200 5204 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5201 5205 "monad-param" = dontDistribute super."monad-param"; 5202 5206 "monad-peel" = dontDistribute super."monad-peel"; ··· 7319 7323 "timecalc" = dontDistribute super."timecalc"; 7320 7324 "timeconsole" = dontDistribute super."timeconsole"; 7321 7325 "timeit" = dontDistribute super."timeit"; 7326 + "timeless" = dontDistribute super."timeless"; 7322 7327 "timeout" = dontDistribute super."timeout"; 7323 7328 "timeout-control" = dontDistribute super."timeout-control"; 7324 7329 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7581 7586 "unix-memory" = dontDistribute super."unix-memory"; 7582 7587 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7583 7588 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7589 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7584 7590 "unlambda" = dontDistribute super."unlambda"; 7585 7591 "unlit" = dontDistribute super."unlit"; 7586 7592 "unm-hip" = dontDistribute super."unm-hip"; ··· 7708 7714 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7709 7715 "vector-static" = dontDistribute super."vector-static"; 7710 7716 "vector-strategies" = dontDistribute super."vector-strategies"; 7717 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7711 7718 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7712 7719 "verbosity" = dontDistribute super."verbosity"; 7713 7720 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.21.nix
··· 346 346 "GLHUI" = dontDistribute super."GLHUI"; 347 347 "GLM" = dontDistribute super."GLM"; 348 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 349 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 351 "GLUtil" = dontDistribute super."GLUtil"; 351 352 "GPX" = dontDistribute super."GPX"; ··· 602 603 "LambdaNet" = dontDistribute super."LambdaNet"; 603 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 604 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 + "Lambdaya" = dontDistribute super."Lambdaya"; 605 607 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 606 608 "Lastik" = dontDistribute super."Lastik"; 607 609 "Lattices" = dontDistribute super."Lattices"; ··· 2926 2928 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2927 2929 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2928 2930 "finite-field" = dontDistribute super."finite-field"; 2931 + "first-and-last" = dontDistribute super."first-and-last"; 2929 2932 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2930 2933 "firstify" = dontDistribute super."firstify"; 2931 2934 "fishfood" = dontDistribute super."fishfood"; ··· 5195 5198 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5196 5199 "monad-open" = dontDistribute super."monad-open"; 5197 5200 "monad-ox" = dontDistribute super."monad-ox"; 5201 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5198 5202 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5199 5203 "monad-param" = dontDistribute super."monad-param"; 5200 5204 "monad-peel" = dontDistribute super."monad-peel"; ··· 7313 7317 "timecalc" = dontDistribute super."timecalc"; 7314 7318 "timeconsole" = dontDistribute super."timeconsole"; 7315 7319 "timeit" = dontDistribute super."timeit"; 7320 + "timeless" = dontDistribute super."timeless"; 7316 7321 "timeout" = dontDistribute super."timeout"; 7317 7322 "timeout-control" = dontDistribute super."timeout-control"; 7318 7323 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7575 7580 "unix-memory" = dontDistribute super."unix-memory"; 7576 7581 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7577 7582 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7583 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7578 7584 "unlambda" = dontDistribute super."unlambda"; 7579 7585 "unlit" = dontDistribute super."unlit"; 7580 7586 "unm-hip" = dontDistribute super."unm-hip"; ··· 7700 7706 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7701 7707 "vector-static" = dontDistribute super."vector-static"; 7702 7708 "vector-strategies" = dontDistribute super."vector-strategies"; 7709 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7703 7710 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7704 7711 "verbosity" = dontDistribute super."verbosity"; 7705 7712 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.22.nix
··· 346 346 "GLHUI" = dontDistribute super."GLHUI"; 347 347 "GLM" = dontDistribute super."GLM"; 348 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 349 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 351 "GLUtil" = dontDistribute super."GLUtil"; 351 352 "GPX" = dontDistribute super."GPX"; ··· 602 603 "LambdaNet" = dontDistribute super."LambdaNet"; 603 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 604 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 + "Lambdaya" = dontDistribute super."Lambdaya"; 605 607 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 606 608 "Lastik" = dontDistribute super."Lastik"; 607 609 "Lattices" = dontDistribute super."Lattices"; ··· 2925 2927 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2926 2928 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2927 2929 "finite-field" = dontDistribute super."finite-field"; 2930 + "first-and-last" = dontDistribute super."first-and-last"; 2928 2931 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2929 2932 "firstify" = dontDistribute super."firstify"; 2930 2933 "fishfood" = dontDistribute super."fishfood"; ··· 5191 5194 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5192 5195 "monad-open" = dontDistribute super."monad-open"; 5193 5196 "monad-ox" = dontDistribute super."monad-ox"; 5197 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5194 5198 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5195 5199 "monad-param" = dontDistribute super."monad-param"; 5196 5200 "monad-peel" = dontDistribute super."monad-peel"; ··· 7309 7313 "timecalc" = dontDistribute super."timecalc"; 7310 7314 "timeconsole" = dontDistribute super."timeconsole"; 7311 7315 "timeit" = dontDistribute super."timeit"; 7316 + "timeless" = dontDistribute super."timeless"; 7312 7317 "timeout" = dontDistribute super."timeout"; 7313 7318 "timeout-control" = dontDistribute super."timeout-control"; 7314 7319 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7571 7576 "unix-memory" = dontDistribute super."unix-memory"; 7572 7577 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7573 7578 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7579 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7574 7580 "unlambda" = dontDistribute super."unlambda"; 7575 7581 "unlit" = dontDistribute super."unlit"; 7576 7582 "unm-hip" = dontDistribute super."unm-hip"; ··· 7696 7702 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7697 7703 "vector-static" = dontDistribute super."vector-static"; 7698 7704 "vector-strategies" = dontDistribute super."vector-strategies"; 7705 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7699 7706 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7700 7707 "verbosity" = dontDistribute super."verbosity"; 7701 7708 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.3.nix
··· 607 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 612 "Lastik" = dontDistribute super."Lastik"; 612 613 "Lattices" = dontDistribute super."Lattices"; ··· 2970 2971 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2971 2972 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2972 2973 "finite-field" = dontDistribute super."finite-field"; 2974 + "first-and-last" = dontDistribute super."first-and-last"; 2973 2975 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2974 2976 "firstify" = dontDistribute super."firstify"; 2975 2977 "fishfood" = dontDistribute super."fishfood"; ··· 5284 5286 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5285 5287 "monad-open" = dontDistribute super."monad-open"; 5286 5288 "monad-ox" = dontDistribute super."monad-ox"; 5289 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5287 5290 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5288 5291 "monad-param" = dontDistribute super."monad-param"; 5289 5292 "monad-peel" = dontDistribute super."monad-peel"; ··· 7453 7456 "timecalc" = dontDistribute super."timecalc"; 7454 7457 "timeconsole" = dontDistribute super."timeconsole"; 7455 7458 "timeit" = dontDistribute super."timeit"; 7459 + "timeless" = dontDistribute super."timeless"; 7456 7460 "timeout" = dontDistribute super."timeout"; 7457 7461 "timeout-control" = dontDistribute super."timeout-control"; 7458 7462 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7717 7721 "unix-memory" = dontDistribute super."unix-memory"; 7718 7722 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7719 7723 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7724 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7720 7725 "unlambda" = dontDistribute super."unlambda"; 7721 7726 "unlit" = dontDistribute super."unlit"; 7722 7727 "unm-hip" = dontDistribute super."unm-hip"; ··· 7844 7849 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7845 7850 "vector-static" = dontDistribute super."vector-static"; 7846 7851 "vector-strategies" = dontDistribute super."vector-strategies"; 7852 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7847 7853 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7848 7854 "verbosity" = dontDistribute super."verbosity"; 7849 7855 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.4.nix
··· 607 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 612 "Lastik" = dontDistribute super."Lastik"; 612 613 "Lattices" = dontDistribute super."Lattices"; ··· 2969 2970 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2970 2971 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2971 2972 "finite-field" = dontDistribute super."finite-field"; 2973 + "first-and-last" = dontDistribute super."first-and-last"; 2972 2974 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2973 2975 "firstify" = dontDistribute super."firstify"; 2974 2976 "fishfood" = dontDistribute super."fishfood"; ··· 5282 5284 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5283 5285 "monad-open" = dontDistribute super."monad-open"; 5284 5286 "monad-ox" = dontDistribute super."monad-ox"; 5287 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5285 5288 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5286 5289 "monad-param" = dontDistribute super."monad-param"; 5287 5290 "monad-peel" = dontDistribute super."monad-peel"; ··· 7447 7450 "timecalc" = dontDistribute super."timecalc"; 7448 7451 "timeconsole" = dontDistribute super."timeconsole"; 7449 7452 "timeit" = dontDistribute super."timeit"; 7453 + "timeless" = dontDistribute super."timeless"; 7450 7454 "timeout" = dontDistribute super."timeout"; 7451 7455 "timeout-control" = dontDistribute super."timeout-control"; 7452 7456 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7711 7715 "unix-memory" = dontDistribute super."unix-memory"; 7712 7716 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7713 7717 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7718 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7714 7719 "unlambda" = dontDistribute super."unlambda"; 7715 7720 "unlit" = dontDistribute super."unlit"; 7716 7721 "unm-hip" = dontDistribute super."unm-hip"; ··· 7838 7843 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7839 7844 "vector-static" = dontDistribute super."vector-static"; 7840 7845 "vector-strategies" = dontDistribute super."vector-strategies"; 7846 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7841 7847 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7842 7848 "verbosity" = dontDistribute super."verbosity"; 7843 7849 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.5.nix
··· 607 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 612 "Lastik" = dontDistribute super."Lastik"; 612 613 "Lattices" = dontDistribute super."Lattices"; ··· 2967 2968 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2968 2969 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2969 2970 "finite-field" = dontDistribute super."finite-field"; 2971 + "first-and-last" = dontDistribute super."first-and-last"; 2970 2972 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2971 2973 "firstify" = dontDistribute super."firstify"; 2972 2974 "fishfood" = dontDistribute super."fishfood"; ··· 5279 5281 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5280 5282 "monad-open" = dontDistribute super."monad-open"; 5281 5283 "monad-ox" = dontDistribute super."monad-ox"; 5284 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5282 5285 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5283 5286 "monad-param" = dontDistribute super."monad-param"; 5284 5287 "monad-peel" = dontDistribute super."monad-peel"; ··· 7443 7446 "timecalc" = dontDistribute super."timecalc"; 7444 7447 "timeconsole" = dontDistribute super."timeconsole"; 7445 7448 "timeit" = dontDistribute super."timeit"; 7449 + "timeless" = dontDistribute super."timeless"; 7446 7450 "timeout" = dontDistribute super."timeout"; 7447 7451 "timeout-control" = dontDistribute super."timeout-control"; 7448 7452 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7707 7711 "unix-memory" = dontDistribute super."unix-memory"; 7708 7712 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7709 7713 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7714 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7710 7715 "unlambda" = dontDistribute super."unlambda"; 7711 7716 "unlit" = dontDistribute super."unlit"; 7712 7717 "unm-hip" = dontDistribute super."unm-hip"; ··· 7834 7839 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7835 7840 "vector-static" = dontDistribute super."vector-static"; 7836 7841 "vector-strategies" = dontDistribute super."vector-strategies"; 7842 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7837 7843 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7838 7844 "verbosity" = dontDistribute super."verbosity"; 7839 7845 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.6.nix
··· 607 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 612 "Lastik" = dontDistribute super."Lastik"; 612 613 "Lattices" = dontDistribute super."Lattices"; ··· 2963 2964 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2964 2965 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2965 2966 "finite-field" = dontDistribute super."finite-field"; 2967 + "first-and-last" = dontDistribute super."first-and-last"; 2966 2968 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2967 2969 "firstify" = dontDistribute super."firstify"; 2968 2970 "fishfood" = dontDistribute super."fishfood"; ··· 5273 5275 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5274 5276 "monad-open" = dontDistribute super."monad-open"; 5275 5277 "monad-ox" = dontDistribute super."monad-ox"; 5278 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5276 5279 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5277 5280 "monad-param" = dontDistribute super."monad-param"; 5278 5281 "monad-peel" = dontDistribute super."monad-peel"; ··· 7436 7439 "timecalc" = dontDistribute super."timecalc"; 7437 7440 "timeconsole" = dontDistribute super."timeconsole"; 7438 7441 "timeit" = dontDistribute super."timeit"; 7442 + "timeless" = dontDistribute super."timeless"; 7439 7443 "timeout" = dontDistribute super."timeout"; 7440 7444 "timeout-control" = dontDistribute super."timeout-control"; 7441 7445 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7698 7702 "unix-memory" = dontDistribute super."unix-memory"; 7699 7703 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7700 7704 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7705 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7701 7706 "unlambda" = dontDistribute super."unlambda"; 7702 7707 "unlit" = dontDistribute super."unlit"; 7703 7708 "unm-hip" = dontDistribute super."unm-hip"; ··· 7825 7830 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7826 7831 "vector-static" = dontDistribute super."vector-static"; 7827 7832 "vector-strategies" = dontDistribute super."vector-strategies"; 7833 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7828 7834 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7829 7835 "verbosity" = dontDistribute super."verbosity"; 7830 7836 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.7.nix
··· 347 347 "GLHUI" = dontDistribute super."GLHUI"; 348 348 "GLM" = dontDistribute super."GLM"; 349 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 352 "GLUtil" = dontDistribute super."GLUtil"; 352 353 "GPX" = dontDistribute super."GPX"; ··· 605 606 "LambdaNet" = dontDistribute super."LambdaNet"; 606 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 611 "Lastik" = dontDistribute super."Lastik"; 610 612 "Lattices" = dontDistribute super."Lattices"; ··· 2961 2963 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2962 2964 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2963 2965 "finite-field" = dontDistribute super."finite-field"; 2966 + "first-and-last" = dontDistribute super."first-and-last"; 2964 2967 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2965 2968 "firstify" = dontDistribute super."firstify"; 2966 2969 "fishfood" = dontDistribute super."fishfood"; ··· 5271 5274 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5272 5275 "monad-open" = dontDistribute super."monad-open"; 5273 5276 "monad-ox" = dontDistribute super."monad-ox"; 5277 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5274 5278 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5275 5279 "monad-param" = dontDistribute super."monad-param"; 5276 5280 "monad-peel" = dontDistribute super."monad-peel"; ··· 7434 7438 "timecalc" = dontDistribute super."timecalc"; 7435 7439 "timeconsole" = dontDistribute super."timeconsole"; 7436 7440 "timeit" = dontDistribute super."timeit"; 7441 + "timeless" = dontDistribute super."timeless"; 7437 7442 "timeout" = dontDistribute super."timeout"; 7438 7443 "timeout-control" = dontDistribute super."timeout-control"; 7439 7444 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7696 7701 "unix-memory" = dontDistribute super."unix-memory"; 7697 7702 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7698 7703 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7704 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7699 7705 "unlambda" = dontDistribute super."unlambda"; 7700 7706 "unlit" = dontDistribute super."unlit"; 7701 7707 "unm-hip" = dontDistribute super."unm-hip"; ··· 7823 7829 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7824 7830 "vector-static" = dontDistribute super."vector-static"; 7825 7831 "vector-strategies" = dontDistribute super."vector-strategies"; 7832 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7826 7833 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7827 7834 "verbosity" = dontDistribute super."verbosity"; 7828 7835 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.8.nix
··· 347 347 "GLHUI" = dontDistribute super."GLHUI"; 348 348 "GLM" = dontDistribute super."GLM"; 349 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 352 "GLUtil" = dontDistribute super."GLUtil"; 352 353 "GPX" = dontDistribute super."GPX"; ··· 605 606 "LambdaNet" = dontDistribute super."LambdaNet"; 606 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 611 "Lastik" = dontDistribute super."Lastik"; 610 612 "Lattices" = dontDistribute super."Lattices"; ··· 2960 2962 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2961 2963 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2962 2964 "finite-field" = dontDistribute super."finite-field"; 2965 + "first-and-last" = dontDistribute super."first-and-last"; 2963 2966 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2964 2967 "firstify" = dontDistribute super."firstify"; 2965 2968 "fishfood" = dontDistribute super."fishfood"; ··· 5267 5270 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5268 5271 "monad-open" = dontDistribute super."monad-open"; 5269 5272 "monad-ox" = dontDistribute super."monad-ox"; 5273 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5270 5274 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5271 5275 "monad-param" = dontDistribute super."monad-param"; 5272 5276 "monad-peel" = dontDistribute super."monad-peel"; ··· 7426 7430 "timecalc" = dontDistribute super."timecalc"; 7427 7431 "timeconsole" = dontDistribute super."timeconsole"; 7428 7432 "timeit" = dontDistribute super."timeit"; 7433 + "timeless" = dontDistribute super."timeless"; 7429 7434 "timeout" = dontDistribute super."timeout"; 7430 7435 "timeout-control" = dontDistribute super."timeout-control"; 7431 7436 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7688 7693 "unix-memory" = dontDistribute super."unix-memory"; 7689 7694 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7690 7695 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7696 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7691 7697 "unlambda" = dontDistribute super."unlambda"; 7692 7698 "unlit" = dontDistribute super."unlit"; 7693 7699 "unm-hip" = dontDistribute super."unm-hip"; ··· 7815 7821 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7816 7822 "vector-static" = dontDistribute super."vector-static"; 7817 7823 "vector-strategies" = dontDistribute super."vector-strategies"; 7824 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7818 7825 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7819 7826 "verbosity" = dontDistribute super."verbosity"; 7820 7827 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.9.nix
··· 347 347 "GLHUI" = dontDistribute super."GLHUI"; 348 348 "GLM" = dontDistribute super."GLM"; 349 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 352 "GLUtil" = dontDistribute super."GLUtil"; 352 353 "GPX" = dontDistribute super."GPX"; ··· 605 606 "LambdaNet" = dontDistribute super."LambdaNet"; 606 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 611 "Lastik" = dontDistribute super."Lastik"; 610 612 "Lattices" = dontDistribute super."Lattices"; ··· 2955 2957 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2956 2958 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2957 2959 "finite-field" = dontDistribute super."finite-field"; 2960 + "first-and-last" = dontDistribute super."first-and-last"; 2958 2961 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2959 2962 "firstify" = dontDistribute super."firstify"; 2960 2963 "fishfood" = dontDistribute super."fishfood"; ··· 5257 5260 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5258 5261 "monad-open" = dontDistribute super."monad-open"; 5259 5262 "monad-ox" = dontDistribute super."monad-ox"; 5263 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5260 5264 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5261 5265 "monad-param" = dontDistribute super."monad-param"; 5262 5266 "monad-peel" = dontDistribute super."monad-peel"; ··· 7409 7413 "timecalc" = dontDistribute super."timecalc"; 7410 7414 "timeconsole" = dontDistribute super."timeconsole"; 7411 7415 "timeit" = dontDistribute super."timeit"; 7416 + "timeless" = dontDistribute super."timeless"; 7412 7417 "timeout" = dontDistribute super."timeout"; 7413 7418 "timeout-control" = dontDistribute super."timeout-control"; 7414 7419 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7671 7676 "unix-memory" = dontDistribute super."unix-memory"; 7672 7677 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7673 7678 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7679 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7674 7680 "unlambda" = dontDistribute super."unlambda"; 7675 7681 "unlit" = dontDistribute super."unlit"; 7676 7682 "unm-hip" = dontDistribute super."unm-hip"; ··· 7798 7804 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7799 7805 "vector-static" = dontDistribute super."vector-static"; 7800 7806 "vector-strategies" = dontDistribute super."vector-strategies"; 7807 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7801 7808 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7802 7809 "verbosity" = dontDistribute super."verbosity"; 7803 7810 "verilog" = dontDistribute super."verilog";
+9
pkgs/development/haskell-modules/configuration-lts-3.0.nix
··· 587 587 "LambdaNet" = dontDistribute super."LambdaNet"; 588 588 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 589 589 "LambdaShell" = dontDistribute super."LambdaShell"; 590 + "Lambdaya" = dontDistribute super."Lambdaya"; 590 591 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 591 592 "Lastik" = dontDistribute super."Lastik"; 592 593 "Lattices" = dontDistribute super."Lattices"; ··· 2455 2456 "djinn" = dontDistribute super."djinn"; 2456 2457 "djinn-th" = dontDistribute super."djinn-th"; 2457 2458 "dlist" = doDistribute super."dlist_0_7_1_1"; 2459 + "dns" = doDistribute super."dns_2_0_0"; 2458 2460 "dnscache" = dontDistribute super."dnscache"; 2459 2461 "dnsrbl" = dontDistribute super."dnsrbl"; 2460 2462 "dnssd" = dontDistribute super."dnssd"; ··· 2810 2812 "find-conduit" = dontDistribute super."find-conduit"; 2811 2813 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2812 2814 "finite-field" = dontDistribute super."finite-field"; 2815 + "first-and-last" = dontDistribute super."first-and-last"; 2813 2816 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2814 2817 "firstify" = dontDistribute super."firstify"; 2815 2818 "fishfood" = dontDistribute super."fishfood"; ··· 3399 3402 "happstack-lite" = dontDistribute super."happstack-lite"; 3400 3403 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3401 3404 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3405 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3402 3406 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3403 3407 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3404 3408 "happstack-state" = dontDistribute super."happstack-state"; ··· 4975 4979 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4976 4980 "monad-open" = dontDistribute super."monad-open"; 4977 4981 "monad-ox" = dontDistribute super."monad-ox"; 4982 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4978 4983 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4979 4984 "monad-param" = dontDistribute super."monad-param"; 4980 4985 "monad-ran" = dontDistribute super."monad-ran"; ··· 7009 7014 "time-w3c" = dontDistribute super."time-w3c"; 7010 7015 "timecalc" = dontDistribute super."timecalc"; 7011 7016 "timeconsole" = dontDistribute super."timeconsole"; 7017 + "timeless" = dontDistribute super."timeless"; 7012 7018 "timeout" = dontDistribute super."timeout"; 7013 7019 "timeout-control" = dontDistribute super."timeout-control"; 7014 7020 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7169 7175 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7170 7176 "type-level-sets" = dontDistribute super."type-level-sets"; 7171 7177 "type-level-tf" = dontDistribute super."type-level-tf"; 7178 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7172 7179 "type-natural" = dontDistribute super."type-natural"; 7173 7180 "type-ord" = dontDistribute super."type-ord"; 7174 7181 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7261 7268 "unix-memory" = dontDistribute super."unix-memory"; 7262 7269 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7263 7270 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7271 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7264 7272 "unlit" = dontDistribute super."unlit"; 7265 7273 "unm-hip" = dontDistribute super."unm-hip"; 7266 7274 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7375 7383 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7376 7384 "vector-static" = dontDistribute super."vector-static"; 7377 7385 "vector-strategies" = dontDistribute super."vector-strategies"; 7386 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7378 7387 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7379 7388 "verbosity" = dontDistribute super."verbosity"; 7380 7389 "verilog" = dontDistribute super."verilog";
+9
pkgs/development/haskell-modules/configuration-lts-3.1.nix
··· 587 587 "LambdaNet" = dontDistribute super."LambdaNet"; 588 588 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 589 589 "LambdaShell" = dontDistribute super."LambdaShell"; 590 + "Lambdaya" = dontDistribute super."Lambdaya"; 590 591 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 591 592 "Lastik" = dontDistribute super."Lastik"; 592 593 "Lattices" = dontDistribute super."Lattices"; ··· 2452 2453 "djinn" = dontDistribute super."djinn"; 2453 2454 "djinn-th" = dontDistribute super."djinn-th"; 2454 2455 "dlist" = doDistribute super."dlist_0_7_1_1"; 2456 + "dns" = doDistribute super."dns_2_0_0"; 2455 2457 "dnscache" = dontDistribute super."dnscache"; 2456 2458 "dnsrbl" = dontDistribute super."dnsrbl"; 2457 2459 "dnssd" = dontDistribute super."dnssd"; ··· 2804 2806 "find-conduit" = dontDistribute super."find-conduit"; 2805 2807 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2806 2808 "finite-field" = dontDistribute super."finite-field"; 2809 + "first-and-last" = dontDistribute super."first-and-last"; 2807 2810 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2808 2811 "firstify" = dontDistribute super."firstify"; 2809 2812 "fishfood" = dontDistribute super."fishfood"; ··· 3393 3396 "happstack-lite" = dontDistribute super."happstack-lite"; 3394 3397 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3395 3398 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3399 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3396 3400 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3397 3401 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3398 3402 "happstack-state" = dontDistribute super."happstack-state"; ··· 4967 4971 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4968 4972 "monad-open" = dontDistribute super."monad-open"; 4969 4973 "monad-ox" = dontDistribute super."monad-ox"; 4974 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4970 4975 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4971 4976 "monad-param" = dontDistribute super."monad-param"; 4972 4977 "monad-ran" = dontDistribute super."monad-ran"; ··· 6998 7003 "time-w3c" = dontDistribute super."time-w3c"; 6999 7004 "timecalc" = dontDistribute super."timecalc"; 7000 7005 "timeconsole" = dontDistribute super."timeconsole"; 7006 + "timeless" = dontDistribute super."timeless"; 7001 7007 "timeout" = dontDistribute super."timeout"; 7002 7008 "timeout-control" = dontDistribute super."timeout-control"; 7003 7009 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7158 7164 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7159 7165 "type-level-sets" = dontDistribute super."type-level-sets"; 7160 7166 "type-level-tf" = dontDistribute super."type-level-tf"; 7167 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7161 7168 "type-natural" = dontDistribute super."type-natural"; 7162 7169 "type-ord" = dontDistribute super."type-ord"; 7163 7170 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7250 7257 "unix-memory" = dontDistribute super."unix-memory"; 7251 7258 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7252 7259 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7260 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7253 7261 "unlit" = dontDistribute super."unlit"; 7254 7262 "unm-hip" = dontDistribute super."unm-hip"; 7255 7263 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7363 7371 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7364 7372 "vector-static" = dontDistribute super."vector-static"; 7365 7373 "vector-strategies" = dontDistribute super."vector-strategies"; 7374 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7366 7375 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7367 7376 "verbosity" = dontDistribute super."verbosity"; 7368 7377 "verilog" = dontDistribute super."verilog";
+9
pkgs/development/haskell-modules/configuration-lts-3.2.nix
··· 584 584 "LambdaNet" = dontDistribute super."LambdaNet"; 585 585 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 586 586 "LambdaShell" = dontDistribute super."LambdaShell"; 587 + "Lambdaya" = dontDistribute super."Lambdaya"; 587 588 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 588 589 "Lastik" = dontDistribute super."Lastik"; 589 590 "Lattices" = dontDistribute super."Lattices"; ··· 2447 2448 "dixi" = dontDistribute super."dixi"; 2448 2449 "djinn" = dontDistribute super."djinn"; 2449 2450 "djinn-th" = dontDistribute super."djinn-th"; 2451 + "dns" = doDistribute super."dns_2_0_0"; 2450 2452 "dnscache" = dontDistribute super."dnscache"; 2451 2453 "dnsrbl" = dontDistribute super."dnsrbl"; 2452 2454 "dnssd" = dontDistribute super."dnssd"; ··· 2799 2801 "find-conduit" = dontDistribute super."find-conduit"; 2800 2802 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2801 2803 "finite-field" = dontDistribute super."finite-field"; 2804 + "first-and-last" = dontDistribute super."first-and-last"; 2802 2805 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2803 2806 "firstify" = dontDistribute super."firstify"; 2804 2807 "fishfood" = dontDistribute super."fishfood"; ··· 3386 3389 "happstack-lite" = dontDistribute super."happstack-lite"; 3387 3390 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3388 3391 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3392 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3389 3393 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3390 3394 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3391 3395 "happstack-state" = dontDistribute super."happstack-state"; ··· 4957 4961 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4958 4962 "monad-open" = dontDistribute super."monad-open"; 4959 4963 "monad-ox" = dontDistribute super."monad-ox"; 4964 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4960 4965 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4961 4966 "monad-param" = dontDistribute super."monad-param"; 4962 4967 "monad-ran" = dontDistribute super."monad-ran"; ··· 6980 6985 "time-w3c" = dontDistribute super."time-w3c"; 6981 6986 "timecalc" = dontDistribute super."timecalc"; 6982 6987 "timeconsole" = dontDistribute super."timeconsole"; 6988 + "timeless" = dontDistribute super."timeless"; 6983 6989 "timeout" = dontDistribute super."timeout"; 6984 6990 "timeout-control" = dontDistribute super."timeout-control"; 6985 6991 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7140 7146 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7141 7147 "type-level-sets" = dontDistribute super."type-level-sets"; 7142 7148 "type-level-tf" = dontDistribute super."type-level-tf"; 7149 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7143 7150 "type-natural" = dontDistribute super."type-natural"; 7144 7151 "type-ord" = dontDistribute super."type-ord"; 7145 7152 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7232 7239 "unix-memory" = dontDistribute super."unix-memory"; 7233 7240 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7234 7241 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7242 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7235 7243 "unlit" = dontDistribute super."unlit"; 7236 7244 "unm-hip" = dontDistribute super."unm-hip"; 7237 7245 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7345 7353 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7346 7354 "vector-static" = dontDistribute super."vector-static"; 7347 7355 "vector-strategies" = dontDistribute super."vector-strategies"; 7356 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7348 7357 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7349 7358 "verbosity" = dontDistribute super."verbosity"; 7350 7359 "verilog" = dontDistribute super."verilog";
+10
pkgs/development/haskell-modules/configuration-lts-3.3.nix
··· 583 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 + "Lambdaya" = dontDistribute super."Lambdaya"; 586 587 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 587 588 "Lastik" = dontDistribute super."Lastik"; 588 589 "Lattices" = dontDistribute super."Lattices"; ··· 2442 2443 "dixi" = dontDistribute super."dixi"; 2443 2444 "djinn" = dontDistribute super."djinn"; 2444 2445 "djinn-th" = dontDistribute super."djinn-th"; 2446 + "dns" = doDistribute super."dns_2_0_0"; 2445 2447 "dnscache" = dontDistribute super."dnscache"; 2446 2448 "dnsrbl" = dontDistribute super."dnsrbl"; 2447 2449 "dnssd" = dontDistribute super."dnssd"; ··· 2794 2796 "find-conduit" = dontDistribute super."find-conduit"; 2795 2797 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2796 2798 "finite-field" = dontDistribute super."finite-field"; 2799 + "first-and-last" = dontDistribute super."first-and-last"; 2797 2800 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2798 2801 "firstify" = dontDistribute super."firstify"; 2799 2802 "fishfood" = dontDistribute super."fishfood"; ··· 3380 3383 "happstack-lite" = dontDistribute super."happstack-lite"; 3381 3384 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3382 3385 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3386 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3383 3387 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3384 3388 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3385 3389 "happstack-state" = dontDistribute super."happstack-state"; ··· 4949 4953 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4950 4954 "monad-open" = dontDistribute super."monad-open"; 4951 4955 "monad-ox" = dontDistribute super."monad-ox"; 4956 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4952 4957 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4953 4958 "monad-param" = dontDistribute super."monad-param"; 4954 4959 "monad-ran" = dontDistribute super."monad-ran"; ··· 4983 4988 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4984 4989 "monitor" = dontDistribute super."monitor"; 4985 4990 "mono-foldable" = dontDistribute super."mono-foldable"; 4991 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4986 4992 "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; 4987 4993 "monoid-owns" = dontDistribute super."monoid-owns"; 4988 4994 "monoid-record" = dontDistribute super."monoid-record"; ··· 6966 6972 "time-w3c" = dontDistribute super."time-w3c"; 6967 6973 "timecalc" = dontDistribute super."timecalc"; 6968 6974 "timeconsole" = dontDistribute super."timeconsole"; 6975 + "timeless" = dontDistribute super."timeless"; 6969 6976 "timeout" = dontDistribute super."timeout"; 6970 6977 "timeout-control" = dontDistribute super."timeout-control"; 6971 6978 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7126 7133 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7127 7134 "type-level-sets" = dontDistribute super."type-level-sets"; 7128 7135 "type-level-tf" = dontDistribute super."type-level-tf"; 7136 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7129 7137 "type-natural" = dontDistribute super."type-natural"; 7130 7138 "type-ord" = dontDistribute super."type-ord"; 7131 7139 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7218 7226 "unix-memory" = dontDistribute super."unix-memory"; 7219 7227 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7220 7228 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7229 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7221 7230 "unlit" = dontDistribute super."unlit"; 7222 7231 "unm-hip" = dontDistribute super."unm-hip"; 7223 7232 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7330 7339 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7331 7340 "vector-static" = dontDistribute super."vector-static"; 7332 7341 "vector-strategies" = dontDistribute super."vector-strategies"; 7342 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7333 7343 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7334 7344 "verbosity" = dontDistribute super."verbosity"; 7335 7345 "verilog" = dontDistribute super."verilog";
+10
pkgs/development/haskell-modules/configuration-lts-3.4.nix
··· 583 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 + "Lambdaya" = dontDistribute super."Lambdaya"; 586 587 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 587 588 "Lastik" = dontDistribute super."Lastik"; 588 589 "Lattices" = dontDistribute super."Lattices"; ··· 2441 2442 "dixi" = dontDistribute super."dixi"; 2442 2443 "djinn" = dontDistribute super."djinn"; 2443 2444 "djinn-th" = dontDistribute super."djinn-th"; 2445 + "dns" = doDistribute super."dns_2_0_0"; 2444 2446 "dnscache" = dontDistribute super."dnscache"; 2445 2447 "dnsrbl" = dontDistribute super."dnsrbl"; 2446 2448 "dnssd" = dontDistribute super."dnssd"; ··· 2793 2795 "find-conduit" = dontDistribute super."find-conduit"; 2794 2796 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2795 2797 "finite-field" = dontDistribute super."finite-field"; 2798 + "first-and-last" = dontDistribute super."first-and-last"; 2796 2799 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2797 2800 "firstify" = dontDistribute super."firstify"; 2798 2801 "fishfood" = dontDistribute super."fishfood"; ··· 3379 3382 "happstack-lite" = dontDistribute super."happstack-lite"; 3380 3383 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3381 3384 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3385 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3382 3386 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3383 3387 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3384 3388 "happstack-state" = dontDistribute super."happstack-state"; ··· 4948 4952 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4949 4953 "monad-open" = dontDistribute super."monad-open"; 4950 4954 "monad-ox" = dontDistribute super."monad-ox"; 4955 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4951 4956 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4952 4957 "monad-param" = dontDistribute super."monad-param"; 4953 4958 "monad-ran" = dontDistribute super."monad-ran"; ··· 4982 4987 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4983 4988 "monitor" = dontDistribute super."monitor"; 4984 4989 "mono-foldable" = dontDistribute super."mono-foldable"; 4990 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4985 4991 "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; 4986 4992 "monoid-owns" = dontDistribute super."monoid-owns"; 4987 4993 "monoid-record" = dontDistribute super."monoid-record"; ··· 6963 6969 "time-w3c" = dontDistribute super."time-w3c"; 6964 6970 "timecalc" = dontDistribute super."timecalc"; 6965 6971 "timeconsole" = dontDistribute super."timeconsole"; 6972 + "timeless" = dontDistribute super."timeless"; 6966 6973 "timeout" = dontDistribute super."timeout"; 6967 6974 "timeout-control" = dontDistribute super."timeout-control"; 6968 6975 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7123 7130 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7124 7131 "type-level-sets" = dontDistribute super."type-level-sets"; 7125 7132 "type-level-tf" = dontDistribute super."type-level-tf"; 7133 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7126 7134 "type-natural" = dontDistribute super."type-natural"; 7127 7135 "type-ord" = dontDistribute super."type-ord"; 7128 7136 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7215 7223 "unix-memory" = dontDistribute super."unix-memory"; 7216 7224 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7217 7225 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7226 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7218 7227 "unlit" = dontDistribute super."unlit"; 7219 7228 "unm-hip" = dontDistribute super."unm-hip"; 7220 7229 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7327 7336 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7328 7337 "vector-static" = dontDistribute super."vector-static"; 7329 7338 "vector-strategies" = dontDistribute super."vector-strategies"; 7339 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7330 7340 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7331 7341 "verbosity" = dontDistribute super."verbosity"; 7332 7342 "verilog" = dontDistribute super."verilog";
+11
pkgs/development/haskell-modules/configuration-lts-3.5.nix
··· 583 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 + "Lambdaya" = dontDistribute super."Lambdaya"; 586 587 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 587 588 "Lastik" = dontDistribute super."Lastik"; 588 589 "Lattices" = dontDistribute super."Lattices"; ··· 772 773 "RNAdesign" = dontDistribute super."RNAdesign"; 773 774 "RNAdraw" = dontDistribute super."RNAdraw"; 774 775 "RNAwolf" = dontDistribute super."RNAwolf"; 776 + "RSA" = doDistribute super."RSA_2_1_0_3"; 775 777 "Raincat" = dontDistribute super."Raincat"; 776 778 "Random123" = dontDistribute super."Random123"; 777 779 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2437 2439 "dixi" = dontDistribute super."dixi"; 2438 2440 "djinn" = dontDistribute super."djinn"; 2439 2441 "djinn-th" = dontDistribute super."djinn-th"; 2442 + "dns" = doDistribute super."dns_2_0_0"; 2440 2443 "dnscache" = dontDistribute super."dnscache"; 2441 2444 "dnsrbl" = dontDistribute super."dnsrbl"; 2442 2445 "dnssd" = dontDistribute super."dnssd"; ··· 2787 2790 "find-conduit" = dontDistribute super."find-conduit"; 2788 2791 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2789 2792 "finite-field" = dontDistribute super."finite-field"; 2793 + "first-and-last" = dontDistribute super."first-and-last"; 2790 2794 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2791 2795 "firstify" = dontDistribute super."firstify"; 2792 2796 "fishfood" = dontDistribute super."fishfood"; ··· 3373 3377 "happstack-lite" = dontDistribute super."happstack-lite"; 3374 3378 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3375 3379 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3380 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3376 3381 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3377 3382 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3378 3383 "happstack-state" = dontDistribute super."happstack-state"; ··· 4935 4940 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4936 4941 "monad-open" = dontDistribute super."monad-open"; 4937 4942 "monad-ox" = dontDistribute super."monad-ox"; 4943 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4938 4944 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4939 4945 "monad-param" = dontDistribute super."monad-param"; 4940 4946 "monad-ran" = dontDistribute super."monad-ran"; ··· 4969 4975 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4970 4976 "monitor" = dontDistribute super."monitor"; 4971 4977 "mono-foldable" = dontDistribute super."mono-foldable"; 4978 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4972 4979 "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; 4973 4980 "monoid-owns" = dontDistribute super."monoid-owns"; 4974 4981 "monoid-record" = dontDistribute super."monoid-record"; ··· 6940 6947 "time-w3c" = dontDistribute super."time-w3c"; 6941 6948 "timecalc" = dontDistribute super."timecalc"; 6942 6949 "timeconsole" = dontDistribute super."timeconsole"; 6950 + "timeless" = dontDistribute super."timeless"; 6943 6951 "timeout" = dontDistribute super."timeout"; 6944 6952 "timeout-control" = dontDistribute super."timeout-control"; 6945 6953 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7100 7108 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7101 7109 "type-level-sets" = dontDistribute super."type-level-sets"; 7102 7110 "type-level-tf" = dontDistribute super."type-level-tf"; 7111 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7103 7112 "type-natural" = dontDistribute super."type-natural"; 7104 7113 "type-ord" = dontDistribute super."type-ord"; 7105 7114 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7192 7201 "unix-memory" = dontDistribute super."unix-memory"; 7193 7202 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7194 7203 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7204 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7195 7205 "unlit" = dontDistribute super."unlit"; 7196 7206 "unm-hip" = dontDistribute super."unm-hip"; 7197 7207 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7304 7314 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7305 7315 "vector-static" = dontDistribute super."vector-static"; 7306 7316 "vector-strategies" = dontDistribute super."vector-strategies"; 7317 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7307 7318 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7308 7319 "verbosity" = dontDistribute super."verbosity"; 7309 7320 "verilog" = dontDistribute super."verilog";
+11
pkgs/development/haskell-modules/configuration-lts-3.6.nix
··· 583 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 + "Lambdaya" = dontDistribute super."Lambdaya"; 586 587 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 587 588 "Lastik" = dontDistribute super."Lastik"; 588 589 "Lattices" = dontDistribute super."Lattices"; ··· 772 773 "RNAdesign" = dontDistribute super."RNAdesign"; 773 774 "RNAdraw" = dontDistribute super."RNAdraw"; 774 775 "RNAwolf" = dontDistribute super."RNAwolf"; 776 + "RSA" = doDistribute super."RSA_2_1_0_3"; 775 777 "Raincat" = dontDistribute super."Raincat"; 776 778 "Random123" = dontDistribute super."Random123"; 777 779 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2432 2434 "dixi" = dontDistribute super."dixi"; 2433 2435 "djinn" = dontDistribute super."djinn"; 2434 2436 "djinn-th" = dontDistribute super."djinn-th"; 2437 + "dns" = doDistribute super."dns_2_0_0"; 2435 2438 "dnscache" = dontDistribute super."dnscache"; 2436 2439 "dnsrbl" = dontDistribute super."dnsrbl"; 2437 2440 "dnssd" = dontDistribute super."dnssd"; ··· 2778 2781 "find-conduit" = dontDistribute super."find-conduit"; 2779 2782 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2780 2783 "finite-field" = dontDistribute super."finite-field"; 2784 + "first-and-last" = dontDistribute super."first-and-last"; 2781 2785 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2782 2786 "firstify" = dontDistribute super."firstify"; 2783 2787 "fishfood" = dontDistribute super."fishfood"; ··· 3360 3364 "happstack-lite" = dontDistribute super."happstack-lite"; 3361 3365 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3362 3366 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3367 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3363 3368 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3364 3369 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3365 3370 "happstack-state" = dontDistribute super."happstack-state"; ··· 4915 4920 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4916 4921 "monad-open" = dontDistribute super."monad-open"; 4917 4922 "monad-ox" = dontDistribute super."monad-ox"; 4923 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4918 4924 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4919 4925 "monad-param" = dontDistribute super."monad-param"; 4920 4926 "monad-ran" = dontDistribute super."monad-ran"; ··· 4949 4955 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4950 4956 "monitor" = dontDistribute super."monitor"; 4951 4957 "mono-foldable" = dontDistribute super."mono-foldable"; 4958 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4952 4959 "monoid-owns" = dontDistribute super."monoid-owns"; 4953 4960 "monoid-record" = dontDistribute super."monoid-record"; 4954 4961 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6913 6920 "time-w3c" = dontDistribute super."time-w3c"; 6914 6921 "timecalc" = dontDistribute super."timecalc"; 6915 6922 "timeconsole" = dontDistribute super."timeconsole"; 6923 + "timeless" = dontDistribute super."timeless"; 6916 6924 "timeout" = dontDistribute super."timeout"; 6917 6925 "timeout-control" = dontDistribute super."timeout-control"; 6918 6926 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7072 7080 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7073 7081 "type-level-sets" = dontDistribute super."type-level-sets"; 7074 7082 "type-level-tf" = dontDistribute super."type-level-tf"; 7083 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7075 7084 "type-natural" = dontDistribute super."type-natural"; 7076 7085 "type-ord" = dontDistribute super."type-ord"; 7077 7086 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7164 7173 "unix-memory" = dontDistribute super."unix-memory"; 7165 7174 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7166 7175 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7176 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7167 7177 "unlit" = dontDistribute super."unlit"; 7168 7178 "unm-hip" = dontDistribute super."unm-hip"; 7169 7179 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7275 7285 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7276 7286 "vector-static" = dontDistribute super."vector-static"; 7277 7287 "vector-strategies" = dontDistribute super."vector-strategies"; 7288 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7278 7289 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7279 7290 "verbosity" = dontDistribute super."verbosity"; 7280 7291 "verilog" = dontDistribute super."verilog";
+16
pkgs/development/haskell-modules/configuration-lts-3.7.nix
··· 581 581 "LambdaNet" = dontDistribute super."LambdaNet"; 582 582 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 583 583 "LambdaShell" = dontDistribute super."LambdaShell"; 584 + "Lambdaya" = dontDistribute super."Lambdaya"; 584 585 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 585 586 "Lastik" = dontDistribute super."Lastik"; 586 587 "Lattices" = dontDistribute super."Lattices"; ··· 770 771 "RNAdesign" = dontDistribute super."RNAdesign"; 771 772 "RNAdraw" = dontDistribute super."RNAdraw"; 772 773 "RNAwolf" = dontDistribute super."RNAwolf"; 774 + "RSA" = doDistribute super."RSA_2_1_0_3"; 773 775 "Raincat" = dontDistribute super."Raincat"; 774 776 "Random123" = dontDistribute super."Random123"; 775 777 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2418 2420 "dixi" = dontDistribute super."dixi"; 2419 2421 "djinn" = dontDistribute super."djinn"; 2420 2422 "djinn-th" = dontDistribute super."djinn-th"; 2423 + "dns" = doDistribute super."dns_2_0_0"; 2421 2424 "dnscache" = dontDistribute super."dnscache"; 2422 2425 "dnsrbl" = dontDistribute super."dnsrbl"; 2423 2426 "dnssd" = dontDistribute super."dnssd"; ··· 2763 2766 "find-conduit" = dontDistribute super."find-conduit"; 2764 2767 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2765 2768 "finite-field" = dontDistribute super."finite-field"; 2769 + "first-and-last" = dontDistribute super."first-and-last"; 2766 2770 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2767 2771 "firstify" = dontDistribute super."firstify"; 2768 2772 "fishfood" = dontDistribute super."fishfood"; ··· 3344 3348 "happstack-lite" = dontDistribute super."happstack-lite"; 3345 3349 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3346 3350 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3351 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3347 3352 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3348 3353 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3349 3354 "happstack-state" = dontDistribute super."happstack-state"; ··· 4893 4898 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4894 4899 "monad-open" = dontDistribute super."monad-open"; 4895 4900 "monad-ox" = dontDistribute super."monad-ox"; 4901 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4896 4902 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4897 4903 "monad-param" = dontDistribute super."monad-param"; 4898 4904 "monad-ran" = dontDistribute super."monad-ran"; ··· 4927 4933 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4928 4934 "monitor" = dontDistribute super."monitor"; 4929 4935 "mono-foldable" = dontDistribute super."mono-foldable"; 4936 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4930 4937 "monoid-owns" = dontDistribute super."monoid-owns"; 4931 4938 "monoid-record" = dontDistribute super."monoid-record"; 4932 4939 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6176 6183 "serial" = dontDistribute super."serial"; 6177 6184 "serial-test-generators" = dontDistribute super."serial-test-generators"; 6178 6185 "serialport" = dontDistribute super."serialport"; 6186 + "servant" = doDistribute super."servant_0_4_4_4"; 6179 6187 "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; 6180 6188 "servant-blaze" = dontDistribute super."servant-blaze"; 6189 + "servant-client" = doDistribute super."servant-client_0_4_4_4"; 6190 + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; 6181 6191 "servant-ede" = dontDistribute super."servant-ede"; 6182 6192 "servant-examples" = dontDistribute super."servant-examples"; 6193 + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; 6183 6194 "servant-lucid" = dontDistribute super."servant-lucid"; 6184 6195 "servant-mock" = dontDistribute super."servant-mock"; 6185 6196 "servant-pool" = dontDistribute super."servant-pool"; 6186 6197 "servant-postgresql" = dontDistribute super."servant-postgresql"; 6187 6198 "servant-response" = dontDistribute super."servant-response"; 6188 6199 "servant-scotty" = dontDistribute super."servant-scotty"; 6200 + "servant-server" = doDistribute super."servant-server_0_4_4_4"; 6189 6201 "servius" = dontDistribute super."servius"; 6190 6202 "ses-html" = dontDistribute super."ses-html"; 6191 6203 "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; ··· 6876 6888 "time-w3c" = dontDistribute super."time-w3c"; 6877 6889 "timecalc" = dontDistribute super."timecalc"; 6878 6890 "timeconsole" = dontDistribute super."timeconsole"; 6891 + "timeless" = dontDistribute super."timeless"; 6879 6892 "timeout" = dontDistribute super."timeout"; 6880 6893 "timeout-control" = dontDistribute super."timeout-control"; 6881 6894 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7033 7046 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7034 7047 "type-level-sets" = dontDistribute super."type-level-sets"; 7035 7048 "type-level-tf" = dontDistribute super."type-level-tf"; 7049 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7036 7050 "type-natural" = dontDistribute super."type-natural"; 7037 7051 "type-ord" = dontDistribute super."type-ord"; 7038 7052 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7125 7139 "unix-memory" = dontDistribute super."unix-memory"; 7126 7140 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7127 7141 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7142 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7128 7143 "unlit" = dontDistribute super."unlit"; 7129 7144 "unm-hip" = dontDistribute super."unm-hip"; 7130 7145 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7236 7251 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7237 7252 "vector-static" = dontDistribute super."vector-static"; 7238 7253 "vector-strategies" = dontDistribute super."vector-strategies"; 7254 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7239 7255 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7240 7256 "verbosity" = dontDistribute super."verbosity"; 7241 7257 "verilog" = dontDistribute super."verilog";
+17
pkgs/development/haskell-modules/configuration-lts-3.8.nix
··· 581 581 "LambdaNet" = dontDistribute super."LambdaNet"; 582 582 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 583 583 "LambdaShell" = dontDistribute super."LambdaShell"; 584 + "Lambdaya" = dontDistribute super."Lambdaya"; 584 585 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 585 586 "Lastik" = dontDistribute super."Lastik"; 586 587 "Lattices" = dontDistribute super."Lattices"; ··· 770 771 "RNAdesign" = dontDistribute super."RNAdesign"; 771 772 "RNAdraw" = dontDistribute super."RNAdraw"; 772 773 "RNAwolf" = dontDistribute super."RNAwolf"; 774 + "RSA" = doDistribute super."RSA_2_1_0_3"; 773 775 "Raincat" = dontDistribute super."Raincat"; 774 776 "Random123" = dontDistribute super."Random123"; 775 777 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2404 2406 "dixi" = dontDistribute super."dixi"; 2405 2407 "djinn" = dontDistribute super."djinn"; 2406 2408 "djinn-th" = dontDistribute super."djinn-th"; 2409 + "dns" = doDistribute super."dns_2_0_0"; 2407 2410 "dnscache" = dontDistribute super."dnscache"; 2408 2411 "dnsrbl" = dontDistribute super."dnsrbl"; 2409 2412 "dnssd" = dontDistribute super."dnssd"; ··· 2748 2751 "find-conduit" = dontDistribute super."find-conduit"; 2749 2752 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2750 2753 "finite-field" = dontDistribute super."finite-field"; 2754 + "first-and-last" = dontDistribute super."first-and-last"; 2751 2755 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2752 2756 "firstify" = dontDistribute super."firstify"; 2753 2757 "fishfood" = dontDistribute super."fishfood"; ··· 3328 3332 "happstack-lite" = dontDistribute super."happstack-lite"; 3329 3333 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3330 3334 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3335 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3331 3336 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3332 3337 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3333 3338 "happstack-state" = dontDistribute super."happstack-state"; ··· 4873 4878 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4874 4879 "monad-open" = dontDistribute super."monad-open"; 4875 4880 "monad-ox" = dontDistribute super."monad-ox"; 4881 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4876 4882 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4877 4883 "monad-param" = dontDistribute super."monad-param"; 4878 4884 "monad-ran" = dontDistribute super."monad-ran"; ··· 4907 4913 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4908 4914 "monitor" = dontDistribute super."monitor"; 4909 4915 "mono-foldable" = dontDistribute super."mono-foldable"; 4916 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4910 4917 "monoid-owns" = dontDistribute super."monoid-owns"; 4911 4918 "monoid-record" = dontDistribute super."monoid-record"; 4912 4919 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6152 6159 "serial" = dontDistribute super."serial"; 6153 6160 "serial-test-generators" = dontDistribute super."serial-test-generators"; 6154 6161 "serialport" = dontDistribute super."serialport"; 6162 + "servant" = doDistribute super."servant_0_4_4_4"; 6155 6163 "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; 6156 6164 "servant-blaze" = dontDistribute super."servant-blaze"; 6165 + "servant-client" = doDistribute super."servant-client_0_4_4_4"; 6166 + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; 6157 6167 "servant-ede" = dontDistribute super."servant-ede"; 6158 6168 "servant-examples" = dontDistribute super."servant-examples"; 6169 + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; 6159 6170 "servant-lucid" = dontDistribute super."servant-lucid"; 6160 6171 "servant-mock" = dontDistribute super."servant-mock"; 6161 6172 "servant-pool" = dontDistribute super."servant-pool"; 6162 6173 "servant-postgresql" = dontDistribute super."servant-postgresql"; 6163 6174 "servant-response" = dontDistribute super."servant-response"; 6164 6175 "servant-scotty" = dontDistribute super."servant-scotty"; 6176 + "servant-server" = doDistribute super."servant-server_0_4_4_4"; 6165 6177 "servius" = dontDistribute super."servius"; 6166 6178 "ses-html" = dontDistribute super."ses-html"; 6167 6179 "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; ··· 6848 6860 "time-w3c" = dontDistribute super."time-w3c"; 6849 6861 "timecalc" = dontDistribute super."timecalc"; 6850 6862 "timeconsole" = dontDistribute super."timeconsole"; 6863 + "timeless" = dontDistribute super."timeless"; 6851 6864 "timeout" = dontDistribute super."timeout"; 6852 6865 "timeout-control" = dontDistribute super."timeout-control"; 6853 6866 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7004 7017 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7005 7018 "type-level-sets" = dontDistribute super."type-level-sets"; 7006 7019 "type-level-tf" = dontDistribute super."type-level-tf"; 7020 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7007 7021 "type-natural" = dontDistribute super."type-natural"; 7008 7022 "type-ord" = dontDistribute super."type-ord"; 7009 7023 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7096 7110 "unix-memory" = dontDistribute super."unix-memory"; 7097 7111 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7098 7112 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7113 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7099 7114 "unlit" = dontDistribute super."unlit"; 7100 7115 "unm-hip" = dontDistribute super."unm-hip"; 7101 7116 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7207 7222 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7208 7223 "vector-static" = dontDistribute super."vector-static"; 7209 7224 "vector-strategies" = dontDistribute super."vector-strategies"; 7225 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7210 7226 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7211 7227 "verbosity" = dontDistribute super."verbosity"; 7212 7228 "verilog" = dontDistribute super."verilog"; ··· 7327 7343 "webrtc-vad" = dontDistribute super."webrtc-vad"; 7328 7344 "webserver" = dontDistribute super."webserver"; 7329 7345 "websnap" = dontDistribute super."websnap"; 7346 + "websockets" = doDistribute super."websockets_0_9_6_0"; 7330 7347 "websockets-snap" = dontDistribute super."websockets-snap"; 7331 7348 "webwire" = dontDistribute super."webwire"; 7332 7349 "wedding-announcement" = dontDistribute super."wedding-announcement";
+18
pkgs/development/haskell-modules/configuration-lts-3.9.nix
··· 580 580 "LambdaNet" = dontDistribute super."LambdaNet"; 581 581 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 582 582 "LambdaShell" = dontDistribute super."LambdaShell"; 583 + "Lambdaya" = dontDistribute super."Lambdaya"; 583 584 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 584 585 "Lastik" = dontDistribute super."Lastik"; 585 586 "Lattices" = dontDistribute super."Lattices"; ··· 768 769 "RNAdesign" = dontDistribute super."RNAdesign"; 769 770 "RNAdraw" = dontDistribute super."RNAdraw"; 770 771 "RNAwolf" = dontDistribute super."RNAwolf"; 772 + "RSA" = doDistribute super."RSA_2_1_0_3"; 771 773 "Raincat" = dontDistribute super."Raincat"; 772 774 "Random123" = dontDistribute super."Random123"; 773 775 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2397 2399 "dixi" = dontDistribute super."dixi"; 2398 2400 "djinn" = dontDistribute super."djinn"; 2399 2401 "djinn-th" = dontDistribute super."djinn-th"; 2402 + "dns" = doDistribute super."dns_2_0_0"; 2400 2403 "dnscache" = dontDistribute super."dnscache"; 2401 2404 "dnsrbl" = dontDistribute super."dnsrbl"; 2402 2405 "dnssd" = dontDistribute super."dnssd"; ··· 2739 2742 "find-conduit" = dontDistribute super."find-conduit"; 2740 2743 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2741 2744 "finite-field" = dontDistribute super."finite-field"; 2745 + "first-and-last" = dontDistribute super."first-and-last"; 2742 2746 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2743 2747 "firstify" = dontDistribute super."firstify"; 2744 2748 "fishfood" = dontDistribute super."fishfood"; ··· 3318 3322 "happstack-lite" = dontDistribute super."happstack-lite"; 3319 3323 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3320 3324 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3325 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3321 3326 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3322 3327 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3323 3328 "happstack-state" = dontDistribute super."happstack-state"; ··· 4861 4866 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4862 4867 "monad-open" = dontDistribute super."monad-open"; 4863 4868 "monad-ox" = dontDistribute super."monad-ox"; 4869 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4864 4870 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4865 4871 "monad-param" = dontDistribute super."monad-param"; 4866 4872 "monad-ran" = dontDistribute super."monad-ran"; ··· 4894 4900 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4895 4901 "monitor" = dontDistribute super."monitor"; 4896 4902 "mono-foldable" = dontDistribute super."mono-foldable"; 4903 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4897 4904 "monoid-owns" = dontDistribute super."monoid-owns"; 4898 4905 "monoid-record" = dontDistribute super."monoid-record"; 4899 4906 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6136 6143 "serial" = dontDistribute super."serial"; 6137 6144 "serial-test-generators" = dontDistribute super."serial-test-generators"; 6138 6145 "serialport" = dontDistribute super."serialport"; 6146 + "servant" = doDistribute super."servant_0_4_4_4"; 6139 6147 "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; 6140 6148 "servant-blaze" = dontDistribute super."servant-blaze"; 6149 + "servant-client" = doDistribute super."servant-client_0_4_4_4"; 6150 + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; 6141 6151 "servant-ede" = dontDistribute super."servant-ede"; 6142 6152 "servant-examples" = dontDistribute super."servant-examples"; 6153 + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; 6143 6154 "servant-lucid" = dontDistribute super."servant-lucid"; 6144 6155 "servant-mock" = dontDistribute super."servant-mock"; 6145 6156 "servant-pool" = dontDistribute super."servant-pool"; 6146 6157 "servant-postgresql" = dontDistribute super."servant-postgresql"; 6147 6158 "servant-response" = dontDistribute super."servant-response"; 6148 6159 "servant-scotty" = dontDistribute super."servant-scotty"; 6160 + "servant-server" = doDistribute super."servant-server_0_4_4_4"; 6149 6161 "servius" = dontDistribute super."servius"; 6150 6162 "ses-html" = dontDistribute super."ses-html"; 6151 6163 "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; ··· 6831 6843 "time-w3c" = dontDistribute super."time-w3c"; 6832 6844 "timecalc" = dontDistribute super."timecalc"; 6833 6845 "timeconsole" = dontDistribute super."timeconsole"; 6846 + "timeless" = dontDistribute super."timeless"; 6834 6847 "timeout" = dontDistribute super."timeout"; 6835 6848 "timeout-control" = dontDistribute super."timeout-control"; 6836 6849 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 6987 7000 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 6988 7001 "type-level-sets" = dontDistribute super."type-level-sets"; 6989 7002 "type-level-tf" = dontDistribute super."type-level-tf"; 7003 + "type-list" = doDistribute super."type-list_0_2_0_0"; 6990 7004 "type-natural" = dontDistribute super."type-natural"; 6991 7005 "type-ord" = dontDistribute super."type-ord"; 6992 7006 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7079 7093 "unix-memory" = dontDistribute super."unix-memory"; 7080 7094 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7081 7095 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7096 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7082 7097 "unlit" = dontDistribute super."unlit"; 7083 7098 "unm-hip" = dontDistribute super."unm-hip"; 7084 7099 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7190 7205 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7191 7206 "vector-static" = dontDistribute super."vector-static"; 7192 7207 "vector-strategies" = dontDistribute super."vector-strategies"; 7208 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7193 7209 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7194 7210 "verbosity" = dontDistribute super."verbosity"; 7195 7211 "verilog" = dontDistribute super."verilog"; ··· 7309 7325 "webrtc-vad" = dontDistribute super."webrtc-vad"; 7310 7326 "webserver" = dontDistribute super."webserver"; 7311 7327 "websnap" = dontDistribute super."websnap"; 7328 + "websockets" = doDistribute super."websockets_0_9_6_0"; 7312 7329 "websockets-snap" = dontDistribute super."websockets-snap"; 7313 7330 "webwire" = dontDistribute super."webwire"; 7314 7331 "wedding-announcement" = dontDistribute super."wedding-announcement"; ··· 7485 7502 "yes-precure5-command" = dontDistribute super."yes-precure5-command"; 7486 7503 "yesod-angular" = dontDistribute super."yesod-angular"; 7487 7504 "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; 7505 + "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; 7488 7506 "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; 7489 7507 "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; 7490 7508 "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+596 -199
pkgs/development/haskell-modules/hackage-packages.nix
··· 6065 6065 hydraPlatforms = stdenv.lib.platforms.none; 6066 6066 }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; 6067 6067 6068 - "GLURaw" = callPackage 6068 + "GLURaw_1_5_0_1" = callPackage 6069 6069 ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: 6070 6070 mkDerivation { 6071 6071 pname = "GLURaw"; 6072 6072 version = "1.5.0.1"; 6073 6073 sha256 = "1b52c2637820c2bea38f40acdd217a68c0dd3849f7ed1308959aa324b6b2c8f1"; 6074 + libraryHaskellDepends = [ base OpenGLRaw transformers ]; 6075 + librarySystemDepends = [ freeglut mesa ]; 6076 + homepage = "http://www.haskell.org/haskellwiki/Opengl"; 6077 + description = "A raw binding for the OpenGL graphics system"; 6078 + license = stdenv.lib.licenses.bsd3; 6079 + hydraPlatforms = stdenv.lib.platforms.none; 6080 + }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; 6081 + 6082 + "GLURaw" = callPackage 6083 + ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: 6084 + mkDerivation { 6085 + pname = "GLURaw"; 6086 + version = "1.5.0.2"; 6087 + sha256 = "dd24af039bef7f44dc580692b57a7a16a36a44b7261c8d3008aba60b696a4c3f"; 6074 6088 libraryHaskellDepends = [ base OpenGLRaw transformers ]; 6075 6089 librarySystemDepends = [ freeglut mesa ]; 6076 6090 homepage = "http://www.haskell.org/haskellwiki/Opengl"; ··· 11343 11357 hydraPlatforms = stdenv.lib.platforms.none; 11344 11358 }) {}; 11345 11359 11360 + "Lambdaya" = callPackage 11361 + ({ mkDerivation, base, mtl, unix }: 11362 + mkDerivation { 11363 + pname = "Lambdaya"; 11364 + version = "0.1.0.0"; 11365 + sha256 = "99107e7588c63f173c085c6310ab122cee45ce55f16f6ded2eed7b279f0c7301"; 11366 + libraryHaskellDepends = [ base mtl unix ]; 11367 + description = "Library for RedPitaya"; 11368 + license = stdenv.lib.licenses.gpl3; 11369 + }) {}; 11370 + 11346 11371 "LargeCardinalHierarchy" = callPackage 11347 11372 ({ mkDerivation, base }: 11348 11373 mkDerivation { ··· 12359 12384 pname = "MonadRandom"; 12360 12385 version = "0.3.0.1"; 12361 12386 sha256 = "40e6a19cecf9c72a5281e813c982e037104c287eef3e4b49a03b4fdd6736722d"; 12387 + revision = "1"; 12388 + editedCabalFile = "aef6c8f98c9f4c1fc09753192ec83a6c259087dd098ca2e6cacd3219872f071c"; 12362 12389 libraryHaskellDepends = [ base mtl random transformers ]; 12363 12390 description = "Random-number generation monad"; 12364 12391 license = "unknown"; ··· 12373 12400 pname = "MonadRandom"; 12374 12401 version = "0.3.0.2"; 12375 12402 sha256 = "71afdea34f7836678d989cef3373f76a62cca5f47440aa0185c85fff5694eaa1"; 12403 + revision = "1"; 12404 + editedCabalFile = "1b96fa21489194e7d5634e42f1f4efef26c5e0f9c0cea47c0ea0ca86dc4fd2e6"; 12376 12405 libraryHaskellDepends = [ 12377 12406 base mtl random transformers transformers-compat 12378 12407 ]; ··· 12389 12418 pname = "MonadRandom"; 12390 12419 version = "0.4"; 12391 12420 sha256 = "d32f3f7a8390125f43a67b78741c6655452dfc4388009ab4ca5a265ab5b86f93"; 12421 + revision = "1"; 12422 + editedCabalFile = "d913e82863e6b10963cc9f48a74e70739336e17debbcccef66f7e5068cdf7f1d"; 12392 12423 libraryHaskellDepends = [ 12393 12424 base mtl random transformers transformers-compat 12394 12425 ]; ··· 13684 13715 license = stdenv.lib.licenses.bsd3; 13685 13716 }) {inherit (pkgs) mesa;}; 13686 13717 13718 + "OpenGLRaw_2_6_0_0" = callPackage 13719 + ({ mkDerivation, base, bytestring, containers, half, mesa, text 13720 + , transformers 13721 + }: 13722 + mkDerivation { 13723 + pname = "OpenGLRaw"; 13724 + version = "2.6.0.0"; 13725 + sha256 = "e962c18eb40d6e1ef7c2c3a877b0be14c35dbf533612d33074d5011bd266cc0d"; 13726 + libraryHaskellDepends = [ 13727 + base bytestring containers half text transformers 13728 + ]; 13729 + librarySystemDepends = [ mesa ]; 13730 + homepage = "http://www.haskell.org/haskellwiki/Opengl"; 13731 + description = "A raw binding for the OpenGL graphics system"; 13732 + license = stdenv.lib.licenses.bsd3; 13733 + hydraPlatforms = stdenv.lib.platforms.none; 13734 + }) {inherit (pkgs) mesa;}; 13735 + 13687 13736 "OpenGLRaw21" = callPackage 13688 13737 ({ mkDerivation, OpenGLRaw }: 13689 13738 mkDerivation { ··· 14999 15048 hydraPlatforms = stdenv.lib.platforms.none; 15000 15049 }) {}; 15001 15050 15002 - "RSA" = callPackage 15051 + "RSA_2_1_0_3" = callPackage 15003 15052 ({ mkDerivation, base, binary, bytestring, crypto-api 15004 15053 , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged 15005 15054 , test-framework, test-framework-quickcheck2 ··· 15017 15066 ]; 15018 15067 description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; 15019 15068 license = stdenv.lib.licenses.bsd3; 15069 + hydraPlatforms = stdenv.lib.platforms.none; 15020 15070 }) {}; 15021 15071 15022 - "RSA_2_2_0" = callPackage 15072 + "RSA" = callPackage 15023 15073 ({ mkDerivation, base, binary, bytestring, crypto-api 15024 15074 , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged 15025 15075 , test-framework, test-framework-quickcheck2 ··· 15037 15087 ]; 15038 15088 description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; 15039 15089 license = stdenv.lib.licenses.bsd3; 15040 - hydraPlatforms = stdenv.lib.platforms.none; 15041 15090 }) {}; 15042 15091 15043 15092 "Raincat" = callPackage ··· 19596 19645 pname = "accelerate-cuda"; 19597 19646 version = "0.15.0.0"; 19598 19647 sha256 = "bec5de97e2a621d8eab3da2598143e34c4145fb10adad6d4164ed4ce237316fd"; 19599 - revision = "2"; 19600 - editedCabalFile = "5ed199c4c1d360ed3eaee24df7016462ed1fb1313ff47d6828be546eec8708fc"; 19648 + revision = "3"; 19649 + editedCabalFile = "14c5a52cc4989793c20d22d81dec4aa91e4c64be122fde0453b0bd6cd790af82"; 19601 19650 libraryHaskellDepends = [ 19602 19651 accelerate array base binary bytestring cryptohash cuda directory 19603 19652 fclabels filepath hashable hashtables language-c-quote ··· 19737 19786 }: 19738 19787 mkDerivation { 19739 19788 pname = "accelerate-io"; 19740 - version = "0.15.0.0"; 19741 - sha256 = "66a48e417e353f6daad24e7ca385370764d6a0a1979066c1e890fba77b95e802"; 19742 - revision = "1"; 19743 - editedCabalFile = "5c3f8f7ebc03117652646329743ea251d281f72d81454e55538c27e87e8c0ecc"; 19789 + version = "0.15.1.0"; 19790 + sha256 = "d531fc6c950a6fcf0bdd72c65438c27fbffe2f3043444128979490d53fc7677c"; 19744 19791 libraryHaskellDepends = [ 19745 19792 accelerate array base bmp bytestring repa vector 19746 19793 ]; 19747 - jailbreak = true; 19748 19794 homepage = "https://github.com/AccelerateHS/accelerate-io"; 19749 19795 description = "Read and write Accelerate arrays in various formats"; 19750 19796 license = stdenv.lib.licenses.bsd3; ··· 40302 40348 }: 40303 40349 mkDerivation { 40304 40350 pname = "cef"; 40305 - version = "0.1.2"; 40306 - sha256 = "9191a449057e8889c3626f8e625b85a27af059cc43c74d6202dad30a7b91b838"; 40351 + version = "0.1.3"; 40352 + sha256 = "9918fb0b19e23aefe90ed914e30498011f1fa6ea0c8ffdc9e8f8a90337ac41d4"; 40307 40353 libraryHaskellDepends = [ base bytestring text time ]; 40308 40354 testHaskellDepends = [ base directory doctest filepath ]; 40309 40355 homepage = "http://github.com/picussecurity/haskell-cef.git"; ··· 43206 43252 }: 43207 43253 mkDerivation { 43208 43254 pname = "clckwrks"; 43209 - version = "0.23.10"; 43210 - sha256 = "7e85091501c7a91a51c17920b415e764f20b730f1bf59ad0e0cc5be9b777cbe7"; 43255 + version = "0.23.11"; 43256 + sha256 = "65868751cc51e409a000edc5fb26e25f3c151f8a792ca80006ae87813cc9ea6e"; 43211 43257 libraryHaskellDepends = [ 43212 43258 acid-state aeson aeson-qq attoparsec base blaze-html bytestring 43213 43259 cereal containers directory filepath happstack-authenticate ··· 43231 43277 }: 43232 43278 mkDerivation { 43233 43279 pname = "clckwrks-cli"; 43234 - version = "0.2.14"; 43235 - sha256 = "2336de23aed5c6cb2dafdafbd42581c43db3313835a91ad70a664a2d7ecf9bb7"; 43280 + version = "0.2.15"; 43281 + sha256 = "8a7fad8590c6c1297b7076a7e4cc03689f37cd9371171748f351967cbb91b7f2"; 43236 43282 isLibrary = false; 43237 43283 isExecutable = true; 43238 43284 executableHaskellDepends = [ 43239 43285 acid-state base clckwrks haskeline mtl network parsec 43240 43286 ]; 43241 - jailbreak = true; 43242 43287 homepage = "http://www.clckwrks.com/"; 43243 43288 description = "a command-line interface for adminstrating some aspects of clckwrks"; 43244 43289 license = stdenv.lib.licenses.bsd3; ··· 43370 43415 }: 43371 43416 mkDerivation { 43372 43417 pname = "clckwrks-theme-bootstrap"; 43373 - version = "0.4.0"; 43374 - sha256 = "9f4e43b58b2a8ec3d9a8d33663c3cad8121981e72d69cada7c76467b329d4d23"; 43418 + version = "0.4.1"; 43419 + sha256 = "59399a42c5d928e9aa332e0901d023e00f6add27c03b95cddf405e392885f852"; 43375 43420 libraryHaskellDepends = [ 43376 43421 base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro 43377 43422 mtl text web-plugins 43378 43423 ]; 43379 - jailbreak = true; 43380 43424 homepage = "http://www.clckwrks.com/"; 43381 43425 description = "simple bootstrap based template for clckwrks"; 43382 43426 license = stdenv.lib.licenses.bsd3; ··· 43388 43432 }: 43389 43433 mkDerivation { 43390 43434 pname = "clckwrks-theme-clckwrks"; 43391 - version = "0.5.1"; 43392 - sha256 = "93540dc0dafbf1e9bc6863c215391905201bc4653133fd01c0f0c6a9bacd6858"; 43435 + version = "0.5.2"; 43436 + sha256 = "53182128e49924132191d6d607e7088f92367a10ab31d38b5e4a1d8a2471ed1c"; 43393 43437 libraryHaskellDepends = [ 43394 43438 base clckwrks containers happstack-authenticate hsp hsx2hs mtl text 43395 43439 web-plugins ··· 57751 57795 QuickCheck rematch stm test-framework test-framework-hunit 57752 57796 test-framework-quickcheck2 time transformers unordered-containers 57753 57797 ]; 57798 + doCheck = false; 57754 57799 homepage = "http://github.com/haskell-distributed/distributed-process-execution"; 57755 57800 description = "Execution Framework for The Cloud Haskell Application Platform"; 57756 57801 license = stdenv.lib.licenses.bsd3; ··· 58128 58173 QuickCheck rematch stm test-framework test-framework-hunit 58129 58174 test-framework-quickcheck2 time transformers unordered-containers 58130 58175 ]; 58176 + doCheck = false; 58131 58177 homepage = "http://github.com/haskell-distributed/distributed-process-task"; 58132 58178 description = "Task Framework for The Cloud Haskell Application Platform"; 58133 58179 license = stdenv.lib.licenses.bsd3; ··· 58448 58494 license = stdenv.lib.licenses.bsd3; 58449 58495 }) {}; 58450 58496 58451 - "dns" = callPackage 58497 + "dns_2_0_0" = callPackage 58452 58498 ({ mkDerivation, attoparsec, base, binary, blaze-builder 58453 58499 , bytestring, conduit, conduit-extra, containers, doctest, hspec 58454 58500 , iproute, mtl, network, random, resourcet, word8 ··· 58470 58516 testTarget = "spec"; 58471 58517 description = "DNS library in Haskell"; 58472 58518 license = stdenv.lib.licenses.bsd3; 58519 + hydraPlatforms = stdenv.lib.platforms.none; 58520 + }) {}; 58521 + 58522 + "dns" = callPackage 58523 + ({ mkDerivation, attoparsec, base, binary, blaze-builder 58524 + , bytestring, conduit, conduit-extra, containers, doctest, hspec 58525 + , iproute, mtl, network, random, resourcet, word8 58526 + }: 58527 + mkDerivation { 58528 + pname = "dns"; 58529 + version = "2.0.1"; 58530 + sha256 = "3d11e14bbfd07b46bba9c676dd970731be190d6dc9c5e95089c4da60565e47d2"; 58531 + libraryHaskellDepends = [ 58532 + attoparsec base binary blaze-builder bytestring conduit 58533 + conduit-extra containers iproute mtl network random resourcet 58534 + ]; 58535 + testHaskellDepends = [ 58536 + attoparsec base binary blaze-builder bytestring conduit 58537 + conduit-extra containers doctest hspec iproute mtl network random 58538 + resourcet word8 58539 + ]; 58540 + doCheck = false; 58541 + testTarget = "spec"; 58542 + description = "DNS library in Haskell"; 58543 + license = stdenv.lib.licenses.bsd3; 58473 58544 }) {}; 58474 58545 58475 58546 "dnscache" = callPackage ··· 67208 67279 license = stdenv.lib.licenses.bsd3; 67209 67280 }) {}; 67210 67281 67282 + "first-and-last" = callPackage 67283 + ({ mkDerivation, base, Cabal }: 67284 + mkDerivation { 67285 + pname = "first-and-last"; 67286 + version = "0.1.0.0"; 67287 + sha256 = "d3d54fb686d09717501eed65a1ae21fdd5434ad73f958ff57d7ae849b1519653"; 67288 + libraryHaskellDepends = [ base ]; 67289 + testHaskellDepends = [ base Cabal ]; 67290 + homepage = "https://github.com/markandrus/first-and-last"; 67291 + description = "First and Last generalized to return up to n values"; 67292 + license = stdenv.lib.licenses.bsd3; 67293 + }) {}; 67294 + 67211 67295 "first-class-patterns" = callPackage 67212 67296 ({ mkDerivation, base, transformers }: 67213 67297 mkDerivation { ··· 71939 72023 }: 71940 72024 mkDerivation { 71941 72025 pname = "getopt-generics"; 71942 - version = "0.11.0.1"; 71943 - sha256 = "b3f49f80af9e7eba12260f772c8b2b85cea4be80c7f33fc363c28f5f9d7f9eca"; 72026 + version = "0.11.0.2"; 72027 + sha256 = "d1d989bbf86df719c57cb01db59a554f3b07c475644dd3cecc48bfc29d885010"; 71944 72028 libraryHaskellDepends = [ 71945 72029 base base-compat base-orphans generics-sop tagged 71946 72030 ]; ··· 71949 72033 QuickCheck safe silently tagged 71950 72034 ]; 71951 72035 doCheck = false; 71952 - homepage = "https://github.com/zalora/getopt-generics#readme"; 72036 + homepage = "https://github.com/soenkehahn/getopt-generics#readme"; 71953 72037 description = "Create command line interfaces with ease"; 71954 72038 license = stdenv.lib.licenses.bsd3; 71955 72039 }) {}; ··· 76689 76773 ({ mkDerivation, base, containers, deepseq, pointed }: 76690 76774 mkDerivation { 76691 76775 pname = "grouped-list"; 76692 - version = "0.1.0.0"; 76693 - sha256 = "e8d4003fa846ee6a928209bd78c526691d40b7eaaec76fdc636d38967f05c9fb"; 76776 + version = "0.1.2.0"; 76777 + sha256 = "77aa60756373ca42065568fb5c57c8cb9b5f85e89ed3d35192b8df4c48ae390f"; 76694 76778 libraryHaskellDepends = [ base containers deepseq pointed ]; 76695 76779 homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; 76696 76780 description = "Grouped lists. Equal consecutive elements are grouped."; 76697 76781 license = stdenv.lib.licenses.bsd3; 76698 76782 }) {}; 76699 76783 76700 - "grouped-list_0_1_1_0" = callPackage 76701 - ({ mkDerivation, base, containers, deepseq, pointed }: 76702 - mkDerivation { 76703 - pname = "grouped-list"; 76704 - version = "0.1.1.0"; 76705 - sha256 = "ee4d9d19edb36c8f3bcf5b85e3ef461d73018424197a0ae1cc1161edd8ebc765"; 76706 - libraryHaskellDepends = [ base containers deepseq pointed ]; 76707 - homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; 76708 - description = "Grouped lists. Equal consecutive elements are grouped."; 76709 - license = stdenv.lib.licenses.bsd3; 76710 - hydraPlatforms = stdenv.lib.platforms.none; 76711 - }) {}; 76712 - 76713 76784 "groupoid" = callPackage 76714 76785 ({ mkDerivation, base }: 76715 76786 mkDerivation { ··· 80726 80797 "happstack-authenticate" = callPackage 80727 80798 ({ mkDerivation, acid-state, aeson, authenticate, base 80728 80799 , base64-bytestring, boomerang, bytestring, containers 80729 - , data-default, filepath, happstack-hsp, happstack-jmacro 80730 - , happstack-server, hsp, hsx-jmacro, hsx2hs, http-conduit 80731 - , http-types, ixset-typed, jmacro, jwt, lens, mime-mail, mtl 80732 - , pwstore-purehaskell, random, safecopy, shakespeare, text, time 80733 - , unordered-containers, userid, web-routes, web-routes-boomerang 80734 - , web-routes-happstack, web-routes-hsp, web-routes-th 80800 + , data-default, email-validate, filepath, happstack-hsp 80801 + , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs 80802 + , http-conduit, http-types, ixset-typed, jmacro, jwt, lens 80803 + , mime-mail, mtl, pwstore-purehaskell, random, safecopy 80804 + , shakespeare, text, time, unordered-containers, userid, web-routes 80805 + , web-routes-boomerang, web-routes-happstack, web-routes-hsp 80806 + , web-routes-th 80735 80807 }: 80736 80808 mkDerivation { 80737 80809 pname = "happstack-authenticate"; 80738 - version = "2.2.0"; 80739 - sha256 = "7093ae69b6be698102f87df7851eafbdeb830f55467083aea06bd8b11adf5078"; 80810 + version = "2.3.0"; 80811 + sha256 = "d459a80c7c54a05e31a803f200233bb491350099e04f2fb27567735fe0dfe9c2"; 80740 80812 libraryHaskellDepends = [ 80741 80813 acid-state aeson authenticate base base64-bytestring boomerang 80742 - bytestring containers data-default filepath happstack-hsp 80743 - happstack-jmacro happstack-server hsp hsx-jmacro hsx2hs 80744 - http-conduit http-types ixset-typed jmacro jwt lens mime-mail mtl 80745 - pwstore-purehaskell random safecopy shakespeare text time 80746 - unordered-containers userid web-routes web-routes-boomerang 80814 + bytestring containers data-default email-validate filepath 80815 + happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro 80816 + hsx2hs http-conduit http-types ixset-typed jmacro jwt lens 80817 + mime-mail mtl pwstore-purehaskell random safecopy shakespeare text 80818 + time unordered-containers userid web-routes web-routes-boomerang 80747 80819 web-routes-happstack web-routes-hsp web-routes-th 80748 80820 ]; 80749 80821 homepage = "http://www.happstack.com/"; ··· 81176 81248 hydraPlatforms = stdenv.lib.platforms.none; 81177 81249 }) {}; 81178 81250 81179 - "happstack-server" = callPackage 81251 + "happstack-server_7_4_4" = callPackage 81180 81252 ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring 81181 81253 , containers, directory, exceptions, extensible-exceptions 81182 81254 , filepath, hslogger, html, HUnit, monad-control, mtl, network ··· 81203 81275 homepage = "http://happstack.com"; 81204 81276 description = "Web related tools and services"; 81205 81277 license = stdenv.lib.licenses.bsd3; 81278 + hydraPlatforms = stdenv.lib.platforms.none; 81279 + }) {}; 81280 + 81281 + "happstack-server" = callPackage 81282 + ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring 81283 + , containers, directory, exceptions, extensible-exceptions 81284 + , filepath, hslogger, html, HUnit, monad-control, mtl, network 81285 + , network-uri, old-locale, parsec, process, sendfile, syb 81286 + , system-filepath, template-haskell, text, threads, time 81287 + , time-compat, transformers, transformers-base, transformers-compat 81288 + , unix, utf8-string, xhtml, zlib 81289 + }: 81290 + mkDerivation { 81291 + pname = "happstack-server"; 81292 + version = "7.4.5"; 81293 + sha256 = "704a11b50604e57bd960633a73baa77fe23993f41b35202a0e26f4af2f91dc96"; 81294 + libraryHaskellDepends = [ 81295 + base base64-bytestring blaze-html bytestring containers directory 81296 + exceptions extensible-exceptions filepath hslogger html 81297 + monad-control mtl network network-uri old-locale parsec process 81298 + sendfile syb system-filepath template-haskell text threads time 81299 + time-compat transformers transformers-base transformers-compat unix 81300 + utf8-string xhtml zlib 81301 + ]; 81302 + testHaskellDepends = [ 81303 + base bytestring containers HUnit parsec zlib 81304 + ]; 81305 + homepage = "http://happstack.com"; 81306 + description = "Web related tools and services"; 81307 + license = stdenv.lib.licenses.bsd3; 81206 81308 }) {}; 81207 81309 81208 81310 "happstack-server-tls" = callPackage ··· 84234 84336 ({ mkDerivation, base }: 84235 84337 mkDerivation { 84236 84338 pname = "haskore-vintage"; 84237 - version = "0.2"; 84238 - sha256 = "d618cd63ca221c980b61fde864e8a024bfefba0318984d92a270c3b1fbd1f8b6"; 84339 + version = "0.3"; 84340 + sha256 = "0bd49a041c73292d195897a1e8a73713669b09b1a73f3e29251f72223da708ab"; 84239 84341 libraryHaskellDepends = [ base ]; 84240 84342 homepage = "http://haskell.org/haskore/"; 84241 84343 description = "The February 2000 version of Haskore"; ··· 85147 85249 }: 85148 85250 mkDerivation { 85149 85251 pname = "hastily"; 85150 - version = "0.1.0.4"; 85151 - sha256 = "0cb4cb729d1c6a382a81c2667c0bd42ec6be3aaa90604e8de2067f5ec8a351fb"; 85252 + version = "0.1.0.6"; 85253 + sha256 = "d001119682dc0389bbac946793401209c7286a01d9b157fab638ac8fda78a72e"; 85152 85254 isLibrary = true; 85153 85255 isExecutable = true; 85154 85256 libraryHaskellDepends = [ ··· 96076 96178 ({ mkDerivation, base, checkers, hspec }: 96077 96179 mkDerivation { 96078 96180 pname = "hspec-checkers"; 96079 - version = "0.1.0"; 96080 - sha256 = "cd4ceeed2d9b46f42d440914814162657264e541ad25232ae609b274e5fb7810"; 96181 + version = "0.1.0.1"; 96182 + sha256 = "9703ad134d1711b17301d760cebc36814c48a0e4e5712590514c93e6ec278dab"; 96081 96183 libraryHaskellDepends = [ base checkers hspec ]; 96082 96184 testHaskellDepends = [ base checkers hspec ]; 96083 96185 description = "Allows to use checkers properties from hspec"; ··· 97191 97293 libraryHaskellDepends = [ 97192 97294 base exceptions hsqml-datamodel type-list vinyl 97193 97295 ]; 97296 + jailbreak = true; 97194 97297 homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; 97195 97298 description = "HsQML DataModel instances for Vinyl Rec"; 97196 97299 license = stdenv.lib.licenses.bsd3; ··· 98130 98233 }: 98131 98234 mkDerivation { 98132 98235 pname = "http-api-data"; 98133 - version = "0.2"; 98134 - sha256 = "25b9127e356d15b7edea37068629f87523854a12f0ce4ac65a03ae391a4a6659"; 98135 - libraryHaskellDepends = [ base bytestring text time ]; 98136 - testHaskellDepends = [ 98137 - base doctest Glob hspec HUnit QuickCheck text time 98138 - ]; 98139 - homepage = "http://github.com/fizruk/http-api-data"; 98140 - description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; 98141 - license = stdenv.lib.licenses.bsd3; 98142 - }) {}; 98143 - 98144 - "http-api-data_0_2_1" = callPackage 98145 - ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit 98146 - , QuickCheck, text, time 98147 - }: 98148 - mkDerivation { 98149 - pname = "http-api-data"; 98150 98236 version = "0.2.1"; 98151 98237 sha256 = "856138d79945770cdb4b522f58893a1c45014d39238cfc5b2eceeac089c56f71"; 98152 98238 libraryHaskellDepends = [ base bytestring text time ]; ··· 98156 98242 homepage = "http://github.com/fizruk/http-api-data"; 98157 98243 description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; 98158 98244 license = stdenv.lib.licenses.bsd3; 98159 - hydraPlatforms = stdenv.lib.platforms.none; 98160 98245 }) {}; 98161 98246 98162 98247 "http-attoparsec" = callPackage ··· 108779 108864 pname = "keter"; 108780 108865 version = "1.3.7"; 108781 108866 sha256 = "a0710bf072a8829f5e696a6cf760554b26006d520f311ae29a53bf46e96f98c3"; 108782 - revision = "2"; 108783 - editedCabalFile = "cefc8c00964e630396ca46f09d13a77fc4870db48e5526796817ca6d35aa3e49"; 108867 + revision = "3"; 108868 + editedCabalFile = "97b84a04bdbef02b95c502f4a4e27791dc3a6e10f40a4797cf267311be1c6875"; 108784 108869 isLibrary = true; 108785 108870 isExecutable = true; 108786 108871 libraryHaskellDepends = [ ··· 108822 108907 pname = "keter"; 108823 108908 version = "1.3.7.1"; 108824 108909 sha256 = "003ce327d5b8ce407df901b46a99a37109b2ce14d6f51e50212130ba5ed9843e"; 108825 - revision = "2"; 108826 - editedCabalFile = "a1c0a6f6e7ffa9cd6c5a1c2780fdb5ce14a95d3c5fe9fe96cfeccc3726e91e98"; 108910 + revision = "3"; 108911 + editedCabalFile = "a534637676d741ad4b3a5c0ba745df72206f16008e52ed037cc7de8cb4db2556"; 108827 108912 isLibrary = true; 108828 108913 isExecutable = true; 108829 108914 libraryHaskellDepends = [ ··· 111272 111357 }) {}; 111273 111358 111274 111359 "language-lua2" = callPackage 111275 - ({ mkDerivation, base, containers, Earley, lexer-applicative 111276 - , microlens, optparse-applicative, QuickCheck, regex-applicative 111277 - , semigroups, srcloc, tasty, tasty-hunit, tasty-quickcheck 111278 - , transformers, unordered-containers, wl-pprint 111360 + ({ mkDerivation, base, containers, deepseq, Earley 111361 + , lexer-applicative, microlens, optparse-applicative, QuickCheck 111362 + , regex-applicative, semigroups, srcloc, tasty, tasty-hunit 111363 + , tasty-quickcheck, transformers, unordered-containers, wl-pprint 111279 111364 }: 111280 111365 mkDerivation { 111281 111366 pname = "language-lua2"; 111282 - version = "0.1.0.3"; 111283 - sha256 = "f375d752b3100a5cf2afa3238ba6a3fac5311af3e937e3f988c569de319aa009"; 111367 + version = "0.1.0.4"; 111368 + sha256 = "3d5e92e4ec4b096cb44432fc7e2ee2620470c4912c3fd85e30b07a7b834c422b"; 111284 111369 isLibrary = true; 111285 111370 isExecutable = true; 111286 111371 libraryHaskellDepends = [ ··· 111292 111377 base Earley lexer-applicative optparse-applicative srcloc wl-pprint 111293 111378 ]; 111294 111379 testHaskellDepends = [ 111295 - base lexer-applicative QuickCheck semigroups srcloc tasty 111380 + base deepseq lexer-applicative QuickCheck semigroups srcloc tasty 111296 111381 tasty-hunit tasty-quickcheck unordered-containers 111297 111382 ]; 111383 + doCheck = false; 111298 111384 homepage = "http://github.com/mitchellwrosen/language-lua2"; 111299 111385 description = "Lua parser and pretty printer"; 111300 111386 license = stdenv.lib.licenses.bsd3; ··· 118496 118582 , bytestring, containers, email-validate, http-client 118497 118583 , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck 118498 118584 , raw-strings-qq, tasty, tasty-hunit, tasty-quickcheck, text, time 118499 - }: 118500 - mkDerivation { 118501 - pname = "mandrill"; 118502 - version = "0.4.1.0"; 118503 - sha256 = "677f358e4ff991a41baff9e105a96d90849778dfa1ed12b316866e2df4cdb7e6"; 118504 - libraryHaskellDepends = [ 118505 - aeson base base64-bytestring blaze-html bytestring containers 118506 - email-validate http-client http-client-tls http-types lens mtl 118507 - old-locale QuickCheck text time 118508 - ]; 118509 - testHaskellDepends = [ 118510 - aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit 118511 - tasty-quickcheck text 118512 - ]; 118513 - description = "Library for interfacing with the Mandrill JSON API"; 118514 - license = stdenv.lib.licenses.mit; 118515 - }) {}; 118516 - 118517 - "mandrill_0_5_0_0" = callPackage 118518 - ({ mkDerivation, aeson, base, base64-bytestring, blaze-html 118519 - , bytestring, containers, email-validate, http-client 118520 - , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck 118521 - , raw-strings-qq, tasty, tasty-hunit, tasty-quickcheck, text, time 118522 118585 , unordered-containers 118523 118586 }: 118524 118587 mkDerivation { ··· 118536 118599 ]; 118537 118600 description = "Library for interfacing with the Mandrill JSON API"; 118538 118601 license = stdenv.lib.licenses.mit; 118539 - hydraPlatforms = stdenv.lib.platforms.none; 118540 118602 }) {}; 118541 118603 118542 118604 "mandulia" = callPackage ··· 122653 122715 hydraPlatforms = stdenv.lib.platforms.none; 122654 122716 }) {}; 122655 122717 122656 - "monad-parallel" = callPackage 122718 + "monad-parallel_0_7_1_4" = callPackage 122657 122719 ({ mkDerivation, base, parallel, transformers, transformers-compat 122658 122720 }: 122659 122721 mkDerivation { ··· 122666 122728 homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; 122667 122729 description = "Parallel execution of monadic computations"; 122668 122730 license = stdenv.lib.licenses.bsd3; 122731 + hydraPlatforms = stdenv.lib.platforms.none; 122732 + }) {}; 122733 + 122734 + "monad-parallel" = callPackage 122735 + ({ mkDerivation, base, parallel, transformers, transformers-compat 122736 + }: 122737 + mkDerivation { 122738 + pname = "monad-parallel"; 122739 + version = "0.7.2"; 122740 + sha256 = "fa410be89895b177dd092a30a324e12a026d59bc999070e0c1d4da91d747bee3"; 122741 + libraryHaskellDepends = [ 122742 + base parallel transformers transformers-compat 122743 + ]; 122744 + homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; 122745 + description = "Parallel execution of monadic computations"; 122746 + license = stdenv.lib.licenses.bsd3; 122669 122747 }) {}; 122670 122748 122671 122749 "monad-parallel-progressbar" = callPackage ··· 123520 123598 hydraPlatforms = stdenv.lib.platforms.none; 123521 123599 }) {}; 123522 123600 123523 - "mono-traversable" = callPackage 123601 + "mono-traversable_0_9_3" = callPackage 123524 123602 ({ mkDerivation, base, bytestring, comonad, containers, dlist 123525 123603 , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck 123526 123604 , semigroupoids, semigroups, split, text, transformers ··· 123542 123620 homepage = "https://github.com/snoyberg/mono-traversable"; 123543 123621 description = "Type classes for mapping, folding, and traversing monomorphic containers"; 123544 123622 license = stdenv.lib.licenses.mit; 123623 + hydraPlatforms = stdenv.lib.platforms.none; 123624 + }) {}; 123625 + 123626 + "mono-traversable" = callPackage 123627 + ({ mkDerivation, base, bytestring, comonad, containers, dlist 123628 + , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck 123629 + , semigroupoids, semigroups, split, text, transformers 123630 + , unordered-containers, vector, vector-algorithms, vector-instances 123631 + }: 123632 + mkDerivation { 123633 + pname = "mono-traversable"; 123634 + version = "0.10.0"; 123635 + sha256 = "5f71c909ed5b5b399fdceeb565b3eb3c19fbcdd771ca9a87595f863c35429fab"; 123636 + libraryHaskellDepends = [ 123637 + base bytestring comonad containers dlist dlist-instances hashable 123638 + semigroupoids semigroups split text transformers 123639 + unordered-containers vector vector-algorithms vector-instances 123640 + ]; 123641 + testHaskellDepends = [ 123642 + base bytestring containers foldl hspec HUnit QuickCheck semigroups 123643 + text transformers unordered-containers vector 123644 + ]; 123645 + homepage = "https://github.com/snoyberg/mono-traversable"; 123646 + description = "Type classes for mapping, folding, and traversing monomorphic containers"; 123647 + license = stdenv.lib.licenses.mit; 123545 123648 }) {}; 123546 123649 123547 123650 "monoid-extras_0_3_3_5" = callPackage ··· 126500 126603 }: 126501 126604 mkDerivation { 126502 126605 pname = "ncurses"; 126503 - version = "0.2.11"; 126504 - sha256 = "f3dbd238d44c4bf44ccb5364540300bc9a16b539822535f3cd5d9e1189105922"; 126606 + version = "0.2.12"; 126607 + sha256 = "fbafe7fcb6e829fa1c3a3827c9adc871e7784cd76448d0c75d99b92f81dc1165"; 126505 126608 libraryHaskellDepends = [ base containers text transformers ]; 126506 126609 librarySystemDepends = [ ncurses ]; 126507 126610 libraryToolDepends = [ c2hs ]; ··· 129913 130016 ({ mkDerivation, base, containers }: 129914 130017 mkDerivation { 129915 130018 pname = "observable-sharing"; 129916 - version = "0.2.3"; 129917 - sha256 = "36438ff9a35a7d7ff0f73d5bc798e544584d1aa0efc07e7f0fb7a5513ed20432"; 130019 + version = "0.2.4"; 130020 + sha256 = "400efecddcfdd992717caccc3a7b00590e7635bf92305d7d93f81d47327811d3"; 129918 130021 libraryHaskellDepends = [ base containers ]; 129919 130022 homepage = "https://github.com/atzeus/observable-sharing"; 129920 130023 description = "Simple observable sharing"; ··· 131878 131981 }: 131879 131982 mkDerivation { 131880 131983 pname = "ot"; 131881 - version = "0.2.0.0"; 131882 - sha256 = "a3e917487a3aab56966fc3d676a3b8cf079acbd05b0ea0c887d6b90a18a6c46d"; 131984 + version = "0.2.1.0"; 131985 + sha256 = "56f1c888103c699b1025c1f23a7e3423a5b7cf93041af24d8fbd1eb9f08caa04"; 131883 131986 libraryHaskellDepends = [ 131884 131987 aeson attoparsec base binary either ghc mtl QuickCheck text 131885 131988 ]; ··· 131887 131990 aeson base binary HUnit QuickCheck test-framework 131888 131991 test-framework-hunit test-framework-quickcheck2 text 131889 131992 ]; 131890 - jailbreak = true; 131891 131993 homepage = "https://github.com/operational-transformation/ot.hs"; 131892 131994 description = "Real-time collaborative editing with Operational Transformation"; 131893 131995 license = stdenv.lib.licenses.mit; ··· 132037 132139 }: 132038 132140 mkDerivation { 132039 132141 pname = "packer"; 132040 - version = "0.1.8"; 132041 - sha256 = "713d29b95f41aff8ed21dc59551c5caf3ac165c07d43d4e403cb1b161429f8e4"; 132142 + version = "0.1.9"; 132143 + sha256 = "d2926f876da4ef8e4590bbc501caf83b0703018971ad5413e9d6647667d681e4"; 132042 132144 libraryHaskellDepends = [ base bytestring ghc-prim transformers ]; 132043 132145 testHaskellDepends = [ 132044 132146 base bytestring tasty tasty-hunit tasty-quickcheck ··· 132663 132765 doCheck = false; 132664 132766 description = "Supports using pandoc with citeproc"; 132665 132767 license = stdenv.lib.licenses.bsd3; 132768 + }) {}; 132769 + 132770 + "pandoc-citeproc_0_8" = callPackage 132771 + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring 132772 + , containers, data-default, directory, filepath, hs-bibutils, mtl 132773 + , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 132774 + , setenv, split, syb, tagsoup, temporary, text, time, vector 132775 + , xml-conduit, yaml 132776 + }: 132777 + mkDerivation { 132778 + pname = "pandoc-citeproc"; 132779 + version = "0.8"; 132780 + sha256 = "834ba89edc9d92dd2e9bf0f001a5ce3d5713b8a7b580232b6a088b5f7f6ddc5e"; 132781 + isLibrary = true; 132782 + isExecutable = true; 132783 + libraryHaskellDepends = [ 132784 + aeson base bytestring containers data-default directory filepath 132785 + hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051 132786 + setenv split syb tagsoup text time vector xml-conduit yaml 132787 + ]; 132788 + executableHaskellDepends = [ 132789 + aeson aeson-pretty attoparsec base bytestring containers directory 132790 + filepath pandoc pandoc-types process syb temporary text vector yaml 132791 + ]; 132792 + testHaskellDepends = [ 132793 + aeson base bytestring directory filepath pandoc pandoc-types 132794 + process temporary text yaml 132795 + ]; 132796 + description = "Supports using pandoc with citeproc"; 132797 + license = stdenv.lib.licenses.bsd3; 132798 + hydraPlatforms = stdenv.lib.platforms.none; 132666 132799 }) {}; 132667 132800 132668 132801 "pandoc-citeproc-preamble" = callPackage ··· 135520 135653 monad-control monad-logger mysql mysql-simple persistent resourcet 135521 135654 text transformers 135522 135655 ]; 135523 - doHaddock = false; 135524 135656 homepage = "http://www.yesodweb.com/book/persistent"; 135525 135657 description = "Backend for the persistent library using MySQL database server"; 135526 135658 license = stdenv.lib.licenses.mit; ··· 136856 136988 }) {}; 136857 136989 136858 136990 "picologic" = callPackage 136859 - ({ mkDerivation, base, containers, mtl, parsec, picosat, pretty }: 136991 + ({ mkDerivation, base, containers, mtl, parsec, picosat, pretty 136992 + , QuickCheck 136993 + }: 136860 136994 mkDerivation { 136861 136995 pname = "picologic"; 136862 - version = "0.1.1"; 136863 - sha256 = "40b8f3a30f200f956d967c4bfa8063cbaf9a9e1963c246cffcc79e8e5da29193"; 136996 + version = "0.1.2"; 136997 + sha256 = "449f6ead23c54d1751d66437a06950a5b2a478348c53e6b927ec9a2bb9e9e40f"; 136864 136998 isLibrary = true; 136865 136999 isExecutable = true; 136866 137000 libraryHaskellDepends = [ 136867 137001 base containers mtl parsec picosat pretty 136868 137002 ]; 136869 - jailbreak = true; 137003 + testHaskellDepends = [ 137004 + base containers mtl picosat pretty QuickCheck 137005 + ]; 136870 137006 homepage = "https://github.com/sdiehl/picologic"; 136871 137007 description = "Utilities for symbolic predicate logic expressions"; 136872 137008 license = stdenv.lib.licenses.mit; ··· 146349 146485 }: 146350 146486 mkDerivation { 146351 146487 type-level-natural-number-operations 146352 - version = "0.1"; 146353 - type-level-natural-number-operations 146488 + version = "0.2"; 146489 + sha256 = "81ab5c2fd634285c6c3044310ec37082e2d2350a8857f29c3c615198593b8430"; 146354 146490 libraryHaskellDepends = [ 146355 146491 type-level-natural-number-operations 146356 146492 ]; ··· 149159 149295 }: 149160 149296 mkDerivation { 149161 149297 pname = "rest-happstack"; 149162 - version = "0.3"; 149163 - sha256 = "494b9ae9e126e03e45d0fd61cbd77c4160ad3493448fcfbfcb1e2d0d8e9bc766"; 149164 - libraryHaskellDepends = [ 149165 - base containers happstack-server mtl rest-core rest-gen utf8-string 149166 - ]; 149167 - description = "Rest driver for Happstack"; 149168 - license = stdenv.lib.licenses.bsd3; 149169 - }) {}; 149170 - 149171 - "rest-happstack_0_3_1" = callPackage 149172 - ({ mkDerivation, base, containers, happstack-server, mtl, rest-core 149173 - , rest-gen, utf8-string 149174 - }: 149175 - mkDerivation { 149176 - pname = "rest-happstack"; 149177 149298 version = "0.3.1"; 149178 149299 sha256 = "a2c2e1b1e1bfdc7870100eee642e488268e21117b08aad254342d14a53ce13d9"; 149179 149300 libraryHaskellDepends = [ ··· 149181 149302 ]; 149182 149303 description = "Rest driver for Happstack"; 149183 149304 license = stdenv.lib.licenses.bsd3; 149184 - hydraPlatforms = stdenv.lib.platforms.none; 149185 149305 }) {}; 149186 149306 149187 149307 "rest-snap_0_1_17_14" = callPackage ··· 154739 154859 hydraPlatforms = stdenv.lib.platforms.none; 154740 154860 }) {}; 154741 154861 154742 - "servant" = callPackage 154862 + "servant_0_4_4_4" = callPackage 154743 154863 ({ mkDerivation, aeson, attoparsec, base, bytestring 154744 154864 , bytestring-conversion, case-insensitive, directory, doctest 154745 154865 , filemanip, filepath, hspec, http-media, http-types, network-uri ··· 154763 154883 homepage = "http://haskell-servant.github.io/"; 154764 154884 description = "A family of combinators for defining webservices APIs"; 154765 154885 license = stdenv.lib.licenses.bsd3; 154886 + hydraPlatforms = stdenv.lib.platforms.none; 154887 + }) {}; 154888 + 154889 + "servant" = callPackage 154890 + ({ mkDerivation, aeson, attoparsec, base, bytestring 154891 + , bytestring-conversion, case-insensitive, directory, doctest 154892 + , filemanip, filepath, hspec, http-media, http-types, network-uri 154893 + , parsec, QuickCheck, quickcheck-instances, string-conversions 154894 + , text, url 154895 + }: 154896 + mkDerivation { 154897 + pname = "servant"; 154898 + version = "0.4.4.5"; 154899 + sha256 = "b82abafe5bd1357c64c36c344ab38dc8fa8ad8f40126b86323da9bfc4047f544"; 154900 + libraryHaskellDepends = [ 154901 + aeson attoparsec base bytestring bytestring-conversion 154902 + case-insensitive http-media http-types network-uri 154903 + string-conversions text 154904 + ]; 154905 + testHaskellDepends = [ 154906 + aeson attoparsec base bytestring directory doctest filemanip 154907 + filepath hspec parsec QuickCheck quickcheck-instances 154908 + string-conversions text url 154909 + ]; 154910 + homepage = "http://haskell-servant.github.io/"; 154911 + description = "A family of combinators for defining webservices APIs"; 154912 + license = stdenv.lib.licenses.bsd3; 154766 154913 }) {}; 154767 154914 154768 154915 "servant-JuicyPixels_0_1_0_0" = callPackage ··· 154812 154959 ({ mkDerivation, base, blaze-html, http-media, servant }: 154813 154960 mkDerivation { 154814 154961 pname = "servant-blaze"; 154815 - version = "0.4.4.4"; 154816 - sha256 = "58e3d5922b9031559aebc7ae99e52712d6a208cb2c0164da5baffb4cd55cafa1"; 154962 + version = "0.4.4.5"; 154963 + sha256 = "b2ac467c4cc6e3e439436616f9132818e1023ea048e918d87f133342705bc991"; 154817 154964 libraryHaskellDepends = [ base blaze-html http-media servant ]; 154818 154965 homepage = "http://haskell-servant.github.io/"; 154819 154966 description = "Blaze-html support for servant"; ··· 154900 155047 hydraPlatforms = stdenv.lib.platforms.none; 154901 155048 }) {}; 154902 155049 154903 - "servant-client" = callPackage 155050 + "servant-client_0_4_4_4" = callPackage 154904 155051 ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq 154905 155052 , either, exceptions, hspec, http-client, http-client-tls 154906 155053 , http-media, http-types, HUnit, network, network-uri, QuickCheck ··· 154924 155071 homepage = "http://haskell-servant.github.io/"; 154925 155072 description = "automatical derivation of querying functions for servant webservices"; 154926 155073 license = stdenv.lib.licenses.bsd3; 155074 + hydraPlatforms = stdenv.lib.platforms.none; 155075 + }) {}; 155076 + 155077 + "servant-client" = callPackage 155078 + ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq 155079 + , either, exceptions, hspec, http-client, http-client-tls 155080 + , http-media, http-types, HUnit, network, network-uri, QuickCheck 155081 + , safe, servant, servant-server, string-conversions, text 155082 + , transformers, wai, warp 155083 + }: 155084 + mkDerivation { 155085 + pname = "servant-client"; 155086 + version = "0.4.4.5"; 155087 + sha256 = "7ca47d0bb95268222fe19d34b31acf501ea89d7a9a4ce77a3ebc0cd18386b953"; 155088 + libraryHaskellDepends = [ 155089 + aeson attoparsec base bytestring either exceptions http-client 155090 + http-client-tls http-media http-types network-uri safe servant 155091 + string-conversions text transformers 155092 + ]; 155093 + testHaskellDepends = [ 155094 + aeson base bytestring deepseq either hspec http-client http-media 155095 + http-types HUnit network QuickCheck servant servant-server text wai 155096 + warp 155097 + ]; 155098 + homepage = "http://haskell-servant.github.io/"; 155099 + description = "automatical derivation of querying functions for servant webservices"; 155100 + license = stdenv.lib.licenses.bsd3; 154927 155101 }) {}; 154928 155102 154929 155103 "servant-docs_0_3_1" = callPackage ··· 155007 155181 hydraPlatforms = stdenv.lib.platforms.none; 155008 155182 }) {}; 155009 155183 155010 - "servant-docs" = callPackage 155184 + "servant-docs_0_4_4_4" = callPackage 155011 155185 ({ mkDerivation, aeson, base, bytestring, bytestring-conversion 155012 155186 , case-insensitive, hashable, hspec, http-media, http-types, lens 155013 155187 , servant, string-conversions, text, unordered-containers ··· 155033 155207 homepage = "http://haskell-servant.github.io/"; 155034 155208 description = "generate API docs for your servant webservice"; 155035 155209 license = stdenv.lib.licenses.bsd3; 155210 + hydraPlatforms = stdenv.lib.platforms.none; 155211 + }) {}; 155212 + 155213 + "servant-docs" = callPackage 155214 + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion 155215 + , case-insensitive, hashable, hspec, http-media, http-types, lens 155216 + , servant, string-conversions, text, unordered-containers 155217 + }: 155218 + mkDerivation { 155219 + pname = "servant-docs"; 155220 + version = "0.4.4.5"; 155221 + sha256 = "55f4c036cc96aebac19eeea43af412f696002a8e3497a95ff4aa25429c7c474e"; 155222 + isLibrary = true; 155223 + isExecutable = true; 155224 + libraryHaskellDepends = [ 155225 + base bytestring bytestring-conversion case-insensitive hashable 155226 + http-media http-types lens servant string-conversions text 155227 + unordered-containers 155228 + ]; 155229 + executableHaskellDepends = [ 155230 + aeson base bytestring-conversion lens servant string-conversions 155231 + text 155232 + ]; 155233 + testHaskellDepends = [ 155234 + aeson base hspec lens servant string-conversions 155235 + ]; 155236 + homepage = "http://haskell-servant.github.io/"; 155237 + description = "generate API docs for your servant webservice"; 155238 + license = stdenv.lib.licenses.bsd3; 155036 155239 }) {}; 155037 155240 155038 155241 "servant-ede" = callPackage ··· 155067 155270 }: 155068 155271 mkDerivation { 155069 155272 pname = "servant-examples"; 155070 - version = "0.4.4.4"; 155071 - sha256 = "e180ff93d58ebb467097b337e00f77b42e9780880627ab52a2b8d69363fc7de4"; 155273 + version = "0.4.4.5"; 155274 + sha256 = "51a0f8953c3eeed16c6745286d858338f657d000af9ad2f6a7a7531688426425"; 155072 155275 isLibrary = false; 155073 155276 isExecutable = true; 155074 155277 executableHaskellDepends = [ ··· 155153 155356 hydraPlatforms = stdenv.lib.platforms.none; 155154 155357 }) {}; 155155 155358 155156 - "servant-jquery" = callPackage 155359 + "servant-jquery_0_4_4_4" = callPackage 155157 155360 ({ mkDerivation, aeson, base, charset, filepath, hspec 155158 155361 , hspec-expectations, language-ecmascript, lens, servant 155159 155362 , servant-server, stm, text, transformers, warp ··· 155174 155377 homepage = "http://haskell-servant.github.io/"; 155175 155378 description = "Automatically derive (jquery) javascript functions to query servant webservices"; 155176 155379 license = stdenv.lib.licenses.bsd3; 155380 + hydraPlatforms = stdenv.lib.platforms.none; 155381 + }) {}; 155382 + 155383 + "servant-jquery" = callPackage 155384 + ({ mkDerivation, aeson, base, charset, filepath, hspec 155385 + , hspec-expectations, language-ecmascript, lens, servant 155386 + , servant-server, stm, text, transformers, warp 155387 + }: 155388 + mkDerivation { 155389 + pname = "servant-jquery"; 155390 + version = "0.4.4.5"; 155391 + sha256 = "33059d2a707bfad6fcd3f92cdaac69da9767dce1f2e11f7c4c9b2ad9df1d1b3c"; 155392 + isLibrary = true; 155393 + isExecutable = true; 155394 + libraryHaskellDepends = [ base charset lens servant text ]; 155395 + executableHaskellDepends = [ 155396 + aeson base filepath servant servant-server stm transformers warp 155397 + ]; 155398 + testHaskellDepends = [ 155399 + base hspec hspec-expectations language-ecmascript lens servant 155400 + ]; 155401 + homepage = "http://haskell-servant.github.io/"; 155402 + description = "Automatically derive (jquery) javascript functions to query servant webservices"; 155403 + license = stdenv.lib.licenses.bsd3; 155177 155404 }) {}; 155178 155405 155179 155406 "servant-lucid" = callPackage 155180 155407 ({ mkDerivation, base, http-media, lucid, servant }: 155181 155408 mkDerivation { 155182 155409 pname = "servant-lucid"; 155183 - version = "0.4.4.4"; 155184 - sha256 = "c42702b20da1f8daea4c2a633e777214e524a2afac96c0b559209351f1f1cd0d"; 155410 + version = "0.4.4.5"; 155411 + sha256 = "85c922b88dbf4c7c0e8447e326938ab1f3f8dd60400f1b23a0d63109e6159913"; 155185 155412 libraryHaskellDepends = [ base http-media lucid servant ]; 155186 155413 homepage = "http://haskell-servant.github.io/"; 155187 155414 description = "Servant support for lucid"; ··· 155194 155421 }: 155195 155422 mkDerivation { 155196 155423 pname = "servant-mock"; 155197 - version = "0.4.4.4"; 155198 - sha256 = "1df192ac10aea342cffd5da509f9c5eca40b659fa3c7b77aad87ec0bbb82f35c"; 155424 + version = "0.4.4.5"; 155425 + sha256 = "3b1cb43127ceb10979fa056c847e588d030293ee8842e13d1c18458b886d7ed6"; 155199 155426 isLibrary = true; 155200 155427 isExecutable = true; 155201 155428 libraryHaskellDepends = [ ··· 155426 155653 hydraPlatforms = stdenv.lib.platforms.none; 155427 155654 }) {}; 155428 155655 155429 - "servant-server" = callPackage 155656 + "servant-server_0_4_4_4" = callPackage 155430 155657 ({ mkDerivation, aeson, attoparsec, base, bytestring 155431 155658 , bytestring-conversion, directory, doctest, either, exceptions 155432 155659 , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl ··· 155438 155665 pname = "servant-server"; 155439 155666 version = "0.4.4.4"; 155440 155667 sha256 = "056947b96664674f1a6c65af30001e9e2343357efa96e153198ec0f833f3fdd0"; 155668 + isLibrary = true; 155669 + isExecutable = true; 155670 + libraryHaskellDepends = [ 155671 + aeson attoparsec base bytestring either filepath http-types mmorph 155672 + mtl network-uri safe servant split string-conversions 155673 + system-filepath text transformers wai wai-app-static warp 155674 + ]; 155675 + executableHaskellDepends = [ aeson base servant text wai warp ]; 155676 + testHaskellDepends = [ 155677 + aeson base bytestring bytestring-conversion directory doctest 155678 + either exceptions filemanip filepath hspec hspec-wai http-types mtl 155679 + network parsec QuickCheck servant string-conversions temporary text 155680 + transformers wai wai-extra warp 155681 + ]; 155682 + homepage = "http://haskell-servant.github.io/"; 155683 + description = "A family of combinators for defining webservices APIs and serving them"; 155684 + license = stdenv.lib.licenses.bsd3; 155685 + hydraPlatforms = stdenv.lib.platforms.none; 155686 + }) {}; 155687 + 155688 + "servant-server" = callPackage 155689 + ({ mkDerivation, aeson, attoparsec, base, bytestring 155690 + , bytestring-conversion, directory, doctest, either, exceptions 155691 + , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl 155692 + , network, network-uri, parsec, QuickCheck, safe, servant, split 155693 + , string-conversions, system-filepath, temporary, text 155694 + , transformers, wai, wai-app-static, wai-extra, warp 155695 + }: 155696 + mkDerivation { 155697 + pname = "servant-server"; 155698 + version = "0.4.4.5"; 155699 + sha256 = "30d9668ff406911356a0ebcba7591924c5bb5c55a228e5682e394a66ee593a58"; 155441 155700 isLibrary = true; 155442 155701 isExecutable = true; 155443 155702 libraryHaskellDepends = [ ··· 173065 173324 }: 173066 173325 mkDerivation { 173067 173326 pname = "threads-supervisor"; 173068 - version = "1.0.3.0"; 173069 - sha256 = "b64e2b63d65808de4a64a1157ebacb831efc549fdbd38a97012f48ecb3a437c6"; 173327 + version = "1.0.4.0"; 173328 + sha256 = "6d48e9007275c6ff3ce01c35f89a106110878e65c67c654f3432c3c3d6b9e02f"; 173070 173329 isLibrary = true; 173071 173330 isExecutable = true; 173072 173331 libraryHaskellDepends = [ ··· 173802 174061 license = stdenv.lib.licenses.bsd3; 173803 174062 }) {}; 173804 174063 174064 + "timeless" = callPackage 174065 + ({ mkDerivation, base, time, transformers }: 174066 + mkDerivation { 174067 + pname = "timeless"; 174068 + version = "0.8.0.2"; 174069 + sha256 = "bb32b4ed361bbb17d2d86d19958513a0231d9789c615a52975cedb7efba99ad7"; 174070 + libraryHaskellDepends = [ base time transformers ]; 174071 + homepage = "https://github.com/carldong/timeless"; 174072 + description = "An Arrow based Functional Reactive Programming library"; 174073 + license = stdenv.lib.licenses.bsd3; 174074 + }) {}; 174075 + 173805 174076 "timeout" = callPackage 173806 174077 ({ mkDerivation, base, exceptions, mtl, QuickCheck, tasty 173807 174078 , tasty-quickcheck, time ··· 175745 176016 ({ mkDerivation, base, containers, template-haskell, time }: 175746 176017 mkDerivation { 175747 176018 pname = "true-name"; 175748 - version = "0.0.0.1"; 175749 - sha256 = "f5b57148ebab8d1f72001d795d44720aa3ee2d4c7f12e63f48fc38884004e7e2"; 176019 + version = "0.0.0.2"; 176020 + sha256 = "55e3785f6072bd0b5ed030ae3894bb92c5684681217833ddc4f112b0d32f9c3e"; 175750 176021 libraryHaskellDepends = [ base template-haskell ]; 175751 176022 testHaskellDepends = [ base containers template-haskell time ]; 175752 176023 homepage = "https://github.com/liyang/true-name"; ··· 176677 176948 template-haskell text time transformers transformers-base 176678 176949 twitter-types twitter-types-lens 176679 176950 ]; 176951 + doCheck = false; 176680 176952 homepage = "https://github.com/himura/twitter-conduit"; 176681 176953 description = "Twitter API package with conduit interface and Streaming API support"; 176682 176954 license = stdenv.lib.licenses.bsd3; ··· 176786 177058 test-framework-hunit test-framework-quickcheck2 176787 177059 test-framework-th-prime text time unordered-containers 176788 177060 ]; 177061 + doCheck = false; 176789 177062 homepage = "https://github.com/himura/twitter-types"; 176790 177063 description = "Twitter JSON parser and types"; 176791 177064 license = stdenv.lib.licenses.bsd3; ··· 177194 177467 hydraPlatforms = stdenv.lib.platforms.none; 177195 177468 }) {}; 177196 177469 177197 - "type-list" = callPackage 177470 + "type-list_0_2_0_0" = callPackage 177198 177471 ({ mkDerivation, base, singletons }: 177199 177472 mkDerivation { 177200 177473 pname = "type-list"; ··· 177203 177476 libraryHaskellDepends = [ base singletons ]; 177204 177477 description = "Operations on type-level lists and tuples"; 177205 177478 license = stdenv.lib.licenses.bsd3; 177479 + hydraPlatforms = stdenv.lib.platforms.none; 177480 + }) {}; 177481 + 177482 + "type-list" = callPackage 177483 + ({ mkDerivation, base, singletons }: 177484 + mkDerivation { 177485 + pname = "type-list"; 177486 + version = "0.3.0.2"; 177487 + sha256 = "80e7f52a5fb88880be9a166fbe664bda7e9f94d64d70c877471c833567722aee"; 177488 + libraryHaskellDepends = [ base singletons ]; 177489 + description = "Operations on type-level lists and tuples"; 177490 + license = stdenv.lib.licenses.bsd3; 177206 177491 }) {}; 177207 177492 177208 177493 "type-natural" = callPackage ··· 177753 178038 }: 177754 178039 mkDerivation { 177755 178040 pname = "uhc-light"; 177756 - version = "1.1.9.0"; 177757 - sha256 = "72d6c7c3a8b94b315c6346684e9ba2e97215ebf6e49d97bbc3852e4b0a000b37"; 177758 - revision = "1"; 177759 - editedCabalFile = "8847b4a41a2f6c9be09cf7b4835f53219522da9ef0ca26b918159fec747bd938"; 178041 + version = "1.1.9.1"; 178042 + sha256 = "9192b3ce50cf5f796799490b8f22b6ee20a3310e7e2216e09dc9706765e0cc61"; 177760 178043 isLibrary = true; 177761 178044 isExecutable = true; 177762 178045 libraryHaskellDepends = [ ··· 177776 178059 177777 178060 "uhc-util" = callPackage 177778 178061 ({ mkDerivation, array, base, binary, bytestring, containers 177779 - , directory, fclabels, fgl, hashable, ListLike, mtl, process, syb 177780 - , time, time-compat, uulib 178062 + , directory, fclabels, fgl, hashable, mtl, process, syb, time 178063 + , time-compat, uulib 177781 178064 }: 177782 178065 mkDerivation { 177783 178066 pname = "uhc-util"; 177784 - version = "0.1.6.0"; 177785 - sha256 = "128641dd69d7adb85095988132914ac5d14140ef063e28cee5102997d1acb6d9"; 178067 + version = "0.1.6.2"; 178068 + sha256 = "f559daf2f339b4d3ab2194895c19a10a304c68970b10c1e6571b52734f4bd19a"; 177786 178069 libraryHaskellDepends = [ 177787 178070 array base binary bytestring containers directory fclabels fgl 177788 - hashable ListLike mtl process syb time time-compat uulib 178071 + hashable mtl process syb time time-compat uulib 177789 178072 ]; 177790 178073 homepage = "https://github.com/UU-ComputerScience/uhc-util"; 177791 178074 description = "UHC utilities"; ··· 178845 179128 hydraPlatforms = stdenv.lib.platforms.none; 178846 179129 }) {}; 178847 179130 178848 - "unix-time" = callPackage 179131 + "unix-time_0_3_5" = callPackage 178849 179132 ({ mkDerivation, base, binary, bytestring, doctest, hspec 178850 179133 , old-locale, old-time, QuickCheck, time 178851 179134 }: ··· 178860 179143 doCheck = false; 178861 179144 description = "Unix time parser/formatter and utilities"; 178862 179145 license = stdenv.lib.licenses.bsd3; 179146 + hydraPlatforms = stdenv.lib.platforms.none; 179147 + }) {}; 179148 + 179149 + "unix-time" = callPackage 179150 + ({ mkDerivation, base, binary, bytestring, doctest, hspec 179151 + , old-locale, old-time, QuickCheck, time 179152 + }: 179153 + mkDerivation { 179154 + pname = "unix-time"; 179155 + version = "0.3.6"; 179156 + sha256 = "5d15ebd0ee74e13638a7c04a7fc5f05a29ccd3228c8798df226939a778f7db37"; 179157 + libraryHaskellDepends = [ base binary bytestring old-time ]; 179158 + testHaskellDepends = [ 179159 + base bytestring doctest hspec old-locale old-time QuickCheck time 179160 + ]; 179161 + doCheck = false; 179162 + description = "Unix time parser/formatter and utilities"; 179163 + license = stdenv.lib.licenses.bsd3; 178863 179164 }) {}; 178864 179165 178865 179166 "unlambda" = callPackage ··· 181626 181927 hydraPlatforms = stdenv.lib.platforms.none; 181627 181928 }) {}; 181628 181929 181629 - "vector-th-unbox" = callPackage 181930 + "vector-th-unbox_0_2_1_2" = callPackage 181630 181931 ({ mkDerivation, base, data-default, template-haskell, vector }: 181631 181932 mkDerivation { 181632 181933 pname = "vector-th-unbox"; 181633 181934 version = "0.2.1.2"; 181634 181935 sha256 = "0df696462d424bab569cc7a8ba1b1d0057bc5a71c510567fe5bcd1a940ae4d05"; 181936 + revision = "1"; 181937 + editedCabalFile = "bddeef74d6aab09ec3f1b5c9781f96b4a92f6f1234836cbaff78a493e73ca1fa"; 181938 + libraryHaskellDepends = [ base template-haskell vector ]; 181939 + testHaskellDepends = [ base data-default vector ]; 181940 + description = "Deriver for Data.Vector.Unboxed using Template Haskell"; 181941 + license = stdenv.lib.licenses.bsd3; 181942 + hydraPlatforms = stdenv.lib.platforms.none; 181943 + }) {}; 181944 + 181945 + "vector-th-unbox" = callPackage 181946 + ({ mkDerivation, base, data-default, template-haskell, vector }: 181947 + mkDerivation { 181948 + pname = "vector-th-unbox"; 181949 + version = "0.2.1.3"; 181950 + sha256 = "33db750d3d867f23d0406a7165952b030831ed610b06ef777cfae8439b382689"; 181635 181951 libraryHaskellDepends = [ base template-haskell vector ]; 181636 181952 testHaskellDepends = [ base data-default vector ]; 181637 181953 description = "Deriver for Data.Vector.Unboxed using Template Haskell"; ··· 182280 182596 }: 182281 182597 mkDerivation { 182282 182598 pname = "waddle"; 182283 - version = "0.1.0.5"; 182284 - sha256 = "9b2101391babec27362f11bea8775d2b778766cbc24184cb82e7e3154086986c"; 182599 + version = "0.1.0.6"; 182600 + sha256 = "48782ba072e71678cb7d01043f8c10981ea7e7e5a123f0d8fb7a482f75c4ca15"; 182285 182601 isLibrary = true; 182286 182602 isExecutable = true; 182287 182603 libraryHaskellDepends = [ ··· 182292 182608 base binary bytestring case-insensitive containers directory 182293 182609 JuicyPixels 182294 182610 ]; 182295 - jailbreak = true; 182296 182611 homepage = "https://github.com/mgrabmueller/waddle"; 182297 182612 description = "DOOM WAD file utilities"; 182298 182613 license = stdenv.lib.licenses.bsd3; ··· 185222 185537 }: 185223 185538 mkDerivation { 185224 185539 pname = "warp"; 185225 - version = "3.1.4"; 185226 - sha256 = "6e7e96dd49f0d0635e3453dbe3a074db3ab8ce69ce48b9da7701f211198029b9"; 185540 + version = "3.1.6"; 185541 + sha256 = "34ce9ad59002bee92224b25bc64bec7d86576b41900cde305af419f304ad4093"; 185227 185542 libraryHaskellDepends = [ 185228 185543 array auto-update base blaze-builder bytestring bytestring-builder 185229 185544 case-insensitive containers ghc-prim hashable http-date http-types ··· 185663 185978 185664 185979 "wavefront" = callPackage 185665 185980 ({ mkDerivation, attoparsec, base, dlist, filepath, mtl, text 185666 - , transformers 185981 + , transformers, vector 185667 185982 }: 185668 185983 mkDerivation { 185669 185984 pname = "wavefront"; 185670 - version = "0.2"; 185671 - sha256 = "5f9130cb8fa4ecb1b4f6313aa24c8e7c595c15cce72fa9a2e0f009dd6cb9503c"; 185985 + version = "0.3"; 185986 + sha256 = "65443f1ca1ceb6418e3740c085bd8f6f85c6ca2033deeafd7c7e4f418043e3a2"; 185672 185987 libraryHaskellDepends = [ 185673 - attoparsec base dlist filepath mtl text transformers 185988 + attoparsec base dlist filepath mtl text transformers vector 185674 185989 ]; 185990 + jailbreak = true; 185675 185991 homepage = "https://github.com/phaazon/wavefront"; 185676 185992 description = "Wavefront OBJ loader"; 185677 185993 license = stdenv.lib.licenses.bsd3; ··· 186268 186584 license = stdenv.lib.licenses.bsd3; 186269 186585 }) {}; 186270 186586 186271 - "webdriver_0_7" = callPackage 186587 + "webdriver_0_8" = callPackage 186272 186588 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 186273 - , bytestring, cond, data-default, directory, directory-tree 186589 + , bytestring, cond, data-default-class, directory, directory-tree 186274 186590 , exceptions, filepath, http-client, http-types, lifted-base 186275 - , monad-control, mtl, network, network-uri, parallel, scientific 186276 - , temporary, text, time, transformers, transformers-base 186277 - , unordered-containers, vector, zip-archive 186591 + , monad-control, network, network-uri, scientific, temporary, text 186592 + , time, transformers, transformers-base, unordered-containers 186593 + , vector, zip-archive 186278 186594 }: 186279 186595 mkDerivation { 186280 186596 pname = "webdriver"; 186281 - version = "0.7"; 186282 - sha256 = "3e26d74d378318d58fd8080d2e18394e953821801ee6ce8394e6321c7bdb6b6f"; 186597 + version = "0.8"; 186598 + sha256 = "357b6d21d9c3e322a7d85868e40464505d30fce3d3e3fd318c1742247cc431aa"; 186283 186599 libraryHaskellDepends = [ 186284 186600 aeson attoparsec base base64-bytestring bytestring cond 186285 - data-default directory directory-tree exceptions filepath 186286 - http-client http-types lifted-base monad-control mtl network 186601 + data-default-class directory directory-tree exceptions filepath 186602 + http-client http-types lifted-base monad-control network 186287 186603 network-uri scientific temporary text time transformers 186288 186604 transformers-base unordered-containers vector zip-archive 186289 186605 ]; 186290 - testHaskellDepends = [ base parallel text ]; 186606 + testHaskellDepends = [ base text ]; 186291 186607 homepage = "https://github.com/kallisti-dev/hs-webdriver"; 186292 186608 description = "a Haskell client for the Selenium WebDriver protocol"; 186293 186609 license = stdenv.lib.licenses.bsd3; ··· 186686 187002 hydraPlatforms = stdenv.lib.platforms.none; 186687 187003 }) {}; 186688 187004 186689 - "websockets" = callPackage 187005 + "websockets_0_9_6_0" = callPackage 186690 187006 ({ mkDerivation, attoparsec, base, base64-bytestring, binary 186691 187007 , blaze-builder, bytestring, case-insensitive, containers, entropy 186692 187008 , HUnit, network, QuickCheck, random, SHA, test-framework ··· 186716 187032 homepage = "http://jaspervdj.be/websockets"; 186717 187033 description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; 186718 187034 license = stdenv.lib.licenses.bsd3; 187035 + hydraPlatforms = stdenv.lib.platforms.none; 187036 + }) {}; 187037 + 187038 + "websockets" = callPackage 187039 + ({ mkDerivation, attoparsec, base, base64-bytestring, binary 187040 + , blaze-builder, bytestring, case-insensitive, containers, entropy 187041 + , HUnit, network, QuickCheck, random, SHA, test-framework 187042 + , test-framework-hunit, test-framework-quickcheck2, text 187043 + }: 187044 + mkDerivation { 187045 + pname = "websockets"; 187046 + version = "0.9.6.1"; 187047 + sha256 = "3c75cb59585710862c57277c8be718903ba727452d5f662288abb8b59eb57cd4"; 187048 + isLibrary = true; 187049 + isExecutable = true; 187050 + libraryHaskellDepends = [ 187051 + attoparsec base base64-bytestring binary blaze-builder bytestring 187052 + case-insensitive containers entropy network random SHA text 187053 + ]; 187054 + executableHaskellDepends = [ 187055 + attoparsec base base64-bytestring binary blaze-builder bytestring 187056 + case-insensitive containers entropy network random SHA text 187057 + ]; 187058 + testHaskellDepends = [ 187059 + attoparsec base base64-bytestring binary blaze-builder bytestring 187060 + case-insensitive containers entropy HUnit network QuickCheck random 187061 + SHA test-framework test-framework-hunit test-framework-quickcheck2 187062 + text 187063 + ]; 187064 + doCheck = false; 187065 + homepage = "http://jaspervdj.be/websockets"; 187066 + description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; 187067 + license = stdenv.lib.licenses.bsd3; 186719 187068 }) {}; 186720 187069 186721 187070 "websockets-snap" = callPackage ··· 187118 187467 homepage = "https://github.com/fumieval/witherable"; 187119 187468 description = "Generalization of filter and catMaybes"; 187120 187469 license = stdenv.lib.licenses.bsd3; 187470 + }) {}; 187471 + 187472 + "witherable_0_1_3_1" = callPackage 187473 + ({ mkDerivation, base, base-orphans, containers, hashable 187474 + , transformers, unordered-containers, vector 187475 + }: 187476 + mkDerivation { 187477 + pname = "witherable"; 187478 + version = "0.1.3.1"; 187479 + sha256 = "4b11917e2d562ce725394d994600ef59c7d1928dccbffe44a5bdf6de62af2fd0"; 187480 + libraryHaskellDepends = [ 187481 + base base-orphans containers hashable transformers 187482 + unordered-containers vector 187483 + ]; 187484 + homepage = "https://github.com/fumieval/witherable"; 187485 + description = "Generalization of filter and catMaybes"; 187486 + license = stdenv.lib.licenses.bsd3; 187487 + hydraPlatforms = stdenv.lib.platforms.none; 187121 187488 }) {}; 187122 187489 187123 187490 "witness" = callPackage ··· 191989 192356 hydraPlatforms = stdenv.lib.platforms.none; 191990 192357 }) {}; 191991 192358 191992 - "yesod-auth" = callPackage 192359 + "yesod-auth_1_4_7" = callPackage 191993 192360 ({ mkDerivation, aeson, authenticate, base, base16-bytestring 191994 192361 , base64-bytestring, binary, blaze-builder, blaze-html 191995 192362 , blaze-markup, byteable, bytestring, conduit, conduit-extra ··· 192004 192371 pname = "yesod-auth"; 192005 192372 version = "1.4.7"; 192006 192373 sha256 = "7b9cfe4f866cbf3726ebfdfc341e0930c4cc60107d94086950701fa1a6e2be88"; 192374 + libraryHaskellDepends = [ 192375 + aeson authenticate base base16-bytestring base64-bytestring binary 192376 + blaze-builder blaze-html blaze-markup byteable bytestring conduit 192377 + conduit-extra containers cryptohash data-default email-validate 192378 + file-embed http-client http-conduit http-types lifted-base 192379 + mime-mail network-uri nonce persistent persistent-template random 192380 + resourcet safe shakespeare template-haskell text time transformers 192381 + unordered-containers wai yesod-core yesod-form yesod-persistent 192382 + ]; 192383 + homepage = "http://www.yesodweb.com/"; 192384 + description = "Authentication for Yesod"; 192385 + license = stdenv.lib.licenses.mit; 192386 + hydraPlatforms = stdenv.lib.platforms.none; 192387 + }) {}; 192388 + 192389 + "yesod-auth" = callPackage 192390 + ({ mkDerivation, aeson, authenticate, base, base16-bytestring 192391 + , base64-bytestring, binary, blaze-builder, blaze-html 192392 + , blaze-markup, byteable, bytestring, conduit, conduit-extra 192393 + , containers, cryptohash, data-default, email-validate, file-embed 192394 + , http-client, http-conduit, http-types, lifted-base, mime-mail 192395 + , network-uri, nonce, persistent, persistent-template, random 192396 + , resourcet, safe, shakespeare, template-haskell, text, time 192397 + , transformers, unordered-containers, wai, yesod-core, yesod-form 192398 + , yesod-persistent 192399 + }: 192400 + mkDerivation { 192401 + pname = "yesod-auth"; 192402 + version = "1.4.8"; 192403 + sha256 = "65a16bb6fb9601be88ec9af99577800041b455eaa5d0b2f645c618c306587cb2"; 192007 192404 libraryHaskellDepends = [ 192008 192405 aeson authenticate base base16-bytestring base64-bytestring binary 192009 192406 blaze-builder blaze-html blaze-markup byteable bytestring conduit
+3 -3
pkgs/development/libraries/cppzmq/default.nix
··· 1 1 { stdenv, fetchgit }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "cppzmq-2015-07-06"; 4 + name = "cppzmq-20150926"; 5 5 6 6 src = fetchgit { 7 7 url = "https://github.com/zeromq/cppzmq"; 8 - rev = "a88bf3e0b0bc6ed5f5b25a58f8997a1dae374c8b"; 9 - sha256 = "75a6630b870c1f0d5b9d6a0ba03e83ceee47aaa2a253894e75a8a93a6d65d3aa"; 8 + rev = "fa2f2c67a79c31d73bfef6862cc8ce12a98dd022"; 9 + sha256 = "7b46712b5fa7e59cd0ffae190674046c71d5762c064003c125d6cd7a3da19b71"; 10 10 }; 11 11 12 12 installPhase = ''
+13 -5
pkgs/development/libraries/folly/default.nix
··· 1 - { stdenv, fetchFromGitHub, autoreconfHook, boost, libevent, double_conversion, glog 1 + { stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, boost, libevent, double_conversion, glog 2 2 , google-gflags, python, libiberty, openssl }: 3 3 4 4 stdenv.mkDerivation rec { 5 - version = "2015-09-17"; 5 + version = "0.57.0"; 6 6 name = "folly-${version}"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "facebook"; 10 10 repo = "folly"; 11 - rev = "e4527fb5d04f5fec823bd6a2402b620a6e1a64e3"; 12 - sha256 = "0iicq19yylafr7qs221xgk8pcwf6nnyx6srgsx9y9cyf72siadcb"; 11 + rev = "v${version}"; 12 + sha256 = "12b9bkwmndfwmsknc209kpplxn9wqmwr3p2h0l2szrppq4qqyfq9"; 13 13 }; 14 14 15 + patches = [ 16 + # Fix compatibility with Boost 1.59 17 + (fetchpatch { 18 + url = "https://github.com/facebook/folly/commit/29193aca605bb93d82a3c92acd95bb342115f3a4.patch"; 19 + sha256 = "1ixpgq1wjr3i7madx4faw72n17ilc9cr435k5w1x95jr954m9j7b"; 20 + }) 21 + ]; 22 + 15 23 nativeBuildInputs = [ autoreconfHook python ]; 16 24 buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ]; 17 25 18 - postUnpack = "sourceRoot=\${sourceRoot}/folly"; 26 + postPatch = "cd folly"; 19 27 preBuild = '' 20 28 patchShebangs build 21 29 '';
+2 -2
pkgs/development/libraries/libbluray/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 baseName = "libbluray"; 22 - version = "0.8.1"; 22 + version = "0.9.0"; 23 23 name = "${baseName}-${version}"; 24 24 25 25 src = fetchurl { 26 26 url = "ftp://ftp.videolan.org/pub/videolan/${baseName}/${version}/${name}.tar.bz2"; 27 - sha256 = "13zvkrwy2fr877gkifgwnqfsb3krbz7hklfcwqfjbhmvqn0cdgnd"; 27 + sha256 = "0kb9znxk6610vi0fjhqxn4z5i98nvxlsz1f8dakj99rg42livdl4"; 28 28 }; 29 29 30 30 nativeBuildInputs = [ pkgconfig autoreconfHook ]
+4 -2
pkgs/development/libraries/libmicrohttpd/default.nix
··· 1 1 { lib, stdenv, fetchurl, libgcrypt }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "libmicrohttpd-0.9.43"; 4 + name = "libmicrohttpd-0.9.44"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://gnu/libmicrohttpd/${name}.tar.gz"; 8 - sha256 = "17q6v5q0jpg57vylby6rx1qkil72bdx8gij1g9m694gxf5sb6js1"; 8 + sha256 = "07j1p21rvbrrfpxngk8xswzkmjkh94bp1971xfjh1p0ja709qwzj"; 9 9 }; 10 + 11 + outputs = [ "out" "info" ]; 10 12 11 13 buildInputs = [ libgcrypt ]; 12 14
+3 -3
pkgs/development/libraries/libpsl/default.nix
··· 5 5 6 6 version = "${libVersion}-list-${listVersion}"; 7 7 8 - listVersion = "2015-09-25"; 8 + listVersion = "2015-10-11"; 9 9 listSources = fetchFromGitHub { 10 - sha256 = "045snl0pz8ma5rk51xxbjcamm28hi4z2v7gd8zkkv8yrjyg9yp82"; 11 - rev = "509db00ef21795e58bfc2c576cebf72c8ee7a6f9"; 10 + sha256 = "1zvfywi43kyh7b6hsm8ldmdypk9n36jzp0s1lf2rzd4yzcyxwgzy"; 11 + rev = "8952c0c398ba44d507a8ed430fd1cff7b92dfde8"; 12 12 repo = "list"; 13 13 owner = "publicsuffix"; 14 14 };
+2 -2
pkgs/development/libraries/libtermkey/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 name = "libtermkey-${version}"; 5 5 6 - version = "0.17"; 6 + version = "0.18"; 7 7 8 8 src = fetchzip { 9 9 url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-${version}.tar.gz"; 10 - sha256 = "085mdshgqsn76gfnnzfns7awv6lals9mgv5a6bybd9f9aj7lvrm5"; 10 + sha256 = "0a0ih1a114phzmyq6jzgbp03x97463fwvrp1cgnl26awqw3f8sbf"; 11 11 }; 12 12 13 13 makeFlags = [ "PREFIX=$(out)" ]
+2 -2
pkgs/development/libraries/science/math/ipopt/default.nix
··· 1 1 { stdenv, fetchurl, unzip, openblas, gfortran }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "3.12.3"; 4 + version = "3.12.4"; 5 5 name = "ipopt-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "http://www.coin-or.org/download/source/Ipopt/Ipopt-${version}.zip"; 9 - sha256 = "0h8qx3hq2m21qrg4v3n26v2qbhl6saxrpa7rbhnmkkcfj5s942yr"; 9 + sha256 = "0hxmpi3zx5zgv2ijscdvc40xf88hx5if0d9sgch155z70g15wx0l"; 10 10 }; 11 11 12 12 preConfigure = ''
+11 -2
pkgs/development/mobile/androidenv/androidsdk.nix
··· 53 53 done 54 54 ''} 55 55 56 - # The android script used SWT and wants to dynamically load some GTK+ stuff. 57 - # The following wrapper ensures that they can be found: 56 + # The following scripts used SWT and wants to dynamically load some GTK+ stuff. 57 + # Creating these wrappers ensure that they can be found: 58 + 58 59 wrapProgram `pwd`/android \ 59 60 --prefix PATH : ${jdk}/bin \ 60 61 --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib 61 62 63 + wrapProgram `pwd`/uiautomatorviewer \ 64 + --prefix PATH : ${jdk}/bin \ 65 + --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib 66 + 67 + wrapProgram `pwd`/hierarchyviewer \ 68 + --prefix PATH : ${jdk}/bin \ 69 + --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib 70 + 62 71 # The emulators need additional libraries, which are dynamically loaded => let's wrap them 63 72 64 73 for i in emulator emulator-arm emulator-mips emulator-x86
+13 -4
pkgs/development/mobile/androidenv/build-tools.nix
··· 1 - {stdenv, stdenv_32bit, fetchurl, unzip, zlib_32bit}: 1 + {stdenv, stdenv_32bit, fetchurl, unzip, zlib_32bit, ncurses_32bit}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "23.0.1"; ··· 24 24 cd android-* 25 25 26 26 # Patch the interpreter 27 - for i in aapt aidl dexdump llvm-rs-cc 27 + for i in aapt aidl bcc_compat dexdump llvm-rs-cc 28 28 do 29 29 patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i 30 30 done ··· 36 36 done 37 37 38 38 # These binaries need to find libstdc++, libgcc_s and libraries in the current folder 39 - for i in lib/libbcc.so lib/libbcinfo.so lib/libclang.so llvm-rs-cc 39 + for i in lib/libbcc.so lib/libbcinfo.so lib/libclang.so aidl 40 40 do 41 41 patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i 42 42 done 43 + 44 + # Create link to make libtinfo.so.5 work 45 + ln -s ${ncurses_32bit}/lib/libncurses.so.5 `pwd`/lib/libtinfo.so.5 46 + 47 + # These binaries need to find libstdc++, libgcc_s, ncurses, and libraries in the current folder 48 + for i in bcc_compat llvm-rs-cc 49 + do 50 + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${ncurses_32bit}/lib:`pwd`/lib $i 51 + done 43 52 44 53 # These binaries also need zlib in addition to libstdc++ 45 - for i in zipalign 54 + for i in arm-linux-androideabi-ld i686-linux-android-ld mipsel-linux-android-ld split-select zipalign 46 55 do 47 56 patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i 48 57 patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i
+2
pkgs/development/mobile/androidenv/default.nix
··· 4 4 platformTools = import ./platform-tools.nix { 5 5 inherit (pkgs) stdenv fetchurl unzip; 6 6 stdenv_32bit = pkgs_i686.stdenv; 7 + zlib_32bit = pkgs_i686.zlib; 7 8 }; 8 9 9 10 buildTools = import ./build-tools.nix { 10 11 inherit (pkgs) stdenv fetchurl unzip; 11 12 stdenv_32bit = pkgs_i686.stdenv; 12 13 zlib_32bit = pkgs_i686.zlib; 14 + ncurses_32bit = pkgs_i686.ncurses; 13 15 }; 14 16 15 17 support = import ./support.nix {
+9 -3
pkgs/development/mobile/androidenv/platform-tools.nix
··· 1 - {stdenv, stdenv_32bit, fetchurl, unzip}: 1 + {stdenv, stdenv_32bit, zlib_32bit, fetchurl, unzip}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "23.0.1"; ··· 22 22 23 23 ${stdenv.lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") 24 24 '' 25 - for i in adb fastboot 25 + for i in adb dmtracedump fastboot hprof-conv sqlite3 26 26 do 27 27 patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i 28 - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib $i 28 + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i 29 + done 30 + 31 + for i in etc1tool 32 + do 33 + patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i 34 + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i 29 35 done 30 36 ''} 31 37
+3 -3
pkgs/development/ocaml-modules/cmdliner/default.nix
··· 2 2 3 3 let 4 4 pname = "cmdliner"; 5 - version = "0.9.7"; 5 + version = "0.9.8"; 6 6 ocaml_version = (builtins.parseDrvName ocaml.name).version; 7 7 in 8 8 9 - assert stdenv.lib.versionAtLeast ocaml_version "4.00"; 9 + assert stdenv.lib.versionAtLeast ocaml_version "3.12"; 10 10 11 11 stdenv.mkDerivation { 12 12 ··· 14 14 15 15 src = fetchurl { 16 16 url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz"; 17 - sha256 = "0ymzy1l6z85b6779lfxk179igfpf7rgfik70kr3c7lxmzwy8j6cw"; 17 + sha256 = "0hdxlkgiwjml9dpaa80282a8350if7mc1m6yz2mrd7gci3fszykx"; 18 18 }; 19 19 20 20 unpackCmd = "tar xjf $src";
+2
pkgs/development/ocaml-modules/eliom/default.nix
··· 3 3 ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp, 4 4 reactivedata, opam}: 5 5 6 + assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4"; 7 + 6 8 stdenv.mkDerivation rec 7 9 { 8 10 pname = "eliom";
+2 -2
pkgs/development/tools/continuous-integration/jenkins/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "jenkins-${version}"; 5 - version = "1.631"; 5 + version = "1.633"; 6 6 7 7 src = fetchurl { 8 8 url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; 9 - sha256 = "0bfh5gv3yk9awkzf660jxf9vzzdcr6qa9hl0hkivaj4gmp5f9sp8"; 9 + sha256 = "1s5jihq9shscsdazb1c393qab0djms4by5zn3ciylcgvif431n8m"; 10 10 }; 11 11 meta = with stdenv.lib; { 12 12 description = "An extendable open source continuous integration server";
+2 -2
pkgs/development/tools/heroku/default.nix
··· 2 2 3 3 with stdenv.lib; 4 4 stdenv.mkDerivation rec { 5 - version = "3.32.0"; 5 + version = "3.42.20"; 6 6 name = "heroku-${version}"; 7 7 8 8 meta = { ··· 14 14 15 15 src = fetchurl { 16 16 url = "https://s3.amazonaws.com/assets.heroku.com/heroku-client/heroku-client-${version}.tgz"; 17 - sha256 = "1596zmnlwshx15xiccfskm71syrlm87jf40y2x0y7wn0vfcyis5s"; 17 + sha256 = "1d472vm37lx5nyyaymjglavisb1mkyzbjglzjp5im7wjfifvsd29"; 18 18 }; 19 19 20 20 installPhase = ''
+11
pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff
··· 8 8 9 9 #### 10 10 11 + --- old/Makefile 2014-09-30 16:40:37.000000000 +0200 12 + +++ new/Makefile 2015-10-14 10:28:41.366815864 +0200 13 + @@ -52,7 +52,7 @@ 14 + install-bin: 15 + install -d -m 755 $(BINDIR) 16 + install $(BIN) $(BINDIR) 17 + - install $(TOOLS) $(BINDIR) 18 + + install $(TOOLS) $(BINDIR) || true 19 + 20 + uninstall: uninstall-lib uninstall-bin 21 +
+8 -6
pkgs/development/tools/ocaml/ocp-indent/default.nix
··· 1 - { stdenv, fetchurl, ocaml, findlib, ocpBuild, opam, cmdliner }: 1 + { stdenv, fetchzip, ocaml, findlib, ocpBuild, opam, cmdliner }: 2 2 3 3 let inherit (stdenv.lib) getVersion versionAtLeast; in 4 4 5 5 assert versionAtLeast (getVersion ocaml) "3.12.1"; 6 - assert versionAtLeast (getVersion ocpBuild) "1.99.3-beta"; 6 + assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; 7 7 8 8 stdenv.mkDerivation { 9 9 10 - name = "ocp-indent-1.4.2b"; 10 + name = "ocp-indent-1.5.2"; 11 11 12 - src = fetchurl { 13 - url = "https://github.com/OCamlPro/ocp-indent/archive/1.4.2b.tar.gz"; 14 - sha256 = "1p0n2zcl5kf543x2xlqrz1aa51f0dqal8l392sa41j6wx82j0gpb"; 12 + src = fetchzip { 13 + url = "https://github.com/OCamlPro/ocp-indent/archive/1.5.2.tar.gz"; 14 + sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz"; 15 15 }; 16 16 17 17 buildInputs = [ ocaml findlib ocpBuild opam cmdliner ]; 18 18 19 19 createFindlibDestdir = true; 20 + 21 + preConfigure = "patchShebangs ./install.sh"; 20 22 21 23 postInstall = '' 22 24 mv $out/lib/{ocp-indent,ocaml/${getVersion ocaml}/site-lib/}
+1 -1
pkgs/development/tools/ocaml/ocp-index/default.nix
··· 2 2 3 3 let inherit (stdenv.lib) getVersion versionAtLeast optional; in 4 4 5 - assert versionAtLeast (getVersion ocaml) "3.12.1"; 5 + assert versionAtLeast (getVersion ocaml) "4"; 6 6 assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; 7 7 assert versionAtLeast (getVersion ocpIndent) "1.4.2"; 8 8
+2 -2
pkgs/games/crawl/default.nix
··· 3 3 , tileMode ? true 4 4 }: 5 5 6 - let version = "0.16.1"; 6 + let version = "0.16.2"; 7 7 in 8 8 stdenv.mkDerivation rec { 9 9 name = "crawl-${version}" + (if tileMode then "-tiles" else ""); ··· 11 11 owner = "crawl-ref"; 12 12 repo = "crawl-ref"; 13 13 rev = version; 14 - sha256 = "0gciqaij05qr5bwkk5mblvk5k0p6bzjd58czk1b6x5xx5qcp6mmh"; 14 + sha256 = "08ns49if8941vsg6abywgw3mnjafgj5sga0cdvvvviq0qqzprhw9"; 15 15 }; 16 16 17 17 patches = [ ./crawl_purify.patch ];
+1 -1
pkgs/games/onscripter-en/default.nix
··· 26 26 27 27 meta = with stdenv.lib; { 28 28 description = "Japanese visual novel scripting engine"; 29 - homepage = "http://dev.haeleth.net/onscripter.shtml"; 29 + homepage = "http://unclemion.com/onscripter/"; 30 30 license = licenses.gpl2; 31 31 platforms = platforms.unix; 32 32 maintainers = with maintainers; [ abbradar ];
+3 -3
pkgs/games/scrolls/default.nix
··· 2 2 , mesa_glu, libX11, libXext, libXcursor, libpulseaudio 3 3 }: 4 4 stdenv.mkDerivation { 5 - name = "scrolls-2014-03-08"; 5 + name = "scrolls-2015-10-13"; 6 6 7 7 meta = { 8 8 description = "A strategy collectible card game"; ··· 16 16 17 17 src = fetchurl { 18 18 url = "http://download.scrolls.com/client/linux.tar.gz"; 19 - sha256 = "164d13ce5b81b215a58bae5a0d024b4cf6e32c986ca57a2c9d4e80326edb5004"; 19 + sha256 = "ead1fd14988aa07041fedfa7f845c756cd5077a5a402d85bfb749cb669ececec"; 20 20 }; 21 21 22 22 libPath = stdenv.lib.makeLibraryPath [ ··· 39 39 --set-rpath "$libPath" "$out/opt/Scrolls/Scrolls" 40 40 41 41 mkdir "$out/bin" 42 - ln -s "$out/opt/Scrolls/Scrolls" "$out/bin/Scrolls" 42 + ln -s "$out/opt/Scrolls/Scrolls" "$out/bin/Scrolls" 43 43 ''; 44 44 45 45 }
+4 -4
pkgs/misc/emulators/wine/versions.nix
··· 1 1 { 2 2 unstable = { 3 - wineVersion = "1.7.48"; 4 - wineSha256 = "13kcjirif57p8mg4yhzxf0hjpghlwc18iskz66dx94i0dvjmrxg3"; 3 + wineVersion = "1.7.52"; 4 + wineSha256 = "0jsm1p7zwhfb5fpp0xd39vnx9m98kqgfng1q9kdj70rm1hmb6wq7"; 5 5 geckoVersion = "2.36"; 6 6 geckoSha256 = "12hjks32yz9jq4w3xhk3y1dy2g3iakqxd7aldrdj51cqiz75g95g"; 7 7 gecko64Version = "2.36"; ··· 20 20 monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; 21 21 }; 22 22 staging = { 23 - version = "1.7.48"; 24 - sha256 = "06p1h92vaqlzk09aj4na6z7k3a81y9nw19rfg9q2szpcqjdd437w"; 23 + version = "1.7.52"; 24 + sha256 = "12r100gv34k44kia14wrfa42q0cjd8ir8vi8cx1b6hgnzw3x0gzk"; 25 25 }; 26 26 winetricks = { 27 27 version = "20150706";
+3 -3
pkgs/os-specific/linux/android-udev-rules/default.nix
··· 1 1 { stdenv, fetchgit }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "android-udev-rules-20150821"; 4 + name = "android-udev-rules-20150920"; 5 5 6 6 src = fetchgit { 7 7 url = "https://github.com/M0Rf30/android-udev-rules"; 8 - rev = "07ccded2a89c2bb6da984e596c015c5e9546e497"; 9 - sha256 = "953fc10bd0de46afef999dc1c1b20801b3d6e289af48d18fa96b1cac3ac54518"; 8 + rev = "d2e89a3f6deb096071b15e18b9e3608a02d62437"; 9 + sha256 = "bdc553a1eb4efc4e85866f61f50f2c2f7b8d09d2eb5122afad7c9b38e0fdc4fb"; 10 10 }; 11 11 12 12 installPhase = ''
+2 -2
pkgs/os-specific/linux/eudev/default.nix
··· 3 3 s = # Generated upstream information 4 4 rec { 5 5 baseName="eudev"; 6 - version = "3.1.2"; 6 + version = "3.1.5"; 7 7 name="${baseName}-${version}"; 8 8 url="http://dev.gentoo.org/~blueness/eudev/eudev-${version}.tar.gz"; 9 - sha256 = "0wq2w67ip957l5bi21jj3w2rv7s7klcrnlg6zpg1g0fxjfgbd4s3"; 9 + sha256 = "0akg9gcc3c2p56xbhlvbybqavcprly5q0bvk655zwl6d62j8an7p"; 10 10 }; 11 11 buildInputs = [ 12 12 glib pkgconfig gperf utillinux
+2 -2
pkgs/os-specific/linux/kernel/linux-3.12.nix
··· 1 1 { stdenv, fetchurl, perl, buildLinux, ... } @ args: 2 2 3 3 import ./generic.nix (args // rec { 4 - version = "3.12.48"; 4 + version = "3.12.49"; 5 5 extraMeta.branch = "3.12"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; 9 - sha256 = "1mvvpi2s8avg629y72miak8mdbv0mwb5dz0m7b48aah6dg866hiz"; 9 + sha256 = "1vl8ghwhrs2sxd7kgi95nqlmf5k8ps0kr2lyly40ys262174i8lg"; 10 10 }; 11 11 12 12 features.iwlwifi = true;
-1
pkgs/os-specific/linux/kernel/linux-4.1.nix
··· 2 2 3 3 import ./generic.nix (args // rec { 4 4 version = "4.1.10"; 5 - # Remember to update grsecurity! 6 5 extraMeta.branch = "4.1"; 7 6 8 7 src = fetchurl {
+1
pkgs/os-specific/linux/kernel/linux-4.2.nix
··· 2 2 3 3 import ./generic.nix (args // rec { 4 4 version = "4.2.3"; 5 + # Remember to update grsecurity! 5 6 extraMeta.branch = "4.2"; 6 7 7 8 src = fetchurl {
+3 -3
pkgs/os-specific/linux/kernel/patches.nix
··· 87 87 }; 88 88 89 89 grsecurity_unstable = grsecPatch 90 - { kversion = "4.1.7"; 91 - revision = "201509131604"; 90 + { kversion = "4.2.3"; 91 + revision = "201510130858"; 92 92 branch = "test"; 93 - sha256 = "1frfyi1pkiqc3awri3sr7xv41qxc8m2kb1yhfvj6xkrwb9li2bki"; 93 + sha256 = "0ndzcx9i94c065dlyvgykmin5bfkbydrv0kxxq52a4c9is6nlsrb"; 94 94 }; 95 95 96 96 grsec_fix_path =
+11
pkgs/os-specific/linux/powertop/auto-tune.patch
··· 1 + diff --git a/src/devices/devfreq.cpp b/src/devices/devfreq.cpp 2 + index d2e56e3..4de5c9b 100644 3 + --- a/src/devices/devfreq.cpp 4 + +++ b/src/devices/devfreq.cpp 5 + @@ -247,6 +247,7 @@ void create_all_devfreq_devices(void) 6 + fprintf(stderr, "Devfreq not enabled\n"); 7 + is_enabled = false; 8 + closedir(dir); 9 + + dir = NULL; 10 + return; 11 + }
+5 -1
pkgs/os-specific/linux/powertop/default.nix
··· 10 10 11 11 buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ]; 12 12 13 - patchPhase = '' 13 + # Fix --auto-tune bug: 14 + # https://lists.01.org/pipermail/powertop/2014-December/001727.html 15 + patches = [ ./auto-tune.patch ]; 16 + 17 + postPatch = '' 14 18 substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe" 15 19 ''; 16 20
+2
pkgs/os-specific/linux/syslinux/default.nix
··· 21 21 substituteInPlace gpxe/src/Makefile --replace /usr/bin/perl $(type -P perl) 22 22 ''; 23 23 24 + stripDebugList = "bin sbin share/syslinux/com32"; 25 + 24 26 makeFlags = [ 25 27 "BINDIR=$(out)/bin" 26 28 "SBINDIR=$(out)/sbin"
+2 -2
pkgs/servers/uwsgi/default.nix
··· 24 24 assert builtins.filter (x: lib.all (y: y.name != x) available) plugins == []; 25 25 26 26 stdenv.mkDerivation rec { 27 - name = "uwsgi-2.0.11.1"; 27 + name = "uwsgi-2.0.11.2"; 28 28 29 29 src = fetchurl { 30 30 url = "http://projects.unbit.it/downloads/${name}.tar.gz"; 31 - sha256 = "11v2j9n204hlvi1p1wp4r3nn22fqyd1qlbqcfqddi77sih9x79vm"; 31 + sha256 = "0p482j4yi48bmpgx1qpdfk86hjn4dswb137jbmigdlrd9l5rp20b"; 32 32 }; 33 33 34 34 nativeBuildInputs = [ python3 pkgconfig ];
+1 -1
pkgs/stdenv/default.nix
··· 54 54 if system == "armv7l-linux" then stdenvLinux else 55 55 if system == "mips64el-linux" then stdenvLinux else 56 56 if system == "powerpc-linux" then /* stdenvLinux */ stdenvNative else 57 - if system == "x86_64-darwin" then stdenvDarwin else 57 + if system == "x86_64-darwin" then stdenvDarwinPure else 58 58 if system == "x86_64-solaris" then stdenvNix else 59 59 if system == "i686-cygwin" then stdenvNative else 60 60 if system == "x86_64-cygwin" then stdenvNative else
+4 -2
pkgs/stdenv/pure-darwin/default.nix
··· 6 6 7 7 let 8 8 # libSystem and its transitive dependencies. Get used to this; it's a recurring theme in darwin land 9 - libSystemClosure = [ 9 + libSystemClosure = if system == "x86_64-darwin" 10 + then [ 10 11 "/usr/lib/libSystem.dylib" 11 12 "/usr/lib/libSystem.B.dylib" 12 13 "/usr/lib/libobjc.A.dylib" ··· 16 17 "/usr/lib/libc++.1.dylib" 17 18 "/usr/lib/libDiagnosticMessagesClient.dylib" 18 19 "/usr/lib/system" 19 - ]; 20 + ] 21 + else []; 20 22 21 23 fetch = { file, sha256 }: derivation ((import <nix/fetchurl.nix> { 22 24 url = "https://dl.dropboxusercontent.com/u/2857322/${file}";
+23
pkgs/tools/X11/dex/default.nix
··· 1 + { stdenv, fetchFromGitHub, python3 }: 2 + 3 + stdenv.mkDerivation rec { 4 + program = "dex"; 5 + name = "${program}-${version}"; 6 + version = "0.7"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "jceb"; 10 + repo = program; 11 + rev = "v${version}"; 12 + sha256 = "041ms01snalapapaniabr92d8iim1qrxian626nharjmp2rd69v5"; 13 + }; 14 + 15 + propagatedBuildInputs = [ python3 ]; 16 + makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ]; 17 + 18 + meta = { 19 + description = "A program to generate and execute DesktopEntry files of the Application type"; 20 + homepage = https://github.com/jceb/dex; 21 + platforms = stdenv.lib.platforms.linux; 22 + }; 23 + }
+10 -8
pkgs/tools/backup/borg/default.nix
··· 1 - { stdenv, fetchzip, python3Packages, openssl, acl }: 1 + { stdenv, fetchurl, python3Packages, openssl, acl, lz4 }: 2 2 3 3 python3Packages.buildPythonPackage rec { 4 - name = "borg-${version}"; 5 - version = "0.23.0"; 4 + name = "borgbackup-${version}"; 5 + version = "0.27.0"; 6 6 namePrefix = ""; 7 7 8 - src = fetchzip { 9 - name = "${name}-src"; 10 - url = "https://github.com/borgbackup/borg/archive/${version}.tar.gz"; 11 - sha256 = "1ns00bhrh4zm1s70mm32gnahj7yh4jdpkb8ziarhvcnknz7aga67"; 8 + src = fetchurl { 9 + url = "https://pypi.python.org/packages/source/b/borgbackup/borgbackup-${version}.tar.gz"; 10 + sha256 = "04iizidag4fwy6kx1747d633s1amr81slgk743qsfbwixaxfjq9b"; 12 11 }; 13 12 14 13 propagatedBuildInputs = with python3Packages; 15 - [ cython msgpack openssl acl llfuse tox detox ]; 14 + [ cython msgpack openssl acl llfuse tox detox lz4 setuptools_scm ]; 16 15 17 16 preConfigure = '' 18 17 export BORG_OPENSSL_PREFIX="${openssl}" 18 + export BORG_LZ4_PREFIX="${lz4}" 19 + # note: fix for this issue already upstream and probably in 0.27.1 (or whatever the next release is called) 20 + 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'))" 19 21 ''; 20 22 21 23 meta = with stdenv.lib; {
+20
pkgs/tools/filesystems/djmount/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, fuse }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "djmount-${version}"; 5 + version = "0.71"; 6 + src = fetchurl { 7 + url = "mirror://sourceforge/djmount/${version}/${name}.tar.gz"; 8 + sha256 = "0kqf0cy3h4cfiy5a2sigmisx0lvvsi1n0fbyb9ll5gacmy1b8nxa"; 9 + }; 10 + 11 + buildInputs = [ pkgconfig fuse]; 12 + 13 + meta = { 14 + homepage = http://djmount.sourceforge.net/; 15 + description = "UPnP AV client, mounts as a Linux filesystem the media content of compatible UPnP AV devices"; 16 + platforms = stdenv.lib.platforms.linux; 17 + maintainers = [ stdenv.lib.maintainers.jagajaga ]; 18 + license = stdenv.lib.licenses.gpl2; 19 + }; 20 + }
+3 -3
pkgs/tools/filesystems/yandex-disk/default.nix
··· 6 6 p = if stdenv.is64bit then { 7 7 arch = "x86_64"; 8 8 gcclib = "${stdenv.cc.cc}/lib64"; 9 - sha256 = "08mmjz061b0hrqp8zg31w089n5bk3sq4r3w84zr33d8pnvkgq2wk"; 9 + sha256 = "1dr976z0zgg5jk477hrnfmpcx4llh5xi1493k0pkp28m6ypbxy2q"; 10 10 } 11 11 else { 12 12 arch = "i386"; 13 13 gcclib = "${stdenv.cc.cc}/lib"; 14 - sha256 = "1zb6cnldd43nr4k2qg9hnrkgj0iik2gpxqrjypbhwv75hnvjma93"; 14 + sha256 = "01v0caf194y6yb0zc0d3ywx3y0rwb7sxkav4ickd4l968jpi8p91"; 15 15 }; 16 16 in 17 17 stdenv.mkDerivation rec { 18 18 19 19 name = "yandex-disk-${version}"; 20 - version = "0.1.5.905"; 20 + version = "0.1.5.940"; 21 21 22 22 src = fetchurl { 23 23 url = "http://repo.yandex.ru/yandex-disk/rpm/stable/${p.arch}/${name}-1.fedora.${p.arch}.rpm";
+2 -2
pkgs/tools/misc/less/default.nix
··· 1 1 { stdenv, fetchurl, ncurses }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "less-475"; 4 + name = "less-481"; 5 5 6 6 src = fetchurl { 7 7 url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz"; 8 - sha256 = "16703m6g5l97af3jwpypgac7gpmh3yjkdpqygf5a2scfip0hxm2g"; 8 + sha256 = "19fxj0h10y5bhr3a1xa7kqvnwl44db3sdypz8jxl1q79yln8z8rz"; 9 9 }; 10 10 11 11 # Look for ‘sysless’ in /etc.
+3 -3
pkgs/tools/misc/sdl-jstest/default.nix
··· 1 1 { fetchgit, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "sdl-jstest-20150625"; 4 + name = "sdl-jstest-20150806"; 5 5 src = fetchgit { 6 6 url = "https://github.com/Grumbel/sdl-jstest"; 7 - rev = "3f54b86ebe0d2f95e9c1d034bc4ed02d6d2b6409"; 8 - sha256 = "d33e0a2c66b551ecf333590f1a6e1730093af31cee1be8757748624d42e14df1"; 7 + rev = "7b792376178c9656c851ddf106c7d57b2495e8b9"; 8 + sha256 = "3aa9a002de9c9999bd7c6248b94148f15dba6106489e418b2a1a410324f75eb8"; 9 9 }; 10 10 11 11 buildInputs = [ SDL SDL2 ncurses ];
+2 -2
pkgs/tools/misc/tlp/default.nix
··· 1 1 { stdenv, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils, kmod 2 2 , enableRDW ? true, networkmanager }: 3 3 4 - let version = "0.7"; 4 + let version = "0.8"; 5 5 in stdenv.mkDerivation { 6 6 inherit enableRDW; 7 7 ··· 11 11 owner = "linrunner"; 12 12 repo = "TLP"; 13 13 rev = "${version}"; 14 - sha256 = "0vgx2jnk9gp41fw992l9dmv462jpcrnwqkzsa8z0lh0l77ax2jcg"; 14 + sha256 = "19fvk0xz6i2ryf41akk4jg1c4sb4rcyxdl9fr0w4lja7g76d5zww"; 15 15 }; 16 16 17 17 makeFlags = [ "DESTDIR=$(out)"
+3 -3
pkgs/tools/networking/netsniff-ng/default.nix
··· 2 2 , libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl 3 3 , pkgconfig, zlib }: 4 4 5 - let version = "0.5.9-98-gb3a9f17"; in 5 + let version = "0.5.9-106-g895377c"; in 6 6 stdenv.mkDerivation { 7 7 name = "netsniff-ng-${version}"; 8 8 ··· 10 10 src = fetchFromGitHub rec { 11 11 repo = "netsniff-ng"; 12 12 owner = repo; 13 - rev = "b3a9f17eb9c7a47e6c4aee3649179b2a54d17eca"; 14 - sha256 = "05nwi5ksijv42w7km08dhymiyyvcj43b5lrpdf9x5j725l79yqdb"; 13 + rev = "895377c6e96ec8ac853568eb275043741a7621cd"; 14 + sha256 = "092jzakldpqram26dccd5k5hv4jc396c3l7iaf9r3139dx83plag"; 15 15 }; 16 16 17 17 buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl
+1 -1
pkgs/tools/networking/openvpn/update-resolv-conf.nix
··· 1 1 { stdenv, fetchgit, makeWrapper, openresolv, coreutils }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "update-resolv-conf-2014-10-03"; 4 + name = "update-resolv-conf-20141003"; 5 5 6 6 src = fetchgit { 7 7 url = https://github.com/masterkorp/openvpn-update-resolv-conf/;
+2 -2
pkgs/tools/networking/ripmime/default.nix
··· 29 29 /* doConfigure should be removed if not needed */ 30 30 phaseNames = ["fixTarget" "doMakeInstall"]; 31 31 fixTarget = a.fullDepEntry ('' 32 - sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" 33 - mkdir -p "$out/bin" "$out/man/man1" 32 + sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" -e "s@man/man1@share/&@" 33 + mkdir -p "$out/bin" "$out/share/man/man1" 34 34 '') ["doUnpack" "minInit" "defEnsureDir"]; 35 35 36 36 meta = {
+1 -1
pkgs/tools/security/chkrootkit/default.nix
··· 4 4 name = "chkrootkit-0.50"; 5 5 6 6 src = fetchurl { 7 - url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz; 7 + url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit-0.50.tar.gz; 8 8 sha256 = "1ivclp7ixndacjmf7xgj8lfa6h7ihx44mzzsapqdvf0c5f9gqj4m"; 9 9 }; 10 10
+4 -3
pkgs/tools/security/eid-mw/default.nix
··· 1 1 { stdenv, fetchFromGitHub, autoreconfHook, gtk2, nssTools, pcsclite 2 2 , pkgconfig }: 3 3 4 - let version = "4.1.6"; in 4 + let version = "4.1.7"; in 5 5 stdenv.mkDerivation { 6 6 name = "eid-mw-${version}"; 7 7 8 8 src = fetchFromGitHub { 9 - sha256 = "006s7093wqmk36mrlakjv89bqddyh599rvmgv0zgsp15vf9160zi"; 9 + sha256 = "1m44s8mzz8gg97xdmbng40279hc4i7q7i7yd45hbagacny0wxi1k"; 10 10 rev = "v${version}"; 11 11 repo = "eid-mw"; 12 12 owner = "Fedict"; ··· 29 29 --replace "modutil" "${nssTools}/bin/modutil" 30 30 31 31 # Only provides a useless "about-eid-mw.desktop" that segfaults anyway: 32 - rm -rf $out/share/applications $out/bin/about-eid-mw 32 + rm -r $out/share/applications $out/bin/about-eid-mw 33 33 ''; 34 34 35 35 meta = with stdenv.lib; { 36 + inherit version; 36 37 description = "Belgian electronic identity card (eID) middleware"; 37 38 homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/; 38 39 license = licenses.lgpl3;
+2 -2
pkgs/tools/security/gnupg/21.nix
··· 13 13 assert x11Support -> pinentry != null; 14 14 15 15 stdenv.mkDerivation rec { 16 - name = "gnupg-2.1.8"; 16 + name = "gnupg-2.1.9"; 17 17 18 18 src = fetchurl { 19 19 url = "mirror://gnupg/gnupg/${name}.tar.bz2"; 20 - sha256 = "18w14xp0ynzzwpklyplkzbrncds1hly4k2gjx115swch8qgd1f53"; 20 + sha256 = "1dpp555glln6fldk72ad7lkrn8h3cr2bg714z5kfn2qrawx67dqw"; 21 21 }; 22 22 23 23 postPatch = stdenv.lib.optionalString stdenv.isLinux ''
+2 -2
pkgs/tools/system/dd_rescue/default.nix
··· 1 1 { stdenv, fetchurl, autoconf }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.98"; 4 + version = "1.99"; 5 5 name = "dd_rescue-${version}"; 6 6 7 7 src = fetchurl { 8 - sha256 = "14lf2pv52sr16977qjq1rsr42rfd3ywsss2xw9svgaa14g49ss6b"; 8 + sha256 = "0gkbwssn134fjyyvjvylyvassw4fwv5mbis9gcb969xdc64dfhg1"; 9 9 url="http://www.garloff.de/kurt/linux/ddrescue/${name}.tar.bz2"; 10 10 }; 11 11
+22 -7
pkgs/top-level/all-packages.nix
··· 602 602 603 603 bonnie = callPackage ../tools/filesystems/bonnie { }; 604 604 605 + djmount = callPackage ../tools/filesystems/djmount { }; 606 + 605 607 grc = callPackage ../tools/misc/grc { }; 606 608 607 609 lastpass-cli = callPackage ../tools/security/lastpass-cli { }; ··· 712 714 713 715 bochs = callPackage ../applications/virtualization/bochs { }; 714 716 715 - borg = callPackage ../tools/backup/borg { }; 717 + borgbackup = callPackage ../tools/backup/borg { }; 716 718 717 719 boomerang = callPackage ../development/tools/boomerang { }; 718 720 ··· 1228 1230 devilspie2 = callPackage ../applications/misc/devilspie2 { 1229 1231 gtk = gtk3; 1230 1232 }; 1233 + 1234 + dex = callPackage ../tools/X11/dex { }; 1231 1235 1232 1236 ddccontrol = callPackage ../tools/misc/ddccontrol { }; 1233 1237 ··· 7577 7581 paths = [ mesa_noglu mesa_glu ]; 7578 7582 }); 7579 7583 7584 + meterbridge = callPackage ../applications/audio/meterbridge { }; 7585 + 7580 7586 metaEnvironment = recurseIntoAttrs (let callPackage = newScope pkgs.metaEnvironment; in rec { 7581 7587 sdfLibrary = callPackage ../development/libraries/sdf-library { aterm = aterm28; }; 7582 7588 toolbuslib = callPackage ../development/libraries/toolbuslib { aterm = aterm28; inherit (windows) w32api; }; ··· 10447 10453 coreclr = callPackage ../development/compilers/coreclr { }; 10448 10454 10449 10455 corefonts = callPackage ../data/fonts/corefonts { }; 10450 - 10456 + 10451 10457 culmus = callPackage ../data/fonts/culmus { }; 10452 10458 10453 10459 wrapFonts = paths : (callPackage ../data/fonts/fontWrap { inherit paths; }); ··· 10531 10537 10532 10538 junicode = callPackage ../data/fonts/junicode { }; 10533 10539 10540 + kawkab-mono-font = callPackage ../data/fonts/kawkab-mono {}; 10541 + 10534 10542 kochi-substitute = callPackage ../data/fonts/kochi-substitute {}; 10535 10543 10536 10544 kochi-substitute-naga10 = callPackage ../data/fonts/kochi-substitute-naga10 {}; ··· 10582 10590 10583 10591 pecita = callPackage ../data/fonts/pecita {}; 10584 10592 10593 + paratype-pt-mono = callPackage ../data/fonts/paratype-pt/mono.nix {}; 10594 + paratype-pt-sans = callPackage ../data/fonts/paratype-pt/sans.nix {}; 10595 + paratype-pt-serif = callPackage ../data/fonts/paratype-pt/serif.nix {}; 10596 + 10585 10597 poly = callPackage ../data/fonts/poly { }; 10586 10598 10587 10599 posix_man_pages = callPackage ../data/documentation/man-pages-posix { }; ··· 11237 11249 loremIpsum = callPackage ../applications/editors/emacs-modes/lorem-ipsum { }; 11238 11250 11239 11251 magit = callPackage ../applications/editors/emacs-modes/magit { }; 11252 + 11253 + markdownMode = callPackage ../applications/editors/emacs-modes/markdown-mode { }; 11240 11254 11241 11255 maudeMode = callPackage ../applications/editors/emacs-modes/maude { }; 11242 11256 ··· 12386 12400 12387 12401 pencil = callPackage ../applications/graphics/pencil { }; 12388 12402 12389 - perseus = callPackage ../applications/science/math/perseus {}; 12403 + perseus = callPackage ../applications/science/math/perseus {}; 12390 12404 12391 12405 petrifoo = callPackage ../applications/audio/petrifoo { 12392 12406 inherit (gnome) libgnomecanvas; ··· 12425 12439 plugins = []; 12426 12440 }; 12427 12441 12428 - pidginlatex = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex { }; 12429 - 12430 - pidginlatexSF = pidginlatex; 12442 + pidginlatex = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex { 12443 + texLive = texlive.combined.scheme-basic; 12444 + }; 12431 12445 12432 12446 pidginmsnpecan = callPackage ../applications/networking/instant-messengers/pidgin-plugins/msn-pecan { }; 12433 12447 ··· 13074 13088 dconf = gnome3.dconf; 13075 13089 gtkvnc = gtkvnc.override { enableGTK3 = true; }; 13076 13090 spice_gtk = spice_gtk.override { enableGTK3 = true; }; 13091 + system-libvirt = libvirt; 13077 13092 }; 13078 13093 13079 13094 virtinst = callPackage ../applications/virtualization/virtinst {}; ··· 15193 15208 xlibs = xorg; # added 2015-09 15194 15209 youtube-dl = pythonPackages.youtube-dl; # added 2015-06-07 15195 15210 youtubeDL = youtube-dl; # added 2014-10-26 15211 + pidginlatexSF = pidginlatex; # added 2014-11-02 15196 15212 }; 15197 15213 15198 15214 tweakAlias = _n: alias: with lib; ··· 15201 15217 else alias; 15202 15218 15203 15219 in lib.mapAttrs tweakAlias aliases // self; in pkgs 15204 -
+53 -40
pkgs/top-level/perl-packages.nix
··· 2353 2353 buildInputs = [ PathClass TryTiny ]; 2354 2354 }; 2355 2355 2356 + CryptX = buildPerlModule rec { 2357 + name = "CryptX-0.025"; 2358 + src = fetchurl { 2359 + url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; 2360 + sha256 = "f8b7e3ec1713c8dfe3eef9d114f45f223b97e2340f81a20589b5605fa49cfe38"; 2361 + }; 2362 + propagatedBuildInputs = [ JSON ]; 2363 + meta = { 2364 + description = "Crypto toolkit"; 2365 + license = "perl"; 2366 + }; 2367 + }; 2368 + 2356 2369 CSSDOM = buildPerlPackage rec { 2357 2370 name = "CSS-DOM-0.15"; 2358 2371 src = fetchurl { ··· 10983 10996 propagatedBuildInputs = [ PerlCritic ]; 10984 10997 }; 10985 10998 10986 - TestPod = buildPerlPackage { 10987 - name = "Test-Pod-1.48"; 10999 + TestPod = buildPerlPackage rec { 11000 + name = "Test-Pod-1.51"; 10988 11001 src = fetchurl { 10989 - url = mirror://cpan/authors/id/D/DW/DWHEELER/Test-Pod-1.48.tar.gz; 10990 - sha256 = "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"; 11002 + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; 11003 + sha256 = "1yvy5mc4j3s2h4aizryvark2nm58g2c6zhw9mlx9wmsavz7d78f1"; 10991 11004 }; 10992 11005 meta = { 10993 11006 homepage = http://search.cpan.org/dist/Test-Pod/; ··· 11032 11045 }; 11033 11046 }; 11034 11047 11035 - TestRequires = buildPerlPackage { 11036 - name = "Test-Requires-0.06"; 11048 + TestRequires = buildPerlPackage rec { 11049 + name = "Test-Requires-0.10"; 11037 11050 src = fetchurl { 11038 - url = mirror://cpan/authors/id/T/TO/TOKUHIROM/Test-Requires-0.06.tar.gz; 11039 - sha256 = "1ksyg4npzx5faf2sj80rm74qjra4q679750vfqfvw3kg1d69wvwv"; 11051 + url = "mirror://cpan/authors/id/T/TO/TOKUHIROM/${name}.tar.gz"; 11052 + sha256 = "1d9f481lj12cw1ciil46xq9nq16p6a90nm7yrsalpf8asn8s6s17"; 11040 11053 }; 11041 11054 meta = { 11042 11055 description = "Checks to see if the module can be loaded"; ··· 11084 11097 propagatedBuildInputs = [ ProbePerl IPCRun3 ]; 11085 11098 }; 11086 11099 11087 - TestSharedFork = buildPerlPackage { 11088 - name = "Test-SharedFork-0.29"; 11100 + TestSharedFork = buildPerlPackage rec { 11101 + name = "Test-SharedFork-0.34"; 11089 11102 src = fetchurl { 11090 - url = mirror://cpan/authors/id/E/EX/EXODIST/Test-SharedFork-0.29.tar.gz; 11091 - sha256 = "63af7788cc35b9b7e6fa37c61220ca66abd6364d8bb90c20038e3d8241988a6e"; 11103 + url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz"; 11104 + sha256 = "1yq4xzify3wqdc07zq33lwgh9gywp3qd8w6wzwrllbjw0hhkm4s8"; 11092 11105 }; 11093 11106 buildInputs = [ TestRequires ]; 11094 11107 meta = { ··· 11100 11113 11101 11114 TestSimple = null; 11102 11115 11103 - TestSpec = buildPerlPackage { 11104 - name = "Test-Spec-0.47"; 11116 + TestSpec = buildPerlPackage rec { 11117 + name = "Test-Spec-0.51"; 11105 11118 src = fetchurl { 11106 - url = mirror://cpan/authors/id/P/PH/PHILIP/Test-Spec-0.47.tar.gz; 11107 - sha256 = "e425c0b9efa3c7e21496d31a607d072a63e31988c3d298a8c1fd7d145cc0681e"; 11119 + url = "mirror://cpan/authors/id/A/AN/ANDYJONES/${name}.tar.gz"; 11120 + sha256 = "0n2pzc32q4fr1b9w292ld9gh3yn3saxib3hxrjx6jvcmy3k9jkbi"; 11108 11121 }; 11109 11122 propagatedBuildInputs = [ PackageStash TestDeep TestTrap TieIxHash ]; 11110 11123 meta = { ··· 11122 11135 propagatedBuildInputs = [ HookLexWrap ]; 11123 11136 }; 11124 11137 11125 - TestSynopsis = buildPerlPackage { 11126 - name = "Test-Synopsis-0.10"; 11138 + TestSynopsis = buildPerlPackage rec { 11139 + name = "Test-Synopsis-0.11"; 11127 11140 src = fetchurl { 11128 - url = mirror://cpan/authors/id/Z/ZO/ZOFFIX/Test-Synopsis-0.10.tar.gz; 11129 - sha256 = "0gbk4d2vwlldsj5shmbdar3a29vgrw84ldsvm26mflkr5ji34adv"; 11141 + url = "mirror://cpan/authors/id/Z/ZO/ZOFFIX/${name}.tar.gz"; 11142 + sha256 = "1jn3vna5r5fa9nv33n1x0bmgc434sk0ggar3jm78xx0zzy5jnsxv"; 11130 11143 }; 11131 11144 meta = { 11132 11145 description = "Test your SYNOPSIS code"; ··· 11148 11161 }; 11149 11162 }; 11150 11163 11151 - TestTCP = buildPerlPackage { 11152 - name = "Test-TCP-1.18"; 11164 + TestTCP = buildPerlPackage rec { 11165 + name = "Test-TCP-2.14"; 11153 11166 src = fetchurl { 11154 - url = mirror://cpan/authors/id/T/TO/TOKUHIROM/Test-TCP-1.18.tar.gz; 11155 - sha256 = "0flm7x0z7amppi9y6s8mxm0pkrgfihfpfjs0w4i6s80jiss1gfld"; 11167 + url = "mirror://cpan/authors/id/T/TO/TOKUHIROM/${name}.tar.gz"; 11168 + sha256 = "00bxgm7qva4fd25phwl8fvv36h8h5k3jk89hz9302a288wv3ysmr"; 11156 11169 }; 11157 11170 propagatedBuildInputs = [ TestSharedFork ]; 11158 11171 meta = { ··· 11210 11223 }; 11211 11224 }; 11212 11225 11213 - TestWarnings = buildPerlPackage { 11214 - name = "Test-Warnings-0.016"; 11226 + TestWarnings = buildPerlPackage rec { 11227 + name = "Test-Warnings-0.021"; 11215 11228 src = fetchurl { 11216 - url = mirror://cpan/authors/id/E/ET/ETHER/Test-Warnings-0.016.tar.gz; 11217 - sha256 = "09ebc9afa29eb4d1d44fbd974dfcd52e0a2d9ce7ec3e3ee7602394157831aba9"; 11229 + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; 11230 + sha256 = "0i1crkhqfl5gs55i5nrvsw3xy946ajgnvp4gqrzvsn1x6cp1i2nr"; 11218 11231 }; 11219 - buildInputs = [ TestTester if_ ]; 11232 + buildInputs = [ TestTester if_ CPANMetaCheck ModuleMetadata ]; 11220 11233 meta = { 11221 11234 homepage = https://github.com/karenetheridge/Test-Warnings; 11222 11235 description = "Test for warnings and the lack of them"; ··· 11627 11640 }; 11628 11641 }; 11629 11642 11630 - TestTrap = buildPerlPackage { 11631 - name = "Test-Trap-0.2.2"; 11643 + TestTrap = buildPerlPackage rec { 11644 + name = "Test-Trap-0.3.2"; 11632 11645 src = fetchurl { 11633 - url = mirror://cpan/authors/id/E/EB/EBHANSSEN/Test-Trap-v0.2.2.tar.gz; 11646 + url = "mirror://cpan/authors/id/E/EB/EBHANSSEN/${name}.tar.gz"; 11634 11647 sha256 = "1ci5ag9pm850ww55n2929skvw3avy6xcrwmmi2yyn0hifxx9dybs"; 11635 11648 }; 11636 11649 buildInputs = [ TestTester ]; ··· 11657 11670 }; 11658 11671 }; 11659 11672 11660 - TestVersion = buildPerlPackage { 11661 - name = "Test-Version-1.002004"; 11673 + TestVersion = buildPerlPackage rec { 11674 + name = "Test-Version-2.03"; 11662 11675 src = fetchurl { 11663 - url = mirror://cpan/authors/id/X/XE/XENO/Test-Version-1.002004.tar.gz; 11664 - sha256 = "1lvg1p6i159ssk5br5qb3gvrzdg59wchd97z7j44arnlkhfvwhgv"; 11676 + url = "mirror://cpan/authors/id/P/PL/PLICEASE/${name}.tar.gz"; 11677 + sha256 = "02nbi7iqab1b0ngkiim9kbvnnr9bhi17bq54vm8hn9ridzgbj1vj"; 11665 11678 }; 11666 11679 buildInputs = [ TestException TestRequires TestTester ]; 11667 11680 propagatedBuildInputs = [ FileFindRulePerl ]; ··· 12320 12333 }; 12321 12334 12322 12335 Wx = buildPerlPackage rec { 12323 - name = "Wx-0.9923"; 12336 + name = "Wx-0.9927"; 12324 12337 src = fetchurl { 12325 12338 url = "mirror://cpan/authors/id/M/MD/MDOOTSON/${name}.tar.gz"; 12326 - sha256 = "1ja2fkz0xabafyc6gnp3nnwsbkkjsf44kq9x5zz6cb5fsp3p9sck"; 12339 + sha256 = "1fr23nn5cvzydl8nxfv0iljn10pvwbny0nvpjx31fn2md8dvsx51"; 12327 12340 }; 12328 12341 propagatedBuildInputs = [ ExtUtilsXSpp AlienWxWidgets ]; 12329 12342 # Testing requires an X server: ··· 12378 12391 }; 12379 12392 12380 12393 X11XCB = buildPerlPackage rec { 12381 - name = "X11-XCB-0.12"; 12394 + name = "X11-XCB-0.14"; 12382 12395 src = fetchurl { 12383 12396 url = "mirror://cpan/authors/id/M/MS/MSTPLBG/${name}.tar.gz"; 12384 - sha256 = "15jq55qcc27s5bn925pwry0vx2f4d42rlyz2hlfglnn2qnhsp37s"; 12397 + sha256 = "11ff0a4nqbdj68mxdvyqdqvi573ha10vy67wpi7mklpxvlm011bn"; 12385 12398 }; 12386 12399 AUTOMATED_TESTING = false; 12387 12400 buildInputs = [
+2 -2
pkgs/top-level/python-packages.nix
··· 1080 1080 }; 1081 1081 1082 1082 buttersink = buildPythonPackage rec { 1083 - name = "buttersink-0.6.6"; 1083 + name = "buttersink-0.6.7"; 1084 1084 1085 1085 src = pkgs.fetchurl { 1086 - sha256 = "1vi0pz8r3d17bsn5g7clkyph7sc0rjzbzqk6rwglaxcah7sfj2mj"; 1086 + sha256 = "1azd0g0p9qk9wp344jmvqp4wk5f3wpsz3lb750xvnmd7qzf6v377"; 1087 1087 url = "https://pypi.python.org/packages/source/b/buttersink/${name}.tar.gz"; 1088 1088 }; 1089 1089