ardour: merge upstream master

+1720 -564
+4 -2
default.nix
··· 1 - if ! builtins ? nixVersion || builtins.compareVersions "1.8" builtins.nixVersion == 1 then 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" 4 5 else 6
··· 1 + let requiredVersion = "1.10"; in 2 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" 6 7 else 8
+1
lib/maintainers.nix
··· 81 dezgeg = "Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>"; 82 dfoxfranke = "Daniel Fox Franke <dfoxfranke@gmail.com>"; 83 dmalikov = "Dmitry Malikov <malikov.d.y@gmail.com>"; 84 doublec = "Chris Double <chris.double@double.co.nz>"; 85 ebzzry = "Rommel Martinez <ebzzry@gmail.com>"; 86 ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>";
··· 81 dezgeg = "Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>"; 82 dfoxfranke = "Daniel Fox Franke <dfoxfranke@gmail.com>"; 83 dmalikov = "Dmitry Malikov <malikov.d.y@gmail.com>"; 84 + dochang = "Desmond O. Chang <dochang@gmail.com>"; 85 doublec = "Chris Double <chris.double@double.co.nz>"; 86 ebzzry = "Rommel Martinez <ebzzry@gmail.com>"; 87 ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>";
+65
lib/modules.nix
··· 469 mkBefore = mkOrder 500; 470 mkAfter = mkOrder 1500; 471 472 # Convenient property used to transfer all definitions and their 473 # properties from one option to another. This property is useful for 474 # renaming options, and also for including properties from another module ··· 497 498 /* Compatibility. */ 499 fixMergeModules = modules: args: evalModules { inherit modules args; check = false; }; 500 501 }
··· 469 mkBefore = mkOrder 500; 470 mkAfter = mkOrder 1500; 471 472 + 473 # Convenient property used to transfer all definitions and their 474 # properties from one option to another. This property is useful for 475 # renaming options, and also for including properties from another module ··· 498 499 /* Compatibility. */ 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 + }; 565 566 }
+4
nixos/modules/config/users-groups.nix
··· 550 551 }; 552 553 }
··· 550 551 }; 552 553 + imports = 554 + [ (mkAliasOptionModule [ "users" "extraUsers" ] [ "users" "users" ]) 555 + (mkAliasOptionModule [ "users" "extraGroups" ] [ "users" "groups" ]) 556 + ]; 557 }
+16
nixos/modules/installer/tools/nixos-generate-config.pl
··· 152 push @kernelModules, "wl"; 153 } 154 155 # Can't rely on $module here, since the module may not be loaded 156 # due to missing firmware. Ideally we would check modules.pcimap 157 # here.
··· 152 push @kernelModules, "wl"; 153 } 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 + 171 # Can't rely on $module here, since the module may not be loaded 172 # due to missing firmware. Ideally we would check modules.pcimap 173 # here.
+68 -150
nixos/modules/rename.nix
··· 1 - { config, lib, options, ... }: 2 3 with lib; 4 5 - let 6 7 - alias = from: to: rename { 8 - inherit from to; 9 - name = "Alias"; 10 - use = id; 11 - define = id; 12 - visible = true; 13 - }; 14 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" ] 102 103 - # smartd 104 - ++ obsolete [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ] 105 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" ] 116 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" ] 126 127 - # Tarsnap 128 - ++ obsolete [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ] 129 130 - # proxy 131 - ++ obsolete [ "nix" "proxy" ] [ "networking" "proxy" "default" ] 132 133 - # KDE 134 - ++ deprecated [ "kde" "extraPackages" ] [ "environment" "systemPackages" ] 135 - ++ obsolete [ "environment" "kdePackages" ] [ "environment" "systemPackages" ] 136 137 - # Multiple efi bootloaders now 138 - ++ obsolete [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ] 139 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" ] 143 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" ] 148 149 - ++ obsolete [ "services" "mysql55" ] [ "services" "mysql" ] 150 151 - ++ alias [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ] 152 153 - # XBMC 154 - ++ obsolete [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ] 155 - ++ obsolete [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ] 156 157 - # DNSCrypt-proxy 158 - ++ obsolete [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ] 159 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" ] 169 170 - )
··· 1 + { lib, ... }: 2 3 with lib; 4 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" ]) 12 13 + (mkRenamedOptionModule [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ]) 14 + (mkRenamedOptionModule [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ]) 15 + (mkRenamedOptionModule [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ]) 16 17 + # Old Grub-related options. 18 + (mkRenamedOptionModule [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ]) 19 + (mkRenamedOptionModule [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ]) 20 21 + # smartd 22 + (mkRenamedOptionModule [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ]) 23 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" ]) 34 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" ]) 44 45 + # Tarsnap 46 + (mkRenamedOptionModule [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ]) 47 48 + # proxy 49 + (mkRenamedOptionModule [ "nix" "proxy" ] [ "networking" "proxy" "default" ]) 50 51 + # KDE 52 + (mkRenamedOptionModule [ "kde" "extraPackages" ] [ "environment" "systemPackages" ]) 53 + (mkRenamedOptionModule [ "environment" "kdePackages" ] [ "environment" "systemPackages" ]) 54 55 + # Multiple efi bootloaders now 56 + (mkRenamedOptionModule [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ]) 57 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" ]) 61 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" ]) 66 67 + (mkRenamedOptionModule [ "services" "mysql55" ] [ "services" "mysql" ]) 68 69 + (mkAliasOptionModule [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ]) 70 71 + # XBMC 72 + (mkRenamedOptionModule [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]) 73 + (mkRenamedOptionModule [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]) 74 75 + # DNSCrypt-proxy 76 + (mkRenamedOptionModule [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ]) 77 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" ]) 86 87 + ]; 88 + }
+2 -1
nixos/modules/services/networking/copy-com.nix
··· 39 40 systemd.services."copy-com-${cfg.user}" = { 41 description = "Copy.com client"; 42 - after = [ "network.target" "local-fs.target" ]; 43 wantedBy = [ "multi-user.target" ]; 44 serviceConfig = { 45 ExecStart = "${pkgs.copy-com}/bin/CopyConsole ${if cfg.debug then "-consoleOutput -debugToConsole=dirwatch,path-watch,csm_path,csm -debug -console" else ""}";
··· 39 40 systemd.services."copy-com-${cfg.user}" = { 41 description = "Copy.com client"; 42 + wants = [ "network-online.target" ]; 43 + after = [ "network-online.target" "local-fs.target" ]; 44 wantedBy = [ "multi-user.target" ]; 45 serviceConfig = { 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 489 ]; 490 491 }
··· 488 489 ]; 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 + 502 }
+7
nixos/modules/system/boot/systemd.nix
··· 772 773 }; 774 775 }
··· 772 773 }; 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 + 782 }
+1 -1
nixos/modules/tasks/filesystems/nfs.nix
··· 90 serviceConfig.Type = "forking"; 91 serviceConfig.ExecStart = '' 92 @${pkgs.nfs-utils}/sbin/rpc.statd rpc.statd --no-notify \ 93 - ${if cfg.statdPort != null then "-p ${toString statdPort}" else ""} 94 ''; 95 serviceConfig.Restart = "always"; 96 };
··· 90 serviceConfig.Type = "forking"; 91 serviceConfig.ExecStart = '' 92 @${pkgs.nfs-utils}/sbin/rpc.statd rpc.statd --no-notify \ 93 + ${if cfg.statdPort != null then "-p ${toString cfg.statdPort}" else ""} 94 ''; 95 serviceConfig.Restart = "always"; 96 };
+1 -1
nixos/release-combined.nix
··· 51 (all nixos.tests.chromium) 52 (all nixos.tests.firefox) 53 (all nixos.tests.firewall) 54 - (all nixos.tests.gnome3) 55 (all nixos.tests.installer.lvm) 56 (all nixos.tests.installer.luksroot) 57 (all nixos.tests.installer.separateBoot)
··· 51 (all nixos.tests.chromium) 52 (all nixos.tests.firefox) 53 (all nixos.tests.firewall) 54 + nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux 55 (all nixos.tests.installer.lvm) 56 (all nixos.tests.installer.luksroot) 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 15 let 16 17 - version = "2015-10-08"; 18 19 # Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness: 20 neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation { ··· 58 name = "neovim-${version}"; 59 60 src = fetchFromGitHub { 61 - sha256 = "1kx4jsajl09klg0h0gzsv7mjz2kr09q4glznxwf8f5cncahgldfc"; 62 - rev = "57d3a2a52fea57874d08472d0f8ee8f1bcee87c1"; 63 repo = "neovim"; 64 owner = "neovim"; 65 }; ··· 103 '' + optionalString withPython '' 104 ln -s ${pythonEnv}/bin/python $out/bin/nvim-python 105 '' + optionalString withPython3 '' 106 - ln -s ${python3Env}/bin/python $out/bin/nvim-python3 107 '' + optionalString (withPython || withPython3) '' 108 wrapProgram $out/bin/nvim --add-flags "${ 109 (optionalString withPython
··· 14 15 let 16 17 + version = "2015-10-12"; 18 19 # Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness: 20 neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation { ··· 58 name = "neovim-${version}"; 59 60 src = fetchFromGitHub { 61 + sha256 = "1rlybdldz708pz7k0qs2rpm0cjk8ywwyj5s38hyq4mzsswqszdsc"; 62 + rev = "a3f048ee06dea15490d7b874d295c3fc850cdc51"; 63 repo = "neovim"; 64 owner = "neovim"; 65 }; ··· 103 '' + optionalString withPython '' 104 ln -s ${pythonEnv}/bin/python $out/bin/nvim-python 105 '' + optionalString withPython3 '' 106 + ln -s ${python3Env}/bin/python3 $out/bin/nvim-python3 107 '' + optionalString (withPython || withPython3) '' 108 wrapProgram $out/bin/nvim --add-flags "${ 109 (optionalString withPython
+2 -2
pkgs/applications/graphics/pencil/default.nix
··· 1 { stdenv, fetchurl, makeWrapper, xulrunner }: 2 3 stdenv.mkDerivation rec { 4 - version = "2.0.13"; 5 name = "pencil-${version}"; 6 7 src = fetchurl { 8 url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz"; 9 - sha256 = "150jsaq27n01l0vf10jiyrlfm0canqhphdxi42di96b9zsfkphpk"; 10 11 }; 12
··· 1 { stdenv, fetchurl, makeWrapper, xulrunner }: 2 3 stdenv.mkDerivation rec { 4 + version = "2.0.14"; 5 name = "pencil-${version}"; 6 7 src = fetchurl { 8 url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz"; 9 + sha256 = "59f46db863e6d95ee6987e600d658ad4b58b03b0744c5c6d17ce04f5ae92d260"; 10 11 }; 12
+2 -2
pkgs/applications/graphics/simple-scan/default.nix
··· 1 { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb 2 , libxml2, makeWrapper, packagekit, pkgconfig, saneBackends, systemd, vala }: 3 4 - let version = "3.18.0"; in 5 stdenv.mkDerivation rec { 6 name = "simple-scan-${version}"; 7 8 src = fetchurl { 9 - sha256 = "09qki4h1px65fxwpr7jppzqsi5cfcb8168p13blp3wcfizjgb9gl"; 10 url = "https://launchpad.net/simple-scan/3.18/${version}/+download/${name}.tar.xz"; 11 }; 12
··· 1 { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb 2 , libxml2, makeWrapper, packagekit, pkgconfig, saneBackends, systemd, vala }: 3 4 + let version = "3.18.1"; in 5 stdenv.mkDerivation rec { 6 name = "simple-scan-${version}"; 7 8 src = fetchurl { 9 + sha256 = "1i37j36kbn1h8yfzcvbis6f38xz2nj5512ls3gb0j5na0bvja2cw"; 10 url = "https://launchpad.net/simple-scan/3.18/${version}/+download/${name}.tar.xz"; 11 }; 12
+2 -2
pkgs/applications/graphics/yed/default.nix
··· 1 { stdenv, fetchurl, requireFile, makeWrapper, unzip, jre }: 2 3 stdenv.mkDerivation rec { 4 - name = "yEd-3.14.3"; 5 6 src = requireFile { 7 name = "${name}.zip"; 8 url = "https://www.yworks.com/en/products/yfiles/yed/"; 9 - sha256 = "0xgazknbz82sgk65hxmvbycl1vd25z80a7jgwjgw7syicrgmplcl"; 10 }; 11 12 nativeBuildInputs = [ unzip makeWrapper ];
··· 1 { stdenv, fetchurl, requireFile, makeWrapper, unzip, jre }: 2 3 stdenv.mkDerivation rec { 4 + name = "yEd-3.14.4"; 5 6 src = requireFile { 7 name = "${name}.zip"; 8 url = "https://www.yworks.com/en/products/yfiles/yed/"; 9 + sha256 = "0pm271ss6cq2s6cv9ww92haaq2abkjxd9dvc8d72h6af5awv8xy6"; 10 }; 11 12 nativeBuildInputs = [ unzip makeWrapper ];
+9 -7
pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix
··· 1 - { stdenv, fetchgit }: 2 3 - stdenv.mkDerivation { 4 - name = "urxvt-perls-2015-03-28"; 5 6 - src = fetchgit { 7 - url = "git://github.com/muennich/urxvt-perls"; 8 - rev = "e4dbde31edd19e2f4c2b6c91117ee91e2f83ddd7"; 9 - sha256 = "1f8a27c3d54377fdd4ab0be2f4efb8329d4900bb1c792b306dc23b5ee59260b1"; 10 }; 11 12 installPhase = ''
··· 1 + { stdenv, fetchFromGitHub }: 2 3 + stdenv.mkDerivation rec { 4 + name = "urxvt-perls-${version}"; 5 + version = "2.2"; 6 7 + src = fetchFromGitHub { 8 + owner = "muennich"; 9 + repo = "urxvt-perls"; 10 + rev = version; 11 + sha256 = "1cb0jbjmwfy2dlq2ny8wpc04k79jp3pz9qhbmgagsxs3sp1jg2hz"; 12 }; 13 14 installPhase = ''
+5 -1
pkgs/applications/misc/rxvt_unicode/default.nix
··· 1 - { stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl, 2 fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf, 3 unicode3Support }: 4 ··· 28 patches = [ 29 ./rxvt-unicode-9.06-font-width.patch 30 ./rxvt-unicode-256-color-resources.patch 31 ] 32 ++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch; 33
··· 1 + { stdenv, fetchurl, fetchpatch, perlSupport, libX11, libXt, libXft, ncurses, perl, 2 fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf, 3 unicode3Support }: 4 ··· 28 patches = [ 29 ./rxvt-unicode-9.06-font-width.patch 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 + }) 35 ] 36 ++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch; 37
+8 -8
pkgs/applications/networking/browsers/chromium/source/sources.nix
··· 7 sha256bin64 = "1ycdp37ikdc9w4hp9qgpzjp47zh37g01ax8x4ack202vrv0dxhsh"; 8 }; 9 beta = { 10 - version = "46.0.2490.52"; 11 - sha256 = "00sgb1pnp3fcijwdwpngnnddmn5nrbljsqz7f6dlnd63qfc91xjw"; 12 - sha256bin32 = "10jgcxc2zwffg8lxi55zl9apql6pyxh1g1n3z46gcb6j6am4y5m5"; 13 - sha256bin64 = "0i839ir4qcjl9llpqnwy793hvbdfh898x1izc5k93h7nm6i34ry9"; 14 }; 15 stable = { 16 - version = "45.0.2454.101"; 17 - sha256 = "1yw5xlgy5hd3iwcyf0sillq5p367fcpvp4mizpmv52cwmv52ss0v"; 18 - sha256bin32 = "1ll8lmkmx7v74naz1vcnrwk5ighh0skfcb66jkq4kgxrb5fjgwm5"; 19 - sha256bin64 = "1cwbd3n77dnbfnrfr8g0qng9xkgvz6y7mx489gpx1wsamgi42bzj"; 20 }; 21 }
··· 7 sha256bin64 = "1ycdp37ikdc9w4hp9qgpzjp47zh37g01ax8x4ack202vrv0dxhsh"; 8 }; 9 beta = { 10 + version = "46.0.2490.64"; 11 + sha256 = "1k2zir4rbs7hwdasbjpwyjr4ibis2vm6lx45bfm2r2f469mf3y2g"; 12 + sha256bin32 = "0j1xncws0r5z2rvvjsi0gxxmnslfcbiasaxr6bjhbxnzjv7chrd4"; 13 + sha256bin64 = "1m8vv3qh79an3719afz7n2ijqanf4cyxz2q4bzm512x52z5zipl7"; 14 }; 15 stable = { 16 + version = "46.0.2490.71"; 17 + sha256 = "1dnwhwvn39x8lm1jszjn8y7vy478zy75gm696rr2dvk4kqj1hjyd"; 18 + sha256bin32 = "1v1acg32dzmkydzy7sh6xjbzqar052iw8x8hql2yjz5kxznir4sf"; 19 + sha256bin64 = "15ladhxiym760mid5zq09vp73irzwlp31br9yqslzgv4460ma3np"; 20 }; 21 }
+3 -3
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
··· 36 37 let 38 # -> http://get.adobe.com/flashplayer/ 39 - version = "11.2.202.521"; 40 41 src = 42 if stdenv.system == "x86_64-linux" then ··· 47 else rec { 48 inherit version; 49 url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz"; 50 - sha256 = "1fckmapjy7rvy1g5jr71x69j7vviy9262wwpwk6cipym2fi7zvid"; 51 } 52 else if stdenv.system == "i686-linux" then 53 if debug then ··· 60 else rec { 61 inherit version; 62 url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz"; 63 - sha256 = "1483bi34ymchv1cqg57whxhlrhhvwhcw33zjgwzmy7bacxbkj9ia"; 64 } 65 else throw "Flash Player is not supported on this platform"; 66
··· 36 37 let 38 # -> http://get.adobe.com/flashplayer/ 39 + version = "11.2.202.535"; 40 41 src = 42 if stdenv.system == "x86_64-linux" then ··· 47 else rec { 48 inherit version; 49 url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz"; 50 + sha256 = "13fy842plbnv4w081sbhga0jrpbwz8yydg49c2v96l2marmzw9zp"; 51 } 52 else if stdenv.system == "i686-linux" then 53 if debug then ··· 60 else rec { 61 inherit version; 62 url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz"; 63 + sha256 = "0z99nz1k0cf86dgs367ddxfnf05m32psidpmdzi5qiqaj10h6j6s"; 64 } 65 else throw "Flash Player is not supported on this platform"; 66
+4 -4
pkgs/applications/networking/feedreaders/rsstail/default.nix
··· 1 { stdenv, fetchFromGitHub, cppcheck, libmrss }: 2 3 - let version = "2015-09-06"; in 4 stdenv.mkDerivation rec { 5 name = "rsstail-${version}"; 6 7 src = fetchFromGitHub { 8 - sha256 = "1rfzib5fzm0i8wf3njld1lvxgbci0hxxnvp2qx1k4bwpv744xkpx"; 9 - rev = "16636539e4cc75dafbfa7f05539769be7dad4b66"; 10 repo = "rsstail"; 11 owner = "flok99"; 12 }; ··· 15 ++ stdenv.lib.optional doCheck cppcheck; 16 17 postPatch = '' 18 - substituteInPlace Makefile --replace -liconv "" 19 ''; 20 21 makeFlags = "prefix=$(out)";
··· 1 { stdenv, fetchFromGitHub, cppcheck, libmrss }: 2 3 + let version = "2.1"; in 4 stdenv.mkDerivation rec { 5 name = "rsstail-${version}"; 6 7 src = fetchFromGitHub { 8 + sha256 = "12p69i3g1fwlw0bds9jqsdmzkid3k5a41w31d227i7vm12wcvjf6"; 9 + rev = "6f2436185372b3f945a4989406c4b6a934fe8a95"; 10 repo = "rsstail"; 11 owner = "flok99"; 12 }; ··· 15 ++ stdenv.lib.optional doCheck cppcheck; 16 17 postPatch = '' 18 + substituteInPlace Makefile --replace -liconv_hook "" 19 ''; 20 21 makeFlags = "prefix=$(out)";
+2 -2
pkgs/applications/networking/instant-messengers/baresip/default.nix
··· 4 , gsm, speex, portaudio, spandsp, libuuid 5 }: 6 stdenv.mkDerivation rec { 7 - version = "0.4.14"; 8 name = "baresip-${version}"; 9 src=fetchurl { 10 url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz"; 11 - sha256 = "19vn63j6dpybjy14mgnwf0yk2jbcbfdjs50whzwyrrkcv6ipj6hc"; 12 }; 13 buildInputs = [zlib openssl libre librem pkgconfig 14 cairo mpg123 gstreamer gst_ffmpeg gst_plugins_base gst_plugins_bad gst_plugins_good
··· 4 , gsm, speex, portaudio, spandsp, libuuid 5 }: 6 stdenv.mkDerivation rec { 7 + version = "0.4.15"; 8 name = "baresip-${version}"; 9 src=fetchurl { 10 url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz"; 11 + sha256 = "13712li6y3ikwzl17j46w25xyv3z98yqj7zpr3jifyvbna9ls5r3"; 12 }; 13 buildInputs = [zlib openssl libre librem pkgconfig 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 21 stdenv.mkDerivation rec { 22 name = "gajim-${version}"; 23 - version = "0.16.3"; 24 25 src = fetchurl { 26 url = "http://www.gajim.org/downloads/0.16/gajim-${version}.tar.bz2"; 27 - sha256 = "05a59hf9wna6n9fi0a4bhz1hifqj21bwb4ff9rd0my23rdwmij51"; 28 }; 29 30 patches = [
··· 20 21 stdenv.mkDerivation rec { 22 name = "gajim-${version}"; 23 + version = "0.16.4"; 24 25 src = fetchurl { 26 url = "http://www.gajim.org/downloads/0.16/gajim-${version}.tar.bz2"; 27 + sha256 = "0zyfs7q1qg8iqszr8l1gb18gqla6zrrfsgpmbxblpi9maqxas5i1"; 28 }; 29 30 patches = [
+3 -3
pkgs/applications/version-management/git-and-tools/git-crypt/default.nix
··· 18 make install PREFIX=$out 19 ''; 20 21 - meta = { 22 homepage = "https://www.agwa.name/projects/git-crypt"; 23 description = "transparent file encryption in git"; 24 longDescription = '' ··· 33 entire repository. 34 ''; 35 downloadPage = "https://github.com/AGWA/git-crypt/releases"; 36 - license = stdenv.lib.licenses.gpl3; 37 version = "0.5.0"; 38 - maintainers = [ "Desmond O. Chang <dochang@gmail.com>" ]; 39 }; 40 41 }
··· 18 make install PREFIX=$out 19 ''; 20 21 + meta = with stdenv.lib; { 22 homepage = "https://www.agwa.name/projects/git-crypt"; 23 description = "transparent file encryption in git"; 24 longDescription = '' ··· 33 entire repository. 34 ''; 35 downloadPage = "https://github.com/AGWA/git-crypt/releases"; 36 + license = licenses.gpl3; 37 version = "0.5.0"; 38 + maintainers = [ maintainers.dochang ]; 39 }; 40 41 }
+1
pkgs/applications/video/kodi/default.nix
··· 110 --prefix LD_LIBRARY_PATH ":" "${libvdpau}/lib" \ 111 --prefix LD_LIBRARY_PATH ":" "${libcec}/lib" \ 112 --prefix LD_LIBRARY_PATH ":" "${libcec_platform}/lib" \ 113 --prefix LD_LIBRARY_PATH ":" "${rtmpdump}/lib" 114 done 115 '';
··· 110 --prefix LD_LIBRARY_PATH ":" "${libvdpau}/lib" \ 111 --prefix LD_LIBRARY_PATH ":" "${libcec}/lib" \ 112 --prefix LD_LIBRARY_PATH ":" "${libcec_platform}/lib" \ 113 + --prefix LD_LIBRARY_PATH ":" "${libass}/lib" \ 114 --prefix LD_LIBRARY_PATH ":" "${rtmpdump}/lib" 115 done 116 '';
+5 -1
pkgs/applications/virtualization/virt-manager/default.nix
··· 1 { stdenv, fetchurl, pythonPackages, intltool, libxml2Python, curl, python 2 , wrapGAppsHook, virtinst, pyGtkGlade, pythonDBus, gnome_python, gtkvnc, vte 3 , gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib 4 - , avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3 5 }: 6 7 with stdenv.lib; ··· 39 wrapGAppsHook 40 dconf 41 ]; 42 43 configurePhase = '' 44 sed -i 's/from distutils.core/from setuptools/g' setup.py
··· 1 { stdenv, fetchurl, pythonPackages, intltool, libxml2Python, curl, python 2 , wrapGAppsHook, virtinst, pyGtkGlade, pythonDBus, gnome_python, gtkvnc, vte 3 , gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib 4 + , avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3, system-libvirt 5 }: 6 7 with stdenv.lib; ··· 39 wrapGAppsHook 40 dconf 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 + ''; 46 47 configurePhase = '' 48 sed -i 's/from distutils.core/from setuptools/g' setup.py
+1 -1
pkgs/build-support/grsecurity/default.nix
··· 33 34 grKernel = if cfg.stable 35 then mkKernel pkgs.linux_3_14 stable-patch 36 - else mkKernel pkgs.linux_4_1 test-patch; 37 38 ## -- grsecurity configuration --------------------------------------------- 39
··· 33 34 grKernel = if cfg.stable 35 then mkKernel pkgs.linux_3_14 stable-patch 36 + else mkKernel pkgs.linux_4_2 test-patch; 37 38 ## -- grsecurity configuration --------------------------------------------- 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 9 # Annoyingly, these files are updated without a change in URL. This means that 10 # builds will start failing every month or so, until the hashes are updated. 11 - version = "2015-10-09"; 12 in 13 stdenv.mkDerivation { 14 name = "geolite-legacy-${version}"; ··· 27 "0jdgfcy90mk7q25rhb8ymnddkskmp2cmyzmbjr3ij0zvbbpzxl4i"; 28 srcGeoIPASNum = fetchDB 29 "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" 30 - "05j2nygvb7xi4s636dik12vgrdi37q5fdv5k3liqgswf9z0msz81"; 31 srcGeoIPASNumv6 = fetchDB 32 "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" 33 - "17s7pcqmfd9xvq0hd7g7nh62sjayl24w04ifm39snrq2a32l667n"; 34 35 meta = with stdenv.lib; { 36 inherit version;
··· 8 9 # Annoyingly, these files are updated without a change in URL. This means that 10 # builds will start failing every month or so, until the hashes are updated. 11 + version = "2015-10-13"; 12 in 13 stdenv.mkDerivation { 14 name = "geolite-legacy-${version}"; ··· 27 "0jdgfcy90mk7q25rhb8ymnddkskmp2cmyzmbjr3ij0zvbbpzxl4i"; 28 srcGeoIPASNum = fetchDB 29 "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" 30 + "0j73lw2i6nnx1mgp1hspfa95zca5h0hqj12g16rln7pss868wnwi"; 31 srcGeoIPASNumv6 = fetchDB 32 "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" 33 + "1id4rkxp5pppr274y276w2zmx44dn0h44d4ax780g8cbhlc9n2br"; 34 35 meta = with stdenv.lib; { 36 inherit version;
+5 -4
pkgs/desktops/gnome-3/3.16/misc/geary/default.nix
··· 5 , gnome3, librsvg, gnome_doc_utils, webkitgtk }: 6 7 let 8 - majorVersion = "0.8"; 9 in 10 stdenv.mkDerivation rec { 11 - name = "geary-${majorVersion}.2"; 12 13 src = fetchurl { 14 url = "mirror://gnome/sources/geary/${majorVersion}/${name}.tar.xz"; 15 - sha256 = "3cfa626168935acf49c9415fad54c7849f17fd833026cfd3c224ba0fb892d641"; 16 }; 17 18 propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; ··· 39 40 enableParallelBuilding = true; 41 42 - patches = [ ./disable_valadoc.patch ]; 43 patchFlags = "-p0"; 44 45 meta = with stdenv.lib; {
··· 5 , gnome3, librsvg, gnome_doc_utils, webkitgtk }: 6 7 let 8 + majorVersion = "0.10"; 9 + minorVersion = "0"; 10 in 11 stdenv.mkDerivation rec { 12 + name = "geary-${majorVersion}.${minorVersion}"; 13 14 src = fetchurl { 15 url = "mirror://gnome/sources/geary/${majorVersion}/${name}.tar.xz"; 16 + sha256 = "46197a5a1b8b040adcee99082dbfd9fff9ca804e3bf0055a2e90b13214bdbca5"; 17 }; 18 19 propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; ··· 40 41 enableParallelBuilding = true; 42 43 + # patches = [ ./disable_valadoc.patch ]; 44 patchFlags = "-p0"; 45 46 meta = with stdenv.lib; {
+4 -5
pkgs/development/compilers/uhc/default.nix
··· 1 { stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages }: 2 3 - let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [shuffle hashable mtl network uhc-util uulib] ); 4 in stdenv.mkDerivation rec { 5 # Important: 6 # The commits "Fixate/tag v..." are the released versions. 7 # Ignore the "bumped version to ...." commits, they do not 8 # correspond to releases. 9 - version = "1.1.9.1.20150611"; 10 name = "uhc-${version}"; 11 12 src = fetchgit { 13 url = "https://github.com/UU-ComputerScience/uhc.git"; 14 - rev = "b80098e07d12900f098ea964b1d2b3f38e5c9900"; 15 - sha256 = "14qg1fd9pgbczcmn5ggkd9674qadx1izmz8363ps7c207dg94f9x"; 16 }; 17 18 postUnpack = "sourceRoot=\${sourceRoot}/EHC"; ··· 50 # On Darwin, the GNU libtool is used, which does not 51 # support the -static flag and thus breaks the build. 52 platforms = ["x86_64-linux"]; 53 - broken = true; # https://github.com/UU-ComputerScience/uhc/issues/60 54 }; 55 }
··· 1 { stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages }: 2 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 in stdenv.mkDerivation rec { 5 # Important: 6 # The commits "Fixate/tag v..." are the released versions. 7 # Ignore the "bumped version to ...." commits, they do not 8 # correspond to releases. 9 + version = "1.1.9.1"; 10 name = "uhc-${version}"; 11 12 src = fetchgit { 13 url = "https://github.com/UU-ComputerScience/uhc.git"; 14 + rev = "ce93d01486972c994ea2bbbd3d43859911120c39"; 15 + sha256 = "1y670sc6ky74l3msayzqjlkjv1kpv3g35pirsq3q79klzvnpyj2x"; 16 }; 17 18 postUnpack = "sourceRoot=\${sourceRoot}/EHC"; ··· 50 # On Darwin, the GNU libtool is used, which does not 51 # support the -static flag and thus breaks the build. 52 platforms = ["x86_64-linux"]; 53 }; 54 }
+2 -2
pkgs/development/haskell-modules/configuration-common.nix
··· 635 # Uses OpenGL in testing 636 caramia = dontCheck super.caramia; 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; }; 640 641 # Needs help finding LLVM. 642 spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm;
··· 635 # Uses OpenGL in testing 636 caramia = dontCheck super.caramia; 637 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 641 # Needs help finding LLVM. 642 spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm;
+3
pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
··· 91 # Needs hashable on pre 7.10.x compilers. 92 nats = addBuildDepend super.nats self.hashable; 93 94 }
··· 91 # Needs hashable on pre 7.10.x compilers. 92 nats = addBuildDepend super.nats self.hashable; 93 94 + # Needs void on pre 7.10.x compilers. 95 + conduit = addBuildDepend super.conduit self.void; 96 + 97 }
+3
pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
··· 73 # Newer versions require bytestring >=0.10. 74 tar = super.tar_0_4_1_0; 75 76 }
··· 73 # Newer versions require bytestring >=0.10. 74 tar = super.tar_0_4_1_0; 75 76 + # Needs void on pre 7.10.x compilers. 77 + conduit = addBuildDepend super.conduit self.void; 78 + 79 }
+3
pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
··· 73 # Newer versions require bytestring >=0.10. 74 tar = super.tar_0_4_1_0; 75 76 }
··· 73 # Newer versions require bytestring >=0.10. 74 tar = super.tar_0_4_1_0; 75 76 + # Needs void on pre 7.10.x compilers. 77 + conduit = addBuildDepend super.conduit self.void; 78 + 79 }
+3
pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
··· 82 # Newer versions require bytestring >=0.10. 83 tar = super.tar_0_4_1_0; 84 85 }
··· 82 # Newer versions require bytestring >=0.10. 83 tar = super.tar_0_4_1_0; 84 85 + # Needs void on pre 7.10.x compilers. 86 + conduit = addBuildDepend super.conduit self.void; 87 + 88 }
+3 -4
pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
··· 79 # Needs hashable on pre 7.10.x compilers. 80 nats = addBuildDepend super.nats self.hashable; 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 # https://github.com/magthe/sandi/issues/7 87 sandi = overrideCabal super.sandi (drv: { 88 postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal"; ··· 95 # bytestring and ghc-mod won't build without convertible 96 convertible = markBroken super.convertible; 97 ghc-mod = markBroken super.ghc-mod; 98 99 }
··· 79 # Needs hashable on pre 7.10.x compilers. 80 nats = addBuildDepend super.nats self.hashable; 81 82 # https://github.com/magthe/sandi/issues/7 83 sandi = overrideCabal super.sandi (drv: { 84 postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal"; ··· 91 # bytestring and ghc-mod won't build without convertible 92 convertible = markBroken super.convertible; 93 ghc-mod = markBroken super.ghc-mod; 94 + 95 + # Needs void on pre 7.10.x compilers. 96 + conduit = addBuildDepend super.conduit self.void; 97 98 }
+3
pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
··· 138 xss-sanitize_0_3_5_4 = addBuildDepend super.xss-sanitize_0_3_5_4 self.network; 139 xss-sanitize_0_3_5_5 = addBuildDepend super.xss-sanitize_0_3_5_5 self.network; 140 141 }
··· 138 xss-sanitize_0_3_5_4 = addBuildDepend super.xss-sanitize_0_3_5_4 self.network; 139 xss-sanitize_0_3_5_5 = addBuildDepend super.xss-sanitize_0_3_5_5 self.network; 140 141 + # Needs void on pre 7.10.x compilers. 142 + conduit = addBuildDepend super.conduit self.void; 143 + 144 }
+3
pkgs/development/haskell-modules/configuration-lts-0.0.nix
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 "Lastik" = dontDistribute super."Lastik"; 622 "Lattices" = dontDistribute super."Lattices"; ··· 3035 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3036 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3037 "finite-field" = dontDistribute super."finite-field"; 3038 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3039 "firstify" = dontDistribute super."firstify"; 3040 "fishfood" = dontDistribute super."fishfood"; ··· 7658 "timecalc" = dontDistribute super."timecalc"; 7659 "timeconsole" = dontDistribute super."timeconsole"; 7660 "timeit" = dontDistribute super."timeit"; 7661 "timeout" = dontDistribute super."timeout"; 7662 "timeout-control" = dontDistribute super."timeout-control"; 7663 "timeout-with-results" = dontDistribute super."timeout-with-results";
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 622 "Lastik" = dontDistribute super."Lastik"; 623 "Lattices" = dontDistribute super."Lattices"; ··· 3036 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3037 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3038 "finite-field" = dontDistribute super."finite-field"; 3039 + "first-and-last" = dontDistribute super."first-and-last"; 3040 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3041 "firstify" = dontDistribute super."firstify"; 3042 "fishfood" = dontDistribute super."fishfood"; ··· 7660 "timecalc" = dontDistribute super."timecalc"; 7661 "timeconsole" = dontDistribute super."timeconsole"; 7662 "timeit" = dontDistribute super."timeit"; 7663 + "timeless" = dontDistribute super."timeless"; 7664 "timeout" = dontDistribute super."timeout"; 7665 "timeout-control" = dontDistribute super."timeout-control"; 7666 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.1.nix
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 "Lastik" = dontDistribute super."Lastik"; 622 "Lattices" = dontDistribute super."Lattices"; ··· 3034 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3035 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3036 "finite-field" = dontDistribute super."finite-field"; 3037 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3038 "firstify" = dontDistribute super."firstify"; 3039 "fishfood" = dontDistribute super."fishfood"; ··· 7657 "timecalc" = dontDistribute super."timecalc"; 7658 "timeconsole" = dontDistribute super."timeconsole"; 7659 "timeit" = dontDistribute super."timeit"; 7660 "timeout" = dontDistribute super."timeout"; 7661 "timeout-control" = dontDistribute super."timeout-control"; 7662 "timeout-with-results" = dontDistribute super."timeout-with-results";
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 622 "Lastik" = dontDistribute super."Lastik"; 623 "Lattices" = dontDistribute super."Lattices"; ··· 3035 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3036 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3037 "finite-field" = dontDistribute super."finite-field"; 3038 + "first-and-last" = dontDistribute super."first-and-last"; 3039 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3040 "firstify" = dontDistribute super."firstify"; 3041 "fishfood" = dontDistribute super."fishfood"; ··· 7659 "timecalc" = dontDistribute super."timecalc"; 7660 "timeconsole" = dontDistribute super."timeconsole"; 7661 "timeit" = dontDistribute super."timeit"; 7662 + "timeless" = dontDistribute super."timeless"; 7663 "timeout" = dontDistribute super."timeout"; 7664 "timeout-control" = dontDistribute super."timeout-control"; 7665 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.2.nix
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 "Lastik" = dontDistribute super."Lastik"; 622 "Lattices" = dontDistribute super."Lattices"; ··· 3034 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3035 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3036 "finite-field" = dontDistribute super."finite-field"; 3037 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3038 "firstify" = dontDistribute super."firstify"; 3039 "fishfood" = dontDistribute super."fishfood"; ··· 7657 "timecalc" = dontDistribute super."timecalc"; 7658 "timeconsole" = dontDistribute super."timeconsole"; 7659 "timeit" = dontDistribute super."timeit"; 7660 "timeout" = dontDistribute super."timeout"; 7661 "timeout-control" = dontDistribute super."timeout-control"; 7662 "timeout-with-results" = dontDistribute super."timeout-with-results";
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 622 "Lastik" = dontDistribute super."Lastik"; 623 "Lattices" = dontDistribute super."Lattices"; ··· 3035 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3036 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3037 "finite-field" = dontDistribute super."finite-field"; 3038 + "first-and-last" = dontDistribute super."first-and-last"; 3039 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3040 "firstify" = dontDistribute super."firstify"; 3041 "fishfood" = dontDistribute super."fishfood"; ··· 7659 "timecalc" = dontDistribute super."timecalc"; 7660 "timeconsole" = dontDistribute super."timeconsole"; 7661 "timeit" = dontDistribute super."timeit"; 7662 + "timeless" = dontDistribute super."timeless"; 7663 "timeout" = dontDistribute super."timeout"; 7664 "timeout-control" = dontDistribute super."timeout-control"; 7665 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.3.nix
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 "Lastik" = dontDistribute super."Lastik"; 622 "Lattices" = dontDistribute super."Lattices"; ··· 3034 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3035 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3036 "finite-field" = dontDistribute super."finite-field"; 3037 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3038 "firstify" = dontDistribute super."firstify"; 3039 "fishfood" = dontDistribute super."fishfood"; ··· 7657 "timecalc" = dontDistribute super."timecalc"; 7658 "timeconsole" = dontDistribute super."timeconsole"; 7659 "timeit" = dontDistribute super."timeit"; 7660 "timeout" = dontDistribute super."timeout"; 7661 "timeout-control" = dontDistribute super."timeout-control"; 7662 "timeout-with-results" = dontDistribute super."timeout-with-results";
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 622 "Lastik" = dontDistribute super."Lastik"; 623 "Lattices" = dontDistribute super."Lattices"; ··· 3035 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3036 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3037 "finite-field" = dontDistribute super."finite-field"; 3038 + "first-and-last" = dontDistribute super."first-and-last"; 3039 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3040 "firstify" = dontDistribute super."firstify"; 3041 "fishfood" = dontDistribute super."fishfood"; ··· 7659 "timecalc" = dontDistribute super."timecalc"; 7660 "timeconsole" = dontDistribute super."timeconsole"; 7661 "timeit" = dontDistribute super."timeit"; 7662 + "timeless" = dontDistribute super."timeless"; 7663 "timeout" = dontDistribute super."timeout"; 7664 "timeout-control" = dontDistribute super."timeout-control"; 7665 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.4.nix
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 "Lastik" = dontDistribute super."Lastik"; 622 "Lattices" = dontDistribute super."Lattices"; ··· 3033 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3034 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3035 "finite-field" = dontDistribute super."finite-field"; 3036 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3037 "firstify" = dontDistribute super."firstify"; 3038 "fishfood" = dontDistribute super."fishfood"; ··· 7652 "timecalc" = dontDistribute super."timecalc"; 7653 "timeconsole" = dontDistribute super."timeconsole"; 7654 "timeit" = dontDistribute super."timeit"; 7655 "timeout" = dontDistribute super."timeout"; 7656 "timeout-control" = dontDistribute super."timeout-control"; 7657 "timeout-with-results" = dontDistribute super."timeout-with-results";
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 622 "Lastik" = dontDistribute super."Lastik"; 623 "Lattices" = dontDistribute super."Lattices"; ··· 3034 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3035 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3036 "finite-field" = dontDistribute super."finite-field"; 3037 + "first-and-last" = dontDistribute super."first-and-last"; 3038 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3039 "firstify" = dontDistribute super."firstify"; 3040 "fishfood" = dontDistribute super."fishfood"; ··· 7654 "timecalc" = dontDistribute super."timecalc"; 7655 "timeconsole" = dontDistribute super."timeconsole"; 7656 "timeit" = dontDistribute super."timeit"; 7657 + "timeless" = dontDistribute super."timeless"; 7658 "timeout" = dontDistribute super."timeout"; 7659 "timeout-control" = dontDistribute super."timeout-control"; 7660 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.5.nix
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 "Lastik" = dontDistribute super."Lastik"; 622 "Lattices" = dontDistribute super."Lattices"; ··· 3033 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3034 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3035 "finite-field" = dontDistribute super."finite-field"; 3036 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3037 "firstify" = dontDistribute super."firstify"; 3038 "fishfood" = dontDistribute super."fishfood"; ··· 7652 "timecalc" = dontDistribute super."timecalc"; 7653 "timeconsole" = dontDistribute super."timeconsole"; 7654 "timeit" = dontDistribute super."timeit"; 7655 "timeout" = dontDistribute super."timeout"; 7656 "timeout-control" = dontDistribute super."timeout-control"; 7657 "timeout-with-results" = dontDistribute super."timeout-with-results";
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 622 "Lastik" = dontDistribute super."Lastik"; 623 "Lattices" = dontDistribute super."Lattices"; ··· 3034 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3035 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3036 "finite-field" = dontDistribute super."finite-field"; 3037 + "first-and-last" = dontDistribute super."first-and-last"; 3038 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3039 "firstify" = dontDistribute super."firstify"; 3040 "fishfood" = dontDistribute super."fishfood"; ··· 7654 "timecalc" = dontDistribute super."timecalc"; 7655 "timeconsole" = dontDistribute super."timeconsole"; 7656 "timeit" = dontDistribute super."timeit"; 7657 + "timeless" = dontDistribute super."timeless"; 7658 "timeout" = dontDistribute super."timeout"; 7659 "timeout-control" = dontDistribute super."timeout-control"; 7660 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.6.nix
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 "Lastik" = dontDistribute super."Lastik"; 622 "Lattices" = dontDistribute super."Lattices"; ··· 3030 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3031 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3032 "finite-field" = dontDistribute super."finite-field"; 3033 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3034 "firstify" = dontDistribute super."firstify"; 3035 "fishfood" = dontDistribute super."fishfood"; ··· 7646 "timecalc" = dontDistribute super."timecalc"; 7647 "timeconsole" = dontDistribute super."timeconsole"; 7648 "timeit" = dontDistribute super."timeit"; 7649 "timeout" = dontDistribute super."timeout"; 7650 "timeout-control" = dontDistribute super."timeout-control"; 7651 "timeout-with-results" = dontDistribute super."timeout-with-results";
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 622 "Lastik" = dontDistribute super."Lastik"; 623 "Lattices" = dontDistribute super."Lattices"; ··· 3031 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3032 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3033 "finite-field" = dontDistribute super."finite-field"; 3034 + "first-and-last" = dontDistribute super."first-and-last"; 3035 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3036 "firstify" = dontDistribute super."firstify"; 3037 "fishfood" = dontDistribute super."fishfood"; ··· 7648 "timecalc" = dontDistribute super."timecalc"; 7649 "timeconsole" = dontDistribute super."timeconsole"; 7650 "timeit" = dontDistribute super."timeit"; 7651 + "timeless" = dontDistribute super."timeless"; 7652 "timeout" = dontDistribute super."timeout"; 7653 "timeout-control" = dontDistribute super."timeout-control"; 7654 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-0.7.nix
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 621 "Lastik" = dontDistribute super."Lastik"; 622 "Lattices" = dontDistribute super."Lattices"; ··· 3030 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3031 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3032 "finite-field" = dontDistribute super."finite-field"; 3033 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3034 "firstify" = dontDistribute super."firstify"; 3035 "fishfood" = dontDistribute super."fishfood"; ··· 7646 "timecalc" = dontDistribute super."timecalc"; 7647 "timeconsole" = dontDistribute super."timeconsole"; 7648 "timeit" = dontDistribute super."timeit"; 7649 "timeout" = dontDistribute super."timeout"; 7650 "timeout-control" = dontDistribute super."timeout-control"; 7651 "timeout-with-results" = dontDistribute super."timeout-with-results";
··· 617 "LambdaNet" = dontDistribute super."LambdaNet"; 618 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 619 "LambdaShell" = dontDistribute super."LambdaShell"; 620 + "Lambdaya" = dontDistribute super."Lambdaya"; 621 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 622 "Lastik" = dontDistribute super."Lastik"; 623 "Lattices" = dontDistribute super."Lattices"; ··· 3031 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3032 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3033 "finite-field" = dontDistribute super."finite-field"; 3034 + "first-and-last" = dontDistribute super."first-and-last"; 3035 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3036 "firstify" = dontDistribute super."firstify"; 3037 "fishfood" = dontDistribute super."fishfood"; ··· 7648 "timecalc" = dontDistribute super."timecalc"; 7649 "timeconsole" = dontDistribute super."timeconsole"; 7650 "timeit" = dontDistribute super."timeit"; 7651 + "timeless" = dontDistribute super."timeless"; 7652 "timeout" = dontDistribute super."timeout"; 7653 "timeout-control" = dontDistribute super."timeout-control"; 7654 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-1.0.nix
··· 614 "LambdaNet" = dontDistribute super."LambdaNet"; 615 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 616 "LambdaShell" = dontDistribute super."LambdaShell"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3020 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3021 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3022 "finite-field" = dontDistribute super."finite-field"; 3023 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3024 "firstify" = dontDistribute super."firstify"; 3025 "fishfood" = dontDistribute super."fishfood"; ··· 7630 "timecalc" = dontDistribute super."timecalc"; 7631 "timeconsole" = dontDistribute super."timeconsole"; 7632 "timeit" = dontDistribute super."timeit"; 7633 "timeout" = dontDistribute super."timeout"; 7634 "timeout-control" = dontDistribute super."timeout-control"; 7635 "timeout-with-results" = dontDistribute super."timeout-with-results";
··· 614 "LambdaNet" = dontDistribute super."LambdaNet"; 615 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 616 "LambdaShell" = dontDistribute super."LambdaShell"; 617 + "Lambdaya" = dontDistribute super."Lambdaya"; 618 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 619 "Lastik" = dontDistribute super."Lastik"; 620 "Lattices" = dontDistribute super."Lattices"; ··· 3021 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3022 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3023 "finite-field" = dontDistribute super."finite-field"; 3024 + "first-and-last" = dontDistribute super."first-and-last"; 3025 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3026 "firstify" = dontDistribute super."firstify"; 3027 "fishfood" = dontDistribute super."fishfood"; ··· 7632 "timecalc" = dontDistribute super."timecalc"; 7633 "timeconsole" = dontDistribute super."timeconsole"; 7634 "timeit" = dontDistribute super."timeit"; 7635 + "timeless" = dontDistribute super."timeless"; 7636 "timeout" = dontDistribute super."timeout"; 7637 "timeout-control" = dontDistribute super."timeout-control"; 7638 "timeout-with-results" = dontDistribute super."timeout-with-results";
+3
pkgs/development/haskell-modules/configuration-lts-1.1.nix
··· 614 "LambdaNet" = dontDistribute super."LambdaNet"; 615 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 616 "LambdaShell" = dontDistribute super."LambdaShell"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3014 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3015 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3016 "finite-field" = dontDistribute super."finite-field"; 3017 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3018 "firstify" = dontDistribute super."firstify"; 3019 "fishfood" = dontDistribute super."fishfood"; ··· 7612 "timecalc" = dontDistribute super."timecalc"; 7613 "timeconsole" = dontDistribute super."timeconsole"; 7614 "timeit" = dontDistribute super."timeit"; 7615 "timeout" = dontDistribute super."timeout"; 7616 "timeout-control" = dontDistribute super."timeout-control"; 7617 "timeout-with-results" = dontDistribute super."timeout-with-results";
··· 614 "LambdaNet" = dontDistribute super."LambdaNet"; 615 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 616 "LambdaShell" = dontDistribute super."LambdaShell"; 617 + "Lambdaya" = dontDistribute super."Lambdaya"; 618 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 619 "Lastik" = dontDistribute super."Lastik"; 620 "Lattices" = dontDistribute super."Lattices"; ··· 3015 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3016 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3017 "finite-field" = dontDistribute super."finite-field"; 3018 + "first-and-last" = dontDistribute super."first-and-last"; 3019 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3020 "firstify" = dontDistribute super."firstify"; 3021 "fishfood" = dontDistribute super."fishfood"; ··· 7614 "timecalc" = dontDistribute super."timecalc"; 7615 "timeconsole" = dontDistribute super."timeconsole"; 7616 "timeit" = dontDistribute super."timeit"; 7617 + "timeless" = dontDistribute super."timeless"; 7618 "timeout" = dontDistribute super."timeout"; 7619 "timeout-control" = dontDistribute super."timeout-control"; 7620 "timeout-with-results" = dontDistribute super."timeout-with-results";
+6
pkgs/development/haskell-modules/configuration-lts-1.10.nix
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 3005 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3006 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3007 "finite-field" = dontDistribute super."finite-field"; 3008 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3009 "firstify" = dontDistribute super."firstify"; 3010 "fishfood" = dontDistribute super."fishfood"; ··· 5367 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5368 "monad-open" = dontDistribute super."monad-open"; 5369 "monad-ox" = dontDistribute super."monad-ox"; 5370 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5371 "monad-param" = dontDistribute super."monad-param"; 5372 "monad-peel" = dontDistribute super."monad-peel"; ··· 7574 "timecalc" = dontDistribute super."timecalc"; 7575 "timeconsole" = dontDistribute super."timeconsole"; 7576 "timeit" = dontDistribute super."timeit"; 7577 "timeout" = dontDistribute super."timeout"; 7578 "timeout-control" = dontDistribute super."timeout-control"; 7579 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7839 "unix-memory" = dontDistribute super."unix-memory"; 7840 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7841 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7842 "unlambda" = dontDistribute super."unlambda"; 7843 "unlit" = dontDistribute super."unlit"; 7844 "unm-hip" = dontDistribute super."unm-hip"; ··· 7969 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7970 "vector-static" = dontDistribute super."vector-static"; 7971 "vector-strategies" = dontDistribute super."vector-strategies"; 7972 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7973 "verbosity" = dontDistribute super."verbosity"; 7974 "verilog" = dontDistribute super."verilog";
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3006 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3007 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3008 "finite-field" = dontDistribute super."finite-field"; 3009 + "first-and-last" = dontDistribute super."first-and-last"; 3010 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3011 "firstify" = dontDistribute super."firstify"; 3012 "fishfood" = dontDistribute super."fishfood"; ··· 5369 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5370 "monad-open" = dontDistribute super."monad-open"; 5371 "monad-ox" = dontDistribute super."monad-ox"; 5372 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5373 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5374 "monad-param" = dontDistribute super."monad-param"; 5375 "monad-peel" = dontDistribute super."monad-peel"; ··· 7577 "timecalc" = dontDistribute super."timecalc"; 7578 "timeconsole" = dontDistribute super."timeconsole"; 7579 "timeit" = dontDistribute super."timeit"; 7580 + "timeless" = dontDistribute super."timeless"; 7581 "timeout" = dontDistribute super."timeout"; 7582 "timeout-control" = dontDistribute super."timeout-control"; 7583 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7843 "unix-memory" = dontDistribute super."unix-memory"; 7844 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7845 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7846 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7847 "unlambda" = dontDistribute super."unlambda"; 7848 "unlit" = dontDistribute super."unlit"; 7849 "unm-hip" = dontDistribute super."unm-hip"; ··· 7974 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7975 "vector-static" = dontDistribute super."vector-static"; 7976 "vector-strategies" = dontDistribute super."vector-strategies"; 7977 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7978 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7979 "verbosity" = dontDistribute super."verbosity"; 7980 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-1.11.nix
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 3005 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3006 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3007 "finite-field" = dontDistribute super."finite-field"; 3008 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3009 "firstify" = dontDistribute super."firstify"; 3010 "fishfood" = dontDistribute super."fishfood"; ··· 5363 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5364 "monad-open" = dontDistribute super."monad-open"; 5365 "monad-ox" = dontDistribute super."monad-ox"; 5366 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5367 "monad-param" = dontDistribute super."monad-param"; 5368 "monad-peel" = dontDistribute super."monad-peel"; ··· 7568 "timecalc" = dontDistribute super."timecalc"; 7569 "timeconsole" = dontDistribute super."timeconsole"; 7570 "timeit" = dontDistribute super."timeit"; 7571 "timeout" = dontDistribute super."timeout"; 7572 "timeout-control" = dontDistribute super."timeout-control"; 7573 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7833 "unix-memory" = dontDistribute super."unix-memory"; 7834 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7835 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7836 "unlambda" = dontDistribute super."unlambda"; 7837 "unlit" = dontDistribute super."unlit"; 7838 "unm-hip" = dontDistribute super."unm-hip"; ··· 7963 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7964 "vector-static" = dontDistribute super."vector-static"; 7965 "vector-strategies" = dontDistribute super."vector-strategies"; 7966 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7967 "verbosity" = dontDistribute super."verbosity"; 7968 "verilog" = dontDistribute super."verilog";
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3006 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3007 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3008 "finite-field" = dontDistribute super."finite-field"; 3009 + "first-and-last" = dontDistribute super."first-and-last"; 3010 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3011 "firstify" = dontDistribute super."firstify"; 3012 "fishfood" = dontDistribute super."fishfood"; ··· 5365 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5366 "monad-open" = dontDistribute super."monad-open"; 5367 "monad-ox" = dontDistribute super."monad-ox"; 5368 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5369 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5370 "monad-param" = dontDistribute super."monad-param"; 5371 "monad-peel" = dontDistribute super."monad-peel"; ··· 7571 "timecalc" = dontDistribute super."timecalc"; 7572 "timeconsole" = dontDistribute super."timeconsole"; 7573 "timeit" = dontDistribute super."timeit"; 7574 + "timeless" = dontDistribute super."timeless"; 7575 "timeout" = dontDistribute super."timeout"; 7576 "timeout-control" = dontDistribute super."timeout-control"; 7577 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7837 "unix-memory" = dontDistribute super."unix-memory"; 7838 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7839 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7840 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7841 "unlambda" = dontDistribute super."unlambda"; 7842 "unlit" = dontDistribute super."unlit"; 7843 "unm-hip" = dontDistribute super."unm-hip"; ··· 7968 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7969 "vector-static" = dontDistribute super."vector-static"; 7970 "vector-strategies" = dontDistribute super."vector-strategies"; 7971 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7972 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7973 "verbosity" = dontDistribute super."verbosity"; 7974 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-1.12.nix
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 3005 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3006 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3007 "finite-field" = dontDistribute super."finite-field"; 3008 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3009 "firstify" = dontDistribute super."firstify"; 3010 "fishfood" = dontDistribute super."fishfood"; ··· 5362 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5363 "monad-open" = dontDistribute super."monad-open"; 5364 "monad-ox" = dontDistribute super."monad-ox"; 5365 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5366 "monad-param" = dontDistribute super."monad-param"; 5367 "monad-peel" = dontDistribute super."monad-peel"; ··· 7565 "timecalc" = dontDistribute super."timecalc"; 7566 "timeconsole" = dontDistribute super."timeconsole"; 7567 "timeit" = dontDistribute super."timeit"; 7568 "timeout" = dontDistribute super."timeout"; 7569 "timeout-control" = dontDistribute super."timeout-control"; 7570 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7830 "unix-memory" = dontDistribute super."unix-memory"; 7831 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7832 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7833 "unlambda" = dontDistribute super."unlambda"; 7834 "unlit" = dontDistribute super."unlit"; 7835 "unm-hip" = dontDistribute super."unm-hip"; ··· 7960 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7961 "vector-static" = dontDistribute super."vector-static"; 7962 "vector-strategies" = dontDistribute super."vector-strategies"; 7963 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7964 "verbosity" = dontDistribute super."verbosity"; 7965 "verilog" = dontDistribute super."verilog";
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3006 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3007 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3008 "finite-field" = dontDistribute super."finite-field"; 3009 + "first-and-last" = dontDistribute super."first-and-last"; 3010 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3011 "firstify" = dontDistribute super."firstify"; 3012 "fishfood" = dontDistribute super."fishfood"; ··· 5364 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5365 "monad-open" = dontDistribute super."monad-open"; 5366 "monad-ox" = dontDistribute super."monad-ox"; 5367 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5368 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5369 "monad-param" = dontDistribute super."monad-param"; 5370 "monad-peel" = dontDistribute super."monad-peel"; ··· 7568 "timecalc" = dontDistribute super."timecalc"; 7569 "timeconsole" = dontDistribute super."timeconsole"; 7570 "timeit" = dontDistribute super."timeit"; 7571 + "timeless" = dontDistribute super."timeless"; 7572 "timeout" = dontDistribute super."timeout"; 7573 "timeout-control" = dontDistribute super."timeout-control"; 7574 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7834 "unix-memory" = dontDistribute super."unix-memory"; 7835 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7836 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7837 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7838 "unlambda" = dontDistribute super."unlambda"; 7839 "unlit" = dontDistribute super."unlit"; 7840 "unm-hip" = dontDistribute super."unm-hip"; ··· 7965 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7966 "vector-static" = dontDistribute super."vector-static"; 7967 "vector-strategies" = dontDistribute super."vector-strategies"; 7968 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7969 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7970 "verbosity" = dontDistribute super."verbosity"; 7971 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-1.13.nix
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 3004 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3005 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3006 "finite-field" = dontDistribute super."finite-field"; 3007 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3008 "firstify" = dontDistribute super."firstify"; 3009 "fishfood" = dontDistribute super."fishfood"; ··· 5359 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5360 "monad-open" = dontDistribute super."monad-open"; 5361 "monad-ox" = dontDistribute super."monad-ox"; 5362 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5363 "monad-param" = dontDistribute super."monad-param"; 5364 "monad-peel" = dontDistribute super."monad-peel"; ··· 7561 "timecalc" = dontDistribute super."timecalc"; 7562 "timeconsole" = dontDistribute super."timeconsole"; 7563 "timeit" = dontDistribute super."timeit"; 7564 "timeout" = dontDistribute super."timeout"; 7565 "timeout-control" = dontDistribute super."timeout-control"; 7566 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7826 "unix-memory" = dontDistribute super."unix-memory"; 7827 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7828 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7829 "unlambda" = dontDistribute super."unlambda"; 7830 "unlit" = dontDistribute super."unlit"; 7831 "unm-hip" = dontDistribute super."unm-hip"; ··· 7956 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7957 "vector-static" = dontDistribute super."vector-static"; 7958 "vector-strategies" = dontDistribute super."vector-strategies"; 7959 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7960 "verbosity" = dontDistribute super."verbosity"; 7961 "verilog" = dontDistribute super."verilog";
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3005 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3006 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3007 "finite-field" = dontDistribute super."finite-field"; 3008 + "first-and-last" = dontDistribute super."first-and-last"; 3009 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3010 "firstify" = dontDistribute super."firstify"; 3011 "fishfood" = dontDistribute super."fishfood"; ··· 5361 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5362 "monad-open" = dontDistribute super."monad-open"; 5363 "monad-ox" = dontDistribute super."monad-ox"; 5364 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5365 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5366 "monad-param" = dontDistribute super."monad-param"; 5367 "monad-peel" = dontDistribute super."monad-peel"; ··· 7564 "timecalc" = dontDistribute super."timecalc"; 7565 "timeconsole" = dontDistribute super."timeconsole"; 7566 "timeit" = dontDistribute super."timeit"; 7567 + "timeless" = dontDistribute super."timeless"; 7568 "timeout" = dontDistribute super."timeout"; 7569 "timeout-control" = dontDistribute super."timeout-control"; 7570 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7830 "unix-memory" = dontDistribute super."unix-memory"; 7831 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7832 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7833 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7834 "unlambda" = dontDistribute super."unlambda"; 7835 "unlit" = dontDistribute super."unlit"; 7836 "unm-hip" = dontDistribute super."unm-hip"; ··· 7961 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7962 "vector-static" = dontDistribute super."vector-static"; 7963 "vector-strategies" = dontDistribute super."vector-strategies"; 7964 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7965 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7966 "verbosity" = dontDistribute super."verbosity"; 7967 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-1.14.nix
··· 612 "LambdaNet" = dontDistribute super."LambdaNet"; 613 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 614 "LambdaShell" = dontDistribute super."LambdaShell"; 615 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 616 "Lastik" = dontDistribute super."Lastik"; 617 "Lattices" = dontDistribute super."Lattices"; ··· 3001 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3002 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3003 "finite-field" = dontDistribute super."finite-field"; 3004 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3005 "firstify" = dontDistribute super."firstify"; 3006 "fishfood" = dontDistribute super."fishfood"; ··· 5353 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5354 "monad-open" = dontDistribute super."monad-open"; 5355 "monad-ox" = dontDistribute super."monad-ox"; 5356 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5357 "monad-param" = dontDistribute super."monad-param"; 5358 "monad-peel" = dontDistribute super."monad-peel"; ··· 7553 "timecalc" = dontDistribute super."timecalc"; 7554 "timeconsole" = dontDistribute super."timeconsole"; 7555 "timeit" = dontDistribute super."timeit"; 7556 "timeout" = dontDistribute super."timeout"; 7557 "timeout-control" = dontDistribute super."timeout-control"; 7558 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7818 "unix-memory" = dontDistribute super."unix-memory"; 7819 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7820 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7821 "unlambda" = dontDistribute super."unlambda"; 7822 "unlit" = dontDistribute super."unlit"; 7823 "unm-hip" = dontDistribute super."unm-hip"; ··· 7948 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7949 "vector-static" = dontDistribute super."vector-static"; 7950 "vector-strategies" = dontDistribute super."vector-strategies"; 7951 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7952 "verbosity" = dontDistribute super."verbosity"; 7953 "verilog" = dontDistribute super."verilog";
··· 612 "LambdaNet" = dontDistribute super."LambdaNet"; 613 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 614 "LambdaShell" = dontDistribute super."LambdaShell"; 615 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 3002 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3003 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3004 "finite-field" = dontDistribute super."finite-field"; 3005 + "first-and-last" = dontDistribute super."first-and-last"; 3006 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3007 "firstify" = dontDistribute super."firstify"; 3008 "fishfood" = dontDistribute super."fishfood"; ··· 5355 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5356 "monad-open" = dontDistribute super."monad-open"; 5357 "monad-ox" = dontDistribute super."monad-ox"; 5358 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5359 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5360 "monad-param" = dontDistribute super."monad-param"; 5361 "monad-peel" = dontDistribute super."monad-peel"; ··· 7556 "timecalc" = dontDistribute super."timecalc"; 7557 "timeconsole" = dontDistribute super."timeconsole"; 7558 "timeit" = dontDistribute super."timeit"; 7559 + "timeless" = dontDistribute super."timeless"; 7560 "timeout" = dontDistribute super."timeout"; 7561 "timeout-control" = dontDistribute super."timeout-control"; 7562 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7822 "unix-memory" = dontDistribute super."unix-memory"; 7823 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7824 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7825 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7826 "unlambda" = dontDistribute super."unlambda"; 7827 "unlit" = dontDistribute super."unlit"; 7828 "unm-hip" = dontDistribute super."unm-hip"; ··· 7953 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7954 "vector-static" = dontDistribute super."vector-static"; 7955 "vector-strategies" = dontDistribute super."vector-strategies"; 7956 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7957 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7958 "verbosity" = dontDistribute super."verbosity"; 7959 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-1.15.nix
··· 612 "LambdaNet" = dontDistribute super."LambdaNet"; 613 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 614 "LambdaShell" = dontDistribute super."LambdaShell"; 615 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 616 "Lastik" = dontDistribute super."Lastik"; 617 "Lattices" = dontDistribute super."Lattices"; ··· 2996 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2997 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2998 "finite-field" = dontDistribute super."finite-field"; 2999 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3000 "firstify" = dontDistribute super."firstify"; 3001 "fishfood" = dontDistribute super."fishfood"; ··· 5347 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5348 "monad-open" = dontDistribute super."monad-open"; 5349 "monad-ox" = dontDistribute super."monad-ox"; 5350 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5351 "monad-param" = dontDistribute super."monad-param"; 5352 "monad-peel" = dontDistribute super."monad-peel"; ··· 7541 "timecalc" = dontDistribute super."timecalc"; 7542 "timeconsole" = dontDistribute super."timeconsole"; 7543 "timeit" = dontDistribute super."timeit"; 7544 "timeout" = dontDistribute super."timeout"; 7545 "timeout-control" = dontDistribute super."timeout-control"; 7546 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7806 "unix-memory" = dontDistribute super."unix-memory"; 7807 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7808 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7809 "unlambda" = dontDistribute super."unlambda"; 7810 "unlit" = dontDistribute super."unlit"; 7811 "unm-hip" = dontDistribute super."unm-hip"; ··· 7935 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7936 "vector-static" = dontDistribute super."vector-static"; 7937 "vector-strategies" = dontDistribute super."vector-strategies"; 7938 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7939 "verbosity" = dontDistribute super."verbosity"; 7940 "verilog" = dontDistribute super."verilog";
··· 612 "LambdaNet" = dontDistribute super."LambdaNet"; 613 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 614 "LambdaShell" = dontDistribute super."LambdaShell"; 615 + "Lambdaya" = dontDistribute super."Lambdaya"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 2997 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2998 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2999 "finite-field" = dontDistribute super."finite-field"; 3000 + "first-and-last" = dontDistribute super."first-and-last"; 3001 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3002 "firstify" = dontDistribute super."firstify"; 3003 "fishfood" = dontDistribute super."fishfood"; ··· 5349 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5350 "monad-open" = dontDistribute super."monad-open"; 5351 "monad-ox" = dontDistribute super."monad-ox"; 5352 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5353 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5354 "monad-param" = dontDistribute super."monad-param"; 5355 "monad-peel" = dontDistribute super."monad-peel"; ··· 7544 "timecalc" = dontDistribute super."timecalc"; 7545 "timeconsole" = dontDistribute super."timeconsole"; 7546 "timeit" = dontDistribute super."timeit"; 7547 + "timeless" = dontDistribute super."timeless"; 7548 "timeout" = dontDistribute super."timeout"; 7549 "timeout-control" = dontDistribute super."timeout-control"; 7550 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7810 "unix-memory" = dontDistribute super."unix-memory"; 7811 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7812 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7813 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7814 "unlambda" = dontDistribute super."unlambda"; 7815 "unlit" = dontDistribute super."unlit"; 7816 "unm-hip" = dontDistribute super."unm-hip"; ··· 7940 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7941 "vector-static" = dontDistribute super."vector-static"; 7942 "vector-strategies" = dontDistribute super."vector-strategies"; 7943 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7944 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7945 "verbosity" = dontDistribute super."verbosity"; 7946 "verilog" = dontDistribute super."verilog";
+4
pkgs/development/haskell-modules/configuration-lts-1.2.nix
··· 614 "LambdaNet" = dontDistribute super."LambdaNet"; 615 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 616 "LambdaShell" = dontDistribute super."LambdaShell"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3012 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3013 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3014 "finite-field" = dontDistribute super."finite-field"; 3015 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3016 "firstify" = dontDistribute super."firstify"; 3017 "fishfood" = dontDistribute super."fishfood"; ··· 7606 "timecalc" = dontDistribute super."timecalc"; 7607 "timeconsole" = dontDistribute super."timeconsole"; 7608 "timeit" = dontDistribute super."timeit"; 7609 "timeout" = dontDistribute super."timeout"; 7610 "timeout-control" = dontDistribute super."timeout-control"; 7611 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 8005 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 8006 "vector-static" = dontDistribute super."vector-static"; 8007 "vector-strategies" = dontDistribute super."vector-strategies"; 8008 "verbalexpressions" = dontDistribute super."verbalexpressions"; 8009 "verbosity" = dontDistribute super."verbosity"; 8010 "verilog" = dontDistribute super."verilog";
··· 614 "LambdaNet" = dontDistribute super."LambdaNet"; 615 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 616 "LambdaShell" = dontDistribute super."LambdaShell"; 617 + "Lambdaya" = dontDistribute super."Lambdaya"; 618 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 619 "Lastik" = dontDistribute super."Lastik"; 620 "Lattices" = dontDistribute super."Lattices"; ··· 3013 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3014 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3015 "finite-field" = dontDistribute super."finite-field"; 3016 + "first-and-last" = dontDistribute super."first-and-last"; 3017 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3018 "firstify" = dontDistribute super."firstify"; 3019 "fishfood" = dontDistribute super."fishfood"; ··· 7608 "timecalc" = dontDistribute super."timecalc"; 7609 "timeconsole" = dontDistribute super."timeconsole"; 7610 "timeit" = dontDistribute super."timeit"; 7611 + "timeless" = dontDistribute super."timeless"; 7612 "timeout" = dontDistribute super."timeout"; 7613 "timeout-control" = dontDistribute super."timeout-control"; 7614 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 8008 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 8009 "vector-static" = dontDistribute super."vector-static"; 8010 "vector-strategies" = dontDistribute super."vector-strategies"; 8011 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 8012 "verbalexpressions" = dontDistribute super."verbalexpressions"; 8013 "verbosity" = dontDistribute super."verbosity"; 8014 "verilog" = dontDistribute super."verilog";
+4
pkgs/development/haskell-modules/configuration-lts-1.4.nix
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 3010 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3011 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3012 "finite-field" = dontDistribute super."finite-field"; 3013 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3014 "firstify" = dontDistribute super."firstify"; 3015 "fishfood" = dontDistribute super."fishfood"; ··· 7599 "timecalc" = dontDistribute super."timecalc"; 7600 "timeconsole" = dontDistribute super."timeconsole"; 7601 "timeit" = dontDistribute super."timeit"; 7602 "timeout" = dontDistribute super."timeout"; 7603 "timeout-control" = dontDistribute super."timeout-control"; 7604 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7998 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7999 "vector-static" = dontDistribute super."vector-static"; 8000 "vector-strategies" = dontDistribute super."vector-strategies"; 8001 "verbalexpressions" = dontDistribute super."verbalexpressions"; 8002 "verbosity" = dontDistribute super."verbosity"; 8003 "verilog" = dontDistribute super."verilog";
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3011 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3012 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3013 "finite-field" = dontDistribute super."finite-field"; 3014 + "first-and-last" = dontDistribute super."first-and-last"; 3015 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3016 "firstify" = dontDistribute super."firstify"; 3017 "fishfood" = dontDistribute super."fishfood"; ··· 7601 "timecalc" = dontDistribute super."timecalc"; 7602 "timeconsole" = dontDistribute super."timeconsole"; 7603 "timeit" = dontDistribute super."timeit"; 7604 + "timeless" = dontDistribute super."timeless"; 7605 "timeout" = dontDistribute super."timeout"; 7606 "timeout-control" = dontDistribute super."timeout-control"; 7607 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 8001 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 8002 "vector-static" = dontDistribute super."vector-static"; 8003 "vector-strategies" = dontDistribute super."vector-strategies"; 8004 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 8005 "verbalexpressions" = dontDistribute super."verbalexpressions"; 8006 "verbosity" = dontDistribute super."verbosity"; 8007 "verilog" = dontDistribute super."verilog";
+4
pkgs/development/haskell-modules/configuration-lts-1.5.nix
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 3009 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3010 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3011 "finite-field" = dontDistribute super."finite-field"; 3012 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3013 "firstify" = dontDistribute super."firstify"; 3014 "fishfood" = dontDistribute super."fishfood"; ··· 7597 "timecalc" = dontDistribute super."timecalc"; 7598 "timeconsole" = dontDistribute super."timeconsole"; 7599 "timeit" = dontDistribute super."timeit"; 7600 "timeout" = dontDistribute super."timeout"; 7601 "timeout-control" = dontDistribute super."timeout-control"; 7602 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7994 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7995 "vector-static" = dontDistribute super."vector-static"; 7996 "vector-strategies" = dontDistribute super."vector-strategies"; 7997 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7998 "verbosity" = dontDistribute super."verbosity"; 7999 "verilog" = dontDistribute super."verilog";
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3010 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3011 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3012 "finite-field" = dontDistribute super."finite-field"; 3013 + "first-and-last" = dontDistribute super."first-and-last"; 3014 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3015 "firstify" = dontDistribute super."firstify"; 3016 "fishfood" = dontDistribute super."fishfood"; ··· 7599 "timecalc" = dontDistribute super."timecalc"; 7600 "timeconsole" = dontDistribute super."timeconsole"; 7601 "timeit" = dontDistribute super."timeit"; 7602 + "timeless" = dontDistribute super."timeless"; 7603 "timeout" = dontDistribute super."timeout"; 7604 "timeout-control" = dontDistribute super."timeout-control"; 7605 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7997 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7998 "vector-static" = dontDistribute super."vector-static"; 7999 "vector-strategies" = dontDistribute super."vector-strategies"; 8000 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 8001 "verbalexpressions" = dontDistribute super."verbalexpressions"; 8002 "verbosity" = dontDistribute super."verbosity"; 8003 "verilog" = dontDistribute super."verilog";
+4
pkgs/development/haskell-modules/configuration-lts-1.7.nix
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 3009 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3010 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3011 "finite-field" = dontDistribute super."finite-field"; 3012 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3013 "firstify" = dontDistribute super."firstify"; 3014 "fishfood" = dontDistribute super."fishfood"; ··· 7591 "timecalc" = dontDistribute super."timecalc"; 7592 "timeconsole" = dontDistribute super."timeconsole"; 7593 "timeit" = dontDistribute super."timeit"; 7594 "timeout" = dontDistribute super."timeout"; 7595 "timeout-control" = dontDistribute super."timeout-control"; 7596 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7988 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7989 "vector-static" = dontDistribute super."vector-static"; 7990 "vector-strategies" = dontDistribute super."vector-strategies"; 7991 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7992 "verbosity" = dontDistribute super."verbosity"; 7993 "verilog" = dontDistribute super."verilog";
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3010 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3011 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3012 "finite-field" = dontDistribute super."finite-field"; 3013 + "first-and-last" = dontDistribute super."first-and-last"; 3014 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3015 "firstify" = dontDistribute super."firstify"; 3016 "fishfood" = dontDistribute super."fishfood"; ··· 7593 "timecalc" = dontDistribute super."timecalc"; 7594 "timeconsole" = dontDistribute super."timeconsole"; 7595 "timeit" = dontDistribute super."timeit"; 7596 + "timeless" = dontDistribute super."timeless"; 7597 "timeout" = dontDistribute super."timeout"; 7598 "timeout-control" = dontDistribute super."timeout-control"; 7599 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7991 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7992 "vector-static" = dontDistribute super."vector-static"; 7993 "vector-strategies" = dontDistribute super."vector-strategies"; 7994 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7995 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7996 "verbosity" = dontDistribute super."verbosity"; 7997 "verilog" = dontDistribute super."verilog";
+4
pkgs/development/haskell-modules/configuration-lts-1.8.nix
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 3007 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3008 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3009 "finite-field" = dontDistribute super."finite-field"; 3010 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3011 "firstify" = dontDistribute super."firstify"; 3012 "fishfood" = dontDistribute super."fishfood"; ··· 7586 "timecalc" = dontDistribute super."timecalc"; 7587 "timeconsole" = dontDistribute super."timeconsole"; 7588 "timeit" = dontDistribute super."timeit"; 7589 "timeout" = dontDistribute super."timeout"; 7590 "timeout-control" = dontDistribute super."timeout-control"; 7591 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7982 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7983 "vector-static" = dontDistribute super."vector-static"; 7984 "vector-strategies" = dontDistribute super."vector-strategies"; 7985 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7986 "verbosity" = dontDistribute super."verbosity"; 7987 "verilog" = dontDistribute super."verilog";
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3008 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3009 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3010 "finite-field" = dontDistribute super."finite-field"; 3011 + "first-and-last" = dontDistribute super."first-and-last"; 3012 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3013 "firstify" = dontDistribute super."firstify"; 3014 "fishfood" = dontDistribute super."fishfood"; ··· 7588 "timecalc" = dontDistribute super."timecalc"; 7589 "timeconsole" = dontDistribute super."timeconsole"; 7590 "timeit" = dontDistribute super."timeit"; 7591 + "timeless" = dontDistribute super."timeless"; 7592 "timeout" = dontDistribute super."timeout"; 7593 "timeout-control" = dontDistribute super."timeout-control"; 7594 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7985 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7986 "vector-static" = dontDistribute super."vector-static"; 7987 "vector-strategies" = dontDistribute super."vector-strategies"; 7988 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7989 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7990 "verbosity" = dontDistribute super."verbosity"; 7991 "verilog" = dontDistribute super."verilog";
+5
pkgs/development/haskell-modules/configuration-lts-1.9.nix
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 617 "Lastik" = dontDistribute super."Lastik"; 618 "Lattices" = dontDistribute super."Lattices"; ··· 3007 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3008 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3009 "finite-field" = dontDistribute super."finite-field"; 3010 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3011 "firstify" = dontDistribute super."firstify"; 3012 "fishfood" = dontDistribute super."fishfood"; ··· 5369 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5370 "monad-open" = dontDistribute super."monad-open"; 5371 "monad-ox" = dontDistribute super."monad-ox"; 5372 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5373 "monad-param" = dontDistribute super."monad-param"; 5374 "monad-peel" = dontDistribute super."monad-peel"; ··· 7582 "timecalc" = dontDistribute super."timecalc"; 7583 "timeconsole" = dontDistribute super."timeconsole"; 7584 "timeit" = dontDistribute super."timeit"; 7585 "timeout" = dontDistribute super."timeout"; 7586 "timeout-control" = dontDistribute super."timeout-control"; 7587 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7978 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7979 "vector-static" = dontDistribute super."vector-static"; 7980 "vector-strategies" = dontDistribute super."vector-strategies"; 7981 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7982 "verbosity" = dontDistribute super."verbosity"; 7983 "verilog" = dontDistribute super."verilog";
··· 613 "LambdaNet" = dontDistribute super."LambdaNet"; 614 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 615 "LambdaShell" = dontDistribute super."LambdaShell"; 616 + "Lambdaya" = dontDistribute super."Lambdaya"; 617 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 618 "Lastik" = dontDistribute super."Lastik"; 619 "Lattices" = dontDistribute super."Lattices"; ··· 3008 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 3009 "fingertree-tf" = dontDistribute super."fingertree-tf"; 3010 "finite-field" = dontDistribute super."finite-field"; 3011 + "first-and-last" = dontDistribute super."first-and-last"; 3012 "first-class-patterns" = dontDistribute super."first-class-patterns"; 3013 "firstify" = dontDistribute super."firstify"; 3014 "fishfood" = dontDistribute super."fishfood"; ··· 5371 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5372 "monad-open" = dontDistribute super."monad-open"; 5373 "monad-ox" = dontDistribute super."monad-ox"; 5374 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5375 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5376 "monad-param" = dontDistribute super."monad-param"; 5377 "monad-peel" = dontDistribute super."monad-peel"; ··· 7585 "timecalc" = dontDistribute super."timecalc"; 7586 "timeconsole" = dontDistribute super."timeconsole"; 7587 "timeit" = dontDistribute super."timeit"; 7588 + "timeless" = dontDistribute super."timeless"; 7589 "timeout" = dontDistribute super."timeout"; 7590 "timeout-control" = dontDistribute super."timeout-control"; 7591 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7982 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7983 "vector-static" = dontDistribute super."vector-static"; 7984 "vector-strategies" = dontDistribute super."vector-strategies"; 7985 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7986 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7987 "verbosity" = dontDistribute super."verbosity"; 7988 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.0.nix
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2975 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2976 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2977 "finite-field" = dontDistribute super."finite-field"; 2978 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2979 "firstify" = dontDistribute super."firstify"; 2980 "fishfood" = dontDistribute super."fishfood"; ··· 5292 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5293 "monad-open" = dontDistribute super."monad-open"; 5294 "monad-ox" = dontDistribute super."monad-ox"; 5295 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5296 "monad-param" = dontDistribute super."monad-param"; 5297 "monad-peel" = dontDistribute super."monad-peel"; ··· 7463 "timecalc" = dontDistribute super."timecalc"; 7464 "timeconsole" = dontDistribute super."timeconsole"; 7465 "timeit" = dontDistribute super."timeit"; 7466 "timeout" = dontDistribute super."timeout"; 7467 "timeout-control" = dontDistribute super."timeout-control"; 7468 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7727 "unix-memory" = dontDistribute super."unix-memory"; 7728 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7729 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7730 "unlambda" = dontDistribute super."unlambda"; 7731 "unlit" = dontDistribute super."unlit"; 7732 "unm-hip" = dontDistribute super."unm-hip"; ··· 7855 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7856 "vector-static" = dontDistribute super."vector-static"; 7857 "vector-strategies" = dontDistribute super."vector-strategies"; 7858 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7859 "verbosity" = dontDistribute super."verbosity"; 7860 "verilog" = dontDistribute super."verilog";
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 612 "Lastik" = dontDistribute super."Lastik"; 613 "Lattices" = dontDistribute super."Lattices"; ··· 2976 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2977 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2978 "finite-field" = dontDistribute super."finite-field"; 2979 + "first-and-last" = dontDistribute super."first-and-last"; 2980 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2981 "firstify" = dontDistribute super."firstify"; 2982 "fishfood" = dontDistribute super."fishfood"; ··· 5294 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5295 "monad-open" = dontDistribute super."monad-open"; 5296 "monad-ox" = dontDistribute super."monad-ox"; 5297 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5298 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5299 "monad-param" = dontDistribute super."monad-param"; 5300 "monad-peel" = dontDistribute super."monad-peel"; ··· 7466 "timecalc" = dontDistribute super."timecalc"; 7467 "timeconsole" = dontDistribute super."timeconsole"; 7468 "timeit" = dontDistribute super."timeit"; 7469 + "timeless" = dontDistribute super."timeless"; 7470 "timeout" = dontDistribute super."timeout"; 7471 "timeout-control" = dontDistribute super."timeout-control"; 7472 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7731 "unix-memory" = dontDistribute super."unix-memory"; 7732 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7733 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7734 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7735 "unlambda" = dontDistribute super."unlambda"; 7736 "unlit" = dontDistribute super."unlit"; 7737 "unm-hip" = dontDistribute super."unm-hip"; ··· 7860 "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; 7861 "vector-static" = dontDistribute super."vector-static"; 7862 "vector-strategies" = dontDistribute super."vector-strategies"; 7863 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7864 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7865 "verbosity" = dontDistribute super."verbosity"; 7866 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.1.nix
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2974 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2975 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2976 "finite-field" = dontDistribute super."finite-field"; 2977 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2978 "firstify" = dontDistribute super."firstify"; 2979 "fishfood" = dontDistribute super."fishfood"; ··· 5290 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5291 "monad-open" = dontDistribute super."monad-open"; 5292 "monad-ox" = dontDistribute super."monad-ox"; 5293 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5294 "monad-param" = dontDistribute super."monad-param"; 5295 "monad-peel" = dontDistribute super."monad-peel"; ··· 7461 "timecalc" = dontDistribute super."timecalc"; 7462 "timeconsole" = dontDistribute super."timeconsole"; 7463 "timeit" = dontDistribute super."timeit"; 7464 "timeout" = dontDistribute super."timeout"; 7465 "timeout-control" = dontDistribute super."timeout-control"; 7466 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7725 "unix-memory" = dontDistribute super."unix-memory"; 7726 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7727 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7728 "unlambda" = dontDistribute super."unlambda"; 7729 "unlit" = dontDistribute super."unlit"; 7730 "unm-hip" = dontDistribute super."unm-hip"; ··· 7852 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7853 "vector-static" = dontDistribute super."vector-static"; 7854 "vector-strategies" = dontDistribute super."vector-strategies"; 7855 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7856 "verbosity" = dontDistribute super."verbosity"; 7857 "verilog" = dontDistribute super."verilog";
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 612 "Lastik" = dontDistribute super."Lastik"; 613 "Lattices" = dontDistribute super."Lattices"; ··· 2975 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2976 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2977 "finite-field" = dontDistribute super."finite-field"; 2978 + "first-and-last" = dontDistribute super."first-and-last"; 2979 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2980 "firstify" = dontDistribute super."firstify"; 2981 "fishfood" = dontDistribute super."fishfood"; ··· 5292 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5293 "monad-open" = dontDistribute super."monad-open"; 5294 "monad-ox" = dontDistribute super."monad-ox"; 5295 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5296 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5297 "monad-param" = dontDistribute super."monad-param"; 5298 "monad-peel" = dontDistribute super."monad-peel"; ··· 7464 "timecalc" = dontDistribute super."timecalc"; 7465 "timeconsole" = dontDistribute super."timeconsole"; 7466 "timeit" = dontDistribute super."timeit"; 7467 + "timeless" = dontDistribute super."timeless"; 7468 "timeout" = dontDistribute super."timeout"; 7469 "timeout-control" = dontDistribute super."timeout-control"; 7470 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7729 "unix-memory" = dontDistribute super."unix-memory"; 7730 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7731 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7732 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7733 "unlambda" = dontDistribute super."unlambda"; 7734 "unlit" = dontDistribute super."unlit"; 7735 "unm-hip" = dontDistribute super."unm-hip"; ··· 7857 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7858 "vector-static" = dontDistribute super."vector-static"; 7859 "vector-strategies" = dontDistribute super."vector-strategies"; 7860 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7861 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7862 "verbosity" = dontDistribute super."verbosity"; 7863 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.10.nix
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 605 "LambdaNet" = dontDistribute super."LambdaNet"; 606 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 "LambdaShell" = dontDistribute super."LambdaShell"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2953 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2954 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2955 "finite-field" = dontDistribute super."finite-field"; 2956 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2957 "firstify" = dontDistribute super."firstify"; 2958 "fishfood" = dontDistribute super."fishfood"; ··· 5246 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5247 "monad-open" = dontDistribute super."monad-open"; 5248 "monad-ox" = dontDistribute super."monad-ox"; 5249 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5250 "monad-param" = dontDistribute super."monad-param"; 5251 "monad-peel" = dontDistribute super."monad-peel"; ··· 7394 "timecalc" = dontDistribute super."timecalc"; 7395 "timeconsole" = dontDistribute super."timeconsole"; 7396 "timeit" = dontDistribute super."timeit"; 7397 "timeout" = dontDistribute super."timeout"; 7398 "timeout-control" = dontDistribute super."timeout-control"; 7399 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7656 "unix-memory" = dontDistribute super."unix-memory"; 7657 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7658 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7659 "unlambda" = dontDistribute super."unlambda"; 7660 "unlit" = dontDistribute super."unlit"; 7661 "unm-hip" = dontDistribute super."unm-hip"; ··· 7783 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7784 "vector-static" = dontDistribute super."vector-static"; 7785 "vector-strategies" = dontDistribute super."vector-strategies"; 7786 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7787 "verbosity" = dontDistribute super."verbosity"; 7788 "verilog" = dontDistribute super."verilog";
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 352 "GLUtil" = dontDistribute super."GLUtil"; 353 "GPX" = dontDistribute super."GPX"; ··· 606 "LambdaNet" = dontDistribute super."LambdaNet"; 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2955 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2956 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2957 "finite-field" = dontDistribute super."finite-field"; 2958 + "first-and-last" = dontDistribute super."first-and-last"; 2959 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2960 "firstify" = dontDistribute super."firstify"; 2961 "fishfood" = dontDistribute super."fishfood"; ··· 5249 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5250 "monad-open" = dontDistribute super."monad-open"; 5251 "monad-ox" = dontDistribute super."monad-ox"; 5252 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5253 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5254 "monad-param" = dontDistribute super."monad-param"; 5255 "monad-peel" = dontDistribute super."monad-peel"; ··· 7398 "timecalc" = dontDistribute super."timecalc"; 7399 "timeconsole" = dontDistribute super."timeconsole"; 7400 "timeit" = dontDistribute super."timeit"; 7401 + "timeless" = dontDistribute super."timeless"; 7402 "timeout" = dontDistribute super."timeout"; 7403 "timeout-control" = dontDistribute super."timeout-control"; 7404 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7661 "unix-memory" = dontDistribute super."unix-memory"; 7662 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7663 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7664 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7665 "unlambda" = dontDistribute super."unlambda"; 7666 "unlit" = dontDistribute super."unlit"; 7667 "unm-hip" = dontDistribute super."unm-hip"; ··· 7789 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7790 "vector-static" = dontDistribute super."vector-static"; 7791 "vector-strategies" = dontDistribute super."vector-strategies"; 7792 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7793 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7794 "verbosity" = dontDistribute super."verbosity"; 7795 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.11.nix
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 605 "LambdaNet" = dontDistribute super."LambdaNet"; 606 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 "LambdaShell" = dontDistribute super."LambdaShell"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2952 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2953 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2954 "finite-field" = dontDistribute super."finite-field"; 2955 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2956 "firstify" = dontDistribute super."firstify"; 2957 "fishfood" = dontDistribute super."fishfood"; ··· 5238 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5239 "monad-open" = dontDistribute super."monad-open"; 5240 "monad-ox" = dontDistribute super."monad-ox"; 5241 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5242 "monad-param" = dontDistribute super."monad-param"; 5243 "monad-peel" = dontDistribute super."monad-peel"; ··· 7381 "timecalc" = dontDistribute super."timecalc"; 7382 "timeconsole" = dontDistribute super."timeconsole"; 7383 "timeit" = dontDistribute super."timeit"; 7384 "timeout" = dontDistribute super."timeout"; 7385 "timeout-control" = dontDistribute super."timeout-control"; 7386 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7643 "unix-memory" = dontDistribute super."unix-memory"; 7644 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7645 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7646 "unlambda" = dontDistribute super."unlambda"; 7647 "unlit" = dontDistribute super."unlit"; 7648 "unm-hip" = dontDistribute super."unm-hip"; ··· 7770 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7771 "vector-static" = dontDistribute super."vector-static"; 7772 "vector-strategies" = dontDistribute super."vector-strategies"; 7773 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7774 "verbosity" = dontDistribute super."verbosity"; 7775 "verilog" = dontDistribute super."verilog";
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 352 "GLUtil" = dontDistribute super."GLUtil"; 353 "GPX" = dontDistribute super."GPX"; ··· 606 "LambdaNet" = dontDistribute super."LambdaNet"; 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2954 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2955 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2956 "finite-field" = dontDistribute super."finite-field"; 2957 + "first-and-last" = dontDistribute super."first-and-last"; 2958 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2959 "firstify" = dontDistribute super."firstify"; 2960 "fishfood" = dontDistribute super."fishfood"; ··· 5241 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5242 "monad-open" = dontDistribute super."monad-open"; 5243 "monad-ox" = dontDistribute super."monad-ox"; 5244 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5245 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5246 "monad-param" = dontDistribute super."monad-param"; 5247 "monad-peel" = dontDistribute super."monad-peel"; ··· 7385 "timecalc" = dontDistribute super."timecalc"; 7386 "timeconsole" = dontDistribute super."timeconsole"; 7387 "timeit" = dontDistribute super."timeit"; 7388 + "timeless" = dontDistribute super."timeless"; 7389 "timeout" = dontDistribute super."timeout"; 7390 "timeout-control" = dontDistribute super."timeout-control"; 7391 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7648 "unix-memory" = dontDistribute super."unix-memory"; 7649 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7650 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7651 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7652 "unlambda" = dontDistribute super."unlambda"; 7653 "unlit" = dontDistribute super."unlit"; 7654 "unm-hip" = dontDistribute super."unm-hip"; ··· 7776 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7777 "vector-static" = dontDistribute super."vector-static"; 7778 "vector-strategies" = dontDistribute super."vector-strategies"; 7779 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7780 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7781 "verbosity" = dontDistribute super."verbosity"; 7782 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.12.nix
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 605 "LambdaNet" = dontDistribute super."LambdaNet"; 606 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 "LambdaShell" = dontDistribute super."LambdaShell"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2952 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2953 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2954 "finite-field" = dontDistribute super."finite-field"; 2955 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2956 "firstify" = dontDistribute super."firstify"; 2957 "fishfood" = dontDistribute super."fishfood"; ··· 5238 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5239 "monad-open" = dontDistribute super."monad-open"; 5240 "monad-ox" = dontDistribute super."monad-ox"; 5241 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5242 "monad-param" = dontDistribute super."monad-param"; 5243 "monad-peel" = dontDistribute super."monad-peel"; ··· 7380 "timecalc" = dontDistribute super."timecalc"; 7381 "timeconsole" = dontDistribute super."timeconsole"; 7382 "timeit" = dontDistribute super."timeit"; 7383 "timeout" = dontDistribute super."timeout"; 7384 "timeout-control" = dontDistribute super."timeout-control"; 7385 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7642 "unix-memory" = dontDistribute super."unix-memory"; 7643 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7644 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7645 "unlambda" = dontDistribute super."unlambda"; 7646 "unlit" = dontDistribute super."unlit"; 7647 "unm-hip" = dontDistribute super."unm-hip"; ··· 7769 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7770 "vector-static" = dontDistribute super."vector-static"; 7771 "vector-strategies" = dontDistribute super."vector-strategies"; 7772 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7773 "verbosity" = dontDistribute super."verbosity"; 7774 "verilog" = dontDistribute super."verilog";
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 352 "GLUtil" = dontDistribute super."GLUtil"; 353 "GPX" = dontDistribute super."GPX"; ··· 606 "LambdaNet" = dontDistribute super."LambdaNet"; 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2954 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2955 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2956 "finite-field" = dontDistribute super."finite-field"; 2957 + "first-and-last" = dontDistribute super."first-and-last"; 2958 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2959 "firstify" = dontDistribute super."firstify"; 2960 "fishfood" = dontDistribute super."fishfood"; ··· 5241 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5242 "monad-open" = dontDistribute super."monad-open"; 5243 "monad-ox" = dontDistribute super."monad-ox"; 5244 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5245 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5246 "monad-param" = dontDistribute super."monad-param"; 5247 "monad-peel" = dontDistribute super."monad-peel"; ··· 7384 "timecalc" = dontDistribute super."timecalc"; 7385 "timeconsole" = dontDistribute super."timeconsole"; 7386 "timeit" = dontDistribute super."timeit"; 7387 + "timeless" = dontDistribute super."timeless"; 7388 "timeout" = dontDistribute super."timeout"; 7389 "timeout-control" = dontDistribute super."timeout-control"; 7390 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7647 "unix-memory" = dontDistribute super."unix-memory"; 7648 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7649 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7650 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7651 "unlambda" = dontDistribute super."unlambda"; 7652 "unlit" = dontDistribute super."unlit"; 7653 "unm-hip" = dontDistribute super."unm-hip"; ··· 7775 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7776 "vector-static" = dontDistribute super."vector-static"; 7777 "vector-strategies" = dontDistribute super."vector-strategies"; 7778 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7779 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7780 "verbosity" = dontDistribute super."verbosity"; 7781 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.13.nix
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 605 "LambdaNet" = dontDistribute super."LambdaNet"; 606 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 "LambdaShell" = dontDistribute super."LambdaShell"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2952 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2953 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2954 "finite-field" = dontDistribute super."finite-field"; 2955 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2956 "firstify" = dontDistribute super."firstify"; 2957 "fishfood" = dontDistribute super."fishfood"; ··· 5236 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5237 "monad-open" = dontDistribute super."monad-open"; 5238 "monad-ox" = dontDistribute super."monad-ox"; 5239 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5240 "monad-param" = dontDistribute super."monad-param"; 5241 "monad-peel" = dontDistribute super."monad-peel"; ··· 7376 "timecalc" = dontDistribute super."timecalc"; 7377 "timeconsole" = dontDistribute super."timeconsole"; 7378 "timeit" = dontDistribute super."timeit"; 7379 "timeout" = dontDistribute super."timeout"; 7380 "timeout-control" = dontDistribute super."timeout-control"; 7381 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7638 "unix-memory" = dontDistribute super."unix-memory"; 7639 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7640 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7641 "unlambda" = dontDistribute super."unlambda"; 7642 "unlit" = dontDistribute super."unlit"; 7643 "unm-hip" = dontDistribute super."unm-hip"; ··· 7765 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7766 "vector-static" = dontDistribute super."vector-static"; 7767 "vector-strategies" = dontDistribute super."vector-strategies"; 7768 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7769 "verbosity" = dontDistribute super."verbosity"; 7770 "verilog" = dontDistribute super."verilog";
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 352 "GLUtil" = dontDistribute super."GLUtil"; 353 "GPX" = dontDistribute super."GPX"; ··· 606 "LambdaNet" = dontDistribute super."LambdaNet"; 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2954 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2955 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2956 "finite-field" = dontDistribute super."finite-field"; 2957 + "first-and-last" = dontDistribute super."first-and-last"; 2958 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2959 "firstify" = dontDistribute super."firstify"; 2960 "fishfood" = dontDistribute super."fishfood"; ··· 5239 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5240 "monad-open" = dontDistribute super."monad-open"; 5241 "monad-ox" = dontDistribute super."monad-ox"; 5242 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5243 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5244 "monad-param" = dontDistribute super."monad-param"; 5245 "monad-peel" = dontDistribute super."monad-peel"; ··· 7380 "timecalc" = dontDistribute super."timecalc"; 7381 "timeconsole" = dontDistribute super."timeconsole"; 7382 "timeit" = dontDistribute super."timeit"; 7383 + "timeless" = dontDistribute super."timeless"; 7384 "timeout" = dontDistribute super."timeout"; 7385 "timeout-control" = dontDistribute super."timeout-control"; 7386 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7643 "unix-memory" = dontDistribute super."unix-memory"; 7644 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7645 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7646 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7647 "unlambda" = dontDistribute super."unlambda"; 7648 "unlit" = dontDistribute super."unlit"; 7649 "unm-hip" = dontDistribute super."unm-hip"; ··· 7771 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7772 "vector-static" = dontDistribute super."vector-static"; 7773 "vector-strategies" = dontDistribute super."vector-strategies"; 7774 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7775 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7776 "verbosity" = dontDistribute super."verbosity"; 7777 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.14.nix
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 605 "LambdaNet" = dontDistribute super."LambdaNet"; 606 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 "LambdaShell" = dontDistribute super."LambdaShell"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2950 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2951 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2952 "finite-field" = dontDistribute super."finite-field"; 2953 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2954 "firstify" = dontDistribute super."firstify"; 2955 "fishfood" = dontDistribute super."fishfood"; ··· 5233 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5234 "monad-open" = dontDistribute super."monad-open"; 5235 "monad-ox" = dontDistribute super."monad-ox"; 5236 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5237 "monad-param" = dontDistribute super."monad-param"; 5238 "monad-peel" = dontDistribute super."monad-peel"; ··· 7371 "timecalc" = dontDistribute super."timecalc"; 7372 "timeconsole" = dontDistribute super."timeconsole"; 7373 "timeit" = dontDistribute super."timeit"; 7374 "timeout" = dontDistribute super."timeout"; 7375 "timeout-control" = dontDistribute super."timeout-control"; 7376 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7633 "unix-memory" = dontDistribute super."unix-memory"; 7634 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7635 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7636 "unlambda" = dontDistribute super."unlambda"; 7637 "unlit" = dontDistribute super."unlit"; 7638 "unm-hip" = dontDistribute super."unm-hip"; ··· 7760 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7761 "vector-static" = dontDistribute super."vector-static"; 7762 "vector-strategies" = dontDistribute super."vector-strategies"; 7763 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7764 "verbosity" = dontDistribute super."verbosity"; 7765 "verilog" = dontDistribute super."verilog";
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 352 "GLUtil" = dontDistribute super."GLUtil"; 353 "GPX" = dontDistribute super."GPX"; ··· 606 "LambdaNet" = dontDistribute super."LambdaNet"; 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2952 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2953 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2954 "finite-field" = dontDistribute super."finite-field"; 2955 + "first-and-last" = dontDistribute super."first-and-last"; 2956 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2957 "firstify" = dontDistribute super."firstify"; 2958 "fishfood" = dontDistribute super."fishfood"; ··· 5236 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5237 "monad-open" = dontDistribute super."monad-open"; 5238 "monad-ox" = dontDistribute super."monad-ox"; 5239 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5240 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5241 "monad-param" = dontDistribute super."monad-param"; 5242 "monad-peel" = dontDistribute super."monad-peel"; ··· 7375 "timecalc" = dontDistribute super."timecalc"; 7376 "timeconsole" = dontDistribute super."timeconsole"; 7377 "timeit" = dontDistribute super."timeit"; 7378 + "timeless" = dontDistribute super."timeless"; 7379 "timeout" = dontDistribute super."timeout"; 7380 "timeout-control" = dontDistribute super."timeout-control"; 7381 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7638 "unix-memory" = dontDistribute super."unix-memory"; 7639 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7640 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7641 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7642 "unlambda" = dontDistribute super."unlambda"; 7643 "unlit" = dontDistribute super."unlit"; 7644 "unm-hip" = dontDistribute super."unm-hip"; ··· 7766 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7767 "vector-static" = dontDistribute super."vector-static"; 7768 "vector-strategies" = dontDistribute super."vector-strategies"; 7769 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7770 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7771 "verbosity" = dontDistribute super."verbosity"; 7772 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.15.nix
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 605 "LambdaNet" = dontDistribute super."LambdaNet"; 606 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 "LambdaShell" = dontDistribute super."LambdaShell"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2948 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2949 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2950 "finite-field" = dontDistribute super."finite-field"; 2951 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2952 "firstify" = dontDistribute super."firstify"; 2953 "fishfood" = dontDistribute super."fishfood"; ··· 5230 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5231 "monad-open" = dontDistribute super."monad-open"; 5232 "monad-ox" = dontDistribute super."monad-ox"; 5233 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5234 "monad-param" = dontDistribute super."monad-param"; 5235 "monad-peel" = dontDistribute super."monad-peel"; ··· 7365 "timecalc" = dontDistribute super."timecalc"; 7366 "timeconsole" = dontDistribute super."timeconsole"; 7367 "timeit" = dontDistribute super."timeit"; 7368 "timeout" = dontDistribute super."timeout"; 7369 "timeout-control" = dontDistribute super."timeout-control"; 7370 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7627 "unix-memory" = dontDistribute super."unix-memory"; 7628 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7629 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7630 "unlambda" = dontDistribute super."unlambda"; 7631 "unlit" = dontDistribute super."unlit"; 7632 "unm-hip" = dontDistribute super."unm-hip"; ··· 7754 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7755 "vector-static" = dontDistribute super."vector-static"; 7756 "vector-strategies" = dontDistribute super."vector-strategies"; 7757 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7758 "verbosity" = dontDistribute super."verbosity"; 7759 "verilog" = dontDistribute super."verilog";
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 352 "GLUtil" = dontDistribute super."GLUtil"; 353 "GPX" = dontDistribute super."GPX"; ··· 606 "LambdaNet" = dontDistribute super."LambdaNet"; 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2950 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2951 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2952 "finite-field" = dontDistribute super."finite-field"; 2953 + "first-and-last" = dontDistribute super."first-and-last"; 2954 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2955 "firstify" = dontDistribute super."firstify"; 2956 "fishfood" = dontDistribute super."fishfood"; ··· 5233 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5234 "monad-open" = dontDistribute super."monad-open"; 5235 "monad-ox" = dontDistribute super."monad-ox"; 5236 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5237 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5238 "monad-param" = dontDistribute super."monad-param"; 5239 "monad-peel" = dontDistribute super."monad-peel"; ··· 7369 "timecalc" = dontDistribute super."timecalc"; 7370 "timeconsole" = dontDistribute super."timeconsole"; 7371 "timeit" = dontDistribute super."timeit"; 7372 + "timeless" = dontDistribute super."timeless"; 7373 "timeout" = dontDistribute super."timeout"; 7374 "timeout-control" = dontDistribute super."timeout-control"; 7375 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7632 "unix-memory" = dontDistribute super."unix-memory"; 7633 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7634 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7635 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7636 "unlambda" = dontDistribute super."unlambda"; 7637 "unlit" = dontDistribute super."unlit"; 7638 "unm-hip" = dontDistribute super."unm-hip"; ··· 7760 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7761 "vector-static" = dontDistribute super."vector-static"; 7762 "vector-strategies" = dontDistribute super."vector-strategies"; 7763 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7764 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7765 "verbosity" = dontDistribute super."verbosity"; 7766 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.16.nix
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 "GLUtil" = dontDistribute super."GLUtil"; 351 "GPX" = dontDistribute super."GPX"; ··· 603 "LambdaNet" = dontDistribute super."LambdaNet"; 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 607 "Lastik" = dontDistribute super."Lastik"; 608 "Lattices" = dontDistribute super."Lattices"; ··· 2941 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2942 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2943 "finite-field" = dontDistribute super."finite-field"; 2944 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2945 "firstify" = dontDistribute super."firstify"; 2946 "fishfood" = dontDistribute super."fishfood"; ··· 5220 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5221 "monad-open" = dontDistribute super."monad-open"; 5222 "monad-ox" = dontDistribute super."monad-ox"; 5223 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5224 "monad-param" = dontDistribute super."monad-param"; 5225 "monad-peel" = dontDistribute super."monad-peel"; ··· 7353 "timecalc" = dontDistribute super."timecalc"; 7354 "timeconsole" = dontDistribute super."timeconsole"; 7355 "timeit" = dontDistribute super."timeit"; 7356 "timeout" = dontDistribute super."timeout"; 7357 "timeout-control" = dontDistribute super."timeout-control"; 7358 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7615 "unix-memory" = dontDistribute super."unix-memory"; 7616 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7617 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7618 "unlambda" = dontDistribute super."unlambda"; 7619 "unlit" = dontDistribute super."unlit"; 7620 "unm-hip" = dontDistribute super."unm-hip"; ··· 7742 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7743 "vector-static" = dontDistribute super."vector-static"; 7744 "vector-strategies" = dontDistribute super."vector-strategies"; 7745 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7746 "verbosity" = dontDistribute super."verbosity"; 7747 "verilog" = dontDistribute super."verilog";
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 604 "LambdaNet" = dontDistribute super."LambdaNet"; 605 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 606 "LambdaShell" = dontDistribute super."LambdaShell"; 607 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2943 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2944 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2945 "finite-field" = dontDistribute super."finite-field"; 2946 + "first-and-last" = dontDistribute super."first-and-last"; 2947 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2948 "firstify" = dontDistribute super."firstify"; 2949 "fishfood" = dontDistribute super."fishfood"; ··· 5223 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5224 "monad-open" = dontDistribute super."monad-open"; 5225 "monad-ox" = dontDistribute super."monad-ox"; 5226 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5227 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5228 "monad-param" = dontDistribute super."monad-param"; 5229 "monad-peel" = dontDistribute super."monad-peel"; ··· 7357 "timecalc" = dontDistribute super."timecalc"; 7358 "timeconsole" = dontDistribute super."timeconsole"; 7359 "timeit" = dontDistribute super."timeit"; 7360 + "timeless" = dontDistribute super."timeless"; 7361 "timeout" = dontDistribute super."timeout"; 7362 "timeout-control" = dontDistribute super."timeout-control"; 7363 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7620 "unix-memory" = dontDistribute super."unix-memory"; 7621 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7622 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7623 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7624 "unlambda" = dontDistribute super."unlambda"; 7625 "unlit" = dontDistribute super."unlit"; 7626 "unm-hip" = dontDistribute super."unm-hip"; ··· 7748 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7749 "vector-static" = dontDistribute super."vector-static"; 7750 "vector-strategies" = dontDistribute super."vector-strategies"; 7751 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7752 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7753 "verbosity" = dontDistribute super."verbosity"; 7754 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.17.nix
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 "GLUtil" = dontDistribute super."GLUtil"; 351 "GPX" = dontDistribute super."GPX"; ··· 603 "LambdaNet" = dontDistribute super."LambdaNet"; 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 607 "Lastik" = dontDistribute super."Lastik"; 608 "Lattices" = dontDistribute super."Lattices"; ··· 2936 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2937 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2938 "finite-field" = dontDistribute super."finite-field"; 2939 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2940 "firstify" = dontDistribute super."firstify"; 2941 "fishfood" = dontDistribute super."fishfood"; ··· 5212 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5213 "monad-open" = dontDistribute super."monad-open"; 5214 "monad-ox" = dontDistribute super."monad-ox"; 5215 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5216 "monad-param" = dontDistribute super."monad-param"; 5217 "monad-peel" = dontDistribute super."monad-peel"; ··· 7342 "timecalc" = dontDistribute super."timecalc"; 7343 "timeconsole" = dontDistribute super."timeconsole"; 7344 "timeit" = dontDistribute super."timeit"; 7345 "timeout" = dontDistribute super."timeout"; 7346 "timeout-control" = dontDistribute super."timeout-control"; 7347 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7604 "unix-memory" = dontDistribute super."unix-memory"; 7605 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7606 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7607 "unlambda" = dontDistribute super."unlambda"; 7608 "unlit" = dontDistribute super."unlit"; 7609 "unm-hip" = dontDistribute super."unm-hip"; ··· 7731 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7732 "vector-static" = dontDistribute super."vector-static"; 7733 "vector-strategies" = dontDistribute super."vector-strategies"; 7734 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7735 "verbosity" = dontDistribute super."verbosity"; 7736 "verilog" = dontDistribute super."verilog";
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 604 "LambdaNet" = dontDistribute super."LambdaNet"; 605 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 606 "LambdaShell" = dontDistribute super."LambdaShell"; 607 + "Lambdaya" = dontDistribute super."Lambdaya"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2938 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2939 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2940 "finite-field" = dontDistribute super."finite-field"; 2941 + "first-and-last" = dontDistribute super."first-and-last"; 2942 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2943 "firstify" = dontDistribute super."firstify"; 2944 "fishfood" = dontDistribute super."fishfood"; ··· 5215 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5216 "monad-open" = dontDistribute super."monad-open"; 5217 "monad-ox" = dontDistribute super."monad-ox"; 5218 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5219 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5220 "monad-param" = dontDistribute super."monad-param"; 5221 "monad-peel" = dontDistribute super."monad-peel"; ··· 7346 "timecalc" = dontDistribute super."timecalc"; 7347 "timeconsole" = dontDistribute super."timeconsole"; 7348 "timeit" = dontDistribute super."timeit"; 7349 + "timeless" = dontDistribute super."timeless"; 7350 "timeout" = dontDistribute super."timeout"; 7351 "timeout-control" = dontDistribute super."timeout-control"; 7352 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7609 "unix-memory" = dontDistribute super."unix-memory"; 7610 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7611 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7612 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7613 "unlambda" = dontDistribute super."unlambda"; 7614 "unlit" = dontDistribute super."unlit"; 7615 "unm-hip" = dontDistribute super."unm-hip"; ··· 7737 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7738 "vector-static" = dontDistribute super."vector-static"; 7739 "vector-strategies" = dontDistribute super."vector-strategies"; 7740 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7741 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7742 "verbosity" = dontDistribute super."verbosity"; 7743 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.18.nix
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 "GLUtil" = dontDistribute super."GLUtil"; 351 "GPX" = dontDistribute super."GPX"; ··· 602 "LambdaNet" = dontDistribute super."LambdaNet"; 603 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 604 "LambdaShell" = dontDistribute super."LambdaShell"; 605 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 606 "Lastik" = dontDistribute super."Lastik"; 607 "Lattices" = dontDistribute super."Lattices"; ··· 2930 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2931 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2932 "finite-field" = dontDistribute super."finite-field"; 2933 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2934 "firstify" = dontDistribute super."firstify"; 2935 "fishfood" = dontDistribute super."fishfood"; ··· 5204 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5205 "monad-open" = dontDistribute super."monad-open"; 5206 "monad-ox" = dontDistribute super."monad-ox"; 5207 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5208 "monad-param" = dontDistribute super."monad-param"; 5209 "monad-peel" = dontDistribute super."monad-peel"; ··· 7331 "timecalc" = dontDistribute super."timecalc"; 7332 "timeconsole" = dontDistribute super."timeconsole"; 7333 "timeit" = dontDistribute super."timeit"; 7334 "timeout" = dontDistribute super."timeout"; 7335 "timeout-control" = dontDistribute super."timeout-control"; 7336 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7593 "unix-memory" = dontDistribute super."unix-memory"; 7594 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7595 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7596 "unlambda" = dontDistribute super."unlambda"; 7597 "unlit" = dontDistribute super."unlit"; 7598 "unm-hip" = dontDistribute super."unm-hip"; ··· 7720 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7721 "vector-static" = dontDistribute super."vector-static"; 7722 "vector-strategies" = dontDistribute super."vector-strategies"; 7723 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7724 "verbosity" = dontDistribute super."verbosity"; 7725 "verilog" = dontDistribute super."verilog";
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 603 "LambdaNet" = dontDistribute super."LambdaNet"; 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 + "Lambdaya" = dontDistribute super."Lambdaya"; 607 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 608 "Lastik" = dontDistribute super."Lastik"; 609 "Lattices" = dontDistribute super."Lattices"; ··· 2932 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2933 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2934 "finite-field" = dontDistribute super."finite-field"; 2935 + "first-and-last" = dontDistribute super."first-and-last"; 2936 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2937 "firstify" = dontDistribute super."firstify"; 2938 "fishfood" = dontDistribute super."fishfood"; ··· 5207 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5208 "monad-open" = dontDistribute super."monad-open"; 5209 "monad-ox" = dontDistribute super."monad-ox"; 5210 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5211 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5212 "monad-param" = dontDistribute super."monad-param"; 5213 "monad-peel" = dontDistribute super."monad-peel"; ··· 7335 "timecalc" = dontDistribute super."timecalc"; 7336 "timeconsole" = dontDistribute super."timeconsole"; 7337 "timeit" = dontDistribute super."timeit"; 7338 + "timeless" = dontDistribute super."timeless"; 7339 "timeout" = dontDistribute super."timeout"; 7340 "timeout-control" = dontDistribute super."timeout-control"; 7341 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7598 "unix-memory" = dontDistribute super."unix-memory"; 7599 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7600 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7601 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7602 "unlambda" = dontDistribute super."unlambda"; 7603 "unlit" = dontDistribute super."unlit"; 7604 "unm-hip" = dontDistribute super."unm-hip"; ··· 7726 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7727 "vector-static" = dontDistribute super."vector-static"; 7728 "vector-strategies" = dontDistribute super."vector-strategies"; 7729 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7730 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7731 "verbosity" = dontDistribute super."verbosity"; 7732 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.19.nix
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 "GLUtil" = dontDistribute super."GLUtil"; 351 "GPX" = dontDistribute super."GPX"; ··· 602 "LambdaNet" = dontDistribute super."LambdaNet"; 603 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 604 "LambdaShell" = dontDistribute super."LambdaShell"; 605 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 606 "Lastik" = dontDistribute super."Lastik"; 607 "Lattices" = dontDistribute super."Lattices"; ··· 2930 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2931 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2932 "finite-field" = dontDistribute super."finite-field"; 2933 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2934 "firstify" = dontDistribute super."firstify"; 2935 "fishfood" = dontDistribute super."fishfood"; ··· 5202 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5203 "monad-open" = dontDistribute super."monad-open"; 5204 "monad-ox" = dontDistribute super."monad-ox"; 5205 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5206 "monad-param" = dontDistribute super."monad-param"; 5207 "monad-peel" = dontDistribute super."monad-peel"; ··· 7326 "timecalc" = dontDistribute super."timecalc"; 7327 "timeconsole" = dontDistribute super."timeconsole"; 7328 "timeit" = dontDistribute super."timeit"; 7329 "timeout" = dontDistribute super."timeout"; 7330 "timeout-control" = dontDistribute super."timeout-control"; 7331 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7588 "unix-memory" = dontDistribute super."unix-memory"; 7589 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7590 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7591 "unlambda" = dontDistribute super."unlambda"; 7592 "unlit" = dontDistribute super."unlit"; 7593 "unm-hip" = dontDistribute super."unm-hip"; ··· 7715 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7716 "vector-static" = dontDistribute super."vector-static"; 7717 "vector-strategies" = dontDistribute super."vector-strategies"; 7718 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7719 "verbosity" = dontDistribute super."verbosity"; 7720 "verilog" = dontDistribute super."verilog";
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 603 "LambdaNet" = dontDistribute super."LambdaNet"; 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 + "Lambdaya" = dontDistribute super."Lambdaya"; 607 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 608 "Lastik" = dontDistribute super."Lastik"; 609 "Lattices" = dontDistribute super."Lattices"; ··· 2932 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2933 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2934 "finite-field" = dontDistribute super."finite-field"; 2935 + "first-and-last" = dontDistribute super."first-and-last"; 2936 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2937 "firstify" = dontDistribute super."firstify"; 2938 "fishfood" = dontDistribute super."fishfood"; ··· 5205 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5206 "monad-open" = dontDistribute super."monad-open"; 5207 "monad-ox" = dontDistribute super."monad-ox"; 5208 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5209 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5210 "monad-param" = dontDistribute super."monad-param"; 5211 "monad-peel" = dontDistribute super."monad-peel"; ··· 7330 "timecalc" = dontDistribute super."timecalc"; 7331 "timeconsole" = dontDistribute super."timeconsole"; 7332 "timeit" = dontDistribute super."timeit"; 7333 + "timeless" = dontDistribute super."timeless"; 7334 "timeout" = dontDistribute super."timeout"; 7335 "timeout-control" = dontDistribute super."timeout-control"; 7336 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7593 "unix-memory" = dontDistribute super."unix-memory"; 7594 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7595 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7596 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7597 "unlambda" = dontDistribute super."unlambda"; 7598 "unlit" = dontDistribute super."unlit"; 7599 "unm-hip" = dontDistribute super."unm-hip"; ··· 7721 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7722 "vector-static" = dontDistribute super."vector-static"; 7723 "vector-strategies" = dontDistribute super."vector-strategies"; 7724 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7725 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7726 "verbosity" = dontDistribute super."verbosity"; 7727 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.2.nix
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2971 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2972 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2973 "finite-field" = dontDistribute super."finite-field"; 2974 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2975 "firstify" = dontDistribute super."firstify"; 2976 "fishfood" = dontDistribute super."fishfood"; ··· 5286 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5287 "monad-open" = dontDistribute super."monad-open"; 5288 "monad-ox" = dontDistribute super."monad-ox"; 5289 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5290 "monad-param" = dontDistribute super."monad-param"; 5291 "monad-peel" = dontDistribute super."monad-peel"; ··· 7456 "timecalc" = dontDistribute super."timecalc"; 7457 "timeconsole" = dontDistribute super."timeconsole"; 7458 "timeit" = dontDistribute super."timeit"; 7459 "timeout" = dontDistribute super."timeout"; 7460 "timeout-control" = dontDistribute super."timeout-control"; 7461 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7720 "unix-memory" = dontDistribute super."unix-memory"; 7721 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7722 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7723 "unlambda" = dontDistribute super."unlambda"; 7724 "unlit" = dontDistribute super."unlit"; 7725 "unm-hip" = dontDistribute super."unm-hip"; ··· 7847 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7848 "vector-static" = dontDistribute super."vector-static"; 7849 "vector-strategies" = dontDistribute super."vector-strategies"; 7850 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7851 "verbosity" = dontDistribute super."verbosity"; 7852 "verilog" = dontDistribute super."verilog";
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 612 "Lastik" = dontDistribute super."Lastik"; 613 "Lattices" = dontDistribute super."Lattices"; ··· 2972 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2973 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2974 "finite-field" = dontDistribute super."finite-field"; 2975 + "first-and-last" = dontDistribute super."first-and-last"; 2976 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2977 "firstify" = dontDistribute super."firstify"; 2978 "fishfood" = dontDistribute super."fishfood"; ··· 5288 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5289 "monad-open" = dontDistribute super."monad-open"; 5290 "monad-ox" = dontDistribute super."monad-ox"; 5291 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5292 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5293 "monad-param" = dontDistribute super."monad-param"; 5294 "monad-peel" = dontDistribute super."monad-peel"; ··· 7459 "timecalc" = dontDistribute super."timecalc"; 7460 "timeconsole" = dontDistribute super."timeconsole"; 7461 "timeit" = dontDistribute super."timeit"; 7462 + "timeless" = dontDistribute super."timeless"; 7463 "timeout" = dontDistribute super."timeout"; 7464 "timeout-control" = dontDistribute super."timeout-control"; 7465 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7724 "unix-memory" = dontDistribute super."unix-memory"; 7725 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7726 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7727 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7728 "unlambda" = dontDistribute super."unlambda"; 7729 "unlit" = dontDistribute super."unlit"; 7730 "unm-hip" = dontDistribute super."unm-hip"; ··· 7852 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7853 "vector-static" = dontDistribute super."vector-static"; 7854 "vector-strategies" = dontDistribute super."vector-strategies"; 7855 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7856 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7857 "verbosity" = dontDistribute super."verbosity"; 7858 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.20.nix
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 "GLUtil" = dontDistribute super."GLUtil"; 351 "GPX" = dontDistribute super."GPX"; ··· 602 "LambdaNet" = dontDistribute super."LambdaNet"; 603 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 604 "LambdaShell" = dontDistribute super."LambdaShell"; 605 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 606 "Lastik" = dontDistribute super."Lastik"; 607 "Lattices" = dontDistribute super."Lattices"; ··· 2926 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2927 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2928 "finite-field" = dontDistribute super."finite-field"; 2929 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2930 "firstify" = dontDistribute super."firstify"; 2931 "fishfood" = dontDistribute super."fishfood"; ··· 5197 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5198 "monad-open" = dontDistribute super."monad-open"; 5199 "monad-ox" = dontDistribute super."monad-ox"; 5200 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5201 "monad-param" = dontDistribute super."monad-param"; 5202 "monad-peel" = dontDistribute super."monad-peel"; ··· 7319 "timecalc" = dontDistribute super."timecalc"; 7320 "timeconsole" = dontDistribute super."timeconsole"; 7321 "timeit" = dontDistribute super."timeit"; 7322 "timeout" = dontDistribute super."timeout"; 7323 "timeout-control" = dontDistribute super."timeout-control"; 7324 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7581 "unix-memory" = dontDistribute super."unix-memory"; 7582 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7583 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7584 "unlambda" = dontDistribute super."unlambda"; 7585 "unlit" = dontDistribute super."unlit"; 7586 "unm-hip" = dontDistribute super."unm-hip"; ··· 7708 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7709 "vector-static" = dontDistribute super."vector-static"; 7710 "vector-strategies" = dontDistribute super."vector-strategies"; 7711 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7712 "verbosity" = dontDistribute super."verbosity"; 7713 "verilog" = dontDistribute super."verilog";
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 603 "LambdaNet" = dontDistribute super."LambdaNet"; 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 + "Lambdaya" = dontDistribute super."Lambdaya"; 607 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 608 "Lastik" = dontDistribute super."Lastik"; 609 "Lattices" = dontDistribute super."Lattices"; ··· 2928 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2929 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2930 "finite-field" = dontDistribute super."finite-field"; 2931 + "first-and-last" = dontDistribute super."first-and-last"; 2932 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2933 "firstify" = dontDistribute super."firstify"; 2934 "fishfood" = dontDistribute super."fishfood"; ··· 5200 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5201 "monad-open" = dontDistribute super."monad-open"; 5202 "monad-ox" = dontDistribute super."monad-ox"; 5203 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5204 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5205 "monad-param" = dontDistribute super."monad-param"; 5206 "monad-peel" = dontDistribute super."monad-peel"; ··· 7323 "timecalc" = dontDistribute super."timecalc"; 7324 "timeconsole" = dontDistribute super."timeconsole"; 7325 "timeit" = dontDistribute super."timeit"; 7326 + "timeless" = dontDistribute super."timeless"; 7327 "timeout" = dontDistribute super."timeout"; 7328 "timeout-control" = dontDistribute super."timeout-control"; 7329 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7586 "unix-memory" = dontDistribute super."unix-memory"; 7587 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7588 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7589 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7590 "unlambda" = dontDistribute super."unlambda"; 7591 "unlit" = dontDistribute super."unlit"; 7592 "unm-hip" = dontDistribute super."unm-hip"; ··· 7714 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7715 "vector-static" = dontDistribute super."vector-static"; 7716 "vector-strategies" = dontDistribute super."vector-strategies"; 7717 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7718 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7719 "verbosity" = dontDistribute super."verbosity"; 7720 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.21.nix
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 "GLUtil" = dontDistribute super."GLUtil"; 351 "GPX" = dontDistribute super."GPX"; ··· 602 "LambdaNet" = dontDistribute super."LambdaNet"; 603 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 604 "LambdaShell" = dontDistribute super."LambdaShell"; 605 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 606 "Lastik" = dontDistribute super."Lastik"; 607 "Lattices" = dontDistribute super."Lattices"; ··· 2926 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2927 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2928 "finite-field" = dontDistribute super."finite-field"; 2929 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2930 "firstify" = dontDistribute super."firstify"; 2931 "fishfood" = dontDistribute super."fishfood"; ··· 5195 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5196 "monad-open" = dontDistribute super."monad-open"; 5197 "monad-ox" = dontDistribute super."monad-ox"; 5198 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5199 "monad-param" = dontDistribute super."monad-param"; 5200 "monad-peel" = dontDistribute super."monad-peel"; ··· 7313 "timecalc" = dontDistribute super."timecalc"; 7314 "timeconsole" = dontDistribute super."timeconsole"; 7315 "timeit" = dontDistribute super."timeit"; 7316 "timeout" = dontDistribute super."timeout"; 7317 "timeout-control" = dontDistribute super."timeout-control"; 7318 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7575 "unix-memory" = dontDistribute super."unix-memory"; 7576 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7577 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7578 "unlambda" = dontDistribute super."unlambda"; 7579 "unlit" = dontDistribute super."unlit"; 7580 "unm-hip" = dontDistribute super."unm-hip"; ··· 7700 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7701 "vector-static" = dontDistribute super."vector-static"; 7702 "vector-strategies" = dontDistribute super."vector-strategies"; 7703 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7704 "verbosity" = dontDistribute super."verbosity"; 7705 "verilog" = dontDistribute super."verilog";
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 603 "LambdaNet" = dontDistribute super."LambdaNet"; 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 + "Lambdaya" = dontDistribute super."Lambdaya"; 607 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 608 "Lastik" = dontDistribute super."Lastik"; 609 "Lattices" = dontDistribute super."Lattices"; ··· 2928 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2929 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2930 "finite-field" = dontDistribute super."finite-field"; 2931 + "first-and-last" = dontDistribute super."first-and-last"; 2932 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2933 "firstify" = dontDistribute super."firstify"; 2934 "fishfood" = dontDistribute super."fishfood"; ··· 5198 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5199 "monad-open" = dontDistribute super."monad-open"; 5200 "monad-ox" = dontDistribute super."monad-ox"; 5201 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5202 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5203 "monad-param" = dontDistribute super."monad-param"; 5204 "monad-peel" = dontDistribute super."monad-peel"; ··· 7317 "timecalc" = dontDistribute super."timecalc"; 7318 "timeconsole" = dontDistribute super."timeconsole"; 7319 "timeit" = dontDistribute super."timeit"; 7320 + "timeless" = dontDistribute super."timeless"; 7321 "timeout" = dontDistribute super."timeout"; 7322 "timeout-control" = dontDistribute super."timeout-control"; 7323 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7580 "unix-memory" = dontDistribute super."unix-memory"; 7581 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7582 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7583 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7584 "unlambda" = dontDistribute super."unlambda"; 7585 "unlit" = dontDistribute super."unlit"; 7586 "unm-hip" = dontDistribute super."unm-hip"; ··· 7706 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7707 "vector-static" = dontDistribute super."vector-static"; 7708 "vector-strategies" = dontDistribute super."vector-strategies"; 7709 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7710 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7711 "verbosity" = dontDistribute super."verbosity"; 7712 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.22.nix
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 350 "GLUtil" = dontDistribute super."GLUtil"; 351 "GPX" = dontDistribute super."GPX"; ··· 602 "LambdaNet" = dontDistribute super."LambdaNet"; 603 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 604 "LambdaShell" = dontDistribute super."LambdaShell"; 605 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 606 "Lastik" = dontDistribute super."Lastik"; 607 "Lattices" = dontDistribute super."Lattices"; ··· 2925 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2926 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2927 "finite-field" = dontDistribute super."finite-field"; 2928 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2929 "firstify" = dontDistribute super."firstify"; 2930 "fishfood" = dontDistribute super."fishfood"; ··· 5191 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5192 "monad-open" = dontDistribute super."monad-open"; 5193 "monad-ox" = dontDistribute super."monad-ox"; 5194 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5195 "monad-param" = dontDistribute super."monad-param"; 5196 "monad-peel" = dontDistribute super."monad-peel"; ··· 7309 "timecalc" = dontDistribute super."timecalc"; 7310 "timeconsole" = dontDistribute super."timeconsole"; 7311 "timeit" = dontDistribute super."timeit"; 7312 "timeout" = dontDistribute super."timeout"; 7313 "timeout-control" = dontDistribute super."timeout-control"; 7314 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7571 "unix-memory" = dontDistribute super."unix-memory"; 7572 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7573 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7574 "unlambda" = dontDistribute super."unlambda"; 7575 "unlit" = dontDistribute super."unlit"; 7576 "unm-hip" = dontDistribute super."unm-hip"; ··· 7696 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7697 "vector-static" = dontDistribute super."vector-static"; 7698 "vector-strategies" = dontDistribute super."vector-strategies"; 7699 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7700 "verbosity" = dontDistribute super."verbosity"; 7701 "verilog" = dontDistribute super."verilog";
··· 346 "GLHUI" = dontDistribute super."GLHUI"; 347 "GLM" = dontDistribute super."GLM"; 348 "GLMatrix" = dontDistribute super."GLMatrix"; 349 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 603 "LambdaNet" = dontDistribute super."LambdaNet"; 604 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 605 "LambdaShell" = dontDistribute super."LambdaShell"; 606 + "Lambdaya" = dontDistribute super."Lambdaya"; 607 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 608 "Lastik" = dontDistribute super."Lastik"; 609 "Lattices" = dontDistribute super."Lattices"; ··· 2927 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2928 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2929 "finite-field" = dontDistribute super."finite-field"; 2930 + "first-and-last" = dontDistribute super."first-and-last"; 2931 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2932 "firstify" = dontDistribute super."firstify"; 2933 "fishfood" = dontDistribute super."fishfood"; ··· 5194 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5195 "monad-open" = dontDistribute super."monad-open"; 5196 "monad-ox" = dontDistribute super."monad-ox"; 5197 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5198 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5199 "monad-param" = dontDistribute super."monad-param"; 5200 "monad-peel" = dontDistribute super."monad-peel"; ··· 7313 "timecalc" = dontDistribute super."timecalc"; 7314 "timeconsole" = dontDistribute super."timeconsole"; 7315 "timeit" = dontDistribute super."timeit"; 7316 + "timeless" = dontDistribute super."timeless"; 7317 "timeout" = dontDistribute super."timeout"; 7318 "timeout-control" = dontDistribute super."timeout-control"; 7319 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7576 "unix-memory" = dontDistribute super."unix-memory"; 7577 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7578 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7579 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7580 "unlambda" = dontDistribute super."unlambda"; 7581 "unlit" = dontDistribute super."unlit"; 7582 "unm-hip" = dontDistribute super."unm-hip"; ··· 7702 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7703 "vector-static" = dontDistribute super."vector-static"; 7704 "vector-strategies" = dontDistribute super."vector-strategies"; 7705 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7706 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7707 "verbosity" = dontDistribute super."verbosity"; 7708 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.3.nix
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2970 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2971 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2972 "finite-field" = dontDistribute super."finite-field"; 2973 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2974 "firstify" = dontDistribute super."firstify"; 2975 "fishfood" = dontDistribute super."fishfood"; ··· 5284 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5285 "monad-open" = dontDistribute super."monad-open"; 5286 "monad-ox" = dontDistribute super."monad-ox"; 5287 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5288 "monad-param" = dontDistribute super."monad-param"; 5289 "monad-peel" = dontDistribute super."monad-peel"; ··· 7453 "timecalc" = dontDistribute super."timecalc"; 7454 "timeconsole" = dontDistribute super."timeconsole"; 7455 "timeit" = dontDistribute super."timeit"; 7456 "timeout" = dontDistribute super."timeout"; 7457 "timeout-control" = dontDistribute super."timeout-control"; 7458 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7717 "unix-memory" = dontDistribute super."unix-memory"; 7718 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7719 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7720 "unlambda" = dontDistribute super."unlambda"; 7721 "unlit" = dontDistribute super."unlit"; 7722 "unm-hip" = dontDistribute super."unm-hip"; ··· 7844 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7845 "vector-static" = dontDistribute super."vector-static"; 7846 "vector-strategies" = dontDistribute super."vector-strategies"; 7847 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7848 "verbosity" = dontDistribute super."verbosity"; 7849 "verilog" = dontDistribute super."verilog";
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 612 "Lastik" = dontDistribute super."Lastik"; 613 "Lattices" = dontDistribute super."Lattices"; ··· 2971 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2972 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2973 "finite-field" = dontDistribute super."finite-field"; 2974 + "first-and-last" = dontDistribute super."first-and-last"; 2975 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2976 "firstify" = dontDistribute super."firstify"; 2977 "fishfood" = dontDistribute super."fishfood"; ··· 5286 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5287 "monad-open" = dontDistribute super."monad-open"; 5288 "monad-ox" = dontDistribute super."monad-ox"; 5289 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5290 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5291 "monad-param" = dontDistribute super."monad-param"; 5292 "monad-peel" = dontDistribute super."monad-peel"; ··· 7456 "timecalc" = dontDistribute super."timecalc"; 7457 "timeconsole" = dontDistribute super."timeconsole"; 7458 "timeit" = dontDistribute super."timeit"; 7459 + "timeless" = dontDistribute super."timeless"; 7460 "timeout" = dontDistribute super."timeout"; 7461 "timeout-control" = dontDistribute super."timeout-control"; 7462 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7721 "unix-memory" = dontDistribute super."unix-memory"; 7722 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7723 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7724 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7725 "unlambda" = dontDistribute super."unlambda"; 7726 "unlit" = dontDistribute super."unlit"; 7727 "unm-hip" = dontDistribute super."unm-hip"; ··· 7849 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7850 "vector-static" = dontDistribute super."vector-static"; 7851 "vector-strategies" = dontDistribute super."vector-strategies"; 7852 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7853 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7854 "verbosity" = dontDistribute super."verbosity"; 7855 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.4.nix
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2969 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2970 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2971 "finite-field" = dontDistribute super."finite-field"; 2972 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2973 "firstify" = dontDistribute super."firstify"; 2974 "fishfood" = dontDistribute super."fishfood"; ··· 5282 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5283 "monad-open" = dontDistribute super."monad-open"; 5284 "monad-ox" = dontDistribute super."monad-ox"; 5285 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5286 "monad-param" = dontDistribute super."monad-param"; 5287 "monad-peel" = dontDistribute super."monad-peel"; ··· 7447 "timecalc" = dontDistribute super."timecalc"; 7448 "timeconsole" = dontDistribute super."timeconsole"; 7449 "timeit" = dontDistribute super."timeit"; 7450 "timeout" = dontDistribute super."timeout"; 7451 "timeout-control" = dontDistribute super."timeout-control"; 7452 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7711 "unix-memory" = dontDistribute super."unix-memory"; 7712 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7713 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7714 "unlambda" = dontDistribute super."unlambda"; 7715 "unlit" = dontDistribute super."unlit"; 7716 "unm-hip" = dontDistribute super."unm-hip"; ··· 7838 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7839 "vector-static" = dontDistribute super."vector-static"; 7840 "vector-strategies" = dontDistribute super."vector-strategies"; 7841 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7842 "verbosity" = dontDistribute super."verbosity"; 7843 "verilog" = dontDistribute super."verilog";
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 612 "Lastik" = dontDistribute super."Lastik"; 613 "Lattices" = dontDistribute super."Lattices"; ··· 2970 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2971 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2972 "finite-field" = dontDistribute super."finite-field"; 2973 + "first-and-last" = dontDistribute super."first-and-last"; 2974 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2975 "firstify" = dontDistribute super."firstify"; 2976 "fishfood" = dontDistribute super."fishfood"; ··· 5284 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5285 "monad-open" = dontDistribute super."monad-open"; 5286 "monad-ox" = dontDistribute super."monad-ox"; 5287 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5288 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5289 "monad-param" = dontDistribute super."monad-param"; 5290 "monad-peel" = dontDistribute super."monad-peel"; ··· 7450 "timecalc" = dontDistribute super."timecalc"; 7451 "timeconsole" = dontDistribute super."timeconsole"; 7452 "timeit" = dontDistribute super."timeit"; 7453 + "timeless" = dontDistribute super."timeless"; 7454 "timeout" = dontDistribute super."timeout"; 7455 "timeout-control" = dontDistribute super."timeout-control"; 7456 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7715 "unix-memory" = dontDistribute super."unix-memory"; 7716 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7717 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7718 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7719 "unlambda" = dontDistribute super."unlambda"; 7720 "unlit" = dontDistribute super."unlit"; 7721 "unm-hip" = dontDistribute super."unm-hip"; ··· 7843 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7844 "vector-static" = dontDistribute super."vector-static"; 7845 "vector-strategies" = dontDistribute super."vector-strategies"; 7846 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7847 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7848 "verbosity" = dontDistribute super."verbosity"; 7849 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.5.nix
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2967 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2968 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2969 "finite-field" = dontDistribute super."finite-field"; 2970 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2971 "firstify" = dontDistribute super."firstify"; 2972 "fishfood" = dontDistribute super."fishfood"; ··· 5279 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5280 "monad-open" = dontDistribute super."monad-open"; 5281 "monad-ox" = dontDistribute super."monad-ox"; 5282 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5283 "monad-param" = dontDistribute super."monad-param"; 5284 "monad-peel" = dontDistribute super."monad-peel"; ··· 7443 "timecalc" = dontDistribute super."timecalc"; 7444 "timeconsole" = dontDistribute super."timeconsole"; 7445 "timeit" = dontDistribute super."timeit"; 7446 "timeout" = dontDistribute super."timeout"; 7447 "timeout-control" = dontDistribute super."timeout-control"; 7448 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7707 "unix-memory" = dontDistribute super."unix-memory"; 7708 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7709 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7710 "unlambda" = dontDistribute super."unlambda"; 7711 "unlit" = dontDistribute super."unlit"; 7712 "unm-hip" = dontDistribute super."unm-hip"; ··· 7834 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7835 "vector-static" = dontDistribute super."vector-static"; 7836 "vector-strategies" = dontDistribute super."vector-strategies"; 7837 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7838 "verbosity" = dontDistribute super."verbosity"; 7839 "verilog" = dontDistribute super."verilog";
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 612 "Lastik" = dontDistribute super."Lastik"; 613 "Lattices" = dontDistribute super."Lattices"; ··· 2968 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2969 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2970 "finite-field" = dontDistribute super."finite-field"; 2971 + "first-and-last" = dontDistribute super."first-and-last"; 2972 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2973 "firstify" = dontDistribute super."firstify"; 2974 "fishfood" = dontDistribute super."fishfood"; ··· 5281 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5282 "monad-open" = dontDistribute super."monad-open"; 5283 "monad-ox" = dontDistribute super."monad-ox"; 5284 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5285 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5286 "monad-param" = dontDistribute super."monad-param"; 5287 "monad-peel" = dontDistribute super."monad-peel"; ··· 7446 "timecalc" = dontDistribute super."timecalc"; 7447 "timeconsole" = dontDistribute super."timeconsole"; 7448 "timeit" = dontDistribute super."timeit"; 7449 + "timeless" = dontDistribute super."timeless"; 7450 "timeout" = dontDistribute super."timeout"; 7451 "timeout-control" = dontDistribute super."timeout-control"; 7452 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7711 "unix-memory" = dontDistribute super."unix-memory"; 7712 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7713 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7714 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7715 "unlambda" = dontDistribute super."unlambda"; 7716 "unlit" = dontDistribute super."unlit"; 7717 "unm-hip" = dontDistribute super."unm-hip"; ··· 7839 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7840 "vector-static" = dontDistribute super."vector-static"; 7841 "vector-strategies" = dontDistribute super."vector-strategies"; 7842 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7843 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7844 "verbosity" = dontDistribute super."verbosity"; 7845 "verilog" = dontDistribute super."verilog";
+6
pkgs/development/haskell-modules/configuration-lts-2.6.nix
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2963 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2964 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2965 "finite-field" = dontDistribute super."finite-field"; 2966 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2967 "firstify" = dontDistribute super."firstify"; 2968 "fishfood" = dontDistribute super."fishfood"; ··· 5273 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5274 "monad-open" = dontDistribute super."monad-open"; 5275 "monad-ox" = dontDistribute super."monad-ox"; 5276 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5277 "monad-param" = dontDistribute super."monad-param"; 5278 "monad-peel" = dontDistribute super."monad-peel"; ··· 7436 "timecalc" = dontDistribute super."timecalc"; 7437 "timeconsole" = dontDistribute super."timeconsole"; 7438 "timeit" = dontDistribute super."timeit"; 7439 "timeout" = dontDistribute super."timeout"; 7440 "timeout-control" = dontDistribute super."timeout-control"; 7441 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7698 "unix-memory" = dontDistribute super."unix-memory"; 7699 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7700 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7701 "unlambda" = dontDistribute super."unlambda"; 7702 "unlit" = dontDistribute super."unlit"; 7703 "unm-hip" = dontDistribute super."unm-hip"; ··· 7825 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7826 "vector-static" = dontDistribute super."vector-static"; 7827 "vector-strategies" = dontDistribute super."vector-strategies"; 7828 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7829 "verbosity" = dontDistribute super."verbosity"; 7830 "verilog" = dontDistribute super."verilog";
··· 607 "LambdaNet" = dontDistribute super."LambdaNet"; 608 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 609 "LambdaShell" = dontDistribute super."LambdaShell"; 610 + "Lambdaya" = dontDistribute super."Lambdaya"; 611 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 612 "Lastik" = dontDistribute super."Lastik"; 613 "Lattices" = dontDistribute super."Lattices"; ··· 2964 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2965 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2966 "finite-field" = dontDistribute super."finite-field"; 2967 + "first-and-last" = dontDistribute super."first-and-last"; 2968 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2969 "firstify" = dontDistribute super."firstify"; 2970 "fishfood" = dontDistribute super."fishfood"; ··· 5275 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5276 "monad-open" = dontDistribute super."monad-open"; 5277 "monad-ox" = dontDistribute super."monad-ox"; 5278 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5279 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5280 "monad-param" = dontDistribute super."monad-param"; 5281 "monad-peel" = dontDistribute super."monad-peel"; ··· 7439 "timecalc" = dontDistribute super."timecalc"; 7440 "timeconsole" = dontDistribute super."timeconsole"; 7441 "timeit" = dontDistribute super."timeit"; 7442 + "timeless" = dontDistribute super."timeless"; 7443 "timeout" = dontDistribute super."timeout"; 7444 "timeout-control" = dontDistribute super."timeout-control"; 7445 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7702 "unix-memory" = dontDistribute super."unix-memory"; 7703 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7704 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7705 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7706 "unlambda" = dontDistribute super."unlambda"; 7707 "unlit" = dontDistribute super."unlit"; 7708 "unm-hip" = dontDistribute super."unm-hip"; ··· 7830 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7831 "vector-static" = dontDistribute super."vector-static"; 7832 "vector-strategies" = dontDistribute super."vector-strategies"; 7833 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7834 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7835 "verbosity" = dontDistribute super."verbosity"; 7836 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.7.nix
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 605 "LambdaNet" = dontDistribute super."LambdaNet"; 606 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 "LambdaShell" = dontDistribute super."LambdaShell"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2961 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2962 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2963 "finite-field" = dontDistribute super."finite-field"; 2964 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2965 "firstify" = dontDistribute super."firstify"; 2966 "fishfood" = dontDistribute super."fishfood"; ··· 5271 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5272 "monad-open" = dontDistribute super."monad-open"; 5273 "monad-ox" = dontDistribute super."monad-ox"; 5274 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5275 "monad-param" = dontDistribute super."monad-param"; 5276 "monad-peel" = dontDistribute super."monad-peel"; ··· 7434 "timecalc" = dontDistribute super."timecalc"; 7435 "timeconsole" = dontDistribute super."timeconsole"; 7436 "timeit" = dontDistribute super."timeit"; 7437 "timeout" = dontDistribute super."timeout"; 7438 "timeout-control" = dontDistribute super."timeout-control"; 7439 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7696 "unix-memory" = dontDistribute super."unix-memory"; 7697 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7698 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7699 "unlambda" = dontDistribute super."unlambda"; 7700 "unlit" = dontDistribute super."unlit"; 7701 "unm-hip" = dontDistribute super."unm-hip"; ··· 7823 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7824 "vector-static" = dontDistribute super."vector-static"; 7825 "vector-strategies" = dontDistribute super."vector-strategies"; 7826 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7827 "verbosity" = dontDistribute super."verbosity"; 7828 "verilog" = dontDistribute super."verilog";
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 352 "GLUtil" = dontDistribute super."GLUtil"; 353 "GPX" = dontDistribute super."GPX"; ··· 606 "LambdaNet" = dontDistribute super."LambdaNet"; 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2963 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2964 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2965 "finite-field" = dontDistribute super."finite-field"; 2966 + "first-and-last" = dontDistribute super."first-and-last"; 2967 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2968 "firstify" = dontDistribute super."firstify"; 2969 "fishfood" = dontDistribute super."fishfood"; ··· 5274 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5275 "monad-open" = dontDistribute super."monad-open"; 5276 "monad-ox" = dontDistribute super."monad-ox"; 5277 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5278 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5279 "monad-param" = dontDistribute super."monad-param"; 5280 "monad-peel" = dontDistribute super."monad-peel"; ··· 7438 "timecalc" = dontDistribute super."timecalc"; 7439 "timeconsole" = dontDistribute super."timeconsole"; 7440 "timeit" = dontDistribute super."timeit"; 7441 + "timeless" = dontDistribute super."timeless"; 7442 "timeout" = dontDistribute super."timeout"; 7443 "timeout-control" = dontDistribute super."timeout-control"; 7444 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7701 "unix-memory" = dontDistribute super."unix-memory"; 7702 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7703 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7704 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7705 "unlambda" = dontDistribute super."unlambda"; 7706 "unlit" = dontDistribute super."unlit"; 7707 "unm-hip" = dontDistribute super."unm-hip"; ··· 7829 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7830 "vector-static" = dontDistribute super."vector-static"; 7831 "vector-strategies" = dontDistribute super."vector-strategies"; 7832 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7833 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7834 "verbosity" = dontDistribute super."verbosity"; 7835 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.8.nix
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 605 "LambdaNet" = dontDistribute super."LambdaNet"; 606 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 "LambdaShell" = dontDistribute super."LambdaShell"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2960 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2961 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2962 "finite-field" = dontDistribute super."finite-field"; 2963 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2964 "firstify" = dontDistribute super."firstify"; 2965 "fishfood" = dontDistribute super."fishfood"; ··· 5267 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5268 "monad-open" = dontDistribute super."monad-open"; 5269 "monad-ox" = dontDistribute super."monad-ox"; 5270 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5271 "monad-param" = dontDistribute super."monad-param"; 5272 "monad-peel" = dontDistribute super."monad-peel"; ··· 7426 "timecalc" = dontDistribute super."timecalc"; 7427 "timeconsole" = dontDistribute super."timeconsole"; 7428 "timeit" = dontDistribute super."timeit"; 7429 "timeout" = dontDistribute super."timeout"; 7430 "timeout-control" = dontDistribute super."timeout-control"; 7431 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7688 "unix-memory" = dontDistribute super."unix-memory"; 7689 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7690 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7691 "unlambda" = dontDistribute super."unlambda"; 7692 "unlit" = dontDistribute super."unlit"; 7693 "unm-hip" = dontDistribute super."unm-hip"; ··· 7815 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7816 "vector-static" = dontDistribute super."vector-static"; 7817 "vector-strategies" = dontDistribute super."vector-strategies"; 7818 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7819 "verbosity" = dontDistribute super."verbosity"; 7820 "verilog" = dontDistribute super."verilog";
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 352 "GLUtil" = dontDistribute super."GLUtil"; 353 "GPX" = dontDistribute super."GPX"; ··· 606 "LambdaNet" = dontDistribute super."LambdaNet"; 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2962 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2963 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2964 "finite-field" = dontDistribute super."finite-field"; 2965 + "first-and-last" = dontDistribute super."first-and-last"; 2966 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2967 "firstify" = dontDistribute super."firstify"; 2968 "fishfood" = dontDistribute super."fishfood"; ··· 5270 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5271 "monad-open" = dontDistribute super."monad-open"; 5272 "monad-ox" = dontDistribute super."monad-ox"; 5273 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5274 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5275 "monad-param" = dontDistribute super."monad-param"; 5276 "monad-peel" = dontDistribute super."monad-peel"; ··· 7430 "timecalc" = dontDistribute super."timecalc"; 7431 "timeconsole" = dontDistribute super."timeconsole"; 7432 "timeit" = dontDistribute super."timeit"; 7433 + "timeless" = dontDistribute super."timeless"; 7434 "timeout" = dontDistribute super."timeout"; 7435 "timeout-control" = dontDistribute super."timeout-control"; 7436 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7693 "unix-memory" = dontDistribute super."unix-memory"; 7694 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7695 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7696 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7697 "unlambda" = dontDistribute super."unlambda"; 7698 "unlit" = dontDistribute super."unlit"; 7699 "unm-hip" = dontDistribute super."unm-hip"; ··· 7821 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7822 "vector-static" = dontDistribute super."vector-static"; 7823 "vector-strategies" = dontDistribute super."vector-strategies"; 7824 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7825 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7826 "verbosity" = dontDistribute super."verbosity"; 7827 "verilog" = dontDistribute super."verilog";
+7
pkgs/development/haskell-modules/configuration-lts-2.9.nix
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 351 "GLUtil" = dontDistribute super."GLUtil"; 352 "GPX" = dontDistribute super."GPX"; ··· 605 "LambdaNet" = dontDistribute super."LambdaNet"; 606 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 607 "LambdaShell" = dontDistribute super."LambdaShell"; 608 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 609 "Lastik" = dontDistribute super."Lastik"; 610 "Lattices" = dontDistribute super."Lattices"; ··· 2955 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2956 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2957 "finite-field" = dontDistribute super."finite-field"; 2958 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2959 "firstify" = dontDistribute super."firstify"; 2960 "fishfood" = dontDistribute super."fishfood"; ··· 5257 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5258 "monad-open" = dontDistribute super."monad-open"; 5259 "monad-ox" = dontDistribute super."monad-ox"; 5260 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5261 "monad-param" = dontDistribute super."monad-param"; 5262 "monad-peel" = dontDistribute super."monad-peel"; ··· 7409 "timecalc" = dontDistribute super."timecalc"; 7410 "timeconsole" = dontDistribute super."timeconsole"; 7411 "timeit" = dontDistribute super."timeit"; 7412 "timeout" = dontDistribute super."timeout"; 7413 "timeout-control" = dontDistribute super."timeout-control"; 7414 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7671 "unix-memory" = dontDistribute super."unix-memory"; 7672 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7673 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7674 "unlambda" = dontDistribute super."unlambda"; 7675 "unlit" = dontDistribute super."unlit"; 7676 "unm-hip" = dontDistribute super."unm-hip"; ··· 7798 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7799 "vector-static" = dontDistribute super."vector-static"; 7800 "vector-strategies" = dontDistribute super."vector-strategies"; 7801 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7802 "verbosity" = dontDistribute super."verbosity"; 7803 "verilog" = dontDistribute super."verilog";
··· 347 "GLHUI" = dontDistribute super."GLHUI"; 348 "GLM" = dontDistribute super."GLM"; 349 "GLMatrix" = dontDistribute super."GLMatrix"; 350 + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; 351 "GLUT" = doDistribute super."GLUT_2_7_0_1"; 352 "GLUtil" = dontDistribute super."GLUtil"; 353 "GPX" = dontDistribute super."GPX"; ··· 606 "LambdaNet" = dontDistribute super."LambdaNet"; 607 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 608 "LambdaShell" = dontDistribute super."LambdaShell"; 609 + "Lambdaya" = dontDistribute super."Lambdaya"; 610 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 611 "Lastik" = dontDistribute super."Lastik"; 612 "Lattices" = dontDistribute super."Lattices"; ··· 2957 "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; 2958 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2959 "finite-field" = dontDistribute super."finite-field"; 2960 + "first-and-last" = dontDistribute super."first-and-last"; 2961 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2962 "firstify" = dontDistribute super."firstify"; 2963 "fishfood" = dontDistribute super."fishfood"; ··· 5260 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 5261 "monad-open" = dontDistribute super."monad-open"; 5262 "monad-ox" = dontDistribute super."monad-ox"; 5263 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 5264 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 5265 "monad-param" = dontDistribute super."monad-param"; 5266 "monad-peel" = dontDistribute super."monad-peel"; ··· 7413 "timecalc" = dontDistribute super."timecalc"; 7414 "timeconsole" = dontDistribute super."timeconsole"; 7415 "timeit" = dontDistribute super."timeit"; 7416 + "timeless" = dontDistribute super."timeless"; 7417 "timeout" = dontDistribute super."timeout"; 7418 "timeout-control" = dontDistribute super."timeout-control"; 7419 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7676 "unix-memory" = dontDistribute super."unix-memory"; 7677 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7678 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7679 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7680 "unlambda" = dontDistribute super."unlambda"; 7681 "unlit" = dontDistribute super."unlit"; 7682 "unm-hip" = dontDistribute super."unm-hip"; ··· 7804 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7805 "vector-static" = dontDistribute super."vector-static"; 7806 "vector-strategies" = dontDistribute super."vector-strategies"; 7807 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7808 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7809 "verbosity" = dontDistribute super."verbosity"; 7810 "verilog" = dontDistribute super."verilog";
+9
pkgs/development/haskell-modules/configuration-lts-3.0.nix
··· 587 "LambdaNet" = dontDistribute super."LambdaNet"; 588 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 589 "LambdaShell" = dontDistribute super."LambdaShell"; 590 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 591 "Lastik" = dontDistribute super."Lastik"; 592 "Lattices" = dontDistribute super."Lattices"; ··· 2455 "djinn" = dontDistribute super."djinn"; 2456 "djinn-th" = dontDistribute super."djinn-th"; 2457 "dlist" = doDistribute super."dlist_0_7_1_1"; 2458 "dnscache" = dontDistribute super."dnscache"; 2459 "dnsrbl" = dontDistribute super."dnsrbl"; 2460 "dnssd" = dontDistribute super."dnssd"; ··· 2810 "find-conduit" = dontDistribute super."find-conduit"; 2811 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2812 "finite-field" = dontDistribute super."finite-field"; 2813 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2814 "firstify" = dontDistribute super."firstify"; 2815 "fishfood" = dontDistribute super."fishfood"; ··· 3399 "happstack-lite" = dontDistribute super."happstack-lite"; 3400 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3401 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3402 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3403 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3404 "happstack-state" = dontDistribute super."happstack-state"; ··· 4975 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4976 "monad-open" = dontDistribute super."monad-open"; 4977 "monad-ox" = dontDistribute super."monad-ox"; 4978 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4979 "monad-param" = dontDistribute super."monad-param"; 4980 "monad-ran" = dontDistribute super."monad-ran"; ··· 7009 "time-w3c" = dontDistribute super."time-w3c"; 7010 "timecalc" = dontDistribute super."timecalc"; 7011 "timeconsole" = dontDistribute super."timeconsole"; 7012 "timeout" = dontDistribute super."timeout"; 7013 "timeout-control" = dontDistribute super."timeout-control"; 7014 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7169 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7170 "type-level-sets" = dontDistribute super."type-level-sets"; 7171 "type-level-tf" = dontDistribute super."type-level-tf"; 7172 "type-natural" = dontDistribute super."type-natural"; 7173 "type-ord" = dontDistribute super."type-ord"; 7174 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7261 "unix-memory" = dontDistribute super."unix-memory"; 7262 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7263 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7264 "unlit" = dontDistribute super."unlit"; 7265 "unm-hip" = dontDistribute super."unm-hip"; 7266 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7375 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7376 "vector-static" = dontDistribute super."vector-static"; 7377 "vector-strategies" = dontDistribute super."vector-strategies"; 7378 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7379 "verbosity" = dontDistribute super."verbosity"; 7380 "verilog" = dontDistribute super."verilog";
··· 587 "LambdaNet" = dontDistribute super."LambdaNet"; 588 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 589 "LambdaShell" = dontDistribute super."LambdaShell"; 590 + "Lambdaya" = dontDistribute super."Lambdaya"; 591 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 592 "Lastik" = dontDistribute super."Lastik"; 593 "Lattices" = dontDistribute super."Lattices"; ··· 2456 "djinn" = dontDistribute super."djinn"; 2457 "djinn-th" = dontDistribute super."djinn-th"; 2458 "dlist" = doDistribute super."dlist_0_7_1_1"; 2459 + "dns" = doDistribute super."dns_2_0_0"; 2460 "dnscache" = dontDistribute super."dnscache"; 2461 "dnsrbl" = dontDistribute super."dnsrbl"; 2462 "dnssd" = dontDistribute super."dnssd"; ··· 2812 "find-conduit" = dontDistribute super."find-conduit"; 2813 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2814 "finite-field" = dontDistribute super."finite-field"; 2815 + "first-and-last" = dontDistribute super."first-and-last"; 2816 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2817 "firstify" = dontDistribute super."firstify"; 2818 "fishfood" = dontDistribute super."fishfood"; ··· 3402 "happstack-lite" = dontDistribute super."happstack-lite"; 3403 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3404 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3405 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3406 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3407 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3408 "happstack-state" = dontDistribute super."happstack-state"; ··· 4979 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4980 "monad-open" = dontDistribute super."monad-open"; 4981 "monad-ox" = dontDistribute super."monad-ox"; 4982 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4983 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4984 "monad-param" = dontDistribute super."monad-param"; 4985 "monad-ran" = dontDistribute super."monad-ran"; ··· 7014 "time-w3c" = dontDistribute super."time-w3c"; 7015 "timecalc" = dontDistribute super."timecalc"; 7016 "timeconsole" = dontDistribute super."timeconsole"; 7017 + "timeless" = dontDistribute super."timeless"; 7018 "timeout" = dontDistribute super."timeout"; 7019 "timeout-control" = dontDistribute super."timeout-control"; 7020 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7175 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7176 "type-level-sets" = dontDistribute super."type-level-sets"; 7177 "type-level-tf" = dontDistribute super."type-level-tf"; 7178 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7179 "type-natural" = dontDistribute super."type-natural"; 7180 "type-ord" = dontDistribute super."type-ord"; 7181 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7268 "unix-memory" = dontDistribute super."unix-memory"; 7269 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7270 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7271 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7272 "unlit" = dontDistribute super."unlit"; 7273 "unm-hip" = dontDistribute super."unm-hip"; 7274 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7383 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7384 "vector-static" = dontDistribute super."vector-static"; 7385 "vector-strategies" = dontDistribute super."vector-strategies"; 7386 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7387 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7388 "verbosity" = dontDistribute super."verbosity"; 7389 "verilog" = dontDistribute super."verilog";
+9
pkgs/development/haskell-modules/configuration-lts-3.1.nix
··· 587 "LambdaNet" = dontDistribute super."LambdaNet"; 588 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 589 "LambdaShell" = dontDistribute super."LambdaShell"; 590 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 591 "Lastik" = dontDistribute super."Lastik"; 592 "Lattices" = dontDistribute super."Lattices"; ··· 2452 "djinn" = dontDistribute super."djinn"; 2453 "djinn-th" = dontDistribute super."djinn-th"; 2454 "dlist" = doDistribute super."dlist_0_7_1_1"; 2455 "dnscache" = dontDistribute super."dnscache"; 2456 "dnsrbl" = dontDistribute super."dnsrbl"; 2457 "dnssd" = dontDistribute super."dnssd"; ··· 2804 "find-conduit" = dontDistribute super."find-conduit"; 2805 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2806 "finite-field" = dontDistribute super."finite-field"; 2807 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2808 "firstify" = dontDistribute super."firstify"; 2809 "fishfood" = dontDistribute super."fishfood"; ··· 3393 "happstack-lite" = dontDistribute super."happstack-lite"; 3394 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3395 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3396 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3397 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3398 "happstack-state" = dontDistribute super."happstack-state"; ··· 4967 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4968 "monad-open" = dontDistribute super."monad-open"; 4969 "monad-ox" = dontDistribute super."monad-ox"; 4970 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4971 "monad-param" = dontDistribute super."monad-param"; 4972 "monad-ran" = dontDistribute super."monad-ran"; ··· 6998 "time-w3c" = dontDistribute super."time-w3c"; 6999 "timecalc" = dontDistribute super."timecalc"; 7000 "timeconsole" = dontDistribute super."timeconsole"; 7001 "timeout" = dontDistribute super."timeout"; 7002 "timeout-control" = dontDistribute super."timeout-control"; 7003 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7158 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7159 "type-level-sets" = dontDistribute super."type-level-sets"; 7160 "type-level-tf" = dontDistribute super."type-level-tf"; 7161 "type-natural" = dontDistribute super."type-natural"; 7162 "type-ord" = dontDistribute super."type-ord"; 7163 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7250 "unix-memory" = dontDistribute super."unix-memory"; 7251 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7252 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7253 "unlit" = dontDistribute super."unlit"; 7254 "unm-hip" = dontDistribute super."unm-hip"; 7255 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7363 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7364 "vector-static" = dontDistribute super."vector-static"; 7365 "vector-strategies" = dontDistribute super."vector-strategies"; 7366 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7367 "verbosity" = dontDistribute super."verbosity"; 7368 "verilog" = dontDistribute super."verilog";
··· 587 "LambdaNet" = dontDistribute super."LambdaNet"; 588 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 589 "LambdaShell" = dontDistribute super."LambdaShell"; 590 + "Lambdaya" = dontDistribute super."Lambdaya"; 591 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 592 "Lastik" = dontDistribute super."Lastik"; 593 "Lattices" = dontDistribute super."Lattices"; ··· 2453 "djinn" = dontDistribute super."djinn"; 2454 "djinn-th" = dontDistribute super."djinn-th"; 2455 "dlist" = doDistribute super."dlist_0_7_1_1"; 2456 + "dns" = doDistribute super."dns_2_0_0"; 2457 "dnscache" = dontDistribute super."dnscache"; 2458 "dnsrbl" = dontDistribute super."dnsrbl"; 2459 "dnssd" = dontDistribute super."dnssd"; ··· 2806 "find-conduit" = dontDistribute super."find-conduit"; 2807 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2808 "finite-field" = dontDistribute super."finite-field"; 2809 + "first-and-last" = dontDistribute super."first-and-last"; 2810 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2811 "firstify" = dontDistribute super."firstify"; 2812 "fishfood" = dontDistribute super."fishfood"; ··· 3396 "happstack-lite" = dontDistribute super."happstack-lite"; 3397 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3398 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3399 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3400 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3401 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3402 "happstack-state" = dontDistribute super."happstack-state"; ··· 4971 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4972 "monad-open" = dontDistribute super."monad-open"; 4973 "monad-ox" = dontDistribute super."monad-ox"; 4974 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4975 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4976 "monad-param" = dontDistribute super."monad-param"; 4977 "monad-ran" = dontDistribute super."monad-ran"; ··· 7003 "time-w3c" = dontDistribute super."time-w3c"; 7004 "timecalc" = dontDistribute super."timecalc"; 7005 "timeconsole" = dontDistribute super."timeconsole"; 7006 + "timeless" = dontDistribute super."timeless"; 7007 "timeout" = dontDistribute super."timeout"; 7008 "timeout-control" = dontDistribute super."timeout-control"; 7009 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7164 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7165 "type-level-sets" = dontDistribute super."type-level-sets"; 7166 "type-level-tf" = dontDistribute super."type-level-tf"; 7167 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7168 "type-natural" = dontDistribute super."type-natural"; 7169 "type-ord" = dontDistribute super."type-ord"; 7170 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7257 "unix-memory" = dontDistribute super."unix-memory"; 7258 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7259 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7260 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7261 "unlit" = dontDistribute super."unlit"; 7262 "unm-hip" = dontDistribute super."unm-hip"; 7263 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7371 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7372 "vector-static" = dontDistribute super."vector-static"; 7373 "vector-strategies" = dontDistribute super."vector-strategies"; 7374 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7375 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7376 "verbosity" = dontDistribute super."verbosity"; 7377 "verilog" = dontDistribute super."verilog";
+9
pkgs/development/haskell-modules/configuration-lts-3.2.nix
··· 584 "LambdaNet" = dontDistribute super."LambdaNet"; 585 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 586 "LambdaShell" = dontDistribute super."LambdaShell"; 587 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 588 "Lastik" = dontDistribute super."Lastik"; 589 "Lattices" = dontDistribute super."Lattices"; ··· 2447 "dixi" = dontDistribute super."dixi"; 2448 "djinn" = dontDistribute super."djinn"; 2449 "djinn-th" = dontDistribute super."djinn-th"; 2450 "dnscache" = dontDistribute super."dnscache"; 2451 "dnsrbl" = dontDistribute super."dnsrbl"; 2452 "dnssd" = dontDistribute super."dnssd"; ··· 2799 "find-conduit" = dontDistribute super."find-conduit"; 2800 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2801 "finite-field" = dontDistribute super."finite-field"; 2802 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2803 "firstify" = dontDistribute super."firstify"; 2804 "fishfood" = dontDistribute super."fishfood"; ··· 3386 "happstack-lite" = dontDistribute super."happstack-lite"; 3387 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3388 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3389 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3390 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3391 "happstack-state" = dontDistribute super."happstack-state"; ··· 4957 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4958 "monad-open" = dontDistribute super."monad-open"; 4959 "monad-ox" = dontDistribute super."monad-ox"; 4960 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4961 "monad-param" = dontDistribute super."monad-param"; 4962 "monad-ran" = dontDistribute super."monad-ran"; ··· 6980 "time-w3c" = dontDistribute super."time-w3c"; 6981 "timecalc" = dontDistribute super."timecalc"; 6982 "timeconsole" = dontDistribute super."timeconsole"; 6983 "timeout" = dontDistribute super."timeout"; 6984 "timeout-control" = dontDistribute super."timeout-control"; 6985 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7140 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7141 "type-level-sets" = dontDistribute super."type-level-sets"; 7142 "type-level-tf" = dontDistribute super."type-level-tf"; 7143 "type-natural" = dontDistribute super."type-natural"; 7144 "type-ord" = dontDistribute super."type-ord"; 7145 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7232 "unix-memory" = dontDistribute super."unix-memory"; 7233 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7234 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7235 "unlit" = dontDistribute super."unlit"; 7236 "unm-hip" = dontDistribute super."unm-hip"; 7237 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7345 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7346 "vector-static" = dontDistribute super."vector-static"; 7347 "vector-strategies" = dontDistribute super."vector-strategies"; 7348 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7349 "verbosity" = dontDistribute super."verbosity"; 7350 "verilog" = dontDistribute super."verilog";
··· 584 "LambdaNet" = dontDistribute super."LambdaNet"; 585 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 586 "LambdaShell" = dontDistribute super."LambdaShell"; 587 + "Lambdaya" = dontDistribute super."Lambdaya"; 588 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 589 "Lastik" = dontDistribute super."Lastik"; 590 "Lattices" = dontDistribute super."Lattices"; ··· 2448 "dixi" = dontDistribute super."dixi"; 2449 "djinn" = dontDistribute super."djinn"; 2450 "djinn-th" = dontDistribute super."djinn-th"; 2451 + "dns" = doDistribute super."dns_2_0_0"; 2452 "dnscache" = dontDistribute super."dnscache"; 2453 "dnsrbl" = dontDistribute super."dnsrbl"; 2454 "dnssd" = dontDistribute super."dnssd"; ··· 2801 "find-conduit" = dontDistribute super."find-conduit"; 2802 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2803 "finite-field" = dontDistribute super."finite-field"; 2804 + "first-and-last" = dontDistribute super."first-and-last"; 2805 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2806 "firstify" = dontDistribute super."firstify"; 2807 "fishfood" = dontDistribute super."fishfood"; ··· 3389 "happstack-lite" = dontDistribute super."happstack-lite"; 3390 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3391 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3392 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3393 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3394 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3395 "happstack-state" = dontDistribute super."happstack-state"; ··· 4961 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4962 "monad-open" = dontDistribute super."monad-open"; 4963 "monad-ox" = dontDistribute super."monad-ox"; 4964 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4965 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4966 "monad-param" = dontDistribute super."monad-param"; 4967 "monad-ran" = dontDistribute super."monad-ran"; ··· 6985 "time-w3c" = dontDistribute super."time-w3c"; 6986 "timecalc" = dontDistribute super."timecalc"; 6987 "timeconsole" = dontDistribute super."timeconsole"; 6988 + "timeless" = dontDistribute super."timeless"; 6989 "timeout" = dontDistribute super."timeout"; 6990 "timeout-control" = dontDistribute super."timeout-control"; 6991 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7146 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7147 "type-level-sets" = dontDistribute super."type-level-sets"; 7148 "type-level-tf" = dontDistribute super."type-level-tf"; 7149 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7150 "type-natural" = dontDistribute super."type-natural"; 7151 "type-ord" = dontDistribute super."type-ord"; 7152 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7239 "unix-memory" = dontDistribute super."unix-memory"; 7240 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7241 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7242 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7243 "unlit" = dontDistribute super."unlit"; 7244 "unm-hip" = dontDistribute super."unm-hip"; 7245 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7353 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7354 "vector-static" = dontDistribute super."vector-static"; 7355 "vector-strategies" = dontDistribute super."vector-strategies"; 7356 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7357 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7358 "verbosity" = dontDistribute super."verbosity"; 7359 "verilog" = dontDistribute super."verilog";
+10
pkgs/development/haskell-modules/configuration-lts-3.3.nix
··· 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 587 "Lastik" = dontDistribute super."Lastik"; 588 "Lattices" = dontDistribute super."Lattices"; ··· 2442 "dixi" = dontDistribute super."dixi"; 2443 "djinn" = dontDistribute super."djinn"; 2444 "djinn-th" = dontDistribute super."djinn-th"; 2445 "dnscache" = dontDistribute super."dnscache"; 2446 "dnsrbl" = dontDistribute super."dnsrbl"; 2447 "dnssd" = dontDistribute super."dnssd"; ··· 2794 "find-conduit" = dontDistribute super."find-conduit"; 2795 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2796 "finite-field" = dontDistribute super."finite-field"; 2797 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2798 "firstify" = dontDistribute super."firstify"; 2799 "fishfood" = dontDistribute super."fishfood"; ··· 3380 "happstack-lite" = dontDistribute super."happstack-lite"; 3381 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3382 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3383 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3384 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3385 "happstack-state" = dontDistribute super."happstack-state"; ··· 4949 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4950 "monad-open" = dontDistribute super."monad-open"; 4951 "monad-ox" = dontDistribute super."monad-ox"; 4952 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4953 "monad-param" = dontDistribute super."monad-param"; 4954 "monad-ran" = dontDistribute super."monad-ran"; ··· 4983 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4984 "monitor" = dontDistribute super."monitor"; 4985 "mono-foldable" = dontDistribute super."mono-foldable"; 4986 "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; 4987 "monoid-owns" = dontDistribute super."monoid-owns"; 4988 "monoid-record" = dontDistribute super."monoid-record"; ··· 6966 "time-w3c" = dontDistribute super."time-w3c"; 6967 "timecalc" = dontDistribute super."timecalc"; 6968 "timeconsole" = dontDistribute super."timeconsole"; 6969 "timeout" = dontDistribute super."timeout"; 6970 "timeout-control" = dontDistribute super."timeout-control"; 6971 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7126 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7127 "type-level-sets" = dontDistribute super."type-level-sets"; 7128 "type-level-tf" = dontDistribute super."type-level-tf"; 7129 "type-natural" = dontDistribute super."type-natural"; 7130 "type-ord" = dontDistribute super."type-ord"; 7131 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7218 "unix-memory" = dontDistribute super."unix-memory"; 7219 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7220 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7221 "unlit" = dontDistribute super."unlit"; 7222 "unm-hip" = dontDistribute super."unm-hip"; 7223 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7330 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7331 "vector-static" = dontDistribute super."vector-static"; 7332 "vector-strategies" = dontDistribute super."vector-strategies"; 7333 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7334 "verbosity" = dontDistribute super."verbosity"; 7335 "verilog" = dontDistribute super."verilog";
··· 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 + "Lambdaya" = dontDistribute super."Lambdaya"; 587 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 588 "Lastik" = dontDistribute super."Lastik"; 589 "Lattices" = dontDistribute super."Lattices"; ··· 2443 "dixi" = dontDistribute super."dixi"; 2444 "djinn" = dontDistribute super."djinn"; 2445 "djinn-th" = dontDistribute super."djinn-th"; 2446 + "dns" = doDistribute super."dns_2_0_0"; 2447 "dnscache" = dontDistribute super."dnscache"; 2448 "dnsrbl" = dontDistribute super."dnsrbl"; 2449 "dnssd" = dontDistribute super."dnssd"; ··· 2796 "find-conduit" = dontDistribute super."find-conduit"; 2797 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2798 "finite-field" = dontDistribute super."finite-field"; 2799 + "first-and-last" = dontDistribute super."first-and-last"; 2800 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2801 "firstify" = dontDistribute super."firstify"; 2802 "fishfood" = dontDistribute super."fishfood"; ··· 3383 "happstack-lite" = dontDistribute super."happstack-lite"; 3384 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3385 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3386 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3387 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3388 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3389 "happstack-state" = dontDistribute super."happstack-state"; ··· 4953 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4954 "monad-open" = dontDistribute super."monad-open"; 4955 "monad-ox" = dontDistribute super."monad-ox"; 4956 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4957 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4958 "monad-param" = dontDistribute super."monad-param"; 4959 "monad-ran" = dontDistribute super."monad-ran"; ··· 4988 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4989 "monitor" = dontDistribute super."monitor"; 4990 "mono-foldable" = dontDistribute super."mono-foldable"; 4991 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4992 "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; 4993 "monoid-owns" = dontDistribute super."monoid-owns"; 4994 "monoid-record" = dontDistribute super."monoid-record"; ··· 6972 "time-w3c" = dontDistribute super."time-w3c"; 6973 "timecalc" = dontDistribute super."timecalc"; 6974 "timeconsole" = dontDistribute super."timeconsole"; 6975 + "timeless" = dontDistribute super."timeless"; 6976 "timeout" = dontDistribute super."timeout"; 6977 "timeout-control" = dontDistribute super."timeout-control"; 6978 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7133 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7134 "type-level-sets" = dontDistribute super."type-level-sets"; 7135 "type-level-tf" = dontDistribute super."type-level-tf"; 7136 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7137 "type-natural" = dontDistribute super."type-natural"; 7138 "type-ord" = dontDistribute super."type-ord"; 7139 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7226 "unix-memory" = dontDistribute super."unix-memory"; 7227 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7228 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7229 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7230 "unlit" = dontDistribute super."unlit"; 7231 "unm-hip" = dontDistribute super."unm-hip"; 7232 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7339 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7340 "vector-static" = dontDistribute super."vector-static"; 7341 "vector-strategies" = dontDistribute super."vector-strategies"; 7342 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7343 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7344 "verbosity" = dontDistribute super."verbosity"; 7345 "verilog" = dontDistribute super."verilog";
+10
pkgs/development/haskell-modules/configuration-lts-3.4.nix
··· 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 587 "Lastik" = dontDistribute super."Lastik"; 588 "Lattices" = dontDistribute super."Lattices"; ··· 2441 "dixi" = dontDistribute super."dixi"; 2442 "djinn" = dontDistribute super."djinn"; 2443 "djinn-th" = dontDistribute super."djinn-th"; 2444 "dnscache" = dontDistribute super."dnscache"; 2445 "dnsrbl" = dontDistribute super."dnsrbl"; 2446 "dnssd" = dontDistribute super."dnssd"; ··· 2793 "find-conduit" = dontDistribute super."find-conduit"; 2794 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2795 "finite-field" = dontDistribute super."finite-field"; 2796 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2797 "firstify" = dontDistribute super."firstify"; 2798 "fishfood" = dontDistribute super."fishfood"; ··· 3379 "happstack-lite" = dontDistribute super."happstack-lite"; 3380 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3381 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3382 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3383 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3384 "happstack-state" = dontDistribute super."happstack-state"; ··· 4948 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4949 "monad-open" = dontDistribute super."monad-open"; 4950 "monad-ox" = dontDistribute super."monad-ox"; 4951 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4952 "monad-param" = dontDistribute super."monad-param"; 4953 "monad-ran" = dontDistribute super."monad-ran"; ··· 4982 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4983 "monitor" = dontDistribute super."monitor"; 4984 "mono-foldable" = dontDistribute super."mono-foldable"; 4985 "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; 4986 "monoid-owns" = dontDistribute super."monoid-owns"; 4987 "monoid-record" = dontDistribute super."monoid-record"; ··· 6963 "time-w3c" = dontDistribute super."time-w3c"; 6964 "timecalc" = dontDistribute super."timecalc"; 6965 "timeconsole" = dontDistribute super."timeconsole"; 6966 "timeout" = dontDistribute super."timeout"; 6967 "timeout-control" = dontDistribute super."timeout-control"; 6968 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7123 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7124 "type-level-sets" = dontDistribute super."type-level-sets"; 7125 "type-level-tf" = dontDistribute super."type-level-tf"; 7126 "type-natural" = dontDistribute super."type-natural"; 7127 "type-ord" = dontDistribute super."type-ord"; 7128 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7215 "unix-memory" = dontDistribute super."unix-memory"; 7216 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7217 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7218 "unlit" = dontDistribute super."unlit"; 7219 "unm-hip" = dontDistribute super."unm-hip"; 7220 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7327 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7328 "vector-static" = dontDistribute super."vector-static"; 7329 "vector-strategies" = dontDistribute super."vector-strategies"; 7330 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7331 "verbosity" = dontDistribute super."verbosity"; 7332 "verilog" = dontDistribute super."verilog";
··· 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 + "Lambdaya" = dontDistribute super."Lambdaya"; 587 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 588 "Lastik" = dontDistribute super."Lastik"; 589 "Lattices" = dontDistribute super."Lattices"; ··· 2442 "dixi" = dontDistribute super."dixi"; 2443 "djinn" = dontDistribute super."djinn"; 2444 "djinn-th" = dontDistribute super."djinn-th"; 2445 + "dns" = doDistribute super."dns_2_0_0"; 2446 "dnscache" = dontDistribute super."dnscache"; 2447 "dnsrbl" = dontDistribute super."dnsrbl"; 2448 "dnssd" = dontDistribute super."dnssd"; ··· 2795 "find-conduit" = dontDistribute super."find-conduit"; 2796 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2797 "finite-field" = dontDistribute super."finite-field"; 2798 + "first-and-last" = dontDistribute super."first-and-last"; 2799 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2800 "firstify" = dontDistribute super."firstify"; 2801 "fishfood" = dontDistribute super."fishfood"; ··· 3382 "happstack-lite" = dontDistribute super."happstack-lite"; 3383 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3384 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3385 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3386 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3387 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3388 "happstack-state" = dontDistribute super."happstack-state"; ··· 4952 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4953 "monad-open" = dontDistribute super."monad-open"; 4954 "monad-ox" = dontDistribute super."monad-ox"; 4955 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4956 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4957 "monad-param" = dontDistribute super."monad-param"; 4958 "monad-ran" = dontDistribute super."monad-ran"; ··· 4987 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4988 "monitor" = dontDistribute super."monitor"; 4989 "mono-foldable" = dontDistribute super."mono-foldable"; 4990 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4991 "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; 4992 "monoid-owns" = dontDistribute super."monoid-owns"; 4993 "monoid-record" = dontDistribute super."monoid-record"; ··· 6969 "time-w3c" = dontDistribute super."time-w3c"; 6970 "timecalc" = dontDistribute super."timecalc"; 6971 "timeconsole" = dontDistribute super."timeconsole"; 6972 + "timeless" = dontDistribute super."timeless"; 6973 "timeout" = dontDistribute super."timeout"; 6974 "timeout-control" = dontDistribute super."timeout-control"; 6975 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7130 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7131 "type-level-sets" = dontDistribute super."type-level-sets"; 7132 "type-level-tf" = dontDistribute super."type-level-tf"; 7133 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7134 "type-natural" = dontDistribute super."type-natural"; 7135 "type-ord" = dontDistribute super."type-ord"; 7136 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7223 "unix-memory" = dontDistribute super."unix-memory"; 7224 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7225 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7226 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7227 "unlit" = dontDistribute super."unlit"; 7228 "unm-hip" = dontDistribute super."unm-hip"; 7229 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7336 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7337 "vector-static" = dontDistribute super."vector-static"; 7338 "vector-strategies" = dontDistribute super."vector-strategies"; 7339 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7340 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7341 "verbosity" = dontDistribute super."verbosity"; 7342 "verilog" = dontDistribute super."verilog";
+11
pkgs/development/haskell-modules/configuration-lts-3.5.nix
··· 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 587 "Lastik" = dontDistribute super."Lastik"; 588 "Lattices" = dontDistribute super."Lattices"; ··· 772 "RNAdesign" = dontDistribute super."RNAdesign"; 773 "RNAdraw" = dontDistribute super."RNAdraw"; 774 "RNAwolf" = dontDistribute super."RNAwolf"; 775 "Raincat" = dontDistribute super."Raincat"; 776 "Random123" = dontDistribute super."Random123"; 777 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2437 "dixi" = dontDistribute super."dixi"; 2438 "djinn" = dontDistribute super."djinn"; 2439 "djinn-th" = dontDistribute super."djinn-th"; 2440 "dnscache" = dontDistribute super."dnscache"; 2441 "dnsrbl" = dontDistribute super."dnsrbl"; 2442 "dnssd" = dontDistribute super."dnssd"; ··· 2787 "find-conduit" = dontDistribute super."find-conduit"; 2788 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2789 "finite-field" = dontDistribute super."finite-field"; 2790 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2791 "firstify" = dontDistribute super."firstify"; 2792 "fishfood" = dontDistribute super."fishfood"; ··· 3373 "happstack-lite" = dontDistribute super."happstack-lite"; 3374 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3375 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3376 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3377 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3378 "happstack-state" = dontDistribute super."happstack-state"; ··· 4935 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4936 "monad-open" = dontDistribute super."monad-open"; 4937 "monad-ox" = dontDistribute super."monad-ox"; 4938 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4939 "monad-param" = dontDistribute super."monad-param"; 4940 "monad-ran" = dontDistribute super."monad-ran"; ··· 4969 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4970 "monitor" = dontDistribute super."monitor"; 4971 "mono-foldable" = dontDistribute super."mono-foldable"; 4972 "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; 4973 "monoid-owns" = dontDistribute super."monoid-owns"; 4974 "monoid-record" = dontDistribute super."monoid-record"; ··· 6940 "time-w3c" = dontDistribute super."time-w3c"; 6941 "timecalc" = dontDistribute super."timecalc"; 6942 "timeconsole" = dontDistribute super."timeconsole"; 6943 "timeout" = dontDistribute super."timeout"; 6944 "timeout-control" = dontDistribute super."timeout-control"; 6945 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7100 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7101 "type-level-sets" = dontDistribute super."type-level-sets"; 7102 "type-level-tf" = dontDistribute super."type-level-tf"; 7103 "type-natural" = dontDistribute super."type-natural"; 7104 "type-ord" = dontDistribute super."type-ord"; 7105 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7192 "unix-memory" = dontDistribute super."unix-memory"; 7193 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7194 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7195 "unlit" = dontDistribute super."unlit"; 7196 "unm-hip" = dontDistribute super."unm-hip"; 7197 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7304 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7305 "vector-static" = dontDistribute super."vector-static"; 7306 "vector-strategies" = dontDistribute super."vector-strategies"; 7307 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7308 "verbosity" = dontDistribute super."verbosity"; 7309 "verilog" = dontDistribute super."verilog";
··· 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 + "Lambdaya" = dontDistribute super."Lambdaya"; 587 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 588 "Lastik" = dontDistribute super."Lastik"; 589 "Lattices" = dontDistribute super."Lattices"; ··· 773 "RNAdesign" = dontDistribute super."RNAdesign"; 774 "RNAdraw" = dontDistribute super."RNAdraw"; 775 "RNAwolf" = dontDistribute super."RNAwolf"; 776 + "RSA" = doDistribute super."RSA_2_1_0_3"; 777 "Raincat" = dontDistribute super."Raincat"; 778 "Random123" = dontDistribute super."Random123"; 779 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2439 "dixi" = dontDistribute super."dixi"; 2440 "djinn" = dontDistribute super."djinn"; 2441 "djinn-th" = dontDistribute super."djinn-th"; 2442 + "dns" = doDistribute super."dns_2_0_0"; 2443 "dnscache" = dontDistribute super."dnscache"; 2444 "dnsrbl" = dontDistribute super."dnsrbl"; 2445 "dnssd" = dontDistribute super."dnssd"; ··· 2790 "find-conduit" = dontDistribute super."find-conduit"; 2791 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2792 "finite-field" = dontDistribute super."finite-field"; 2793 + "first-and-last" = dontDistribute super."first-and-last"; 2794 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2795 "firstify" = dontDistribute super."firstify"; 2796 "fishfood" = dontDistribute super."fishfood"; ··· 3377 "happstack-lite" = dontDistribute super."happstack-lite"; 3378 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3379 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3380 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3381 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3382 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3383 "happstack-state" = dontDistribute super."happstack-state"; ··· 4940 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4941 "monad-open" = dontDistribute super."monad-open"; 4942 "monad-ox" = dontDistribute super."monad-ox"; 4943 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4944 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4945 "monad-param" = dontDistribute super."monad-param"; 4946 "monad-ran" = dontDistribute super."monad-ran"; ··· 4975 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4976 "monitor" = dontDistribute super."monitor"; 4977 "mono-foldable" = dontDistribute super."mono-foldable"; 4978 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4979 "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; 4980 "monoid-owns" = dontDistribute super."monoid-owns"; 4981 "monoid-record" = dontDistribute super."monoid-record"; ··· 6947 "time-w3c" = dontDistribute super."time-w3c"; 6948 "timecalc" = dontDistribute super."timecalc"; 6949 "timeconsole" = dontDistribute super."timeconsole"; 6950 + "timeless" = dontDistribute super."timeless"; 6951 "timeout" = dontDistribute super."timeout"; 6952 "timeout-control" = dontDistribute super."timeout-control"; 6953 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7108 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7109 "type-level-sets" = dontDistribute super."type-level-sets"; 7110 "type-level-tf" = dontDistribute super."type-level-tf"; 7111 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7112 "type-natural" = dontDistribute super."type-natural"; 7113 "type-ord" = dontDistribute super."type-ord"; 7114 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7201 "unix-memory" = dontDistribute super."unix-memory"; 7202 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7203 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7204 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7205 "unlit" = dontDistribute super."unlit"; 7206 "unm-hip" = dontDistribute super."unm-hip"; 7207 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7314 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7315 "vector-static" = dontDistribute super."vector-static"; 7316 "vector-strategies" = dontDistribute super."vector-strategies"; 7317 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7318 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7319 "verbosity" = dontDistribute super."verbosity"; 7320 "verilog" = dontDistribute super."verilog";
+11
pkgs/development/haskell-modules/configuration-lts-3.6.nix
··· 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 587 "Lastik" = dontDistribute super."Lastik"; 588 "Lattices" = dontDistribute super."Lattices"; ··· 772 "RNAdesign" = dontDistribute super."RNAdesign"; 773 "RNAdraw" = dontDistribute super."RNAdraw"; 774 "RNAwolf" = dontDistribute super."RNAwolf"; 775 "Raincat" = dontDistribute super."Raincat"; 776 "Random123" = dontDistribute super."Random123"; 777 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2432 "dixi" = dontDistribute super."dixi"; 2433 "djinn" = dontDistribute super."djinn"; 2434 "djinn-th" = dontDistribute super."djinn-th"; 2435 "dnscache" = dontDistribute super."dnscache"; 2436 "dnsrbl" = dontDistribute super."dnsrbl"; 2437 "dnssd" = dontDistribute super."dnssd"; ··· 2778 "find-conduit" = dontDistribute super."find-conduit"; 2779 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2780 "finite-field" = dontDistribute super."finite-field"; 2781 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2782 "firstify" = dontDistribute super."firstify"; 2783 "fishfood" = dontDistribute super."fishfood"; ··· 3360 "happstack-lite" = dontDistribute super."happstack-lite"; 3361 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3362 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3363 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3364 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3365 "happstack-state" = dontDistribute super."happstack-state"; ··· 4915 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4916 "monad-open" = dontDistribute super."monad-open"; 4917 "monad-ox" = dontDistribute super."monad-ox"; 4918 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4919 "monad-param" = dontDistribute super."monad-param"; 4920 "monad-ran" = dontDistribute super."monad-ran"; ··· 4949 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4950 "monitor" = dontDistribute super."monitor"; 4951 "mono-foldable" = dontDistribute super."mono-foldable"; 4952 "monoid-owns" = dontDistribute super."monoid-owns"; 4953 "monoid-record" = dontDistribute super."monoid-record"; 4954 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6913 "time-w3c" = dontDistribute super."time-w3c"; 6914 "timecalc" = dontDistribute super."timecalc"; 6915 "timeconsole" = dontDistribute super."timeconsole"; 6916 "timeout" = dontDistribute super."timeout"; 6917 "timeout-control" = dontDistribute super."timeout-control"; 6918 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7072 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7073 "type-level-sets" = dontDistribute super."type-level-sets"; 7074 "type-level-tf" = dontDistribute super."type-level-tf"; 7075 "type-natural" = dontDistribute super."type-natural"; 7076 "type-ord" = dontDistribute super."type-ord"; 7077 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7164 "unix-memory" = dontDistribute super."unix-memory"; 7165 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7166 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7167 "unlit" = dontDistribute super."unlit"; 7168 "unm-hip" = dontDistribute super."unm-hip"; 7169 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7275 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7276 "vector-static" = dontDistribute super."vector-static"; 7277 "vector-strategies" = dontDistribute super."vector-strategies"; 7278 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7279 "verbosity" = dontDistribute super."verbosity"; 7280 "verilog" = dontDistribute super."verilog";
··· 583 "LambdaNet" = dontDistribute super."LambdaNet"; 584 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 585 "LambdaShell" = dontDistribute super."LambdaShell"; 586 + "Lambdaya" = dontDistribute super."Lambdaya"; 587 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 588 "Lastik" = dontDistribute super."Lastik"; 589 "Lattices" = dontDistribute super."Lattices"; ··· 773 "RNAdesign" = dontDistribute super."RNAdesign"; 774 "RNAdraw" = dontDistribute super."RNAdraw"; 775 "RNAwolf" = dontDistribute super."RNAwolf"; 776 + "RSA" = doDistribute super."RSA_2_1_0_3"; 777 "Raincat" = dontDistribute super."Raincat"; 778 "Random123" = dontDistribute super."Random123"; 779 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2434 "dixi" = dontDistribute super."dixi"; 2435 "djinn" = dontDistribute super."djinn"; 2436 "djinn-th" = dontDistribute super."djinn-th"; 2437 + "dns" = doDistribute super."dns_2_0_0"; 2438 "dnscache" = dontDistribute super."dnscache"; 2439 "dnsrbl" = dontDistribute super."dnsrbl"; 2440 "dnssd" = dontDistribute super."dnssd"; ··· 2781 "find-conduit" = dontDistribute super."find-conduit"; 2782 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2783 "finite-field" = dontDistribute super."finite-field"; 2784 + "first-and-last" = dontDistribute super."first-and-last"; 2785 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2786 "firstify" = dontDistribute super."firstify"; 2787 "fishfood" = dontDistribute super."fishfood"; ··· 3364 "happstack-lite" = dontDistribute super."happstack-lite"; 3365 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3366 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3367 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3368 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3369 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3370 "happstack-state" = dontDistribute super."happstack-state"; ··· 4920 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4921 "monad-open" = dontDistribute super."monad-open"; 4922 "monad-ox" = dontDistribute super."monad-ox"; 4923 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4924 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4925 "monad-param" = dontDistribute super."monad-param"; 4926 "monad-ran" = dontDistribute super."monad-ran"; ··· 4955 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4956 "monitor" = dontDistribute super."monitor"; 4957 "mono-foldable" = dontDistribute super."mono-foldable"; 4958 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4959 "monoid-owns" = dontDistribute super."monoid-owns"; 4960 "monoid-record" = dontDistribute super."monoid-record"; 4961 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6920 "time-w3c" = dontDistribute super."time-w3c"; 6921 "timecalc" = dontDistribute super."timecalc"; 6922 "timeconsole" = dontDistribute super."timeconsole"; 6923 + "timeless" = dontDistribute super."timeless"; 6924 "timeout" = dontDistribute super."timeout"; 6925 "timeout-control" = dontDistribute super."timeout-control"; 6926 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7080 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7081 "type-level-sets" = dontDistribute super."type-level-sets"; 7082 "type-level-tf" = dontDistribute super."type-level-tf"; 7083 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7084 "type-natural" = dontDistribute super."type-natural"; 7085 "type-ord" = dontDistribute super."type-ord"; 7086 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7173 "unix-memory" = dontDistribute super."unix-memory"; 7174 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7175 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7176 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7177 "unlit" = dontDistribute super."unlit"; 7178 "unm-hip" = dontDistribute super."unm-hip"; 7179 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7285 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7286 "vector-static" = dontDistribute super."vector-static"; 7287 "vector-strategies" = dontDistribute super."vector-strategies"; 7288 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7289 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7290 "verbosity" = dontDistribute super."verbosity"; 7291 "verilog" = dontDistribute super."verilog";
+16
pkgs/development/haskell-modules/configuration-lts-3.7.nix
··· 581 "LambdaNet" = dontDistribute super."LambdaNet"; 582 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 583 "LambdaShell" = dontDistribute super."LambdaShell"; 584 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 585 "Lastik" = dontDistribute super."Lastik"; 586 "Lattices" = dontDistribute super."Lattices"; ··· 770 "RNAdesign" = dontDistribute super."RNAdesign"; 771 "RNAdraw" = dontDistribute super."RNAdraw"; 772 "RNAwolf" = dontDistribute super."RNAwolf"; 773 "Raincat" = dontDistribute super."Raincat"; 774 "Random123" = dontDistribute super."Random123"; 775 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2418 "dixi" = dontDistribute super."dixi"; 2419 "djinn" = dontDistribute super."djinn"; 2420 "djinn-th" = dontDistribute super."djinn-th"; 2421 "dnscache" = dontDistribute super."dnscache"; 2422 "dnsrbl" = dontDistribute super."dnsrbl"; 2423 "dnssd" = dontDistribute super."dnssd"; ··· 2763 "find-conduit" = dontDistribute super."find-conduit"; 2764 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2765 "finite-field" = dontDistribute super."finite-field"; 2766 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2767 "firstify" = dontDistribute super."firstify"; 2768 "fishfood" = dontDistribute super."fishfood"; ··· 3344 "happstack-lite" = dontDistribute super."happstack-lite"; 3345 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3346 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3347 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3348 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3349 "happstack-state" = dontDistribute super."happstack-state"; ··· 4893 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4894 "monad-open" = dontDistribute super."monad-open"; 4895 "monad-ox" = dontDistribute super."monad-ox"; 4896 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4897 "monad-param" = dontDistribute super."monad-param"; 4898 "monad-ran" = dontDistribute super."monad-ran"; ··· 4927 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4928 "monitor" = dontDistribute super."monitor"; 4929 "mono-foldable" = dontDistribute super."mono-foldable"; 4930 "monoid-owns" = dontDistribute super."monoid-owns"; 4931 "monoid-record" = dontDistribute super."monoid-record"; 4932 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6176 "serial" = dontDistribute super."serial"; 6177 "serial-test-generators" = dontDistribute super."serial-test-generators"; 6178 "serialport" = dontDistribute super."serialport"; 6179 "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; 6180 "servant-blaze" = dontDistribute super."servant-blaze"; 6181 "servant-ede" = dontDistribute super."servant-ede"; 6182 "servant-examples" = dontDistribute super."servant-examples"; 6183 "servant-lucid" = dontDistribute super."servant-lucid"; 6184 "servant-mock" = dontDistribute super."servant-mock"; 6185 "servant-pool" = dontDistribute super."servant-pool"; 6186 "servant-postgresql" = dontDistribute super."servant-postgresql"; 6187 "servant-response" = dontDistribute super."servant-response"; 6188 "servant-scotty" = dontDistribute super."servant-scotty"; 6189 "servius" = dontDistribute super."servius"; 6190 "ses-html" = dontDistribute super."ses-html"; 6191 "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; ··· 6876 "time-w3c" = dontDistribute super."time-w3c"; 6877 "timecalc" = dontDistribute super."timecalc"; 6878 "timeconsole" = dontDistribute super."timeconsole"; 6879 "timeout" = dontDistribute super."timeout"; 6880 "timeout-control" = dontDistribute super."timeout-control"; 6881 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7033 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7034 "type-level-sets" = dontDistribute super."type-level-sets"; 7035 "type-level-tf" = dontDistribute super."type-level-tf"; 7036 "type-natural" = dontDistribute super."type-natural"; 7037 "type-ord" = dontDistribute super."type-ord"; 7038 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7125 "unix-memory" = dontDistribute super."unix-memory"; 7126 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7127 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7128 "unlit" = dontDistribute super."unlit"; 7129 "unm-hip" = dontDistribute super."unm-hip"; 7130 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7236 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7237 "vector-static" = dontDistribute super."vector-static"; 7238 "vector-strategies" = dontDistribute super."vector-strategies"; 7239 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7240 "verbosity" = dontDistribute super."verbosity"; 7241 "verilog" = dontDistribute super."verilog";
··· 581 "LambdaNet" = dontDistribute super."LambdaNet"; 582 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 583 "LambdaShell" = dontDistribute super."LambdaShell"; 584 + "Lambdaya" = dontDistribute super."Lambdaya"; 585 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 586 "Lastik" = dontDistribute super."Lastik"; 587 "Lattices" = dontDistribute super."Lattices"; ··· 771 "RNAdesign" = dontDistribute super."RNAdesign"; 772 "RNAdraw" = dontDistribute super."RNAdraw"; 773 "RNAwolf" = dontDistribute super."RNAwolf"; 774 + "RSA" = doDistribute super."RSA_2_1_0_3"; 775 "Raincat" = dontDistribute super."Raincat"; 776 "Random123" = dontDistribute super."Random123"; 777 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2420 "dixi" = dontDistribute super."dixi"; 2421 "djinn" = dontDistribute super."djinn"; 2422 "djinn-th" = dontDistribute super."djinn-th"; 2423 + "dns" = doDistribute super."dns_2_0_0"; 2424 "dnscache" = dontDistribute super."dnscache"; 2425 "dnsrbl" = dontDistribute super."dnsrbl"; 2426 "dnssd" = dontDistribute super."dnssd"; ··· 2766 "find-conduit" = dontDistribute super."find-conduit"; 2767 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2768 "finite-field" = dontDistribute super."finite-field"; 2769 + "first-and-last" = dontDistribute super."first-and-last"; 2770 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2771 "firstify" = dontDistribute super."firstify"; 2772 "fishfood" = dontDistribute super."fishfood"; ··· 3348 "happstack-lite" = dontDistribute super."happstack-lite"; 3349 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3350 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3351 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3352 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3353 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3354 "happstack-state" = dontDistribute super."happstack-state"; ··· 4898 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4899 "monad-open" = dontDistribute super."monad-open"; 4900 "monad-ox" = dontDistribute super."monad-ox"; 4901 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4902 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4903 "monad-param" = dontDistribute super."monad-param"; 4904 "monad-ran" = dontDistribute super."monad-ran"; ··· 4933 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4934 "monitor" = dontDistribute super."monitor"; 4935 "mono-foldable" = dontDistribute super."mono-foldable"; 4936 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4937 "monoid-owns" = dontDistribute super."monoid-owns"; 4938 "monoid-record" = dontDistribute super."monoid-record"; 4939 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6183 "serial" = dontDistribute super."serial"; 6184 "serial-test-generators" = dontDistribute super."serial-test-generators"; 6185 "serialport" = dontDistribute super."serialport"; 6186 + "servant" = doDistribute super."servant_0_4_4_4"; 6187 "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; 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"; 6191 "servant-ede" = dontDistribute super."servant-ede"; 6192 "servant-examples" = dontDistribute super."servant-examples"; 6193 + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; 6194 "servant-lucid" = dontDistribute super."servant-lucid"; 6195 "servant-mock" = dontDistribute super."servant-mock"; 6196 "servant-pool" = dontDistribute super."servant-pool"; 6197 "servant-postgresql" = dontDistribute super."servant-postgresql"; 6198 "servant-response" = dontDistribute super."servant-response"; 6199 "servant-scotty" = dontDistribute super."servant-scotty"; 6200 + "servant-server" = doDistribute super."servant-server_0_4_4_4"; 6201 "servius" = dontDistribute super."servius"; 6202 "ses-html" = dontDistribute super."ses-html"; 6203 "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; ··· 6888 "time-w3c" = dontDistribute super."time-w3c"; 6889 "timecalc" = dontDistribute super."timecalc"; 6890 "timeconsole" = dontDistribute super."timeconsole"; 6891 + "timeless" = dontDistribute super."timeless"; 6892 "timeout" = dontDistribute super."timeout"; 6893 "timeout-control" = dontDistribute super."timeout-control"; 6894 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7046 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7047 "type-level-sets" = dontDistribute super."type-level-sets"; 7048 "type-level-tf" = dontDistribute super."type-level-tf"; 7049 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7050 "type-natural" = dontDistribute super."type-natural"; 7051 "type-ord" = dontDistribute super."type-ord"; 7052 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7139 "unix-memory" = dontDistribute super."unix-memory"; 7140 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7141 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7142 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7143 "unlit" = dontDistribute super."unlit"; 7144 "unm-hip" = dontDistribute super."unm-hip"; 7145 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7251 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7252 "vector-static" = dontDistribute super."vector-static"; 7253 "vector-strategies" = dontDistribute super."vector-strategies"; 7254 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7255 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7256 "verbosity" = dontDistribute super."verbosity"; 7257 "verilog" = dontDistribute super."verilog";
+17
pkgs/development/haskell-modules/configuration-lts-3.8.nix
··· 581 "LambdaNet" = dontDistribute super."LambdaNet"; 582 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 583 "LambdaShell" = dontDistribute super."LambdaShell"; 584 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 585 "Lastik" = dontDistribute super."Lastik"; 586 "Lattices" = dontDistribute super."Lattices"; ··· 770 "RNAdesign" = dontDistribute super."RNAdesign"; 771 "RNAdraw" = dontDistribute super."RNAdraw"; 772 "RNAwolf" = dontDistribute super."RNAwolf"; 773 "Raincat" = dontDistribute super."Raincat"; 774 "Random123" = dontDistribute super."Random123"; 775 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2404 "dixi" = dontDistribute super."dixi"; 2405 "djinn" = dontDistribute super."djinn"; 2406 "djinn-th" = dontDistribute super."djinn-th"; 2407 "dnscache" = dontDistribute super."dnscache"; 2408 "dnsrbl" = dontDistribute super."dnsrbl"; 2409 "dnssd" = dontDistribute super."dnssd"; ··· 2748 "find-conduit" = dontDistribute super."find-conduit"; 2749 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2750 "finite-field" = dontDistribute super."finite-field"; 2751 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2752 "firstify" = dontDistribute super."firstify"; 2753 "fishfood" = dontDistribute super."fishfood"; ··· 3328 "happstack-lite" = dontDistribute super."happstack-lite"; 3329 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3330 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3331 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3332 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3333 "happstack-state" = dontDistribute super."happstack-state"; ··· 4873 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4874 "monad-open" = dontDistribute super."monad-open"; 4875 "monad-ox" = dontDistribute super."monad-ox"; 4876 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4877 "monad-param" = dontDistribute super."monad-param"; 4878 "monad-ran" = dontDistribute super."monad-ran"; ··· 4907 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4908 "monitor" = dontDistribute super."monitor"; 4909 "mono-foldable" = dontDistribute super."mono-foldable"; 4910 "monoid-owns" = dontDistribute super."monoid-owns"; 4911 "monoid-record" = dontDistribute super."monoid-record"; 4912 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6152 "serial" = dontDistribute super."serial"; 6153 "serial-test-generators" = dontDistribute super."serial-test-generators"; 6154 "serialport" = dontDistribute super."serialport"; 6155 "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; 6156 "servant-blaze" = dontDistribute super."servant-blaze"; 6157 "servant-ede" = dontDistribute super."servant-ede"; 6158 "servant-examples" = dontDistribute super."servant-examples"; 6159 "servant-lucid" = dontDistribute super."servant-lucid"; 6160 "servant-mock" = dontDistribute super."servant-mock"; 6161 "servant-pool" = dontDistribute super."servant-pool"; 6162 "servant-postgresql" = dontDistribute super."servant-postgresql"; 6163 "servant-response" = dontDistribute super."servant-response"; 6164 "servant-scotty" = dontDistribute super."servant-scotty"; 6165 "servius" = dontDistribute super."servius"; 6166 "ses-html" = dontDistribute super."ses-html"; 6167 "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; ··· 6848 "time-w3c" = dontDistribute super."time-w3c"; 6849 "timecalc" = dontDistribute super."timecalc"; 6850 "timeconsole" = dontDistribute super."timeconsole"; 6851 "timeout" = dontDistribute super."timeout"; 6852 "timeout-control" = dontDistribute super."timeout-control"; 6853 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7004 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7005 "type-level-sets" = dontDistribute super."type-level-sets"; 7006 "type-level-tf" = dontDistribute super."type-level-tf"; 7007 "type-natural" = dontDistribute super."type-natural"; 7008 "type-ord" = dontDistribute super."type-ord"; 7009 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7096 "unix-memory" = dontDistribute super."unix-memory"; 7097 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7098 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7099 "unlit" = dontDistribute super."unlit"; 7100 "unm-hip" = dontDistribute super."unm-hip"; 7101 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7207 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7208 "vector-static" = dontDistribute super."vector-static"; 7209 "vector-strategies" = dontDistribute super."vector-strategies"; 7210 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7211 "verbosity" = dontDistribute super."verbosity"; 7212 "verilog" = dontDistribute super."verilog"; ··· 7327 "webrtc-vad" = dontDistribute super."webrtc-vad"; 7328 "webserver" = dontDistribute super."webserver"; 7329 "websnap" = dontDistribute super."websnap"; 7330 "websockets-snap" = dontDistribute super."websockets-snap"; 7331 "webwire" = dontDistribute super."webwire"; 7332 "wedding-announcement" = dontDistribute super."wedding-announcement";
··· 581 "LambdaNet" = dontDistribute super."LambdaNet"; 582 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 583 "LambdaShell" = dontDistribute super."LambdaShell"; 584 + "Lambdaya" = dontDistribute super."Lambdaya"; 585 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 586 "Lastik" = dontDistribute super."Lastik"; 587 "Lattices" = dontDistribute super."Lattices"; ··· 771 "RNAdesign" = dontDistribute super."RNAdesign"; 772 "RNAdraw" = dontDistribute super."RNAdraw"; 773 "RNAwolf" = dontDistribute super."RNAwolf"; 774 + "RSA" = doDistribute super."RSA_2_1_0_3"; 775 "Raincat" = dontDistribute super."Raincat"; 776 "Random123" = dontDistribute super."Random123"; 777 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2406 "dixi" = dontDistribute super."dixi"; 2407 "djinn" = dontDistribute super."djinn"; 2408 "djinn-th" = dontDistribute super."djinn-th"; 2409 + "dns" = doDistribute super."dns_2_0_0"; 2410 "dnscache" = dontDistribute super."dnscache"; 2411 "dnsrbl" = dontDistribute super."dnsrbl"; 2412 "dnssd" = dontDistribute super."dnssd"; ··· 2751 "find-conduit" = dontDistribute super."find-conduit"; 2752 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2753 "finite-field" = dontDistribute super."finite-field"; 2754 + "first-and-last" = dontDistribute super."first-and-last"; 2755 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2756 "firstify" = dontDistribute super."firstify"; 2757 "fishfood" = dontDistribute super."fishfood"; ··· 3332 "happstack-lite" = dontDistribute super."happstack-lite"; 3333 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3334 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3335 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3336 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3337 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3338 "happstack-state" = dontDistribute super."happstack-state"; ··· 4878 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4879 "monad-open" = dontDistribute super."monad-open"; 4880 "monad-ox" = dontDistribute super."monad-ox"; 4881 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4882 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4883 "monad-param" = dontDistribute super."monad-param"; 4884 "monad-ran" = dontDistribute super."monad-ran"; ··· 4913 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4914 "monitor" = dontDistribute super."monitor"; 4915 "mono-foldable" = dontDistribute super."mono-foldable"; 4916 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4917 "monoid-owns" = dontDistribute super."monoid-owns"; 4918 "monoid-record" = dontDistribute super."monoid-record"; 4919 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6159 "serial" = dontDistribute super."serial"; 6160 "serial-test-generators" = dontDistribute super."serial-test-generators"; 6161 "serialport" = dontDistribute super."serialport"; 6162 + "servant" = doDistribute super."servant_0_4_4_4"; 6163 "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; 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"; 6167 "servant-ede" = dontDistribute super."servant-ede"; 6168 "servant-examples" = dontDistribute super."servant-examples"; 6169 + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; 6170 "servant-lucid" = dontDistribute super."servant-lucid"; 6171 "servant-mock" = dontDistribute super."servant-mock"; 6172 "servant-pool" = dontDistribute super."servant-pool"; 6173 "servant-postgresql" = dontDistribute super."servant-postgresql"; 6174 "servant-response" = dontDistribute super."servant-response"; 6175 "servant-scotty" = dontDistribute super."servant-scotty"; 6176 + "servant-server" = doDistribute super."servant-server_0_4_4_4"; 6177 "servius" = dontDistribute super."servius"; 6178 "ses-html" = dontDistribute super."ses-html"; 6179 "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; ··· 6860 "time-w3c" = dontDistribute super."time-w3c"; 6861 "timecalc" = dontDistribute super."timecalc"; 6862 "timeconsole" = dontDistribute super."timeconsole"; 6863 + "timeless" = dontDistribute super."timeless"; 6864 "timeout" = dontDistribute super."timeout"; 6865 "timeout-control" = dontDistribute super."timeout-control"; 6866 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7017 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7018 "type-level-sets" = dontDistribute super."type-level-sets"; 7019 "type-level-tf" = dontDistribute super."type-level-tf"; 7020 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7021 "type-natural" = dontDistribute super."type-natural"; 7022 "type-ord" = dontDistribute super."type-ord"; 7023 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7110 "unix-memory" = dontDistribute super."unix-memory"; 7111 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7112 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7113 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7114 "unlit" = dontDistribute super."unlit"; 7115 "unm-hip" = dontDistribute super."unm-hip"; 7116 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7222 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7223 "vector-static" = dontDistribute super."vector-static"; 7224 "vector-strategies" = dontDistribute super."vector-strategies"; 7225 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7226 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7227 "verbosity" = dontDistribute super."verbosity"; 7228 "verilog" = dontDistribute super."verilog"; ··· 7343 "webrtc-vad" = dontDistribute super."webrtc-vad"; 7344 "webserver" = dontDistribute super."webserver"; 7345 "websnap" = dontDistribute super."websnap"; 7346 + "websockets" = doDistribute super."websockets_0_9_6_0"; 7347 "websockets-snap" = dontDistribute super."websockets-snap"; 7348 "webwire" = dontDistribute super."webwire"; 7349 "wedding-announcement" = dontDistribute super."wedding-announcement";
+18
pkgs/development/haskell-modules/configuration-lts-3.9.nix
··· 580 "LambdaNet" = dontDistribute super."LambdaNet"; 581 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 582 "LambdaShell" = dontDistribute super."LambdaShell"; 583 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 584 "Lastik" = dontDistribute super."Lastik"; 585 "Lattices" = dontDistribute super."Lattices"; ··· 768 "RNAdesign" = dontDistribute super."RNAdesign"; 769 "RNAdraw" = dontDistribute super."RNAdraw"; 770 "RNAwolf" = dontDistribute super."RNAwolf"; 771 "Raincat" = dontDistribute super."Raincat"; 772 "Random123" = dontDistribute super."Random123"; 773 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2397 "dixi" = dontDistribute super."dixi"; 2398 "djinn" = dontDistribute super."djinn"; 2399 "djinn-th" = dontDistribute super."djinn-th"; 2400 "dnscache" = dontDistribute super."dnscache"; 2401 "dnsrbl" = dontDistribute super."dnsrbl"; 2402 "dnssd" = dontDistribute super."dnssd"; ··· 2739 "find-conduit" = dontDistribute super."find-conduit"; 2740 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2741 "finite-field" = dontDistribute super."finite-field"; 2742 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2743 "firstify" = dontDistribute super."firstify"; 2744 "fishfood" = dontDistribute super."fishfood"; ··· 3318 "happstack-lite" = dontDistribute super."happstack-lite"; 3319 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3320 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3321 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3322 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3323 "happstack-state" = dontDistribute super."happstack-state"; ··· 4861 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4862 "monad-open" = dontDistribute super."monad-open"; 4863 "monad-ox" = dontDistribute super."monad-ox"; 4864 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4865 "monad-param" = dontDistribute super."monad-param"; 4866 "monad-ran" = dontDistribute super."monad-ran"; ··· 4894 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4895 "monitor" = dontDistribute super."monitor"; 4896 "mono-foldable" = dontDistribute super."mono-foldable"; 4897 "monoid-owns" = dontDistribute super."monoid-owns"; 4898 "monoid-record" = dontDistribute super."monoid-record"; 4899 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6136 "serial" = dontDistribute super."serial"; 6137 "serial-test-generators" = dontDistribute super."serial-test-generators"; 6138 "serialport" = dontDistribute super."serialport"; 6139 "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; 6140 "servant-blaze" = dontDistribute super."servant-blaze"; 6141 "servant-ede" = dontDistribute super."servant-ede"; 6142 "servant-examples" = dontDistribute super."servant-examples"; 6143 "servant-lucid" = dontDistribute super."servant-lucid"; 6144 "servant-mock" = dontDistribute super."servant-mock"; 6145 "servant-pool" = dontDistribute super."servant-pool"; 6146 "servant-postgresql" = dontDistribute super."servant-postgresql"; 6147 "servant-response" = dontDistribute super."servant-response"; 6148 "servant-scotty" = dontDistribute super."servant-scotty"; 6149 "servius" = dontDistribute super."servius"; 6150 "ses-html" = dontDistribute super."ses-html"; 6151 "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; ··· 6831 "time-w3c" = dontDistribute super."time-w3c"; 6832 "timecalc" = dontDistribute super."timecalc"; 6833 "timeconsole" = dontDistribute super."timeconsole"; 6834 "timeout" = dontDistribute super."timeout"; 6835 "timeout-control" = dontDistribute super."timeout-control"; 6836 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 6987 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 6988 "type-level-sets" = dontDistribute super."type-level-sets"; 6989 "type-level-tf" = dontDistribute super."type-level-tf"; 6990 "type-natural" = dontDistribute super."type-natural"; 6991 "type-ord" = dontDistribute super."type-ord"; 6992 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7079 "unix-memory" = dontDistribute super."unix-memory"; 7080 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7081 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7082 "unlit" = dontDistribute super."unlit"; 7083 "unm-hip" = dontDistribute super."unm-hip"; 7084 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7190 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7191 "vector-static" = dontDistribute super."vector-static"; 7192 "vector-strategies" = dontDistribute super."vector-strategies"; 7193 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7194 "verbosity" = dontDistribute super."verbosity"; 7195 "verilog" = dontDistribute super."verilog"; ··· 7309 "webrtc-vad" = dontDistribute super."webrtc-vad"; 7310 "webserver" = dontDistribute super."webserver"; 7311 "websnap" = dontDistribute super."websnap"; 7312 "websockets-snap" = dontDistribute super."websockets-snap"; 7313 "webwire" = dontDistribute super."webwire"; 7314 "wedding-announcement" = dontDistribute super."wedding-announcement"; ··· 7485 "yes-precure5-command" = dontDistribute super."yes-precure5-command"; 7486 "yesod-angular" = dontDistribute super."yesod-angular"; 7487 "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; 7488 "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; 7489 "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; 7490 "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
··· 580 "LambdaNet" = dontDistribute super."LambdaNet"; 581 "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; 582 "LambdaShell" = dontDistribute super."LambdaShell"; 583 + "Lambdaya" = dontDistribute super."Lambdaya"; 584 "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; 585 "Lastik" = dontDistribute super."Lastik"; 586 "Lattices" = dontDistribute super."Lattices"; ··· 769 "RNAdesign" = dontDistribute super."RNAdesign"; 770 "RNAdraw" = dontDistribute super."RNAdraw"; 771 "RNAwolf" = dontDistribute super."RNAwolf"; 772 + "RSA" = doDistribute super."RSA_2_1_0_3"; 773 "Raincat" = dontDistribute super."Raincat"; 774 "Random123" = dontDistribute super."Random123"; 775 "RandomDotOrg" = dontDistribute super."RandomDotOrg"; ··· 2399 "dixi" = dontDistribute super."dixi"; 2400 "djinn" = dontDistribute super."djinn"; 2401 "djinn-th" = dontDistribute super."djinn-th"; 2402 + "dns" = doDistribute super."dns_2_0_0"; 2403 "dnscache" = dontDistribute super."dnscache"; 2404 "dnsrbl" = dontDistribute super."dnsrbl"; 2405 "dnssd" = dontDistribute super."dnssd"; ··· 2742 "find-conduit" = dontDistribute super."find-conduit"; 2743 "fingertree-tf" = dontDistribute super."fingertree-tf"; 2744 "finite-field" = dontDistribute super."finite-field"; 2745 + "first-and-last" = dontDistribute super."first-and-last"; 2746 "first-class-patterns" = dontDistribute super."first-class-patterns"; 2747 "firstify" = dontDistribute super."firstify"; 2748 "fishfood" = dontDistribute super."fishfood"; ··· 3322 "happstack-lite" = dontDistribute super."happstack-lite"; 3323 "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; 3324 "happstack-plugins" = dontDistribute super."happstack-plugins"; 3325 + "happstack-server" = doDistribute super."happstack-server_7_4_4"; 3326 "happstack-server-tls" = dontDistribute super."happstack-server-tls"; 3327 "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; 3328 "happstack-state" = dontDistribute super."happstack-state"; ··· 4866 "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; 4867 "monad-open" = dontDistribute super."monad-open"; 4868 "monad-ox" = dontDistribute super."monad-ox"; 4869 + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; 4870 "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; 4871 "monad-param" = dontDistribute super."monad-param"; 4872 "monad-ran" = dontDistribute super."monad-ran"; ··· 4900 "mongrel2-handler" = dontDistribute super."mongrel2-handler"; 4901 "monitor" = dontDistribute super."monitor"; 4902 "mono-foldable" = dontDistribute super."mono-foldable"; 4903 + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; 4904 "monoid-owns" = dontDistribute super."monoid-owns"; 4905 "monoid-record" = dontDistribute super."monoid-record"; 4906 "monoid-statistics" = dontDistribute super."monoid-statistics"; ··· 6143 "serial" = dontDistribute super."serial"; 6144 "serial-test-generators" = dontDistribute super."serial-test-generators"; 6145 "serialport" = dontDistribute super."serialport"; 6146 + "servant" = doDistribute super."servant_0_4_4_4"; 6147 "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; 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"; 6151 "servant-ede" = dontDistribute super."servant-ede"; 6152 "servant-examples" = dontDistribute super."servant-examples"; 6153 + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; 6154 "servant-lucid" = dontDistribute super."servant-lucid"; 6155 "servant-mock" = dontDistribute super."servant-mock"; 6156 "servant-pool" = dontDistribute super."servant-pool"; 6157 "servant-postgresql" = dontDistribute super."servant-postgresql"; 6158 "servant-response" = dontDistribute super."servant-response"; 6159 "servant-scotty" = dontDistribute super."servant-scotty"; 6160 + "servant-server" = doDistribute super."servant-server_0_4_4_4"; 6161 "servius" = dontDistribute super."servius"; 6162 "ses-html" = dontDistribute super."ses-html"; 6163 "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; ··· 6843 "time-w3c" = dontDistribute super."time-w3c"; 6844 "timecalc" = dontDistribute super."timecalc"; 6845 "timeconsole" = dontDistribute super."timeconsole"; 6846 + "timeless" = dontDistribute super."timeless"; 6847 "timeout" = dontDistribute super."timeout"; 6848 "timeout-control" = dontDistribute super."timeout-control"; 6849 "timeout-with-results" = dontDistribute super."timeout-with-results"; ··· 7000 "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; 7001 "type-level-sets" = dontDistribute super."type-level-sets"; 7002 "type-level-tf" = dontDistribute super."type-level-tf"; 7003 + "type-list" = doDistribute super."type-list_0_2_0_0"; 7004 "type-natural" = dontDistribute super."type-natural"; 7005 "type-ord" = dontDistribute super."type-ord"; 7006 "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; ··· 7093 "unix-memory" = dontDistribute super."unix-memory"; 7094 "unix-process-conduit" = dontDistribute super."unix-process-conduit"; 7095 "unix-pty-light" = dontDistribute super."unix-pty-light"; 7096 + "unix-time" = doDistribute super."unix-time_0_3_5"; 7097 "unlit" = dontDistribute super."unlit"; 7098 "unm-hip" = dontDistribute super."unm-hip"; 7099 "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; ··· 7205 "vector-space-opengl" = dontDistribute super."vector-space-opengl"; 7206 "vector-static" = dontDistribute super."vector-static"; 7207 "vector-strategies" = dontDistribute super."vector-strategies"; 7208 + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; 7209 "verbalexpressions" = dontDistribute super."verbalexpressions"; 7210 "verbosity" = dontDistribute super."verbosity"; 7211 "verilog" = dontDistribute super."verilog"; ··· 7325 "webrtc-vad" = dontDistribute super."webrtc-vad"; 7326 "webserver" = dontDistribute super."webserver"; 7327 "websnap" = dontDistribute super."websnap"; 7328 + "websockets" = doDistribute super."websockets_0_9_6_0"; 7329 "websockets-snap" = dontDistribute super."websockets-snap"; 7330 "webwire" = dontDistribute super."webwire"; 7331 "wedding-announcement" = dontDistribute super."wedding-announcement"; ··· 7502 "yes-precure5-command" = dontDistribute super."yes-precure5-command"; 7503 "yesod-angular" = dontDistribute super."yesod-angular"; 7504 "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; 7505 + "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; 7506 "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; 7507 "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; 7508 "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+596 -199
pkgs/development/haskell-modules/hackage-packages.nix
··· 6065 hydraPlatforms = stdenv.lib.platforms.none; 6066 }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; 6067 6068 - "GLURaw" = callPackage 6069 ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: 6070 mkDerivation { 6071 pname = "GLURaw"; 6072 version = "1.5.0.1"; 6073 sha256 = "1b52c2637820c2bea38f40acdd217a68c0dd3849f7ed1308959aa324b6b2c8f1"; 6074 libraryHaskellDepends = [ base OpenGLRaw transformers ]; 6075 librarySystemDepends = [ freeglut mesa ]; 6076 homepage = "http://www.haskell.org/haskellwiki/Opengl"; ··· 11343 hydraPlatforms = stdenv.lib.platforms.none; 11344 }) {}; 11345 11346 "LargeCardinalHierarchy" = callPackage 11347 ({ mkDerivation, base }: 11348 mkDerivation { ··· 12359 pname = "MonadRandom"; 12360 version = "0.3.0.1"; 12361 sha256 = "40e6a19cecf9c72a5281e813c982e037104c287eef3e4b49a03b4fdd6736722d"; 12362 libraryHaskellDepends = [ base mtl random transformers ]; 12363 description = "Random-number generation monad"; 12364 license = "unknown"; ··· 12373 pname = "MonadRandom"; 12374 version = "0.3.0.2"; 12375 sha256 = "71afdea34f7836678d989cef3373f76a62cca5f47440aa0185c85fff5694eaa1"; 12376 libraryHaskellDepends = [ 12377 base mtl random transformers transformers-compat 12378 ]; ··· 12389 pname = "MonadRandom"; 12390 version = "0.4"; 12391 sha256 = "d32f3f7a8390125f43a67b78741c6655452dfc4388009ab4ca5a265ab5b86f93"; 12392 libraryHaskellDepends = [ 12393 base mtl random transformers transformers-compat 12394 ]; ··· 13684 license = stdenv.lib.licenses.bsd3; 13685 }) {inherit (pkgs) mesa;}; 13686 13687 "OpenGLRaw21" = callPackage 13688 ({ mkDerivation, OpenGLRaw }: 13689 mkDerivation { ··· 14999 hydraPlatforms = stdenv.lib.platforms.none; 15000 }) {}; 15001 15002 - "RSA" = callPackage 15003 ({ mkDerivation, base, binary, bytestring, crypto-api 15004 , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged 15005 , test-framework, test-framework-quickcheck2 ··· 15017 ]; 15018 description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; 15019 license = stdenv.lib.licenses.bsd3; 15020 }) {}; 15021 15022 - "RSA_2_2_0" = callPackage 15023 ({ mkDerivation, base, binary, bytestring, crypto-api 15024 , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged 15025 , test-framework, test-framework-quickcheck2 ··· 15037 ]; 15038 description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; 15039 license = stdenv.lib.licenses.bsd3; 15040 - hydraPlatforms = stdenv.lib.platforms.none; 15041 }) {}; 15042 15043 "Raincat" = callPackage ··· 19596 pname = "accelerate-cuda"; 19597 version = "0.15.0.0"; 19598 sha256 = "bec5de97e2a621d8eab3da2598143e34c4145fb10adad6d4164ed4ce237316fd"; 19599 - revision = "2"; 19600 - editedCabalFile = "5ed199c4c1d360ed3eaee24df7016462ed1fb1313ff47d6828be546eec8708fc"; 19601 libraryHaskellDepends = [ 19602 accelerate array base binary bytestring cryptohash cuda directory 19603 fclabels filepath hashable hashtables language-c-quote ··· 19737 }: 19738 mkDerivation { 19739 pname = "accelerate-io"; 19740 - version = "0.15.0.0"; 19741 - sha256 = "66a48e417e353f6daad24e7ca385370764d6a0a1979066c1e890fba77b95e802"; 19742 - revision = "1"; 19743 - editedCabalFile = "5c3f8f7ebc03117652646329743ea251d281f72d81454e55538c27e87e8c0ecc"; 19744 libraryHaskellDepends = [ 19745 accelerate array base bmp bytestring repa vector 19746 ]; 19747 - jailbreak = true; 19748 homepage = "https://github.com/AccelerateHS/accelerate-io"; 19749 description = "Read and write Accelerate arrays in various formats"; 19750 license = stdenv.lib.licenses.bsd3; ··· 40302 }: 40303 mkDerivation { 40304 pname = "cef"; 40305 - version = "0.1.2"; 40306 - sha256 = "9191a449057e8889c3626f8e625b85a27af059cc43c74d6202dad30a7b91b838"; 40307 libraryHaskellDepends = [ base bytestring text time ]; 40308 testHaskellDepends = [ base directory doctest filepath ]; 40309 homepage = "http://github.com/picussecurity/haskell-cef.git"; ··· 43206 }: 43207 mkDerivation { 43208 pname = "clckwrks"; 43209 - version = "0.23.10"; 43210 - sha256 = "7e85091501c7a91a51c17920b415e764f20b730f1bf59ad0e0cc5be9b777cbe7"; 43211 libraryHaskellDepends = [ 43212 acid-state aeson aeson-qq attoparsec base blaze-html bytestring 43213 cereal containers directory filepath happstack-authenticate ··· 43231 }: 43232 mkDerivation { 43233 pname = "clckwrks-cli"; 43234 - version = "0.2.14"; 43235 - sha256 = "2336de23aed5c6cb2dafdafbd42581c43db3313835a91ad70a664a2d7ecf9bb7"; 43236 isLibrary = false; 43237 isExecutable = true; 43238 executableHaskellDepends = [ 43239 acid-state base clckwrks haskeline mtl network parsec 43240 ]; 43241 - jailbreak = true; 43242 homepage = "http://www.clckwrks.com/"; 43243 description = "a command-line interface for adminstrating some aspects of clckwrks"; 43244 license = stdenv.lib.licenses.bsd3; ··· 43370 }: 43371 mkDerivation { 43372 pname = "clckwrks-theme-bootstrap"; 43373 - version = "0.4.0"; 43374 - sha256 = "9f4e43b58b2a8ec3d9a8d33663c3cad8121981e72d69cada7c76467b329d4d23"; 43375 libraryHaskellDepends = [ 43376 base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro 43377 mtl text web-plugins 43378 ]; 43379 - jailbreak = true; 43380 homepage = "http://www.clckwrks.com/"; 43381 description = "simple bootstrap based template for clckwrks"; 43382 license = stdenv.lib.licenses.bsd3; ··· 43388 }: 43389 mkDerivation { 43390 pname = "clckwrks-theme-clckwrks"; 43391 - version = "0.5.1"; 43392 - sha256 = "93540dc0dafbf1e9bc6863c215391905201bc4653133fd01c0f0c6a9bacd6858"; 43393 libraryHaskellDepends = [ 43394 base clckwrks containers happstack-authenticate hsp hsx2hs mtl text 43395 web-plugins ··· 57751 QuickCheck rematch stm test-framework test-framework-hunit 57752 test-framework-quickcheck2 time transformers unordered-containers 57753 ]; 57754 homepage = "http://github.com/haskell-distributed/distributed-process-execution"; 57755 description = "Execution Framework for The Cloud Haskell Application Platform"; 57756 license = stdenv.lib.licenses.bsd3; ··· 58128 QuickCheck rematch stm test-framework test-framework-hunit 58129 test-framework-quickcheck2 time transformers unordered-containers 58130 ]; 58131 homepage = "http://github.com/haskell-distributed/distributed-process-task"; 58132 description = "Task Framework for The Cloud Haskell Application Platform"; 58133 license = stdenv.lib.licenses.bsd3; ··· 58448 license = stdenv.lib.licenses.bsd3; 58449 }) {}; 58450 58451 - "dns" = callPackage 58452 ({ mkDerivation, attoparsec, base, binary, blaze-builder 58453 , bytestring, conduit, conduit-extra, containers, doctest, hspec 58454 , iproute, mtl, network, random, resourcet, word8 ··· 58470 testTarget = "spec"; 58471 description = "DNS library in Haskell"; 58472 license = stdenv.lib.licenses.bsd3; 58473 }) {}; 58474 58475 "dnscache" = callPackage ··· 67208 license = stdenv.lib.licenses.bsd3; 67209 }) {}; 67210 67211 "first-class-patterns" = callPackage 67212 ({ mkDerivation, base, transformers }: 67213 mkDerivation { ··· 71939 }: 71940 mkDerivation { 71941 pname = "getopt-generics"; 71942 - version = "0.11.0.1"; 71943 - sha256 = "b3f49f80af9e7eba12260f772c8b2b85cea4be80c7f33fc363c28f5f9d7f9eca"; 71944 libraryHaskellDepends = [ 71945 base base-compat base-orphans generics-sop tagged 71946 ]; ··· 71949 QuickCheck safe silently tagged 71950 ]; 71951 doCheck = false; 71952 - homepage = "https://github.com/zalora/getopt-generics#readme"; 71953 description = "Create command line interfaces with ease"; 71954 license = stdenv.lib.licenses.bsd3; 71955 }) {}; ··· 76689 ({ mkDerivation, base, containers, deepseq, pointed }: 76690 mkDerivation { 76691 pname = "grouped-list"; 76692 - version = "0.1.0.0"; 76693 - sha256 = "e8d4003fa846ee6a928209bd78c526691d40b7eaaec76fdc636d38967f05c9fb"; 76694 libraryHaskellDepends = [ base containers deepseq pointed ]; 76695 homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; 76696 description = "Grouped lists. Equal consecutive elements are grouped."; 76697 license = stdenv.lib.licenses.bsd3; 76698 }) {}; 76699 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 "groupoid" = callPackage 76714 ({ mkDerivation, base }: 76715 mkDerivation { ··· 80726 "happstack-authenticate" = callPackage 80727 ({ mkDerivation, acid-state, aeson, authenticate, base 80728 , 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 80735 }: 80736 mkDerivation { 80737 pname = "happstack-authenticate"; 80738 - version = "2.2.0"; 80739 - sha256 = "7093ae69b6be698102f87df7851eafbdeb830f55467083aea06bd8b11adf5078"; 80740 libraryHaskellDepends = [ 80741 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 80747 web-routes-happstack web-routes-hsp web-routes-th 80748 ]; 80749 homepage = "http://www.happstack.com/"; ··· 81176 hydraPlatforms = stdenv.lib.platforms.none; 81177 }) {}; 81178 81179 - "happstack-server" = callPackage 81180 ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring 81181 , containers, directory, exceptions, extensible-exceptions 81182 , filepath, hslogger, html, HUnit, monad-control, mtl, network ··· 81203 homepage = "http://happstack.com"; 81204 description = "Web related tools and services"; 81205 license = stdenv.lib.licenses.bsd3; 81206 }) {}; 81207 81208 "happstack-server-tls" = callPackage ··· 84234 ({ mkDerivation, base }: 84235 mkDerivation { 84236 pname = "haskore-vintage"; 84237 - version = "0.2"; 84238 - sha256 = "d618cd63ca221c980b61fde864e8a024bfefba0318984d92a270c3b1fbd1f8b6"; 84239 libraryHaskellDepends = [ base ]; 84240 homepage = "http://haskell.org/haskore/"; 84241 description = "The February 2000 version of Haskore"; ··· 85147 }: 85148 mkDerivation { 85149 pname = "hastily"; 85150 - version = "0.1.0.4"; 85151 - sha256 = "0cb4cb729d1c6a382a81c2667c0bd42ec6be3aaa90604e8de2067f5ec8a351fb"; 85152 isLibrary = true; 85153 isExecutable = true; 85154 libraryHaskellDepends = [ ··· 96076 ({ mkDerivation, base, checkers, hspec }: 96077 mkDerivation { 96078 pname = "hspec-checkers"; 96079 - version = "0.1.0"; 96080 - sha256 = "cd4ceeed2d9b46f42d440914814162657264e541ad25232ae609b274e5fb7810"; 96081 libraryHaskellDepends = [ base checkers hspec ]; 96082 testHaskellDepends = [ base checkers hspec ]; 96083 description = "Allows to use checkers properties from hspec"; ··· 97191 libraryHaskellDepends = [ 97192 base exceptions hsqml-datamodel type-list vinyl 97193 ]; 97194 homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; 97195 description = "HsQML DataModel instances for Vinyl Rec"; 97196 license = stdenv.lib.licenses.bsd3; ··· 98130 }: 98131 mkDerivation { 98132 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 version = "0.2.1"; 98151 sha256 = "856138d79945770cdb4b522f58893a1c45014d39238cfc5b2eceeac089c56f71"; 98152 libraryHaskellDepends = [ base bytestring text time ]; ··· 98156 homepage = "http://github.com/fizruk/http-api-data"; 98157 description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; 98158 license = stdenv.lib.licenses.bsd3; 98159 - hydraPlatforms = stdenv.lib.platforms.none; 98160 }) {}; 98161 98162 "http-attoparsec" = callPackage ··· 108779 pname = "keter"; 108780 version = "1.3.7"; 108781 sha256 = "a0710bf072a8829f5e696a6cf760554b26006d520f311ae29a53bf46e96f98c3"; 108782 - revision = "2"; 108783 - editedCabalFile = "cefc8c00964e630396ca46f09d13a77fc4870db48e5526796817ca6d35aa3e49"; 108784 isLibrary = true; 108785 isExecutable = true; 108786 libraryHaskellDepends = [ ··· 108822 pname = "keter"; 108823 version = "1.3.7.1"; 108824 sha256 = "003ce327d5b8ce407df901b46a99a37109b2ce14d6f51e50212130ba5ed9843e"; 108825 - revision = "2"; 108826 - editedCabalFile = "a1c0a6f6e7ffa9cd6c5a1c2780fdb5ce14a95d3c5fe9fe96cfeccc3726e91e98"; 108827 isLibrary = true; 108828 isExecutable = true; 108829 libraryHaskellDepends = [ ··· 111272 }) {}; 111273 111274 "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 111279 }: 111280 mkDerivation { 111281 pname = "language-lua2"; 111282 - version = "0.1.0.3"; 111283 - sha256 = "f375d752b3100a5cf2afa3238ba6a3fac5311af3e937e3f988c569de319aa009"; 111284 isLibrary = true; 111285 isExecutable = true; 111286 libraryHaskellDepends = [ ··· 111292 base Earley lexer-applicative optparse-applicative srcloc wl-pprint 111293 ]; 111294 testHaskellDepends = [ 111295 - base lexer-applicative QuickCheck semigroups srcloc tasty 111296 tasty-hunit tasty-quickcheck unordered-containers 111297 ]; 111298 homepage = "http://github.com/mitchellwrosen/language-lua2"; 111299 description = "Lua parser and pretty printer"; 111300 license = stdenv.lib.licenses.bsd3; ··· 118496 , bytestring, containers, email-validate, http-client 118497 , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck 118498 , 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 , unordered-containers 118523 }: 118524 mkDerivation { ··· 118536 ]; 118537 description = "Library for interfacing with the Mandrill JSON API"; 118538 license = stdenv.lib.licenses.mit; 118539 - hydraPlatforms = stdenv.lib.platforms.none; 118540 }) {}; 118541 118542 "mandulia" = callPackage ··· 122653 hydraPlatforms = stdenv.lib.platforms.none; 122654 }) {}; 122655 122656 - "monad-parallel" = callPackage 122657 ({ mkDerivation, base, parallel, transformers, transformers-compat 122658 }: 122659 mkDerivation { ··· 122666 homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; 122667 description = "Parallel execution of monadic computations"; 122668 license = stdenv.lib.licenses.bsd3; 122669 }) {}; 122670 122671 "monad-parallel-progressbar" = callPackage ··· 123520 hydraPlatforms = stdenv.lib.platforms.none; 123521 }) {}; 123522 123523 - "mono-traversable" = callPackage 123524 ({ mkDerivation, base, bytestring, comonad, containers, dlist 123525 , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck 123526 , semigroupoids, semigroups, split, text, transformers ··· 123542 homepage = "https://github.com/snoyberg/mono-traversable"; 123543 description = "Type classes for mapping, folding, and traversing monomorphic containers"; 123544 license = stdenv.lib.licenses.mit; 123545 }) {}; 123546 123547 "monoid-extras_0_3_3_5" = callPackage ··· 126500 }: 126501 mkDerivation { 126502 pname = "ncurses"; 126503 - version = "0.2.11"; 126504 - sha256 = "f3dbd238d44c4bf44ccb5364540300bc9a16b539822535f3cd5d9e1189105922"; 126505 libraryHaskellDepends = [ base containers text transformers ]; 126506 librarySystemDepends = [ ncurses ]; 126507 libraryToolDepends = [ c2hs ]; ··· 129913 ({ mkDerivation, base, containers }: 129914 mkDerivation { 129915 pname = "observable-sharing"; 129916 - version = "0.2.3"; 129917 - sha256 = "36438ff9a35a7d7ff0f73d5bc798e544584d1aa0efc07e7f0fb7a5513ed20432"; 129918 libraryHaskellDepends = [ base containers ]; 129919 homepage = "https://github.com/atzeus/observable-sharing"; 129920 description = "Simple observable sharing"; ··· 131878 }: 131879 mkDerivation { 131880 pname = "ot"; 131881 - version = "0.2.0.0"; 131882 - sha256 = "a3e917487a3aab56966fc3d676a3b8cf079acbd05b0ea0c887d6b90a18a6c46d"; 131883 libraryHaskellDepends = [ 131884 aeson attoparsec base binary either ghc mtl QuickCheck text 131885 ]; ··· 131887 aeson base binary HUnit QuickCheck test-framework 131888 test-framework-hunit test-framework-quickcheck2 text 131889 ]; 131890 - jailbreak = true; 131891 homepage = "https://github.com/operational-transformation/ot.hs"; 131892 description = "Real-time collaborative editing with Operational Transformation"; 131893 license = stdenv.lib.licenses.mit; ··· 132037 }: 132038 mkDerivation { 132039 pname = "packer"; 132040 - version = "0.1.8"; 132041 - sha256 = "713d29b95f41aff8ed21dc59551c5caf3ac165c07d43d4e403cb1b161429f8e4"; 132042 libraryHaskellDepends = [ base bytestring ghc-prim transformers ]; 132043 testHaskellDepends = [ 132044 base bytestring tasty tasty-hunit tasty-quickcheck ··· 132663 doCheck = false; 132664 description = "Supports using pandoc with citeproc"; 132665 license = stdenv.lib.licenses.bsd3; 132666 }) {}; 132667 132668 "pandoc-citeproc-preamble" = callPackage ··· 135520 monad-control monad-logger mysql mysql-simple persistent resourcet 135521 text transformers 135522 ]; 135523 - doHaddock = false; 135524 homepage = "http://www.yesodweb.com/book/persistent"; 135525 description = "Backend for the persistent library using MySQL database server"; 135526 license = stdenv.lib.licenses.mit; ··· 136856 }) {}; 136857 136858 "picologic" = callPackage 136859 - ({ mkDerivation, base, containers, mtl, parsec, picosat, pretty }: 136860 mkDerivation { 136861 pname = "picologic"; 136862 - version = "0.1.1"; 136863 - sha256 = "40b8f3a30f200f956d967c4bfa8063cbaf9a9e1963c246cffcc79e8e5da29193"; 136864 isLibrary = true; 136865 isExecutable = true; 136866 libraryHaskellDepends = [ 136867 base containers mtl parsec picosat pretty 136868 ]; 136869 - jailbreak = true; 136870 homepage = "https://github.com/sdiehl/picologic"; 136871 description = "Utilities for symbolic predicate logic expressions"; 136872 license = stdenv.lib.licenses.mit; ··· 146349 }: 146350 mkDerivation { 146351 type-level-natural-number-operations 146352 - version = "0.1"; 146353 - type-level-natural-number-operations 146354 libraryHaskellDepends = [ 146355 type-level-natural-number-operations 146356 ]; ··· 149159 }: 149160 mkDerivation { 149161 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 version = "0.3.1"; 149178 sha256 = "a2c2e1b1e1bfdc7870100eee642e488268e21117b08aad254342d14a53ce13d9"; 149179 libraryHaskellDepends = [ ··· 149181 ]; 149182 description = "Rest driver for Happstack"; 149183 license = stdenv.lib.licenses.bsd3; 149184 - hydraPlatforms = stdenv.lib.platforms.none; 149185 }) {}; 149186 149187 "rest-snap_0_1_17_14" = callPackage ··· 154739 hydraPlatforms = stdenv.lib.platforms.none; 154740 }) {}; 154741 154742 - "servant" = callPackage 154743 ({ mkDerivation, aeson, attoparsec, base, bytestring 154744 , bytestring-conversion, case-insensitive, directory, doctest 154745 , filemanip, filepath, hspec, http-media, http-types, network-uri ··· 154763 homepage = "http://haskell-servant.github.io/"; 154764 description = "A family of combinators for defining webservices APIs"; 154765 license = stdenv.lib.licenses.bsd3; 154766 }) {}; 154767 154768 "servant-JuicyPixels_0_1_0_0" = callPackage ··· 154812 ({ mkDerivation, base, blaze-html, http-media, servant }: 154813 mkDerivation { 154814 pname = "servant-blaze"; 154815 - version = "0.4.4.4"; 154816 - sha256 = "58e3d5922b9031559aebc7ae99e52712d6a208cb2c0164da5baffb4cd55cafa1"; 154817 libraryHaskellDepends = [ base blaze-html http-media servant ]; 154818 homepage = "http://haskell-servant.github.io/"; 154819 description = "Blaze-html support for servant"; ··· 154900 hydraPlatforms = stdenv.lib.platforms.none; 154901 }) {}; 154902 154903 - "servant-client" = callPackage 154904 ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq 154905 , either, exceptions, hspec, http-client, http-client-tls 154906 , http-media, http-types, HUnit, network, network-uri, QuickCheck ··· 154924 homepage = "http://haskell-servant.github.io/"; 154925 description = "automatical derivation of querying functions for servant webservices"; 154926 license = stdenv.lib.licenses.bsd3; 154927 }) {}; 154928 154929 "servant-docs_0_3_1" = callPackage ··· 155007 hydraPlatforms = stdenv.lib.platforms.none; 155008 }) {}; 155009 155010 - "servant-docs" = callPackage 155011 ({ mkDerivation, aeson, base, bytestring, bytestring-conversion 155012 , case-insensitive, hashable, hspec, http-media, http-types, lens 155013 , servant, string-conversions, text, unordered-containers ··· 155033 homepage = "http://haskell-servant.github.io/"; 155034 description = "generate API docs for your servant webservice"; 155035 license = stdenv.lib.licenses.bsd3; 155036 }) {}; 155037 155038 "servant-ede" = callPackage ··· 155067 }: 155068 mkDerivation { 155069 pname = "servant-examples"; 155070 - version = "0.4.4.4"; 155071 - sha256 = "e180ff93d58ebb467097b337e00f77b42e9780880627ab52a2b8d69363fc7de4"; 155072 isLibrary = false; 155073 isExecutable = true; 155074 executableHaskellDepends = [ ··· 155153 hydraPlatforms = stdenv.lib.platforms.none; 155154 }) {}; 155155 155156 - "servant-jquery" = callPackage 155157 ({ mkDerivation, aeson, base, charset, filepath, hspec 155158 , hspec-expectations, language-ecmascript, lens, servant 155159 , servant-server, stm, text, transformers, warp ··· 155174 homepage = "http://haskell-servant.github.io/"; 155175 description = "Automatically derive (jquery) javascript functions to query servant webservices"; 155176 license = stdenv.lib.licenses.bsd3; 155177 }) {}; 155178 155179 "servant-lucid" = callPackage 155180 ({ mkDerivation, base, http-media, lucid, servant }: 155181 mkDerivation { 155182 pname = "servant-lucid"; 155183 - version = "0.4.4.4"; 155184 - sha256 = "c42702b20da1f8daea4c2a633e777214e524a2afac96c0b559209351f1f1cd0d"; 155185 libraryHaskellDepends = [ base http-media lucid servant ]; 155186 homepage = "http://haskell-servant.github.io/"; 155187 description = "Servant support for lucid"; ··· 155194 }: 155195 mkDerivation { 155196 pname = "servant-mock"; 155197 - version = "0.4.4.4"; 155198 - sha256 = "1df192ac10aea342cffd5da509f9c5eca40b659fa3c7b77aad87ec0bbb82f35c"; 155199 isLibrary = true; 155200 isExecutable = true; 155201 libraryHaskellDepends = [ ··· 155426 hydraPlatforms = stdenv.lib.platforms.none; 155427 }) {}; 155428 155429 - "servant-server" = callPackage 155430 ({ mkDerivation, aeson, attoparsec, base, bytestring 155431 , bytestring-conversion, directory, doctest, either, exceptions 155432 , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl ··· 155438 pname = "servant-server"; 155439 version = "0.4.4.4"; 155440 sha256 = "056947b96664674f1a6c65af30001e9e2343357efa96e153198ec0f833f3fdd0"; 155441 isLibrary = true; 155442 isExecutable = true; 155443 libraryHaskellDepends = [ ··· 173065 }: 173066 mkDerivation { 173067 pname = "threads-supervisor"; 173068 - version = "1.0.3.0"; 173069 - sha256 = "b64e2b63d65808de4a64a1157ebacb831efc549fdbd38a97012f48ecb3a437c6"; 173070 isLibrary = true; 173071 isExecutable = true; 173072 libraryHaskellDepends = [ ··· 173802 license = stdenv.lib.licenses.bsd3; 173803 }) {}; 173804 173805 "timeout" = callPackage 173806 ({ mkDerivation, base, exceptions, mtl, QuickCheck, tasty 173807 , tasty-quickcheck, time ··· 175745 ({ mkDerivation, base, containers, template-haskell, time }: 175746 mkDerivation { 175747 pname = "true-name"; 175748 - version = "0.0.0.1"; 175749 - sha256 = "f5b57148ebab8d1f72001d795d44720aa3ee2d4c7f12e63f48fc38884004e7e2"; 175750 libraryHaskellDepends = [ base template-haskell ]; 175751 testHaskellDepends = [ base containers template-haskell time ]; 175752 homepage = "https://github.com/liyang/true-name"; ··· 176677 template-haskell text time transformers transformers-base 176678 twitter-types twitter-types-lens 176679 ]; 176680 homepage = "https://github.com/himura/twitter-conduit"; 176681 description = "Twitter API package with conduit interface and Streaming API support"; 176682 license = stdenv.lib.licenses.bsd3; ··· 176786 test-framework-hunit test-framework-quickcheck2 176787 test-framework-th-prime text time unordered-containers 176788 ]; 176789 homepage = "https://github.com/himura/twitter-types"; 176790 description = "Twitter JSON parser and types"; 176791 license = stdenv.lib.licenses.bsd3; ··· 177194 hydraPlatforms = stdenv.lib.platforms.none; 177195 }) {}; 177196 177197 - "type-list" = callPackage 177198 ({ mkDerivation, base, singletons }: 177199 mkDerivation { 177200 pname = "type-list"; ··· 177203 libraryHaskellDepends = [ base singletons ]; 177204 description = "Operations on type-level lists and tuples"; 177205 license = stdenv.lib.licenses.bsd3; 177206 }) {}; 177207 177208 "type-natural" = callPackage ··· 177753 }: 177754 mkDerivation { 177755 pname = "uhc-light"; 177756 - version = "1.1.9.0"; 177757 - sha256 = "72d6c7c3a8b94b315c6346684e9ba2e97215ebf6e49d97bbc3852e4b0a000b37"; 177758 - revision = "1"; 177759 - editedCabalFile = "8847b4a41a2f6c9be09cf7b4835f53219522da9ef0ca26b918159fec747bd938"; 177760 isLibrary = true; 177761 isExecutable = true; 177762 libraryHaskellDepends = [ ··· 177776 177777 "uhc-util" = callPackage 177778 ({ mkDerivation, array, base, binary, bytestring, containers 177779 - , directory, fclabels, fgl, hashable, ListLike, mtl, process, syb 177780 - , time, time-compat, uulib 177781 }: 177782 mkDerivation { 177783 pname = "uhc-util"; 177784 - version = "0.1.6.0"; 177785 - sha256 = "128641dd69d7adb85095988132914ac5d14140ef063e28cee5102997d1acb6d9"; 177786 libraryHaskellDepends = [ 177787 array base binary bytestring containers directory fclabels fgl 177788 - hashable ListLike mtl process syb time time-compat uulib 177789 ]; 177790 homepage = "https://github.com/UU-ComputerScience/uhc-util"; 177791 description = "UHC utilities"; ··· 178845 hydraPlatforms = stdenv.lib.platforms.none; 178846 }) {}; 178847 178848 - "unix-time" = callPackage 178849 ({ mkDerivation, base, binary, bytestring, doctest, hspec 178850 , old-locale, old-time, QuickCheck, time 178851 }: ··· 178860 doCheck = false; 178861 description = "Unix time parser/formatter and utilities"; 178862 license = stdenv.lib.licenses.bsd3; 178863 }) {}; 178864 178865 "unlambda" = callPackage ··· 181626 hydraPlatforms = stdenv.lib.platforms.none; 181627 }) {}; 181628 181629 - "vector-th-unbox" = callPackage 181630 ({ mkDerivation, base, data-default, template-haskell, vector }: 181631 mkDerivation { 181632 pname = "vector-th-unbox"; 181633 version = "0.2.1.2"; 181634 sha256 = "0df696462d424bab569cc7a8ba1b1d0057bc5a71c510567fe5bcd1a940ae4d05"; 181635 libraryHaskellDepends = [ base template-haskell vector ]; 181636 testHaskellDepends = [ base data-default vector ]; 181637 description = "Deriver for Data.Vector.Unboxed using Template Haskell"; ··· 182280 }: 182281 mkDerivation { 182282 pname = "waddle"; 182283 - version = "0.1.0.5"; 182284 - sha256 = "9b2101391babec27362f11bea8775d2b778766cbc24184cb82e7e3154086986c"; 182285 isLibrary = true; 182286 isExecutable = true; 182287 libraryHaskellDepends = [ ··· 182292 base binary bytestring case-insensitive containers directory 182293 JuicyPixels 182294 ]; 182295 - jailbreak = true; 182296 homepage = "https://github.com/mgrabmueller/waddle"; 182297 description = "DOOM WAD file utilities"; 182298 license = stdenv.lib.licenses.bsd3; ··· 185222 }: 185223 mkDerivation { 185224 pname = "warp"; 185225 - version = "3.1.4"; 185226 - sha256 = "6e7e96dd49f0d0635e3453dbe3a074db3ab8ce69ce48b9da7701f211198029b9"; 185227 libraryHaskellDepends = [ 185228 array auto-update base blaze-builder bytestring bytestring-builder 185229 case-insensitive containers ghc-prim hashable http-date http-types ··· 185663 185664 "wavefront" = callPackage 185665 ({ mkDerivation, attoparsec, base, dlist, filepath, mtl, text 185666 - , transformers 185667 }: 185668 mkDerivation { 185669 pname = "wavefront"; 185670 - version = "0.2"; 185671 - sha256 = "5f9130cb8fa4ecb1b4f6313aa24c8e7c595c15cce72fa9a2e0f009dd6cb9503c"; 185672 libraryHaskellDepends = [ 185673 - attoparsec base dlist filepath mtl text transformers 185674 ]; 185675 homepage = "https://github.com/phaazon/wavefront"; 185676 description = "Wavefront OBJ loader"; 185677 license = stdenv.lib.licenses.bsd3; ··· 186268 license = stdenv.lib.licenses.bsd3; 186269 }) {}; 186270 186271 - "webdriver_0_7" = callPackage 186272 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 186273 - , bytestring, cond, data-default, directory, directory-tree 186274 , 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 186278 }: 186279 mkDerivation { 186280 pname = "webdriver"; 186281 - version = "0.7"; 186282 - sha256 = "3e26d74d378318d58fd8080d2e18394e953821801ee6ce8394e6321c7bdb6b6f"; 186283 libraryHaskellDepends = [ 186284 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 186287 network-uri scientific temporary text time transformers 186288 transformers-base unordered-containers vector zip-archive 186289 ]; 186290 - testHaskellDepends = [ base parallel text ]; 186291 homepage = "https://github.com/kallisti-dev/hs-webdriver"; 186292 description = "a Haskell client for the Selenium WebDriver protocol"; 186293 license = stdenv.lib.licenses.bsd3; ··· 186686 hydraPlatforms = stdenv.lib.platforms.none; 186687 }) {}; 186688 186689 - "websockets" = callPackage 186690 ({ mkDerivation, attoparsec, base, base64-bytestring, binary 186691 , blaze-builder, bytestring, case-insensitive, containers, entropy 186692 , HUnit, network, QuickCheck, random, SHA, test-framework ··· 186716 homepage = "http://jaspervdj.be/websockets"; 186717 description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; 186718 license = stdenv.lib.licenses.bsd3; 186719 }) {}; 186720 186721 "websockets-snap" = callPackage ··· 187118 homepage = "https://github.com/fumieval/witherable"; 187119 description = "Generalization of filter and catMaybes"; 187120 license = stdenv.lib.licenses.bsd3; 187121 }) {}; 187122 187123 "witness" = callPackage ··· 191989 hydraPlatforms = stdenv.lib.platforms.none; 191990 }) {}; 191991 191992 - "yesod-auth" = callPackage 191993 ({ mkDerivation, aeson, authenticate, base, base16-bytestring 191994 , base64-bytestring, binary, blaze-builder, blaze-html 191995 , blaze-markup, byteable, bytestring, conduit, conduit-extra ··· 192004 pname = "yesod-auth"; 192005 version = "1.4.7"; 192006 sha256 = "7b9cfe4f866cbf3726ebfdfc341e0930c4cc60107d94086950701fa1a6e2be88"; 192007 libraryHaskellDepends = [ 192008 aeson authenticate base base16-bytestring base64-bytestring binary 192009 blaze-builder blaze-html blaze-markup byteable bytestring conduit
··· 6065 hydraPlatforms = stdenv.lib.platforms.none; 6066 }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; 6067 6068 + "GLURaw_1_5_0_1" = callPackage 6069 ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: 6070 mkDerivation { 6071 pname = "GLURaw"; 6072 version = "1.5.0.1"; 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"; 6088 libraryHaskellDepends = [ base OpenGLRaw transformers ]; 6089 librarySystemDepends = [ freeglut mesa ]; 6090 homepage = "http://www.haskell.org/haskellwiki/Opengl"; ··· 11357 hydraPlatforms = stdenv.lib.platforms.none; 11358 }) {}; 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 + 11371 "LargeCardinalHierarchy" = callPackage 11372 ({ mkDerivation, base }: 11373 mkDerivation { ··· 12384 pname = "MonadRandom"; 12385 version = "0.3.0.1"; 12386 sha256 = "40e6a19cecf9c72a5281e813c982e037104c287eef3e4b49a03b4fdd6736722d"; 12387 + revision = "1"; 12388 + editedCabalFile = "aef6c8f98c9f4c1fc09753192ec83a6c259087dd098ca2e6cacd3219872f071c"; 12389 libraryHaskellDepends = [ base mtl random transformers ]; 12390 description = "Random-number generation monad"; 12391 license = "unknown"; ··· 12400 pname = "MonadRandom"; 12401 version = "0.3.0.2"; 12402 sha256 = "71afdea34f7836678d989cef3373f76a62cca5f47440aa0185c85fff5694eaa1"; 12403 + revision = "1"; 12404 + editedCabalFile = "1b96fa21489194e7d5634e42f1f4efef26c5e0f9c0cea47c0ea0ca86dc4fd2e6"; 12405 libraryHaskellDepends = [ 12406 base mtl random transformers transformers-compat 12407 ]; ··· 12418 pname = "MonadRandom"; 12419 version = "0.4"; 12420 sha256 = "d32f3f7a8390125f43a67b78741c6655452dfc4388009ab4ca5a265ab5b86f93"; 12421 + revision = "1"; 12422 + editedCabalFile = "d913e82863e6b10963cc9f48a74e70739336e17debbcccef66f7e5068cdf7f1d"; 12423 libraryHaskellDepends = [ 12424 base mtl random transformers transformers-compat 12425 ]; ··· 13715 license = stdenv.lib.licenses.bsd3; 13716 }) {inherit (pkgs) mesa;}; 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 + 13736 "OpenGLRaw21" = callPackage 13737 ({ mkDerivation, OpenGLRaw }: 13738 mkDerivation { ··· 15048 hydraPlatforms = stdenv.lib.platforms.none; 15049 }) {}; 15050 15051 + "RSA_2_1_0_3" = callPackage 15052 ({ mkDerivation, base, binary, bytestring, crypto-api 15053 , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged 15054 , test-framework, test-framework-quickcheck2 ··· 15066 ]; 15067 description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; 15068 license = stdenv.lib.licenses.bsd3; 15069 + hydraPlatforms = stdenv.lib.platforms.none; 15070 }) {}; 15071 15072 + "RSA" = callPackage 15073 ({ mkDerivation, base, binary, bytestring, crypto-api 15074 , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged 15075 , test-framework, test-framework-quickcheck2 ··· 15087 ]; 15088 description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; 15089 license = stdenv.lib.licenses.bsd3; 15090 }) {}; 15091 15092 "Raincat" = callPackage ··· 19645 pname = "accelerate-cuda"; 19646 version = "0.15.0.0"; 19647 sha256 = "bec5de97e2a621d8eab3da2598143e34c4145fb10adad6d4164ed4ce237316fd"; 19648 + revision = "3"; 19649 + editedCabalFile = "14c5a52cc4989793c20d22d81dec4aa91e4c64be122fde0453b0bd6cd790af82"; 19650 libraryHaskellDepends = [ 19651 accelerate array base binary bytestring cryptohash cuda directory 19652 fclabels filepath hashable hashtables language-c-quote ··· 19786 }: 19787 mkDerivation { 19788 pname = "accelerate-io"; 19789 + version = "0.15.1.0"; 19790 + sha256 = "d531fc6c950a6fcf0bdd72c65438c27fbffe2f3043444128979490d53fc7677c"; 19791 libraryHaskellDepends = [ 19792 accelerate array base bmp bytestring repa vector 19793 ]; 19794 homepage = "https://github.com/AccelerateHS/accelerate-io"; 19795 description = "Read and write Accelerate arrays in various formats"; 19796 license = stdenv.lib.licenses.bsd3; ··· 40348 }: 40349 mkDerivation { 40350 pname = "cef"; 40351 + version = "0.1.3"; 40352 + sha256 = "9918fb0b19e23aefe90ed914e30498011f1fa6ea0c8ffdc9e8f8a90337ac41d4"; 40353 libraryHaskellDepends = [ base bytestring text time ]; 40354 testHaskellDepends = [ base directory doctest filepath ]; 40355 homepage = "http://github.com/picussecurity/haskell-cef.git"; ··· 43252 }: 43253 mkDerivation { 43254 pname = "clckwrks"; 43255 + version = "0.23.11"; 43256 + sha256 = "65868751cc51e409a000edc5fb26e25f3c151f8a792ca80006ae87813cc9ea6e"; 43257 libraryHaskellDepends = [ 43258 acid-state aeson aeson-qq attoparsec base blaze-html bytestring 43259 cereal containers directory filepath happstack-authenticate ··· 43277 }: 43278 mkDerivation { 43279 pname = "clckwrks-cli"; 43280 + version = "0.2.15"; 43281 + sha256 = "8a7fad8590c6c1297b7076a7e4cc03689f37cd9371171748f351967cbb91b7f2"; 43282 isLibrary = false; 43283 isExecutable = true; 43284 executableHaskellDepends = [ 43285 acid-state base clckwrks haskeline mtl network parsec 43286 ]; 43287 homepage = "http://www.clckwrks.com/"; 43288 description = "a command-line interface for adminstrating some aspects of clckwrks"; 43289 license = stdenv.lib.licenses.bsd3; ··· 43415 }: 43416 mkDerivation { 43417 pname = "clckwrks-theme-bootstrap"; 43418 + version = "0.4.1"; 43419 + sha256 = "59399a42c5d928e9aa332e0901d023e00f6add27c03b95cddf405e392885f852"; 43420 libraryHaskellDepends = [ 43421 base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro 43422 mtl text web-plugins 43423 ]; 43424 homepage = "http://www.clckwrks.com/"; 43425 description = "simple bootstrap based template for clckwrks"; 43426 license = stdenv.lib.licenses.bsd3; ··· 43432 }: 43433 mkDerivation { 43434 pname = "clckwrks-theme-clckwrks"; 43435 + version = "0.5.2"; 43436 + sha256 = "53182128e49924132191d6d607e7088f92367a10ab31d38b5e4a1d8a2471ed1c"; 43437 libraryHaskellDepends = [ 43438 base clckwrks containers happstack-authenticate hsp hsx2hs mtl text 43439 web-plugins ··· 57795 QuickCheck rematch stm test-framework test-framework-hunit 57796 test-framework-quickcheck2 time transformers unordered-containers 57797 ]; 57798 + doCheck = false; 57799 homepage = "http://github.com/haskell-distributed/distributed-process-execution"; 57800 description = "Execution Framework for The Cloud Haskell Application Platform"; 57801 license = stdenv.lib.licenses.bsd3; ··· 58173 QuickCheck rematch stm test-framework test-framework-hunit 58174 test-framework-quickcheck2 time transformers unordered-containers 58175 ]; 58176 + doCheck = false; 58177 homepage = "http://github.com/haskell-distributed/distributed-process-task"; 58178 description = "Task Framework for The Cloud Haskell Application Platform"; 58179 license = stdenv.lib.licenses.bsd3; ··· 58494 license = stdenv.lib.licenses.bsd3; 58495 }) {}; 58496 58497 + "dns_2_0_0" = callPackage 58498 ({ mkDerivation, attoparsec, base, binary, blaze-builder 58499 , bytestring, conduit, conduit-extra, containers, doctest, hspec 58500 , iproute, mtl, network, random, resourcet, word8 ··· 58516 testTarget = "spec"; 58517 description = "DNS library in Haskell"; 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; 58544 }) {}; 58545 58546 "dnscache" = callPackage ··· 67279 license = stdenv.lib.licenses.bsd3; 67280 }) {}; 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 + 67295 "first-class-patterns" = callPackage 67296 ({ mkDerivation, base, transformers }: 67297 mkDerivation { ··· 72023 }: 72024 mkDerivation { 72025 pname = "getopt-generics"; 72026 + version = "0.11.0.2"; 72027 + sha256 = "d1d989bbf86df719c57cb01db59a554f3b07c475644dd3cecc48bfc29d885010"; 72028 libraryHaskellDepends = [ 72029 base base-compat base-orphans generics-sop tagged 72030 ]; ··· 72033 QuickCheck safe silently tagged 72034 ]; 72035 doCheck = false; 72036 + homepage = "https://github.com/soenkehahn/getopt-generics#readme"; 72037 description = "Create command line interfaces with ease"; 72038 license = stdenv.lib.licenses.bsd3; 72039 }) {}; ··· 76773 ({ mkDerivation, base, containers, deepseq, pointed }: 76774 mkDerivation { 76775 pname = "grouped-list"; 76776 + version = "0.1.2.0"; 76777 + sha256 = "77aa60756373ca42065568fb5c57c8cb9b5f85e89ed3d35192b8df4c48ae390f"; 76778 libraryHaskellDepends = [ base containers deepseq pointed ]; 76779 homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; 76780 description = "Grouped lists. Equal consecutive elements are grouped."; 76781 license = stdenv.lib.licenses.bsd3; 76782 }) {}; 76783 76784 "groupoid" = callPackage 76785 ({ mkDerivation, base }: 76786 mkDerivation { ··· 80797 "happstack-authenticate" = callPackage 80798 ({ mkDerivation, acid-state, aeson, authenticate, base 80799 , base64-bytestring, boomerang, bytestring, containers 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 80807 }: 80808 mkDerivation { 80809 pname = "happstack-authenticate"; 80810 + version = "2.3.0"; 80811 + sha256 = "d459a80c7c54a05e31a803f200233bb491350099e04f2fb27567735fe0dfe9c2"; 80812 libraryHaskellDepends = [ 80813 acid-state aeson authenticate base base64-bytestring 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 80819 web-routes-happstack web-routes-hsp web-routes-th 80820 ]; 80821 homepage = "http://www.happstack.com/"; ··· 81248 hydraPlatforms = stdenv.lib.platforms.none; 81249 }) {}; 81250 81251 + "happstack-server_7_4_4" = callPackage 81252 ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring 81253 , containers, directory, exceptions, extensible-exceptions 81254 , filepath, hslogger, html, HUnit, monad-control, mtl, network ··· 81275 homepage = "http://happstack.com"; 81276 description = "Web related tools and services"; 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; 81308 }) {}; 81309 81310 "happstack-server-tls" = callPackage ··· 84336 ({ mkDerivation, base }: 84337 mkDerivation { 84338 pname = "haskore-vintage"; 84339 + version = "0.3"; 84340 + sha256 = "0bd49a041c73292d195897a1e8a73713669b09b1a73f3e29251f72223da708ab"; 84341 libraryHaskellDepends = [ base ]; 84342 homepage = "http://haskell.org/haskore/"; 84343 description = "The February 2000 version of Haskore"; ··· 85249 }: 85250 mkDerivation { 85251 pname = "hastily"; 85252 + version = "0.1.0.6"; 85253 + sha256 = "d001119682dc0389bbac946793401209c7286a01d9b157fab638ac8fda78a72e"; 85254 isLibrary = true; 85255 isExecutable = true; 85256 libraryHaskellDepends = [ ··· 96178 ({ mkDerivation, base, checkers, hspec }: 96179 mkDerivation { 96180 pname = "hspec-checkers"; 96181 + version = "0.1.0.1"; 96182 + sha256 = "9703ad134d1711b17301d760cebc36814c48a0e4e5712590514c93e6ec278dab"; 96183 libraryHaskellDepends = [ base checkers hspec ]; 96184 testHaskellDepends = [ base checkers hspec ]; 96185 description = "Allows to use checkers properties from hspec"; ··· 97293 libraryHaskellDepends = [ 97294 base exceptions hsqml-datamodel type-list vinyl 97295 ]; 97296 + jailbreak = true; 97297 homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; 97298 description = "HsQML DataModel instances for Vinyl Rec"; 97299 license = stdenv.lib.licenses.bsd3; ··· 98233 }: 98234 mkDerivation { 98235 pname = "http-api-data"; 98236 version = "0.2.1"; 98237 sha256 = "856138d79945770cdb4b522f58893a1c45014d39238cfc5b2eceeac089c56f71"; 98238 libraryHaskellDepends = [ base bytestring text time ]; ··· 98242 homepage = "http://github.com/fizruk/http-api-data"; 98243 description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; 98244 license = stdenv.lib.licenses.bsd3; 98245 }) {}; 98246 98247 "http-attoparsec" = callPackage ··· 108864 pname = "keter"; 108865 version = "1.3.7"; 108866 sha256 = "a0710bf072a8829f5e696a6cf760554b26006d520f311ae29a53bf46e96f98c3"; 108867 + revision = "3"; 108868 + editedCabalFile = "97b84a04bdbef02b95c502f4a4e27791dc3a6e10f40a4797cf267311be1c6875"; 108869 isLibrary = true; 108870 isExecutable = true; 108871 libraryHaskellDepends = [ ··· 108907 pname = "keter"; 108908 version = "1.3.7.1"; 108909 sha256 = "003ce327d5b8ce407df901b46a99a37109b2ce14d6f51e50212130ba5ed9843e"; 108910 + revision = "3"; 108911 + editedCabalFile = "a534637676d741ad4b3a5c0ba745df72206f16008e52ed037cc7de8cb4db2556"; 108912 isLibrary = true; 108913 isExecutable = true; 108914 libraryHaskellDepends = [ ··· 111357 }) {}; 111358 111359 "language-lua2" = callPackage 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 111364 }: 111365 mkDerivation { 111366 pname = "language-lua2"; 111367 + version = "0.1.0.4"; 111368 + sha256 = "3d5e92e4ec4b096cb44432fc7e2ee2620470c4912c3fd85e30b07a7b834c422b"; 111369 isLibrary = true; 111370 isExecutable = true; 111371 libraryHaskellDepends = [ ··· 111377 base Earley lexer-applicative optparse-applicative srcloc wl-pprint 111378 ]; 111379 testHaskellDepends = [ 111380 + base deepseq lexer-applicative QuickCheck semigroups srcloc tasty 111381 tasty-hunit tasty-quickcheck unordered-containers 111382 ]; 111383 + doCheck = false; 111384 homepage = "http://github.com/mitchellwrosen/language-lua2"; 111385 description = "Lua parser and pretty printer"; 111386 license = stdenv.lib.licenses.bsd3; ··· 118582 , bytestring, containers, email-validate, http-client 118583 , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck 118584 , raw-strings-qq, tasty, tasty-hunit, tasty-quickcheck, text, time 118585 , unordered-containers 118586 }: 118587 mkDerivation { ··· 118599 ]; 118600 description = "Library for interfacing with the Mandrill JSON API"; 118601 license = stdenv.lib.licenses.mit; 118602 }) {}; 118603 118604 "mandulia" = callPackage ··· 122715 hydraPlatforms = stdenv.lib.platforms.none; 122716 }) {}; 122717 122718 + "monad-parallel_0_7_1_4" = callPackage 122719 ({ mkDerivation, base, parallel, transformers, transformers-compat 122720 }: 122721 mkDerivation { ··· 122728 homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; 122729 description = "Parallel execution of monadic computations"; 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; 122747 }) {}; 122748 122749 "monad-parallel-progressbar" = callPackage ··· 123598 hydraPlatforms = stdenv.lib.platforms.none; 123599 }) {}; 123600 123601 + "mono-traversable_0_9_3" = callPackage 123602 ({ mkDerivation, base, bytestring, comonad, containers, dlist 123603 , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck 123604 , semigroupoids, semigroups, split, text, transformers ··· 123620 homepage = "https://github.com/snoyberg/mono-traversable"; 123621 description = "Type classes for mapping, folding, and traversing monomorphic containers"; 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; 123648 }) {}; 123649 123650 "monoid-extras_0_3_3_5" = callPackage ··· 126603 }: 126604 mkDerivation { 126605 pname = "ncurses"; 126606 + version = "0.2.12"; 126607 + sha256 = "fbafe7fcb6e829fa1c3a3827c9adc871e7784cd76448d0c75d99b92f81dc1165"; 126608 libraryHaskellDepends = [ base containers text transformers ]; 126609 librarySystemDepends = [ ncurses ]; 126610 libraryToolDepends = [ c2hs ]; ··· 130016 ({ mkDerivation, base, containers }: 130017 mkDerivation { 130018 pname = "observable-sharing"; 130019 + version = "0.2.4"; 130020 + sha256 = "400efecddcfdd992717caccc3a7b00590e7635bf92305d7d93f81d47327811d3"; 130021 libraryHaskellDepends = [ base containers ]; 130022 homepage = "https://github.com/atzeus/observable-sharing"; 130023 description = "Simple observable sharing"; ··· 131981 }: 131982 mkDerivation { 131983 pname = "ot"; 131984 + version = "0.2.1.0"; 131985 + sha256 = "56f1c888103c699b1025c1f23a7e3423a5b7cf93041af24d8fbd1eb9f08caa04"; 131986 libraryHaskellDepends = [ 131987 aeson attoparsec base binary either ghc mtl QuickCheck text 131988 ]; ··· 131990 aeson base binary HUnit QuickCheck test-framework 131991 test-framework-hunit test-framework-quickcheck2 text 131992 ]; 131993 homepage = "https://github.com/operational-transformation/ot.hs"; 131994 description = "Real-time collaborative editing with Operational Transformation"; 131995 license = stdenv.lib.licenses.mit; ··· 132139 }: 132140 mkDerivation { 132141 pname = "packer"; 132142 + version = "0.1.9"; 132143 + sha256 = "d2926f876da4ef8e4590bbc501caf83b0703018971ad5413e9d6647667d681e4"; 132144 libraryHaskellDepends = [ base bytestring ghc-prim transformers ]; 132145 testHaskellDepends = [ 132146 base bytestring tasty tasty-hunit tasty-quickcheck ··· 132765 doCheck = false; 132766 description = "Supports using pandoc with citeproc"; 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; 132799 }) {}; 132800 132801 "pandoc-citeproc-preamble" = callPackage ··· 135653 monad-control monad-logger mysql mysql-simple persistent resourcet 135654 text transformers 135655 ]; 135656 homepage = "http://www.yesodweb.com/book/persistent"; 135657 description = "Backend for the persistent library using MySQL database server"; 135658 license = stdenv.lib.licenses.mit; ··· 136988 }) {}; 136989 136990 "picologic" = callPackage 136991 + ({ mkDerivation, base, containers, mtl, parsec, picosat, pretty 136992 + , QuickCheck 136993 + }: 136994 mkDerivation { 136995 pname = "picologic"; 136996 + version = "0.1.2"; 136997 + sha256 = "449f6ead23c54d1751d66437a06950a5b2a478348c53e6b927ec9a2bb9e9e40f"; 136998 isLibrary = true; 136999 isExecutable = true; 137000 libraryHaskellDepends = [ 137001 base containers mtl parsec picosat pretty 137002 ]; 137003 + testHaskellDepends = [ 137004 + base containers mtl picosat pretty QuickCheck 137005 + ]; 137006 homepage = "https://github.com/sdiehl/picologic"; 137007 description = "Utilities for symbolic predicate logic expressions"; 137008 license = stdenv.lib.licenses.mit; ··· 146485 }: 146486 mkDerivation { 146487 type-level-natural-number-operations 146488 + version = "0.2"; 146489 + sha256 = "81ab5c2fd634285c6c3044310ec37082e2d2350a8857f29c3c615198593b8430"; 146490 libraryHaskellDepends = [ 146491 type-level-natural-number-operations 146492 ]; ··· 149295 }: 149296 mkDerivation { 149297 pname = "rest-happstack"; 149298 version = "0.3.1"; 149299 sha256 = "a2c2e1b1e1bfdc7870100eee642e488268e21117b08aad254342d14a53ce13d9"; 149300 libraryHaskellDepends = [ ··· 149302 ]; 149303 description = "Rest driver for Happstack"; 149304 license = stdenv.lib.licenses.bsd3; 149305 }) {}; 149306 149307 "rest-snap_0_1_17_14" = callPackage ··· 154859 hydraPlatforms = stdenv.lib.platforms.none; 154860 }) {}; 154861 154862 + "servant_0_4_4_4" = callPackage 154863 ({ mkDerivation, aeson, attoparsec, base, bytestring 154864 , bytestring-conversion, case-insensitive, directory, doctest 154865 , filemanip, filepath, hspec, http-media, http-types, network-uri ··· 154883 homepage = "http://haskell-servant.github.io/"; 154884 description = "A family of combinators for defining webservices APIs"; 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; 154913 }) {}; 154914 154915 "servant-JuicyPixels_0_1_0_0" = callPackage ··· 154959 ({ mkDerivation, base, blaze-html, http-media, servant }: 154960 mkDerivation { 154961 pname = "servant-blaze"; 154962 + version = "0.4.4.5"; 154963 + sha256 = "b2ac467c4cc6e3e439436616f9132818e1023ea048e918d87f133342705bc991"; 154964 libraryHaskellDepends = [ base blaze-html http-media servant ]; 154965 homepage = "http://haskell-servant.github.io/"; 154966 description = "Blaze-html support for servant"; ··· 155047 hydraPlatforms = stdenv.lib.platforms.none; 155048 }) {}; 155049 155050 + "servant-client_0_4_4_4" = callPackage 155051 ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq 155052 , either, exceptions, hspec, http-client, http-client-tls 155053 , http-media, http-types, HUnit, network, network-uri, QuickCheck ··· 155071 homepage = "http://haskell-servant.github.io/"; 155072 description = "automatical derivation of querying functions for servant webservices"; 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; 155101 }) {}; 155102 155103 "servant-docs_0_3_1" = callPackage ··· 155181 hydraPlatforms = stdenv.lib.platforms.none; 155182 }) {}; 155183 155184 + "servant-docs_0_4_4_4" = callPackage 155185 ({ mkDerivation, aeson, base, bytestring, bytestring-conversion 155186 , case-insensitive, hashable, hspec, http-media, http-types, lens 155187 , servant, string-conversions, text, unordered-containers ··· 155207 homepage = "http://haskell-servant.github.io/"; 155208 description = "generate API docs for your servant webservice"; 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; 155239 }) {}; 155240 155241 "servant-ede" = callPackage ··· 155270 }: 155271 mkDerivation { 155272 pname = "servant-examples"; 155273 + version = "0.4.4.5"; 155274 + sha256 = "51a0f8953c3eeed16c6745286d858338f657d000af9ad2f6a7a7531688426425"; 155275 isLibrary = false; 155276 isExecutable = true; 155277 executableHaskellDepends = [ ··· 155356 hydraPlatforms = stdenv.lib.platforms.none; 155357 }) {}; 155358 155359 + "servant-jquery_0_4_4_4" = callPackage 155360 ({ mkDerivation, aeson, base, charset, filepath, hspec 155361 , hspec-expectations, language-ecmascript, lens, servant 155362 , servant-server, stm, text, transformers, warp ··· 155377 homepage = "http://haskell-servant.github.io/"; 155378 description = "Automatically derive (jquery) javascript functions to query servant webservices"; 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; 155404 }) {}; 155405 155406 "servant-lucid" = callPackage 155407 ({ mkDerivation, base, http-media, lucid, servant }: 155408 mkDerivation { 155409 pname = "servant-lucid"; 155410 + version = "0.4.4.5"; 155411 + sha256 = "85c922b88dbf4c7c0e8447e326938ab1f3f8dd60400f1b23a0d63109e6159913"; 155412 libraryHaskellDepends = [ base http-media lucid servant ]; 155413 homepage = "http://haskell-servant.github.io/"; 155414 description = "Servant support for lucid"; ··· 155421 }: 155422 mkDerivation { 155423 pname = "servant-mock"; 155424 + version = "0.4.4.5"; 155425 + sha256 = "3b1cb43127ceb10979fa056c847e588d030293ee8842e13d1c18458b886d7ed6"; 155426 isLibrary = true; 155427 isExecutable = true; 155428 libraryHaskellDepends = [ ··· 155653 hydraPlatforms = stdenv.lib.platforms.none; 155654 }) {}; 155655 155656 + "servant-server_0_4_4_4" = callPackage 155657 ({ mkDerivation, aeson, attoparsec, base, bytestring 155658 , bytestring-conversion, directory, doctest, either, exceptions 155659 , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl ··· 155665 pname = "servant-server"; 155666 version = "0.4.4.4"; 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"; 155700 isLibrary = true; 155701 isExecutable = true; 155702 libraryHaskellDepends = [ ··· 173324 }: 173325 mkDerivation { 173326 pname = "threads-supervisor"; 173327 + version = "1.0.4.0"; 173328 + sha256 = "6d48e9007275c6ff3ce01c35f89a106110878e65c67c654f3432c3c3d6b9e02f"; 173329 isLibrary = true; 173330 isExecutable = true; 173331 libraryHaskellDepends = [ ··· 174061 license = stdenv.lib.licenses.bsd3; 174062 }) {}; 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 + 174076 "timeout" = callPackage 174077 ({ mkDerivation, base, exceptions, mtl, QuickCheck, tasty 174078 , tasty-quickcheck, time ··· 176016 ({ mkDerivation, base, containers, template-haskell, time }: 176017 mkDerivation { 176018 pname = "true-name"; 176019 + version = "0.0.0.2"; 176020 + sha256 = "55e3785f6072bd0b5ed030ae3894bb92c5684681217833ddc4f112b0d32f9c3e"; 176021 libraryHaskellDepends = [ base template-haskell ]; 176022 testHaskellDepends = [ base containers template-haskell time ]; 176023 homepage = "https://github.com/liyang/true-name"; ··· 176948 template-haskell text time transformers transformers-base 176949 twitter-types twitter-types-lens 176950 ]; 176951 + doCheck = false; 176952 homepage = "https://github.com/himura/twitter-conduit"; 176953 description = "Twitter API package with conduit interface and Streaming API support"; 176954 license = stdenv.lib.licenses.bsd3; ··· 177058 test-framework-hunit test-framework-quickcheck2 177059 test-framework-th-prime text time unordered-containers 177060 ]; 177061 + doCheck = false; 177062 homepage = "https://github.com/himura/twitter-types"; 177063 description = "Twitter JSON parser and types"; 177064 license = stdenv.lib.licenses.bsd3; ··· 177467 hydraPlatforms = stdenv.lib.platforms.none; 177468 }) {}; 177469 177470 + "type-list_0_2_0_0" = callPackage 177471 ({ mkDerivation, base, singletons }: 177472 mkDerivation { 177473 pname = "type-list"; ··· 177476 libraryHaskellDepends = [ base singletons ]; 177477 description = "Operations on type-level lists and tuples"; 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; 177491 }) {}; 177492 177493 "type-natural" = callPackage ··· 178038 }: 178039 mkDerivation { 178040 pname = "uhc-light"; 178041 + version = "1.1.9.1"; 178042 + sha256 = "9192b3ce50cf5f796799490b8f22b6ee20a3310e7e2216e09dc9706765e0cc61"; 178043 isLibrary = true; 178044 isExecutable = true; 178045 libraryHaskellDepends = [ ··· 178059 178060 "uhc-util" = callPackage 178061 ({ mkDerivation, array, base, binary, bytestring, containers 178062 + , directory, fclabels, fgl, hashable, mtl, process, syb, time 178063 + , time-compat, uulib 178064 }: 178065 mkDerivation { 178066 pname = "uhc-util"; 178067 + version = "0.1.6.2"; 178068 + sha256 = "f559daf2f339b4d3ab2194895c19a10a304c68970b10c1e6571b52734f4bd19a"; 178069 libraryHaskellDepends = [ 178070 array base binary bytestring containers directory fclabels fgl 178071 + hashable mtl process syb time time-compat uulib 178072 ]; 178073 homepage = "https://github.com/UU-ComputerScience/uhc-util"; 178074 description = "UHC utilities"; ··· 179128 hydraPlatforms = stdenv.lib.platforms.none; 179129 }) {}; 179130 179131 + "unix-time_0_3_5" = callPackage 179132 ({ mkDerivation, base, binary, bytestring, doctest, hspec 179133 , old-locale, old-time, QuickCheck, time 179134 }: ··· 179143 doCheck = false; 179144 description = "Unix time parser/formatter and utilities"; 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; 179164 }) {}; 179165 179166 "unlambda" = callPackage ··· 181927 hydraPlatforms = stdenv.lib.platforms.none; 181928 }) {}; 181929 181930 + "vector-th-unbox_0_2_1_2" = callPackage 181931 ({ mkDerivation, base, data-default, template-haskell, vector }: 181932 mkDerivation { 181933 pname = "vector-th-unbox"; 181934 version = "0.2.1.2"; 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"; 181951 libraryHaskellDepends = [ base template-haskell vector ]; 181952 testHaskellDepends = [ base data-default vector ]; 181953 description = "Deriver for Data.Vector.Unboxed using Template Haskell"; ··· 182596 }: 182597 mkDerivation { 182598 pname = "waddle"; 182599 + version = "0.1.0.6"; 182600 + sha256 = "48782ba072e71678cb7d01043f8c10981ea7e7e5a123f0d8fb7a482f75c4ca15"; 182601 isLibrary = true; 182602 isExecutable = true; 182603 libraryHaskellDepends = [ ··· 182608 base binary bytestring case-insensitive containers directory 182609 JuicyPixels 182610 ]; 182611 homepage = "https://github.com/mgrabmueller/waddle"; 182612 description = "DOOM WAD file utilities"; 182613 license = stdenv.lib.licenses.bsd3; ··· 185537 }: 185538 mkDerivation { 185539 pname = "warp"; 185540 + version = "3.1.6"; 185541 + sha256 = "34ce9ad59002bee92224b25bc64bec7d86576b41900cde305af419f304ad4093"; 185542 libraryHaskellDepends = [ 185543 array auto-update base blaze-builder bytestring bytestring-builder 185544 case-insensitive containers ghc-prim hashable http-date http-types ··· 185978 185979 "wavefront" = callPackage 185980 ({ mkDerivation, attoparsec, base, dlist, filepath, mtl, text 185981 + , transformers, vector 185982 }: 185983 mkDerivation { 185984 pname = "wavefront"; 185985 + version = "0.3"; 185986 + sha256 = "65443f1ca1ceb6418e3740c085bd8f6f85c6ca2033deeafd7c7e4f418043e3a2"; 185987 libraryHaskellDepends = [ 185988 + attoparsec base dlist filepath mtl text transformers vector 185989 ]; 185990 + jailbreak = true; 185991 homepage = "https://github.com/phaazon/wavefront"; 185992 description = "Wavefront OBJ loader"; 185993 license = stdenv.lib.licenses.bsd3; ··· 186584 license = stdenv.lib.licenses.bsd3; 186585 }) {}; 186586 186587 + "webdriver_0_8" = callPackage 186588 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 186589 + , bytestring, cond, data-default-class, directory, directory-tree 186590 , exceptions, filepath, http-client, http-types, lifted-base 186591 + , monad-control, network, network-uri, scientific, temporary, text 186592 + , time, transformers, transformers-base, unordered-containers 186593 + , vector, zip-archive 186594 }: 186595 mkDerivation { 186596 pname = "webdriver"; 186597 + version = "0.8"; 186598 + sha256 = "357b6d21d9c3e322a7d85868e40464505d30fce3d3e3fd318c1742247cc431aa"; 186599 libraryHaskellDepends = [ 186600 aeson attoparsec base base64-bytestring bytestring cond 186601 + data-default-class directory directory-tree exceptions filepath 186602 + http-client http-types lifted-base monad-control network 186603 network-uri scientific temporary text time transformers 186604 transformers-base unordered-containers vector zip-archive 186605 ]; 186606 + testHaskellDepends = [ base text ]; 186607 homepage = "https://github.com/kallisti-dev/hs-webdriver"; 186608 description = "a Haskell client for the Selenium WebDriver protocol"; 186609 license = stdenv.lib.licenses.bsd3; ··· 187002 hydraPlatforms = stdenv.lib.platforms.none; 187003 }) {}; 187004 187005 + "websockets_0_9_6_0" = callPackage 187006 ({ mkDerivation, attoparsec, base, base64-bytestring, binary 187007 , blaze-builder, bytestring, case-insensitive, containers, entropy 187008 , HUnit, network, QuickCheck, random, SHA, test-framework ··· 187032 homepage = "http://jaspervdj.be/websockets"; 187033 description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; 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; 187068 }) {}; 187069 187070 "websockets-snap" = callPackage ··· 187467 homepage = "https://github.com/fumieval/witherable"; 187468 description = "Generalization of filter and catMaybes"; 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; 187488 }) {}; 187489 187490 "witness" = callPackage ··· 192356 hydraPlatforms = stdenv.lib.platforms.none; 192357 }) {}; 192358 192359 + "yesod-auth_1_4_7" = callPackage 192360 ({ mkDerivation, aeson, authenticate, base, base16-bytestring 192361 , base64-bytestring, binary, blaze-builder, blaze-html 192362 , blaze-markup, byteable, bytestring, conduit, conduit-extra ··· 192371 pname = "yesod-auth"; 192372 version = "1.4.7"; 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"; 192404 libraryHaskellDepends = [ 192405 aeson authenticate base base16-bytestring base64-bytestring binary 192406 blaze-builder blaze-html blaze-markup byteable bytestring conduit
+3 -3
pkgs/development/libraries/cppzmq/default.nix
··· 1 { stdenv, fetchgit }: 2 3 stdenv.mkDerivation rec { 4 - name = "cppzmq-2015-07-06"; 5 6 src = fetchgit { 7 url = "https://github.com/zeromq/cppzmq"; 8 - rev = "a88bf3e0b0bc6ed5f5b25a58f8997a1dae374c8b"; 9 - sha256 = "75a6630b870c1f0d5b9d6a0ba03e83ceee47aaa2a253894e75a8a93a6d65d3aa"; 10 }; 11 12 installPhase = ''
··· 1 { stdenv, fetchgit }: 2 3 stdenv.mkDerivation rec { 4 + name = "cppzmq-20150926"; 5 6 src = fetchgit { 7 url = "https://github.com/zeromq/cppzmq"; 8 + rev = "fa2f2c67a79c31d73bfef6862cc8ce12a98dd022"; 9 + sha256 = "7b46712b5fa7e59cd0ffae190674046c71d5762c064003c125d6cd7a3da19b71"; 10 }; 11 12 installPhase = ''
+13 -5
pkgs/development/libraries/folly/default.nix
··· 1 - { stdenv, fetchFromGitHub, autoreconfHook, boost, libevent, double_conversion, glog 2 , google-gflags, python, libiberty, openssl }: 3 4 stdenv.mkDerivation rec { 5 - version = "2015-09-17"; 6 name = "folly-${version}"; 7 8 src = fetchFromGitHub { 9 owner = "facebook"; 10 repo = "folly"; 11 - rev = "e4527fb5d04f5fec823bd6a2402b620a6e1a64e3"; 12 - sha256 = "0iicq19yylafr7qs221xgk8pcwf6nnyx6srgsx9y9cyf72siadcb"; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook python ]; 16 buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ]; 17 18 - postUnpack = "sourceRoot=\${sourceRoot}/folly"; 19 preBuild = '' 20 patchShebangs build 21 '';
··· 1 + { stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, boost, libevent, double_conversion, glog 2 , google-gflags, python, libiberty, openssl }: 3 4 stdenv.mkDerivation rec { 5 + version = "0.57.0"; 6 name = "folly-${version}"; 7 8 src = fetchFromGitHub { 9 owner = "facebook"; 10 repo = "folly"; 11 + rev = "v${version}"; 12 + sha256 = "12b9bkwmndfwmsknc209kpplxn9wqmwr3p2h0l2szrppq4qqyfq9"; 13 }; 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 + 23 nativeBuildInputs = [ autoreconfHook python ]; 24 buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ]; 25 26 + postPatch = "cd folly"; 27 preBuild = '' 28 patchShebangs build 29 '';
+2 -2
pkgs/development/libraries/libbluray/default.nix
··· 19 20 stdenv.mkDerivation rec { 21 baseName = "libbluray"; 22 - version = "0.8.1"; 23 name = "${baseName}-${version}"; 24 25 src = fetchurl { 26 url = "ftp://ftp.videolan.org/pub/videolan/${baseName}/${version}/${name}.tar.bz2"; 27 - sha256 = "13zvkrwy2fr877gkifgwnqfsb3krbz7hklfcwqfjbhmvqn0cdgnd"; 28 }; 29 30 nativeBuildInputs = [ pkgconfig autoreconfHook ]
··· 19 20 stdenv.mkDerivation rec { 21 baseName = "libbluray"; 22 + version = "0.9.0"; 23 name = "${baseName}-${version}"; 24 25 src = fetchurl { 26 url = "ftp://ftp.videolan.org/pub/videolan/${baseName}/${version}/${name}.tar.bz2"; 27 + sha256 = "0kb9znxk6610vi0fjhqxn4z5i98nvxlsz1f8dakj99rg42livdl4"; 28 }; 29 30 nativeBuildInputs = [ pkgconfig autoreconfHook ]
+4 -2
pkgs/development/libraries/libmicrohttpd/default.nix
··· 1 { lib, stdenv, fetchurl, libgcrypt }: 2 3 stdenv.mkDerivation rec { 4 - name = "libmicrohttpd-0.9.43"; 5 6 src = fetchurl { 7 url = "mirror://gnu/libmicrohttpd/${name}.tar.gz"; 8 - sha256 = "17q6v5q0jpg57vylby6rx1qkil72bdx8gij1g9m694gxf5sb6js1"; 9 }; 10 11 buildInputs = [ libgcrypt ]; 12
··· 1 { lib, stdenv, fetchurl, libgcrypt }: 2 3 stdenv.mkDerivation rec { 4 + name = "libmicrohttpd-0.9.44"; 5 6 src = fetchurl { 7 url = "mirror://gnu/libmicrohttpd/${name}.tar.gz"; 8 + sha256 = "07j1p21rvbrrfpxngk8xswzkmjkh94bp1971xfjh1p0ja709qwzj"; 9 }; 10 + 11 + outputs = [ "out" "info" ]; 12 13 buildInputs = [ libgcrypt ]; 14
+3 -3
pkgs/development/libraries/libpsl/default.nix
··· 5 6 version = "${libVersion}-list-${listVersion}"; 7 8 - listVersion = "2015-09-25"; 9 listSources = fetchFromGitHub { 10 - sha256 = "045snl0pz8ma5rk51xxbjcamm28hi4z2v7gd8zkkv8yrjyg9yp82"; 11 - rev = "509db00ef21795e58bfc2c576cebf72c8ee7a6f9"; 12 repo = "list"; 13 owner = "publicsuffix"; 14 };
··· 5 6 version = "${libVersion}-list-${listVersion}"; 7 8 + listVersion = "2015-10-11"; 9 listSources = fetchFromGitHub { 10 + sha256 = "1zvfywi43kyh7b6hsm8ldmdypk9n36jzp0s1lf2rzd4yzcyxwgzy"; 11 + rev = "8952c0c398ba44d507a8ed430fd1cff7b92dfde8"; 12 repo = "list"; 13 owner = "publicsuffix"; 14 };
+2 -2
pkgs/development/libraries/libtermkey/default.nix
··· 3 stdenv.mkDerivation rec { 4 name = "libtermkey-${version}"; 5 6 - version = "0.17"; 7 8 src = fetchzip { 9 url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-${version}.tar.gz"; 10 - sha256 = "085mdshgqsn76gfnnzfns7awv6lals9mgv5a6bybd9f9aj7lvrm5"; 11 }; 12 13 makeFlags = [ "PREFIX=$(out)" ]
··· 3 stdenv.mkDerivation rec { 4 name = "libtermkey-${version}"; 5 6 + version = "0.18"; 7 8 src = fetchzip { 9 url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-${version}.tar.gz"; 10 + sha256 = "0a0ih1a114phzmyq6jzgbp03x97463fwvrp1cgnl26awqw3f8sbf"; 11 }; 12 13 makeFlags = [ "PREFIX=$(out)" ]
+2 -2
pkgs/development/libraries/science/math/ipopt/default.nix
··· 1 { stdenv, fetchurl, unzip, openblas, gfortran }: 2 3 stdenv.mkDerivation rec { 4 - version = "3.12.3"; 5 name = "ipopt-${version}"; 6 7 src = fetchurl { 8 url = "http://www.coin-or.org/download/source/Ipopt/Ipopt-${version}.zip"; 9 - sha256 = "0h8qx3hq2m21qrg4v3n26v2qbhl6saxrpa7rbhnmkkcfj5s942yr"; 10 }; 11 12 preConfigure = ''
··· 1 { stdenv, fetchurl, unzip, openblas, gfortran }: 2 3 stdenv.mkDerivation rec { 4 + version = "3.12.4"; 5 name = "ipopt-${version}"; 6 7 src = fetchurl { 8 url = "http://www.coin-or.org/download/source/Ipopt/Ipopt-${version}.zip"; 9 + sha256 = "0hxmpi3zx5zgv2ijscdvc40xf88hx5if0d9sgch155z70g15wx0l"; 10 }; 11 12 preConfigure = ''
+11 -2
pkgs/development/mobile/androidenv/androidsdk.nix
··· 53 done 54 ''} 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: 58 wrapProgram `pwd`/android \ 59 --prefix PATH : ${jdk}/bin \ 60 --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib 61 62 # The emulators need additional libraries, which are dynamically loaded => let's wrap them 63 64 for i in emulator emulator-arm emulator-mips emulator-x86
··· 53 done 54 ''} 55 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 + 59 wrapProgram `pwd`/android \ 60 --prefix PATH : ${jdk}/bin \ 61 --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib 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 + 71 # The emulators need additional libraries, which are dynamically loaded => let's wrap them 72 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}: 2 3 stdenv.mkDerivation rec { 4 version = "23.0.1"; ··· 24 cd android-* 25 26 # Patch the interpreter 27 - for i in aapt aidl dexdump llvm-rs-cc 28 do 29 patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i 30 done ··· 36 done 37 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 40 do 41 patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i 42 done 43 44 # These binaries also need zlib in addition to libstdc++ 45 - for i in zipalign 46 do 47 patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i 48 patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i
··· 1 + {stdenv, stdenv_32bit, fetchurl, unzip, zlib_32bit, ncurses_32bit}: 2 3 stdenv.mkDerivation rec { 4 version = "23.0.1"; ··· 24 cd android-* 25 26 # Patch the interpreter 27 + for i in aapt aidl bcc_compat dexdump llvm-rs-cc 28 do 29 patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i 30 done ··· 36 done 37 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 aidl 40 do 41 patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i 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 52 53 # These binaries also need zlib in addition to libstdc++ 54 + for i in arm-linux-androideabi-ld i686-linux-android-ld mipsel-linux-android-ld split-select zipalign 55 do 56 patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i 57 patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i
+2
pkgs/development/mobile/androidenv/default.nix
··· 4 platformTools = import ./platform-tools.nix { 5 inherit (pkgs) stdenv fetchurl unzip; 6 stdenv_32bit = pkgs_i686.stdenv; 7 }; 8 9 buildTools = import ./build-tools.nix { 10 inherit (pkgs) stdenv fetchurl unzip; 11 stdenv_32bit = pkgs_i686.stdenv; 12 zlib_32bit = pkgs_i686.zlib; 13 }; 14 15 support = import ./support.nix {
··· 4 platformTools = import ./platform-tools.nix { 5 inherit (pkgs) stdenv fetchurl unzip; 6 stdenv_32bit = pkgs_i686.stdenv; 7 + zlib_32bit = pkgs_i686.zlib; 8 }; 9 10 buildTools = import ./build-tools.nix { 11 inherit (pkgs) stdenv fetchurl unzip; 12 stdenv_32bit = pkgs_i686.stdenv; 13 zlib_32bit = pkgs_i686.zlib; 14 + ncurses_32bit = pkgs_i686.ncurses; 15 }; 16 17 support = import ./support.nix {
+9 -3
pkgs/development/mobile/androidenv/platform-tools.nix
··· 1 - {stdenv, stdenv_32bit, fetchurl, unzip}: 2 3 stdenv.mkDerivation rec { 4 version = "23.0.1"; ··· 22 23 ${stdenv.lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") 24 '' 25 - for i in adb fastboot 26 do 27 patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i 28 - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib $i 29 done 30 ''} 31
··· 1 + {stdenv, stdenv_32bit, zlib_32bit, fetchurl, unzip}: 2 3 stdenv.mkDerivation rec { 4 version = "23.0.1"; ··· 22 23 ${stdenv.lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") 24 '' 25 + for i in adb dmtracedump fastboot hprof-conv sqlite3 26 do 27 patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $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 35 done 36 ''} 37
+3 -3
pkgs/development/ocaml-modules/cmdliner/default.nix
··· 2 3 let 4 pname = "cmdliner"; 5 - version = "0.9.7"; 6 ocaml_version = (builtins.parseDrvName ocaml.name).version; 7 in 8 9 - assert stdenv.lib.versionAtLeast ocaml_version "4.00"; 10 11 stdenv.mkDerivation { 12 ··· 14 15 src = fetchurl { 16 url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz"; 17 - sha256 = "0ymzy1l6z85b6779lfxk179igfpf7rgfik70kr3c7lxmzwy8j6cw"; 18 }; 19 20 unpackCmd = "tar xjf $src";
··· 2 3 let 4 pname = "cmdliner"; 5 + version = "0.9.8"; 6 ocaml_version = (builtins.parseDrvName ocaml.name).version; 7 in 8 9 + assert stdenv.lib.versionAtLeast ocaml_version "3.12"; 10 11 stdenv.mkDerivation { 12 ··· 14 15 src = fetchurl { 16 url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz"; 17 + sha256 = "0hdxlkgiwjml9dpaa80282a8350if7mc1m6yz2mrd7gci3fszykx"; 18 }; 19 20 unpackCmd = "tar xjf $src";
+2
pkgs/development/ocaml-modules/eliom/default.nix
··· 3 ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp, 4 reactivedata, opam}: 5 6 stdenv.mkDerivation rec 7 { 8 pname = "eliom";
··· 3 ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp, 4 reactivedata, opam}: 5 6 + assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4"; 7 + 8 stdenv.mkDerivation rec 9 { 10 pname = "eliom";
+2 -2
pkgs/development/tools/continuous-integration/jenkins/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "jenkins-${version}"; 5 - version = "1.631"; 6 7 src = fetchurl { 8 url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; 9 - sha256 = "0bfh5gv3yk9awkzf660jxf9vzzdcr6qa9hl0hkivaj4gmp5f9sp8"; 10 }; 11 meta = with stdenv.lib; { 12 description = "An extendable open source continuous integration server";
··· 2 3 stdenv.mkDerivation rec { 4 name = "jenkins-${version}"; 5 + version = "1.633"; 6 7 src = fetchurl { 8 url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; 9 + sha256 = "1s5jihq9shscsdazb1c393qab0djms4by5zn3ciylcgvif431n8m"; 10 }; 11 meta = with stdenv.lib; { 12 description = "An extendable open source continuous integration server";
+2 -2
pkgs/development/tools/heroku/default.nix
··· 2 3 with stdenv.lib; 4 stdenv.mkDerivation rec { 5 - version = "3.32.0"; 6 name = "heroku-${version}"; 7 8 meta = { ··· 14 15 src = fetchurl { 16 url = "https://s3.amazonaws.com/assets.heroku.com/heroku-client/heroku-client-${version}.tgz"; 17 - sha256 = "1596zmnlwshx15xiccfskm71syrlm87jf40y2x0y7wn0vfcyis5s"; 18 }; 19 20 installPhase = ''
··· 2 3 with stdenv.lib; 4 stdenv.mkDerivation rec { 5 + version = "3.42.20"; 6 name = "heroku-${version}"; 7 8 meta = { ··· 14 15 src = fetchurl { 16 url = "https://s3.amazonaws.com/assets.heroku.com/heroku-client/heroku-client-${version}.tgz"; 17 + sha256 = "1d472vm37lx5nyyaymjglavisb1mkyzbjglzjp5im7wjfifvsd29"; 18 }; 19 20 installPhase = ''
+11
pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff
··· 8 9 #### 10
··· 8 9 #### 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 }: 2 3 let inherit (stdenv.lib) getVersion versionAtLeast; in 4 5 assert versionAtLeast (getVersion ocaml) "3.12.1"; 6 - assert versionAtLeast (getVersion ocpBuild) "1.99.3-beta"; 7 8 stdenv.mkDerivation { 9 10 - name = "ocp-indent-1.4.2b"; 11 12 - src = fetchurl { 13 - url = "https://github.com/OCamlPro/ocp-indent/archive/1.4.2b.tar.gz"; 14 - sha256 = "1p0n2zcl5kf543x2xlqrz1aa51f0dqal8l392sa41j6wx82j0gpb"; 15 }; 16 17 buildInputs = [ ocaml findlib ocpBuild opam cmdliner ]; 18 19 createFindlibDestdir = true; 20 21 postInstall = '' 22 mv $out/lib/{ocp-indent,ocaml/${getVersion ocaml}/site-lib/}
··· 1 + { stdenv, fetchzip, ocaml, findlib, ocpBuild, opam, cmdliner }: 2 3 let inherit (stdenv.lib) getVersion versionAtLeast; in 4 5 assert versionAtLeast (getVersion ocaml) "3.12.1"; 6 + assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; 7 8 stdenv.mkDerivation { 9 10 + name = "ocp-indent-1.5.2"; 11 12 + src = fetchzip { 13 + url = "https://github.com/OCamlPro/ocp-indent/archive/1.5.2.tar.gz"; 14 + sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz"; 15 }; 16 17 buildInputs = [ ocaml findlib ocpBuild opam cmdliner ]; 18 19 createFindlibDestdir = true; 20 + 21 + preConfigure = "patchShebangs ./install.sh"; 22 23 postInstall = '' 24 mv $out/lib/{ocp-indent,ocaml/${getVersion ocaml}/site-lib/}
+1 -1
pkgs/development/tools/ocaml/ocp-index/default.nix
··· 2 3 let inherit (stdenv.lib) getVersion versionAtLeast optional; in 4 5 - assert versionAtLeast (getVersion ocaml) "3.12.1"; 6 assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; 7 assert versionAtLeast (getVersion ocpIndent) "1.4.2"; 8
··· 2 3 let inherit (stdenv.lib) getVersion versionAtLeast optional; in 4 5 + assert versionAtLeast (getVersion ocaml) "4"; 6 assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; 7 assert versionAtLeast (getVersion ocpIndent) "1.4.2"; 8
+2 -2
pkgs/games/crawl/default.nix
··· 3 , tileMode ? true 4 }: 5 6 - let version = "0.16.1"; 7 in 8 stdenv.mkDerivation rec { 9 name = "crawl-${version}" + (if tileMode then "-tiles" else ""); ··· 11 owner = "crawl-ref"; 12 repo = "crawl-ref"; 13 rev = version; 14 - sha256 = "0gciqaij05qr5bwkk5mblvk5k0p6bzjd58czk1b6x5xx5qcp6mmh"; 15 }; 16 17 patches = [ ./crawl_purify.patch ];
··· 3 , tileMode ? true 4 }: 5 6 + let version = "0.16.2"; 7 in 8 stdenv.mkDerivation rec { 9 name = "crawl-${version}" + (if tileMode then "-tiles" else ""); ··· 11 owner = "crawl-ref"; 12 repo = "crawl-ref"; 13 rev = version; 14 + sha256 = "08ns49if8941vsg6abywgw3mnjafgj5sga0cdvvvviq0qqzprhw9"; 15 }; 16 17 patches = [ ./crawl_purify.patch ];
+1 -1
pkgs/games/onscripter-en/default.nix
··· 26 27 meta = with stdenv.lib; { 28 description = "Japanese visual novel scripting engine"; 29 - homepage = "http://dev.haeleth.net/onscripter.shtml"; 30 license = licenses.gpl2; 31 platforms = platforms.unix; 32 maintainers = with maintainers; [ abbradar ];
··· 26 27 meta = with stdenv.lib; { 28 description = "Japanese visual novel scripting engine"; 29 + homepage = "http://unclemion.com/onscripter/"; 30 license = licenses.gpl2; 31 platforms = platforms.unix; 32 maintainers = with maintainers; [ abbradar ];
+3 -3
pkgs/games/scrolls/default.nix
··· 2 , mesa_glu, libX11, libXext, libXcursor, libpulseaudio 3 }: 4 stdenv.mkDerivation { 5 - name = "scrolls-2014-03-08"; 6 7 meta = { 8 description = "A strategy collectible card game"; ··· 16 17 src = fetchurl { 18 url = "http://download.scrolls.com/client/linux.tar.gz"; 19 - sha256 = "164d13ce5b81b215a58bae5a0d024b4cf6e32c986ca57a2c9d4e80326edb5004"; 20 }; 21 22 libPath = stdenv.lib.makeLibraryPath [ ··· 39 --set-rpath "$libPath" "$out/opt/Scrolls/Scrolls" 40 41 mkdir "$out/bin" 42 - ln -s "$out/opt/Scrolls/Scrolls" "$out/bin/Scrolls" 43 ''; 44 45 }
··· 2 , mesa_glu, libX11, libXext, libXcursor, libpulseaudio 3 }: 4 stdenv.mkDerivation { 5 + name = "scrolls-2015-10-13"; 6 7 meta = { 8 description = "A strategy collectible card game"; ··· 16 17 src = fetchurl { 18 url = "http://download.scrolls.com/client/linux.tar.gz"; 19 + sha256 = "ead1fd14988aa07041fedfa7f845c756cd5077a5a402d85bfb749cb669ececec"; 20 }; 21 22 libPath = stdenv.lib.makeLibraryPath [ ··· 39 --set-rpath "$libPath" "$out/opt/Scrolls/Scrolls" 40 41 mkdir "$out/bin" 42 + ln -s "$out/opt/Scrolls/Scrolls" "$out/bin/Scrolls" 43 ''; 44 45 }
+4 -4
pkgs/misc/emulators/wine/versions.nix
··· 1 { 2 unstable = { 3 - wineVersion = "1.7.48"; 4 - wineSha256 = "13kcjirif57p8mg4yhzxf0hjpghlwc18iskz66dx94i0dvjmrxg3"; 5 geckoVersion = "2.36"; 6 geckoSha256 = "12hjks32yz9jq4w3xhk3y1dy2g3iakqxd7aldrdj51cqiz75g95g"; 7 gecko64Version = "2.36"; ··· 20 monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; 21 }; 22 staging = { 23 - version = "1.7.48"; 24 - sha256 = "06p1h92vaqlzk09aj4na6z7k3a81y9nw19rfg9q2szpcqjdd437w"; 25 }; 26 winetricks = { 27 version = "20150706";
··· 1 { 2 unstable = { 3 + wineVersion = "1.7.52"; 4 + wineSha256 = "0jsm1p7zwhfb5fpp0xd39vnx9m98kqgfng1q9kdj70rm1hmb6wq7"; 5 geckoVersion = "2.36"; 6 geckoSha256 = "12hjks32yz9jq4w3xhk3y1dy2g3iakqxd7aldrdj51cqiz75g95g"; 7 gecko64Version = "2.36"; ··· 20 monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; 21 }; 22 staging = { 23 + version = "1.7.52"; 24 + sha256 = "12r100gv34k44kia14wrfa42q0cjd8ir8vi8cx1b6hgnzw3x0gzk"; 25 }; 26 winetricks = { 27 version = "20150706";
+3 -3
pkgs/os-specific/linux/android-udev-rules/default.nix
··· 1 { stdenv, fetchgit }: 2 3 stdenv.mkDerivation { 4 - name = "android-udev-rules-20150821"; 5 6 src = fetchgit { 7 url = "https://github.com/M0Rf30/android-udev-rules"; 8 - rev = "07ccded2a89c2bb6da984e596c015c5e9546e497"; 9 - sha256 = "953fc10bd0de46afef999dc1c1b20801b3d6e289af48d18fa96b1cac3ac54518"; 10 }; 11 12 installPhase = ''
··· 1 { stdenv, fetchgit }: 2 3 stdenv.mkDerivation { 4 + name = "android-udev-rules-20150920"; 5 6 src = fetchgit { 7 url = "https://github.com/M0Rf30/android-udev-rules"; 8 + rev = "d2e89a3f6deb096071b15e18b9e3608a02d62437"; 9 + sha256 = "bdc553a1eb4efc4e85866f61f50f2c2f7b8d09d2eb5122afad7c9b38e0fdc4fb"; 10 }; 11 12 installPhase = ''
+2 -2
pkgs/os-specific/linux/eudev/default.nix
··· 3 s = # Generated upstream information 4 rec { 5 baseName="eudev"; 6 - version = "3.1.2"; 7 name="${baseName}-${version}"; 8 url="http://dev.gentoo.org/~blueness/eudev/eudev-${version}.tar.gz"; 9 - sha256 = "0wq2w67ip957l5bi21jj3w2rv7s7klcrnlg6zpg1g0fxjfgbd4s3"; 10 }; 11 buildInputs = [ 12 glib pkgconfig gperf utillinux
··· 3 s = # Generated upstream information 4 rec { 5 baseName="eudev"; 6 + version = "3.1.5"; 7 name="${baseName}-${version}"; 8 url="http://dev.gentoo.org/~blueness/eudev/eudev-${version}.tar.gz"; 9 + sha256 = "0akg9gcc3c2p56xbhlvbybqavcprly5q0bvk655zwl6d62j8an7p"; 10 }; 11 buildInputs = [ 12 glib pkgconfig gperf utillinux
+2 -2
pkgs/os-specific/linux/kernel/linux-3.12.nix
··· 1 { stdenv, fetchurl, perl, buildLinux, ... } @ args: 2 3 import ./generic.nix (args // rec { 4 - version = "3.12.48"; 5 extraMeta.branch = "3.12"; 6 7 src = fetchurl { 8 url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; 9 - sha256 = "1mvvpi2s8avg629y72miak8mdbv0mwb5dz0m7b48aah6dg866hiz"; 10 }; 11 12 features.iwlwifi = true;
··· 1 { stdenv, fetchurl, perl, buildLinux, ... } @ args: 2 3 import ./generic.nix (args // rec { 4 + version = "3.12.49"; 5 extraMeta.branch = "3.12"; 6 7 src = fetchurl { 8 url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; 9 + sha256 = "1vl8ghwhrs2sxd7kgi95nqlmf5k8ps0kr2lyly40ys262174i8lg"; 10 }; 11 12 features.iwlwifi = true;
-1
pkgs/os-specific/linux/kernel/linux-4.1.nix
··· 2 3 import ./generic.nix (args // rec { 4 version = "4.1.10"; 5 - # Remember to update grsecurity! 6 extraMeta.branch = "4.1"; 7 8 src = fetchurl {
··· 2 3 import ./generic.nix (args // rec { 4 version = "4.1.10"; 5 extraMeta.branch = "4.1"; 6 7 src = fetchurl {
+1
pkgs/os-specific/linux/kernel/linux-4.2.nix
··· 2 3 import ./generic.nix (args // rec { 4 version = "4.2.3"; 5 extraMeta.branch = "4.2"; 6 7 src = fetchurl {
··· 2 3 import ./generic.nix (args // rec { 4 version = "4.2.3"; 5 + # Remember to update grsecurity! 6 extraMeta.branch = "4.2"; 7 8 src = fetchurl {
+3 -3
pkgs/os-specific/linux/kernel/patches.nix
··· 87 }; 88 89 grsecurity_unstable = grsecPatch 90 - { kversion = "4.1.7"; 91 - revision = "201509131604"; 92 branch = "test"; 93 - sha256 = "1frfyi1pkiqc3awri3sr7xv41qxc8m2kb1yhfvj6xkrwb9li2bki"; 94 }; 95 96 grsec_fix_path =
··· 87 }; 88 89 grsecurity_unstable = grsecPatch 90 + { kversion = "4.2.3"; 91 + revision = "201510130858"; 92 branch = "test"; 93 + sha256 = "0ndzcx9i94c065dlyvgykmin5bfkbydrv0kxxq52a4c9is6nlsrb"; 94 }; 95 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 11 buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ]; 12 13 - patchPhase = '' 14 substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe" 15 ''; 16
··· 10 11 buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ]; 12 13 + # Fix --auto-tune bug: 14 + # https://lists.01.org/pipermail/powertop/2014-December/001727.html 15 + patches = [ ./auto-tune.patch ]; 16 + 17 + postPatch = '' 18 substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe" 19 ''; 20
+2
pkgs/os-specific/linux/syslinux/default.nix
··· 21 substituteInPlace gpxe/src/Makefile --replace /usr/bin/perl $(type -P perl) 22 ''; 23 24 makeFlags = [ 25 "BINDIR=$(out)/bin" 26 "SBINDIR=$(out)/sbin"
··· 21 substituteInPlace gpxe/src/Makefile --replace /usr/bin/perl $(type -P perl) 22 ''; 23 24 + stripDebugList = "bin sbin share/syslinux/com32"; 25 + 26 makeFlags = [ 27 "BINDIR=$(out)/bin" 28 "SBINDIR=$(out)/sbin"
+2 -2
pkgs/servers/uwsgi/default.nix
··· 24 assert builtins.filter (x: lib.all (y: y.name != x) available) plugins == []; 25 26 stdenv.mkDerivation rec { 27 - name = "uwsgi-2.0.11.1"; 28 29 src = fetchurl { 30 url = "http://projects.unbit.it/downloads/${name}.tar.gz"; 31 - sha256 = "11v2j9n204hlvi1p1wp4r3nn22fqyd1qlbqcfqddi77sih9x79vm"; 32 }; 33 34 nativeBuildInputs = [ python3 pkgconfig ];
··· 24 assert builtins.filter (x: lib.all (y: y.name != x) available) plugins == []; 25 26 stdenv.mkDerivation rec { 27 + name = "uwsgi-2.0.11.2"; 28 29 src = fetchurl { 30 url = "http://projects.unbit.it/downloads/${name}.tar.gz"; 31 + sha256 = "0p482j4yi48bmpgx1qpdfk86hjn4dswb137jbmigdlrd9l5rp20b"; 32 }; 33 34 nativeBuildInputs = [ python3 pkgconfig ];
+1 -1
pkgs/stdenv/default.nix
··· 54 if system == "armv7l-linux" then stdenvLinux else 55 if system == "mips64el-linux" then stdenvLinux else 56 if system == "powerpc-linux" then /* stdenvLinux */ stdenvNative else 57 - if system == "x86_64-darwin" then stdenvDarwin else 58 if system == "x86_64-solaris" then stdenvNix else 59 if system == "i686-cygwin" then stdenvNative else 60 if system == "x86_64-cygwin" then stdenvNative else
··· 54 if system == "armv7l-linux" then stdenvLinux else 55 if system == "mips64el-linux" then stdenvLinux else 56 if system == "powerpc-linux" then /* stdenvLinux */ stdenvNative else 57 + if system == "x86_64-darwin" then stdenvDarwinPure else 58 if system == "x86_64-solaris" then stdenvNix else 59 if system == "i686-cygwin" then stdenvNative else 60 if system == "x86_64-cygwin" then stdenvNative else
+4 -2
pkgs/stdenv/pure-darwin/default.nix
··· 6 7 let 8 # libSystem and its transitive dependencies. Get used to this; it's a recurring theme in darwin land 9 - libSystemClosure = [ 10 "/usr/lib/libSystem.dylib" 11 "/usr/lib/libSystem.B.dylib" 12 "/usr/lib/libobjc.A.dylib" ··· 16 "/usr/lib/libc++.1.dylib" 17 "/usr/lib/libDiagnosticMessagesClient.dylib" 18 "/usr/lib/system" 19 - ]; 20 21 fetch = { file, sha256 }: derivation ((import <nix/fetchurl.nix> { 22 url = "https://dl.dropboxusercontent.com/u/2857322/${file}";
··· 6 7 let 8 # libSystem and its transitive dependencies. Get used to this; it's a recurring theme in darwin land 9 + libSystemClosure = if system == "x86_64-darwin" 10 + then [ 11 "/usr/lib/libSystem.dylib" 12 "/usr/lib/libSystem.B.dylib" 13 "/usr/lib/libobjc.A.dylib" ··· 17 "/usr/lib/libc++.1.dylib" 18 "/usr/lib/libDiagnosticMessagesClient.dylib" 19 "/usr/lib/system" 20 + ] 21 + else []; 22 23 fetch = { file, sha256 }: derivation ((import <nix/fetchurl.nix> { 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 }: 2 3 python3Packages.buildPythonPackage rec { 4 - name = "borg-${version}"; 5 - version = "0.23.0"; 6 namePrefix = ""; 7 8 - src = fetchzip { 9 - name = "${name}-src"; 10 - url = "https://github.com/borgbackup/borg/archive/${version}.tar.gz"; 11 - sha256 = "1ns00bhrh4zm1s70mm32gnahj7yh4jdpkb8ziarhvcnknz7aga67"; 12 }; 13 14 propagatedBuildInputs = with python3Packages; 15 - [ cython msgpack openssl acl llfuse tox detox ]; 16 17 preConfigure = '' 18 export BORG_OPENSSL_PREFIX="${openssl}" 19 ''; 20 21 meta = with stdenv.lib; {
··· 1 + { stdenv, fetchurl, python3Packages, openssl, acl, lz4 }: 2 3 python3Packages.buildPythonPackage rec { 4 + name = "borgbackup-${version}"; 5 + version = "0.27.0"; 6 namePrefix = ""; 7 8 + src = fetchurl { 9 + url = "https://pypi.python.org/packages/source/b/borgbackup/borgbackup-${version}.tar.gz"; 10 + sha256 = "04iizidag4fwy6kx1747d633s1amr81slgk743qsfbwixaxfjq9b"; 11 }; 12 13 propagatedBuildInputs = with python3Packages; 14 + [ cython msgpack openssl acl llfuse tox detox lz4 setuptools_scm ]; 15 16 preConfigure = '' 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'))" 21 ''; 22 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 p = if stdenv.is64bit then { 7 arch = "x86_64"; 8 gcclib = "${stdenv.cc.cc}/lib64"; 9 - sha256 = "08mmjz061b0hrqp8zg31w089n5bk3sq4r3w84zr33d8pnvkgq2wk"; 10 } 11 else { 12 arch = "i386"; 13 gcclib = "${stdenv.cc.cc}/lib"; 14 - sha256 = "1zb6cnldd43nr4k2qg9hnrkgj0iik2gpxqrjypbhwv75hnvjma93"; 15 }; 16 in 17 stdenv.mkDerivation rec { 18 19 name = "yandex-disk-${version}"; 20 - version = "0.1.5.905"; 21 22 src = fetchurl { 23 url = "http://repo.yandex.ru/yandex-disk/rpm/stable/${p.arch}/${name}-1.fedora.${p.arch}.rpm";
··· 6 p = if stdenv.is64bit then { 7 arch = "x86_64"; 8 gcclib = "${stdenv.cc.cc}/lib64"; 9 + sha256 = "1dr976z0zgg5jk477hrnfmpcx4llh5xi1493k0pkp28m6ypbxy2q"; 10 } 11 else { 12 arch = "i386"; 13 gcclib = "${stdenv.cc.cc}/lib"; 14 + sha256 = "01v0caf194y6yb0zc0d3ywx3y0rwb7sxkav4ickd4l968jpi8p91"; 15 }; 16 in 17 stdenv.mkDerivation rec { 18 19 name = "yandex-disk-${version}"; 20 + version = "0.1.5.940"; 21 22 src = fetchurl { 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 { stdenv, fetchurl, ncurses }: 2 3 stdenv.mkDerivation rec { 4 - name = "less-475"; 5 6 src = fetchurl { 7 url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz"; 8 - sha256 = "16703m6g5l97af3jwpypgac7gpmh3yjkdpqygf5a2scfip0hxm2g"; 9 }; 10 11 # Look for ‘sysless’ in /etc.
··· 1 { stdenv, fetchurl, ncurses }: 2 3 stdenv.mkDerivation rec { 4 + name = "less-481"; 5 6 src = fetchurl { 7 url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz"; 8 + sha256 = "19fxj0h10y5bhr3a1xa7kqvnwl44db3sdypz8jxl1q79yln8z8rz"; 9 }; 10 11 # Look for ‘sysless’ in /etc.
+3 -3
pkgs/tools/misc/sdl-jstest/default.nix
··· 1 { fetchgit, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: 2 3 stdenv.mkDerivation rec { 4 - name = "sdl-jstest-20150625"; 5 src = fetchgit { 6 url = "https://github.com/Grumbel/sdl-jstest"; 7 - rev = "3f54b86ebe0d2f95e9c1d034bc4ed02d6d2b6409"; 8 - sha256 = "d33e0a2c66b551ecf333590f1a6e1730093af31cee1be8757748624d42e14df1"; 9 }; 10 11 buildInputs = [ SDL SDL2 ncurses ];
··· 1 { fetchgit, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: 2 3 stdenv.mkDerivation rec { 4 + name = "sdl-jstest-20150806"; 5 src = fetchgit { 6 url = "https://github.com/Grumbel/sdl-jstest"; 7 + rev = "7b792376178c9656c851ddf106c7d57b2495e8b9"; 8 + sha256 = "3aa9a002de9c9999bd7c6248b94148f15dba6106489e418b2a1a410324f75eb8"; 9 }; 10 11 buildInputs = [ SDL SDL2 ncurses ];
+2 -2
pkgs/tools/misc/tlp/default.nix
··· 1 { stdenv, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils, kmod 2 , enableRDW ? true, networkmanager }: 3 4 - let version = "0.7"; 5 in stdenv.mkDerivation { 6 inherit enableRDW; 7 ··· 11 owner = "linrunner"; 12 repo = "TLP"; 13 rev = "${version}"; 14 - sha256 = "0vgx2jnk9gp41fw992l9dmv462jpcrnwqkzsa8z0lh0l77ax2jcg"; 15 }; 16 17 makeFlags = [ "DESTDIR=$(out)"
··· 1 { stdenv, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils, kmod 2 , enableRDW ? true, networkmanager }: 3 4 + let version = "0.8"; 5 in stdenv.mkDerivation { 6 inherit enableRDW; 7 ··· 11 owner = "linrunner"; 12 repo = "TLP"; 13 rev = "${version}"; 14 + sha256 = "19fvk0xz6i2ryf41akk4jg1c4sb4rcyxdl9fr0w4lja7g76d5zww"; 15 }; 16 17 makeFlags = [ "DESTDIR=$(out)"
+3 -3
pkgs/tools/networking/netsniff-ng/default.nix
··· 2 , libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl 3 , pkgconfig, zlib }: 4 5 - let version = "0.5.9-98-gb3a9f17"; in 6 stdenv.mkDerivation { 7 name = "netsniff-ng-${version}"; 8 ··· 10 src = fetchFromGitHub rec { 11 repo = "netsniff-ng"; 12 owner = repo; 13 - rev = "b3a9f17eb9c7a47e6c4aee3649179b2a54d17eca"; 14 - sha256 = "05nwi5ksijv42w7km08dhymiyyvcj43b5lrpdf9x5j725l79yqdb"; 15 }; 16 17 buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl
··· 2 , libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl 3 , pkgconfig, zlib }: 4 5 + let version = "0.5.9-106-g895377c"; in 6 stdenv.mkDerivation { 7 name = "netsniff-ng-${version}"; 8 ··· 10 src = fetchFromGitHub rec { 11 repo = "netsniff-ng"; 12 owner = repo; 13 + rev = "895377c6e96ec8ac853568eb275043741a7621cd"; 14 + sha256 = "092jzakldpqram26dccd5k5hv4jc396c3l7iaf9r3139dx83plag"; 15 }; 16 17 buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl
+1 -1
pkgs/tools/networking/openvpn/update-resolv-conf.nix
··· 1 { stdenv, fetchgit, makeWrapper, openresolv, coreutils }: 2 3 stdenv.mkDerivation rec { 4 - name = "update-resolv-conf-2014-10-03"; 5 6 src = fetchgit { 7 url = https://github.com/masterkorp/openvpn-update-resolv-conf/;
··· 1 { stdenv, fetchgit, makeWrapper, openresolv, coreutils }: 2 3 stdenv.mkDerivation rec { 4 + name = "update-resolv-conf-20141003"; 5 6 src = fetchgit { 7 url = https://github.com/masterkorp/openvpn-update-resolv-conf/;
+2 -2
pkgs/tools/networking/ripmime/default.nix
··· 29 /* doConfigure should be removed if not needed */ 30 phaseNames = ["fixTarget" "doMakeInstall"]; 31 fixTarget = a.fullDepEntry ('' 32 - sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" 33 - mkdir -p "$out/bin" "$out/man/man1" 34 '') ["doUnpack" "minInit" "defEnsureDir"]; 35 36 meta = {
··· 29 /* doConfigure should be removed if not needed */ 30 phaseNames = ["fixTarget" "doMakeInstall"]; 31 fixTarget = a.fullDepEntry ('' 32 + sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" -e "s@man/man1@share/&@" 33 + mkdir -p "$out/bin" "$out/share/man/man1" 34 '') ["doUnpack" "minInit" "defEnsureDir"]; 35 36 meta = {
+1 -1
pkgs/tools/security/chkrootkit/default.nix
··· 4 name = "chkrootkit-0.50"; 5 6 src = fetchurl { 7 - url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz; 8 sha256 = "1ivclp7ixndacjmf7xgj8lfa6h7ihx44mzzsapqdvf0c5f9gqj4m"; 9 }; 10
··· 4 name = "chkrootkit-0.50"; 5 6 src = fetchurl { 7 + url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit-0.50.tar.gz; 8 sha256 = "1ivclp7ixndacjmf7xgj8lfa6h7ihx44mzzsapqdvf0c5f9gqj4m"; 9 }; 10
+4 -3
pkgs/tools/security/eid-mw/default.nix
··· 1 { stdenv, fetchFromGitHub, autoreconfHook, gtk2, nssTools, pcsclite 2 , pkgconfig }: 3 4 - let version = "4.1.6"; in 5 stdenv.mkDerivation { 6 name = "eid-mw-${version}"; 7 8 src = fetchFromGitHub { 9 - sha256 = "006s7093wqmk36mrlakjv89bqddyh599rvmgv0zgsp15vf9160zi"; 10 rev = "v${version}"; 11 repo = "eid-mw"; 12 owner = "Fedict"; ··· 29 --replace "modutil" "${nssTools}/bin/modutil" 30 31 # Only provides a useless "about-eid-mw.desktop" that segfaults anyway: 32 - rm -rf $out/share/applications $out/bin/about-eid-mw 33 ''; 34 35 meta = with stdenv.lib; { 36 description = "Belgian electronic identity card (eID) middleware"; 37 homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/; 38 license = licenses.lgpl3;
··· 1 { stdenv, fetchFromGitHub, autoreconfHook, gtk2, nssTools, pcsclite 2 , pkgconfig }: 3 4 + let version = "4.1.7"; in 5 stdenv.mkDerivation { 6 name = "eid-mw-${version}"; 7 8 src = fetchFromGitHub { 9 + sha256 = "1m44s8mzz8gg97xdmbng40279hc4i7q7i7yd45hbagacny0wxi1k"; 10 rev = "v${version}"; 11 repo = "eid-mw"; 12 owner = "Fedict"; ··· 29 --replace "modutil" "${nssTools}/bin/modutil" 30 31 # Only provides a useless "about-eid-mw.desktop" that segfaults anyway: 32 + rm -r $out/share/applications $out/bin/about-eid-mw 33 ''; 34 35 meta = with stdenv.lib; { 36 + inherit version; 37 description = "Belgian electronic identity card (eID) middleware"; 38 homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/; 39 license = licenses.lgpl3;
+2 -2
pkgs/tools/security/gnupg/21.nix
··· 13 assert x11Support -> pinentry != null; 14 15 stdenv.mkDerivation rec { 16 - name = "gnupg-2.1.8"; 17 18 src = fetchurl { 19 url = "mirror://gnupg/gnupg/${name}.tar.bz2"; 20 - sha256 = "18w14xp0ynzzwpklyplkzbrncds1hly4k2gjx115swch8qgd1f53"; 21 }; 22 23 postPatch = stdenv.lib.optionalString stdenv.isLinux ''
··· 13 assert x11Support -> pinentry != null; 14 15 stdenv.mkDerivation rec { 16 + name = "gnupg-2.1.9"; 17 18 src = fetchurl { 19 url = "mirror://gnupg/gnupg/${name}.tar.bz2"; 20 + sha256 = "1dpp555glln6fldk72ad7lkrn8h3cr2bg714z5kfn2qrawx67dqw"; 21 }; 22 23 postPatch = stdenv.lib.optionalString stdenv.isLinux ''
+2 -2
pkgs/tools/system/dd_rescue/default.nix
··· 1 { stdenv, fetchurl, autoconf }: 2 3 stdenv.mkDerivation rec { 4 - version = "1.98"; 5 name = "dd_rescue-${version}"; 6 7 src = fetchurl { 8 - sha256 = "14lf2pv52sr16977qjq1rsr42rfd3ywsss2xw9svgaa14g49ss6b"; 9 url="http://www.garloff.de/kurt/linux/ddrescue/${name}.tar.bz2"; 10 }; 11
··· 1 { stdenv, fetchurl, autoconf }: 2 3 stdenv.mkDerivation rec { 4 + version = "1.99"; 5 name = "dd_rescue-${version}"; 6 7 src = fetchurl { 8 + sha256 = "0gkbwssn134fjyyvjvylyvassw4fwv5mbis9gcb969xdc64dfhg1"; 9 url="http://www.garloff.de/kurt/linux/ddrescue/${name}.tar.bz2"; 10 }; 11
+22 -7
pkgs/top-level/all-packages.nix
··· 602 603 bonnie = callPackage ../tools/filesystems/bonnie { }; 604 605 grc = callPackage ../tools/misc/grc { }; 606 607 lastpass-cli = callPackage ../tools/security/lastpass-cli { }; ··· 712 713 bochs = callPackage ../applications/virtualization/bochs { }; 714 715 - borg = callPackage ../tools/backup/borg { }; 716 717 boomerang = callPackage ../development/tools/boomerang { }; 718 ··· 1228 devilspie2 = callPackage ../applications/misc/devilspie2 { 1229 gtk = gtk3; 1230 }; 1231 1232 ddccontrol = callPackage ../tools/misc/ddccontrol { }; 1233 ··· 7577 paths = [ mesa_noglu mesa_glu ]; 7578 }); 7579 7580 metaEnvironment = recurseIntoAttrs (let callPackage = newScope pkgs.metaEnvironment; in rec { 7581 sdfLibrary = callPackage ../development/libraries/sdf-library { aterm = aterm28; }; 7582 toolbuslib = callPackage ../development/libraries/toolbuslib { aterm = aterm28; inherit (windows) w32api; }; ··· 10447 coreclr = callPackage ../development/compilers/coreclr { }; 10448 10449 corefonts = callPackage ../data/fonts/corefonts { }; 10450 - 10451 culmus = callPackage ../data/fonts/culmus { }; 10452 10453 wrapFonts = paths : (callPackage ../data/fonts/fontWrap { inherit paths; }); ··· 10531 10532 junicode = callPackage ../data/fonts/junicode { }; 10533 10534 kochi-substitute = callPackage ../data/fonts/kochi-substitute {}; 10535 10536 kochi-substitute-naga10 = callPackage ../data/fonts/kochi-substitute-naga10 {}; ··· 10582 10583 pecita = callPackage ../data/fonts/pecita {}; 10584 10585 poly = callPackage ../data/fonts/poly { }; 10586 10587 posix_man_pages = callPackage ../data/documentation/man-pages-posix { }; ··· 11237 loremIpsum = callPackage ../applications/editors/emacs-modes/lorem-ipsum { }; 11238 11239 magit = callPackage ../applications/editors/emacs-modes/magit { }; 11240 11241 maudeMode = callPackage ../applications/editors/emacs-modes/maude { }; 11242 ··· 12386 12387 pencil = callPackage ../applications/graphics/pencil { }; 12388 12389 - perseus = callPackage ../applications/science/math/perseus {}; 12390 12391 petrifoo = callPackage ../applications/audio/petrifoo { 12392 inherit (gnome) libgnomecanvas; ··· 12425 plugins = []; 12426 }; 12427 12428 - pidginlatex = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex { }; 12429 - 12430 - pidginlatexSF = pidginlatex; 12431 12432 pidginmsnpecan = callPackage ../applications/networking/instant-messengers/pidgin-plugins/msn-pecan { }; 12433 ··· 13074 dconf = gnome3.dconf; 13075 gtkvnc = gtkvnc.override { enableGTK3 = true; }; 13076 spice_gtk = spice_gtk.override { enableGTK3 = true; }; 13077 }; 13078 13079 virtinst = callPackage ../applications/virtualization/virtinst {}; ··· 15193 xlibs = xorg; # added 2015-09 15194 youtube-dl = pythonPackages.youtube-dl; # added 2015-06-07 15195 youtubeDL = youtube-dl; # added 2014-10-26 15196 }; 15197 15198 tweakAlias = _n: alias: with lib; ··· 15201 else alias; 15202 15203 in lib.mapAttrs tweakAlias aliases // self; in pkgs 15204 -
··· 602 603 bonnie = callPackage ../tools/filesystems/bonnie { }; 604 605 + djmount = callPackage ../tools/filesystems/djmount { }; 606 + 607 grc = callPackage ../tools/misc/grc { }; 608 609 lastpass-cli = callPackage ../tools/security/lastpass-cli { }; ··· 714 715 bochs = callPackage ../applications/virtualization/bochs { }; 716 717 + borgbackup = callPackage ../tools/backup/borg { }; 718 719 boomerang = callPackage ../development/tools/boomerang { }; 720 ··· 1230 devilspie2 = callPackage ../applications/misc/devilspie2 { 1231 gtk = gtk3; 1232 }; 1233 + 1234 + dex = callPackage ../tools/X11/dex { }; 1235 1236 ddccontrol = callPackage ../tools/misc/ddccontrol { }; 1237 ··· 7581 paths = [ mesa_noglu mesa_glu ]; 7582 }); 7583 7584 + meterbridge = callPackage ../applications/audio/meterbridge { }; 7585 + 7586 metaEnvironment = recurseIntoAttrs (let callPackage = newScope pkgs.metaEnvironment; in rec { 7587 sdfLibrary = callPackage ../development/libraries/sdf-library { aterm = aterm28; }; 7588 toolbuslib = callPackage ../development/libraries/toolbuslib { aterm = aterm28; inherit (windows) w32api; }; ··· 10453 coreclr = callPackage ../development/compilers/coreclr { }; 10454 10455 corefonts = callPackage ../data/fonts/corefonts { }; 10456 + 10457 culmus = callPackage ../data/fonts/culmus { }; 10458 10459 wrapFonts = paths : (callPackage ../data/fonts/fontWrap { inherit paths; }); ··· 10537 10538 junicode = callPackage ../data/fonts/junicode { }; 10539 10540 + kawkab-mono-font = callPackage ../data/fonts/kawkab-mono {}; 10541 + 10542 kochi-substitute = callPackage ../data/fonts/kochi-substitute {}; 10543 10544 kochi-substitute-naga10 = callPackage ../data/fonts/kochi-substitute-naga10 {}; ··· 10590 10591 pecita = callPackage ../data/fonts/pecita {}; 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 + 10597 poly = callPackage ../data/fonts/poly { }; 10598 10599 posix_man_pages = callPackage ../data/documentation/man-pages-posix { }; ··· 11249 loremIpsum = callPackage ../applications/editors/emacs-modes/lorem-ipsum { }; 11250 11251 magit = callPackage ../applications/editors/emacs-modes/magit { }; 11252 + 11253 + markdownMode = callPackage ../applications/editors/emacs-modes/markdown-mode { }; 11254 11255 maudeMode = callPackage ../applications/editors/emacs-modes/maude { }; 11256 ··· 12400 12401 pencil = callPackage ../applications/graphics/pencil { }; 12402 12403 + perseus = callPackage ../applications/science/math/perseus {}; 12404 12405 petrifoo = callPackage ../applications/audio/petrifoo { 12406 inherit (gnome) libgnomecanvas; ··· 12439 plugins = []; 12440 }; 12441 12442 + pidginlatex = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex { 12443 + texLive = texlive.combined.scheme-basic; 12444 + }; 12445 12446 pidginmsnpecan = callPackage ../applications/networking/instant-messengers/pidgin-plugins/msn-pecan { }; 12447 ··· 13088 dconf = gnome3.dconf; 13089 gtkvnc = gtkvnc.override { enableGTK3 = true; }; 13090 spice_gtk = spice_gtk.override { enableGTK3 = true; }; 13091 + system-libvirt = libvirt; 13092 }; 13093 13094 virtinst = callPackage ../applications/virtualization/virtinst {}; ··· 15208 xlibs = xorg; # added 2015-09 15209 youtube-dl = pythonPackages.youtube-dl; # added 2015-06-07 15210 youtubeDL = youtube-dl; # added 2014-10-26 15211 + pidginlatexSF = pidginlatex; # added 2014-11-02 15212 }; 15213 15214 tweakAlias = _n: alias: with lib; ··· 15217 else alias; 15218 15219 in lib.mapAttrs tweakAlias aliases // self; in pkgs
+53 -40
pkgs/top-level/perl-packages.nix
··· 2353 buildInputs = [ PathClass TryTiny ]; 2354 }; 2355 2356 CSSDOM = buildPerlPackage rec { 2357 name = "CSS-DOM-0.15"; 2358 src = fetchurl { ··· 10983 propagatedBuildInputs = [ PerlCritic ]; 10984 }; 10985 10986 - TestPod = buildPerlPackage { 10987 - name = "Test-Pod-1.48"; 10988 src = fetchurl { 10989 - url = mirror://cpan/authors/id/D/DW/DWHEELER/Test-Pod-1.48.tar.gz; 10990 - sha256 = "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"; 10991 }; 10992 meta = { 10993 homepage = http://search.cpan.org/dist/Test-Pod/; ··· 11032 }; 11033 }; 11034 11035 - TestRequires = buildPerlPackage { 11036 - name = "Test-Requires-0.06"; 11037 src = fetchurl { 11038 - url = mirror://cpan/authors/id/T/TO/TOKUHIROM/Test-Requires-0.06.tar.gz; 11039 - sha256 = "1ksyg4npzx5faf2sj80rm74qjra4q679750vfqfvw3kg1d69wvwv"; 11040 }; 11041 meta = { 11042 description = "Checks to see if the module can be loaded"; ··· 11084 propagatedBuildInputs = [ ProbePerl IPCRun3 ]; 11085 }; 11086 11087 - TestSharedFork = buildPerlPackage { 11088 - name = "Test-SharedFork-0.29"; 11089 src = fetchurl { 11090 - url = mirror://cpan/authors/id/E/EX/EXODIST/Test-SharedFork-0.29.tar.gz; 11091 - sha256 = "63af7788cc35b9b7e6fa37c61220ca66abd6364d8bb90c20038e3d8241988a6e"; 11092 }; 11093 buildInputs = [ TestRequires ]; 11094 meta = { ··· 11100 11101 TestSimple = null; 11102 11103 - TestSpec = buildPerlPackage { 11104 - name = "Test-Spec-0.47"; 11105 src = fetchurl { 11106 - url = mirror://cpan/authors/id/P/PH/PHILIP/Test-Spec-0.47.tar.gz; 11107 - sha256 = "e425c0b9efa3c7e21496d31a607d072a63e31988c3d298a8c1fd7d145cc0681e"; 11108 }; 11109 propagatedBuildInputs = [ PackageStash TestDeep TestTrap TieIxHash ]; 11110 meta = { ··· 11122 propagatedBuildInputs = [ HookLexWrap ]; 11123 }; 11124 11125 - TestSynopsis = buildPerlPackage { 11126 - name = "Test-Synopsis-0.10"; 11127 src = fetchurl { 11128 - url = mirror://cpan/authors/id/Z/ZO/ZOFFIX/Test-Synopsis-0.10.tar.gz; 11129 - sha256 = "0gbk4d2vwlldsj5shmbdar3a29vgrw84ldsvm26mflkr5ji34adv"; 11130 }; 11131 meta = { 11132 description = "Test your SYNOPSIS code"; ··· 11148 }; 11149 }; 11150 11151 - TestTCP = buildPerlPackage { 11152 - name = "Test-TCP-1.18"; 11153 src = fetchurl { 11154 - url = mirror://cpan/authors/id/T/TO/TOKUHIROM/Test-TCP-1.18.tar.gz; 11155 - sha256 = "0flm7x0z7amppi9y6s8mxm0pkrgfihfpfjs0w4i6s80jiss1gfld"; 11156 }; 11157 propagatedBuildInputs = [ TestSharedFork ]; 11158 meta = { ··· 11210 }; 11211 }; 11212 11213 - TestWarnings = buildPerlPackage { 11214 - name = "Test-Warnings-0.016"; 11215 src = fetchurl { 11216 - url = mirror://cpan/authors/id/E/ET/ETHER/Test-Warnings-0.016.tar.gz; 11217 - sha256 = "09ebc9afa29eb4d1d44fbd974dfcd52e0a2d9ce7ec3e3ee7602394157831aba9"; 11218 }; 11219 - buildInputs = [ TestTester if_ ]; 11220 meta = { 11221 homepage = https://github.com/karenetheridge/Test-Warnings; 11222 description = "Test for warnings and the lack of them"; ··· 11627 }; 11628 }; 11629 11630 - TestTrap = buildPerlPackage { 11631 - name = "Test-Trap-0.2.2"; 11632 src = fetchurl { 11633 - url = mirror://cpan/authors/id/E/EB/EBHANSSEN/Test-Trap-v0.2.2.tar.gz; 11634 sha256 = "1ci5ag9pm850ww55n2929skvw3avy6xcrwmmi2yyn0hifxx9dybs"; 11635 }; 11636 buildInputs = [ TestTester ]; ··· 11657 }; 11658 }; 11659 11660 - TestVersion = buildPerlPackage { 11661 - name = "Test-Version-1.002004"; 11662 src = fetchurl { 11663 - url = mirror://cpan/authors/id/X/XE/XENO/Test-Version-1.002004.tar.gz; 11664 - sha256 = "1lvg1p6i159ssk5br5qb3gvrzdg59wchd97z7j44arnlkhfvwhgv"; 11665 }; 11666 buildInputs = [ TestException TestRequires TestTester ]; 11667 propagatedBuildInputs = [ FileFindRulePerl ]; ··· 12320 }; 12321 12322 Wx = buildPerlPackage rec { 12323 - name = "Wx-0.9923"; 12324 src = fetchurl { 12325 url = "mirror://cpan/authors/id/M/MD/MDOOTSON/${name}.tar.gz"; 12326 - sha256 = "1ja2fkz0xabafyc6gnp3nnwsbkkjsf44kq9x5zz6cb5fsp3p9sck"; 12327 }; 12328 propagatedBuildInputs = [ ExtUtilsXSpp AlienWxWidgets ]; 12329 # Testing requires an X server: ··· 12378 }; 12379 12380 X11XCB = buildPerlPackage rec { 12381 - name = "X11-XCB-0.12"; 12382 src = fetchurl { 12383 url = "mirror://cpan/authors/id/M/MS/MSTPLBG/${name}.tar.gz"; 12384 - sha256 = "15jq55qcc27s5bn925pwry0vx2f4d42rlyz2hlfglnn2qnhsp37s"; 12385 }; 12386 AUTOMATED_TESTING = false; 12387 buildInputs = [
··· 2353 buildInputs = [ PathClass TryTiny ]; 2354 }; 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 + 2369 CSSDOM = buildPerlPackage rec { 2370 name = "CSS-DOM-0.15"; 2371 src = fetchurl { ··· 10996 propagatedBuildInputs = [ PerlCritic ]; 10997 }; 10998 10999 + TestPod = buildPerlPackage rec { 11000 + name = "Test-Pod-1.51"; 11001 src = fetchurl { 11002 + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; 11003 + sha256 = "1yvy5mc4j3s2h4aizryvark2nm58g2c6zhw9mlx9wmsavz7d78f1"; 11004 }; 11005 meta = { 11006 homepage = http://search.cpan.org/dist/Test-Pod/; ··· 11045 }; 11046 }; 11047 11048 + TestRequires = buildPerlPackage rec { 11049 + name = "Test-Requires-0.10"; 11050 src = fetchurl { 11051 + url = "mirror://cpan/authors/id/T/TO/TOKUHIROM/${name}.tar.gz"; 11052 + sha256 = "1d9f481lj12cw1ciil46xq9nq16p6a90nm7yrsalpf8asn8s6s17"; 11053 }; 11054 meta = { 11055 description = "Checks to see if the module can be loaded"; ··· 11097 propagatedBuildInputs = [ ProbePerl IPCRun3 ]; 11098 }; 11099 11100 + TestSharedFork = buildPerlPackage rec { 11101 + name = "Test-SharedFork-0.34"; 11102 src = fetchurl { 11103 + url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz"; 11104 + sha256 = "1yq4xzify3wqdc07zq33lwgh9gywp3qd8w6wzwrllbjw0hhkm4s8"; 11105 }; 11106 buildInputs = [ TestRequires ]; 11107 meta = { ··· 11113 11114 TestSimple = null; 11115 11116 + TestSpec = buildPerlPackage rec { 11117 + name = "Test-Spec-0.51"; 11118 src = fetchurl { 11119 + url = "mirror://cpan/authors/id/A/AN/ANDYJONES/${name}.tar.gz"; 11120 + sha256 = "0n2pzc32q4fr1b9w292ld9gh3yn3saxib3hxrjx6jvcmy3k9jkbi"; 11121 }; 11122 propagatedBuildInputs = [ PackageStash TestDeep TestTrap TieIxHash ]; 11123 meta = { ··· 11135 propagatedBuildInputs = [ HookLexWrap ]; 11136 }; 11137 11138 + TestSynopsis = buildPerlPackage rec { 11139 + name = "Test-Synopsis-0.11"; 11140 src = fetchurl { 11141 + url = "mirror://cpan/authors/id/Z/ZO/ZOFFIX/${name}.tar.gz"; 11142 + sha256 = "1jn3vna5r5fa9nv33n1x0bmgc434sk0ggar3jm78xx0zzy5jnsxv"; 11143 }; 11144 meta = { 11145 description = "Test your SYNOPSIS code"; ··· 11161 }; 11162 }; 11163 11164 + TestTCP = buildPerlPackage rec { 11165 + name = "Test-TCP-2.14"; 11166 src = fetchurl { 11167 + url = "mirror://cpan/authors/id/T/TO/TOKUHIROM/${name}.tar.gz"; 11168 + sha256 = "00bxgm7qva4fd25phwl8fvv36h8h5k3jk89hz9302a288wv3ysmr"; 11169 }; 11170 propagatedBuildInputs = [ TestSharedFork ]; 11171 meta = { ··· 11223 }; 11224 }; 11225 11226 + TestWarnings = buildPerlPackage rec { 11227 + name = "Test-Warnings-0.021"; 11228 src = fetchurl { 11229 + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; 11230 + sha256 = "0i1crkhqfl5gs55i5nrvsw3xy946ajgnvp4gqrzvsn1x6cp1i2nr"; 11231 }; 11232 + buildInputs = [ TestTester if_ CPANMetaCheck ModuleMetadata ]; 11233 meta = { 11234 homepage = https://github.com/karenetheridge/Test-Warnings; 11235 description = "Test for warnings and the lack of them"; ··· 11640 }; 11641 }; 11642 11643 + TestTrap = buildPerlPackage rec { 11644 + name = "Test-Trap-0.3.2"; 11645 src = fetchurl { 11646 + url = "mirror://cpan/authors/id/E/EB/EBHANSSEN/${name}.tar.gz"; 11647 sha256 = "1ci5ag9pm850ww55n2929skvw3avy6xcrwmmi2yyn0hifxx9dybs"; 11648 }; 11649 buildInputs = [ TestTester ]; ··· 11670 }; 11671 }; 11672 11673 + TestVersion = buildPerlPackage rec { 11674 + name = "Test-Version-2.03"; 11675 src = fetchurl { 11676 + url = "mirror://cpan/authors/id/P/PL/PLICEASE/${name}.tar.gz"; 11677 + sha256 = "02nbi7iqab1b0ngkiim9kbvnnr9bhi17bq54vm8hn9ridzgbj1vj"; 11678 }; 11679 buildInputs = [ TestException TestRequires TestTester ]; 11680 propagatedBuildInputs = [ FileFindRulePerl ]; ··· 12333 }; 12334 12335 Wx = buildPerlPackage rec { 12336 + name = "Wx-0.9927"; 12337 src = fetchurl { 12338 url = "mirror://cpan/authors/id/M/MD/MDOOTSON/${name}.tar.gz"; 12339 + sha256 = "1fr23nn5cvzydl8nxfv0iljn10pvwbny0nvpjx31fn2md8dvsx51"; 12340 }; 12341 propagatedBuildInputs = [ ExtUtilsXSpp AlienWxWidgets ]; 12342 # Testing requires an X server: ··· 12391 }; 12392 12393 X11XCB = buildPerlPackage rec { 12394 + name = "X11-XCB-0.14"; 12395 src = fetchurl { 12396 url = "mirror://cpan/authors/id/M/MS/MSTPLBG/${name}.tar.gz"; 12397 + sha256 = "11ff0a4nqbdj68mxdvyqdqvi573ha10vy67wpi7mklpxvlm011bn"; 12398 }; 12399 AUTOMATED_TESTING = false; 12400 buildInputs = [
+2 -2
pkgs/top-level/python-packages.nix
··· 1080 }; 1081 1082 buttersink = buildPythonPackage rec { 1083 - name = "buttersink-0.6.6"; 1084 1085 src = pkgs.fetchurl { 1086 - sha256 = "1vi0pz8r3d17bsn5g7clkyph7sc0rjzbzqk6rwglaxcah7sfj2mj"; 1087 url = "https://pypi.python.org/packages/source/b/buttersink/${name}.tar.gz"; 1088 }; 1089
··· 1080 }; 1081 1082 buttersink = buildPythonPackage rec { 1083 + name = "buttersink-0.6.7"; 1084 1085 src = pkgs.fetchurl { 1086 + sha256 = "1azd0g0p9qk9wp344jmvqp4wk5f3wpsz3lb750xvnmd7qzf6v377"; 1087 url = "https://pypi.python.org/packages/source/b/buttersink/${name}.tar.gz"; 1088 }; 1089