Merge branch 'master' into staging

This is to get the openssl security update immediately,
as it surely causes a nontrivial rebuild.

+4486 -2712
+1 -1
default.nix
··· 1 - let requiredVersion = "1.10"; in 2 3 if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.nixVersion == 1 then 4
··· 1 + let requiredVersion = import ./lib/minver.nix; in 2 3 if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.nixVersion == 1 then 4
+2
lib/minver.nix
···
··· 1 + # Expose the minimum required version for evaluating Nixpkgs 2 + "1.10"
+14 -7
lib/types.nix
··· 193 194 nullOr = elemType: mkOptionType { 195 name = "null or ${elemType.name}"; 196 - check = x: builtins.isNull x || elemType.check x; 197 merge = loc: defs: 198 - let nrNulls = count (def: isNull def.value) defs; in 199 if nrNulls == length defs then null 200 else if nrNulls != 0 then 201 throw "The option `${showOption loc}' is defined both null and not null, in ${showFiles (getFiles defs)}." ··· 230 substSubModules = m: submodule m; 231 }; 232 233 - enum = values: mkOptionType { 234 - name = "one of ${concatStringsSep ", " values}"; 235 - check = flip elem values; 236 - merge = mergeOneOption; 237 - }; 238 239 either = t1: t2: mkOptionType { 240 name = "${t1.name} or ${t2.name}";
··· 193 194 nullOr = elemType: mkOptionType { 195 name = "null or ${elemType.name}"; 196 + check = x: x == null || elemType.check x; 197 merge = loc: defs: 198 + let nrNulls = count (def: def.value == null) defs; in 199 if nrNulls == length defs then null 200 else if nrNulls != 0 then 201 throw "The option `${showOption loc}' is defined both null and not null, in ${showFiles (getFiles defs)}." ··· 230 substSubModules = m: submodule m; 231 }; 232 233 + enum = values: 234 + let 235 + show = v: 236 + if builtins.isString v then ''"${v}"'' 237 + else if builtins.isInt v then builtins.toString v 238 + else ''<${builtins.typeOf v}>''; 239 + in 240 + mkOptionType { 241 + name = "one of ${concatMapStringsSep ", " show values}"; 242 + check = flip elem values; 243 + merge = mergeOneOption; 244 + }; 245 246 either = t1: t2: mkOptionType { 247 name = "${t1.name} or ${t2.name}";
+25 -10
nixos/modules/hardware/video/bumblebee.nix
··· 2 3 with lib; 4 let 5 kernel = config.boot.kernelPackages; 6 - bumblebee = if config.hardware.bumblebee.connectDisplay 7 - then pkgs.bumblebee_display 8 - else pkgs.bumblebee; 9 10 in 11 ··· 29 type = types.str; 30 description = ''Group for bumblebee socket''; 31 }; 32 hardware.bumblebee.connectDisplay = mkOption { 33 default = false; 34 type = types.bool; ··· 40 Only nvidia driver is supported so far. 41 ''; 42 }; 43 }; 44 45 config = mkIf config.hardware.bumblebee.enable { 46 boot.blacklistedKernelModules = [ "nouveau" "nvidia" ]; 47 boot.kernelModules = [ "bbswitch" ]; 48 - boot.extraModulePackages = [ kernel.bbswitch kernel.nvidia_x11 ]; 49 50 - environment.systemPackages = [ bumblebee pkgs.primus ]; 51 52 systemd.services.bumblebeed = { 53 description = "Bumblebee Hybrid Graphics Switcher"; 54 wantedBy = [ "display-manager.service" ]; 55 path = [ kernel.bbswitch bumblebee ]; 56 serviceConfig = { 57 - ExecStart = "${bumblebee}/bin/bumblebeed --use-syslog -g ${config.hardware.bumblebee.group}"; 58 - Restart = "always"; 59 - RestartSec = 60; 60 - CPUSchedulingPolicy = "idle"; 61 }; 62 - environment.LD_LIBRARY_PATH="/run/opengl-driver/lib/"; 63 environment.MODULE_DIR="/run/current-system/kernel-modules/lib/modules/"; 64 }; 65 };
··· 2 3 with lib; 4 let 5 + cfg = config.hardware.bumblebee; 6 + 7 kernel = config.boot.kernelPackages; 8 + 9 + useNvidia = cfg.driver == "nvidia"; 10 + 11 + bumblebee = pkgs.bumblebee.override { 12 + inherit useNvidia; 13 + useDisplayDevice = cfg.connectDisplay; 14 + }; 15 + 16 + primus = pkgs.primus.override { 17 + inherit useNvidia; 18 + }; 19 20 in 21 ··· 39 type = types.str; 40 description = ''Group for bumblebee socket''; 41 }; 42 + 43 hardware.bumblebee.connectDisplay = mkOption { 44 default = false; 45 type = types.bool; ··· 51 Only nvidia driver is supported so far. 52 ''; 53 }; 54 + 55 + hardware.bumblebee.driver = mkOption { 56 + default = "nvidia"; 57 + type = types.enum [ "nvidia" "nouveau" ]; 58 + description = '' 59 + Set driver used by bumblebeed. Supported are nouveau and nvidia. 60 + ''; 61 + }; 62 }; 63 64 config = mkIf config.hardware.bumblebee.enable { 65 boot.blacklistedKernelModules = [ "nouveau" "nvidia" ]; 66 boot.kernelModules = [ "bbswitch" ]; 67 + boot.extraModulePackages = [ kernel.bbswitch ] ++ optional useNvidia kernel.nvidia_x11; 68 69 + environment.systemPackages = [ bumblebee primus ]; 70 71 systemd.services.bumblebeed = { 72 description = "Bumblebee Hybrid Graphics Switcher"; 73 wantedBy = [ "display-manager.service" ]; 74 path = [ kernel.bbswitch bumblebee ]; 75 serviceConfig = { 76 + ExecStart = "${bumblebee}/bin/bumblebeed --use-syslog -g ${cfg.group} --driver ${cfg.driver}"; 77 }; 78 environment.MODULE_DIR="/run/current-system/kernel-modules/lib/modules/"; 79 }; 80 };
+4 -1
nixos/modules/services/hardware/tlp.nix
··· 10 11 tlp = pkgs.tlp.override { 12 inherit enableRDW; 13 - kmod = config.system.sbin.modprobe; 14 }; 15 16 # XXX: We can't use writeTextFile + readFile here because it triggers ··· 69 ExecStart = "${tlp}/bin/tlp init start"; 70 ExecStop = "${tlp}/bin/tlp init stop"; 71 }; 72 }; 73 74 tlp-sleep = { ··· 87 ExecStart = "${tlp}/bin/tlp suspend"; 88 ExecStop = "${tlp}/bin/tlp resume"; 89 }; 90 }; 91 }; 92
··· 10 11 tlp = pkgs.tlp.override { 12 inherit enableRDW; 13 }; 14 15 # XXX: We can't use writeTextFile + readFile here because it triggers ··· 68 ExecStart = "${tlp}/bin/tlp init start"; 69 ExecStop = "${tlp}/bin/tlp init stop"; 70 }; 71 + 72 + environment.MODULE_DIR="/run/current-system/kernel-modules/lib/modules/"; 73 }; 74 75 tlp-sleep = { ··· 88 ExecStart = "${tlp}/bin/tlp suspend"; 89 ExecStop = "${tlp}/bin/tlp resume"; 90 }; 91 + 92 + environment.MODULE_DIR="/run/current-system/kernel-modules/lib/modules/"; 93 }; 94 }; 95
+23 -4
nixos/modules/services/misc/gitlab.nix
··· 27 http_settings: 28 self_signed_cert: false 29 repos_path: "${cfg.stateDir}/repositories" 30 log_file: "${cfg.stateDir}/log/gitlab-shell.log" 31 redis: 32 bin: ${pkgs.redis}/bin/redis-cli ··· 142 143 config = mkIf cfg.enable { 144 145 - environment.systemPackages = [ gitlab-runner pkgs.gitlab-shell ]; 146 147 assertions = [ 148 { assertion = cfg.databasePassword != ""; ··· 154 services.redis.enable = mkDefault true; 155 # We use postgres as the main data store. 156 services.postgresql.enable = mkDefault true; 157 - services.postgresql.package = mkDefault pkgs.postgresql; 158 # Use postfix to send out mails. 159 services.postfix.enable = mkDefault true; 160 ··· 209 }; 210 }; 211 212 systemd.services.gitlab = { 213 after = [ "network.target" "postgresql.service" "redis.service" ]; 214 wantedBy = [ "multi-user.target" ]; ··· 219 environment.GITLAB_APPLICATION_LOG_PATH = "${cfg.stateDir}/log/application.log"; 220 environment.GITLAB_SATELLITES_PATH = "${cfg.stateDir}/satellites"; 221 environment.GITLAB_SHELL_PATH = "${pkgs.gitlab-shell}"; 222 environment.GITLAB_REPOSITORIES_PATH = "${cfg.stateDir}/repositories"; 223 environment.GITLAB_SHELL_HOOKS_PATH = "${cfg.stateDir}/shell/hooks"; 224 environment.BUNDLE_GEMFILE = "${pkgs.gitlab}/share/gitlab/Gemfile"; ··· 247 rm -rf ${cfg.stateDir}/config 248 mkdir -p ${cfg.stateDir}/config 249 # TODO: What exactly is gitlab-shell doing with the secret? 250 - head -c 20 /dev/urandom > ${cfg.stateDir}/config/gitlab_shell_secret 251 mkdir -p ${cfg.stateDir}/home/.ssh 252 touch ${cfg.stateDir}/home/.ssh/authorized_keys 253 ··· 272 fi 273 fi 274 275 # Install the shell required to push repositories 276 ln -fs ${pkgs.writeText "config.yml" gitlabShellYml} ${cfg.stateDir}/shell/config.yml 277 export GITLAB_SHELL_CONFIG_PATH=""${cfg.stateDir}/shell/config.yml ··· 296 }; 297 298 }; 299 - 300 }
··· 27 http_settings: 28 self_signed_cert: false 29 repos_path: "${cfg.stateDir}/repositories" 30 + secret_file: "${cfg.stateDir}/config/gitlab_shell_secret" 31 log_file: "${cfg.stateDir}/log/gitlab-shell.log" 32 redis: 33 bin: ${pkgs.redis}/bin/redis-cli ··· 143 144 config = mkIf cfg.enable { 145 146 + environment.systemPackages = [ pkgs.git gitlab-runner pkgs.gitlab-shell ]; 147 148 assertions = [ 149 { assertion = cfg.databasePassword != ""; ··· 155 services.redis.enable = mkDefault true; 156 # We use postgres as the main data store. 157 services.postgresql.enable = mkDefault true; 158 # Use postfix to send out mails. 159 services.postfix.enable = mkDefault true; 160 ··· 209 }; 210 }; 211 212 + systemd.services.gitlab-git-http-server = { 213 + after = [ "network.target" "gitlab.service" ]; 214 + wantedBy = [ "multi-user.target" ]; 215 + environment.HOME = "${cfg.stateDir}/home"; 216 + path = with pkgs; [ 217 + gitAndTools.git 218 + openssh 219 + ]; 220 + serviceConfig = { 221 + Type = "simple"; 222 + User = "gitlab"; 223 + Group = "gitlab"; 224 + TimeoutSec = "300"; 225 + ExecStart = "${pkgs.gitlab-git-http-server}/bin/gitlab-git-http-server -listenUmask 0 -listenNetwork unix -listenAddr ${cfg.stateDir}/tmp/sockets/gitlab-git-http-server.socket -authBackend http://localhost:8080 ${cfg.stateDir}/repositories"; 226 + }; 227 + }; 228 + 229 systemd.services.gitlab = { 230 after = [ "network.target" "postgresql.service" "redis.service" ]; 231 wantedBy = [ "multi-user.target" ]; ··· 236 environment.GITLAB_APPLICATION_LOG_PATH = "${cfg.stateDir}/log/application.log"; 237 environment.GITLAB_SATELLITES_PATH = "${cfg.stateDir}/satellites"; 238 environment.GITLAB_SHELL_PATH = "${pkgs.gitlab-shell}"; 239 + environment.GITLAB_SHELL_CONFIG_PATH = "${cfg.stateDir}/shell/config.yml"; 240 + environment.GITLAB_SHELL_SECRET_PATH = "${cfg.stateDir}/config/gitlab_shell_secret"; 241 environment.GITLAB_REPOSITORIES_PATH = "${cfg.stateDir}/repositories"; 242 environment.GITLAB_SHELL_HOOKS_PATH = "${cfg.stateDir}/shell/hooks"; 243 environment.BUNDLE_GEMFILE = "${pkgs.gitlab}/share/gitlab/Gemfile"; ··· 266 rm -rf ${cfg.stateDir}/config 267 mkdir -p ${cfg.stateDir}/config 268 # TODO: What exactly is gitlab-shell doing with the secret? 269 + tr -dc _A-Z-a-z-0-9 < /dev/urandom | head -c 20 > ${cfg.stateDir}/config/gitlab_shell_secret 270 mkdir -p ${cfg.stateDir}/home/.ssh 271 touch ${cfg.stateDir}/home/.ssh/authorized_keys 272 ··· 291 fi 292 fi 293 294 + ${bundler}/bin/bundle exec rake -f ${pkgs.gitlab}/share/gitlab/Rakefile db:migrate RAILS_ENV=production 295 # Install the shell required to push repositories 296 ln -fs ${pkgs.writeText "config.yml" gitlabShellYml} ${cfg.stateDir}/shell/config.yml 297 export GITLAB_SHELL_CONFIG_PATH=""${cfg.stateDir}/shell/config.yml ··· 316 }; 317 318 }; 319 }
+3 -3
nixos/modules/services/monitoring/teamviewer.nix
··· 14 15 options = { 16 17 - services.teamviewer.enable = mkEnableOption "teamviewer daemon"; 18 19 }; 20 ··· 27 systemd.services.teamviewerd = { 28 description = "TeamViewer remote control daemon"; 29 30 - wantedBy = [ "graphical.target" ]; 31 after = [ "NetworkManager-wait-online.service" "network.target" ]; 32 - preStart = "mkdir -pv /var/tmp/teamviewer10/{logs,config}"; 33 34 serviceConfig = { 35 Type = "forking";
··· 14 15 options = { 16 17 + services.teamviewer.enable = mkEnableOption "TeamViewer daemon"; 18 19 }; 20 ··· 27 systemd.services.teamviewerd = { 28 description = "TeamViewer remote control daemon"; 29 30 + wantedBy = [ "multi-user.target" ]; 31 after = [ "NetworkManager-wait-online.service" "network.target" ]; 32 + preStart = "mkdir -pv /var/lib/teamviewer /var/log/teamviewer"; 33 34 serviceConfig = { 35 Type = "forking";
+4 -30
nixos/modules/services/networking/nsd.nix
··· 300 options = { 301 services.nsd = { 302 303 - enable = mkOption { 304 - type = types.bool; 305 - default = false; 306 - description = '' 307 - Whether to enable the NSD authoritative domain name server. 308 - ''; 309 - }; 310 - 311 - bind8Stats = mkOption { 312 - type = types.bool; 313 - default = false; 314 - example = true; 315 - description = '' 316 - Wheter to enable BIND8 like statisics. 317 - ''; 318 - }; 319 320 rootServer = mkOption { 321 type = types.bool; ··· 483 484 485 ratelimit = { 486 - enable = mkOption { 487 - type = types.bool; 488 - default = false; 489 - description = '' 490 - Enable ratelimit capabilities. 491 - ''; 492 - }; 493 494 size = mkOption { 495 type = types.int; ··· 548 549 550 remoteControl = { 551 - enable = mkOption { 552 - type = types.bool; 553 - default = false; 554 - description = '' 555 - Wheter to enable remote control via nsd-control(8). 556 - ''; 557 - }; 558 559 interfaces = mkOption { 560 type = types.listOf types.str;
··· 300 options = { 301 services.nsd = { 302 303 + enable = mkEnableOption "NSD authoritative DNS server"; 304 + bind8Stats = mkEnableOption "BIND8 like statistics"; 305 306 rootServer = mkOption { 307 type = types.bool; ··· 469 470 471 ratelimit = { 472 + enable = mkEnableOption "ratelimit capabilities"; 473 474 size = mkOption { 475 type = types.int; ··· 528 529 530 remoteControl = { 531 + enable = mkEnableOption "remote control via nsd-control"; 532 533 interfaces = mkOption { 534 type = types.listOf types.str;
+1 -4
nixos/modules/services/x11/window-managers/afterstep.nix
··· 8 { 9 ###### interface 10 options = { 11 - services.xserver.windowManager.afterstep.enable = mkOption { 12 - default = false; 13 - description = "Enable the Afterstep window manager."; 14 - }; 15 }; 16 17 ###### implementation
··· 8 { 9 ###### interface 10 options = { 11 + services.xserver.windowManager.afterstep.enable = mkEnableOption "afterstep"; 12 }; 13 14 ###### implementation
+1 -6
nixos/modules/services/x11/window-managers/bspwm.nix
··· 8 9 { 10 options = { 11 - services.xserver.windowManager.bspwm.enable = mkOption { 12 - type = types.bool; 13 - default = false; 14 - example = true; 15 - description = "Enable the bspwm window manager."; 16 - }; 17 }; 18 19 config = mkIf cfg.enable {
··· 8 9 { 10 options = { 11 + services.xserver.windowManager.bspwm.enable = mkEnableOption "bspwm"; 12 }; 13 14 config = mkIf cfg.enable {
+1 -8
nixos/modules/services/x11/window-managers/clfswm.nix
··· 8 9 { 10 options = { 11 - services.xserver.windowManager.clfswm = { 12 - enable = mkOption { 13 - type = types.bool; 14 - default = false; 15 - example = true; 16 - description = "Enable the clfswm tiling window manager."; 17 - }; 18 - }; 19 }; 20 21 config = mkIf cfg.enable {
··· 8 9 { 10 options = { 11 + services.xserver.windowManager.clfswm.enable = mkEnableOption "clfswm"; 12 }; 13 14 config = mkIf cfg.enable {
+1 -4
nixos/modules/services/x11/window-managers/compiz.nix
··· 15 16 services.xserver.windowManager.compiz = { 17 18 - enable = mkOption { 19 - default = false; 20 - description = "Enable the Compiz window manager."; 21 - }; 22 23 renderingFlag = mkOption { 24 default = "";
··· 15 16 services.xserver.windowManager.compiz = { 17 18 + enable = mkEnableOption "compiz"; 19 20 renderingFlag = mkOption { 21 default = "";
+1 -4
nixos/modules/services/x11/window-managers/fluxbox.nix
··· 8 { 9 ###### interface 10 options = { 11 - services.xserver.windowManager.fluxbox.enable = mkOption { 12 - default = false; 13 - description = "Enable the Fluxbox window manager."; 14 - }; 15 }; 16 17 ###### implementation
··· 8 { 9 ###### interface 10 options = { 11 + services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox"; 12 }; 13 14 ###### implementation
+1 -6
nixos/modules/services/x11/window-managers/herbstluftwm.nix
··· 8 9 { 10 options = { 11 - services.xserver.windowManager.herbstluftwm.enable = mkOption { 12 - type = types.bool; 13 - default = false; 14 - example = true; 15 - description = "Enable the herbstluftwm window manager."; 16 - }; 17 }; 18 19 config = mkIf cfg.enable {
··· 8 9 { 10 options = { 11 + services.xserver.windowManager.herbstluftwm.enable = mkEnableOption "herbstluftwm"; 12 }; 13 14 config = mkIf cfg.enable {
+1 -5
nixos/modules/services/x11/window-managers/i3.nix
··· 9 { 10 options = { 11 services.xserver.windowManager.i3 = { 12 - enable = mkOption { 13 - default = false; 14 - example = true; 15 - description = "Enable the i3 tiling window manager."; 16 - }; 17 18 configFile = mkOption { 19 default = null;
··· 9 { 10 options = { 11 services.xserver.windowManager.i3 = { 12 + enable = mkEnableOption "i3"; 13 14 configFile = mkOption { 15 default = null;
+1 -1
nixos/modules/services/x11/window-managers/icewm.nix
··· 8 { 9 ###### interface 10 options = { 11 - services.xserver.windowManager.icewm.enable = mkEnableOption "oroborus"; 12 }; 13 14 ###### implementation
··· 8 { 9 ###### interface 10 options = { 11 + services.xserver.windowManager.icewm.enable = mkEnableOption "icewm"; 12 }; 13 14 ###### implementation
+1 -7
nixos/modules/services/x11/window-managers/metacity.nix
··· 12 13 { 14 options = { 15 - 16 - services.xserver.windowManager.metacity.enable = mkOption { 17 - default = false; 18 - example = true; 19 - description = "Enable the metacity window manager."; 20 - }; 21 - 22 }; 23 24 config = mkIf cfg.enable {
··· 12 13 { 14 options = { 15 + services.xserver.windowManager.metacity.enable = mkEnableOption "metacity"; 16 }; 17 18 config = mkIf cfg.enable {
+1 -7
nixos/modules/services/x11/window-managers/notion.nix
··· 8 9 { 10 options = { 11 - services.xserver.windowManager.notion = { 12 - enable = mkOption { 13 - default = false; 14 - example = true; 15 - description = "Enable the notion tiling window manager."; 16 - }; 17 - }; 18 }; 19 20 config = mkIf cfg.enable {
··· 8 9 { 10 options = { 11 + services.xserver.windowManager.notion.enable = mkEnableOption "notion"; 12 }; 13 14 config = mkIf cfg.enable {
+2 -7
nixos/modules/services/x11/window-managers/openbox.nix
··· 1 {lib, pkgs, config, ...}: 2 3 let 4 inherit (lib) mkOption mkIf; 5 cfg = config.services.xserver.windowManager.openbox; ··· 7 8 { 9 options = { 10 - services.xserver.windowManager.openbox = { 11 - enable = mkOption { 12 - default = false; 13 - example = true; 14 - description = "Enable the Openbox window manager."; 15 - }; 16 - }; 17 }; 18 19 config = mkIf cfg.enable {
··· 1 {lib, pkgs, config, ...}: 2 3 + with lib; 4 let 5 inherit (lib) mkOption mkIf; 6 cfg = config.services.xserver.windowManager.openbox; ··· 8 9 { 10 options = { 11 + services.xserver.windowManager.openbox.enable = mkEnableOption "oroborus"; 12 }; 13 14 config = mkIf cfg.enable {
+1 -4
nixos/modules/services/x11/window-managers/ratpoison.nix
··· 8 { 9 ###### interface 10 options = { 11 - services.xserver.windowManager.ratpoison.enable = mkOption { 12 - default = false; 13 - description = "Enable the Ratpoison window manager."; 14 - }; 15 }; 16 17 ###### implementation
··· 8 { 9 ###### interface 10 options = { 11 + services.xserver.windowManager.ratpoison.enable = mkEnableOption "ratpoison"; 12 }; 13 14 ###### implementation
+1 -4
nixos/modules/services/x11/window-managers/sawfish.nix
··· 8 { 9 ###### interface 10 options = { 11 - services.xserver.windowManager.sawfish.enable = mkOption { 12 - default = false; 13 - description = "Enable the Sawfish window manager."; 14 - }; 15 }; 16 17 ###### implementation
··· 8 { 9 ###### interface 10 options = { 11 + services.xserver.windowManager.sawfish.enable = mkEnableOption "sawfish"; 12 }; 13 14 ###### implementation
+1 -7
nixos/modules/services/x11/window-managers/spectrwm.nix
··· 9 10 { 11 options = { 12 - services.xserver.windowManager.spectrwm = { 13 - enable = mkOption { 14 - default = false; 15 - example = true; 16 - description = "Enable the spectrwm window manager."; 17 - }; 18 - }; 19 }; 20 21 config = mkIf cfg.enable {
··· 9 10 { 11 options = { 12 + services.xserver.windowManager.spectrwm.enable = mkEnableOption "spectrwm"; 13 }; 14 15 config = mkIf cfg.enable {
+1 -8
nixos/modules/services/x11/window-managers/stumpwm.nix
··· 8 9 { 10 options = { 11 - services.xserver.windowManager.stumpwm = { 12 - enable = mkOption { 13 - type = types.bool; 14 - default = false; 15 - example = true; 16 - description = "Enable the stumpwm tiling window manager."; 17 - }; 18 - }; 19 }; 20 21 config = mkIf cfg.enable {
··· 8 9 { 10 options = { 11 + services.xserver.windowManager.stumpwm.enable = mkEnableOption "stumpwm"; 12 }; 13 14 config = mkIf cfg.enable {
+1 -6
nixos/modules/services/x11/window-managers/twm.nix
··· 13 ###### interface 14 15 options = { 16 - 17 - services.xserver.windowManager.twm.enable = mkOption { 18 - default = false; 19 - description = "Enable the twm window manager."; 20 - }; 21 - 22 }; 23 24
··· 13 ###### interface 14 15 options = { 16 + services.xserver.windowManager.twm.enable = mkEnableOption "twm"; 17 }; 18 19
+1 -4
nixos/modules/services/x11/window-managers/windowmaker.nix
··· 8 { 9 ###### interface 10 options = { 11 - services.xserver.windowManager.windowmaker.enable = mkOption { 12 - default = false; 13 - description = "Enable the Windowmaker window manager."; 14 - }; 15 }; 16 17 ###### implementation
··· 8 { 9 ###### interface 10 options = { 11 + services.xserver.windowManager.windowmaker.enable = mkEnableOption "windowmaker"; 12 }; 13 14 ###### implementation
+3 -6
nixos/modules/services/x11/window-managers/wmii.nix
··· 1 - { config, lib, pkgs, options, modulesPath }: 2 3 let 4 inherit (lib) mkOption mkIf singleton; 5 cfg = config.services.xserver.windowManager.wmii; ··· 7 in 8 { 9 options = { 10 - services.xserver.windowManager.wmii.enable = mkOption { 11 - default = false; 12 - example = true; 13 - description = "Enable the wmii window manager."; 14 - }; 15 }; 16 17 config = mkIf cfg.enable {
··· 1 + { config, lib, pkgs, options, modulesPath, ... }: 2 3 + with lib; 4 let 5 inherit (lib) mkOption mkIf singleton; 6 cfg = config.services.xserver.windowManager.wmii; ··· 8 in 9 { 10 options = { 11 + services.xserver.windowManager.wmii.enable = mkEnableOption "wmii"; 12 }; 13 14 config = mkIf cfg.enable {
+2 -6
nixos/modules/services/x11/window-managers/xmonad.nix
··· 1 {pkgs, lib, config, ...}: 2 3 let 4 inherit (lib) mkOption mkIf optionals literalExample; 5 cfg = config.services.xserver.windowManager.xmonad; ··· 13 { 14 options = { 15 services.xserver.windowManager.xmonad = { 16 - enable = mkOption { 17 - default = false; 18 - example = true; 19 - description = "Enable the xmonad window manager."; 20 - }; 21 - 22 haskellPackages = mkOption { 23 default = pkgs.haskellPackages; 24 defaultText = "pkgs.haskellPackages";
··· 1 {pkgs, lib, config, ...}: 2 3 + with lib; 4 let 5 inherit (lib) mkOption mkIf optionals literalExample; 6 cfg = config.services.xserver.windowManager.xmonad; ··· 14 { 15 options = { 16 services.xserver.windowManager.xmonad = { 17 + enable = mkEnableOption "xmonad"; 18 haskellPackages = mkOption { 19 default = pkgs.haskellPackages; 20 defaultText = "pkgs.haskellPackages";
+2
nixos/modules/tasks/kbd.nix
··· 56 # it has a restart trigger. 57 systemd.services."systemd-vconsole-setup" = 58 { wantedBy = [ "multi-user.target" ]; 59 restartTriggers = [ vconsoleConf ]; 60 }; 61
··· 56 # it has a restart trigger. 57 systemd.services."systemd-vconsole-setup" = 58 { wantedBy = [ "multi-user.target" ]; 59 + before = [ "display-manager.service" ]; 60 + after = [ "systemd-udev-settle.service" ]; 61 restartTriggers = [ vconsoleConf ]; 62 }; 63
-1
nixos/modules/virtualisation/nova-image.nix
··· 21 imports = [ 22 ../profiles/qemu-guest.nix 23 ../profiles/headless.nix 24 - ./ec2-data.nix 25 ]; 26 27 fileSystems."/".device = "/dev/disk/by-label/nixos";
··· 21 imports = [ 22 ../profiles/qemu-guest.nix 23 ../profiles/headless.nix 24 ]; 25 26 fileSystems."/".device = "/dev/disk/by-label/nixos";
-30
pkgs/applications/misc/rofi/pass.nix
··· 1 - { stdenv, fetchgit, rofi, wmctrl, xprop, xdotool}: 2 - 3 - stdenv.mkDerivation rec { 4 - name = "rofi-pass-${version}"; 5 - version = "1.2"; 6 - 7 - src = fetchgit { 8 - url = "https://github.com/carnager/rofi-pass"; 9 - rev = "refs/tags/${version}"; 10 - sha256 = "1dlaplr18qady5g8sp8xgiqdw81mfx9iisihf8appr5s4sjm559h"; 11 - }; 12 - 13 - buildInputs = [ rofi wmctrl xprop xdotool ]; 14 - 15 - dontBuild = true; 16 - 17 - installPhase = '' 18 - mkdir -p $out/bin 19 - cp -a $src/rofi-pass $out/bin/rofi-pass 20 - 21 - mkdir -p $out/share/doc/rofi-pass/ 22 - cp -a $src/config.example $out/share/doc/rofi-pass/config.example 23 - ''; 24 - 25 - meta = { 26 - description = "A script to make rofi work with password-store"; 27 - homepage = https://github.com/carnager/rofi-pass; 28 - maintainers = [stdenv.lib.maintainers.hiberno]; 29 - }; 30 - }
···
+1 -1
pkgs/applications/misc/urlview/default.nix
··· 34 description = "Extract URLs from text"; 35 homepage = http://packages.qa.debian.org/u/urlview.html; 36 licencse = stdenv.lib.licenses.gpl2; 37 - platforms = stdenv.lib.platforms.linux; 38 }; 39 }
··· 34 description = "Extract URLs from text"; 35 homepage = http://packages.qa.debian.org/u/urlview.html; 36 licencse = stdenv.lib.licenses.gpl2; 37 + platforms = with stdenv.lib.platforms; linux ++ darwin; 38 }; 39 }
-57
pkgs/applications/networking/remote/teamviewer/10.nix
··· 1 - { stdenv, fetchurl, libX11, libXtst, libXext, libXdamage, libXfixes, 2 - wineUnstable, makeWrapper, libXau , patchelf, config }: 3 - 4 - with stdenv.lib; 5 - 6 - let 7 - topath = "${wineUnstable}/bin"; 8 - 9 - toldpath = stdenv.lib.concatStringsSep ":" (map (x: "${x}/lib") 10 - [ stdenv.cc.cc libX11 libXtst libXext libXdamage libXfixes wineUnstable ]); 11 - in 12 - stdenv.mkDerivation { 13 - name = "teamviewer-10.0.37742"; 14 - src = fetchurl { 15 - url = config.teamviewer10.url or "http://download.teamviewer.com/download/teamviewer_amd64.deb"; 16 - sha256 = config.teamviewer10.sha256 or "10risay1a5a85ijbjaz2vxqbfxygpxslvh0dvzz32k988hr9p1gk"; 17 - }; 18 - 19 - buildInputs = [ makeWrapper patchelf ]; 20 - 21 - unpackPhase = '' 22 - ar x $src 23 - tar xf data.tar.gz 24 - ''; 25 - 26 - installPhase = '' 27 - mkdir -p $out/share/teamviewer $out/bin 28 - cp -a opt/teamviewer/* $out/share/teamviewer 29 - rm -R $out/share/teamviewer/tv_bin/wine/{bin,lib,share} 30 - 31 - cat > $out/bin/teamviewer << EOF 32 - #!${stdenv.shell} 33 - export LD_LIBRARY_PATH=${toldpath}\''${LD_LIBRARY_PATH:+:\$LD_LIBRARY_PATH} 34 - export PATH=${topath}\''${PATH:+:\$PATH} 35 - $out/share/teamviewer/tv_bin/script/teamviewer "\$@" 36 - EOF 37 - chmod +x $out/bin/teamviewer 38 - 39 - ln -s $out/share/teamviewer/tv_bin/teamviewerd $out/bin/ 40 - rm -rf $out/share/teamviewer/logfiles $out/share/teamviewer/config 41 - ln -sv /var/tmp/teamviewer10/logs/ $out/share/teamviewer/logfiles 42 - ln -sv /var/tmp/teamviewer10/config/ $out/share/teamviewer/config 43 - ''; 44 - 45 - # the fixupPhase undoes the rpath patch 46 - postFixup = '' 47 - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/teamviewer/tv_bin/teamviewerd 48 - patchelf --set-rpath "${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${libX11}/lib:${libXext}/lib:${libXau}/lib:${libXdamage}/lib:${libXfixes}/lib" $out/share/teamviewer/tv_bin/teamviewerd 49 - ''; 50 - 51 - meta = { 52 - homepage = "http://www.teamviewer.com"; 53 - license = licenses.unfree; 54 - description = "Desktop sharing application, providing remote support and online meetings"; 55 - maintainers = with maintainers; [ jagajaga ]; 56 - }; 57 - }
···
-47
pkgs/applications/networking/remote/teamviewer/8.nix
··· 1 - { stdenv, fetchurl, libX11, libXtst, libXext, libXdamage, libXfixes, wineUnstable, makeWrapper, libXau 2 - , bash, patchelf, config }: 3 - 4 - let 5 - topath = "${wineUnstable}/bin"; 6 - 7 - toldpath = stdenv.lib.concatStringsSep ":" (map (x: "${x}/lib") 8 - [ stdenv.cc.cc libX11 libXtst libXext libXdamage libXfixes wineUnstable ]); 9 - in 10 - stdenv.mkDerivation { 11 - name = "teamviewer-8.0.17147"; 12 - src = fetchurl { 13 - url = config.teamviewer8.url or "http://download.teamviewer.com/download/version_8x/teamviewer_linux_x64.deb"; 14 - sha256 = config.teamviewer8.sha256 or "0s5m15f99rdmspzwx3gb9mqd6jx1bgfm0d6rfd01k9rf7gi7qk0k"; 15 - }; 16 - 17 - buildInputs = [ makeWrapper patchelf ]; 18 - 19 - unpackPhase = '' 20 - ar x $src 21 - tar xf data.tar.gz 22 - ''; 23 - 24 - installPhase = '' 25 - mkdir -p $out/share/teamviewer8 $out/bin 26 - cp -a opt/teamviewer8/* $out/share/teamviewer8 27 - rm -R $out/share/teamviewer8/tv_bin/wine/{bin,lib,share} 28 - 29 - cat > $out/bin/teamviewer << EOF 30 - #!${bash}/bin/sh 31 - export LD_LIBRARY_PATH=${toldpath}\''${LD_LIBRARY_PATH:+:\$LD_LIBRARY_PATH} 32 - export PATH=${topath}\''${PATH:+:\$PATH} 33 - $out/share/teamviewer8/tv_bin/script/teamviewer "\$@" 34 - EOF 35 - chmod +x $out/bin/teamviewer 36 - 37 - patchelf --set-rpath "${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${libX11}/lib:${libXext}/lib:${libXau}/lib:${libXdamage}/lib:${libXfixes}/lib" $out/share/teamviewer8/tv_bin/teamviewerd 38 - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/teamviewer8/tv_bin/teamviewerd 39 - ln -s $out/share/teamviewer8/tv_bin/teamviewerd $out/bin/ 40 - ''; 41 - 42 - meta = { 43 - homepage = "http://www.teamviewer.com"; 44 - license = stdenv.lib.licenses.unfree; 45 - description = "Desktop sharing application, providing remote support and online meetings"; 46 - }; 47 - }
···
-47
pkgs/applications/networking/remote/teamviewer/9.nix
··· 1 - { stdenv, fetchurl, libX11, libXtst, libXext, libXdamage, libXfixes, wineUnstable, makeWrapper, libXau 2 - , bash, patchelf, config }: 3 - 4 - let 5 - topath = "${wineUnstable}/bin"; 6 - 7 - toldpath = stdenv.lib.concatStringsSep ":" (map (x: "${x}/lib") 8 - [ stdenv.cc.cc libX11 libXtst libXext libXdamage libXfixes wineUnstable ]); 9 - in 10 - stdenv.mkDerivation { 11 - name = "teamviewer-9.0.32150"; 12 - src = fetchurl { 13 - url = config.teamviewer9.url or "http://download.teamviewer.com/download/version_9x/teamviewer_linux_x64.deb"; 14 - sha256 = config.teamviewer9.sha256 or "0wpwbx0xzn3vlzavszxhfvfcaj3pijlpwvlz5m7w19mb6cky3q13"; 15 - }; 16 - 17 - buildInputs = [ makeWrapper patchelf ]; 18 - 19 - unpackPhase = '' 20 - ar x $src 21 - tar xf data.tar.gz 22 - ''; 23 - 24 - installPhase = '' 25 - mkdir -p $out/share/teamviewer9 $out/bin 26 - cp -a opt/teamviewer9/* $out/share/teamviewer9 27 - rm -R $out/share/teamviewer9/tv_bin/wine/{bin,lib,share} 28 - 29 - cat > $out/bin/teamviewer << EOF 30 - #!${bash}/bin/sh 31 - export LD_LIBRARY_PATH=${toldpath}\''${LD_LIBRARY_PATH:+:\$LD_LIBRARY_PATH} 32 - export PATH=${topath}\''${PATH:+:\$PATH} 33 - $out/share/teamviewer9/tv_bin/script/teamviewer "\$@" 34 - EOF 35 - chmod +x $out/bin/teamviewer 36 - 37 - patchelf --set-rpath "${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${libX11}/lib:${libXext}/lib:${libXau}/lib:${libXdamage}/lib:${libXfixes}/lib" $out/share/teamviewer9/tv_bin/teamviewerd 38 - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/teamviewer9/tv_bin/teamviewerd 39 - ln -s $out/share/teamviewer9/tv_bin/teamviewerd $out/bin/ 40 - ''; 41 - 42 - meta = { 43 - homepage = "http://www.teamviewer.com"; 44 - license = stdenv.lib.licenses.unfree; 45 - description = "Desktop sharing application, providing remote support and online meetings"; 46 - }; 47 - }
···
+86
pkgs/applications/networking/remote/teamviewer/default.nix
···
··· 1 + { stdenv, lib, fetchurl, xdg_utils, pkgs, pkgsi686Linux }: 2 + 3 + let 4 + version = "11.0.52520"; 5 + 6 + ld32 = 7 + if stdenv.system == "i686-linux" then "${stdenv.cc}/nix-support/dynamic-linker" 8 + else if stdenv.system == "x86_64-linux" then "${stdenv.cc}/nix-support/dynamic-linker-m32" 9 + else abort "Unsupported architecture"; 10 + ld64 = "${stdenv.cc}/nix-support/dynamic-linker"; 11 + 12 + mkLdPath = ps: lib.makeLibraryPath (with ps; [ qt4 dbus alsaLib ]); 13 + 14 + deps = ps: (with ps; [ dbus alsaLib fontconfig freetype libpng libjpeg ]) ++ (with ps.xlibs; [ libX11 libXext libXdamage libXrandr libXrender libXfixes libSM libXtst ]); 15 + tvldpath32 = lib.makeLibraryPath (with pkgsi686Linux; [ qt4 "$out/share/teamviewer/tv_bin/wine" ] ++ deps pkgsi686Linux); 16 + tvldpath64 = lib.makeLibraryPath (deps pkgs); 17 + 18 + in 19 + stdenv.mkDerivation { 20 + name = "teamviewer-${version}"; 21 + src = fetchurl { 22 + # There is a 64-bit package, but it has no differences apart from Debian dependencies. 23 + # Generic versioned packages (teamviewer_${version}_i386.tar.xz) are not available for some reason. 24 + url = "http://download.teamviewer.com/download/teamviewer_${version}_i386.deb"; 25 + sha256 = "1430dimcv69plpj0ad0wsn10k15x9fwlk6fiq7yz51qbcr5l9wk6"; 26 + }; 27 + 28 + unpackPhase = '' 29 + ar x $src 30 + tar xf data.tar.* 31 + ''; 32 + 33 + installPhase = '' 34 + mkdir -p $out/share/teamviewer $out/bin $out/share/applications 35 + cp -a opt/teamviewer/* $out/share/teamviewer 36 + rm -R \ 37 + $out/share/teamviewer/logfiles \ 38 + $out/share/teamviewer/config \ 39 + $out/share/teamviewer/tv_bin/{xdg-utils,RTlib} \ 40 + $out/share/teamviewer/tv_bin/script/{teamviewer_setup,teamviewerd.sysv,teamviewerd.service,teamviewerd.*.conf,libdepend,tv-delayed-start.sh} 41 + 42 + ln -s $out/share/teamviewer/tv_bin/script/teamviewer $out/bin 43 + ln -s $out/share/teamviewer/tv_bin/teamviewerd $out/bin 44 + ln -s $out/share/teamviewer/tv_bin/desktop/teamviewer-teamviewer*.desktop $out/share/applications 45 + ln -s /var/lib/teamviewer $out/share/teamviewer/config 46 + ln -s /var/log/teamviewer $out/share/teamviewer/logfiles 47 + ln -s ${xdg_utils}/bin $out/share/teamviewer/tv_bin/xdg-utils 48 + 49 + pushd $out/share/teamviewer/tv_bin 50 + 51 + sed -i "s,TV_LD32_PATH=.*,TV_LD32_PATH=$(cat ${ld32})," script/tvw_config 52 + ${if stdenv.system == "x86_64-linux" then '' 53 + sed -i "s,TV_LD64_PATH=.*,TV_LD64_PATH=$(cat ${ld64})," script/tvw_config 54 + '' else '' 55 + sed -i ",TV_LD64_PATH=.*,d" script/tvw_config 56 + ''} 57 + 58 + sed -i "s,/opt/teamviewer,$out/share/teamviewer,g" desktop/teamviewer-*.desktop 59 + 60 + for i in teamviewer-config teamviewerd TeamViewer_Desktop TVGuiDelegate TVGuiSlave.32 wine/bin/*; do 61 + echo "patching $i" 62 + patchelf --set-interpreter $(cat ${ld32}) --set-rpath ${tvldpath32} $i || true 63 + done 64 + for i in resources/*.so wine/drive_c/TeamViewer/tvwine.dll.so wine/lib/*.so* wine/lib/wine/*.so; do 65 + echo "patching $i" 66 + patchelf --set-rpath ${tvldpath32} $i || true 67 + done 68 + ${if stdenv.system == "x86_64-linux" then '' 69 + patchelf --set-interpreter $(cat ${ld64}) --set-rpath ${tvldpath64} TVGuiSlave.64 70 + '' else '' 71 + rm TVGuiSlave.64 72 + ''} 73 + popd 74 + ''; 75 + 76 + dontPatchELF = true; 77 + dontStrip = true; 78 + 79 + meta = with stdenv.lib; { 80 + homepage = "http://www.teamviewer.com"; 81 + license = licenses.unfree; 82 + description = "Desktop sharing application, providing remote support and online meetings"; 83 + platforms = [ "i686-linux" "x86_64-linux" ]; 84 + maintainers = with maintainers; [ jagajaga ]; 85 + }; 86 + }
+23
pkgs/applications/version-management/gitlab-git-http-server/default.nix
···
··· 1 + { stdenv, fetchgit, git, go }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "0.2.14"; 5 + name = "gitlab-git-http-server-${version}"; 6 + 7 + srcs = fetchgit { 8 + url = "https://gitlab.com/gitlab-org/gitlab-git-http-server.git"; 9 + rev = "7c63f08f7051348e56b903fc0bbefcfed398fc1c"; 10 + sha256 = "557d63a90c61371598b971a06bc056993610b58c2ef5762d9ef145ec2fdada78"; 11 + }; 12 + 13 + buildInputs = [ git go ]; 14 + 15 + buildPhase = '' 16 + make PREFIX=$out 17 + ''; 18 + 19 + installPhase = '' 20 + mkdir -p $out/bin 21 + make install PREFIX=$out 22 + ''; 23 + }
+4 -7
pkgs/applications/version-management/gitlab-shell/default.nix
··· 6 7 srcs = fetchgit { 8 url = "https://gitlab.com/gitlab-org/gitlab-shell.git"; 9 - rev = "823aba63e444afa2f45477819770fec3cb5f0159"; 10 - sha256 = "0ppf547xs9pvmk49v4h043d0j93k5n4q0yx3b9ssrc4qf2smflgq"; 11 }; 12 13 buildInputs = [ ··· 31 substituteInPlace lib/gitlab_config.rb --replace\ 32 "File.join(ROOT_PATH, 'config.yml')"\ 33 "ENV['GITLAB_SHELL_CONFIG_PATH']" 34 - substituteInPlace lib/gitlab_net.rb --replace\ 35 - "File.read File.join(ROOT_PATH, '.gitlab_shell_secret')"\ 36 - "File.read ENV['GITLAB_SHELL_SECRET_PATH']" 37 38 # Note that we're running gitlab-shell from current-system/sw 39 # because otherwise updating gitlab-shell won't be reflected in 40 # the hardcoded path of the authorized-keys file: 41 substituteInPlace lib/gitlab_keys.rb --replace\ 42 - "auth_line = \"command=\\\"#{ROOT_PATH}/bin/gitlab-shell"\ 43 - "auth_line = \"command=\\\"GITLAB_SHELL_CONFIG_PATH=#{ENV['GITLAB_SHELL_CONFIG_PATH']} GITLAB_SHELL_SECRET_PATH=#{ENV['GITLAB_SHELL_SECRET_PATH']} /run/current-system/sw/bin/gitlab-shell" 44 45 # We're setting GITLAB_SHELL_CONFIG_PATH in the ssh authorized key 46 # environment because we need it in gitlab_configrb
··· 6 7 srcs = fetchgit { 8 url = "https://gitlab.com/gitlab-org/gitlab-shell.git"; 9 + rev = "ebbb9d80811c23d49a7d1b75d7a7d2b8ffe7437b"; 10 + sha256 = "fe69ab85d75a3871b4afa11ebc17f43008d135bbdbd6c581f6bebee2a4a3c75d"; 11 }; 12 13 buildInputs = [ ··· 31 substituteInPlace lib/gitlab_config.rb --replace\ 32 "File.join(ROOT_PATH, 'config.yml')"\ 33 "ENV['GITLAB_SHELL_CONFIG_PATH']" 34 35 # Note that we're running gitlab-shell from current-system/sw 36 # because otherwise updating gitlab-shell won't be reflected in 37 # the hardcoded path of the authorized-keys file: 38 substituteInPlace lib/gitlab_keys.rb --replace\ 39 + "\"#{ROOT_PATH}/bin/gitlab-shell"\ 40 + "\"GITLAB_SHELL_CONFIG_PATH=#{ENV['GITLAB_SHELL_CONFIG_PATH']} /run/current-system/sw/bin/gitlab-shell" 41 42 # We're setting GITLAB_SHELL_CONFIG_PATH in the ssh authorized key 43 # environment because we need it in gitlab_configrb
+185 -127
pkgs/applications/version-management/gitlab/Gemfile
··· 8 RUBY_PLATFORM.include?('linux') && require_as 9 end 10 11 - gem "rails", "~> 4.1.0" 12 13 - # Make links from text 14 - gem 'rails_autolink', '~> 1.1' 15 16 # Default values for AR models 17 gem "default_value_for", "~> 3.0.0" 18 19 # Supported DBs 20 - gem "mysql2", group: :mysql 21 - gem "pg", group: :postgres 22 23 - # Auth 24 - gem "devise", '3.2.4' 25 - gem "devise-async", '0.9.0' 26 - gem 'omniauth', "~> 1.1.3" 27 - gem 'omniauth-google-oauth2' 28 - gem 'omniauth-twitter' 29 - gem 'omniauth-github' 30 - gem 'omniauth-shibboleth' 31 32 # Extracting information from a git repository 33 # Provide access to Gitlab::Git library 34 - gem "gitlab_git", '7.0.0.rc10' 35 - 36 - # Ruby/Rack Git Smart-HTTP Server Handler 37 - gem 'gitlab-grack', '~> 2.0.0.pre', require: 'grack' 38 39 # LDAP Auth 40 - gem 'gitlab_omniauth-ldap', '1.1.0', require: "omniauth-ldap" 41 42 # Git Wiki 43 - gem 'gollum-lib', '~> 3.0.0' 44 45 # Language detection 46 - gem "gitlab-linguist", "~> 3.0.0", require: "linguist" 47 48 # API 49 gem "grape", "~> 0.6.1" 50 gem "grape-entity", "~> 0.4.2" 51 - gem 'rack-cors', require: 'rack/cors' 52 53 # Format dates and times 54 # based on human-friendly examples 55 - gem "stamp" 56 57 # Enumeration fields 58 - gem 'enumerize' 59 60 # Pagination 61 gem "kaminari", "~> 0.15.1" 62 63 # HAML 64 - gem "haml-rails" 65 66 # Files attachments 67 - gem "carrierwave" 68 69 # Drag and Drop UI 70 - gem 'dropzonejs-rails' 71 72 # for aws storage 73 - gem "fog", "~> 1.14" 74 - gem "unf" 75 76 # Authorization 77 - gem "six" 78 79 # Seed data 80 - gem "seed-fu" 81 82 - # Markup pipeline for GitLab 83 - gem 'html-pipeline-gitlab', '~> 0.1.0' 84 - 85 - # Markdown to HTML 86 - gem "github-markup" 87 - 88 - # Required markup gems by github-markdown 89 - gem 'redcarpet', '~> 3.1.2' 90 - gem 'RedCloth' 91 - gem 'rdoc', '~>3.6' 92 - gem 'org-ruby', '= 0.9.9' 93 - gem 'creole', '~>0.3.6' 94 - gem 'wikicloth', '=0.8.1' 95 - gem 'asciidoctor', '= 0.1.4' 96 97 # Diffs 98 gem 'diffy', '~> 3.0.3' 99 100 # Application server 101 group :unicorn do 102 - gem "unicorn", '~> 4.6.3' 103 - gem 'unicorn-worker-killer' 104 end 105 106 # State machine 107 - gem "state_machine" 108 109 # Issue tags 110 - gem "acts-as-taggable-on" 111 112 # Background jobs 113 - gem 'slim' 114 - gem 'sinatra', require: nil 115 - gem 'sidekiq', '2.17.0' 116 117 # HTTP requests 118 - gem "httparty" 119 120 # Colored output to console 121 - gem "colored" 122 123 # GitLab settings 124 - gem 'settingslogic' 125 126 # Misc 127 - gem "foreman" 128 - gem 'version_sorter' 129 130 # Cache 131 - gem "redis-rails" 132 133 # Campfire integration 134 gem 'tinder', '~> 1.9.2' 135 136 # HipChat integration 137 - gem "hipchat", "~> 0.14.0" 138 139 # Flowdock integration 140 - gem "gitlab-flowdock-git-hook", "~> 0.4.2" 141 142 # Gemnasium integration 143 gem "gemnasium-gitlab-service", "~> 0.2" 144 145 # Slack integration 146 - gem "slack-notifier", "~> 0.3.2" 147 148 # d3 149 - gem "d3_rails", "~> 3.1.4" 150 151 # underscore-rails 152 gem "underscore-rails", "~> 1.4.4" ··· 155 gem "sanitize", '~> 2.0' 156 157 # Protect against bruteforcing 158 - gem "rack-attack" 159 160 # Ace editor 161 - gem 'ace-rails-ap' 162 163 # Keyboard shortcuts 164 - gem 'mousetrap-rails' 165 166 - # Semantic UI Sass for Sidebar 167 - gem 'semantic-ui-sass', '~> 0.16.1.0' 168 169 - gem "sass-rails", '~> 4.0.2' 170 - gem "coffee-rails" 171 - gem "uglifier" 172 - gem "therubyracer" 173 - gem 'turbolinks' 174 - gem 'jquery-turbolinks' 175 176 - gem 'select2-rails' 177 - gem 'jquery-atwho-rails', "~> 0.3.3" 178 - gem "jquery-rails" 179 - gem "jquery-ui-rails" 180 - gem "jquery-scrollto-rails" 181 - gem "raphael-rails", "~> 2.1.2" 182 - gem 'bootstrap-sass', '~> 3.0' 183 - gem "font-awesome-rails", '~> 4.2' 184 - gem "gitlab_emoji", "~> 0.0.1.1" 185 - gem "gon", '~> 5.0.0' 186 - gem 'nprogress-rails' 187 - gem 'request_store' 188 - gem "virtus" 189 190 group :development do 191 - gem "annotate", "~> 2.6.0.beta2" 192 - gem "letter_opener" 193 - gem 'quiet_assets', '~> 1.0.1' 194 - gem 'rack-mini-profiler', require: false 195 196 # Better errors handler 197 - gem 'better_errors' 198 - gem 'binding_of_caller' 199 - 200 - gem 'rails_best_practices' 201 202 # Docs generator 203 - gem "sdoc" 204 205 # thin instead webrick 206 - gem 'thin' 207 end 208 209 group :development, :test do 210 - gem 'coveralls', require: false 211 - # gem 'rails-dev-tweaks' 212 - gem 'spinach-rails' 213 - gem "rspec-rails" 214 - gem "capybara", '~> 2.2.1' 215 - gem "pry" 216 - gem "awesome_print" 217 - gem "database_cleaner" 218 - gem "launchy" 219 - gem 'factory_girl_rails' 220 221 # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) 222 - gem 'minitest', '~> 5.3.0' 223 224 # Generate Fake data 225 - gem "ffaker" 226 227 - # Guard 228 - gem 'guard-rspec' 229 - gem 'guard-spinach' 230 231 - # Notification 232 - gem 'rb-fsevent', require: darwin_only('rb-fsevent') 233 - gem 'growl', require: darwin_only('growl') 234 - gem 'rb-inotify', require: linux_only('rb-inotify') 235 236 - # PhantomJS driver for Capybara 237 - gem 'poltergeist', '~> 1.5.1' 238 239 - gem 'jasmine', '2.0.2' 240 - 241 - gem "spring", '1.1.3' 242 - gem "spring-commands-rspec", '1.0.1' 243 - gem "spring-commands-spinach", '1.0.0' 244 end 245 246 group :test do 247 - gem "simplecov", require: false 248 - gem "shoulda-matchers", "~> 2.1.0" 249 - gem 'email_spec' 250 - gem "webmock" 251 - gem 'test_after_commit' 252 end 253 254 group :production do 255 gem "gitlab_meta", '7.0' 256 end 257 258 - gem "newrelic_rpm"
··· 8 RUBY_PLATFORM.include?('linux') && require_as 9 end 10 11 + gem 'rails', '4.1.12' 12 13 + # Specify a sprockets version due to security issue 14 + # See https://groups.google.com/forum/#!topic/rubyonrails-security/doAVp0YaTqY 15 + gem 'sprockets', '~> 2.12.3' 16 17 # Default values for AR models 18 gem "default_value_for", "~> 3.0.0" 19 20 # Supported DBs 21 + gem "mysql2", '~> 0.3.16', group: :mysql 22 + gem "pg", '~> 0.18.2', group: :postgres 23 + 24 + # Authentication libraries 25 + gem "devise", '~> 3.5.2' 26 + gem "devise-async", '~> 0.9.0' 27 + gem 'omniauth', "~> 1.2.2" 28 + gem 'omniauth-google-oauth2', '~> 0.2.5' 29 + gem 'omniauth-twitter', '~> 1.0.1' 30 + gem 'omniauth-github', '~> 1.1.1' 31 + gem 'omniauth-shibboleth', '~> 1.1.1' 32 + gem 'omniauth-kerberos', '~> 0.2.0', group: :kerberos 33 + gem 'omniauth-gitlab', '~> 1.0.0' 34 + gem 'omniauth-bitbucket', '~> 0.0.2' 35 + gem 'omniauth-saml', '~> 1.4.0' 36 + gem 'doorkeeper', '~> 2.1.3' 37 + gem 'omniauth_crowd' 38 + gem "rack-oauth2", "~> 1.0.5" 39 40 + # Two-factor authentication 41 + gem 'devise-two-factor', '~> 2.0.0' 42 + gem 'rqrcode-rails3', '~> 0.1.7' 43 + gem 'attr_encrypted', '~> 1.3.4' 44 + 45 + # Browser detection 46 + gem "browser", '~> 1.0.0' 47 48 # Extracting information from a git repository 49 # Provide access to Gitlab::Git library 50 + gem "gitlab_git", '~> 7.2.15' 51 52 # LDAP Auth 53 + # GitLab fork with several improvements to original library. For full list of changes 54 + # see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master 55 + gem 'gitlab_omniauth-ldap', '~> 1.2.1', require: "omniauth-ldap" 56 57 # Git Wiki 58 + gem 'gollum-lib', '~> 4.0.2' 59 60 # Language detection 61 + # GitLab fork of linguist does not require pygments/python dependency. 62 + # New version of original gem also dropped pygments support but it has strict 63 + # dependency to unstable rugged version. We have internal issue for replacing 64 + # fork with original gem when we meet on same rugged version - https://dev.gitlab.org/gitlab/gitlabhq/issues/2052. 65 + gem "gitlab-linguist", "~> 3.0.1", require: "linguist" 66 67 # API 68 gem "grape", "~> 0.6.1" 69 gem "grape-entity", "~> 0.4.2" 70 + gem 'rack-cors', '~> 0.2.9', require: 'rack/cors' 71 72 # Format dates and times 73 # based on human-friendly examples 74 + gem "stamp", '~> 0.5.0' 75 76 # Enumeration fields 77 + gem 'enumerize', '~> 0.7.0' 78 79 # Pagination 80 gem "kaminari", "~> 0.15.1" 81 82 # HAML 83 + gem "haml-rails", '~> 0.5.3' 84 85 # Files attachments 86 + gem "carrierwave", '~> 0.9.0' 87 88 # Drag and Drop UI 89 + gem 'dropzonejs-rails', '~> 0.7.1' 90 91 # for aws storage 92 + gem "fog", "~> 1.25.0" 93 + gem "unf", '~> 0.1.4' 94 95 # Authorization 96 + gem "six", '~> 0.2.0' 97 98 # Seed data 99 + gem "seed-fu", '~> 2.3.5' 100 101 + # Markdown and HTML processing 102 + gem 'html-pipeline', '~> 1.11.0' 103 + gem 'task_list', '~> 1.0.2', require: 'task_list/railtie' 104 + gem 'github-markup', '~> 1.3.1' 105 + gem 'redcarpet', '~> 3.3.2' 106 + gem 'RedCloth', '~> 4.2.9' 107 + gem 'rdoc', '~>3.6' 108 + gem 'org-ruby', '~> 0.9.12' 109 + gem 'creole', '~>0.3.6' 110 + gem 'wikicloth', '0.8.1' 111 + gem 'asciidoctor', '~> 1.5.2' 112 113 # Diffs 114 gem 'diffy', '~> 3.0.3' 115 116 # Application server 117 group :unicorn do 118 + gem "unicorn", '~> 4.8.2' 119 + gem 'unicorn-worker-killer', '~> 0.4.2' 120 end 121 122 # State machine 123 + gem "state_machine", '~> 1.2.0' 124 + # Run events after state machine commits 125 + gem 'after_commit_queue' 126 127 # Issue tags 128 + gem 'acts-as-taggable-on', '~> 3.4' 129 130 # Background jobs 131 + gem 'slim', '~> 2.0.2' 132 + gem 'sinatra', '~> 1.4.4', require: nil 133 + gem 'sidekiq', '3.3.0' 134 + gem 'sidetiq', '~> 0.6.3' 135 136 # HTTP requests 137 + gem "httparty", '~> 0.13.3' 138 139 # Colored output to console 140 + gem "colored", '~> 1.2' 141 + gem "colorize", '~> 0.5.8' 142 143 # GitLab settings 144 + gem 'settingslogic', '~> 2.0.9' 145 146 # Misc 147 + 148 + gem 'version_sorter', '~> 2.0.0' 149 150 # Cache 151 + gem "redis-rails", '~> 4.0.0' 152 153 # Campfire integration 154 gem 'tinder', '~> 1.9.2' 155 156 # HipChat integration 157 + gem 'hipchat', '~> 1.5.0' 158 159 # Flowdock integration 160 + gem "gitlab-flowdock-git-hook", "~> 1.0.1" 161 162 # Gemnasium integration 163 gem "gemnasium-gitlab-service", "~> 0.2" 164 165 # Slack integration 166 + gem "slack-notifier", "~> 1.0.0" 167 + 168 + # Asana integration 169 + gem 'asana', '~> 0.0.6' 170 + 171 + # FogBugz integration 172 + gem 'ruby-fogbugz', '~> 0.2.1' 173 174 # d3 175 + gem 'd3_rails', '~> 3.5.5' 176 + 177 + #cal-heatmap 178 + gem "cal-heatmap-rails", "~> 0.0.1" 179 180 # underscore-rails 181 gem "underscore-rails", "~> 1.4.4" ··· 184 gem "sanitize", '~> 2.0' 185 186 # Protect against bruteforcing 187 + gem "rack-attack", '~> 4.3.0' 188 189 # Ace editor 190 + gem 'ace-rails-ap', '~> 2.0.1' 191 192 # Keyboard shortcuts 193 + gem 'mousetrap-rails', '~> 1.4.6' 194 195 + # Detect and convert string character encoding 196 + gem 'charlock_holmes', '~> 0.6.9.4' 197 198 + gem "sass-rails", '~> 4.0.5' 199 + gem "coffee-rails", '~> 4.1.0' 200 + gem "uglifier", '~> 2.3.2' 201 + gem 'turbolinks', '~> 2.5.0' 202 + gem 'jquery-turbolinks', '~> 2.0.1' 203 204 + gem 'addressable', '~> 2.3.8' 205 + gem 'bootstrap-sass', '~> 3.0' 206 + gem 'font-awesome-rails', '~> 4.2' 207 + gem 'gitlab_emoji', '~> 0.1' 208 + gem 'gon', '~> 5.0.0' 209 + gem 'jquery-atwho-rails', '~> 1.0.0' 210 + gem 'jquery-rails', '~> 3.1.3' 211 + gem 'jquery-scrollto-rails', '~> 1.4.3' 212 + gem 'jquery-ui-rails', '~> 4.2.1' 213 + gem 'nprogress-rails', '~> 0.1.2.3' 214 + gem 'raphael-rails', '~> 2.1.2' 215 + gem 'request_store', '~> 1.2.0' 216 + gem 'select2-rails', '~> 3.5.9' 217 + gem 'virtus', '~> 1.0.1' 218 219 group :development do 220 + gem "foreman" 221 + gem 'brakeman', '3.0.1', require: false 222 + 223 + gem "annotate", "~> 2.6.0" 224 + gem "letter_opener", '~> 1.1.2' 225 + gem 'quiet_assets', '~> 1.0.2' 226 + gem 'rack-mini-profiler', '~> 0.9.0', require: false 227 + gem 'rerun', '~> 0.10.0' 228 229 # Better errors handler 230 + gem 'better_errors', '~> 1.0.1' 231 + gem 'binding_of_caller', '~> 0.7.2' 232 233 # Docs generator 234 + gem "sdoc", '~> 0.3.20' 235 236 # thin instead webrick 237 + gem 'thin', '~> 1.6.1' 238 end 239 240 group :development, :test do 241 + gem 'byebug', platform: :mri 242 + gem 'pry-rails' 243 + 244 + gem 'awesome_print', '~> 1.2.0' 245 + gem 'fuubar', '~> 2.0.0' 246 + 247 + gem 'database_cleaner', '~> 1.4.0' 248 + gem 'factory_girl_rails', '~> 4.3.0' 249 + gem 'rspec-rails', '~> 3.3.0' 250 + gem 'spinach-rails', '~> 0.2.1' 251 252 # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) 253 + gem 'minitest', '~> 5.7.0' 254 255 # Generate Fake data 256 + gem 'ffaker', '~> 2.0.0' 257 258 + gem 'capybara', '~> 2.4.0' 259 + gem 'capybara-screenshot', '~> 1.0.0' 260 + gem 'poltergeist', '~> 1.6.0' 261 262 + gem 'teaspoon', '~> 1.0.0' 263 + gem 'teaspoon-jasmine', '~> 2.2.0' 264 265 + gem 'spring', '~> 1.3.6' 266 + gem 'spring-commands-rspec', '~> 1.0.4' 267 + gem 'spring-commands-spinach', '~> 1.0.0' 268 + gem 'spring-commands-teaspoon', '~> 0.0.2' 269 270 + gem 'rubocop', '~> 0.28.0', require: false 271 + gem 'coveralls', '~> 0.8.2', require: false 272 + gem 'simplecov', '~> 0.10.0', require: false 273 end 274 275 group :test do 276 + gem 'shoulda-matchers', '~> 2.8.0', require: false 277 + gem 'email_spec', '~> 1.6.0' 278 + gem 'webmock', '~> 1.21.0' 279 + gem 'test_after_commit', '~> 0.2.2' 280 + gem 'sham_rack' 281 end 282 283 group :production do 284 gem "gitlab_meta", '7.0' 285 end 286 287 + gem "newrelic_rpm", '~> 3.9.4.245' 288 + gem 'newrelic-grape' 289 + 290 + gem 'octokit', '~> 3.7.0' 291 + 292 + gem "mail_room", "~> 0.5.2" 293 + 294 + gem 'email_reply_parser', '~> 0.5.8' 295 + 296 + ## CI 297 + gem 'activerecord-deprecated_finders', '~> 1.0.3' 298 + gem 'activerecord-session_store', '~> 0.1.0' 299 + gem "nested_form", '~> 0.3.2' 300 + 301 + # Scheduled 302 + gem 'whenever', '~> 0.8.4', require: false 303 + 304 + # OAuth 305 + gem 'oauth2', '~> 1.0.0' 306 + 307 + # Soft deletion 308 + gem "paranoia", "~> 2.0" 309 + 310 + group :development, :test do 311 + gem 'guard-rspec', '~> 4.2.0' 312 + 313 + gem 'rb-fsevent', require: darwin_only('rb-fsevent') 314 + gem 'growl', require: darwin_only('growl') 315 + gem 'rb-inotify', require: linux_only('rb-inotify') 316 + end
+634 -407
pkgs/applications/version-management/gitlab/Gemfile.lock
··· 1 GEM 2 remote: https://rubygems.org/ 3 specs: 4 RedCloth (4.2.9) 5 ace-rails-ap (2.0.1) 6 - actionmailer (4.1.1) 7 - actionpack (= 4.1.1) 8 - actionview (= 4.1.1) 9 - mail (~> 2.5.4) 10 - actionpack (4.1.1) 11 - actionview (= 4.1.1) 12 - activesupport (= 4.1.1) 13 rack (~> 1.5.2) 14 rack-test (~> 0.6.2) 15 - actionview (4.1.1) 16 - activesupport (= 4.1.1) 17 builder (~> 3.1) 18 erubis (~> 2.7.0) 19 - activemodel (4.1.1) 20 - activesupport (= 4.1.1) 21 builder (~> 3.1) 22 - activerecord (4.1.1) 23 - activemodel (= 4.1.1) 24 - activesupport (= 4.1.1) 25 arel (~> 5.0.0) 26 - activesupport (4.1.1) 27 i18n (~> 0.6, >= 0.6.9) 28 json (~> 1.7, >= 1.7.7) 29 minitest (~> 5.1) 30 thread_safe (~> 0.1) 31 tzinfo (~> 1.1) 32 - acts-as-taggable-on (2.4.1) 33 - rails (>= 3, < 5) 34 - addressable (2.3.5) 35 - annotate (2.6.0) 36 - activerecord (>= 2.3.0) 37 - rake (>= 0.8.7) 38 arel (5.0.1.20140414130214) 39 - asciidoctor (0.1.4) 40 awesome_print (1.2.0) 41 - axiom-types (0.0.5) 42 - descendants_tracker (~> 0.0.1) 43 - ice_nine (~> 0.9) 44 - bcrypt (3.1.7) 45 better_errors (1.0.1) 46 coderay (>= 1.0.0) 47 erubis (>= 2.6.6) 48 binding_of_caller (0.7.2) 49 debug_inspector (>= 0.0.1) 50 - bootstrap-sass (3.0.3.0) 51 - sass (~> 3.2) 52 builder (3.2.2) 53 - capybara (2.2.1) 54 mime-types (>= 1.16) 55 nokogiri (>= 1.3.3) 56 rack (>= 1.0.0) 57 rack-test (>= 0.5.4) 58 xpath (~> 2.0) 59 carrierwave (0.9.0) 60 activemodel (>= 3.2.0) 61 activesupport (>= 3.2.0) 62 json (>= 1.7) 63 - celluloid (0.15.2) 64 - timers (~> 1.1.0) 65 charlock_holmes (0.6.9.4) 66 cliver (0.3.2) 67 - code_analyzer (0.4.3) 68 - sexp_processor 69 coderay (1.1.0) 70 coercible (1.0.0) 71 descendants_tracker (~> 0.0.1) 72 - coffee-rails (4.0.1) 73 coffee-script (>= 2.2.0) 74 railties (>= 4.0.0, < 5.0) 75 - coffee-script (2.2.0) 76 coffee-script-source 77 execjs 78 - coffee-script-source (1.6.3) 79 colored (1.2) 80 colorize (0.5.8) 81 - connection_pool (1.2.0) 82 - coveralls (0.7.0) 83 - multi_json (~> 1.3) 84 - rest-client 85 - simplecov (>= 0.7) 86 - term-ansicolor 87 - thor 88 - crack (0.4.1) 89 - safe_yaml (~> 0.9.0) 90 creole (0.3.8) 91 - d3_rails (3.1.10) 92 railties (>= 3.1.0) 93 - daemons (1.1.9) 94 - database_cleaner (1.3.0) 95 debug_inspector (0.0.2) 96 - default_value_for (3.0.0) 97 activerecord (>= 3.2.0, < 5.0) 98 - descendants_tracker (0.0.3) 99 - devise (3.2.4) 100 bcrypt (~> 3.0) 101 orm_adapter (~> 0.1) 102 railties (>= 3.2.6, < 5) 103 thread_safe (~> 0.1) 104 warden (~> 1.2.3) 105 devise-async (0.9.0) 106 devise (~> 3.2) 107 diff-lcs (1.2.5) 108 - diffy (3.0.3) 109 docile (1.1.5) 110 - dotenv (0.9.0) 111 - dropzonejs-rails (0.4.14) 112 rails (> 3.1) 113 - email_spec (1.5.0) 114 launchy (~> 2.1) 115 mail (~> 2.2) 116 - emoji (1.0.1) 117 - json 118 enumerize (0.7.0) 119 activesupport (>= 3.2) 120 - equalizer (0.0.8) 121 erubis (2.7.0) 122 escape_utils (0.2.4) 123 - eventmachine (1.0.3) 124 - excon (0.32.1) 125 - execjs (2.0.2) 126 expression_parser (0.9.0) 127 factory_girl (4.3.0) 128 activesupport (>= 3.0.0) 129 factory_girl_rails (4.3.0) 130 factory_girl (~> 4.3.0) 131 railties (>= 3.0.0) 132 - faraday (0.8.9) 133 multipart-post (~> 1.2.0) 134 - faraday_middleware (0.9.0) 135 - faraday (>= 0.7.4, < 0.9) 136 - ffaker (1.22.1) 137 - ffi (1.9.3) 138 - fog (1.21.0) 139 - fog-brightbox 140 - fog-core (~> 1.21, >= 1.21.1) 141 fog-json 142 nokogiri (~> 1.5, >= 1.5.11) 143 - fog-brightbox (0.0.1) 144 - fog-core 145 fog-json 146 - fog-core (1.21.1) 147 builder 148 - excon (~> 0.32) 149 - formatador (~> 0.2.0) 150 mime-types 151 net-scp (~> 1.1) 152 net-ssh (>= 2.1.3) 153 - fog-json (1.0.0) 154 - multi_json (~> 1.0) 155 - font-awesome-rails (4.2.0.0) 156 railties (>= 3.2, < 5.0) 157 - foreman (0.63.0) 158 - dotenv (>= 0.7) 159 - thor (>= 0.13.6) 160 - formatador (0.2.4) 161 - gemnasium-gitlab-service (0.2.2) 162 - rugged (~> 0.19) 163 - gherkin-ruby (0.3.1) 164 - racc 165 - github-markup (1.1.0) 166 - gitlab-flowdock-git-hook (0.4.2.2) 167 gitlab-grit (>= 2.4.1) 168 multi_json 169 - gitlab-grack (2.0.0.pre) 170 - rack (~> 1.5.1) 171 - gitlab-grit (2.6.12) 172 charlock_holmes (~> 0.6) 173 diff-lcs (~> 1.1) 174 mime-types (~> 1.15) 175 posix-spawn (~> 0.3) 176 - gitlab-linguist (3.0.0) 177 charlock_holmes (~> 0.6.6) 178 escape_utils (~> 0.2.4) 179 mime-types (~> 1.19) 180 - gitlab_emoji (0.0.1.1) 181 - emoji (~> 1.0.1) 182 - gitlab_git (7.0.0.rc10) 183 activesupport (~> 4.0) 184 charlock_holmes (~> 0.6) 185 gitlab-linguist (~> 3.0) 186 - rugged (~> 0.21.0) 187 gitlab_meta (7.0) 188 - gitlab_omniauth-ldap (1.1.0) 189 - net-ldap (~> 0.7.0) 190 omniauth (~> 1.0) 191 pyu-ruby-sasl (~> 0.0.3.1) 192 - rubyntlm (~> 0.1.1) 193 - gollum-lib (3.0.0) 194 - github-markup (~> 1.1.0) 195 - gitlab-grit (~> 2.6.5) 196 - nokogiri (~> 1.6.1) 197 - rouge (~> 1.3.3) 198 sanitize (~> 2.1.0) 199 stringex (~> 2.5.1) 200 - gon (5.0.1) 201 actionpack (>= 2.3.0) 202 json 203 grape (0.6.1) ··· 210 rack-accept 211 rack-mount 212 virtus (>= 1.0.0) 213 - grape-entity (0.4.2) 214 activesupport 215 multi_json (>= 1.3.2) 216 growl (1.0.3) 217 - guard (2.2.4) 218 formatador (>= 0.2.4) 219 - listen (~> 2.1) 220 lumberjack (~> 1.0) 221 pry (>= 0.9.12) 222 thor (>= 0.18.1) 223 - guard-rspec (4.2.0) 224 - guard (>= 2.1.1) 225 rspec (>= 2.14, < 4.0) 226 - guard-spinach (0.0.2) 227 - guard (>= 1.1) 228 - spinach 229 - haml (4.0.5) 230 tilt 231 haml-rails (0.5.3) 232 actionpack (>= 4.0.1) ··· 234 haml (>= 3.1, < 5.0) 235 railties (>= 4.0.1) 236 hashie (2.1.2) 237 hike (1.2.3) 238 - hipchat (0.14.0) 239 httparty 240 - httparty 241 html-pipeline (1.11.0) 242 activesupport (>= 2) 243 nokogiri (~> 1.4) 244 - html-pipeline-gitlab (0.1.5) 245 - actionpack (~> 4) 246 - gitlab_emoji (~> 0.0.1) 247 - html-pipeline (~> 1.11.0) 248 - sanitize (~> 2.1) 249 http_parser.rb (0.5.3) 250 - httparty (0.13.0) 251 json (~> 1.8) 252 multi_xml (>= 0.5.2) 253 - httpauth (0.2.1) 254 - i18n (0.6.11) 255 - ice_nine (0.10.0) 256 - jasmine (2.0.2) 257 - jasmine-core (~> 2.0.0) 258 - phantomjs 259 - rack (>= 1.2.1) 260 - rake 261 - jasmine-core (2.0.0) 262 - jquery-atwho-rails (0.3.3) 263 - jquery-rails (3.1.0) 264 railties (>= 3.0, < 5.0) 265 thor (>= 0.14, < 2.0) 266 jquery-scrollto-rails (1.4.3) 267 railties (> 3.1, < 5.0) 268 - jquery-turbolinks (2.0.1) 269 railties (>= 3.1.0) 270 turbolinks 271 jquery-ui-rails (4.2.1) 272 railties (>= 3.2.16) 273 - json (1.8.1) 274 - jwt (0.1.13) 275 - multi_json (>= 1.5) 276 kaminari (0.15.1) 277 actionpack (>= 3.0.0) 278 activesupport (>= 3.0.0) 279 - kgio (2.8.1) 280 - launchy (2.4.2) 281 addressable (~> 2.3) 282 letter_opener (1.1.2) 283 launchy (~> 2.2) 284 - libv8 (3.16.14.11) 285 - listen (2.3.1) 286 - celluloid (>= 0.15.2) 287 rb-fsevent (>= 0.9.3) 288 rb-inotify (>= 0.9) 289 - lumberjack (1.0.4) 290 - mail (2.5.4) 291 - mime-types (~> 1.16) 292 - treetop (~> 1.4.8) 293 method_source (0.8.2) 294 mime-types (1.25.1) 295 - mini_portile (0.6.0) 296 - minitest (5.3.5) 297 mousetrap-rails (1.4.6) 298 - multi_json (1.10.1) 299 multi_xml (0.5.5) 300 multipart-post (1.2.0) 301 - mysql2 (0.3.16) 302 - net-ldap (0.7.0) 303 - net-scp (1.1.2) 304 net-ssh (>= 2.6.5) 305 - net-ssh (2.8.0) 306 newrelic_rpm (3.9.4.245) 307 - nokogiri (1.6.2.1) 308 - mini_portile (= 0.6.0) 309 nprogress-rails (0.1.2.3) 310 oauth (0.4.7) 311 - oauth2 (0.8.1) 312 - faraday (~> 0.8) 313 - httpauth (~> 0.1) 314 - jwt (~> 0.1.4) 315 - multi_json (~> 1.0) 316 rack (~> 1.2) 317 - omniauth (1.1.4) 318 - hashie (>= 1.2, < 3) 319 - rack 320 - omniauth-github (1.1.1) 321 omniauth (~> 1.0) 322 omniauth-oauth2 (~> 1.1) 323 - omniauth-google-oauth2 (0.2.5) 324 omniauth (> 1.0) 325 omniauth-oauth2 (~> 1.1) 326 - omniauth-oauth (1.0.1) 327 - oauth 328 omniauth (~> 1.0) 329 - omniauth-oauth2 (1.1.1) 330 - oauth2 (~> 0.8.0) 331 omniauth (~> 1.0) 332 - omniauth-shibboleth (1.1.1) 333 omniauth (>= 1.0.0) 334 omniauth-twitter (1.0.1) 335 multi_json (~> 1.3) 336 omniauth-oauth (~> 1.0) 337 - org-ruby (0.9.9) 338 rubypants (~> 0.2) 339 orm_adapter (0.5.0) 340 - pg (0.15.1) 341 - phantomjs (1.9.2.0) 342 - poltergeist (1.5.1) 343 capybara (~> 2.1) 344 cliver (~> 0.3.1) 345 multi_json (~> 1.0) 346 websocket-driver (>= 0.2.0) 347 - polyglot (0.3.4) 348 - posix-spawn (0.3.9) 349 - pry (0.9.12.4) 350 - coderay (~> 1.0) 351 - method_source (~> 0.8) 352 slop (~> 3.4) 353 pyu-ruby-sasl (0.0.3.3) 354 - quiet_assets (1.0.2) 355 railties (>= 3.1, < 5.0) 356 - racc (1.4.10) 357 - rack (1.5.2) 358 rack-accept (0.4.5) 359 rack (>= 0.4) 360 - rack-attack (2.3.0) 361 rack 362 rack-cors (0.2.9) 363 - rack-mini-profiler (0.9.0) 364 rack (>= 1.1.3) 365 rack-mount (0.8.3) 366 rack (>= 1.0.0) 367 - rack-protection (1.5.1) 368 rack 369 - rack-test (0.6.2) 370 rack (>= 1.0) 371 - rails (4.1.1) 372 - actionmailer (= 4.1.1) 373 - actionpack (= 4.1.1) 374 - actionview (= 4.1.1) 375 - activemodel (= 4.1.1) 376 - activerecord (= 4.1.1) 377 - activesupport (= 4.1.1) 378 bundler (>= 1.3.0, < 2.0) 379 - railties (= 4.1.1) 380 sprockets-rails (~> 2.0) 381 - rails_autolink (1.1.6) 382 - rails (> 3.1) 383 - rails_best_practices (1.14.4) 384 - activesupport 385 - awesome_print 386 - code_analyzer (>= 0.4.3) 387 - colored 388 - erubis 389 - i18n 390 - require_all 391 - ruby-progressbar 392 - railties (4.1.1) 393 - actionpack (= 4.1.1) 394 - activesupport (= 4.1.1) 395 rake (>= 0.8.7) 396 thor (>= 0.18.1, < 2.0) 397 - raindrops (0.12.0) 398 - rake (10.3.2) 399 raphael-rails (2.1.2) 400 - rb-fsevent (0.9.3) 401 - rb-inotify (0.9.2) 402 ffi (>= 0.5.0) 403 rdoc (3.12.2) 404 json (~> 1.4) 405 - redcarpet (3.1.2) 406 - redis (3.0.6) 407 redis-actionpack (4.0.0) 408 actionpack (~> 4) 409 redis-rack (~> 1.5.0) 410 redis-store (~> 1.1.0) 411 - redis-activesupport (4.0.0) 412 activesupport (~> 4) 413 redis-store (~> 1.1.0) 414 - redis-namespace (1.4.1) 415 - redis (~> 3.0.4) 416 redis-rack (1.5.0) 417 rack (~> 1.5) 418 redis-store (~> 1.1.0) ··· 420 redis-actionpack (~> 4) 421 redis-activesupport (~> 4) 422 redis-store (~> 1.1.0) 423 - redis-store (1.1.4) 424 redis (>= 2.2) 425 - ref (1.0.5) 426 - request_store (1.0.5) 427 - require_all (1.3.2) 428 - rest-client (1.6.7) 429 - mime-types (>= 1.16) 430 rinku (1.7.3) 431 - rouge (1.3.3) 432 - rspec (2.14.1) 433 - rspec-core (~> 2.14.0) 434 - rspec-expectations (~> 2.14.0) 435 - rspec-mocks (~> 2.14.0) 436 - rspec-core (2.14.7) 437 - rspec-expectations (2.14.4) 438 - diff-lcs (>= 1.1.3, < 2.0) 439 - rspec-mocks (2.14.4) 440 - rspec-rails (2.14.0) 441 - actionpack (>= 3.0) 442 - activesupport (>= 3.0) 443 - railties (>= 3.0) 444 - rspec-core (~> 2.14.0) 445 - rspec-expectations (~> 2.14.0) 446 - rspec-mocks (~> 2.14.0) 447 - ruby-progressbar (1.2.0) 448 - rubyntlm (0.1.1) 449 rubypants (0.2.0) 450 - rugged (0.21.0) 451 - safe_yaml (0.9.7) 452 sanitize (2.1.0) 453 nokogiri (>= 1.4.4) 454 sass (3.2.19) 455 - sass-rails (4.0.3) 456 railties (>= 4.0.0, < 5.0) 457 - sass (~> 3.2.0) 458 - sprockets (~> 2.8, <= 2.11.0) 459 sprockets-rails (~> 2.0) 460 sdoc (0.3.20) 461 json (>= 1.1.3) 462 rdoc (~> 3.10) 463 - seed-fu (2.3.1) 464 - activerecord (>= 3.1, < 4.2) 465 - activesupport (>= 3.1, < 4.2) 466 - select2-rails (3.5.2) 467 thor (~> 0.14) 468 - semantic-ui-sass (0.16.1.0) 469 - sass (~> 3.2) 470 settingslogic (2.0.9) 471 - sexp_processor (4.4.0) 472 - shoulda-matchers (2.1.0) 473 activesupport (>= 3.0.0) 474 - sidekiq (2.17.0) 475 - celluloid (>= 0.15.2) 476 - connection_pool (>= 1.0.0) 477 json 478 - redis (>= 3.0.4) 479 redis-namespace (>= 1.3.1) 480 simple_oauth (0.1.9) 481 - simplecov (0.9.0) 482 docile (~> 1.1.0) 483 - multi_json 484 - simplecov-html (~> 0.8.0) 485 - simplecov-html (0.8.0) 486 - sinatra (1.4.4) 487 rack (~> 1.4) 488 rack-protection (~> 1.4) 489 - tilt (~> 1.3, >= 1.3.4) 490 six (0.2.0) 491 - slack-notifier (0.3.2) 492 - slim (2.0.2) 493 temple (~> 0.6.6) 494 tilt (>= 1.3.3, < 2.1) 495 - slop (3.4.7) 496 - spinach (0.8.7) 497 - colorize (= 0.5.8) 498 - gherkin-ruby (>= 0.3.1) 499 spinach-rails (0.2.1) 500 capybara (>= 2.0.0) 501 railties (>= 3) 502 spinach (>= 0.4) 503 - spring (1.1.3) 504 - spring-commands-rspec (1.0.1) 505 spring (>= 0.9.1) 506 spring-commands-spinach (1.0.0) 507 spring (>= 0.9.1) 508 - sprockets (2.11.0) 509 hike (~> 1.2) 510 multi_json (~> 1.0) 511 rack (~> 1.0) 512 tilt (~> 1.1, != 1.3.0) 513 - sprockets-rails (2.1.3) 514 actionpack (>= 3.0) 515 activesupport (>= 3.0) 516 - sprockets (~> 2.8) 517 stamp (0.5.0) 518 state_machine (1.2.0) 519 - stringex (2.5.1) 520 - temple (0.6.7) 521 - term-ansicolor (1.2.2) 522 - tins (~> 0.8) 523 - test_after_commit (0.2.2) 524 - therubyracer (0.12.0) 525 - libv8 (~> 3.16.14.0) 526 - ref 527 - thin (1.6.1) 528 - daemons (>= 1.0.9) 529 - eventmachine (>= 1.0.0) 530 - rack (>= 1.0.0) 531 thor (0.19.1) 532 - thread_safe (0.3.4) 533 tilt (1.4.1) 534 - timers (1.1.0) 535 - tinder (1.9.3) 536 eventmachine (~> 1.0) 537 - faraday (~> 0.8) 538 faraday_middleware (~> 0.9) 539 hashie (>= 1.0, < 3) 540 json (~> 1.8.0) 541 mime-types (~> 1.19) 542 multi_json (~> 1.7) 543 twitter-stream (~> 0.1) 544 - tins (0.13.1) 545 - treetop (1.4.15) 546 - polyglot 547 - polyglot (>= 0.3.1) 548 - turbolinks (2.0.0) 549 coffee-rails 550 twitter-stream (0.1.16) 551 eventmachine (>= 0.12.8) ··· 553 simple_oauth (~> 0.1.4) 554 tzinfo (1.2.2) 555 thread_safe (~> 0.1) 556 - uglifier (2.3.2) 557 execjs (>= 0.3.0) 558 json (>= 1.8.0) 559 underscore-rails (1.4.4) 560 unf (0.1.4) 561 unf_ext 562 - unf_ext (0.0.6) 563 - unicorn (4.6.3) 564 kgio (~> 2.6) 565 rack 566 raindrops (~> 0.7) 567 - unicorn-worker-killer (0.4.2) 568 unicorn (~> 4) 569 - version_sorter (1.1.0) 570 - virtus (1.0.1) 571 - axiom-types (~> 0.0.5) 572 coercible (~> 1.0) 573 - descendants_tracker (~> 0.0.1) 574 - equalizer (~> 0.0.7) 575 warden (1.2.3) 576 rack (>= 1.0) 577 - webmock (1.16.0) 578 - addressable (>= 2.2.7) 579 crack (>= 0.3.2) 580 - websocket-driver (0.3.3) 581 wikicloth (0.8.1) 582 builder 583 expression_parser ··· 589 ruby 590 591 DEPENDENCIES 592 - RedCloth 593 - ace-rails-ap 594 - acts-as-taggable-on 595 - annotate (~> 2.6.0.beta2) 596 - asciidoctor (= 0.1.4) 597 - awesome_print 598 - better_errors 599 - binding_of_caller 600 bootstrap-sass (~> 3.0) 601 - capybara (~> 2.2.1) 602 - carrierwave 603 - coffee-rails 604 - colored 605 - coveralls 606 creole (~> 0.3.6) 607 - d3_rails (~> 3.1.4) 608 - database_cleaner 609 default_value_for (~> 3.0.0) 610 - devise (= 3.2.4) 611 - devise-async (= 0.9.0) 612 diffy (~> 3.0.3) 613 - dropzonejs-rails 614 - email_spec 615 - enumerize 616 - factory_girl_rails 617 - ffaker 618 - fog (~> 1.14) 619 font-awesome-rails (~> 4.2) 620 foreman 621 gemnasium-gitlab-service (~> 0.2) 622 - github-markup 623 - gitlab-flowdock-git-hook (~> 0.4.2) 624 - gitlab-grack (~> 2.0.0.pre) 625 - gitlab-linguist (~> 3.0.0) 626 - gitlab_emoji (~> 0.0.1.1) 627 - gitlab_git (= 7.0.0.rc10) 628 gitlab_meta (= 7.0) 629 - gitlab_omniauth-ldap (= 1.1.0) 630 - gollum-lib (~> 3.0.0) 631 gon (~> 5.0.0) 632 grape (~> 0.6.1) 633 grape-entity (~> 0.4.2) 634 growl 635 - guard-rspec 636 - guard-spinach 637 - haml-rails 638 - hipchat (~> 0.14.0) 639 - html-pipeline-gitlab (~> 0.1.0) 640 - httparty 641 - jasmine (= 2.0.2) 642 - jquery-atwho-rails (~> 0.3.3) 643 - jquery-rails 644 - jquery-scrollto-rails 645 - jquery-turbolinks 646 - jquery-ui-rails 647 kaminari (~> 0.15.1) 648 - launchy 649 - letter_opener 650 - minitest (~> 5.3.0) 651 - mousetrap-rails 652 - mysql2 653 - newrelic_rpm 654 - nprogress-rails 655 - omniauth (~> 1.1.3) 656 - omniauth-github 657 - omniauth-google-oauth2 658 - omniauth-shibboleth 659 - omniauth-twitter 660 - org-ruby (= 0.9.9) 661 - pg 662 - poltergeist (~> 1.5.1) 663 - pry 664 - quiet_assets (~> 1.0.1) 665 - rack-attack 666 - rack-cors 667 - rack-mini-profiler 668 - rails (~> 4.1.0) 669 - rails_autolink (~> 1.1) 670 - rails_best_practices 671 raphael-rails (~> 2.1.2) 672 rb-fsevent 673 rb-inotify 674 rdoc (~> 3.6) 675 - redcarpet (~> 3.1.2) 676 - redis-rails 677 - request_store 678 - rspec-rails 679 sanitize (~> 2.0) 680 - sass-rails (~> 4.0.2) 681 - sdoc 682 - seed-fu 683 - select2-rails 684 - semantic-ui-sass (~> 0.16.1.0) 685 - settingslogic 686 - shoulda-matchers (~> 2.1.0) 687 - sidekiq (= 2.17.0) 688 - simplecov 689 - sinatra 690 - six 691 - slack-notifier (~> 0.3.2) 692 - slim 693 - spinach-rails 694 - spring (= 1.1.3) 695 - spring-commands-rspec (= 1.0.1) 696 - spring-commands-spinach (= 1.0.0) 697 - stamp 698 - state_machine 699 - test_after_commit 700 - therubyracer 701 - thin 702 tinder (~> 1.9.2) 703 - turbolinks 704 - uglifier 705 underscore-rails (~> 1.4.4) 706 - unf 707 - unicorn (~> 4.6.3) 708 - unicorn-worker-killer 709 - version_sorter 710 - virtus 711 - webmock 712 wikicloth (= 0.8.1)
··· 1 GEM 2 remote: https://rubygems.org/ 3 specs: 4 + CFPropertyList (2.3.1) 5 RedCloth (4.2.9) 6 ace-rails-ap (2.0.1) 7 + actionmailer (4.1.12) 8 + actionpack (= 4.1.12) 9 + actionview (= 4.1.12) 10 + mail (~> 2.5, >= 2.5.4) 11 + actionpack (4.1.12) 12 + actionview (= 4.1.12) 13 + activesupport (= 4.1.12) 14 rack (~> 1.5.2) 15 rack-test (~> 0.6.2) 16 + actionview (4.1.12) 17 + activesupport (= 4.1.12) 18 builder (~> 3.1) 19 erubis (~> 2.7.0) 20 + activemodel (4.1.12) 21 + activesupport (= 4.1.12) 22 builder (~> 3.1) 23 + activerecord (4.1.12) 24 + activemodel (= 4.1.12) 25 + activesupport (= 4.1.12) 26 arel (~> 5.0.0) 27 + activerecord-deprecated_finders (1.0.4) 28 + activerecord-session_store (0.1.1) 29 + actionpack (>= 4.0.0, < 5) 30 + activerecord (>= 4.0.0, < 5) 31 + railties (>= 4.0.0, < 5) 32 + activeresource (4.0.0) 33 + activemodel (~> 4.0) 34 + activesupport (~> 4.0) 35 + rails-observers (~> 0.1.1) 36 + activesupport (4.1.12) 37 i18n (~> 0.6, >= 0.6.9) 38 json (~> 1.7, >= 1.7.7) 39 minitest (~> 5.1) 40 thread_safe (~> 0.1) 41 tzinfo (~> 1.1) 42 + acts-as-taggable-on (3.5.0) 43 + activerecord (>= 3.2, < 5) 44 + addressable (2.3.8) 45 + after_commit_queue (1.1.0) 46 + rails (>= 3.0) 47 + annotate (2.6.10) 48 + activerecord (>= 3.2, <= 4.3) 49 + rake (~> 10.4) 50 arel (5.0.1.20140414130214) 51 + asana (0.0.6) 52 + activeresource (>= 3.2.3) 53 + asciidoctor (1.5.2) 54 + ast (2.1.0) 55 + astrolabe (1.3.1) 56 + parser (~> 2.2) 57 + attr_encrypted (1.3.4) 58 + encryptor (>= 1.3.0) 59 + attr_required (1.0.0) 60 + autoprefixer-rails (5.2.1.2) 61 + execjs 62 + json 63 awesome_print (1.2.0) 64 + axiom-types (0.1.1) 65 + descendants_tracker (~> 0.0.4) 66 + ice_nine (~> 0.11.0) 67 + thread_safe (~> 0.3, >= 0.3.1) 68 + bcrypt (3.1.10) 69 better_errors (1.0.1) 70 coderay (>= 1.0.0) 71 erubis (>= 2.6.6) 72 binding_of_caller (0.7.2) 73 debug_inspector (>= 0.0.1) 74 + bootstrap-sass (3.3.5) 75 + autoprefixer-rails (>= 5.0.0.1) 76 + sass (>= 3.2.19) 77 + brakeman (3.0.1) 78 + erubis (~> 2.6) 79 + fastercsv (~> 1.5) 80 + haml (>= 3.0, < 5.0) 81 + highline (~> 1.6.20) 82 + multi_json (~> 1.2) 83 + ruby2ruby (~> 2.1.1) 84 + ruby_parser (~> 3.5.0) 85 + sass (~> 3.0) 86 + terminal-table (~> 1.4) 87 + browser (1.0.0) 88 builder (3.2.2) 89 + byebug (6.0.2) 90 + cal-heatmap-rails (0.0.1) 91 + capybara (2.4.4) 92 mime-types (>= 1.16) 93 nokogiri (>= 1.3.3) 94 rack (>= 1.0.0) 95 rack-test (>= 0.5.4) 96 xpath (~> 2.0) 97 + capybara-screenshot (1.0.11) 98 + capybara (>= 1.0, < 3) 99 + launchy 100 carrierwave (0.9.0) 101 activemodel (>= 3.2.0) 102 activesupport (>= 3.2.0) 103 json (>= 1.7) 104 + celluloid (0.16.0) 105 + timers (~> 4.0.0) 106 charlock_holmes (0.6.9.4) 107 + chronic (0.10.2) 108 + chunky_png (1.3.4) 109 cliver (0.3.2) 110 coderay (1.1.0) 111 coercible (1.0.0) 112 descendants_tracker (~> 0.0.1) 113 + coffee-rails (4.1.0) 114 coffee-script (>= 2.2.0) 115 railties (>= 4.0.0, < 5.0) 116 + coffee-script (2.4.1) 117 coffee-script-source 118 execjs 119 + coffee-script-source (1.9.1.1) 120 colored (1.2) 121 colorize (0.5.8) 122 + connection_pool (2.2.0) 123 + coveralls (0.8.2) 124 + json (~> 1.8) 125 + rest-client (>= 1.6.8, < 2) 126 + simplecov (~> 0.10.0) 127 + term-ansicolor (~> 1.3) 128 + thor (~> 0.19.1) 129 + crack (0.4.2) 130 + safe_yaml (~> 1.0.0) 131 creole (0.3.8) 132 + d3_rails (3.5.6) 133 railties (>= 3.1.0) 134 + daemons (1.2.3) 135 + database_cleaner (1.4.1) 136 debug_inspector (0.0.2) 137 + default_value_for (3.0.1) 138 activerecord (>= 3.2.0, < 5.0) 139 + descendants_tracker (0.0.4) 140 + thread_safe (~> 0.3, >= 0.3.1) 141 + devise (3.5.2) 142 bcrypt (~> 3.0) 143 orm_adapter (~> 0.1) 144 railties (>= 3.2.6, < 5) 145 + responders 146 thread_safe (~> 0.1) 147 warden (~> 1.2.3) 148 devise-async (0.9.0) 149 devise (~> 3.2) 150 + devise-two-factor (2.0.0) 151 + activesupport 152 + attr_encrypted (~> 1.3.2) 153 + devise (~> 3.5.0) 154 + railties 155 + rotp (~> 2) 156 diff-lcs (1.2.5) 157 + diffy (3.0.7) 158 docile (1.1.5) 159 + domain_name (0.5.24) 160 + unf (>= 0.0.5, < 1.0.0) 161 + doorkeeper (2.1.4) 162 + railties (>= 3.2) 163 + dropzonejs-rails (0.7.1) 164 rails (> 3.1) 165 + email_reply_parser (0.5.8) 166 + email_spec (1.6.0) 167 launchy (~> 2.1) 168 mail (~> 2.2) 169 + encryptor (1.3.0) 170 enumerize (0.7.0) 171 activesupport (>= 3.2) 172 + equalizer (0.0.11) 173 erubis (2.7.0) 174 escape_utils (0.2.4) 175 + eventmachine (1.0.8) 176 + excon (0.45.4) 177 + execjs (2.6.0) 178 expression_parser (0.9.0) 179 factory_girl (4.3.0) 180 activesupport (>= 3.0.0) 181 factory_girl_rails (4.3.0) 182 factory_girl (~> 4.3.0) 183 railties (>= 3.0.0) 184 + faraday (0.8.10) 185 multipart-post (~> 1.2.0) 186 + faraday_middleware (0.10.0) 187 + faraday (>= 0.7.4, < 0.10) 188 + fastercsv (1.5.5) 189 + ffaker (2.0.0) 190 + ffi (1.9.10) 191 + fission (0.5.0) 192 + CFPropertyList (~> 2.2) 193 + flowdock (0.7.0) 194 + httparty (~> 0.7) 195 + multi_json 196 + fog (1.25.0) 197 + fog-brightbox (~> 0.4) 198 + fog-core (~> 1.25) 199 fog-json 200 + fog-profitbricks 201 + fog-radosgw (>= 0.0.2) 202 + fog-sakuracloud (>= 0.0.4) 203 + fog-softlayer 204 + fog-terremark 205 + fog-vmfusion 206 + fog-voxel 207 + fog-xml (~> 0.1.1) 208 + ipaddress (~> 0.5) 209 nokogiri (~> 1.5, >= 1.5.11) 210 + opennebula 211 + fog-brightbox (0.9.0) 212 + fog-core (~> 1.22) 213 fog-json 214 + inflecto (~> 0.0.2) 215 + fog-core (1.32.1) 216 builder 217 + excon (~> 0.45) 218 + formatador (~> 0.2) 219 mime-types 220 net-scp (~> 1.1) 221 net-ssh (>= 2.1.3) 222 + fog-json (1.0.2) 223 + fog-core (~> 1.0) 224 + multi_json (~> 1.10) 225 + fog-profitbricks (0.0.5) 226 + fog-core 227 + fog-xml 228 + nokogiri 229 + fog-radosgw (0.0.4) 230 + fog-core (>= 1.21.0) 231 + fog-json 232 + fog-xml (>= 0.0.1) 233 + fog-sakuracloud (1.0.1) 234 + fog-core 235 + fog-json 236 + fog-softlayer (0.4.7) 237 + fog-core 238 + fog-json 239 + fog-terremark (0.1.0) 240 + fog-core 241 + fog-xml 242 + fog-vmfusion (0.1.0) 243 + fission 244 + fog-core 245 + fog-voxel (0.1.0) 246 + fog-core 247 + fog-xml 248 + fog-xml (0.1.2) 249 + fog-core 250 + nokogiri (~> 1.5, >= 1.5.11) 251 + font-awesome-rails (4.4.0.0) 252 railties (>= 3.2, < 5.0) 253 + foreman (0.78.0) 254 + thor (~> 0.19.1) 255 + formatador (0.2.5) 256 + fuubar (2.0.0) 257 + rspec (~> 3.0) 258 + ruby-progressbar (~> 1.4) 259 + gemnasium-gitlab-service (0.2.6) 260 + rugged (~> 0.21) 261 + gemojione (2.0.1) 262 + json 263 + get_process_mem (0.2.0) 264 + gherkin-ruby (0.3.2) 265 + github-markup (1.3.3) 266 + gitlab-flowdock-git-hook (1.0.1) 267 + flowdock (~> 0.7) 268 gitlab-grit (>= 2.4.1) 269 multi_json 270 + gitlab-grit (2.7.3) 271 charlock_holmes (~> 0.6) 272 diff-lcs (~> 1.1) 273 mime-types (~> 1.15) 274 posix-spawn (~> 0.3) 275 + gitlab-linguist (3.0.1) 276 charlock_holmes (~> 0.6.6) 277 escape_utils (~> 0.2.4) 278 mime-types (~> 1.19) 279 + gitlab_emoji (0.1.1) 280 + gemojione (~> 2.0) 281 + gitlab_git (7.2.15) 282 activesupport (~> 4.0) 283 charlock_holmes (~> 0.6) 284 gitlab-linguist (~> 3.0) 285 + rugged (~> 0.22.2) 286 gitlab_meta (7.0) 287 + gitlab_omniauth-ldap (1.2.1) 288 + net-ldap (~> 0.9) 289 omniauth (~> 1.0) 290 pyu-ruby-sasl (~> 0.0.3.1) 291 + rubyntlm (~> 0.3) 292 + gollum-grit_adapter (1.0.0) 293 + gitlab-grit (~> 2.7, >= 2.7.1) 294 + gollum-lib (4.0.3) 295 + github-markup (~> 1.3.3) 296 + gollum-grit_adapter (~> 1.0) 297 + nokogiri (~> 1.6.4) 298 + rouge (~> 1.10.1) 299 sanitize (~> 2.1.0) 300 stringex (~> 2.5.1) 301 + gon (5.0.4) 302 actionpack (>= 2.3.0) 303 json 304 grape (0.6.1) ··· 311 rack-accept 312 rack-mount 313 virtus (>= 1.0.0) 314 + grape-entity (0.4.8) 315 activesupport 316 multi_json (>= 1.3.2) 317 growl (1.0.3) 318 + guard (2.13.0) 319 formatador (>= 0.2.4) 320 + listen (>= 2.7, <= 4.0) 321 lumberjack (~> 1.0) 322 + nenv (~> 0.1) 323 + notiffany (~> 0.0) 324 pry (>= 0.9.12) 325 + shellany (~> 0.0) 326 thor (>= 0.18.1) 327 + guard-rspec (4.2.10) 328 + guard (~> 2.1) 329 rspec (>= 2.14, < 4.0) 330 + haml (4.0.7) 331 tilt 332 haml-rails (0.5.3) 333 actionpack (>= 4.0.1) ··· 335 haml (>= 3.1, < 5.0) 336 railties (>= 4.0.1) 337 hashie (2.1.2) 338 + highline (1.6.21) 339 hike (1.2.3) 340 + hipchat (1.5.2) 341 httparty 342 + mimemagic 343 + hitimes (1.2.3) 344 html-pipeline (1.11.0) 345 activesupport (>= 2) 346 nokogiri (~> 1.4) 347 + http-cookie (1.0.2) 348 + domain_name (~> 0.5) 349 http_parser.rb (0.5.3) 350 + httparty (0.13.5) 351 json (~> 1.8) 352 multi_xml (>= 0.5.2) 353 + httpclient (2.6.0.1) 354 + i18n (0.7.0) 355 + ice_cube (0.11.1) 356 + ice_nine (0.11.1) 357 + inflecto (0.0.2) 358 + ipaddress (0.8.0) 359 + jquery-atwho-rails (1.0.1) 360 + jquery-rails (3.1.3) 361 railties (>= 3.0, < 5.0) 362 thor (>= 0.14, < 2.0) 363 jquery-scrollto-rails (1.4.3) 364 railties (> 3.1, < 5.0) 365 + jquery-turbolinks (2.0.2) 366 railties (>= 3.1.0) 367 turbolinks 368 jquery-ui-rails (4.2.1) 369 railties (>= 3.2.16) 370 + json (1.8.3) 371 + jwt (1.5.1) 372 kaminari (0.15.1) 373 actionpack (>= 3.0.0) 374 activesupport (>= 3.0.0) 375 + kgio (2.9.3) 376 + launchy (2.4.3) 377 addressable (~> 2.3) 378 letter_opener (1.1.2) 379 launchy (~> 2.2) 380 + listen (2.10.1) 381 + celluloid (~> 0.16.0) 382 rb-fsevent (>= 0.9.3) 383 rb-inotify (>= 0.9) 384 + lumberjack (1.0.9) 385 + macaddr (1.7.1) 386 + systemu (~> 2.6.2) 387 + mail (2.6.3) 388 + mime-types (>= 1.16, < 3) 389 + mail_room (0.5.2) 390 method_source (0.8.2) 391 mime-types (1.25.1) 392 + mimemagic (0.3.0) 393 + mini_portile (0.6.2) 394 + minitest (5.7.0) 395 mousetrap-rails (1.4.6) 396 + multi_json (1.11.2) 397 multi_xml (0.5.5) 398 multipart-post (1.2.0) 399 + mysql2 (0.3.20) 400 + nenv (0.2.0) 401 + nested_form (0.3.2) 402 + net-ldap (0.11) 403 + net-scp (1.2.1) 404 net-ssh (>= 2.6.5) 405 + net-ssh (2.9.2) 406 + netrc (0.10.3) 407 + newrelic-grape (2.0.0) 408 + grape 409 + newrelic_rpm 410 newrelic_rpm (3.9.4.245) 411 + nokogiri (1.6.6.2) 412 + mini_portile (~> 0.6.0) 413 + notiffany (0.0.7) 414 + nenv (~> 0.1) 415 + shellany (~> 0.0) 416 nprogress-rails (0.1.2.3) 417 oauth (0.4.7) 418 + oauth2 (1.0.0) 419 + faraday (>= 0.8, < 0.10) 420 + jwt (~> 1.0) 421 + multi_json (~> 1.3) 422 + multi_xml (~> 0.5) 423 rack (~> 1.2) 424 + octokit (3.7.1) 425 + sawyer (~> 0.6.0, >= 0.5.3) 426 + omniauth (1.2.2) 427 + hashie (>= 1.2, < 4) 428 + rack (~> 1.0) 429 + omniauth-bitbucket (0.0.2) 430 + multi_json (~> 1.7) 431 + omniauth (~> 1.1) 432 + omniauth-oauth (~> 1.0) 433 + omniauth-github (1.1.2) 434 omniauth (~> 1.0) 435 omniauth-oauth2 (~> 1.1) 436 + omniauth-gitlab (1.0.0) 437 + omniauth (~> 1.0) 438 + omniauth-oauth2 (~> 1.0) 439 + omniauth-google-oauth2 (0.2.6) 440 omniauth (> 1.0) 441 omniauth-oauth2 (~> 1.1) 442 + omniauth-kerberos (0.2.0) 443 + omniauth-multipassword 444 + timfel-krb5-auth (~> 0.8) 445 + omniauth-multipassword (0.4.2) 446 omniauth (~> 1.0) 447 + omniauth-oauth (1.1.0) 448 + oauth 449 omniauth (~> 1.0) 450 + omniauth-oauth2 (1.3.1) 451 + oauth2 (~> 1.0) 452 + omniauth (~> 1.2) 453 + omniauth-saml (1.4.1) 454 + omniauth (~> 1.1) 455 + ruby-saml (~> 1.0.0) 456 + omniauth-shibboleth (1.1.2) 457 omniauth (>= 1.0.0) 458 omniauth-twitter (1.0.1) 459 multi_json (~> 1.3) 460 omniauth-oauth (~> 1.0) 461 + omniauth_crowd (2.2.3) 462 + activesupport 463 + nokogiri (>= 1.4.4) 464 + omniauth (~> 1.0) 465 + opennebula (4.12.1) 466 + json 467 + nokogiri 468 + rbvmomi 469 + org-ruby (0.9.12) 470 rubypants (~> 0.2) 471 orm_adapter (0.5.0) 472 + paranoia (2.1.3) 473 + activerecord (~> 4.0) 474 + parser (2.2.2.6) 475 + ast (>= 1.1, < 3.0) 476 + pg (0.18.2) 477 + poltergeist (1.6.0) 478 capybara (~> 2.1) 479 cliver (~> 0.3.1) 480 multi_json (~> 1.0) 481 websocket-driver (>= 0.2.0) 482 + posix-spawn (0.3.11) 483 + powerpack (0.0.9) 484 + pry (0.10.1) 485 + coderay (~> 1.1.0) 486 + method_source (~> 0.8.1) 487 slop (~> 3.4) 488 + pry-rails (0.3.4) 489 + pry (>= 0.9.10) 490 pyu-ruby-sasl (0.0.3.3) 491 + quiet_assets (1.0.3) 492 railties (>= 3.1, < 5.0) 493 + rack (1.5.5) 494 rack-accept (0.4.5) 495 rack (>= 0.4) 496 + rack-attack (4.3.0) 497 rack 498 rack-cors (0.2.9) 499 + rack-mini-profiler (0.9.7) 500 rack (>= 1.1.3) 501 rack-mount (0.8.3) 502 rack (>= 1.0.0) 503 + rack-oauth2 (1.0.10) 504 + activesupport (>= 2.3) 505 + attr_required (>= 0.0.5) 506 + httpclient (>= 2.4) 507 + multi_json (>= 1.3.6) 508 + rack (>= 1.1) 509 + rack-protection (1.5.3) 510 rack 511 + rack-test (0.6.3) 512 rack (>= 1.0) 513 + rails (4.1.12) 514 + actionmailer (= 4.1.12) 515 + actionpack (= 4.1.12) 516 + actionview (= 4.1.12) 517 + activemodel (= 4.1.12) 518 + activerecord (= 4.1.12) 519 + activesupport (= 4.1.12) 520 bundler (>= 1.3.0, < 2.0) 521 + railties (= 4.1.12) 522 sprockets-rails (~> 2.0) 523 + rails-observers (0.1.2) 524 + activemodel (~> 4.0) 525 + railties (4.1.12) 526 + actionpack (= 4.1.12) 527 + activesupport (= 4.1.12) 528 rake (>= 0.8.7) 529 thor (>= 0.18.1, < 2.0) 530 + rainbow (2.0.0) 531 + raindrops (0.15.0) 532 + rake (10.4.2) 533 raphael-rails (2.1.2) 534 + rb-fsevent (0.9.5) 535 + rb-inotify (0.9.5) 536 ffi (>= 0.5.0) 537 + rbvmomi (1.8.2) 538 + builder 539 + nokogiri (>= 1.4.1) 540 + trollop 541 rdoc (3.12.2) 542 json (~> 1.4) 543 + redcarpet (3.3.2) 544 + redis (3.2.1) 545 redis-actionpack (4.0.0) 546 actionpack (~> 4) 547 redis-rack (~> 1.5.0) 548 redis-store (~> 1.1.0) 549 + redis-activesupport (4.1.1) 550 activesupport (~> 4) 551 redis-store (~> 1.1.0) 552 + redis-namespace (1.5.2) 553 + redis (~> 3.0, >= 3.0.4) 554 redis-rack (1.5.0) 555 rack (~> 1.5) 556 redis-store (~> 1.1.0) ··· 558 redis-actionpack (~> 4) 559 redis-activesupport (~> 4) 560 redis-store (~> 1.1.0) 561 + redis-store (1.1.6) 562 redis (>= 2.2) 563 + request_store (1.2.0) 564 + rerun (0.10.0) 565 + listen (~> 2.7, >= 2.7.3) 566 + responders (1.1.2) 567 + railties (>= 3.2, < 4.2) 568 + rest-client (1.8.0) 569 + http-cookie (>= 1.0.2, < 2.0) 570 + mime-types (>= 1.16, < 3.0) 571 + netrc (~> 0.7) 572 rinku (1.7.3) 573 + rotp (2.1.1) 574 + rouge (1.10.1) 575 + rqrcode (0.7.0) 576 + chunky_png 577 + rqrcode-rails3 (0.1.7) 578 + rqrcode (>= 0.4.2) 579 + rspec (3.3.0) 580 + rspec-core (~> 3.3.0) 581 + rspec-expectations (~> 3.3.0) 582 + rspec-mocks (~> 3.3.0) 583 + rspec-core (3.3.2) 584 + rspec-support (~> 3.3.0) 585 + rspec-expectations (3.3.1) 586 + diff-lcs (>= 1.2.0, < 2.0) 587 + rspec-support (~> 3.3.0) 588 + rspec-mocks (3.3.2) 589 + diff-lcs (>= 1.2.0, < 2.0) 590 + rspec-support (~> 3.3.0) 591 + rspec-rails (3.3.3) 592 + actionpack (>= 3.0, < 4.3) 593 + activesupport (>= 3.0, < 4.3) 594 + railties (>= 3.0, < 4.3) 595 + rspec-core (~> 3.3.0) 596 + rspec-expectations (~> 3.3.0) 597 + rspec-mocks (~> 3.3.0) 598 + rspec-support (~> 3.3.0) 599 + rspec-support (3.3.0) 600 + rubocop (0.28.0) 601 + astrolabe (~> 1.3) 602 + parser (>= 2.2.0.pre.7, < 3.0) 603 + powerpack (~> 0.0.6) 604 + rainbow (>= 1.99.1, < 3.0) 605 + ruby-progressbar (~> 1.4) 606 + ruby-fogbugz (0.2.1) 607 + crack (~> 0.4) 608 + ruby-progressbar (1.7.5) 609 + ruby-saml (1.0.0) 610 + nokogiri (>= 1.5.10) 611 + uuid (~> 2.3) 612 + ruby2ruby (2.1.4) 613 + ruby_parser (~> 3.1) 614 + sexp_processor (~> 4.0) 615 + ruby_parser (3.5.0) 616 + sexp_processor (~> 4.1) 617 + rubyntlm (0.5.2) 618 rubypants (0.2.0) 619 + rugged (0.22.2) 620 + safe_yaml (1.0.4) 621 sanitize (2.1.0) 622 nokogiri (>= 1.4.4) 623 sass (3.2.19) 624 + sass-rails (4.0.5) 625 railties (>= 4.0.0, < 5.0) 626 + sass (~> 3.2.2) 627 + sprockets (~> 2.8, < 3.0) 628 sprockets-rails (~> 2.0) 629 + sawyer (0.6.0) 630 + addressable (~> 2.3.5) 631 + faraday (~> 0.8, < 0.10) 632 sdoc (0.3.20) 633 json (>= 1.1.3) 634 rdoc (~> 3.10) 635 + seed-fu (2.3.5) 636 + activerecord (>= 3.1, < 4.3) 637 + activesupport (>= 3.1, < 4.3) 638 + select2-rails (3.5.9.3) 639 thor (~> 0.14) 640 settingslogic (2.0.9) 641 + sexp_processor (4.6.0) 642 + sham_rack (1.3.6) 643 + rack 644 + shellany (0.0.1) 645 + shoulda-matchers (2.8.0) 646 activesupport (>= 3.0.0) 647 + sidekiq (3.3.0) 648 + celluloid (>= 0.16.0) 649 + connection_pool (>= 2.0.0) 650 json 651 + redis (>= 3.0.6) 652 redis-namespace (>= 1.3.1) 653 + sidetiq (0.6.3) 654 + celluloid (>= 0.14.1) 655 + ice_cube (= 0.11.1) 656 + sidekiq (>= 3.0.0) 657 simple_oauth (0.1.9) 658 + simplecov (0.10.0) 659 docile (~> 1.1.0) 660 + json (~> 1.8) 661 + simplecov-html (~> 0.10.0) 662 + simplecov-html (0.10.0) 663 + sinatra (1.4.6) 664 rack (~> 1.4) 665 rack-protection (~> 1.4) 666 + tilt (>= 1.3, < 3) 667 six (0.2.0) 668 + slack-notifier (1.0.0) 669 + slim (2.0.3) 670 temple (~> 0.6.6) 671 tilt (>= 1.3.3, < 2.1) 672 + slop (3.6.0) 673 + spinach (0.8.10) 674 + colorize 675 + gherkin-ruby (>= 0.3.2) 676 + json 677 spinach-rails (0.2.1) 678 capybara (>= 2.0.0) 679 railties (>= 3) 680 spinach (>= 0.4) 681 + spring (1.3.6) 682 + spring-commands-rspec (1.0.4) 683 spring (>= 0.9.1) 684 spring-commands-spinach (1.0.0) 685 spring (>= 0.9.1) 686 + spring-commands-teaspoon (0.0.2) 687 + spring (>= 0.9.1) 688 + sprockets (2.12.4) 689 hike (~> 1.2) 690 multi_json (~> 1.0) 691 rack (~> 1.0) 692 tilt (~> 1.1, != 1.3.0) 693 + sprockets-rails (2.3.2) 694 actionpack (>= 3.0) 695 activesupport (>= 3.0) 696 + sprockets (>= 2.8, < 4.0) 697 stamp (0.5.0) 698 state_machine (1.2.0) 699 + stringex (2.5.2) 700 + systemu (2.6.5) 701 + task_list (1.0.2) 702 + html-pipeline 703 + teaspoon (1.0.2) 704 + railties (>= 3.2.5, < 5) 705 + teaspoon-jasmine (2.2.0) 706 + teaspoon (>= 1.0.0) 707 + temple (0.6.10) 708 + term-ansicolor (1.3.2) 709 + tins (~> 1.0) 710 + terminal-table (1.5.2) 711 + test_after_commit (0.2.7) 712 + activerecord (>= 3.2) 713 + thin (1.6.3) 714 + daemons (~> 1.0, >= 1.0.9) 715 + eventmachine (~> 1.0) 716 + rack (~> 1.0) 717 thor (0.19.1) 718 + thread_safe (0.3.5) 719 tilt (1.4.1) 720 + timers (4.0.4) 721 + hitimes 722 + timfel-krb5-auth (0.8.3) 723 + tinder (1.9.4) 724 eventmachine (~> 1.0) 725 + faraday (~> 0.8.9) 726 faraday_middleware (~> 0.9) 727 hashie (>= 1.0, < 3) 728 json (~> 1.8.0) 729 mime-types (~> 1.19) 730 multi_json (~> 1.7) 731 twitter-stream (~> 0.1) 732 + tins (1.6.0) 733 + trollop (2.1.2) 734 + turbolinks (2.5.3) 735 coffee-rails 736 twitter-stream (0.1.16) 737 eventmachine (>= 0.12.8) ··· 739 simple_oauth (~> 0.1.4) 740 tzinfo (1.2.2) 741 thread_safe (~> 0.1) 742 + uglifier (2.3.3) 743 execjs (>= 0.3.0) 744 json (>= 1.8.0) 745 underscore-rails (1.4.4) 746 unf (0.1.4) 747 unf_ext 748 + unf_ext (0.0.7.1) 749 + unicorn (4.8.3) 750 kgio (~> 2.6) 751 rack 752 raindrops (~> 0.7) 753 + unicorn-worker-killer (0.4.3) 754 + get_process_mem (~> 0) 755 unicorn (~> 4) 756 + uuid (2.3.8) 757 + macaddr (~> 1.0) 758 + version_sorter (2.0.0) 759 + virtus (1.0.5) 760 + axiom-types (~> 0.1) 761 coercible (~> 1.0) 762 + descendants_tracker (~> 0.0, >= 0.0.3) 763 + equalizer (~> 0.0, >= 0.0.9) 764 warden (1.2.3) 765 rack (>= 1.0) 766 + webmock (1.21.0) 767 + addressable (>= 2.3.6) 768 crack (>= 0.3.2) 769 + websocket-driver (0.6.2) 770 + websocket-extensions (>= 0.1.0) 771 + websocket-extensions (0.1.2) 772 + whenever (0.8.4) 773 + activesupport (>= 2.3.4) 774 + chronic (>= 0.6.3) 775 wikicloth (0.8.1) 776 builder 777 expression_parser ··· 783 ruby 784 785 DEPENDENCIES 786 + RedCloth (~> 4.2.9) 787 + ace-rails-ap (~> 2.0.1) 788 + activerecord-deprecated_finders (~> 1.0.3) 789 + activerecord-session_store (~> 0.1.0) 790 + acts-as-taggable-on (~> 3.4) 791 + addressable (~> 2.3.8) 792 + after_commit_queue 793 + annotate (~> 2.6.0) 794 + asana (~> 0.0.6) 795 + asciidoctor (~> 1.5.2) 796 + attr_encrypted (~> 1.3.4) 797 + awesome_print (~> 1.2.0) 798 + better_errors (~> 1.0.1) 799 + binding_of_caller (~> 0.7.2) 800 bootstrap-sass (~> 3.0) 801 + brakeman (= 3.0.1) 802 + browser (~> 1.0.0) 803 + byebug 804 + cal-heatmap-rails (~> 0.0.1) 805 + capybara (~> 2.4.0) 806 + capybara-screenshot (~> 1.0.0) 807 + carrierwave (~> 0.9.0) 808 + charlock_holmes (~> 0.6.9.4) 809 + coffee-rails (~> 4.1.0) 810 + colored (~> 1.2) 811 + colorize (~> 0.5.8) 812 + coveralls (~> 0.8.2) 813 creole (~> 0.3.6) 814 + d3_rails (~> 3.5.5) 815 + database_cleaner (~> 1.4.0) 816 default_value_for (~> 3.0.0) 817 + devise (~> 3.5.2) 818 + devise-async (~> 0.9.0) 819 + devise-two-factor (~> 2.0.0) 820 diffy (~> 3.0.3) 821 + doorkeeper (~> 2.1.3) 822 + dropzonejs-rails (~> 0.7.1) 823 + email_reply_parser (~> 0.5.8) 824 + email_spec (~> 1.6.0) 825 + enumerize (~> 0.7.0) 826 + factory_girl_rails (~> 4.3.0) 827 + ffaker (~> 2.0.0) 828 + fog (~> 1.25.0) 829 font-awesome-rails (~> 4.2) 830 foreman 831 + fuubar (~> 2.0.0) 832 gemnasium-gitlab-service (~> 0.2) 833 + github-markup (~> 1.3.1) 834 + gitlab-flowdock-git-hook (~> 1.0.1) 835 + gitlab-linguist (~> 3.0.1) 836 + gitlab_emoji (~> 0.1) 837 + gitlab_git (~> 7.2.15) 838 gitlab_meta (= 7.0) 839 + gitlab_omniauth-ldap (~> 1.2.1) 840 + gollum-lib (~> 4.0.2) 841 gon (~> 5.0.0) 842 grape (~> 0.6.1) 843 grape-entity (~> 0.4.2) 844 growl 845 + guard-rspec (~> 4.2.0) 846 + haml-rails (~> 0.5.3) 847 + hipchat (~> 1.5.0) 848 + html-pipeline (~> 1.11.0) 849 + httparty (~> 0.13.3) 850 + jquery-atwho-rails (~> 1.0.0) 851 + jquery-rails (~> 3.1.3) 852 + jquery-scrollto-rails (~> 1.4.3) 853 + jquery-turbolinks (~> 2.0.1) 854 + jquery-ui-rails (~> 4.2.1) 855 kaminari (~> 0.15.1) 856 + letter_opener (~> 1.1.2) 857 + mail_room (~> 0.5.2) 858 + minitest (~> 5.7.0) 859 + mousetrap-rails (~> 1.4.6) 860 + mysql2 (~> 0.3.16) 861 + nested_form (~> 0.3.2) 862 + newrelic-grape 863 + newrelic_rpm (~> 3.9.4.245) 864 + nprogress-rails (~> 0.1.2.3) 865 + oauth2 (~> 1.0.0) 866 + octokit (~> 3.7.0) 867 + omniauth (~> 1.2.2) 868 + omniauth-bitbucket (~> 0.0.2) 869 + omniauth-github (~> 1.1.1) 870 + omniauth-gitlab (~> 1.0.0) 871 + omniauth-google-oauth2 (~> 0.2.5) 872 + omniauth-kerberos (~> 0.2.0) 873 + omniauth-saml (~> 1.4.0) 874 + omniauth-shibboleth (~> 1.1.1) 875 + omniauth-twitter (~> 1.0.1) 876 + omniauth_crowd 877 + org-ruby (~> 0.9.12) 878 + paranoia (~> 2.0) 879 + pg (~> 0.18.2) 880 + poltergeist (~> 1.6.0) 881 + pry-rails 882 + quiet_assets (~> 1.0.2) 883 + rack-attack (~> 4.3.0) 884 + rack-cors (~> 0.2.9) 885 + rack-mini-profiler (~> 0.9.0) 886 + rack-oauth2 (~> 1.0.5) 887 + rails (= 4.1.12) 888 raphael-rails (~> 2.1.2) 889 rb-fsevent 890 rb-inotify 891 rdoc (~> 3.6) 892 + redcarpet (~> 3.3.2) 893 + redis-rails (~> 4.0.0) 894 + request_store (~> 1.2.0) 895 + rerun (~> 0.10.0) 896 + rqrcode-rails3 (~> 0.1.7) 897 + rspec-rails (~> 3.3.0) 898 + rubocop (~> 0.28.0) 899 + ruby-fogbugz (~> 0.2.1) 900 sanitize (~> 2.0) 901 + sass-rails (~> 4.0.5) 902 + sdoc (~> 0.3.20) 903 + seed-fu (~> 2.3.5) 904 + select2-rails (~> 3.5.9) 905 + settingslogic (~> 2.0.9) 906 + sham_rack 907 + shoulda-matchers (~> 2.8.0) 908 + sidekiq (= 3.3.0) 909 + sidetiq (~> 0.6.3) 910 + simplecov (~> 0.10.0) 911 + sinatra (~> 1.4.4) 912 + six (~> 0.2.0) 913 + slack-notifier (~> 1.0.0) 914 + slim (~> 2.0.2) 915 + spinach-rails (~> 0.2.1) 916 + spring (~> 1.3.6) 917 + spring-commands-rspec (~> 1.0.4) 918 + spring-commands-spinach (~> 1.0.0) 919 + spring-commands-teaspoon (~> 0.0.2) 920 + sprockets (~> 2.12.3) 921 + stamp (~> 0.5.0) 922 + state_machine (~> 1.2.0) 923 + task_list (~> 1.0.2) 924 + teaspoon (~> 1.0.0) 925 + teaspoon-jasmine (~> 2.2.0) 926 + test_after_commit (~> 0.2.2) 927 + thin (~> 1.6.1) 928 tinder (~> 1.9.2) 929 + turbolinks (~> 2.5.0) 930 + uglifier (~> 2.3.2) 931 underscore-rails (~> 1.4.4) 932 + unf (~> 0.1.4) 933 + unicorn (~> 4.8.2) 934 + unicorn-worker-killer (~> 0.4.2) 935 + version_sorter (~> 2.0.0) 936 + virtus (~> 1.0.1) 937 + webmock (~> 1.21.0) 938 + whenever (~> 0.8.4) 939 wikicloth (= 0.8.1)
+15 -18
pkgs/applications/version-management/gitlab/default.nix
··· 1 { stdenv, lib, bundler, fetchgit, bundlerEnv, defaultGemConfig, libiconv, ruby 2 - , tzdata, git 3 }: 4 5 let 6 - gitlab = fetchgit { 7 - url = "https://github.com/gitlabhq/gitlabhq.git"; 8 - rev = "477743a154e85c411e8a533980abce460b5669fc"; 9 - fetchSubmodules = false; 10 - sha256 = "1gk77j886w6zvw5cawpgja6f87qirmjx7y4g5i3psxm4j67llxdp"; 11 - }; 12 - 13 env = bundlerEnv { 14 name = "gitlab"; 15 inherit ruby; ··· 28 29 stdenv.mkDerivation rec { 30 name = "gitlab-${version}"; 31 - version = "7.4.2"; 32 - buildInputs = [ ruby bundler tzdata git ]; 33 - unpackPhase = '' 34 - runHook preUnpack 35 - cp -r ${gitlab}/* . 36 - chmod -R +w . 37 - cp ${./Gemfile} Gemfile 38 - cp ${./Gemfile.lock} Gemfile.lock 39 - runHook postUnpack 40 - ''; 41 patches = [ 42 ./remove-hardcoded-locations.patch 43 ]; 44 postPatch = '' 45 # For reasons I don't understand "bundle exec" ignores the ··· 49 rm lib/tasks/test.rake 50 51 mv config/gitlab.yml.example config/gitlab.yml 52 53 # required for some gems: 54 cat > config/database.yml <<EOF
··· 1 { stdenv, lib, bundler, fetchgit, bundlerEnv, defaultGemConfig, libiconv, ruby 2 + , tzdata, git, nodejs, procps 3 }: 4 5 let 6 env = bundlerEnv { 7 name = "gitlab"; 8 inherit ruby; ··· 21 22 stdenv.mkDerivation rec { 23 name = "gitlab-${version}"; 24 + version = "8.0.5"; 25 + buildInputs = [ ruby bundler tzdata git nodejs procps ]; 26 + src = fetchgit { 27 + url = "https://github.com/gitlabhq/gitlabhq.git"; 28 + rev = "2866c501b5a5abb69d101cc07261a1d684b4bd4c"; 29 + fetchSubmodules = false; 30 + sha256 = "edc6bedd5e79940189355d8cb343d20b0781b69fcef56ccae5906fa5e81ed521"; 31 + }; 32 + 33 patches = [ 34 ./remove-hardcoded-locations.patch 35 + ./disable-dump-schema-after-migration.patch 36 ]; 37 postPatch = '' 38 # For reasons I don't understand "bundle exec" ignores the ··· 42 rm lib/tasks/test.rake 43 44 mv config/gitlab.yml.example config/gitlab.yml 45 + rm config/initializers/gitlab_shell_secret_token.rb 46 + 47 + substituteInPlace app/controllers/admin/background_jobs_controller.rb \ 48 + --replace "ps -U" "${procps}/bin/ps -U" 49 50 # required for some gems: 51 cat > config/database.yml <<EOF
+11
pkgs/applications/version-management/gitlab/disable-dump-schema-after-migration.patch
···
··· 1 + diff --git a/config/environments/production.rb b/config/environments/production.rb 2 + index 3316ece..d60566c 100644 3 + --- a/config/environments/production.rb 4 + +++ b/config/environments/production.rb 5 + @@ -77,4 +77,6 @@ Gitlab::Application.configure do 6 + config.eager_load = true 7 + 8 + config.allow_concurrency = false 9 + + 10 + + config.active_record.dump_schema_after_migration = false 11 + end
+1217 -465
pkgs/applications/version-management/gitlab/gemset.nix
··· 1 { 2 "RedCloth" = { 3 version = "4.2.9"; 4 source = { ··· 14 }; 15 }; 16 "actionmailer" = { 17 - version = "4.1.1"; 18 source = { 19 type = "gem"; 20 - sha256 = "14mbmlwyrxccmf2svhxmvrv0ypcq53xyyqzh4a2r2azmxjb1zxnx"; 21 }; 22 dependencies = [ 23 "actionpack" ··· 26 ]; 27 }; 28 "actionpack" = { 29 - version = "4.1.1"; 30 source = { 31 type = "gem"; 32 - sha256 = "078iqmjay787xg76zibnvk485y29d57wffiv9nj0nmzb89jfa6y1"; 33 }; 34 dependencies = [ 35 "actionview" ··· 39 ]; 40 }; 41 "actionview" = { 42 - version = "4.1.1"; 43 source = { 44 type = "gem"; 45 - sha256 = "0wlhsy9hqzpi3xylphx71i9bd5x6dd03qzrh4nnc8mimzjbv14jq"; 46 }; 47 dependencies = [ 48 "activesupport" ··· 51 ]; 52 }; 53 "activemodel" = { 54 - version = "4.1.1"; 55 source = { 56 type = "gem"; 57 - sha256 = "0cijxp7n0zv1j2bh5jyirlcwi24j9xlwfsmn7icr0zsybgc0in61"; 58 }; 59 dependencies = [ 60 "activesupport" ··· 62 ]; 63 }; 64 "activerecord" = { 65 - version = "4.1.1"; 66 source = { 67 type = "gem"; 68 - sha256 = "180kxb98097nh8dprqrm5d1ab6xaqv8kxqdbm1p84y87w0kj57yz"; 69 }; 70 dependencies = [ 71 "activemodel" ··· 73 "arel" 74 ]; 75 }; 76 "activesupport" = { 77 - version = "4.1.1"; 78 source = { 79 type = "gem"; 80 - sha256 = "11dsdfrdqqfhpgigb960a4xrs1k7ix5brbsw034nijn8d4fq0hkk"; 81 }; 82 dependencies = [ 83 "i18n" ··· 88 ]; 89 }; 90 "acts-as-taggable-on" = { 91 - version = "2.4.1"; 92 source = { 93 type = "gem"; 94 - sha256 = "0gbmxx6nk109i6c4686vr5wpf89xiiys7s2lwf7z68dpgi1dsxab"; 95 }; 96 dependencies = [ 97 - "rails" 98 ]; 99 }; 100 "addressable" = { 101 - version = "2.3.5"; 102 source = { 103 type = "gem"; 104 - sha256 = "11hv69v6h39j7m4v51a4p7my7xwjbhxbsg3y7ja156z7by10wkg7"; 105 }; 106 }; 107 "annotate" = { 108 - version = "2.6.0"; 109 source = { 110 type = "gem"; 111 - sha256 = "0min6rmiqjnp6irjd9mjlz8k13qzx4g51d8v6vn8zn8hdnfbjanr"; 112 }; 113 dependencies = [ 114 "activerecord" ··· 122 sha256 = "0dhnc20h1v8ml3nmkxq92rr7qxxpk6ixhwvwhgl2dbw9mmxz0hf9"; 123 }; 124 }; 125 "asciidoctor" = { 126 - version = "0.1.4"; 127 source = { 128 type = "gem"; 129 - sha256 = "14ngw7c8sq5ydh0xz6b5jgvs5vbk2sx1vf75fjf0q81ixnd6yb9a"; 130 }; 131 }; 132 "awesome_print" = { 133 version = "1.2.0"; ··· 137 }; 138 }; 139 "axiom-types" = { 140 - version = "0.0.5"; 141 source = { 142 type = "gem"; 143 - sha256 = "0k6mf132n2f5z8xwcwfjayrxfqsd8yyzj2cgxv5phvr7szlqfyzn"; 144 }; 145 dependencies = [ 146 "descendants_tracker" 147 "ice_nine" 148 ]; 149 }; 150 "bcrypt" = { 151 - version = "3.1.7"; 152 source = { 153 type = "gem"; 154 - sha256 = "00jpjl2v0y8dsfhxx3l3sp2pnflkxbbywnda46n1w5f7a8qrac0w"; 155 }; 156 }; 157 "better_errors" = { ··· 176 ]; 177 }; 178 "bootstrap-sass" = { 179 - version = "3.0.3.0"; 180 source = { 181 type = "gem"; 182 - sha256 = "1isljqrlasq9n7cxj4ldf0cjjhkwzsbl8lj6rf5z9farwjx6k4iz"; 183 }; 184 dependencies = [ 185 "sass" 186 ]; 187 }; 188 "builder" = { 189 version = "3.2.2"; 190 source = { ··· 192 sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; 193 }; 194 }; 195 "capybara" = { 196 - version = "2.2.1"; 197 source = { 198 type = "gem"; 199 - sha256 = "1sydb3mnznqn23s2cqb0ysdml0dgl06fzdvx8aqbbx1km9pgz080"; 200 }; 201 dependencies = [ 202 "mime-types" ··· 206 "xpath" 207 ]; 208 }; 209 "carrierwave" = { 210 version = "0.9.0"; 211 source = { ··· 219 ]; 220 }; 221 "celluloid" = { 222 - version = "0.15.2"; 223 source = { 224 type = "gem"; 225 - sha256 = "0lpa97m7f4p5hgzaaa47y1d5c78n8pp4xd8qb0sn5llqd0klkd9b"; 226 }; 227 dependencies = [ 228 "timers" ··· 235 sha256 = "1vyzsr3r2bwig9knyhay1m7i828w9x5zhma44iajyrbs1ypvfbg5"; 236 }; 237 }; 238 - "cliver" = { 239 - version = "0.3.2"; 240 source = { 241 type = "gem"; 242 - sha256 = "096f4rj7virwvqxhkavy0v55rax10r4jqf8cymbvn4n631948xc7"; 243 }; 244 }; 245 - "code_analyzer" = { 246 - version = "0.4.3"; 247 source = { 248 type = "gem"; 249 - sha256 = "1v8b6sbsyw1612wilfc2bsjbr41gf46apjqmlqbishmkhywi1di7"; 250 }; 251 - dependencies = [ 252 - "sexp_processor" 253 - ]; 254 }; 255 "coderay" = { 256 version = "1.1.0"; ··· 270 ]; 271 }; 272 "coffee-rails" = { 273 - version = "4.0.1"; 274 source = { 275 type = "gem"; 276 - sha256 = "12nqw61xfs43qap4bxp123q4fgj41gvxirdal95ymdd2qzr3cvig"; 277 }; 278 dependencies = [ 279 "coffee-script" ··· 281 ]; 282 }; 283 "coffee-script" = { 284 - version = "2.2.0"; 285 source = { 286 type = "gem"; 287 - sha256 = "133cp4znfp44wwnv12myw8s0z6qws74ilqmw88iwzkshg689zpdc"; 288 }; 289 dependencies = [ 290 "coffee-script-source" ··· 292 ]; 293 }; 294 "coffee-script-source" = { 295 - version = "1.6.3"; 296 source = { 297 type = "gem"; 298 - sha256 = "0p33h0rdj1n8xhm2d5hzqbb8br6wn4rx0gk4hyhc6rxkaxsy79b4"; 299 }; 300 }; 301 "colored" = { ··· 313 }; 314 }; 315 "connection_pool" = { 316 - version = "1.2.0"; 317 source = { 318 type = "gem"; 319 - sha256 = "1ffw78r39b3gn121ghi65fsrkzjjv7h0mxag6ilphsas1kzz3h21"; 320 }; 321 }; 322 "coveralls" = { 323 - version = "0.7.0"; 324 source = { 325 type = "gem"; 326 - sha256 = "0sz30d7b83qqsj3i0fr691w05d62wj7x3afh0ryjkqkis3fq94j4"; 327 }; 328 dependencies = [ 329 - "multi_json" 330 "rest-client" 331 "simplecov" 332 "term-ansicolor" ··· 334 ]; 335 }; 336 "crack" = { 337 - version = "0.4.1"; 338 source = { 339 type = "gem"; 340 - sha256 = "0wb2s4nidabcgn2k65ydhx0f9758py79p615qph99117csy915jg"; 341 }; 342 dependencies = [ 343 "safe_yaml" ··· 351 }; 352 }; 353 "d3_rails" = { 354 - version = "3.1.10"; 355 source = { 356 type = "gem"; 357 - sha256 = "1n94vwn51v1dfqjqmdkb11mgyvq6dfmf5cjwa9w1nj3785yvkii8"; 358 }; 359 dependencies = [ 360 "railties" 361 ]; 362 }; 363 "daemons" = { 364 - version = "1.1.9"; 365 source = { 366 type = "gem"; 367 - sha256 = "1j1m64pirsldhic6x6sg4lcrmp1bs1ihpd49xm8m1b2rc1c3irzy"; 368 }; 369 }; 370 "database_cleaner" = { 371 - version = "1.3.0"; 372 source = { 373 type = "gem"; 374 - sha256 = "19w25yda684pg29bggq26wy4lpyjvzscwg2hx3hmmmpysiwfnxgn"; 375 }; 376 }; 377 "debug_inspector" = { ··· 382 }; 383 }; 384 "default_value_for" = { 385 - version = "3.0.0"; 386 source = { 387 type = "gem"; 388 - sha256 = "08bhk2dzxpvsk891y415man42vn3f9cvysysywh1iavxbv5qkg8z"; 389 }; 390 dependencies = [ 391 "activerecord" 392 ]; 393 }; 394 "descendants_tracker" = { 395 - version = "0.0.3"; 396 source = { 397 type = "gem"; 398 - sha256 = "0819j80k85j62qjg90v8z8s3h4nf3v6afxxz73hl6iqxr2dhgmq1"; 399 }; 400 }; 401 "devise" = { 402 - version = "3.2.4"; 403 source = { 404 type = "gem"; 405 - sha256 = "1za4082iacq2n0g0v5s1vmn402wj4bwvqqd55phc9da922j4awx3"; 406 }; 407 dependencies = [ 408 "bcrypt" 409 "orm_adapter" 410 "railties" 411 "thread_safe" 412 "warden" 413 ]; ··· 422 "devise" 423 ]; 424 }; 425 "diff-lcs" = { 426 version = "1.2.5"; 427 source = { ··· 430 }; 431 }; 432 "diffy" = { 433 - version = "3.0.3"; 434 source = { 435 type = "gem"; 436 - sha256 = "0qldyp6m5vlagiaiwdixbj64ynr5ghz58xsrxykas7581qdxk88m"; 437 }; 438 }; 439 "docile" = { ··· 443 sha256 = "0m8j31whq7bm5ljgmsrlfkiqvacrw6iz9wq10r3gwrv5785y8gjx"; 444 }; 445 }; 446 - "dotenv" = { 447 - version = "0.9.0"; 448 source = { 449 type = "gem"; 450 - sha256 = "1gl0m6s8d6m72wcm4p86kzzjdihyryi5mh6v70qkqd0dl1gj73l3"; 451 }; 452 }; 453 "dropzonejs-rails" = { 454 - version = "0.4.14"; 455 source = { 456 type = "gem"; 457 - sha256 = "0aqjij9dvazz7vq9c8m9fxjc3vnkfagqgnq94whzgrm2ikszb1ny"; 458 }; 459 dependencies = [ 460 "rails" 461 ]; 462 }; 463 "email_spec" = { 464 - version = "1.5.0"; 465 source = { 466 type = "gem"; 467 - sha256 = "0gshv8ylfr1nf6mhgriyzlm5rv5c44yxlgmxva8gpdqsyibfa1r6"; 468 }; 469 dependencies = [ 470 "launchy" 471 "mail" 472 ]; 473 }; 474 - "emoji" = { 475 - version = "1.0.1"; 476 source = { 477 type = "gem"; 478 - sha256 = "01fgzkwfsfcvcgrxb6x58w8rpcv0hq6x761iws0xqv0rzz3a8x1a"; 479 }; 480 - dependencies = [ 481 - "json" 482 - ]; 483 }; 484 "enumerize" = { 485 version = "0.7.0"; ··· 492 ]; 493 }; 494 "equalizer" = { 495 - version = "0.0.8"; 496 source = { 497 type = "gem"; 498 - sha256 = "1nh9i4khg7z2nsay8i1i43yk6ml2hwsf7cl179z22p4kwvn04vfn"; 499 }; 500 }; 501 "erubis" = { ··· 513 }; 514 }; 515 "eventmachine" = { 516 - version = "1.0.3"; 517 source = { 518 type = "gem"; 519 - sha256 = "09sqlsb6x9ddlgfw5gsw7z0yjg5m2qfjiqkz2fx70zsizj3lqhil"; 520 }; 521 }; 522 "excon" = { 523 - version = "0.32.1"; 524 source = { 525 type = "gem"; 526 - sha256 = "0yazh0228ldyxrbrj5pqw06rs5sk3disp24v5bw4h8mp3ibih45a"; 527 }; 528 }; 529 "execjs" = { 530 - version = "2.0.2"; 531 source = { 532 type = "gem"; 533 - sha256 = "167kbkyql7nvvwjsgdw5z8j66ngq7kc59gxfwsxhqi5fl1z0jbjs"; 534 }; 535 }; 536 "expression_parser" = { ··· 562 ]; 563 }; 564 "faraday" = { 565 - version = "0.8.9"; 566 source = { 567 type = "gem"; 568 - sha256 = "17d79fsgx0xwh0mfxyz5pbr435qlw79phlfvifc546w2axdkp718"; 569 }; 570 dependencies = [ 571 "multipart-post" 572 ]; 573 }; 574 "faraday_middleware" = { 575 - version = "0.9.0"; 576 source = { 577 type = "gem"; 578 - sha256 = "1kwvi2sdxd6j764a7q5iir73dw2v6816zx3l8cgfv0wr2m47icq2"; 579 }; 580 dependencies = [ 581 "faraday" 582 ]; 583 }; 584 "ffaker" = { 585 - version = "1.22.1"; 586 source = { 587 type = "gem"; 588 - sha256 = "17zpqhf1kq831jg9rdrpx58mwnrnrvy5g97rxg3hzgy5j09kxq0q"; 589 }; 590 }; 591 "ffi" = { 592 - version = "1.9.3"; 593 source = { 594 type = "gem"; 595 - sha256 = "0873h6jp3v65mll7av9bxlzp9m9l1cc66j0krg0llchwbh4pv5sp"; 596 }; 597 }; 598 "fog" = { 599 - version = "1.21.0"; 600 source = { 601 type = "gem"; 602 - sha256 = "14hbq573gl5x8zrcx5jz9d7m6rnn0vk8ypgn77hrhjh0wyxb0a7f"; 603 }; 604 dependencies = [ 605 "fog-brightbox" 606 "fog-core" 607 "fog-json" 608 "nokogiri" 609 ]; 610 }; 611 "fog-brightbox" = { 612 - version = "0.0.1"; 613 source = { 614 type = "gem"; 615 - sha256 = "0j1bpfa8in3h69habl46zmm1540w46348gd246bamrs5gi4zfqkk"; 616 }; 617 dependencies = [ 618 "fog-core" 619 "fog-json" 620 ]; 621 }; 622 "fog-core" = { 623 - version = "1.21.1"; 624 source = { 625 type = "gem"; 626 - sha256 = "1wcxilb537ibfl06r8h73ilj5xxvd18cc21nzwbh6fp2ip527q34"; 627 }; 628 dependencies = [ 629 "builder" ··· 635 ]; 636 }; 637 "fog-json" = { 638 - version = "1.0.0"; 639 source = { 640 type = "gem"; 641 - sha256 = "1517sm8bl0bmaw2fbaf5ra6midq3wzgkpm55lb9rw6jm5ys23lyw"; 642 }; 643 dependencies = [ 644 "multi_json" 645 ]; 646 }; 647 "font-awesome-rails" = { 648 - version = "4.2.0.0"; 649 source = { 650 type = "gem"; 651 - sha256 = "1r6x34lswqcm6s6y5fvx34afsydpdly0123m75m1f5vx30l81jh0"; 652 }; 653 dependencies = [ 654 "railties" 655 ]; 656 }; 657 "foreman" = { 658 - version = "0.63.0"; 659 source = { 660 type = "gem"; 661 - sha256 = "0yqyjix9jm4iwyc4f3wc32vxr28rpjcw1c9ni5brs4s2a24inzlk"; 662 }; 663 dependencies = [ 664 - "dotenv" 665 "thor" 666 ]; 667 }; 668 "formatador" = { 669 - version = "0.2.4"; 670 source = { 671 type = "gem"; 672 - sha256 = "0pgmk1h6i6m3cslnfyjqld06a4c2xbbvmngxg2axddf39xwz6f12"; 673 }; 674 }; 675 "gemnasium-gitlab-service" = { 676 - version = "0.2.2"; 677 source = { 678 type = "gem"; 679 - sha256 = "0a3jy2z1xkgxaqxhsclsfkn52iccdga5zznfk00s69gn0bpvdfc2"; 680 }; 681 dependencies = [ 682 "rugged" 683 ]; 684 }; 685 - "gherkin-ruby" = { 686 - version = "0.3.1"; 687 source = { 688 type = "gem"; 689 - sha256 = "10plcj47ky078dvg78abf0asv29g6ba1zs9mgrza1161cxyj0mlq"; 690 }; 691 dependencies = [ 692 - "racc" 693 ]; 694 }; 695 "github-markup" = { 696 - version = "1.1.0"; 697 source = { 698 type = "gem"; 699 - sha256 = "06zsljgavpkwafw32zx69xblhrhz1r2mjbhgpvn51c2qa0rmsd7g"; 700 }; 701 }; 702 "gitlab-flowdock-git-hook" = { 703 - version = "0.4.2.2"; 704 source = { 705 type = "gem"; 706 - sha256 = "0r6hwkzkcdv53ib9ispjs38njxmmca7kz8kj5mjadqvdwiak9nwv"; 707 }; 708 dependencies = [ 709 "gitlab-grit" 710 "multi_json" 711 ]; 712 }; 713 - "gitlab-grack" = { 714 - version = "2.0.0.pre"; 715 - source = { 716 - type = "gem"; 717 - sha256 = "197qdlymn6cf0qk3698kn0miizv7x9hr1429g9l900rnc85a5rdb"; 718 - }; 719 - dependencies = [ 720 - "rack" 721 - ]; 722 - }; 723 "gitlab-grit" = { 724 - version = "2.6.12"; 725 source = { 726 type = "gem"; 727 - sha256 = "00yghwc3ggg34vdkz7v8mq27fc8h47kydahbqzaby5s0w70nx6c8"; 728 }; 729 dependencies = [ 730 "charlock_holmes" ··· 734 ]; 735 }; 736 "gitlab-linguist" = { 737 - version = "3.0.0"; 738 source = { 739 type = "gem"; 740 - sha256 = "0g2nv7lb33354nb8clwjrgxk09vr3wjn4rpyllmq6s01vx660lk6"; 741 }; 742 dependencies = [ 743 "charlock_holmes" ··· 746 ]; 747 }; 748 "gitlab_emoji" = { 749 - version = "0.0.1.1"; 750 source = { 751 type = "gem"; 752 - sha256 = "0cqxhbq5c3mvkxbdcwcl4pa0cwlvnjsphs7hp2dz63h82ggwa3vn"; 753 }; 754 dependencies = [ 755 - "emoji" 756 ]; 757 }; 758 "gitlab_git" = { 759 - version = "7.0.0.rc10"; 760 source = { 761 type = "gem"; 762 - sha256 = "0kjljz76wh4344z05mv3wiad7qdf6nwaa0yl1jls1j0hk9i4bb4k"; 763 }; 764 dependencies = [ 765 "activesupport" ··· 776 }; 777 }; 778 "gitlab_omniauth-ldap" = { 779 - version = "1.1.0"; 780 source = { 781 type = "gem"; 782 - sha256 = "0bpsh8z8fl03fwgz82wn53ibrc7714hmx16s5zxfbq1xk70r3pq7"; 783 }; 784 dependencies = [ 785 "net-ldap" ··· 788 "rubyntlm" 789 ]; 790 }; 791 "gollum-lib" = { 792 - version = "3.0.0"; 793 source = { 794 type = "gem"; 795 - sha256 = "18g74hl0zm285jszsk4414qvd106j0gkydg134my8hylwv59c23s"; 796 }; 797 dependencies = [ 798 "github-markup" 799 - "gitlab-grit" 800 "nokogiri" 801 "rouge" 802 "sanitize" ··· 804 ]; 805 }; 806 "gon" = { 807 - version = "5.0.1"; 808 source = { 809 type = "gem"; 810 - sha256 = "19ga6y4375iakccg089f7789r9n87gh16cdmhaa0qsk1m1dx34zm"; 811 }; 812 dependencies = [ 813 "actionpack" ··· 833 ]; 834 }; 835 "grape-entity" = { 836 - version = "0.4.2"; 837 source = { 838 type = "gem"; 839 - sha256 = "15vvpj7hw2n84glrvh5p3il8h3nnqg5gzgk6knavhamc7gj09g4k"; 840 }; 841 dependencies = [ 842 "activesupport" ··· 851 }; 852 }; 853 "guard" = { 854 - version = "2.2.4"; 855 source = { 856 type = "gem"; 857 - sha256 = "0z427rkcpzy82g21cgq7i5sn1vxn8hm8j4d78kj9vlaqgilcybhq"; 858 }; 859 dependencies = [ 860 "formatador" 861 "listen" 862 "lumberjack" 863 "pry" 864 "thor" 865 ]; 866 }; 867 "guard-rspec" = { 868 - version = "4.2.0"; 869 source = { 870 type = "gem"; 871 - sha256 = "0n4159cw88y0va5v2yvhjphwlgwhqbc3mplj7p92irbj045xsc8n"; 872 }; 873 dependencies = [ 874 "guard" 875 "rspec" 876 ]; 877 }; 878 - "guard-spinach" = { 879 - version = "0.0.2"; 880 - source = { 881 - type = "gem"; 882 - sha256 = "1fsh6yifiywvnzrk6wbgssxr5bshp38gbhs96hbfzhvzfiff0xid"; 883 - }; 884 - dependencies = [ 885 - "guard" 886 - "spinach" 887 - ]; 888 - }; 889 "haml" = { 890 - version = "4.0.5"; 891 source = { 892 type = "gem"; 893 - sha256 = "1xmzb0k5q271090crzmv7dbw8ss4289bzxklrc0fhw6pw3kcvc85"; 894 }; 895 dependencies = [ 896 "tilt" ··· 916 sha256 = "08w9ask37zh5w989b6igair3zf8gwllyzix97rlabxglif9f9qd9"; 917 }; 918 }; 919 "hike" = { 920 version = "1.2.3"; 921 source = { ··· 924 }; 925 }; 926 "hipchat" = { 927 - version = "0.14.0"; 928 source = { 929 type = "gem"; 930 - sha256 = "1y3bi5aj21iay138027i8y9b022hpsfw54k7k31argp2gppc8y0n"; 931 }; 932 dependencies = [ 933 "httparty" 934 - "httparty" 935 ]; 936 }; 937 "html-pipeline" = { 938 version = "1.11.0"; ··· 945 "nokogiri" 946 ]; 947 }; 948 - "html-pipeline-gitlab" = { 949 - version = "0.1.5"; 950 source = { 951 type = "gem"; 952 - sha256 = "1gih8j7sq45244v21z5rc19mi21achiy11l5sc8a4xfkvq5gldng"; 953 }; 954 dependencies = [ 955 - "actionpack" 956 - "gitlab_emoji" 957 - "html-pipeline" 958 - "sanitize" 959 ]; 960 }; 961 "http_parser.rb" = { ··· 966 }; 967 }; 968 "httparty" = { 969 - version = "0.13.0"; 970 source = { 971 type = "gem"; 972 - sha256 = "1qda6yhxwh1riddnib8knhqc0ja5h26i75kaxnywfldx9rkd32jw"; 973 }; 974 dependencies = [ 975 "json" 976 "multi_xml" 977 ]; 978 }; 979 - "httpauth" = { 980 - version = "0.2.1"; 981 source = { 982 type = "gem"; 983 - sha256 = "1ydlaf1nvs3g7b4xp9445m01qyjbwnbbh2f7gvialipyipj92j8d"; 984 }; 985 }; 986 "i18n" = { 987 - version = "0.6.11"; 988 source = { 989 type = "gem"; 990 - sha256 = "0fwjlgmgry2blf8zlxn9c555cf4a16p287l599kz5104ncjxlzdk"; 991 }; 992 }; 993 "ice_nine" = { 994 - version = "0.10.0"; 995 source = { 996 type = "gem"; 997 - sha256 = "0hjcn06xgrmpz3zyg0yirx6r7xb2m6akhn29p4yn4698ncw7b3qh"; 998 }; 999 }; 1000 - "jasmine" = { 1001 - version = "2.0.2"; 1002 source = { 1003 type = "gem"; 1004 - sha256 = "1v0z5a5m4np12m0lmf0vl63qdxbh6zxnxbnzx3xjwky723inqhir"; 1005 }; 1006 - dependencies = [ 1007 - "jasmine-core" 1008 - "phantomjs" 1009 - "rack" 1010 - "rake" 1011 - ]; 1012 }; 1013 - "jasmine-core" = { 1014 - version = "2.0.0"; 1015 source = { 1016 type = "gem"; 1017 - sha256 = "1frr9ndyrawag8c4rhd0yxl3318s5xwb3dqvz3i6z8nc936gwfzj"; 1018 }; 1019 }; 1020 "jquery-atwho-rails" = { 1021 - version = "0.3.3"; 1022 source = { 1023 type = "gem"; 1024 - sha256 = "1f8w1kqy46s4qzfhlh08qb1l1czl6randcccxpknaw9pzf367fvs"; 1025 }; 1026 }; 1027 "jquery-rails" = { 1028 - version = "3.1.0"; 1029 source = { 1030 type = "gem"; 1031 - sha256 = "130a8gn67b2zn47yyqshf48d46na885v4g3mh2rrchd5ma1jy6cx"; 1032 }; 1033 dependencies = [ 1034 "railties" ··· 1046 ]; 1047 }; 1048 "jquery-turbolinks" = { 1049 - version = "2.0.1"; 1050 source = { 1051 type = "gem"; 1052 - sha256 = "0d6av6cc0g8ym5zlkc8f00zxmnqchs95h7hqnrs2yrfz9nj856kd"; 1053 }; 1054 dependencies = [ 1055 "railties" ··· 1067 ]; 1068 }; 1069 "json" = { 1070 - version = "1.8.1"; 1071 source = { 1072 type = "gem"; 1073 - sha256 = "0002bsycvizvkmk1jyv8px1hskk6wrjfk4f7x5byi8gxm6zzn6wn"; 1074 }; 1075 }; 1076 "jwt" = { 1077 - version = "0.1.13"; 1078 source = { 1079 type = "gem"; 1080 - sha256 = "03c8sy54nhvvb0ksphk15p5yfkd601ncs55k4h32hjqbm9vgnlsn"; 1081 }; 1082 - dependencies = [ 1083 - "multi_json" 1084 - ]; 1085 }; 1086 "kaminari" = { 1087 version = "0.15.1"; ··· 1095 ]; 1096 }; 1097 "kgio" = { 1098 - version = "2.8.1"; 1099 source = { 1100 type = "gem"; 1101 - sha256 = "0vpw3nk35mh8mda4gn0qklq51znxxgv3852g6mxifi6hjwxrmrcj"; 1102 }; 1103 }; 1104 "launchy" = { 1105 - version = "2.4.2"; 1106 source = { 1107 type = "gem"; 1108 - sha256 = "0i1nmlrqpnk2q6f7iq85cqaa7b8fw4bmqm57w60g92lsfmszs8iv"; 1109 }; 1110 dependencies = [ 1111 "addressable" ··· 1121 "launchy" 1122 ]; 1123 }; 1124 - libv8 = { 1125 - version = "3.16.14.11"; 1126 - source = { 1127 - type = "gem"; 1128 - sha256 = "000vbiy78wk5r1f6p7qncab8ldg7qw5pjz7bchn3lw700gpaacxp"; 1129 - }; 1130 - }; 1131 "listen" = { 1132 - version = "2.3.1"; 1133 source = { 1134 type = "gem"; 1135 - sha256 = "081pv5nw79nl1251prh11v3ywghcmb660xm990rbp5bs6c3vcjam"; 1136 }; 1137 dependencies = [ 1138 "celluloid" ··· 1141 ]; 1142 }; 1143 "lumberjack" = { 1144 - version = "1.0.4"; 1145 source = { 1146 type = "gem"; 1147 - sha256 = "1mj6m12hnmkvzl4w2yh04ak3z45pwksj6ra7v30za8snw9kg919d"; 1148 }; 1149 }; 1150 "mail" = { 1151 - version = "2.5.4"; 1152 source = { 1153 type = "gem"; 1154 - sha256 = "0z15ksb8blcppchv03g34844f7xgf36ckp484qjj2886ig1qara4"; 1155 }; 1156 dependencies = [ 1157 "mime-types" 1158 - "treetop" 1159 ]; 1160 }; 1161 "method_source" = { 1162 version = "0.8.2"; ··· 1172 sha256 = "0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8"; 1173 }; 1174 }; 1175 "mini_portile" = { 1176 - version = "0.6.0"; 1177 source = { 1178 type = "gem"; 1179 - sha256 = "09kcn4g63xrdirgwxgjikqg976rr723bkc9bxfr29pk22cj3wavn"; 1180 }; 1181 }; 1182 "minitest" = { 1183 - version = "5.3.5"; 1184 source = { 1185 type = "gem"; 1186 - sha256 = "18lkfjr0p26x5qxaficwlnhvjrf5bqwl244qdx4pvr5clrvv17xr"; 1187 }; 1188 }; 1189 "mousetrap-rails" = { ··· 1194 }; 1195 }; 1196 "multi_json" = { 1197 - version = "1.10.1"; 1198 source = { 1199 type = "gem"; 1200 - sha256 = "1ll21dz01jjiplr846n1c8yzb45kj5hcixgb72rz0zg8fyc9g61c"; 1201 }; 1202 }; 1203 "multi_xml" = { ··· 1215 }; 1216 }; 1217 "mysql2" = { 1218 - version = "0.3.16"; 1219 source = { 1220 type = "gem"; 1221 - sha256 = "0ikg892bvyviqvxsyn0v6vj9ndhgdbc1339488n8y4s9zh35y71f"; 1222 }; 1223 }; 1224 "net-ldap" = { 1225 - version = "0.7.0"; 1226 source = { 1227 type = "gem"; 1228 - sha256 = "1d54cm02w8xi5nylss5b9vmzsscflcrbwg5qv1rp5frak4f397fk"; 1229 }; 1230 }; 1231 "net-scp" = { 1232 - version = "1.1.2"; 1233 source = { 1234 type = "gem"; 1235 - sha256 = "0xsr5gka2y14i5pa6h2lgkdzvmlviqq2qbmgaw76gdzrcf7q9n7k"; 1236 }; 1237 dependencies = [ 1238 "net-ssh" 1239 ]; 1240 }; 1241 "net-ssh" = { 1242 - version = "2.8.0"; 1243 source = { 1244 type = "gem"; 1245 - sha256 = "0l89a01199ag77vvbm47fdpmx4fp2dk9jsvwvrsqryxqqhzwbxa2"; 1246 }; 1247 }; 1248 "newrelic_rpm" = { 1249 version = "3.9.4.245"; 1250 source = { ··· 1253 }; 1254 }; 1255 "nokogiri" = { 1256 - version = "1.6.2.1"; 1257 source = { 1258 type = "gem"; 1259 - sha256 = "0dj8ajm9hlfpa71qz1xn5prqy5qdi32ll74qh8ssjwknp1a35cnz"; 1260 }; 1261 dependencies = [ 1262 "mini_portile" 1263 ]; 1264 }; 1265 "nprogress-rails" = { 1266 version = "0.1.2.3"; 1267 source = { ··· 1277 }; 1278 }; 1279 "oauth2" = { 1280 - version = "0.8.1"; 1281 source = { 1282 type = "gem"; 1283 - sha256 = "18gk2m42l4dmhiq394mmj1md2l5va5m236lkwy62pwk526lhi271"; 1284 }; 1285 dependencies = [ 1286 "faraday" 1287 - "httpauth" 1288 "jwt" 1289 "multi_json" 1290 "rack" 1291 ]; 1292 }; 1293 "omniauth" = { 1294 - version = "1.1.4"; 1295 source = { 1296 type = "gem"; 1297 - sha256 = "1ggg6nrlbpj67q59s5lyrpi6lnwv6wp3y7y5njbqr6y5y7d34wfl"; 1298 }; 1299 dependencies = [ 1300 "hashie" 1301 "rack" 1302 ]; 1303 }; 1304 "omniauth-github" = { 1305 - version = "1.1.1"; 1306 source = { 1307 type = "gem"; 1308 - sha256 = "1hnsindjhy4ihgjl96iwlf26vdv7v2cikagpqpkv25nc97mipd4l"; 1309 }; 1310 dependencies = [ 1311 "omniauth" ··· 1313 ]; 1314 }; 1315 "omniauth-google-oauth2" = { 1316 - version = "0.2.5"; 1317 source = { 1318 type = "gem"; 1319 - sha256 = "1pgbc21y5kjna1ac2fwaaimv1a4a6wdpy6y5wmvrl6pr631s248w"; 1320 }; 1321 dependencies = [ 1322 "omniauth" 1323 "omniauth-oauth2" 1324 ]; 1325 }; 1326 "omniauth-oauth" = { 1327 - version = "1.0.1"; 1328 source = { 1329 type = "gem"; 1330 - sha256 = "0ng7zcsfx0hv4yqwj80y1yc6wh5511p07lihaf9j7a3bzqqgn6wz"; 1331 }; 1332 dependencies = [ 1333 "oauth" ··· 1335 ]; 1336 }; 1337 "omniauth-oauth2" = { 1338 - version = "1.1.1"; 1339 source = { 1340 type = "gem"; 1341 - sha256 = "0s7bhlbz9clg1qxjrrcssyp5kxry1zp0lhsfgw735m7ap5vvmf3j"; 1342 }; 1343 dependencies = [ 1344 "oauth2" 1345 "omniauth" 1346 ]; 1347 }; 1348 "omniauth-shibboleth" = { 1349 - version = "1.1.1"; 1350 source = { 1351 type = "gem"; 1352 - sha256 = "0xljj8mpdbr243ddqcd3bmr2jc674lj9iv0v1z3rczg4q45jmadh"; 1353 }; 1354 dependencies = [ 1355 "omniauth" ··· 1366 "omniauth-oauth" 1367 ]; 1368 }; 1369 "org-ruby" = { 1370 - version = "0.9.9"; 1371 source = { 1372 type = "gem"; 1373 - sha256 = "1r978d8rsmln1jz44in6ll61ii84r81wb2mmic633h0agm62s9za"; 1374 }; 1375 dependencies = [ 1376 "rubypants" ··· 1383 sha256 = "1fg9jpjlzf5y49qs9mlpdrgs5rpcyihq1s4k79nv9js0spjhnpda"; 1384 }; 1385 }; 1386 - "pg" = { 1387 - version = "0.15.1"; 1388 source = { 1389 type = "gem"; 1390 - sha256 = "1lwyb542avqfav3814n5b3pssyih1ghzchs58vyzh5061r02fs5s"; 1391 }; 1392 }; 1393 - "phantomjs" = { 1394 - version = "1.9.2.0"; 1395 source = { 1396 type = "gem"; 1397 - sha256 = "0cvg8c9b85bhl00wg1fbkbr129sdxlh9gm61fqq3hal3c6sxbws2"; 1398 }; 1399 }; 1400 "poltergeist" = { 1401 - version = "1.5.1"; 1402 source = { 1403 type = "gem"; 1404 - sha256 = "08va59swiyvppb020xy6k9sqpnf5s6rjm1ycsbkv2abp37080ifv"; 1405 }; 1406 dependencies = [ 1407 "capybara" ··· 1410 "websocket-driver" 1411 ]; 1412 }; 1413 - "polyglot" = { 1414 - version = "0.3.4"; 1415 source = { 1416 type = "gem"; 1417 - sha256 = "0jcnabyh7iirz78db1g713iyhshmw4j0nw7q6nbd67vfffgrsh05"; 1418 }; 1419 }; 1420 - "posix-spawn" = { 1421 - version = "0.3.9"; 1422 source = { 1423 type = "gem"; 1424 - sha256 = "042i1afggy1sv2jmdjjjhyffas28xp2r1ylj5xfv3hchy3b4civ3"; 1425 }; 1426 }; 1427 "pry" = { 1428 - version = "0.9.12.4"; 1429 source = { 1430 type = "gem"; 1431 - sha256 = "0ndihrzirbfypf5pkqqcqhml6qpq66wbafkpc5jhjqjc6jc1llis"; 1432 }; 1433 dependencies = [ 1434 "coderay" ··· 1436 "slop" 1437 ]; 1438 }; 1439 "pyu-ruby-sasl" = { 1440 version = "0.0.3.3"; 1441 source = { ··· 1444 }; 1445 }; 1446 "quiet_assets" = { 1447 - version = "1.0.2"; 1448 source = { 1449 type = "gem"; 1450 - sha256 = "1a1gdaaglcpl583x9ma8la8cpls0lbc0l6qhv66dahia8ql8gg1z"; 1451 }; 1452 dependencies = [ 1453 "railties" 1454 ]; 1455 }; 1456 - "racc" = { 1457 - version = "1.4.10"; 1458 - source = { 1459 - type = "gem"; 1460 - sha256 = "10xm27dic2y8d53rw3yqw6jkdhrlgq11kbf5p8wiskiz28gzd0k2"; 1461 - }; 1462 - }; 1463 "rack" = { 1464 - version = "1.5.2"; 1465 source = { 1466 type = "gem"; 1467 - sha256 = "19szfw76cscrzjldvw30jp3461zl00w4xvw1x9lsmyp86h1g0jp6"; 1468 }; 1469 }; 1470 "rack-accept" = { ··· 1478 ]; 1479 }; 1480 "rack-attack" = { 1481 - version = "2.3.0"; 1482 source = { 1483 type = "gem"; 1484 - sha256 = "177l9q3gi5lypcxs7141mw62cmg4l20i84dzhvhcfz2blp8fa47r"; 1485 }; 1486 dependencies = [ 1487 "rack" ··· 1495 }; 1496 }; 1497 "rack-mini-profiler" = { 1498 - version = "0.9.0"; 1499 source = { 1500 type = "gem"; 1501 - sha256 = "0js0s422j7qqjbr3zay48hw82m3z7ddf3qvwcp2m8yz1g438fxqw"; 1502 }; 1503 dependencies = [ 1504 "rack" ··· 1514 "rack" 1515 ]; 1516 }; 1517 "rack-protection" = { 1518 - version = "1.5.1"; 1519 source = { 1520 type = "gem"; 1521 - sha256 = "0qxq5ld15nljxzdcx2wmbc3chw8nb6la1ap838vf263lnjcpx3dd"; 1522 }; 1523 dependencies = [ 1524 "rack" 1525 ]; 1526 }; 1527 "rack-test" = { 1528 - version = "0.6.2"; 1529 source = { 1530 type = "gem"; 1531 - sha256 = "01mk715ab5qnqf6va8k3hjsvsmplrfqpz6g58qw4m3l8mim0p4ky"; 1532 }; 1533 dependencies = [ 1534 "rack" 1535 ]; 1536 }; 1537 "rails" = { 1538 - version = "4.1.1"; 1539 source = { 1540 type = "gem"; 1541 - sha256 = "199agdsvidzk2g3zd50vkwnlr6gjk3s1qhligiik3rqr4ij7a8k0"; 1542 }; 1543 dependencies = [ 1544 "actionmailer" ··· 1551 "sprockets-rails" 1552 ]; 1553 }; 1554 - "rails_autolink" = { 1555 - version = "1.1.6"; 1556 - source = { 1557 - type = "gem"; 1558 - sha256 = "0wanqb979j9zf60g6r6mdlsvrdmbj4ppc0clyi2dr98wwyz1fk1q"; 1559 - }; 1560 - dependencies = [ 1561 - "rails" 1562 - ]; 1563 - }; 1564 - "rails_best_practices" = { 1565 - version = "1.14.4"; 1566 source = { 1567 type = "gem"; 1568 - sha256 = "14f6qwrzvk2dai56h32jg42z1h7hiphy6b01wwrnmzpwcgzp34w5"; 1569 }; 1570 dependencies = [ 1571 - "activesupport" 1572 - "awesome_print" 1573 - "code_analyzer" 1574 - "colored" 1575 - "erubis" 1576 - "i18n" 1577 - "require_all" 1578 - "ruby-progressbar" 1579 ]; 1580 }; 1581 "railties" = { 1582 - version = "4.1.1"; 1583 source = { 1584 type = "gem"; 1585 - sha256 = "1rlfbwrcg1qzyv5972wjx3vj40i0k9vgn2zzqavgcha7smmpivqc"; 1586 }; 1587 dependencies = [ 1588 "actionpack" ··· 1591 "thor" 1592 ]; 1593 }; 1594 "raindrops" = { 1595 - version = "0.12.0"; 1596 source = { 1597 type = "gem"; 1598 - sha256 = "16k8gb6f6y368wqf7s8n0lcm8c2krkrpf3p2qixn7nfs2x0g4xr0"; 1599 }; 1600 }; 1601 "rake" = { 1602 - version = "10.3.2"; 1603 source = { 1604 type = "gem"; 1605 - sha256 = "0nvpkjrpsk8xxnij2wd1cdn6arja9q11sxx4aq4fz18bc6fss15m"; 1606 }; 1607 }; 1608 "raphael-rails" = { ··· 1613 }; 1614 }; 1615 "rb-fsevent" = { 1616 - version = "0.9.3"; 1617 source = { 1618 type = "gem"; 1619 - sha256 = "0bdnxwdxj4r1kdxfi5nszbsb126njrr81p912g64xxs2bgxd1bp1"; 1620 }; 1621 }; 1622 "rb-inotify" = { 1623 - version = "0.9.2"; 1624 source = { 1625 type = "gem"; 1626 - sha256 = "0752fhgfrx370b2jnhxzs8sjv2l8yrnwqj337kx9v100igd1c7iv"; 1627 }; 1628 dependencies = [ 1629 "ffi" 1630 ]; 1631 }; 1632 "rdoc" = { 1633 version = "3.12.2"; 1634 source = { ··· 1640 ]; 1641 }; 1642 "redcarpet" = { 1643 - version = "3.1.2"; 1644 source = { 1645 type = "gem"; 1646 - sha256 = "076p52lkns90hqs27rs4kns2bg7maz8qxr87bl34yd6in319flzz"; 1647 }; 1648 }; 1649 "redis" = { 1650 - version = "3.0.6"; 1651 source = { 1652 type = "gem"; 1653 - sha256 = "1ha2h422rvbf0wk96bp7k0ibl0jyg7v101jsj7z0r7pvzcx21j73"; 1654 }; 1655 }; 1656 "redis-actionpack" = { ··· 1666 ]; 1667 }; 1668 "redis-activesupport" = { 1669 - version = "4.0.0"; 1670 source = { 1671 type = "gem"; 1672 - sha256 = "18mlzjchj7sh1jm2icx2idf2hcir3agpd6i01q0gnf36f432v06d"; 1673 }; 1674 dependencies = [ 1675 "activesupport" ··· 1677 ]; 1678 }; 1679 "redis-namespace" = { 1680 - version = "1.4.1"; 1681 source = { 1682 type = "gem"; 1683 - sha256 = "0fb6i98mhfxn26bqr5vdzhfjyda36cpaxh0dgxynp1y3m301khf7"; 1684 }; 1685 dependencies = [ 1686 "redis" ··· 1710 ]; 1711 }; 1712 "redis-store" = { 1713 - version = "1.1.4"; 1714 source = { 1715 type = "gem"; 1716 - sha256 = "0ja2h1rdyjga8bqb02w3sk3a1m78dsfg96b842s6mkkbpifpxd4z"; 1717 }; 1718 dependencies = [ 1719 "redis" 1720 ]; 1721 }; 1722 - "ref" = { 1723 - version = "1.0.5"; 1724 source = { 1725 type = "gem"; 1726 - sha256 = "19qgpsfszwc2sfh6wixgky5agn831qq8ap854i1jqqhy1zsci3la"; 1727 }; 1728 }; 1729 - "request_store" = { 1730 - version = "1.0.5"; 1731 source = { 1732 type = "gem"; 1733 - sha256 = "1ky19wb6mpq6dxb81a0h4hnzx7a4ka99n9ay2syi68djbr4bkbbh"; 1734 }; 1735 }; 1736 - "require_all" = { 1737 - version = "1.3.2"; 1738 source = { 1739 type = "gem"; 1740 - sha256 = "16l08r6asr8nif6ah75w57i7y728132n8ns62rlrf78sh4lmfkhx"; 1741 }; 1742 }; 1743 "rest-client" = { 1744 - version = "1.6.7"; 1745 source = { 1746 type = "gem"; 1747 - sha256 = "0nn7zalgidz2yj0iqh3xvzh626krm2al79dfiij19jdhp0rk8853"; 1748 }; 1749 dependencies = [ 1750 "mime-types" 1751 ]; 1752 }; 1753 "rinku" = { ··· 1757 sha256 = "1jh6nys332brph55i6x6cil6swm086kxjw34wq131nl6mwryqp7b"; 1758 }; 1759 }; 1760 "rouge" = { 1761 - version = "1.3.3"; 1762 source = { 1763 type = "gem"; 1764 - sha256 = "0l82xyfdpir2hdm94dw8hy01ngghhas1jm8r3lp3kvyw6z7ph4ml"; 1765 }; 1766 }; 1767 "rspec" = { 1768 - version = "2.14.1"; 1769 source = { 1770 type = "gem"; 1771 - sha256 = "134y4wzk1prninb5a0bhxgm30kqfzl8dg06af4js5ylnhv2wd7sg"; 1772 }; 1773 dependencies = [ 1774 "rspec-core" ··· 1777 ]; 1778 }; 1779 "rspec-core" = { 1780 - version = "2.14.7"; 1781 source = { 1782 type = "gem"; 1783 - sha256 = "0j23ca2hkf0ac708afvi5nxjn75g0mani6m17if52bjrxcgn4577"; 1784 }; 1785 }; 1786 "rspec-expectations" = { 1787 - version = "2.14.4"; 1788 source = { 1789 type = "gem"; 1790 - sha256 = "0figi31xg100yc90p04n16p1n8q9nlnqyncyl0f34mks8bc4zdrw"; 1791 }; 1792 dependencies = [ 1793 "diff-lcs" 1794 ]; 1795 }; 1796 "rspec-mocks" = { 1797 - version = "2.14.4"; 1798 source = { 1799 type = "gem"; 1800 - sha256 = "12vbv0firjkxlinxgg81j6qnwq8mmz48y4iv3ml9j411vqav4ig7"; 1801 }; 1802 }; 1803 "rspec-rails" = { 1804 - version = "2.14.0"; 1805 source = { 1806 type = "gem"; 1807 - sha256 = "1s9mszadqjmbcahyjgazygvkj8m7pzg7jpgx8m4wl0vxjxg3gr3f"; 1808 }; 1809 dependencies = [ 1810 "actionpack" ··· 1813 "rspec-core" 1814 "rspec-expectations" 1815 "rspec-mocks" 1816 ]; 1817 }; 1818 "ruby-progressbar" = { 1819 - version = "1.2.0"; 1820 source = { 1821 type = "gem"; 1822 - sha256 = "16vxr5n8q87gvdc2px4vzjkasiadzi0c18ynqc8x61352hl5f9ll"; 1823 }; 1824 }; 1825 "rubyntlm" = { 1826 - version = "0.1.1"; 1827 source = { 1828 type = "gem"; 1829 - sha256 = "0w48h3n8jzndqwmxxbj72j4gwma07f0x07ppsiv1qlygq2n9nyx0"; 1830 }; 1831 }; 1832 "rubypants" = { ··· 1837 }; 1838 }; 1839 "rugged" = { 1840 - version = "0.21.0"; 1841 source = { 1842 type = "gem"; 1843 - sha256 = "0abmh5l1j7pp7vwq8vrqmgv07pc2wq0m97hm1sb0k0ghsx9yqdp5"; 1844 }; 1845 }; 1846 "safe_yaml" = { 1847 - version = "0.9.7"; 1848 source = { 1849 type = "gem"; 1850 - sha256 = "0y34vpak8gim18rq02rgd144jsvk5is4xni16wm3shbhivzqb4hk"; 1851 }; 1852 }; 1853 "sanitize" = { ··· 1868 }; 1869 }; 1870 "sass-rails" = { 1871 - version = "4.0.3"; 1872 source = { 1873 type = "gem"; 1874 - sha256 = "1j1f7zhn1ywkmgp5m1rdi7n404vd3j53wp9ngq9n7w33bzwnaxmm"; 1875 }; 1876 dependencies = [ 1877 "railties" ··· 1880 "sprockets-rails" 1881 ]; 1882 }; 1883 "sdoc" = { 1884 version = "0.3.20"; 1885 source = { ··· 1892 ]; 1893 }; 1894 "seed-fu" = { 1895 - version = "2.3.1"; 1896 source = { 1897 type = "gem"; 1898 - sha256 = "1nw1pic6nxbqfwakykamaxm2rgz699yzwf1y64ms4ijgazmwy2gb"; 1899 }; 1900 dependencies = [ 1901 "activerecord" ··· 1903 ]; 1904 }; 1905 "select2-rails" = { 1906 - version = "3.5.2"; 1907 source = { 1908 type = "gem"; 1909 - sha256 = "0zlzkqr4xjd9k317wkw26m8nficp5cdf5ghl1h47ajgrj9pjvbnw"; 1910 }; 1911 dependencies = [ 1912 "thor" 1913 ]; 1914 }; 1915 - "semantic-ui-sass" = { 1916 - version = "0.16.1.0"; 1917 source = { 1918 type = "gem"; 1919 - sha256 = "18bivcl0a1pzd0sdxlnpwfb6fdai52f94kwzx68ky818mk1zgaal"; 1920 }; 1921 - dependencies = [ 1922 - "sass" 1923 - ]; 1924 }; 1925 - "settingslogic" = { 1926 - version = "2.0.9"; 1927 source = { 1928 type = "gem"; 1929 - sha256 = "1ria5zcrk1nf0b9yia15mdpzw0dqr6wjpbj8dsdbbps81lfsj9ar"; 1930 }; 1931 }; 1932 - "sexp_processor" = { 1933 - version = "4.4.0"; 1934 source = { 1935 type = "gem"; 1936 - sha256 = "1rvbxsnjqy82mq0ah6jbmakhr18kfp47gls698pf3dcrvbdisnbi"; 1937 }; 1938 }; 1939 "shoulda-matchers" = { 1940 - version = "2.1.0"; 1941 source = { 1942 type = "gem"; 1943 - sha256 = "1ilz8hsc8n8snd1q6l54mkrcm1zgvc3bxdrhinldz9bh17hyhk6s"; 1944 }; 1945 dependencies = [ 1946 "activesupport" 1947 ]; 1948 }; 1949 "sidekiq" = { 1950 - version = "2.17.0"; 1951 source = { 1952 type = "gem"; 1953 - sha256 = "0lqcl5b3x1k9m78ry2yl1vq6b4schxwcywqkwzl7cw8w642pxic1"; 1954 }; 1955 dependencies = [ 1956 "celluloid" ··· 1960 "redis-namespace" 1961 ]; 1962 }; 1963 "simple_oauth" = { 1964 version = "0.1.9"; 1965 source = { ··· 1968 }; 1969 }; 1970 "simplecov" = { 1971 - version = "0.9.0"; 1972 source = { 1973 type = "gem"; 1974 - sha256 = "1dwyb1q6mn4cy76s9givrakf5x439jmvny46qpa0ywzkli95f82g"; 1975 }; 1976 dependencies = [ 1977 "docile" 1978 - "multi_json" 1979 "simplecov-html" 1980 ]; 1981 }; 1982 "simplecov-html" = { 1983 - version = "0.8.0"; 1984 source = { 1985 type = "gem"; 1986 - sha256 = "0jhn3jql73x7hsr00wwv984iyrcg0xhf64s90zaqv2f26blkqfb9"; 1987 }; 1988 }; 1989 "sinatra" = { 1990 - version = "1.4.4"; 1991 source = { 1992 type = "gem"; 1993 - sha256 = "12iy0f92d3zyk4759flgcracrbzc3x6cilpgdkzhzgjrsm9aa5hs"; 1994 }; 1995 dependencies = [ 1996 "rack" ··· 2006 }; 2007 }; 2008 "slack-notifier" = { 2009 - version = "0.3.2"; 2010 source = { 2011 type = "gem"; 2012 - sha256 = "0126im7nm7qw03xgls5qmbldls94yjgv8fzhrnqy7140a51n65k4"; 2013 }; 2014 }; 2015 "slim" = { 2016 - version = "2.0.2"; 2017 source = { 2018 type = "gem"; 2019 - sha256 = "1sm78ai5xvqqh7zpv6c2c4iy2lakmrqfmmnyr5ha768vjxzzdk87"; 2020 }; 2021 dependencies = [ 2022 "temple" ··· 2024 ]; 2025 }; 2026 "slop" = { 2027 - version = "3.4.7"; 2028 source = { 2029 type = "gem"; 2030 - sha256 = "1x3dwljqvkzj314rwn2bxgim9xvgwnfipzg5g0kwwxfn90fpv2sn"; 2031 }; 2032 }; 2033 "spinach" = { 2034 - version = "0.8.7"; 2035 source = { 2036 type = "gem"; 2037 - sha256 = "036zrwf31iq5fh2qgins51nh9756aqyz4almznq2p36yfylihdx4"; 2038 }; 2039 dependencies = [ 2040 "colorize" 2041 "gherkin-ruby" 2042 ]; 2043 }; 2044 "spinach-rails" = { ··· 2054 ]; 2055 }; 2056 "spring" = { 2057 - version = "1.1.3"; 2058 source = { 2059 type = "gem"; 2060 - sha256 = "1ibj1d1490wys76ng4g7q8q2rglh37yqxkz2c3vv087cizr8ralj"; 2061 }; 2062 }; 2063 "spring-commands-rspec" = { 2064 - version = "1.0.1"; 2065 source = { 2066 type = "gem"; 2067 - sha256 = "1z6ghbyndpaz9pm6mw97jpgc1zvz79y3ijidji3z4ygx98imxmv1"; 2068 }; 2069 dependencies = [ 2070 "spring" ··· 2080 "spring" 2081 ]; 2082 }; 2083 "sprockets" = { 2084 - version = "2.11.0"; 2085 source = { 2086 type = "gem"; 2087 - sha256 = "082rrn7nsy18ky095zm6a9b4zfbikf60gaakplyqmkjclxk4lsmh"; 2088 }; 2089 dependencies = [ 2090 "hike" ··· 2094 ]; 2095 }; 2096 "sprockets-rails" = { 2097 - version = "2.1.3"; 2098 source = { 2099 type = "gem"; 2100 - sha256 = "12kdy9vjn3ygrxhn9jxxx0rvsq601vayrkgbr3rqcpyhqhl4s4wy"; 2101 }; 2102 dependencies = [ 2103 "actionpack" ··· 2120 }; 2121 }; 2122 "stringex" = { 2123 - version = "2.5.1"; 2124 source = { 2125 type = "gem"; 2126 - sha256 = "178ppbdm70hzadrgq55q83c3hwv6b7wixacg9kk4v6cxnns5dmfv"; 2127 }; 2128 }; 2129 "temple" = { 2130 - version = "0.6.7"; 2131 source = { 2132 type = "gem"; 2133 - sha256 = "09makksvllkzrm0vfb91xm46pq5qdp2c04cqid9i2immqcwz6x1k"; 2134 }; 2135 }; 2136 "term-ansicolor" = { 2137 - version = "1.2.2"; 2138 source = { 2139 type = "gem"; 2140 - sha256 = "1b41q1q6mqcgzq9fhzhmjvfg5sfs5v7gkb8z57r4hajcp89lflxr"; 2141 }; 2142 dependencies = [ 2143 "tins" 2144 ]; 2145 }; 2146 - "test_after_commit" = { 2147 - version = "0.2.2"; 2148 source = { 2149 type = "gem"; 2150 - sha256 = "13zsag1lbkabwkaxbwhf06d4za5r4nb0fam95rqnx3yxnyshkq4b"; 2151 }; 2152 }; 2153 - "therubyracer" = { 2154 - version = "0.12.0"; 2155 source = { 2156 type = "gem"; 2157 - sha256 = "185k2kvn2q9xznrij3swf9xp3d13h3hdc4w4ldhbrjkg7k1139q6"; 2158 }; 2159 dependencies = [ 2160 - "libv8" 2161 - "ref" 2162 ]; 2163 }; 2164 "thin" = { 2165 - version = "1.6.1"; 2166 source = { 2167 type = "gem"; 2168 - sha256 = "065xsmjb7s0gfhx0zhh6wpjxvq26n6d7vq479df9llnk68b0xf50"; 2169 }; 2170 dependencies = [ 2171 "daemons" ··· 2181 }; 2182 }; 2183 "thread_safe" = { 2184 - version = "0.3.4"; 2185 source = { 2186 type = "gem"; 2187 - sha256 = "1cil2zcdzqkyr8zrwhlg7gywryg36j4mxlxw0h0x0j0wjym5nc8n"; 2188 }; 2189 }; 2190 "tilt" = { ··· 2195 }; 2196 }; 2197 "timers" = { 2198 - version = "1.1.0"; 2199 source = { 2200 type = "gem"; 2201 - sha256 = "0x3vnkxy3bg9f6v1nhkfqkajr19glrzkmqd5a1wy8hrylx8rdfrv"; 2202 }; 2203 }; 2204 "tinder" = { 2205 - version = "1.9.3"; 2206 source = { 2207 type = "gem"; 2208 - sha256 = "0ixxyrlr1ynj9bki515byqg7j45vkvfm4s49n614whpdf8mgs1hb"; 2209 }; 2210 dependencies = [ 2211 "eventmachine" ··· 2219 ]; 2220 }; 2221 "tins" = { 2222 - version = "0.13.1"; 2223 source = { 2224 type = "gem"; 2225 - sha256 = "0c7gqgj7z1frab4r9i8dbf111l3jyd44npraz8fdds1b8qvz4fy5"; 2226 }; 2227 }; 2228 - "treetop" = { 2229 - version = "1.4.15"; 2230 source = { 2231 type = "gem"; 2232 - sha256 = "1zqj5y0mvfvyz11nhsb4d5ch0i0rfcyj64qx19mw4qhg3hh8z9pz"; 2233 }; 2234 - dependencies = [ 2235 - "polyglot" 2236 - "polyglot" 2237 - ]; 2238 }; 2239 "turbolinks" = { 2240 - version = "2.0.0"; 2241 source = { 2242 type = "gem"; 2243 - sha256 = "1zz8ff6v1chsv1clixapcmw1w62pqa1xlxlvlgxasvkscbqxhbyr"; 2244 }; 2245 dependencies = [ 2246 "coffee-rails" ··· 2269 ]; 2270 }; 2271 "uglifier" = { 2272 - version = "2.3.2"; 2273 source = { 2274 type = "gem"; 2275 - sha256 = "1w5cc90wzs4jdpvfrhqjgf4gwsg517cwz15a31p4z7hxs412z52y"; 2276 }; 2277 dependencies = [ 2278 "execjs" ··· 2297 ]; 2298 }; 2299 "unf_ext" = { 2300 - version = "0.0.6"; 2301 source = { 2302 type = "gem"; 2303 - sha256 = "07zbmkzcid6pzdqgla3456ipfdka7j1v4hsx1iaa8rbnllqbmkdg"; 2304 }; 2305 }; 2306 "unicorn" = { 2307 - version = "4.6.3"; 2308 source = { 2309 type = "gem"; 2310 - sha256 = "0rj9lwqwaklyk5vy0lqj4x7fcqb027j240waya5zvb14i8a142zx"; 2311 }; 2312 dependencies = [ 2313 "kgio" ··· 2316 ]; 2317 }; 2318 "unicorn-worker-killer" = { 2319 - version = "0.4.2"; 2320 source = { 2321 type = "gem"; 2322 - sha256 = "12y7lsqyfca9dxy387hfx4c3xjd22sj4b9xxrmdzcksighs1ja3d"; 2323 }; 2324 dependencies = [ 2325 "unicorn" 2326 ]; 2327 }; 2328 "version_sorter" = { 2329 - version = "1.1.0"; 2330 source = { 2331 type = "gem"; 2332 - sha256 = "0wvqjkj0z5yi29f6907f1jzfszq8zgrq74mapmmi9csgvqkybsmf"; 2333 }; 2334 }; 2335 "virtus" = { 2336 - version = "1.0.1"; 2337 source = { 2338 type = "gem"; 2339 - sha256 = "19j4ssjxn4ag8i08v4andlz1rnhd2dwfxh2qn2a3hq3s6xjivn03"; 2340 }; 2341 dependencies = [ 2342 "axiom-types" ··· 2356 ]; 2357 }; 2358 "webmock" = { 2359 - version = "1.16.0"; 2360 source = { 2361 type = "gem"; 2362 - sha256 = "1y2pm64qah6n9c203c90vlw8jkvbjv703y8qr2z6ikwblp8cxs49"; 2363 }; 2364 dependencies = [ 2365 "addressable" ··· 2367 ]; 2368 }; 2369 "websocket-driver" = { 2370 - version = "0.3.3"; 2371 source = { 2372 type = "gem"; 2373 - sha256 = "0f3nx6yfd7q8xz78zfc3zbkj2rwfm4ri9viqjy1dmnkhwg0h96jf"; 2374 }; 2375 }; 2376 "wikicloth" = { 2377 version = "0.8.1"; 2378 source = { ··· 2395 "nokogiri" 2396 ]; 2397 }; 2398 - }
··· 1 { 2 + "CFPropertyList" = { 3 + version = "2.3.1"; 4 + source = { 5 + type = "gem"; 6 + sha256 = "1wnk3gxnhfafbhgp0ic7qhzlx3lhv04v8nws2s31ii5s8135hs6k"; 7 + }; 8 + }; 9 "RedCloth" = { 10 version = "4.2.9"; 11 source = { ··· 21 }; 22 }; 23 "actionmailer" = { 24 + version = "4.1.12"; 25 source = { 26 type = "gem"; 27 + sha256 = "0p1hydjf5vb4na4fs29v7cdknfq3d6qvmld2vbafbh78kkclxi2m"; 28 }; 29 dependencies = [ 30 "actionpack" ··· 33 ]; 34 }; 35 "actionpack" = { 36 + version = "4.1.12"; 37 source = { 38 type = "gem"; 39 + sha256 = "19bryymqlapsvn9df6q2ba4hvw9dwpp4fjc7i6lwffkadc4snkjy"; 40 }; 41 dependencies = [ 42 "actionview" ··· 46 ]; 47 }; 48 "actionview" = { 49 + version = "4.1.12"; 50 source = { 51 type = "gem"; 52 + sha256 = "1bv8qifaqa514z64zgfw3r4i120h2swwgpfk79xlrac21q6ps70n"; 53 }; 54 dependencies = [ 55 "activesupport" ··· 58 ]; 59 }; 60 "activemodel" = { 61 + version = "4.1.12"; 62 source = { 63 type = "gem"; 64 + sha256 = "16429dg04s64g834svi7ghq486adr32gxr5p9kac2z6mjp8ggjr3"; 65 }; 66 dependencies = [ 67 "activesupport" ··· 69 ]; 70 }; 71 "activerecord" = { 72 + version = "4.1.12"; 73 source = { 74 type = "gem"; 75 + sha256 = "1w3dbmbdk4whm5p1l6d2ky3xpl59lfcr9p3hwd41dz77ynpi5dr5"; 76 }; 77 dependencies = [ 78 "activemodel" ··· 80 "arel" 81 ]; 82 }; 83 + "activerecord-deprecated_finders" = { 84 + version = "1.0.4"; 85 + source = { 86 + type = "gem"; 87 + sha256 = "03xplckz7v3nm6inqkwdd44h6gpbpql0v02jc1rz46a38rd6cj6m"; 88 + }; 89 + }; 90 + "activerecord-session_store" = { 91 + version = "0.1.1"; 92 + source = { 93 + type = "gem"; 94 + sha256 = "15dgx7jjp8iqqzjq2q3a6fsmnhvjwspbsz1s1gd6zp744k6xbrjh"; 95 + }; 96 + dependencies = [ 97 + "actionpack" 98 + "activerecord" 99 + "railties" 100 + ]; 101 + }; 102 + "activeresource" = { 103 + version = "4.0.0"; 104 + source = { 105 + type = "gem"; 106 + sha256 = "0fc5igjijyjzsl9q5kybkdzhc92zv8wsv0ifb0y90i632jx6d4jq"; 107 + }; 108 + dependencies = [ 109 + "activemodel" 110 + "activesupport" 111 + "rails-observers" 112 + ]; 113 + }; 114 "activesupport" = { 115 + version = "4.1.12"; 116 source = { 117 type = "gem"; 118 + sha256 = "166jvrmdwayacnrd4z3rs2d6y0av3xnc18k6120ah13c2ipw69hn"; 119 }; 120 dependencies = [ 121 "i18n" ··· 126 ]; 127 }; 128 "acts-as-taggable-on" = { 129 + version = "3.5.0"; 130 source = { 131 type = "gem"; 132 + sha256 = "0bz0z8dlp3fjzah9y9b6rr9mkidsav9l4hdm51fnq1gd05yv3pr7"; 133 }; 134 dependencies = [ 135 + "activerecord" 136 ]; 137 }; 138 "addressable" = { 139 + version = "2.3.8"; 140 source = { 141 type = "gem"; 142 + sha256 = "1533axm85gpz267km9gnfarf9c78g2scrysd6b8yw33vmhkz2km6"; 143 }; 144 }; 145 + "after_commit_queue" = { 146 + version = "1.1.0"; 147 + source = { 148 + type = "gem"; 149 + sha256 = "0m7qwbzvxb2xqramf38pzg8ld91s4cy2v0fs26dnmnqr1jf11z4y"; 150 + }; 151 + dependencies = [ 152 + "rails" 153 + ]; 154 + }; 155 "annotate" = { 156 + version = "2.6.10"; 157 source = { 158 type = "gem"; 159 + sha256 = "1wdw9phsv2dndgid3pd8h0hl4zycwy11jc9iz6prwza0xax0i7hg"; 160 }; 161 dependencies = [ 162 "activerecord" ··· 170 sha256 = "0dhnc20h1v8ml3nmkxq92rr7qxxpk6ixhwvwhgl2dbw9mmxz0hf9"; 171 }; 172 }; 173 + "asana" = { 174 + version = "0.0.6"; 175 + source = { 176 + type = "gem"; 177 + sha256 = "1x325pywh3d91qrg916gh8i5g13h4qzgi03zc93x6v4m4rj79dcp"; 178 + }; 179 + dependencies = [ 180 + "activeresource" 181 + ]; 182 + }; 183 "asciidoctor" = { 184 + version = "1.5.2"; 185 + source = { 186 + type = "gem"; 187 + sha256 = "0hs99bjvnf1nw49nwq62mi5x65x2jlvwqa0xllsi3zfikafsm1y9"; 188 + }; 189 + }; 190 + "ast" = { 191 + version = "2.1.0"; 192 + source = { 193 + type = "gem"; 194 + sha256 = "102bywfxrv0w3n4s6lg25d7xxshd344sc7ijslqmganj5bany1pk"; 195 + }; 196 + }; 197 + "astrolabe" = { 198 + version = "1.3.1"; 199 + source = { 200 + type = "gem"; 201 + sha256 = "0ybbmjxaf529vvhrj4y8d4jpf87f3hgczydzywyg1d04gggjx7l7"; 202 + }; 203 + dependencies = [ 204 + "parser" 205 + ]; 206 + }; 207 + "attr_encrypted" = { 208 + version = "1.3.4"; 209 + source = { 210 + type = "gem"; 211 + sha256 = "1hm2844qm37kflqq5v0x2irwasbhcblhp40qk10m3wlkj4m9wp8p"; 212 + }; 213 + dependencies = [ 214 + "encryptor" 215 + ]; 216 + }; 217 + "attr_required" = { 218 + version = "1.0.0"; 219 + source = { 220 + type = "gem"; 221 + sha256 = "0pawa2i7gw9ppj6fq6y288da1ncjpzsmc6kx7z63mjjvypa5q3dc"; 222 + }; 223 + }; 224 + "autoprefixer-rails" = { 225 + version = "5.2.1.2"; 226 source = { 227 type = "gem"; 228 + sha256 = "129kr8hiyzcnj4x3n14nnp7f7scps9v3d690i7fjzpq8i4n9gz8g"; 229 }; 230 + dependencies = [ 231 + "execjs" 232 + "json" 233 + ]; 234 }; 235 "awesome_print" = { 236 version = "1.2.0"; ··· 240 }; 241 }; 242 "axiom-types" = { 243 + version = "0.1.1"; 244 source = { 245 type = "gem"; 246 + sha256 = "10q3k04pll041mkgy0m5fn2b1lazm6ly1drdbcczl5p57lzi3zy1"; 247 }; 248 dependencies = [ 249 "descendants_tracker" 250 "ice_nine" 251 + "thread_safe" 252 ]; 253 }; 254 "bcrypt" = { 255 + version = "3.1.10"; 256 source = { 257 type = "gem"; 258 + sha256 = "15cf7zzlj9b0xcx12jf8fmnpc8g1b0yhxal1yr5p7ny3mrz5pll6"; 259 }; 260 }; 261 "better_errors" = { ··· 280 ]; 281 }; 282 "bootstrap-sass" = { 283 + version = "3.3.5"; 284 + source = { 285 + type = "gem"; 286 + sha256 = "0gnbl3jfi7x491kb5b2brhqr981wzg6r9sc907anhq9y727d96iv"; 287 + }; 288 + dependencies = [ 289 + "autoprefixer-rails" 290 + "sass" 291 + ]; 292 + }; 293 + "brakeman" = { 294 + version = "3.0.1"; 295 source = { 296 type = "gem"; 297 + sha256 = "0c3pwqhan5qpkmymmp4zpr6j1v3xrvvla9adsd0z9nx1dbc7llry"; 298 }; 299 dependencies = [ 300 + "erubis" 301 + "fastercsv" 302 + "haml" 303 + "highline" 304 + "multi_json" 305 + "ruby2ruby" 306 + "ruby_parser" 307 "sass" 308 + "terminal-table" 309 ]; 310 }; 311 + "browser" = { 312 + version = "1.0.0"; 313 + source = { 314 + type = "gem"; 315 + sha256 = "03pmj759wngl03lacn8mdhjn6mc5f8zn08mz6k5hq8czgwcwhjxi"; 316 + }; 317 + }; 318 "builder" = { 319 version = "3.2.2"; 320 source = { ··· 322 sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; 323 }; 324 }; 325 + "byebug" = { 326 + version = "6.0.2"; 327 + source = { 328 + type = "gem"; 329 + sha256 = "0537h9qbhr6csahmzyn4lk1g5b2lcligbzd21gfy93nx9lbfdnzc"; 330 + }; 331 + }; 332 + "cal-heatmap-rails" = { 333 + version = "0.0.1"; 334 + source = { 335 + type = "gem"; 336 + sha256 = "07qp74hi1612xgmkfvk1dmc4n79lc7dfkcgqjprnlwb6nkqa940m"; 337 + }; 338 + }; 339 "capybara" = { 340 + version = "2.4.4"; 341 source = { 342 type = "gem"; 343 + sha256 = "114k4xi4nfbp3jfbxgwa3fksbwsyibx74gbdqpcgg3dxpmzkaa4f"; 344 }; 345 dependencies = [ 346 "mime-types" ··· 350 "xpath" 351 ]; 352 }; 353 + "capybara-screenshot" = { 354 + version = "1.0.11"; 355 + source = { 356 + type = "gem"; 357 + sha256 = "17v1wihr3aqrxhrwswkdpdklj1xsfcaksblh1y8hixvm9bqfyz3y"; 358 + }; 359 + dependencies = [ 360 + "capybara" 361 + "launchy" 362 + ]; 363 + }; 364 "carrierwave" = { 365 version = "0.9.0"; 366 source = { ··· 374 ]; 375 }; 376 "celluloid" = { 377 + version = "0.16.0"; 378 source = { 379 type = "gem"; 380 + sha256 = "044xk0y7i1xjafzv7blzj5r56s7zr8nzb619arkrl390mf19jxv3"; 381 }; 382 dependencies = [ 383 "timers" ··· 390 sha256 = "1vyzsr3r2bwig9knyhay1m7i828w9x5zhma44iajyrbs1ypvfbg5"; 391 }; 392 }; 393 + "chronic" = { 394 + version = "0.10.2"; 395 + source = { 396 + type = "gem"; 397 + sha256 = "1hrdkn4g8x7dlzxwb1rfgr8kw3bp4ywg5l4y4i9c2g5cwv62yvvn"; 398 + }; 399 + }; 400 + "chunky_png" = { 401 + version = "1.3.4"; 402 source = { 403 type = "gem"; 404 + sha256 = "0n5xhkj3vffihl3h9s8yjzazqaqcm4p1nyxa1w2dk3fkpzvb0wfw"; 405 }; 406 }; 407 + "cliver" = { 408 + version = "0.3.2"; 409 source = { 410 type = "gem"; 411 + sha256 = "096f4rj7virwvqxhkavy0v55rax10r4jqf8cymbvn4n631948xc7"; 412 }; 413 }; 414 "coderay" = { 415 version = "1.1.0"; ··· 429 ]; 430 }; 431 "coffee-rails" = { 432 + version = "4.1.0"; 433 source = { 434 type = "gem"; 435 + sha256 = "0p3zhs44gsy1p90nmghihzfyl7bsk8kv6j3q7rj3bn74wg8w7nqs"; 436 }; 437 dependencies = [ 438 "coffee-script" ··· 440 ]; 441 }; 442 "coffee-script" = { 443 + version = "2.4.1"; 444 source = { 445 type = "gem"; 446 + sha256 = "0rc7scyk7mnpfxqv5yy4y5q1hx3i7q3ahplcp4bq2g5r24g2izl2"; 447 }; 448 dependencies = [ 449 "coffee-script-source" ··· 451 ]; 452 }; 453 "coffee-script-source" = { 454 + version = "1.9.1.1"; 455 source = { 456 type = "gem"; 457 + sha256 = "1arfrwyzw4sn7nnaq8jji5sv855rp4c5pvmzkabbdgca0w1cxfq5"; 458 }; 459 }; 460 "colored" = { ··· 472 }; 473 }; 474 "connection_pool" = { 475 + version = "2.2.0"; 476 source = { 477 type = "gem"; 478 + sha256 = "1b2bb3k39ni5mzcnqlv9y4yjkbin20s7dkwzp0jw2jf1rmzcgrmy"; 479 }; 480 }; 481 "coveralls" = { 482 + version = "0.8.2"; 483 source = { 484 type = "gem"; 485 + sha256 = "0ds63q3g8zp23813hsvjjqpjglwr76ld4zqbbdhc9ads9l988axz"; 486 }; 487 dependencies = [ 488 + "json" 489 "rest-client" 490 "simplecov" 491 "term-ansicolor" ··· 493 ]; 494 }; 495 "crack" = { 496 + version = "0.4.2"; 497 source = { 498 type = "gem"; 499 + sha256 = "1il94m92sz32nw5i6hdq14f1a2c3s9hza9zn6l95fvqhabq38k7a"; 500 }; 501 dependencies = [ 502 "safe_yaml" ··· 510 }; 511 }; 512 "d3_rails" = { 513 + version = "3.5.6"; 514 source = { 515 type = "gem"; 516 + sha256 = "0faz49chi08zxqwwdzzcb468gmcfmpv1s58y4c431kpa6kyh8qsm"; 517 }; 518 dependencies = [ 519 "railties" 520 ]; 521 }; 522 "daemons" = { 523 + version = "1.2.3"; 524 source = { 525 type = "gem"; 526 + sha256 = "0b839hryy9sg7x3knsa1d6vfiyvn0mlsnhsb6an8zsalyrz1zgqg"; 527 }; 528 }; 529 "database_cleaner" = { 530 + version = "1.4.1"; 531 source = { 532 type = "gem"; 533 + sha256 = "0n5r7kvsmknk876v3scdphfnvllr9157fa5q7j5fczg8j5qm6kf0"; 534 }; 535 }; 536 "debug_inspector" = { ··· 541 }; 542 }; 543 "default_value_for" = { 544 + version = "3.0.1"; 545 source = { 546 type = "gem"; 547 + sha256 = "1z4lrba4y1c3y0rxw8321qbwsb3nr6c2igrpksfvz93yhc9m6xm0"; 548 }; 549 dependencies = [ 550 "activerecord" 551 ]; 552 }; 553 "descendants_tracker" = { 554 + version = "0.0.4"; 555 source = { 556 type = "gem"; 557 + sha256 = "15q8g3fcqyb41qixn6cky0k3p86291y7xsh1jfd851dvrza1vi79"; 558 }; 559 + dependencies = [ 560 + "thread_safe" 561 + ]; 562 }; 563 "devise" = { 564 + version = "3.5.2"; 565 source = { 566 type = "gem"; 567 + sha256 = "1wj88i2hyhcnifj606vzgf2q68yhcpyrsx7bc11h93cma51z59c3"; 568 }; 569 dependencies = [ 570 "bcrypt" 571 "orm_adapter" 572 "railties" 573 + "responders" 574 "thread_safe" 575 "warden" 576 ]; ··· 585 "devise" 586 ]; 587 }; 588 + "devise-two-factor" = { 589 + version = "2.0.0"; 590 + source = { 591 + type = "gem"; 592 + sha256 = "1xzaagz6fr9cbq7cj8g7sahx6sxxsc1jyja462caa0gjang9yrhr"; 593 + }; 594 + dependencies = [ 595 + "activesupport" 596 + "attr_encrypted" 597 + "devise" 598 + "railties" 599 + "rotp" 600 + ]; 601 + }; 602 "diff-lcs" = { 603 version = "1.2.5"; 604 source = { ··· 607 }; 608 }; 609 "diffy" = { 610 + version = "3.0.7"; 611 source = { 612 type = "gem"; 613 + sha256 = "0il0ri511g9rm88qbvncbzgwc6wk6265hmnf7grcczmrs1z49vl0"; 614 }; 615 }; 616 "docile" = { ··· 620 sha256 = "0m8j31whq7bm5ljgmsrlfkiqvacrw6iz9wq10r3gwrv5785y8gjx"; 621 }; 622 }; 623 + "domain_name" = { 624 + version = "0.5.24"; 625 source = { 626 type = "gem"; 627 + sha256 = "1xjm5arwc35wryn0hbfldx2pfhwx5qilkv7yms4kz0jri3m6mgcc"; 628 }; 629 + dependencies = [ 630 + "unf" 631 + ]; 632 + }; 633 + "doorkeeper" = { 634 + version = "2.1.4"; 635 + source = { 636 + type = "gem"; 637 + sha256 = "00akgshmz85kxvf35qsag80qbxzjvmkmksjy96zx44ckianxwahl"; 638 + }; 639 + dependencies = [ 640 + "railties" 641 + ]; 642 }; 643 "dropzonejs-rails" = { 644 + version = "0.7.1"; 645 source = { 646 type = "gem"; 647 + sha256 = "0spfjkji6v98996bc320sx3ar3sflkpbjpzwg6cvbycwfn29fjfy"; 648 }; 649 dependencies = [ 650 "rails" 651 ]; 652 }; 653 + "email_reply_parser" = { 654 + version = "0.5.8"; 655 + source = { 656 + type = "gem"; 657 + sha256 = "0k2p229mv7xn7q627zwmvhrcvba4b9m70pw2jfjm6iimg2vmf22r"; 658 + }; 659 + }; 660 "email_spec" = { 661 + version = "1.6.0"; 662 source = { 663 type = "gem"; 664 + sha256 = "00p1cc69ncrgg7m45va43pszip8anx5735w1lsb7p5ygkyw8nnpv"; 665 }; 666 dependencies = [ 667 "launchy" 668 "mail" 669 ]; 670 }; 671 + "encryptor" = { 672 + version = "1.3.0"; 673 source = { 674 type = "gem"; 675 + sha256 = "04wqqda081h7hmhwjjx1yqxprxjk8s5jgv837xqv1bpxiv7f4v1y"; 676 }; 677 }; 678 "enumerize" = { 679 version = "0.7.0"; ··· 686 ]; 687 }; 688 "equalizer" = { 689 + version = "0.0.11"; 690 source = { 691 type = "gem"; 692 + sha256 = "1kjmx3fygx8njxfrwcmn7clfhjhb6bvv3scy2lyyi0wqyi3brra4"; 693 }; 694 }; 695 "erubis" = { ··· 707 }; 708 }; 709 "eventmachine" = { 710 + version = "1.0.8"; 711 source = { 712 type = "gem"; 713 + sha256 = "1frvpk3p73xc64qkn0ymll3flvn4xcycq5yx8a43zd3gyzc1ifjp"; 714 }; 715 }; 716 "excon" = { 717 + version = "0.45.4"; 718 source = { 719 type = "gem"; 720 + sha256 = "1shb4g3dhsfkywgjv6123yrvp2c8bvi8hqmq47iqa5lp72sn4b4w"; 721 }; 722 }; 723 "execjs" = { 724 + version = "2.6.0"; 725 source = { 726 type = "gem"; 727 + sha256 = "0grlxwiccbnflxs30r3h7g23xnps5knav1jyqkk3anvm8363ifjw"; 728 }; 729 }; 730 "expression_parser" = { ··· 756 ]; 757 }; 758 "faraday" = { 759 + version = "0.8.10"; 760 source = { 761 type = "gem"; 762 + sha256 = "093hrmrx3jn9969q6c9cjms2k73aqwhs03kij378kg1d5izr4r6f"; 763 }; 764 dependencies = [ 765 "multipart-post" 766 ]; 767 }; 768 "faraday_middleware" = { 769 + version = "0.10.0"; 770 source = { 771 type = "gem"; 772 + sha256 = "0nxia26xzy8i56qfyz1bg8dg9yb26swpgci8n5jry8mh4bnx5r5h"; 773 }; 774 dependencies = [ 775 "faraday" 776 ]; 777 }; 778 + "fastercsv" = { 779 + version = "1.5.5"; 780 + source = { 781 + type = "gem"; 782 + sha256 = "1df3vfgw5wg0s405z0pj0rfcvnl9q6wak7ka8gn0xqg4cag1k66h"; 783 + }; 784 + }; 785 "ffaker" = { 786 + version = "2.0.0"; 787 source = { 788 type = "gem"; 789 + sha256 = "19fnbbsw87asyb1hvkr870l2yldah2jcjb8074pgyrma5lynwmn0"; 790 }; 791 }; 792 "ffi" = { 793 + version = "1.9.10"; 794 source = { 795 type = "gem"; 796 + sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; 797 }; 798 }; 799 + "fission" = { 800 + version = "0.5.0"; 801 + source = { 802 + type = "gem"; 803 + sha256 = "09pmp1j1rr8r3pcmbn2na2ls7s1j9ijbxj99xi3a8r6v5xhjdjzh"; 804 + }; 805 + dependencies = [ 806 + "CFPropertyList" 807 + ]; 808 + }; 809 + "flowdock" = { 810 + version = "0.7.0"; 811 + source = { 812 + type = "gem"; 813 + sha256 = "0wzqj35mn2x2gcy88y00h3jz57ldkkidkwy63jxvmqdlz759pds5"; 814 + }; 815 + dependencies = [ 816 + "httparty" 817 + "multi_json" 818 + ]; 819 + }; 820 "fog" = { 821 + version = "1.25.0"; 822 source = { 823 type = "gem"; 824 + sha256 = "0zncds3qj5n3i780y6y6sy5h1gg0kwiyiirxyisbd8p0ywwr8bc3"; 825 }; 826 dependencies = [ 827 "fog-brightbox" 828 "fog-core" 829 "fog-json" 830 + "fog-profitbricks" 831 + "fog-radosgw" 832 + "fog-sakuracloud" 833 + "fog-softlayer" 834 + "fog-terremark" 835 + "fog-vmfusion" 836 + "fog-voxel" 837 + "fog-xml" 838 + "ipaddress" 839 "nokogiri" 840 + "opennebula" 841 ]; 842 }; 843 "fog-brightbox" = { 844 + version = "0.9.0"; 845 source = { 846 type = "gem"; 847 + sha256 = "01a6ydv7y02zbid8s9mqcxpc0k0hig39ap7mrwj9vp6z7mm9dydv"; 848 }; 849 dependencies = [ 850 "fog-core" 851 "fog-json" 852 + "inflecto" 853 ]; 854 }; 855 "fog-core" = { 856 + version = "1.32.1"; 857 source = { 858 type = "gem"; 859 + sha256 = "0pnm3glgha2hxmhjvgp7f088vzdgv08q8c6w8y9c2cys3b4fx83m"; 860 }; 861 dependencies = [ 862 "builder" ··· 868 ]; 869 }; 870 "fog-json" = { 871 + version = "1.0.2"; 872 source = { 873 type = "gem"; 874 + sha256 = "0advkkdjajkym77r3c0bg2rlahl2akj0vl4p5r273k2qmi16n00r"; 875 }; 876 dependencies = [ 877 + "fog-core" 878 "multi_json" 879 ]; 880 }; 881 + "fog-profitbricks" = { 882 + version = "0.0.5"; 883 + source = { 884 + type = "gem"; 885 + sha256 = "154sqs2dcmvg21v4m3fj8f09z5i70sq8a485v6rdygsffs8xrycn"; 886 + }; 887 + dependencies = [ 888 + "fog-core" 889 + "fog-xml" 890 + "nokogiri" 891 + ]; 892 + }; 893 + "fog-radosgw" = { 894 + version = "0.0.4"; 895 + source = { 896 + type = "gem"; 897 + sha256 = "1pxbvmr4dsqx4x2klwnciyhki4r5ryr9y0hi6xmm3n6fdv4ii7k3"; 898 + }; 899 + dependencies = [ 900 + "fog-core" 901 + "fog-json" 902 + "fog-xml" 903 + ]; 904 + }; 905 + "fog-sakuracloud" = { 906 + version = "1.0.1"; 907 + source = { 908 + type = "gem"; 909 + sha256 = "1s16b48kh7y03hjv74ccmlfwhqqq7j7m4k6cywrgbyip8n3258n8"; 910 + }; 911 + dependencies = [ 912 + "fog-core" 913 + "fog-json" 914 + ]; 915 + }; 916 + "fog-softlayer" = { 917 + version = "0.4.7"; 918 + source = { 919 + type = "gem"; 920 + sha256 = "0fgfbhqnyp8ywymvflflhvbns54d1432x57pgpnfy8k1cxvhv9b8"; 921 + }; 922 + dependencies = [ 923 + "fog-core" 924 + "fog-json" 925 + ]; 926 + }; 927 + "fog-terremark" = { 928 + version = "0.1.0"; 929 + source = { 930 + type = "gem"; 931 + sha256 = "01lfkh9jppj0iknlklmwyb7ym3bfhkq58m3absb6rf5a5mcwi3lf"; 932 + }; 933 + dependencies = [ 934 + "fog-core" 935 + "fog-xml" 936 + ]; 937 + }; 938 + "fog-vmfusion" = { 939 + version = "0.1.0"; 940 + source = { 941 + type = "gem"; 942 + sha256 = "0g0l0k9ylxk1h9pzqr6h2ba98fl47lpp3j19lqv4jxw0iw1rqxn4"; 943 + }; 944 + dependencies = [ 945 + "fission" 946 + "fog-core" 947 + ]; 948 + }; 949 + "fog-voxel" = { 950 + version = "0.1.0"; 951 + source = { 952 + type = "gem"; 953 + sha256 = "10skdnj59yf4jpvq769njjrvh2l0wzaa7liva8n78qq003mvmfgx"; 954 + }; 955 + dependencies = [ 956 + "fog-core" 957 + "fog-xml" 958 + ]; 959 + }; 960 + "fog-xml" = { 961 + version = "0.1.2"; 962 + source = { 963 + type = "gem"; 964 + sha256 = "1576sbzza47z48p0k9h1wg3rhgcvcvdd1dfz3xx1cgahwr564fqa"; 965 + }; 966 + dependencies = [ 967 + "fog-core" 968 + "nokogiri" 969 + ]; 970 + }; 971 "font-awesome-rails" = { 972 + version = "4.4.0.0"; 973 source = { 974 type = "gem"; 975 + sha256 = "0igrwlkgpggpfdy3f4kzsz22m14rxx5xnvz3if16czqjlkq4kbbx"; 976 }; 977 dependencies = [ 978 "railties" 979 ]; 980 }; 981 "foreman" = { 982 + version = "0.78.0"; 983 source = { 984 type = "gem"; 985 + sha256 = "1caz8mi7gq1hs4l1flcyyw1iw1bdvdbhppsvy12akr01k3s17xaq"; 986 }; 987 dependencies = [ 988 "thor" 989 ]; 990 }; 991 "formatador" = { 992 + version = "0.2.5"; 993 source = { 994 type = "gem"; 995 + sha256 = "1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"; 996 }; 997 }; 998 + "fuubar" = { 999 + version = "2.0.0"; 1000 + source = { 1001 + type = "gem"; 1002 + sha256 = "0xwqs24y8s73aayh39si17kccsmr0bjgmi6jrjyfp7gkjb6iyhpv"; 1003 + }; 1004 + dependencies = [ 1005 + "rspec" 1006 + "ruby-progressbar" 1007 + ]; 1008 + }; 1009 "gemnasium-gitlab-service" = { 1010 + version = "0.2.6"; 1011 source = { 1012 type = "gem"; 1013 + sha256 = "1qv7fkahmqkah3770ycrxd0x2ais4z41hb43a0r8q8wcdklns3m3"; 1014 }; 1015 dependencies = [ 1016 "rugged" 1017 ]; 1018 }; 1019 + "gemojione" = { 1020 + version = "2.0.1"; 1021 source = { 1022 type = "gem"; 1023 + sha256 = "0655l0vgs0hbz11s2nlpwwj7df66cxlvv94iz7mhf04qrr5mi26q"; 1024 }; 1025 dependencies = [ 1026 + "json" 1027 ]; 1028 }; 1029 + "get_process_mem" = { 1030 + version = "0.2.0"; 1031 + source = { 1032 + type = "gem"; 1033 + sha256 = "025f7v6bpbgsa2nr0hzv2riggj8qmzbwcyxfgjidpmwh5grh7j29"; 1034 + }; 1035 + }; 1036 + "gherkin-ruby" = { 1037 + version = "0.3.2"; 1038 + source = { 1039 + type = "gem"; 1040 + sha256 = "18ay7yiibf4sl9n94k7mbi4k5zj2igl4j71qcmkswv69znyx0sn1"; 1041 + }; 1042 + }; 1043 "github-markup" = { 1044 + version = "1.3.3"; 1045 source = { 1046 type = "gem"; 1047 + sha256 = "01r901wcgn0gs0n9h684gs5n90y1vaj9lxnx4z5ig611jwa43ivq"; 1048 }; 1049 }; 1050 "gitlab-flowdock-git-hook" = { 1051 + version = "1.0.1"; 1052 source = { 1053 type = "gem"; 1054 + sha256 = "1s3a10cdbh4xy732b92zcsm5zyc1lhi5v29d76j8mwbqmj11a2p8"; 1055 }; 1056 dependencies = [ 1057 + "flowdock" 1058 "gitlab-grit" 1059 "multi_json" 1060 ]; 1061 }; 1062 "gitlab-grit" = { 1063 + version = "2.7.3"; 1064 source = { 1065 type = "gem"; 1066 + sha256 = "0nv8shx7w7fww8lf5a2rbvf7bq173rllm381m6x7g1i0qqc68q1b"; 1067 }; 1068 dependencies = [ 1069 "charlock_holmes" ··· 1073 ]; 1074 }; 1075 "gitlab-linguist" = { 1076 + version = "3.0.1"; 1077 source = { 1078 type = "gem"; 1079 + sha256 = "14ydmxmdm7j56nwlcf4ai08mpc7d3mbfhida52p1zljshbvda5ib"; 1080 }; 1081 dependencies = [ 1082 "charlock_holmes" ··· 1085 ]; 1086 }; 1087 "gitlab_emoji" = { 1088 + version = "0.1.1"; 1089 source = { 1090 type = "gem"; 1091 + sha256 = "13jj6ah88x8y6cr5c82j78a4mi5g88a7vpqf617zpcdiabmr0gl6"; 1092 }; 1093 dependencies = [ 1094 + "gemojione" 1095 ]; 1096 }; 1097 "gitlab_git" = { 1098 + version = "7.2.15"; 1099 source = { 1100 type = "gem"; 1101 + sha256 = "1afa645sj322sfy4h6hksi78m87qgvslmf8rgzlqsa4b6zf4w4x2"; 1102 }; 1103 dependencies = [ 1104 "activesupport" ··· 1115 }; 1116 }; 1117 "gitlab_omniauth-ldap" = { 1118 + version = "1.2.1"; 1119 source = { 1120 type = "gem"; 1121 + sha256 = "1vbdyi57vvlrigyfhmqrnkw801x57fwa3gxvj1rj2bn9ig5186ri"; 1122 }; 1123 dependencies = [ 1124 "net-ldap" ··· 1127 "rubyntlm" 1128 ]; 1129 }; 1130 + "gollum-grit_adapter" = { 1131 + version = "1.0.0"; 1132 + source = { 1133 + type = "gem"; 1134 + sha256 = "02c5qfq0s0kx2ifnpbnbgz6258fl7rchzzzc7vpx72shi8gbpac7"; 1135 + }; 1136 + dependencies = [ 1137 + "gitlab-grit" 1138 + ]; 1139 + }; 1140 "gollum-lib" = { 1141 + version = "4.0.3"; 1142 source = { 1143 type = "gem"; 1144 + sha256 = "1f8jzxza1ckpyzyk137rqd212vfk2ac2mn1pp1wi880s4ynahyky"; 1145 }; 1146 dependencies = [ 1147 "github-markup" 1148 + "gollum-grit_adapter" 1149 "nokogiri" 1150 "rouge" 1151 "sanitize" ··· 1153 ]; 1154 }; 1155 "gon" = { 1156 + version = "5.0.4"; 1157 source = { 1158 type = "gem"; 1159 + sha256 = "0gdl6zhj5k8ma3mwm00kjfa12w0l6br9kyyxvfj90cw9irfi049r"; 1160 }; 1161 dependencies = [ 1162 "actionpack" ··· 1182 ]; 1183 }; 1184 "grape-entity" = { 1185 + version = "0.4.8"; 1186 source = { 1187 type = "gem"; 1188 + sha256 = "0hxghs2p9ncvdwhp6dwr1a74g552c49dd0jzy0szp4pg2xjbgjk8"; 1189 }; 1190 dependencies = [ 1191 "activesupport" ··· 1200 }; 1201 }; 1202 "guard" = { 1203 + version = "2.13.0"; 1204 source = { 1205 type = "gem"; 1206 + sha256 = "0p3ndfmi6sdw55c7j19pyb2ymlby1vyxlp0k47366im1vi70b7gf"; 1207 }; 1208 dependencies = [ 1209 "formatador" 1210 "listen" 1211 "lumberjack" 1212 + "nenv" 1213 + "notiffany" 1214 "pry" 1215 + "shellany" 1216 "thor" 1217 ]; 1218 }; 1219 "guard-rspec" = { 1220 + version = "4.2.10"; 1221 source = { 1222 type = "gem"; 1223 + sha256 = "1mm03i1knmhmdqs4ni03nda7jy3s34c2nxf5sjq1cmywk9c0bn0r"; 1224 }; 1225 dependencies = [ 1226 "guard" 1227 "rspec" 1228 ]; 1229 }; 1230 "haml" = { 1231 + version = "4.0.7"; 1232 source = { 1233 type = "gem"; 1234 + sha256 = "0mrzjgkygvfii66bbylj2j93na8i89998yi01fin3whwqbvx0m1p"; 1235 }; 1236 dependencies = [ 1237 "tilt" ··· 1257 sha256 = "08w9ask37zh5w989b6igair3zf8gwllyzix97rlabxglif9f9qd9"; 1258 }; 1259 }; 1260 + "highline" = { 1261 + version = "1.6.21"; 1262 + source = { 1263 + type = "gem"; 1264 + sha256 = "06bml1fjsnrhd956wqq5k3w8cyd09rv1vixdpa3zzkl6xs72jdn1"; 1265 + }; 1266 + }; 1267 "hike" = { 1268 version = "1.2.3"; 1269 source = { ··· 1272 }; 1273 }; 1274 "hipchat" = { 1275 + version = "1.5.2"; 1276 source = { 1277 type = "gem"; 1278 + sha256 = "0hgy5jav479vbzzk53lazhpjj094dcsqw6w1d6zjn52p72bwq60k"; 1279 }; 1280 dependencies = [ 1281 "httparty" 1282 + "mimemagic" 1283 ]; 1284 + }; 1285 + "hitimes" = { 1286 + version = "1.2.3"; 1287 + source = { 1288 + type = "gem"; 1289 + sha256 = "1fr9raz7652bnnx09dllyjdlnwdxsnl0ig5hq9s4s8vackvmckv4"; 1290 + }; 1291 }; 1292 "html-pipeline" = { 1293 version = "1.11.0"; ··· 1300 "nokogiri" 1301 ]; 1302 }; 1303 + "http-cookie" = { 1304 + version = "1.0.2"; 1305 source = { 1306 type = "gem"; 1307 + sha256 = "0cz2fdkngs3jc5w32a6xcl511hy03a7zdiy988jk1sf3bf5v3hdw"; 1308 }; 1309 dependencies = [ 1310 + "domain_name" 1311 ]; 1312 }; 1313 "http_parser.rb" = { ··· 1318 }; 1319 }; 1320 "httparty" = { 1321 + version = "0.13.5"; 1322 source = { 1323 type = "gem"; 1324 + sha256 = "1m93fbpwydzzwhc2zf2qkj6lrbcabpy7xhx7wb2mnbmgh0fs7ff9"; 1325 }; 1326 dependencies = [ 1327 "json" 1328 "multi_xml" 1329 ]; 1330 }; 1331 + "httpclient" = { 1332 + version = "2.6.0.1"; 1333 source = { 1334 type = "gem"; 1335 + sha256 = "0haz4s9xnzr73mkfpgabspj43bhfm9znmpmgdk74n6gih1xlrx1l"; 1336 }; 1337 }; 1338 "i18n" = { 1339 + version = "0.7.0"; 1340 source = { 1341 type = "gem"; 1342 + sha256 = "1i5z1ykl8zhszsxcs8mzl8d0dxgs3ylz8qlzrw74jb0gplkx6758"; 1343 + }; 1344 + }; 1345 + "ice_cube" = { 1346 + version = "0.11.1"; 1347 + source = { 1348 + type = "gem"; 1349 + sha256 = "12y23nczfrgslpfqam90076x603xhlpv3fyh8mv49gks4qn2wk20"; 1350 }; 1351 }; 1352 "ice_nine" = { 1353 + version = "0.11.1"; 1354 source = { 1355 type = "gem"; 1356 + sha256 = "0i674zq0hl6rd0wcd12ni38linfja4k0y3mk5barjb4a6f7rcmkd"; 1357 }; 1358 }; 1359 + "inflecto" = { 1360 + version = "0.0.2"; 1361 source = { 1362 type = "gem"; 1363 + sha256 = "085l5axmvqw59mw5jg454a3m3gr67ckq9405a075isdsn7bm3sp4"; 1364 }; 1365 }; 1366 + "ipaddress" = { 1367 + version = "0.8.0"; 1368 source = { 1369 type = "gem"; 1370 + sha256 = "0cwy4pyd9nl2y2apazp3hvi12gccj5a3ify8mi8k3knvxi5wk2ir"; 1371 }; 1372 }; 1373 "jquery-atwho-rails" = { 1374 + version = "1.0.1"; 1375 source = { 1376 type = "gem"; 1377 + sha256 = "0fdy4dxfvnzrjbfm45yrnwfczszvnd7psqhnkby0j3qjg8k9xhzw"; 1378 }; 1379 }; 1380 "jquery-rails" = { 1381 + version = "3.1.3"; 1382 source = { 1383 type = "gem"; 1384 + sha256 = "1n07rj1x7l61wygbjdpknv5nxhbg2iybfgkpdgca2kj6c1nb1d87"; 1385 }; 1386 dependencies = [ 1387 "railties" ··· 1399 ]; 1400 }; 1401 "jquery-turbolinks" = { 1402 + version = "2.0.2"; 1403 source = { 1404 type = "gem"; 1405 + sha256 = "1plip56znrkq3na5bjys5q2zvlbyj8p8i29kaayzfpi2c4ixxaq3"; 1406 }; 1407 dependencies = [ 1408 "railties" ··· 1420 ]; 1421 }; 1422 "json" = { 1423 + version = "1.8.3"; 1424 source = { 1425 type = "gem"; 1426 + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; 1427 }; 1428 }; 1429 "jwt" = { 1430 + version = "1.5.1"; 1431 source = { 1432 type = "gem"; 1433 + sha256 = "13b5ccknrmxnb6dk7vlmnb05za1xxyqd8dzb6lpqq503wpfrmlyk"; 1434 }; 1435 }; 1436 "kaminari" = { 1437 version = "0.15.1"; ··· 1445 ]; 1446 }; 1447 "kgio" = { 1448 + version = "2.9.3"; 1449 source = { 1450 type = "gem"; 1451 + sha256 = "07gl0drxwckj7kbq5nla2lf81lrrrvirvvdcrykjgivysfg6yp5v"; 1452 }; 1453 }; 1454 "launchy" = { 1455 + version = "2.4.3"; 1456 source = { 1457 type = "gem"; 1458 + sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; 1459 }; 1460 dependencies = [ 1461 "addressable" ··· 1471 "launchy" 1472 ]; 1473 }; 1474 "listen" = { 1475 + version = "2.10.1"; 1476 source = { 1477 type = "gem"; 1478 + sha256 = "1ipainbx21ni7xakdbksxjim6nixvzfjkifb2d3v45a50dp3diqg"; 1479 }; 1480 dependencies = [ 1481 "celluloid" ··· 1484 ]; 1485 }; 1486 "lumberjack" = { 1487 + version = "1.0.9"; 1488 source = { 1489 type = "gem"; 1490 + sha256 = "162frm2bwy58pj8ccsdqa4a6i0csrhb9h5l3inhkl1ivgfc8814l"; 1491 }; 1492 }; 1493 + "macaddr" = { 1494 + version = "1.7.1"; 1495 + source = { 1496 + type = "gem"; 1497 + sha256 = "1clii8mvhmh5lmnm95ljnjygyiyhdpja85c5vy487rhxn52scn0b"; 1498 + }; 1499 + dependencies = [ 1500 + "systemu" 1501 + ]; 1502 + }; 1503 "mail" = { 1504 + version = "2.6.3"; 1505 source = { 1506 type = "gem"; 1507 + sha256 = "1nbg60h3cpnys45h7zydxwrl200p7ksvmrbxnwwbpaaf9vnf3znp"; 1508 }; 1509 dependencies = [ 1510 "mime-types" 1511 ]; 1512 + }; 1513 + "mail_room" = { 1514 + version = "0.5.2"; 1515 + source = { 1516 + type = "gem"; 1517 + sha256 = "1l8ncfwqiiv3nd7i0237xd5ymshgyfxfv4w2bj0lj67ys3l4qwh3"; 1518 + }; 1519 }; 1520 "method_source" = { 1521 version = "0.8.2"; ··· 1531 sha256 = "0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8"; 1532 }; 1533 }; 1534 + "mimemagic" = { 1535 + version = "0.3.0"; 1536 + source = { 1537 + type = "gem"; 1538 + sha256 = "101lq4bnjs7ywdcicpw3vbz9amg5gbb4va1626fybd2hawgdx8d9"; 1539 + }; 1540 + }; 1541 "mini_portile" = { 1542 + version = "0.6.2"; 1543 source = { 1544 type = "gem"; 1545 + sha256 = "0h3xinmacscrnkczq44s6pnhrp4nqma7k056x5wv5xixvf2wsq2w"; 1546 }; 1547 }; 1548 "minitest" = { 1549 + version = "5.7.0"; 1550 source = { 1551 type = "gem"; 1552 + sha256 = "0rxqfakp629mp3vwda7zpgb57lcns5znkskikbfd0kriwv8i1vq8"; 1553 }; 1554 }; 1555 "mousetrap-rails" = { ··· 1560 }; 1561 }; 1562 "multi_json" = { 1563 + version = "1.11.2"; 1564 source = { 1565 type = "gem"; 1566 + sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; 1567 }; 1568 }; 1569 "multi_xml" = { ··· 1581 }; 1582 }; 1583 "mysql2" = { 1584 + version = "0.3.20"; 1585 source = { 1586 type = "gem"; 1587 + sha256 = "0n075x14n9kziv0qdxqlzhf3j1abi1w6smpakfpsg4jbr8hnn5ip"; 1588 + }; 1589 + }; 1590 + "nenv" = { 1591 + version = "0.2.0"; 1592 + source = { 1593 + type = "gem"; 1594 + sha256 = "152wxwri0afwgnxdf93gi6wjl9rr5z7vwp8ln0gpa3rddbfc27s6"; 1595 + }; 1596 + }; 1597 + "nested_form" = { 1598 + version = "0.3.2"; 1599 + source = { 1600 + type = "gem"; 1601 + sha256 = "0f053j4zfagxyym28msxj56hrpvmyv4lzxy2c5c270f7xbbnii5i"; 1602 }; 1603 }; 1604 "net-ldap" = { 1605 + version = "0.11"; 1606 source = { 1607 type = "gem"; 1608 + sha256 = "1xfq94lmc5mcc5giipxn9bmrsm9ny1xc1rp0xpm2pgqwr2q8fm7w"; 1609 }; 1610 }; 1611 "net-scp" = { 1612 + version = "1.2.1"; 1613 source = { 1614 type = "gem"; 1615 + sha256 = "0b0jqrcsp4bbi4n4mzyf70cp2ysyp6x07j8k8cqgxnvb4i3a134j"; 1616 }; 1617 dependencies = [ 1618 "net-ssh" 1619 ]; 1620 }; 1621 "net-ssh" = { 1622 + version = "2.9.2"; 1623 + source = { 1624 + type = "gem"; 1625 + sha256 = "1p0bj41zrmw5lhnxlm1pqb55zfz9y4p9fkrr9a79nrdmzrk1ph8r"; 1626 + }; 1627 + }; 1628 + "netrc" = { 1629 + version = "0.10.3"; 1630 source = { 1631 type = "gem"; 1632 + sha256 = "1r6cmg1nvxspl24yrqn77vx7xjqigpypialblpcv5qj6xmc4b8lg"; 1633 }; 1634 }; 1635 + "newrelic-grape" = { 1636 + version = "2.0.0"; 1637 + source = { 1638 + type = "gem"; 1639 + sha256 = "1j8cdlc8lvbh2c2drdq0kfrjbw9bkgqx3qiiizzaxv6yj70vq58a"; 1640 + }; 1641 + dependencies = [ 1642 + "grape" 1643 + "newrelic_rpm" 1644 + ]; 1645 + }; 1646 "newrelic_rpm" = { 1647 version = "3.9.4.245"; 1648 source = { ··· 1651 }; 1652 }; 1653 "nokogiri" = { 1654 + version = "1.6.6.2"; 1655 source = { 1656 type = "gem"; 1657 + sha256 = "1j4qv32qjh67dcrc1yy1h8sqjnny8siyy4s44awla8d6jk361h30"; 1658 }; 1659 dependencies = [ 1660 "mini_portile" 1661 ]; 1662 }; 1663 + "notiffany" = { 1664 + version = "0.0.7"; 1665 + source = { 1666 + type = "gem"; 1667 + sha256 = "1v5x1w59qq85r6dpv3y9ga34dfd7hka1qxyiykaw7gm0i6kggbhi"; 1668 + }; 1669 + dependencies = [ 1670 + "nenv" 1671 + "shellany" 1672 + ]; 1673 + }; 1674 "nprogress-rails" = { 1675 version = "0.1.2.3"; 1676 source = { ··· 1686 }; 1687 }; 1688 "oauth2" = { 1689 + version = "1.0.0"; 1690 source = { 1691 type = "gem"; 1692 + sha256 = "0zaa7qnvizv363apmxx9vxa8f6c6xy70z0jm0ydx38xvhxr8898r"; 1693 }; 1694 dependencies = [ 1695 "faraday" 1696 "jwt" 1697 "multi_json" 1698 + "multi_xml" 1699 "rack" 1700 ]; 1701 }; 1702 + "octokit" = { 1703 + version = "3.7.1"; 1704 + source = { 1705 + type = "gem"; 1706 + sha256 = "1sd6cammv5m96640vdb8yp3kfpzn52s8y7d77dgsfb25bc1jg4xl"; 1707 + }; 1708 + dependencies = [ 1709 + "sawyer" 1710 + ]; 1711 + }; 1712 "omniauth" = { 1713 + version = "1.2.2"; 1714 source = { 1715 type = "gem"; 1716 + sha256 = "1f0hd9ngfb6f8wz8h2r5n8lr99jqjaghn0h2mljdc6fw031ap7lk"; 1717 }; 1718 dependencies = [ 1719 "hashie" 1720 "rack" 1721 ]; 1722 }; 1723 + "omniauth-bitbucket" = { 1724 + version = "0.0.2"; 1725 + source = { 1726 + type = "gem"; 1727 + sha256 = "1lals2z1yixffrc97zh7zn1jpz9l6vpb3alcp13im42dq9q0g845"; 1728 + }; 1729 + dependencies = [ 1730 + "multi_json" 1731 + "omniauth" 1732 + "omniauth-oauth" 1733 + ]; 1734 + }; 1735 "omniauth-github" = { 1736 + version = "1.1.2"; 1737 source = { 1738 type = "gem"; 1739 + sha256 = "1mbx3c8m1llhdxrqdciq8jh428bxj1nvf4yhziv2xqmqpjcqz617"; 1740 + }; 1741 + dependencies = [ 1742 + "omniauth" 1743 + "omniauth-oauth2" 1744 + ]; 1745 + }; 1746 + "omniauth-gitlab" = { 1747 + version = "1.0.0"; 1748 + source = { 1749 + type = "gem"; 1750 + sha256 = "1amg3y0ivfakamfwiljgla1vff59b116nd0i6khmaj4jsa4s81hw"; 1751 }; 1752 dependencies = [ 1753 "omniauth" ··· 1755 ]; 1756 }; 1757 "omniauth-google-oauth2" = { 1758 + version = "0.2.6"; 1759 source = { 1760 type = "gem"; 1761 + sha256 = "1nba1iy6w2wj79pvnp9r5bw7jhks0287lw748vkxl9xmwccldnhj"; 1762 }; 1763 dependencies = [ 1764 "omniauth" 1765 "omniauth-oauth2" 1766 ]; 1767 }; 1768 + "omniauth-kerberos" = { 1769 + version = "0.2.0"; 1770 + source = { 1771 + type = "gem"; 1772 + sha256 = "1s626nxzq8i6gy67pkh04h8hlmmx4vwpc36sbdsgm1xwyj3hrn1b"; 1773 + }; 1774 + dependencies = [ 1775 + "omniauth-multipassword" 1776 + "timfel-krb5-auth" 1777 + ]; 1778 + }; 1779 + "omniauth-multipassword" = { 1780 + version = "0.4.2"; 1781 + source = { 1782 + type = "gem"; 1783 + sha256 = "0qykp76hw80lkgb39hyzrv68hkbivc8cv0vbvrnycjh9fwfp1lv8"; 1784 + }; 1785 + dependencies = [ 1786 + "omniauth" 1787 + ]; 1788 + }; 1789 "omniauth-oauth" = { 1790 + version = "1.1.0"; 1791 source = { 1792 type = "gem"; 1793 + sha256 = "1n5vk4by7hkyc09d9blrw2argry5awpw4gbw1l4n2s9b3j4qz037"; 1794 }; 1795 dependencies = [ 1796 "oauth" ··· 1798 ]; 1799 }; 1800 "omniauth-oauth2" = { 1801 + version = "1.3.1"; 1802 source = { 1803 type = "gem"; 1804 + sha256 = "0mskwlw5ibx9mz7ywqji6mm56ikf7mglbnfc02qhg6ry527jsxdm"; 1805 }; 1806 dependencies = [ 1807 "oauth2" 1808 "omniauth" 1809 ]; 1810 }; 1811 + "omniauth-saml" = { 1812 + version = "1.4.1"; 1813 + source = { 1814 + type = "gem"; 1815 + sha256 = "12jkjdrkc3k2k1y53vfxyicdq2j0djhln6apwzmc10h9jhq23nrq"; 1816 + }; 1817 + dependencies = [ 1818 + "omniauth" 1819 + "ruby-saml" 1820 + ]; 1821 + }; 1822 "omniauth-shibboleth" = { 1823 + version = "1.1.2"; 1824 source = { 1825 type = "gem"; 1826 + sha256 = "0wy24hwsipjx8iswdbrncgv15qxv7ibg07rv2n6byi037mrnhnhw"; 1827 }; 1828 dependencies = [ 1829 "omniauth" ··· 1840 "omniauth-oauth" 1841 ]; 1842 }; 1843 + "omniauth_crowd" = { 1844 + version = "2.2.3"; 1845 + source = { 1846 + type = "gem"; 1847 + sha256 = "12g5ck05h6kr9mnp870x8pkxsadg81ca70hg8n3k8xx007lfw2q7"; 1848 + }; 1849 + dependencies = [ 1850 + "activesupport" 1851 + "nokogiri" 1852 + "omniauth" 1853 + ]; 1854 + }; 1855 + "opennebula" = { 1856 + version = "4.12.1"; 1857 + source = { 1858 + type = "gem"; 1859 + sha256 = "1y2k706mcxf69cviy415icnhdz7ll5nld9iksqdg4asp60gybq3k"; 1860 + }; 1861 + dependencies = [ 1862 + "json" 1863 + "nokogiri" 1864 + "rbvmomi" 1865 + ]; 1866 + }; 1867 "org-ruby" = { 1868 + version = "0.9.12"; 1869 source = { 1870 type = "gem"; 1871 + sha256 = "0x69s7aysfiwlcpd9hkvksfyld34d8kxr62adb59vjvh8hxfrjwk"; 1872 }; 1873 dependencies = [ 1874 "rubypants" ··· 1881 sha256 = "1fg9jpjlzf5y49qs9mlpdrgs5rpcyihq1s4k79nv9js0spjhnpda"; 1882 }; 1883 }; 1884 + "paranoia" = { 1885 + version = "2.1.3"; 1886 source = { 1887 type = "gem"; 1888 + sha256 = "1v6izkdf8npwcblzn9zl9ysagih75584d8hpjzhiv0ijz6cw3l92"; 1889 }; 1890 + dependencies = [ 1891 + "activerecord" 1892 + ]; 1893 }; 1894 + "parser" = { 1895 + version = "2.2.2.6"; 1896 source = { 1897 type = "gem"; 1898 + sha256 = "0rmh4yr5qh87wqgwzbs6vy8wyf248k09m2vfjf9br6jdb5zgj5hh"; 1899 + }; 1900 + dependencies = [ 1901 + "ast" 1902 + ]; 1903 + }; 1904 + "pg" = { 1905 + version = "0.18.2"; 1906 + source = { 1907 + type = "gem"; 1908 + sha256 = "1axxbf6ij1iqi3i1r3asvjc80b0py5bz0m2wy5kdi5xkrpr82kpf"; 1909 }; 1910 }; 1911 "poltergeist" = { 1912 + version = "1.6.0"; 1913 source = { 1914 type = "gem"; 1915 + sha256 = "0mpy2yhn0bhm2s78h8wy22j6378vvsdkj5pcvhr2zfhdjf46g41d"; 1916 }; 1917 dependencies = [ 1918 "capybara" ··· 1921 "websocket-driver" 1922 ]; 1923 }; 1924 + "posix-spawn" = { 1925 + version = "0.3.11"; 1926 source = { 1927 type = "gem"; 1928 + sha256 = "052lnxbkvlnwfjw4qd7vn2xrlaaqiav6f5x5bcjin97bsrfq6cmr"; 1929 }; 1930 }; 1931 + "powerpack" = { 1932 + version = "0.0.9"; 1933 source = { 1934 type = "gem"; 1935 + sha256 = "0gflp6d2dc4jz3kgg8v4pdzm3qr2bbdygr83dbsi69pxm2gy5536"; 1936 }; 1937 }; 1938 "pry" = { 1939 + version = "0.10.1"; 1940 source = { 1941 type = "gem"; 1942 + sha256 = "1j0r5fm0wvdwzbh6d6apnp7c0n150hpm9zxpm5xvcgfqr36jaj8z"; 1943 }; 1944 dependencies = [ 1945 "coderay" ··· 1947 "slop" 1948 ]; 1949 }; 1950 + "pry-rails" = { 1951 + version = "0.3.4"; 1952 + source = { 1953 + type = "gem"; 1954 + sha256 = "0a2iinvabis2xmv0z7z7jmh7bbkkngxj2qixfdg5m6qj9x8k1kx6"; 1955 + }; 1956 + dependencies = [ 1957 + "pry" 1958 + ]; 1959 + }; 1960 "pyu-ruby-sasl" = { 1961 version = "0.0.3.3"; 1962 source = { ··· 1965 }; 1966 }; 1967 "quiet_assets" = { 1968 + version = "1.0.3"; 1969 source = { 1970 type = "gem"; 1971 + sha256 = "1q4azw4j1xsgd7qwcig110mfdn1fm0y34y87zw9j9v187xr401b1"; 1972 }; 1973 dependencies = [ 1974 "railties" 1975 ]; 1976 }; 1977 "rack" = { 1978 + version = "1.5.5"; 1979 source = { 1980 type = "gem"; 1981 + sha256 = "1ds3gh8m5gy0d2k4g12k67qid7magg1ia186872yq22ham7sgr2a"; 1982 }; 1983 }; 1984 "rack-accept" = { ··· 1992 ]; 1993 }; 1994 "rack-attack" = { 1995 + version = "4.3.0"; 1996 source = { 1997 type = "gem"; 1998 + sha256 = "06v5xvp33aysf8hkl9lwl1yjkc82jdlvcm2361y7ckjgykf8ixfr"; 1999 }; 2000 dependencies = [ 2001 "rack" ··· 2009 }; 2010 }; 2011 "rack-mini-profiler" = { 2012 + version = "0.9.7"; 2013 source = { 2014 type = "gem"; 2015 + sha256 = "03lz6x1s8rbrccfsxl2rq677zqkmkvzv7whbmwzdp71zzyvvm14j"; 2016 }; 2017 dependencies = [ 2018 "rack" ··· 2028 "rack" 2029 ]; 2030 }; 2031 + "rack-oauth2" = { 2032 + version = "1.0.10"; 2033 + source = { 2034 + type = "gem"; 2035 + sha256 = "1srg4hdnyn6bwx225snyq7flb0cn96ppdvicwls6qvp6i4n91k36"; 2036 + }; 2037 + dependencies = [ 2038 + "activesupport" 2039 + "attr_required" 2040 + "httpclient" 2041 + "multi_json" 2042 + "rack" 2043 + ]; 2044 + }; 2045 "rack-protection" = { 2046 + version = "1.5.3"; 2047 source = { 2048 type = "gem"; 2049 + sha256 = "0cvb21zz7p9wy23wdav63z5qzfn4nialik22yqp6gihkgfqqrh5r"; 2050 }; 2051 dependencies = [ 2052 "rack" 2053 ]; 2054 }; 2055 "rack-test" = { 2056 + version = "0.6.3"; 2057 source = { 2058 type = "gem"; 2059 + sha256 = "0h6x5jq24makgv2fq5qqgjlrk74dxfy62jif9blk43llw8ib2q7z"; 2060 }; 2061 dependencies = [ 2062 "rack" 2063 ]; 2064 }; 2065 "rails" = { 2066 + version = "4.1.12"; 2067 source = { 2068 type = "gem"; 2069 + sha256 = "0k2n6y92gmysk8y6j1hy6av53f07hhzkhw41qfqwr2hgqc6q8idv"; 2070 }; 2071 dependencies = [ 2072 "actionmailer" ··· 2079 "sprockets-rails" 2080 ]; 2081 }; 2082 + "rails-observers" = { 2083 + version = "0.1.2"; 2084 source = { 2085 type = "gem"; 2086 + sha256 = "1lsw19jzmvipvrfy2z04hi7r29dvkfc43h43vs67x6lsj9rxwwcy"; 2087 }; 2088 dependencies = [ 2089 + "activemodel" 2090 ]; 2091 }; 2092 "railties" = { 2093 + version = "4.1.12"; 2094 source = { 2095 type = "gem"; 2096 + sha256 = "0v16grd6ip3ijiz1v36myiirqx9fx004lfvnsmh28b2ddjxcci4q"; 2097 }; 2098 dependencies = [ 2099 "actionpack" ··· 2102 "thor" 2103 ]; 2104 }; 2105 + "rainbow" = { 2106 + version = "2.0.0"; 2107 + source = { 2108 + type = "gem"; 2109 + sha256 = "0dsnzfjiih2w8npsjab3yx1ssmmvmgjkbxny0i9yzrdy7whfw7b4"; 2110 + }; 2111 + }; 2112 "raindrops" = { 2113 + version = "0.15.0"; 2114 source = { 2115 type = "gem"; 2116 + sha256 = "1hv0xhr762axywr937czi92fs0x3zk7k22vg6f4i7rr8d05sp560"; 2117 }; 2118 }; 2119 "rake" = { 2120 + version = "10.4.2"; 2121 source = { 2122 type = "gem"; 2123 + sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8"; 2124 }; 2125 }; 2126 "raphael-rails" = { ··· 2131 }; 2132 }; 2133 "rb-fsevent" = { 2134 + version = "0.9.5"; 2135 source = { 2136 type = "gem"; 2137 + sha256 = "1p4rz4qqarl7xg2aldpra54h81yal93cbxdy02lmb9kf6f7y2fz4"; 2138 }; 2139 }; 2140 "rb-inotify" = { 2141 + version = "0.9.5"; 2142 source = { 2143 type = "gem"; 2144 + sha256 = "0kddx2ia0qylw3r52nhg83irkaclvrncgy2m1ywpbhlhsz1rymb9"; 2145 }; 2146 dependencies = [ 2147 "ffi" 2148 ]; 2149 }; 2150 + "rbvmomi" = { 2151 + version = "1.8.2"; 2152 + source = { 2153 + type = "gem"; 2154 + sha256 = "0gjbfazl2q42m1m51nvv14q7y5lbya272flmvhpqvg5z10nbxanj"; 2155 + }; 2156 + dependencies = [ 2157 + "builder" 2158 + "nokogiri" 2159 + "trollop" 2160 + ]; 2161 + }; 2162 "rdoc" = { 2163 version = "3.12.2"; 2164 source = { ··· 2170 ]; 2171 }; 2172 "redcarpet" = { 2173 + version = "3.3.2"; 2174 source = { 2175 type = "gem"; 2176 + sha256 = "1xf95nrc8jgv9hjzjnbf3ljwmp29rqxdamyj9crza2czl4k63rnm"; 2177 }; 2178 }; 2179 "redis" = { 2180 + version = "3.2.1"; 2181 source = { 2182 type = "gem"; 2183 + sha256 = "16jzlqp80qiqg5cdc9l144n6k3c5qj9if4pgij87sscn8ahi993k"; 2184 }; 2185 }; 2186 "redis-actionpack" = { ··· 2196 ]; 2197 }; 2198 "redis-activesupport" = { 2199 + version = "4.1.1"; 2200 source = { 2201 type = "gem"; 2202 + sha256 = "1xciffiqbhksy534sysdd8pgn2hlvyrs1qb4x1kbcx9f3f83y551"; 2203 }; 2204 dependencies = [ 2205 "activesupport" ··· 2207 ]; 2208 }; 2209 "redis-namespace" = { 2210 + version = "1.5.2"; 2211 source = { 2212 type = "gem"; 2213 + sha256 = "0rp8gfkznfxqzxk9s976k71jnljkh0clkrhnp6vgx46s5yhj9g25"; 2214 }; 2215 dependencies = [ 2216 "redis" ··· 2240 ]; 2241 }; 2242 "redis-store" = { 2243 + version = "1.1.6"; 2244 source = { 2245 type = "gem"; 2246 + sha256 = "1x8pfpd6c3xxb3l9nyggi9qpgxcp9k9rkdwwl80m95lhynwaxcds"; 2247 }; 2248 dependencies = [ 2249 "redis" 2250 ]; 2251 }; 2252 + "request_store" = { 2253 + version = "1.2.0"; 2254 source = { 2255 type = "gem"; 2256 + sha256 = "1s7lk5klbg2qfh8hgqymjrlwgpmjmfx03x1hniq16shd1cjwch45"; 2257 }; 2258 }; 2259 + "rerun" = { 2260 + version = "0.10.0"; 2261 source = { 2262 type = "gem"; 2263 + sha256 = "0hsw0q0wriz4h55hkm9yd313hqixgsgnp4wrl8v4k4zwz41j76xk"; 2264 }; 2265 + dependencies = [ 2266 + "listen" 2267 + ]; 2268 }; 2269 + "responders" = { 2270 + version = "1.1.2"; 2271 source = { 2272 type = "gem"; 2273 + sha256 = "178279kf1kaah917r6zwzw5kk9swj28yxmg6aqffna7789kjhy3f"; 2274 }; 2275 + dependencies = [ 2276 + "railties" 2277 + ]; 2278 }; 2279 "rest-client" = { 2280 + version = "1.8.0"; 2281 source = { 2282 type = "gem"; 2283 + sha256 = "1m8z0c4yf6w47iqz6j2p7x1ip4qnnzvhdph9d5fgx081cvjly3p7"; 2284 }; 2285 dependencies = [ 2286 + "http-cookie" 2287 "mime-types" 2288 + "netrc" 2289 ]; 2290 }; 2291 "rinku" = { ··· 2295 sha256 = "1jh6nys332brph55i6x6cil6swm086kxjw34wq131nl6mwryqp7b"; 2296 }; 2297 }; 2298 + "rotp" = { 2299 + version = "2.1.1"; 2300 + source = { 2301 + type = "gem"; 2302 + sha256 = "1nzsc9hfxijnyzjbv728ln9dm80bc608chaihjdk63i2wi4m529g"; 2303 + }; 2304 + }; 2305 "rouge" = { 2306 + version = "1.10.1"; 2307 + source = { 2308 + type = "gem"; 2309 + sha256 = "0wp8as9ypdy18kdj9h70kny1rdfq71mr8cj2bpahr9vxjjvjasqz"; 2310 + }; 2311 + }; 2312 + "rqrcode" = { 2313 + version = "0.7.0"; 2314 + source = { 2315 + type = "gem"; 2316 + sha256 = "188n1mvc7klrlw30bai16sdg4yannmy7cz0sg0nvm6f1kjx5qflb"; 2317 + }; 2318 + dependencies = [ 2319 + "chunky_png" 2320 + ]; 2321 + }; 2322 + "rqrcode-rails3" = { 2323 + version = "0.1.7"; 2324 source = { 2325 type = "gem"; 2326 + sha256 = "1i28rwmj24ssk91chn0g7qsnvn003y3s5a7jsrg3w4l5ckr841bg"; 2327 }; 2328 + dependencies = [ 2329 + "rqrcode" 2330 + ]; 2331 }; 2332 "rspec" = { 2333 + version = "3.3.0"; 2334 source = { 2335 type = "gem"; 2336 + sha256 = "1bn5zs71agc0zyns2r3c8myi5bxw3q7xnzp7f3v5b7hbil1qym4r"; 2337 }; 2338 dependencies = [ 2339 "rspec-core" ··· 2342 ]; 2343 }; 2344 "rspec-core" = { 2345 + version = "3.3.2"; 2346 source = { 2347 type = "gem"; 2348 + sha256 = "0xw5qi936j6nz9fixi2mwy03f406761cd72bzyvd61pr854d7hy1"; 2349 }; 2350 + dependencies = [ 2351 + "rspec-support" 2352 + ]; 2353 }; 2354 "rspec-expectations" = { 2355 + version = "3.3.1"; 2356 source = { 2357 type = "gem"; 2358 + sha256 = "1d0b5hpkxlr9f3xpsbhvl3irnk4smmycx2xnmc8qv3pqaa7mb7ah"; 2359 }; 2360 dependencies = [ 2361 "diff-lcs" 2362 + "rspec-support" 2363 ]; 2364 }; 2365 "rspec-mocks" = { 2366 + version = "3.3.2"; 2367 source = { 2368 type = "gem"; 2369 + sha256 = "1lfbzscmpyixlbapxmhy2s69596vs1z00lv590l51hgdw70z92vg"; 2370 }; 2371 + dependencies = [ 2372 + "diff-lcs" 2373 + "rspec-support" 2374 + ]; 2375 }; 2376 "rspec-rails" = { 2377 + version = "3.3.3"; 2378 source = { 2379 type = "gem"; 2380 + sha256 = "0m66n9p3a7d3fmrzkbh8312prb6dhrgmp53g1amck308ranasv2a"; 2381 }; 2382 dependencies = [ 2383 "actionpack" ··· 2386 "rspec-core" 2387 "rspec-expectations" 2388 "rspec-mocks" 2389 + "rspec-support" 2390 + ]; 2391 + }; 2392 + "rspec-support" = { 2393 + version = "3.3.0"; 2394 + source = { 2395 + type = "gem"; 2396 + sha256 = "1cyagig8slxjas8mbg5f8bl240b8zgr8mnjsvrznag1fwpkh4h27"; 2397 + }; 2398 + }; 2399 + "rubocop" = { 2400 + version = "0.28.0"; 2401 + source = { 2402 + type = "gem"; 2403 + sha256 = "07n4gha1dp1n15np5v8p58980lsiys3wa9h39lrvnzxgq18m3c4d"; 2404 + }; 2405 + dependencies = [ 2406 + "astrolabe" 2407 + "parser" 2408 + "powerpack" 2409 + "rainbow" 2410 + "ruby-progressbar" 2411 + ]; 2412 + }; 2413 + "ruby-fogbugz" = { 2414 + version = "0.2.1"; 2415 + source = { 2416 + type = "gem"; 2417 + sha256 = "1jj0gpkycbrivkh2q3429vj6mbgx6axxisg69slj3c4mgvzfgchm"; 2418 + }; 2419 + dependencies = [ 2420 + "crack" 2421 ]; 2422 }; 2423 "ruby-progressbar" = { 2424 + version = "1.7.5"; 2425 source = { 2426 type = "gem"; 2427 + sha256 = "0hynaavnqzld17qdx9r7hfw00y16ybldwq730zrqfszjwgi59ivi"; 2428 }; 2429 }; 2430 + "ruby-saml" = { 2431 + version = "1.0.0"; 2432 + source = { 2433 + type = "gem"; 2434 + sha256 = "0hqn49ca2ln5ybc77vpm1vs0szk3pyrz3hnbkbqrkp864mniisi4"; 2435 + }; 2436 + dependencies = [ 2437 + "nokogiri" 2438 + "uuid" 2439 + ]; 2440 + }; 2441 + "ruby2ruby" = { 2442 + version = "2.1.4"; 2443 + source = { 2444 + type = "gem"; 2445 + sha256 = "1h0bwjivcsazfd9j9phs640xxqwgvggj9kmafin88ahf7j77spim"; 2446 + }; 2447 + dependencies = [ 2448 + "ruby_parser" 2449 + "sexp_processor" 2450 + ]; 2451 + }; 2452 + "ruby_parser" = { 2453 + version = "3.5.0"; 2454 + source = { 2455 + type = "gem"; 2456 + sha256 = "1l1lzbn5ywfsg8m8cvxwb415p1816ikvjqnsh5as9h4g1vcknw3y"; 2457 + }; 2458 + dependencies = [ 2459 + "sexp_processor" 2460 + ]; 2461 + }; 2462 "rubyntlm" = { 2463 + version = "0.5.2"; 2464 source = { 2465 type = "gem"; 2466 + sha256 = "04l8686hl0829x4acsnbz0licf8n6794p7shz8iyahin1jnqg3d7"; 2467 }; 2468 }; 2469 "rubypants" = { ··· 2474 }; 2475 }; 2476 "rugged" = { 2477 + version = "0.22.2"; 2478 source = { 2479 type = "gem"; 2480 + sha256 = "179pnnvlsrwd96csmhwhy45y4f5p7qh3xcbg6v3hdv5m9qqcirpp"; 2481 }; 2482 }; 2483 "safe_yaml" = { 2484 + version = "1.0.4"; 2485 source = { 2486 type = "gem"; 2487 + sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; 2488 }; 2489 }; 2490 "sanitize" = { ··· 2505 }; 2506 }; 2507 "sass-rails" = { 2508 + version = "4.0.5"; 2509 source = { 2510 type = "gem"; 2511 + sha256 = "1nw78ijbxpaf0pdr6c0jx63nna1l9m8s1mmb4m3g2clx0i0xm4wb"; 2512 }; 2513 dependencies = [ 2514 "railties" ··· 2517 "sprockets-rails" 2518 ]; 2519 }; 2520 + "sawyer" = { 2521 + version = "0.6.0"; 2522 + source = { 2523 + type = "gem"; 2524 + sha256 = "0fk43bzwn816qj1ksiicm2i1kmzv5675cmnvk57kmfmi4rfsyjpy"; 2525 + }; 2526 + dependencies = [ 2527 + "addressable" 2528 + "faraday" 2529 + ]; 2530 + }; 2531 "sdoc" = { 2532 version = "0.3.20"; 2533 source = { ··· 2540 ]; 2541 }; 2542 "seed-fu" = { 2543 + version = "2.3.5"; 2544 source = { 2545 type = "gem"; 2546 + sha256 = "11xja82yxir1kwccrzng29h7w911i9j0xj2y7y949yqnw91v12vw"; 2547 }; 2548 dependencies = [ 2549 "activerecord" ··· 2551 ]; 2552 }; 2553 "select2-rails" = { 2554 + version = "3.5.9.3"; 2555 source = { 2556 type = "gem"; 2557 + sha256 = "0ni2k74n73y3gv56gs37gkjlh912szjf6k9j483wz41m3xvlz7fj"; 2558 }; 2559 dependencies = [ 2560 "thor" 2561 ]; 2562 }; 2563 + "settingslogic" = { 2564 + version = "2.0.9"; 2565 source = { 2566 type = "gem"; 2567 + sha256 = "1ria5zcrk1nf0b9yia15mdpzw0dqr6wjpbj8dsdbbps81lfsj9ar"; 2568 }; 2569 + }; 2570 + "sexp_processor" = { 2571 + version = "4.6.0"; 2572 + source = { 2573 + type = "gem"; 2574 + sha256 = "0gxlcpg81wfjf5gpggf8h6l2dbq3ikgavbrr2yfw3m2vqy88yjg2"; 2575 + }; 2576 }; 2577 + "sham_rack" = { 2578 + version = "1.3.6"; 2579 source = { 2580 type = "gem"; 2581 + sha256 = "0zs6hpgg87x5jrykjxgfp2i7m5aja53s5kamdhxam16wki1hid3i"; 2582 }; 2583 + dependencies = [ 2584 + "rack" 2585 + ]; 2586 }; 2587 + "shellany" = { 2588 + version = "0.0.1"; 2589 source = { 2590 type = "gem"; 2591 + sha256 = "1ryyzrj1kxmnpdzhlv4ys3dnl2r5r3d2rs2jwzbnd1v96a8pl4hf"; 2592 }; 2593 }; 2594 "shoulda-matchers" = { 2595 + version = "2.8.0"; 2596 source = { 2597 type = "gem"; 2598 + sha256 = "0d3ryqcsk1n9y35bx5wxnqbgw4m8b3c79isazdjnnbg8crdp72d0"; 2599 }; 2600 dependencies = [ 2601 "activesupport" 2602 ]; 2603 }; 2604 "sidekiq" = { 2605 + version = "3.3.0"; 2606 source = { 2607 type = "gem"; 2608 + sha256 = "0xwy2n4jaja82gw11q1qsqc2jp7hp2asxhfr0gkfb58wj7k5y32l"; 2609 }; 2610 dependencies = [ 2611 "celluloid" ··· 2615 "redis-namespace" 2616 ]; 2617 }; 2618 + "sidetiq" = { 2619 + version = "0.6.3"; 2620 + source = { 2621 + type = "gem"; 2622 + sha256 = "1sylv1nyrn7w3782fh0f5svjqricr53vacf4kkvx3l2azzymc2am"; 2623 + }; 2624 + dependencies = [ 2625 + "celluloid" 2626 + "ice_cube" 2627 + "sidekiq" 2628 + ]; 2629 + }; 2630 "simple_oauth" = { 2631 version = "0.1.9"; 2632 source = { ··· 2635 }; 2636 }; 2637 "simplecov" = { 2638 + version = "0.10.0"; 2639 source = { 2640 type = "gem"; 2641 + sha256 = "1q2iq2vgrdvvla5y907gkmqx6ry2qvnvc7a90hlcbwgp1w0sv6z4"; 2642 }; 2643 dependencies = [ 2644 "docile" 2645 + "json" 2646 "simplecov-html" 2647 ]; 2648 }; 2649 "simplecov-html" = { 2650 + version = "0.10.0"; 2651 source = { 2652 type = "gem"; 2653 + sha256 = "1qni8g0xxglkx25w54qcfbi4wjkpvmb28cb7rj5zk3iqynjcdrqf"; 2654 }; 2655 }; 2656 "sinatra" = { 2657 + version = "1.4.6"; 2658 source = { 2659 type = "gem"; 2660 + sha256 = "1hhmwqc81ram7lfwwziv0z70jh92sj1m7h7s9fr0cn2xq8mmn8l7"; 2661 }; 2662 dependencies = [ 2663 "rack" ··· 2673 }; 2674 }; 2675 "slack-notifier" = { 2676 + version = "1.0.0"; 2677 source = { 2678 type = "gem"; 2679 + sha256 = "0v4kd0l83shmk17qb35lighxjq9j7g3slnkrsyiy36kaqcfrjm97"; 2680 }; 2681 }; 2682 "slim" = { 2683 + version = "2.0.3"; 2684 source = { 2685 type = "gem"; 2686 + sha256 = "1z279vis4z2xsjzf568pxcl2gd1az760ij13d6qzx400mgn7nqxs"; 2687 }; 2688 dependencies = [ 2689 "temple" ··· 2691 ]; 2692 }; 2693 "slop" = { 2694 + version = "3.6.0"; 2695 source = { 2696 type = "gem"; 2697 + sha256 = "00w8g3j7k7kl8ri2cf1m58ckxk8rn350gp4chfscmgv6pq1spk3n"; 2698 }; 2699 }; 2700 "spinach" = { 2701 + version = "0.8.10"; 2702 source = { 2703 type = "gem"; 2704 + sha256 = "0phfjs4iw2iqxdaljzwk6qxmi2x86pl3hirmpgw2pgfx76wfx688"; 2705 }; 2706 dependencies = [ 2707 "colorize" 2708 "gherkin-ruby" 2709 + "json" 2710 ]; 2711 }; 2712 "spinach-rails" = { ··· 2722 ]; 2723 }; 2724 "spring" = { 2725 + version = "1.3.6"; 2726 source = { 2727 type = "gem"; 2728 + sha256 = "0xvz2x6nvza5i53p7mddnf11j2wshqmbaphi6ngd6nar8v35y0k1"; 2729 }; 2730 }; 2731 "spring-commands-rspec" = { 2732 + version = "1.0.4"; 2733 source = { 2734 type = "gem"; 2735 + sha256 = "0b0svpq3md1pjz5drpa5pxwg8nk48wrshq8lckim4x3nli7ya0k2"; 2736 }; 2737 dependencies = [ 2738 "spring" ··· 2748 "spring" 2749 ]; 2750 }; 2751 + "spring-commands-teaspoon" = { 2752 + version = "0.0.2"; 2753 + source = { 2754 + type = "gem"; 2755 + sha256 = "1g7n4m2s9d0frh7y1xibzpphqajfnx4fvgfc66nh545dd91w2nqz"; 2756 + }; 2757 + dependencies = [ 2758 + "spring" 2759 + ]; 2760 + }; 2761 "sprockets" = { 2762 + version = "2.12.4"; 2763 source = { 2764 type = "gem"; 2765 + sha256 = "15818683yz27w4hgywccf27n91azy9a4nmb5qkklzb08k8jw9gp3"; 2766 }; 2767 dependencies = [ 2768 "hike" ··· 2772 ]; 2773 }; 2774 "sprockets-rails" = { 2775 + version = "2.3.2"; 2776 source = { 2777 type = "gem"; 2778 + sha256 = "1pk2a69cxirg2dkkpl5cr3fvrj1qgifw1fmpz1ggkcziwxajyg6d"; 2779 }; 2780 dependencies = [ 2781 "actionpack" ··· 2798 }; 2799 }; 2800 "stringex" = { 2801 + version = "2.5.2"; 2802 + source = { 2803 + type = "gem"; 2804 + sha256 = "150adm7rfh6r9b5ra6vk75mswf9m3wwyslcf8f235a08m29fxa17"; 2805 + }; 2806 + }; 2807 + "systemu" = { 2808 + version = "2.6.5"; 2809 + source = { 2810 + type = "gem"; 2811 + sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; 2812 + }; 2813 + }; 2814 + "task_list" = { 2815 + version = "1.0.2"; 2816 + source = { 2817 + type = "gem"; 2818 + sha256 = "1iv1fizb04463c4mp4gxd8v0414fhvmiwvwvjby5b9qq79d8zwab"; 2819 + }; 2820 + dependencies = [ 2821 + "html-pipeline" 2822 + ]; 2823 + }; 2824 + "teaspoon" = { 2825 + version = "1.0.2"; 2826 source = { 2827 type = "gem"; 2828 + sha256 = "0cprz18vgf0jgcggcxf4pwx8jcwbiyj1p0dnck5aavlvaxaic58s"; 2829 }; 2830 + dependencies = [ 2831 + "railties" 2832 + ]; 2833 + }; 2834 + "teaspoon-jasmine" = { 2835 + version = "2.2.0"; 2836 + source = { 2837 + type = "gem"; 2838 + sha256 = "00wygrv1jm4aj15p1ab9d5fdrj6y83kv26xgp52mx4lp78h2ms9q"; 2839 + }; 2840 + dependencies = [ 2841 + "teaspoon" 2842 + ]; 2843 }; 2844 "temple" = { 2845 + version = "0.6.10"; 2846 source = { 2847 type = "gem"; 2848 + sha256 = "1lzz4bisg97725m1q62jhmcxklfhky7g326d0b7p2q0kjx262q81"; 2849 }; 2850 }; 2851 "term-ansicolor" = { 2852 + version = "1.3.2"; 2853 source = { 2854 type = "gem"; 2855 + sha256 = "0ydbbyjmk5p7fsi55ffnkq79jnfqx65c3nj8d9rpgl6sw85ahyys"; 2856 }; 2857 dependencies = [ 2858 "tins" 2859 ]; 2860 }; 2861 + "terminal-table" = { 2862 + version = "1.5.2"; 2863 source = { 2864 type = "gem"; 2865 + sha256 = "1s6qyj9ir1agbbi32li9c0c34dcl0klyxqif6mxy0dbvq7kqfp8f"; 2866 }; 2867 }; 2868 + "test_after_commit" = { 2869 + version = "0.2.7"; 2870 source = { 2871 type = "gem"; 2872 + sha256 = "179dgdpsmn9lcxxkyrxxvmyj4x3xi9sdq80l3zfqcgprnbxavbp7"; 2873 }; 2874 dependencies = [ 2875 + "activerecord" 2876 ]; 2877 }; 2878 "thin" = { 2879 + version = "1.6.3"; 2880 source = { 2881 type = "gem"; 2882 + sha256 = "1m56aygh5rh8ncp3s2gnn8ghn5ibkk0bg6s3clmh1vzaasw2lj4i"; 2883 }; 2884 dependencies = [ 2885 "daemons" ··· 2895 }; 2896 }; 2897 "thread_safe" = { 2898 + version = "0.3.5"; 2899 source = { 2900 type = "gem"; 2901 + sha256 = "1hq46wqsyylx5afkp6jmcihdpv4ynzzq9ygb6z2pb1cbz5js0gcr"; 2902 }; 2903 }; 2904 "tilt" = { ··· 2909 }; 2910 }; 2911 "timers" = { 2912 + version = "4.0.4"; 2913 + source = { 2914 + type = "gem"; 2915 + sha256 = "1jx4wb0x182gmbcs90vz0wzfyp8afi1mpl9w5ippfncyk4kffvrz"; 2916 + }; 2917 + dependencies = [ 2918 + "hitimes" 2919 + ]; 2920 + }; 2921 + "timfel-krb5-auth" = { 2922 + version = "0.8.3"; 2923 source = { 2924 type = "gem"; 2925 + sha256 = "105vajc0jkqgcx1wbp0ad262sdry4l1irk7jpaawv8vzfjfqqf5b"; 2926 }; 2927 }; 2928 "tinder" = { 2929 + version = "1.9.4"; 2930 source = { 2931 type = "gem"; 2932 + sha256 = "0gl5kln3dgybgarksk2ly4y0wy2lljsh59idfllwzynap8hx9jar"; 2933 }; 2934 dependencies = [ 2935 "eventmachine" ··· 2943 ]; 2944 }; 2945 "tins" = { 2946 + version = "1.6.0"; 2947 source = { 2948 type = "gem"; 2949 + sha256 = "02qarvy17nbwvslfgqam8y6y7479cwmb1a6di9z18hzka4cf90hz"; 2950 }; 2951 }; 2952 + "trollop" = { 2953 + version = "2.1.2"; 2954 source = { 2955 type = "gem"; 2956 + sha256 = "0415y63df86sqj43c0l82and65ia5h64if7n0znkbrmi6y0jwhl8"; 2957 }; 2958 }; 2959 "turbolinks" = { 2960 + version = "2.5.3"; 2961 source = { 2962 type = "gem"; 2963 + sha256 = "1ddrx25vvvqxlz4h59lrmjhc2bfwxf4bpicvyhgbpjd48ckj81jn"; 2964 }; 2965 dependencies = [ 2966 "coffee-rails" ··· 2989 ]; 2990 }; 2991 "uglifier" = { 2992 + version = "2.3.3"; 2993 source = { 2994 type = "gem"; 2995 + sha256 = "0v45v2hccmadxpqrlk8gj9sgyak4d6838014wizdvzkh8sy23nvr"; 2996 }; 2997 dependencies = [ 2998 "execjs" ··· 3017 ]; 3018 }; 3019 "unf_ext" = { 3020 + version = "0.0.7.1"; 3021 source = { 3022 type = "gem"; 3023 + sha256 = "0ly2ms6c3irmbr1575ldyh52bz2v0lzzr2gagf0p526k12ld2n5b"; 3024 }; 3025 }; 3026 "unicorn" = { 3027 + version = "4.8.3"; 3028 source = { 3029 type = "gem"; 3030 + sha256 = "1kpg2vikx2hxdyrl45bqcr89a0w59hfw7yn7xh87bmlczi34xds4"; 3031 }; 3032 dependencies = [ 3033 "kgio" ··· 3036 ]; 3037 }; 3038 "unicorn-worker-killer" = { 3039 + version = "0.4.3"; 3040 source = { 3041 type = "gem"; 3042 + sha256 = "0hhss1bwammh7nhplcj90455h79yq10c30npz4lpcsgw7vcpls00"; 3043 }; 3044 dependencies = [ 3045 + "get_process_mem" 3046 "unicorn" 3047 + ]; 3048 + }; 3049 + "uuid" = { 3050 + version = "2.3.8"; 3051 + source = { 3052 + type = "gem"; 3053 + sha256 = "0gr2mxg27l380wpiy66mgv9wq02myj6m4gmp6c4g1vsbzkh0213v"; 3054 + }; 3055 + dependencies = [ 3056 + "macaddr" 3057 ]; 3058 }; 3059 "version_sorter" = { 3060 + version = "2.0.0"; 3061 source = { 3062 type = "gem"; 3063 + sha256 = "1lad9c43w2xfzmva57ia6glpmhyivyk1m79jli42canshvan5v6y"; 3064 }; 3065 }; 3066 "virtus" = { 3067 + version = "1.0.5"; 3068 source = { 3069 type = "gem"; 3070 + sha256 = "06iphwi3c4f7y9i2rvhvaizfswqbaflilziz4dxqngrdysgkn1fk"; 3071 }; 3072 dependencies = [ 3073 "axiom-types" ··· 3087 ]; 3088 }; 3089 "webmock" = { 3090 + version = "1.21.0"; 3091 source = { 3092 type = "gem"; 3093 + sha256 = "1p7hqdxk5359xwp59pcx841fhbnqx01ra98rnwhdyz61nrc6piv3"; 3094 }; 3095 dependencies = [ 3096 "addressable" ··· 3098 ]; 3099 }; 3100 "websocket-driver" = { 3101 + version = "0.6.2"; 3102 source = { 3103 type = "gem"; 3104 + sha256 = "0y4kc2q2g69i4xdcn85bn7v7g6ia3znr687aivakmlzcanyiz7in"; 3105 + }; 3106 + dependencies = [ 3107 + "websocket-extensions" 3108 + ]; 3109 + }; 3110 + "websocket-extensions" = { 3111 + version = "0.1.2"; 3112 + source = { 3113 + type = "gem"; 3114 + sha256 = "07qnsafl6203a2zclxl20hy4jq11c471cgvd0bj5r9fx1qqw06br"; 3115 }; 3116 }; 3117 + "whenever" = { 3118 + version = "0.8.4"; 3119 + source = { 3120 + type = "gem"; 3121 + sha256 = "1bs602cf5rmmj03chn8vwidx0z1psyfyabq6gs3mqna524pnj9h2"; 3122 + }; 3123 + dependencies = [ 3124 + "activesupport" 3125 + "chronic" 3126 + ]; 3127 + }; 3128 "wikicloth" = { 3129 version = "0.8.1"; 3130 source = { ··· 3147 "nokogiri" 3148 ]; 3149 }; 3150 + }
+26 -17
pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch
··· 1 diff --git a/config/environments/production.rb b/config/environments/production.rb 2 - index 78bf543..9b37122 100644 3 --- a/config/environments/production.rb 4 +++ b/config/environments/production.rb 5 - @@ -66,10 +66,10 @@ Gitlab::Application.configure do 6 7 config.action_mailer.delivery_method = :sendmail 8 # Defaults to: ··· 18 config.action_mailer.raise_delivery_errors = true 19 20 diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example 21 - index e7a8d08..834ecaf 100644 22 --- a/config/gitlab.yml.example 23 +++ b/config/gitlab.yml.example 24 - @@ -17,8 +17,8 @@ production: &base 25 ## GitLab settings 26 gitlab: 27 ## Web server settings (note: host is the FQDN, do not include http://) ··· 32 https: false # Set to true if using HTTPS, see installation.md#using-https for additional HTTPS configuration details 33 34 # Uncommment this line below if your ssh host is different from HTTP/HTTPS one 35 - @@ -31,11 +31,11 @@ production: &base 36 # relative_url_root: /gitlab 37 38 # Uncomment and customize if you can't use the default user to run GitLab (default: 'git') 39 - # user: git 40 + user: gitlab 41 42 - ## Email settings 43 # Email address used in the "From" field in mails sent by GitLab 44 - email_from: example@example.com 45 + email_from: <%= ENV['GITLAB_EMAIL_FROM'] %> 46 47 - # Email server smtp settings are in [a separate file](initializers/smtp_settings.rb.sample). 48 - 49 - @@ -230,12 +230,12 @@ production: &base 50 # GitLab Satellites 51 satellites: 52 # Relative paths are relative to Rails.root (default: tmp/repo_satellites/) ··· 58 backup: 59 - path: "tmp/backups" # Relative paths are relative to Rails.root (default: tmp/backups/) 60 + path: <%= ENV['GITLAB_BACKUP_PATH'] %> 61 # keep_time: 604800 # default: 0 (forever) (in seconds) 62 - # upload: 63 - # # Fog storage connection settings, see http://fog.io/storage/ . 64 - @@ -249,11 +249,11 @@ production: &base 65 66 ## GitLab Shell settings 67 gitlab_shell: ··· 73 - hooks_path: /home/git/gitlab-shell/hooks/ 74 + repos_path: <%= ENV['GITLAB_REPOSITORIES_PATH'] %> 75 + hooks_path: <%= ENV['GITLAB_SHELL_HOOKS_PATH'] %> 76 77 # Git over HTTP 78 upload_pack: true 79 - @@ -266,7 +266,7 @@ production: &base 80 # CAUTION! 81 # Use the default values unless you really know what you are doing 82 git: ··· 85 # The next value is the maximum memory size grit can use 86 # Given in number of bytes per git object (e.g. a commit) 87 # This value can be increased if you have very large commits 88 - @@ -299,7 +299,7 @@ test: 89 gravatar: 90 enabled: true 91 gitlab: ··· 95 96 # When you run tests we clone and setup gitlab-shell 97 diff --git a/lib/gitlab/app_logger.rb b/lib/gitlab/app_logger.rb 98 - index 8e4717b..abfe2e4 100644 99 --- a/lib/gitlab/app_logger.rb 100 +++ b/lib/gitlab/app_logger.rb 101 @@ -1,7 +1,7 @@ 102 module Gitlab 103 class AppLogger < Gitlab::Logger 104 - def self.file_name 105 - - 'application.log' 106 + ENV["GITLAB_APPLICATION_LOG_PATH"] 107 end 108
··· 1 diff --git a/config/environments/production.rb b/config/environments/production.rb 2 + index 3316ece..c34dec0 100644 3 --- a/config/environments/production.rb 4 +++ b/config/environments/production.rb 5 + @@ -67,10 +67,10 @@ Gitlab::Application.configure do 6 7 config.action_mailer.delivery_method = :sendmail 8 # Defaults to: ··· 18 config.action_mailer.raise_delivery_errors = true 19 20 diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example 21 + index 15930fc..bdb423c 100644 22 --- a/config/gitlab.yml.example 23 +++ b/config/gitlab.yml.example 24 + @@ -29,8 +29,8 @@ production: &base 25 ## GitLab settings 26 gitlab: 27 ## Web server settings (note: host is the FQDN, do not include http://) ··· 32 https: false # Set to true if using HTTPS, see installation.md#using-https for additional HTTPS configuration details 33 34 # Uncommment this line below if your ssh host is different from HTTP/HTTPS one 35 + @@ -43,7 +43,7 @@ production: &base 36 # relative_url_root: /gitlab 37 38 # Uncomment and customize if you can't use the default user to run GitLab (default: 'git') 39 - # user: git 40 + user: gitlab 41 42 + ## Date & Time settings 43 + # Uncomment and customize if you want to change the default time zone of GitLab application. 44 + @@ -54,7 +54,7 @@ production: &base 45 + # Uncomment and set to false if you need to disable email sending from GitLab (default: true) 46 + # email_enabled: true 47 # Email address used in the "From" field in mails sent by GitLab 48 - email_from: example@example.com 49 + email_from: <%= ENV['GITLAB_EMAIL_FROM'] %> 50 + email_display_name: GitLab 51 + email_reply_to: noreply@example.com 52 53 + @@ -298,12 +298,12 @@ production: &base 54 # GitLab Satellites 55 satellites: 56 # Relative paths are relative to Rails.root (default: tmp/repo_satellites/) ··· 62 backup: 63 - path: "tmp/backups" # Relative paths are relative to Rails.root (default: tmp/backups/) 64 + path: <%= ENV['GITLAB_BACKUP_PATH'] %> 65 + # archive_permissions: 0640 # Permissions for the resulting backup.tar file (default: 0600) 66 # keep_time: 604800 # default: 0 (forever) (in seconds) 67 + # pg_schema: public # default: nil, it means that all schemas will be backed up 68 + @@ -322,15 +322,15 @@ production: &base 69 70 ## GitLab Shell settings 71 gitlab_shell: ··· 77 - hooks_path: /home/git/gitlab-shell/hooks/ 78 + repos_path: <%= ENV['GITLAB_REPOSITORIES_PATH'] %> 79 + hooks_path: <%= ENV['GITLAB_SHELL_HOOKS_PATH'] %> 80 + 81 + # File that contains the secret key for verifying access for gitlab-shell. 82 + # Default is '.gitlab_shell_secret' relative to Rails.root (i.e. root of the GitLab app). 83 + - # secret_file: /home/git/gitlab/.gitlab_shell_secret 84 + + secret_file: <%= ENV['GITLAB_SHELL_SECRET_PATH'] %> 85 86 # Git over HTTP 87 upload_pack: true 88 + @@ -343,7 +343,7 @@ production: &base 89 # CAUTION! 90 # Use the default values unless you really know what you are doing 91 git: ··· 94 # The next value is the maximum memory size grit can use 95 # Given in number of bytes per git object (e.g. a commit) 96 # This value can be increased if you have very large commits 97 + @@ -388,7 +388,7 @@ test: 98 gravatar: 99 enabled: true 100 gitlab: ··· 104 105 # When you run tests we clone and setup gitlab-shell 106 diff --git a/lib/gitlab/app_logger.rb b/lib/gitlab/app_logger.rb 107 + index dddcb25..d61f10a 100644 108 --- a/lib/gitlab/app_logger.rb 109 +++ b/lib/gitlab/app_logger.rb 110 @@ -1,7 +1,7 @@ 111 module Gitlab 112 class AppLogger < Gitlab::Logger 113 + def self.file_name_noext 114 + - 'application' 115 + ENV["GITLAB_APPLICATION_LOG_PATH"] 116 end 117
+49 -2
pkgs/applications/video/kodi/plugins.nix
··· 1 - { stdenv, fetchFromGitHub, kodi, steam }: 2 3 let 4 5 - pluginDir = "/lib/kodi/plugin"; 6 7 mkKodiPlugin = { plugin, namespace, version, src, meta, ... }: 8 stdenv.lib.makeOverridable stdenv.mkDerivation rec { ··· 134 propagatedBuildinputs = [ steam ]; 135 }; 136 137 }
··· 1 + { stdenv, fetchFromGitHub, cmake, kodi, steam, libcec_platform, tinyxml }: 2 3 let 4 5 + pluginDir = "/share/kodi/addons"; 6 + 7 + kodi-platform = stdenv.mkDerivation rec { 8 + project = "kodi-platform"; 9 + version = "15.2"; 10 + name = "${project}-${version}"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "xbmc"; 14 + repo = project; 15 + rev = "45d6ad1984fdb1dc855076ff18484dbec33939d1"; 16 + sha256 = "1fai33mwyv5ab47b16i692g7a3vcnmxavx13xin2gh16y0qm62hi"; 17 + }; 18 + 19 + buildInputs = [ cmake kodi libcec_platform tinyxml ]; 20 + }; 21 22 mkKodiPlugin = { plugin, namespace, version, src, meta, ... }: 23 stdenv.lib.makeOverridable stdenv.mkDerivation rec { ··· 149 propagatedBuildinputs = [ steam ]; 150 }; 151 152 + pvr-hts = (mkKodiPlugin rec { 153 + plugin = "pvr-hts"; 154 + namespace = "pvr.hts"; 155 + version = "2.1.18"; 156 + 157 + src = fetchFromGitHub { 158 + owner = "kodi-pvr"; 159 + repo = "pvr.hts"; 160 + rev = "016b0b3251d6d5bffaf68baf59010e4347759c4a"; 161 + sha256 = "03lhxipz03r516pycabqc9b89kd7wih3c2dr4p602bk64bsmpi0j"; 162 + }; 163 + 164 + meta = with stdenv.lib; { 165 + homepage = https://github.com/kodi-pvr/pvr.hts; 166 + description = "Kodi's Tvheadend HTSP client addon"; 167 + platforms = platforms.all; 168 + maintainers = with maintainers; [ page ]; 169 + }; 170 + }).override { 171 + buildInputs = [ cmake kodi libcec_platform kodi-platform ]; 172 + 173 + # disables check ensuring install prefix is that of kodi 174 + cmakeFlags = [ "-DOVERRIDE_PATHS=1" ]; 175 + 176 + # kodi checks for plugin .so libs existance in the addon folder (share/...) 177 + # and the non-wrapped kodi lib/... folder before even trying to dlopen 178 + # them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use 179 + installPhase = '' 180 + make install 181 + ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so $out/share/kodi/addons/pvr.hts 182 + ''; 183 + }; 184 }
+2 -2
pkgs/applications/video/kodi/wrapper.nix
··· 14 buildInputs = [ makeWrapper ]; 15 16 buildCommand = '' 17 - mkdir -p $out/share/kodi/addons/packages 18 ${stdenv.lib.concatMapStrings 19 (plugin: "ln -s ${plugin.out 20 + plugin.kodiPlugin ··· 50 51 }; 52 53 - }
··· 14 buildInputs = [ makeWrapper ]; 15 16 buildCommand = '' 17 + mkdir -p $out/share/kodi/addons 18 ${stdenv.lib.concatMapStrings 19 (plugin: "ln -s ${plugin.out 20 + plugin.kodiPlugin ··· 50 51 }; 52 53 + }
+2 -1
pkgs/applications/virtualization/openstack/glance.nix
··· 23 # oslo componenets 24 oslo-config oslo-context oslo-concurrency oslo-service oslo-utils oslo-db 25 oslo-i18n oslo-log oslo-messaging oslo-middleware oslo-policy oslo-serialization 26 ]; 27 28 buildInputs = with pythonPackages; [ 29 Babel coverage fixtures mox3 mock oslosphinx requests2 testrepository pep8 30 - testresources testscenarios testtools psutil_1 oslotest psycopg2 MySQL_python 31 sqlite which strace 32 ]; 33
··· 23 # oslo componenets 24 oslo-config oslo-context oslo-concurrency oslo-service oslo-utils oslo-db 25 oslo-i18n oslo-log oslo-messaging oslo-middleware oslo-policy oslo-serialization 26 + MySQL_python 27 ]; 28 29 buildInputs = with pythonPackages; [ 30 Babel coverage fixtures mox3 mock oslosphinx requests2 testrepository pep8 31 + testresources testscenarios testtools psutil_1 oslotest psycopg2 32 sqlite which strace 33 ]; 34
+93
pkgs/applications/virtualization/openstack/neutron-iproute-4.patch
···
··· 1 + From 3aefdf4de76fdcdc02093bc631e339f9ecd4c707 Mon Sep 17 00:00:00 2001 2 + From: James Page <james.page@ubuntu.com> 3 + Date: Fri, 18 Sep 2015 16:38:47 +0100 4 + Subject: Add compatibility with iproute2 >= 4.0 5 + 6 + The ip netns list command adds additional id data in more recent 7 + versions of iproute2 of the format: 8 + 9 + qdhcp-35fc068a-750d-4add-b1d2-af392dbd8790 (id: 1) 10 + 11 + Update parsing to deal with old and new formats. 12 + 13 + Change-Id: I0d3fc4262284172f5ad31e4f2f78ae1fb33b4228 14 + Closes-Bug: 1497309 15 + --- 16 + neutron/agent/linux/ip_lib.py | 6 +++--- 17 + neutron/tests/functional/agent/test_l3_agent.py | 2 +- 18 + neutron/tests/unit/agent/linux/test_ip_lib.py | 15 +++++++++++++++ 19 + 3 files changed, 19 insertions(+), 4 deletions(-) 20 + 21 + diff --git a/neutron/agent/linux/ip_lib.py b/neutron/agent/linux/ip_lib.py 22 + index 551341a..a717bf6 100644 23 + --- a/neutron/agent/linux/ip_lib.py 24 + +++ b/neutron/agent/linux/ip_lib.py 25 + @@ -208,7 +208,7 @@ class IPWrapper(SubProcessBase): 26 + @classmethod 27 + def get_namespaces(cls): 28 + output = cls._execute([], 'netns', ('list',)) 29 + - return [l.strip() for l in output.split('\n')] 30 + + return [l.split()[0] for l in output.splitlines()] 31 + 32 + 33 + class IPDevice(SubProcessBase): 34 + @@ -819,8 +819,8 @@ class IpNetnsCommand(IpCommandBase): 35 + output = self._parent._execute( 36 + ['o'], 'netns', ['list'], 37 + run_as_root=cfg.CONF.AGENT.use_helper_for_ns_read) 38 + - for line in output.split('\n'): 39 + - if name == line.strip(): 40 + + for line in [l.split()[0] for l in output.splitlines()]: 41 + + if name == line: 42 + return True 43 + return False 44 + 45 + diff --git a/neutron/tests/functional/agent/test_l3_agent.py b/neutron/tests/functional/agent/test_l3_agent.py 46 + index ffa20e6..84b16df 100644 47 + --- a/neutron/tests/functional/agent/test_l3_agent.py 48 + +++ b/neutron/tests/functional/agent/test_l3_agent.py 49 + @@ -790,7 +790,7 @@ class L3HATestFramework(L3AgentTestFramework): 50 + get_ns_name = mock.patch.object( 51 + namespaces.RouterNamespace, '_get_ns_name').start() 52 + get_ns_name.return_value = "%s%s%s" % ( 53 + - namespaces.RouterNamespace._get_ns_name(router_info['id']), 54 + + 'qrouter-' + router_info['id'], 55 + self.NESTED_NAMESPACE_SEPARATOR, self.agent.host) 56 + router1 = self.manage_router(self.agent, router_info) 57 + 58 + diff --git a/neutron/tests/unit/agent/linux/test_ip_lib.py b/neutron/tests/unit/agent/linux/test_ip_lib.py 59 + index 2de408d..bdfc9d7 100644 60 + --- a/neutron/tests/unit/agent/linux/test_ip_lib.py 61 + +++ b/neutron/tests/unit/agent/linux/test_ip_lib.py 62 + @@ -27,6 +27,11 @@ NETNS_SAMPLE = [ 63 + 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', 64 + 'cccccccc-cccc-cccc-cccc-cccccccccccc'] 65 + 66 + +NETNS_SAMPLE_IPROUTE2_4 = [ 67 + + '12345678-1234-5678-abcd-1234567890ab (id: 1)', 68 + + 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb (id: 0)', 69 + + 'cccccccc-cccc-cccc-cccc-cccccccccccc (id: 2)'] 70 + + 71 + LINK_SAMPLE = [ 72 + '1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN \\' 73 + 'link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 promiscuity 0', 74 + @@ -279,6 +284,16 @@ class TestIpWrapper(base.BaseTestCase): 75 + 76 + self.execute.assert_called_once_with([], 'netns', ('list',)) 77 + 78 + + def test_get_namespaces_iproute2_4(self): 79 + + self.execute.return_value = '\n'.join(NETNS_SAMPLE_IPROUTE2_4) 80 + + retval = ip_lib.IPWrapper.get_namespaces() 81 + + self.assertEqual(retval, 82 + + ['12345678-1234-5678-abcd-1234567890ab', 83 + + 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', 84 + + 'cccccccc-cccc-cccc-cccc-cccccccccccc']) 85 + + 86 + + self.execute.assert_called_once_with([], 'netns', ('list',)) 87 + + 88 + def test_add_tuntap(self): 89 + ip_lib.IPWrapper().add_tuntap('tap0') 90 + self.execute.assert_called_once_with([], 'tuntap', 91 + -- 92 + cgit v0.11.2 93 +
+4 -3
pkgs/applications/virtualization/openstack/neutron.nix
··· 1 - 2 - { stdenv, fetchurl, pythonPackages, xmlsec, which }: 3 4 pythonPackages.buildPythonPackage rec { 5 name = "neutron-${version}"; ··· 29 ]; 30 31 # make sure we include migrations 32 - patchPhase = '' 33 echo "graft neutron" >> MANIFEST.in 34 ''; 35 36 buildInputs = with pythonPackages; [ 37 cliff coverage fixtures mock subunit requests-mock oslosphinx testrepository
··· 1 + { stdenv, fetchurl, pythonPackages, xmlsec, which, dnsmasq }: 2 3 pythonPackages.buildPythonPackage rec { 4 name = "neutron-${version}"; ··· 28 ]; 29 30 # make sure we include migrations 31 + prePatch = '' 32 echo "graft neutron" >> MANIFEST.in 33 + substituteInPlace etc/neutron/rootwrap.d/dhcp.filters --replace "/sbin/dnsmasq" "${dnsmasq}/bin/dnsmasq" 34 ''; 35 + patches = [ ./neutron-iproute-4.patch ]; 36 37 buildInputs = with pythonPackages; [ 38 cliff coverage fixtures mock subunit requests-mock oslosphinx testrepository
+1 -1
pkgs/applications/virtualization/virt-manager/default.nix
··· 20 propagatedBuildInputs = 21 [ eventlet greenlet gflags netaddr carrot routes 22 PasteDeploy m2crypto ipy twisted sqlalchemy_migrate_0_7 23 - distutils_extra simplejson readline glance cheetah lockfile httplib2 24 urlgrabber virtinst pyGtkGlade pythonDBus gnome_python pygobject3 25 libvirt libxml2Python ipaddr vte libosinfo gobjectIntrospection gtk3 mox 26 gtkvnc libvirt-glib glib gsettings_desktop_schemas gnome3.defaultIconTheme
··· 20 propagatedBuildInputs = 21 [ eventlet greenlet gflags netaddr carrot routes 22 PasteDeploy m2crypto ipy twisted sqlalchemy_migrate_0_7 23 + distutils_extra simplejson readline glanceclient cheetah lockfile httplib2 24 urlgrabber virtinst pyGtkGlade pythonDBus gnome_python pygobject3 25 libvirt libxml2Python ipaddr vte libosinfo gobjectIntrospection gtk3 mox 26 gtkvnc libvirt-glib glib gsettings_desktop_schemas gnome3.defaultIconTheme
+1 -1
pkgs/applications/virtualization/virtinst/default.nix
··· 15 pythonPath = with pythonPackages; 16 [ setuptools eventlet greenlet gflags netaddr sqlalchemy carrot routes 17 PasteDeploy m2crypto ipy twisted sqlalchemy_migrate 18 - distutils_extra simplejson readline glance cheetah lockfile httplib2 19 # !!! should libvirt be a build-time dependency? Note that 20 # libxml2Python is a dependency of libvirt.py. 21 libvirt libxml2Python urlgrabber
··· 15 pythonPath = with pythonPackages; 16 [ setuptools eventlet greenlet gflags netaddr sqlalchemy carrot routes 17 PasteDeploy m2crypto ipy twisted sqlalchemy_migrate 18 + distutils_extra simplejson readline glanceclient cheetah lockfile httplib2 19 # !!! should libvirt be a build-time dependency? Note that 20 # libxml2Python is a dependency of libvirt.py. 21 libvirt libxml2Python urlgrabber
+2 -1
pkgs/build-support/build-fhs-chrootenv/default.nix
··· 1 - { stdenv } : { env } : 2 3 let 4 # References to shell scripts that set up or tear down the environment ··· 43 -e "s|@name@|${name}|g" \ 44 ${destroySh} > destroy-${name}-chrootenv 45 chmod +x destroy-${name}-chrootenv 46 ''; 47 }
··· 1 + { stdenv } : { env, extraInstallCommands ? "" } : 2 3 let 4 # References to shell scripts that set up or tear down the environment ··· 43 -e "s|@name@|${name}|g" \ 44 ${destroySh} > destroy-${name}-chrootenv 45 chmod +x destroy-${name}-chrootenv 46 + ${extraInstallCommands} 47 ''; 48 }
+3 -1
pkgs/build-support/build-fhs-userenv/default.nix
··· 1 - { runCommand, lib, writeText, writeScriptBin, stdenv, ruby } : { env, runScript ? "bash", extraBindMounts ? [] } : 2 3 let 4 name = env.pname; ··· 44 exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init runScript} "\$(pwd)" "\$@" 45 EOF 46 chmod +x $out/bin/${name} 47 ''
··· 1 + { runCommand, lib, writeText, writeScriptBin, stdenv, ruby } : 2 + { env, runScript ? "bash", extraBindMounts ? [], extraInstallCommands ? "" } : 3 4 let 5 name = env.pname; ··· 45 exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init runScript} "\$(pwd)" "\$@" 46 EOF 47 chmod +x $out/bin/${name} 48 + ${extraInstallCommands} 49 ''
+6 -44
pkgs/build-support/fetchurl/mirrors.nix
··· 51 52 # GnuPG. 53 gnupg = [ 54 - http://gd.tuwien.ac.at/privacy/gnupg/ 55 - ftp://gd.tuwien.ac.at/privacy/gnupg/ 56 - ftp://gnupg.x-zone.org/pub/gnupg/ 57 - ftp://ftp.gnupg.cz/pub/gcrypt/ 58 - ftp://sunsite.dk/pub/security/gcrypt/ 59 - http://gnupg.wildyou.net/ 60 - http://ftp.gnupg.zone-h.org/ 61 - ftp://ftp.jyu.fi/pub/crypt/gcrypt/ 62 - ftp://trumpetti.atm.tut.fi/gcrypt/ 63 - ftp://mirror.cict.fr/gnupg/ 64 - ftp://ftp.strasbourg.linuxfr.org/pub/gnupg/ 65 - ftp://ftp.cert.dfn.de/pub/tools/crypt/gcrypt/ 66 - ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/ 67 - ftp://ftp.freenet.de/pub/ftp.gnupg.org/gcrypt/ 68 - ftp://hal.csd.auth.gr/mirrors/gnupg/ 69 - ftp://igloo.linux.gr/pub/crypto/gnupg/ 70 - ftp://ftp.uoi.gr/mirror/gcrypt/ 71 - ftp://ftp.crysys.hu/pub/gnupg/ 72 - ftp://ftp.kfki.hu/pub/packages/security/gnupg/ 73 - ftp://ftp.hi.is/pub/mirrors/gnupg/ 74 - ftp://ftp.heanet.ie/mirrors/ftp.gnupg.org/gcrypt/ 75 - ftp://ftp3.linux.it/pub/mirrors/gnupg/ 76 - ftp://ftp.linux.it/pub/mirrors/gnupg/ 77 - ftp://ftp.bit.nl/mirror/gnupg/ 78 - ftp://ftp.demon.nl/pub/mirrors/gnupg/ 79 - ftp://ftp.surfnet.nl/pub/security/gnupg/ 80 - ftp://sunsite.icm.edu.pl/pub/security/gnupg/ 81 - ftp://ftp.iasi.roedu.net/pub/mirrors/ftp.gnupg.org/ 82 - http://ftp.gnupg.tsuren.net/ 83 - http://www.mirror386.com/gnupg/ 84 - ftp://ftp.sunet.se/pub/security/gnupg/ 85 - ftp://mirror.switch.ch/mirror/gnupg/ 86 - ftp://ftp.mirrorservice.org/sites/ftp.gnupg.org/gcrypt 87 - 88 - http://gnupg.unixmexico.org/ftp/ 89 - ftp://ftp.gnupg.ca/ 90 - http://gulus.usherbrooke.ca/pub/appl/GnuPG/ 91 - http://mirrors.rootmode.com/ftp.gnupg.org/ 92 - 93 - ftp://ftp.planetmirror.com/pub/gnupg/ 94 - 95 - ftp://pgp.iijlab.net/pub/pgp/gnupg/ 96 - ftp://ftp.ring.gr.jp/pub/net/gnupg/ 97 - ftp://gnupg.cdpa.nsysu.edu.tw/gnupg/ 98 ]; 99 100 # kernel.org's /pub (/pub/{linux,software}) tree.
··· 51 52 # GnuPG. 53 gnupg = [ 54 + https://gnupg.org/ftp/gcrypt/ 55 + http://www.ring.gr.jp/pub/net/ 56 + http://gd.tuwien.ac.at/privacy/ 57 + http://mirrors.dotsrc.org/ 58 + http://ftp.heanet.ie/mirrors/ftp.gnupg.org/ 59 + http://www.mirrorservice.org/sites/ftp.gnupg.org/ 60 ]; 61 62 # kernel.org's /pub (/pub/{linux,software}) tree.
-48
pkgs/data/documentation/pthread-man-pages/default.nix
··· 1 - /* Pthread man pages from LinuxThreads. 2 - 3 - Some of these pages are superseded by those in the `man-pages' 4 - package, but not all. Like other distros (e.g., Debian's 5 - `glibc-doc' package) we take man pages from LinuxThreads so that 6 - we can cover pretty much all of pthreads. */ 7 - 8 - { fetchurl, stdenv, perl }: 9 - 10 - let version = "2.5"; 11 - in 12 - stdenv.mkDerivation rec { 13 - name = "pthread-man-pages-${version}"; 14 - 15 - src = fetchurl { 16 - url = "mirror://gnu/glibc/glibc-linuxthreads-${version}.tar.bz2"; 17 - sha256 = "0b5xg7ba64d1gbqw4k1qk96qgy7h2y4qksr0qx8v7a14c6xaw9zf"; 18 - }; 19 - 20 - buildInputs = [ perl ]; 21 - 22 - unpackPhase = '' 23 - echo "unpacking to \`${name}'" 24 - mkdir "${name}" 25 - cd "${name}" 26 - tar xjvf "$src" 27 - ''; 28 - 29 - patchPhase = '' 30 - mkdir -p "$out/share/man/man3" 31 - 32 - sed -i "linuxthreads/man/Makefile" \ 33 - -e "s|MANDIR *=.*$|MANDIR = $out/share/man/man3| ; 34 - s|3thr|3|g" 35 - ''; 36 - 37 - preConfigure = "cd linuxthreads/man"; 38 - 39 - postInstall = '' 40 - chmod a-x $out/share/man/man3/*.3 41 - ''; 42 - 43 - meta = { 44 - description = "POSIX threads (pthreads) manual pages from LinuxThreads"; 45 - homepage = http://www.gnu.org/software/libc/; 46 - maintainers = [ stdenv.lib.maintainers.mornfall ]; 47 - }; 48 - }
···
+1 -1
pkgs/data/fonts/ipafont/default.nix
··· 4 name = "ipafont-003.03"; 5 6 src = fetchurl { 7 - url = "http://ipafont.ipa.go.jp/ipafont/IPAfont00303.php"; 8 sha256 = "f755ed79a4b8e715bed2f05a189172138aedf93db0f465b4e20c344a02766fe5"; 9 }; 10
··· 4 name = "ipafont-003.03"; 5 6 src = fetchurl { 7 + url = "http://ipafont.ipa.go.jp/old/ipafont/IPAfont00303.php"; 8 sha256 = "f755ed79a4b8e715bed2f05a189172138aedf93db0f465b4e20c344a02766fe5"; 9 }; 10
+4 -2
pkgs/development/compilers/dmd/default.nix
··· 1 - { stdenv, fetchurl, unzip, curl }: 2 3 stdenv.mkDerivation { 4 name = "dmd-2.067.1"; ··· 8 sha256 = "0ny99vfllvvgcl79pwisxcdnb3732i827k9zg8c0j4s0n79k5z94"; 9 }; 10 11 - buildInputs = [ unzip curl ]; 12 13 # Allow to use "clang++", commented in Makefile 14 postPatch = stdenv.lib.optionalString stdenv.isDarwin '' ··· 47 48 cp -r std $out/include/d2 49 cp -r etc $out/include/d2 50 51 cd $out/bin 52 tee dmd.conf << EOF
··· 1 + { stdenv, fetchurl, unzip, curl, makeWrapper, gcc }: 2 3 stdenv.mkDerivation { 4 name = "dmd-2.067.1"; ··· 8 sha256 = "0ny99vfllvvgcl79pwisxcdnb3732i827k9zg8c0j4s0n79k5z94"; 9 }; 10 11 + buildInputs = [ unzip curl makeWrapper ]; 12 13 # Allow to use "clang++", commented in Makefile 14 postPatch = stdenv.lib.optionalString stdenv.isDarwin '' ··· 47 48 cp -r std $out/include/d2 49 cp -r etc $out/include/d2 50 + 51 + wrapProgram $out/bin/dmd --prefix PATH ":" "${gcc}/bin/" 52 53 cd $out/bin 54 tee dmd.conf << EOF
+3 -3
pkgs/development/coq-modules/flocq/default.nix
··· 3 stdenv.mkDerivation rec { 4 5 name = "coq-flocq-${coq.coq-version}-${version}"; 6 - version = "2.4.0"; 7 8 src = fetchurl { 9 - url = https://gforge.inria.fr/frs/download.php/file/33979/flocq-2.4.0.tar.gz; 10 - sha256 = "020x4nkkrvndkvp5zwb9vads8a2jh603khcwrm40yhqldgfd8zlv"; 11 }; 12 13 buildInputs = [ coq.ocaml coq.camlp5 bash which autoconf automake ];
··· 3 stdenv.mkDerivation rec { 4 5 name = "coq-flocq-${coq.coq-version}-${version}"; 6 + version = "2.5.0"; 7 8 src = fetchurl { 9 + url = https://gforge.inria.fr/frs/download.php/file/35091/flocq-2.5.0.tar.gz; 10 + sha256 = "0v3qiaz7vxfc5nk8rxwi39mik7hm7p5kb040q2pimb69qgfl6vml"; 11 }; 12 13 buildInputs = [ coq.ocaml coq.camlp5 bash which autoconf automake ];
+3 -3
pkgs/development/coq-modules/interval/default.nix
··· 1 { stdenv, fetchurl, which, coq, flocq, mathcomp }: 2 3 stdenv.mkDerivation { 4 - name = "coq-interval-${coq.coq-version}-2.0.0"; 5 6 src = fetchurl { 7 - url = https://gforge.inria.fr/frs/download.php/file/34294/interval-2.0.0.tar.gz; 8 - sha256 = "0wx0z07nhx88hwl20icgb5w4mx6s5pn7mhzyx5jn8f7yl1m46ad2"; 9 }; 10 11 nativeBuildInputs = [ which ];
··· 1 { stdenv, fetchurl, which, coq, flocq, mathcomp }: 2 3 stdenv.mkDerivation { 4 + name = "coq-interval-${coq.coq-version}-2.1.0"; 5 6 src = fetchurl { 7 + url = https://gforge.inria.fr/frs/download.php/file/35092/interval-2.1.0.tar.gz; 8 + sha256 = "02sn8mh85kxwn7681h2z6r7vnac9idh4ik3hbmr2yvixizakb70b"; 9 }; 10 11 nativeBuildInputs = [ which ];
-3
pkgs/development/haskell-modules/configuration-common.nix
··· 921 librarySystemDepends = (drv.librarySystemDepends or []) ++ [ pkgs.ncurses ]; 922 }); 923 924 - # https://github.com/fpco/stackage/issues/1004 925 - gtk2hs-buildtools = super.gtk2hs-buildtools.override { alex = self.alex_3_1_4; }; 926 - 927 # https://github.com/Gabriel439/Haskell-Morte-Library/issues/32 928 morte = super.morte.override { alex = self.alex_3_1_4; }; 929
··· 921 librarySystemDepends = (drv.librarySystemDepends or []) ++ [ pkgs.ncurses ]; 922 }); 923 924 # https://github.com/Gabriel439/Haskell-Morte-Library/issues/32 925 morte = super.morte.override { alex = self.alex_3_1_4; }; 926
+6
pkgs/development/haskell-modules/configuration-lts-0.0.nix
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 "aeson-native" = dontDistribute super."aeson-native"; 1164 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 "archnews" = dontDistribute super."archnews"; 1371 "arff" = dontDistribute super."arff"; 1372 "argon" = dontDistribute super."argon"; 1373 "argparser" = dontDistribute super."argparser"; 1374 "arguedit" = dontDistribute super."arguedit"; ··· 2652 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2653 "digits" = dontDistribute super."digits"; 2654 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2655 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2656 "dingo-core" = dontDistribute super."dingo-core"; 2657 "dingo-example" = dontDistribute super."dingo-example"; ··· 2927 "error-loc" = dontDistribute super."error-loc"; 2928 "error-location" = dontDistribute super."error-location"; 2929 "error-message" = dontDistribute super."error-message"; 2930 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2931 "errors" = doDistribute super."errors_1_4_7"; 2932 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6258 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6259 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6260 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6261 "persistent-map" = dontDistribute super."persistent-map"; 6262 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6263 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6964 "rspp" = dontDistribute super."rspp"; 6965 "rss" = dontDistribute super."rss"; 6966 "rss2irc" = dontDistribute super."rss2irc"; 6967 "rtld" = dontDistribute super."rtld"; 6968 "rtlsdr" = dontDistribute super."rtlsdr"; 6969 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1164 "aeson-native" = dontDistribute super."aeson-native"; 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1371 "archnews" = dontDistribute super."archnews"; 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1374 "argon" = dontDistribute super."argon"; 1375 "argparser" = dontDistribute super."argparser"; 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2654 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2655 "digits" = dontDistribute super."digits"; 2656 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2657 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2658 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2659 "dingo-core" = dontDistribute super."dingo-core"; 2660 "dingo-example" = dontDistribute super."dingo-example"; ··· 2930 "error-loc" = dontDistribute super."error-loc"; 2931 "error-location" = dontDistribute super."error-location"; 2932 "error-message" = dontDistribute super."error-message"; 2933 + "error-util" = dontDistribute super."error-util"; 2934 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2935 "errors" = doDistribute super."errors_1_4_7"; 2936 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6262 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6263 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6264 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6265 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6266 "persistent-map" = dontDistribute super."persistent-map"; 6267 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6268 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6969 "rspp" = dontDistribute super."rspp"; 6970 "rss" = dontDistribute super."rss"; 6971 "rss2irc" = dontDistribute super."rss2irc"; 6972 + "rtcm" = dontDistribute super."rtcm"; 6973 "rtld" = dontDistribute super."rtld"; 6974 "rtlsdr" = dontDistribute super."rtlsdr"; 6975 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.1.nix
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 "aeson-native" = dontDistribute super."aeson-native"; 1164 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 "archnews" = dontDistribute super."archnews"; 1371 "arff" = dontDistribute super."arff"; 1372 "argon" = dontDistribute super."argon"; 1373 "argparser" = dontDistribute super."argparser"; 1374 "arguedit" = dontDistribute super."arguedit"; ··· 2651 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2652 "digits" = dontDistribute super."digits"; 2653 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2654 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2655 "dingo-core" = dontDistribute super."dingo-core"; 2656 "dingo-example" = dontDistribute super."dingo-example"; ··· 2926 "error-loc" = dontDistribute super."error-loc"; 2927 "error-location" = dontDistribute super."error-location"; 2928 "error-message" = dontDistribute super."error-message"; 2929 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2930 "errors" = doDistribute super."errors_1_4_7"; 2931 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6257 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6258 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6259 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6260 "persistent-map" = dontDistribute super."persistent-map"; 6261 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6262 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6963 "rspp" = dontDistribute super."rspp"; 6964 "rss" = dontDistribute super."rss"; 6965 "rss2irc" = dontDistribute super."rss2irc"; 6966 "rtld" = dontDistribute super."rtld"; 6967 "rtlsdr" = dontDistribute super."rtlsdr"; 6968 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1164 "aeson-native" = dontDistribute super."aeson-native"; 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1371 "archnews" = dontDistribute super."archnews"; 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1374 "argon" = dontDistribute super."argon"; 1375 "argparser" = dontDistribute super."argparser"; 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2653 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2654 "digits" = dontDistribute super."digits"; 2655 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2656 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2657 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2658 "dingo-core" = dontDistribute super."dingo-core"; 2659 "dingo-example" = dontDistribute super."dingo-example"; ··· 2929 "error-loc" = dontDistribute super."error-loc"; 2930 "error-location" = dontDistribute super."error-location"; 2931 "error-message" = dontDistribute super."error-message"; 2932 + "error-util" = dontDistribute super."error-util"; 2933 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2934 "errors" = doDistribute super."errors_1_4_7"; 2935 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6261 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6262 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6263 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6264 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6265 "persistent-map" = dontDistribute super."persistent-map"; 6266 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6267 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6968 "rspp" = dontDistribute super."rspp"; 6969 "rss" = dontDistribute super."rss"; 6970 "rss2irc" = dontDistribute super."rss2irc"; 6971 + "rtcm" = dontDistribute super."rtcm"; 6972 "rtld" = dontDistribute super."rtld"; 6973 "rtlsdr" = dontDistribute super."rtlsdr"; 6974 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.2.nix
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 "aeson-native" = dontDistribute super."aeson-native"; 1164 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 "archnews" = dontDistribute super."archnews"; 1371 "arff" = dontDistribute super."arff"; 1372 "argon" = dontDistribute super."argon"; 1373 "argparser" = dontDistribute super."argparser"; 1374 "arguedit" = dontDistribute super."arguedit"; ··· 2651 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2652 "digits" = dontDistribute super."digits"; 2653 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2654 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2655 "dingo-core" = dontDistribute super."dingo-core"; 2656 "dingo-example" = dontDistribute super."dingo-example"; ··· 2926 "error-loc" = dontDistribute super."error-loc"; 2927 "error-location" = dontDistribute super."error-location"; 2928 "error-message" = dontDistribute super."error-message"; 2929 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2930 "errors" = doDistribute super."errors_1_4_7"; 2931 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6257 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6258 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6259 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6260 "persistent-map" = dontDistribute super."persistent-map"; 6261 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6262 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6963 "rspp" = dontDistribute super."rspp"; 6964 "rss" = dontDistribute super."rss"; 6965 "rss2irc" = dontDistribute super."rss2irc"; 6966 "rtld" = dontDistribute super."rtld"; 6967 "rtlsdr" = dontDistribute super."rtlsdr"; 6968 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1164 "aeson-native" = dontDistribute super."aeson-native"; 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1371 "archnews" = dontDistribute super."archnews"; 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1374 "argon" = dontDistribute super."argon"; 1375 "argparser" = dontDistribute super."argparser"; 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2653 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2654 "digits" = dontDistribute super."digits"; 2655 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2656 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2657 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2658 "dingo-core" = dontDistribute super."dingo-core"; 2659 "dingo-example" = dontDistribute super."dingo-example"; ··· 2929 "error-loc" = dontDistribute super."error-loc"; 2930 "error-location" = dontDistribute super."error-location"; 2931 "error-message" = dontDistribute super."error-message"; 2932 + "error-util" = dontDistribute super."error-util"; 2933 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2934 "errors" = doDistribute super."errors_1_4_7"; 2935 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6261 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6262 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6263 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6264 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6265 "persistent-map" = dontDistribute super."persistent-map"; 6266 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6267 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6968 "rspp" = dontDistribute super."rspp"; 6969 "rss" = dontDistribute super."rss"; 6970 "rss2irc" = dontDistribute super."rss2irc"; 6971 + "rtcm" = dontDistribute super."rtcm"; 6972 "rtld" = dontDistribute super."rtld"; 6973 "rtlsdr" = dontDistribute super."rtlsdr"; 6974 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.3.nix
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 "aeson-native" = dontDistribute super."aeson-native"; 1164 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 "archnews" = dontDistribute super."archnews"; 1371 "arff" = dontDistribute super."arff"; 1372 "argon" = dontDistribute super."argon"; 1373 "argparser" = dontDistribute super."argparser"; 1374 "arguedit" = dontDistribute super."arguedit"; ··· 2651 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2652 "digits" = dontDistribute super."digits"; 2653 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2654 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2655 "dingo-core" = dontDistribute super."dingo-core"; 2656 "dingo-example" = dontDistribute super."dingo-example"; ··· 2926 "error-loc" = dontDistribute super."error-loc"; 2927 "error-location" = dontDistribute super."error-location"; 2928 "error-message" = dontDistribute super."error-message"; 2929 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2930 "errors" = doDistribute super."errors_1_4_7"; 2931 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6257 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6258 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6259 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6260 "persistent-map" = dontDistribute super."persistent-map"; 6261 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6262 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6963 "rspp" = dontDistribute super."rspp"; 6964 "rss" = dontDistribute super."rss"; 6965 "rss2irc" = dontDistribute super."rss2irc"; 6966 "rtld" = dontDistribute super."rtld"; 6967 "rtlsdr" = dontDistribute super."rtlsdr"; 6968 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1164 "aeson-native" = dontDistribute super."aeson-native"; 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1371 "archnews" = dontDistribute super."archnews"; 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1374 "argon" = dontDistribute super."argon"; 1375 "argparser" = dontDistribute super."argparser"; 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2653 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2654 "digits" = dontDistribute super."digits"; 2655 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2656 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2657 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2658 "dingo-core" = dontDistribute super."dingo-core"; 2659 "dingo-example" = dontDistribute super."dingo-example"; ··· 2929 "error-loc" = dontDistribute super."error-loc"; 2930 "error-location" = dontDistribute super."error-location"; 2931 "error-message" = dontDistribute super."error-message"; 2932 + "error-util" = dontDistribute super."error-util"; 2933 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2934 "errors" = doDistribute super."errors_1_4_7"; 2935 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6261 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6262 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6263 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6264 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6265 "persistent-map" = dontDistribute super."persistent-map"; 6266 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6267 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6968 "rspp" = dontDistribute super."rspp"; 6969 "rss" = dontDistribute super."rss"; 6970 "rss2irc" = dontDistribute super."rss2irc"; 6971 + "rtcm" = dontDistribute super."rtcm"; 6972 "rtld" = dontDistribute super."rtld"; 6973 "rtlsdr" = dontDistribute super."rtlsdr"; 6974 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.4.nix
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 "aeson-native" = dontDistribute super."aeson-native"; 1164 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 "archnews" = dontDistribute super."archnews"; 1371 "arff" = dontDistribute super."arff"; 1372 "argon" = dontDistribute super."argon"; 1373 "argparser" = dontDistribute super."argparser"; 1374 "arguedit" = dontDistribute super."arguedit"; ··· 2650 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2651 "digits" = dontDistribute super."digits"; 2652 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2653 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2654 "dingo-core" = dontDistribute super."dingo-core"; 2655 "dingo-example" = dontDistribute super."dingo-example"; ··· 2925 "error-loc" = dontDistribute super."error-loc"; 2926 "error-location" = dontDistribute super."error-location"; 2927 "error-message" = dontDistribute super."error-message"; 2928 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2929 "errors" = doDistribute super."errors_1_4_7"; 2930 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6254 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6255 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6256 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6257 "persistent-map" = dontDistribute super."persistent-map"; 6258 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6259 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6959 "rspp" = dontDistribute super."rspp"; 6960 "rss" = dontDistribute super."rss"; 6961 "rss2irc" = dontDistribute super."rss2irc"; 6962 "rtld" = dontDistribute super."rtld"; 6963 "rtlsdr" = dontDistribute super."rtlsdr"; 6964 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1164 "aeson-native" = dontDistribute super."aeson-native"; 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1371 "archnews" = dontDistribute super."archnews"; 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1374 "argon" = dontDistribute super."argon"; 1375 "argparser" = dontDistribute super."argparser"; 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2652 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2653 "digits" = dontDistribute super."digits"; 2654 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2655 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2656 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2657 "dingo-core" = dontDistribute super."dingo-core"; 2658 "dingo-example" = dontDistribute super."dingo-example"; ··· 2928 "error-loc" = dontDistribute super."error-loc"; 2929 "error-location" = dontDistribute super."error-location"; 2930 "error-message" = dontDistribute super."error-message"; 2931 + "error-util" = dontDistribute super."error-util"; 2932 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2933 "errors" = doDistribute super."errors_1_4_7"; 2934 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6258 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6259 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6260 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6261 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6262 "persistent-map" = dontDistribute super."persistent-map"; 6263 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6264 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6964 "rspp" = dontDistribute super."rspp"; 6965 "rss" = dontDistribute super."rss"; 6966 "rss2irc" = dontDistribute super."rss2irc"; 6967 + "rtcm" = dontDistribute super."rtcm"; 6968 "rtld" = dontDistribute super."rtld"; 6969 "rtlsdr" = dontDistribute super."rtlsdr"; 6970 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.5.nix
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 "aeson-native" = dontDistribute super."aeson-native"; 1164 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 "archnews" = dontDistribute super."archnews"; 1371 "arff" = dontDistribute super."arff"; 1372 "argon" = dontDistribute super."argon"; 1373 "argparser" = dontDistribute super."argparser"; 1374 "arguedit" = dontDistribute super."arguedit"; ··· 2650 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2651 "digits" = dontDistribute super."digits"; 2652 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2653 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2654 "dingo-core" = dontDistribute super."dingo-core"; 2655 "dingo-example" = dontDistribute super."dingo-example"; ··· 2925 "error-loc" = dontDistribute super."error-loc"; 2926 "error-location" = dontDistribute super."error-location"; 2927 "error-message" = dontDistribute super."error-message"; 2928 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2929 "errors" = doDistribute super."errors_1_4_7"; 2930 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6254 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6255 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6256 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6257 "persistent-map" = dontDistribute super."persistent-map"; 6258 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6259 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6959 "rspp" = dontDistribute super."rspp"; 6960 "rss" = dontDistribute super."rss"; 6961 "rss2irc" = dontDistribute super."rss2irc"; 6962 "rtld" = dontDistribute super."rtld"; 6963 "rtlsdr" = dontDistribute super."rtlsdr"; 6964 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1164 "aeson-native" = dontDistribute super."aeson-native"; 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1371 "archnews" = dontDistribute super."archnews"; 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1374 "argon" = dontDistribute super."argon"; 1375 "argparser" = dontDistribute super."argparser"; 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2652 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2653 "digits" = dontDistribute super."digits"; 2654 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2655 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2656 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2657 "dingo-core" = dontDistribute super."dingo-core"; 2658 "dingo-example" = dontDistribute super."dingo-example"; ··· 2928 "error-loc" = dontDistribute super."error-loc"; 2929 "error-location" = dontDistribute super."error-location"; 2930 "error-message" = dontDistribute super."error-message"; 2931 + "error-util" = dontDistribute super."error-util"; 2932 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2933 "errors" = doDistribute super."errors_1_4_7"; 2934 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6258 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6259 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6260 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6261 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6262 "persistent-map" = dontDistribute super."persistent-map"; 6263 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6264 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6964 "rspp" = dontDistribute super."rspp"; 6965 "rss" = dontDistribute super."rss"; 6966 "rss2irc" = dontDistribute super."rss2irc"; 6967 + "rtcm" = dontDistribute super."rtcm"; 6968 "rtld" = dontDistribute super."rtld"; 6969 "rtlsdr" = dontDistribute super."rtlsdr"; 6970 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.6.nix
··· 1158 "aeson-diff" = dontDistribute super."aeson-diff"; 1159 "aeson-extra" = dontDistribute super."aeson-extra"; 1160 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1161 "aeson-lens" = dontDistribute super."aeson-lens"; 1162 "aeson-native" = dontDistribute super."aeson-native"; 1163 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1368 "archlinux-web" = dontDistribute super."archlinux-web"; 1369 "archnews" = dontDistribute super."archnews"; 1370 "arff" = dontDistribute super."arff"; 1371 "argon" = dontDistribute super."argon"; 1372 "argparser" = dontDistribute super."argparser"; 1373 "arguedit" = dontDistribute super."arguedit"; ··· 2647 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2648 "digits" = dontDistribute super."digits"; 2649 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2650 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2651 "dingo-core" = dontDistribute super."dingo-core"; 2652 "dingo-example" = dontDistribute super."dingo-example"; ··· 2922 "error-loc" = dontDistribute super."error-loc"; 2923 "error-location" = dontDistribute super."error-location"; 2924 "error-message" = dontDistribute super."error-message"; 2925 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2926 "errors" = doDistribute super."errors_1_4_7"; 2927 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6249 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6250 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6251 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6252 "persistent-map" = dontDistribute super."persistent-map"; 6253 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6254 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6953 "rspp" = dontDistribute super."rspp"; 6954 "rss" = dontDistribute super."rss"; 6955 "rss2irc" = dontDistribute super."rss2irc"; 6956 "rtld" = dontDistribute super."rtld"; 6957 "rtlsdr" = dontDistribute super."rtlsdr"; 6958 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1158 "aeson-diff" = dontDistribute super."aeson-diff"; 1159 "aeson-extra" = dontDistribute super."aeson-extra"; 1160 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1161 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1162 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 "aeson-native" = dontDistribute super."aeson-native"; 1164 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 "archnews" = dontDistribute super."archnews"; 1371 "arff" = dontDistribute super."arff"; 1372 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1373 "argon" = dontDistribute super."argon"; 1374 "argparser" = dontDistribute super."argparser"; 1375 "arguedit" = dontDistribute super."arguedit"; ··· 2649 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2650 "digits" = dontDistribute super."digits"; 2651 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2652 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2653 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2654 "dingo-core" = dontDistribute super."dingo-core"; 2655 "dingo-example" = dontDistribute super."dingo-example"; ··· 2925 "error-loc" = dontDistribute super."error-loc"; 2926 "error-location" = dontDistribute super."error-location"; 2927 "error-message" = dontDistribute super."error-message"; 2928 + "error-util" = dontDistribute super."error-util"; 2929 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2930 "errors" = doDistribute super."errors_1_4_7"; 2931 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6253 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6254 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6255 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6256 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6257 "persistent-map" = dontDistribute super."persistent-map"; 6258 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6259 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6958 "rspp" = dontDistribute super."rspp"; 6959 "rss" = dontDistribute super."rss"; 6960 "rss2irc" = dontDistribute super."rss2irc"; 6961 + "rtcm" = dontDistribute super."rtcm"; 6962 "rtld" = dontDistribute super."rtld"; 6963 "rtlsdr" = dontDistribute super."rtlsdr"; 6964 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.7.nix
··· 1158 "aeson-diff" = dontDistribute super."aeson-diff"; 1159 "aeson-extra" = dontDistribute super."aeson-extra"; 1160 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1161 "aeson-lens" = dontDistribute super."aeson-lens"; 1162 "aeson-native" = dontDistribute super."aeson-native"; 1163 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1368 "archlinux-web" = dontDistribute super."archlinux-web"; 1369 "archnews" = dontDistribute super."archnews"; 1370 "arff" = dontDistribute super."arff"; 1371 "argon" = dontDistribute super."argon"; 1372 "argparser" = dontDistribute super."argparser"; 1373 "arguedit" = dontDistribute super."arguedit"; ··· 2647 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2648 "digits" = dontDistribute super."digits"; 2649 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2650 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2651 "dingo-core" = dontDistribute super."dingo-core"; 2652 "dingo-example" = dontDistribute super."dingo-example"; ··· 2922 "error-loc" = dontDistribute super."error-loc"; 2923 "error-location" = dontDistribute super."error-location"; 2924 "error-message" = dontDistribute super."error-message"; 2925 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2926 "errors" = doDistribute super."errors_1_4_7"; 2927 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6249 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6250 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6251 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6252 "persistent-map" = dontDistribute super."persistent-map"; 6253 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6254 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6953 "rspp" = dontDistribute super."rspp"; 6954 "rss" = dontDistribute super."rss"; 6955 "rss2irc" = dontDistribute super."rss2irc"; 6956 "rtld" = dontDistribute super."rtld"; 6957 "rtlsdr" = dontDistribute super."rtlsdr"; 6958 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1158 "aeson-diff" = dontDistribute super."aeson-diff"; 1159 "aeson-extra" = dontDistribute super."aeson-extra"; 1160 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1161 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1162 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 "aeson-native" = dontDistribute super."aeson-native"; 1164 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 "archnews" = dontDistribute super."archnews"; 1371 "arff" = dontDistribute super."arff"; 1372 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1373 "argon" = dontDistribute super."argon"; 1374 "argparser" = dontDistribute super."argparser"; 1375 "arguedit" = dontDistribute super."arguedit"; ··· 2649 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2650 "digits" = dontDistribute super."digits"; 2651 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2652 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2653 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2654 "dingo-core" = dontDistribute super."dingo-core"; 2655 "dingo-example" = dontDistribute super."dingo-example"; ··· 2925 "error-loc" = dontDistribute super."error-loc"; 2926 "error-location" = dontDistribute super."error-location"; 2927 "error-message" = dontDistribute super."error-message"; 2928 + "error-util" = dontDistribute super."error-util"; 2929 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2930 "errors" = doDistribute super."errors_1_4_7"; 2931 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6253 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6254 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6255 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6256 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6257 "persistent-map" = dontDistribute super."persistent-map"; 6258 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6259 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6958 "rspp" = dontDistribute super."rspp"; 6959 "rss" = dontDistribute super."rss"; 6960 "rss2irc" = dontDistribute super."rss2irc"; 6961 + "rtcm" = dontDistribute super."rtcm"; 6962 "rtld" = dontDistribute super."rtld"; 6963 "rtlsdr" = dontDistribute super."rtlsdr"; 6964 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.0.nix
··· 1154 "aeson-diff" = dontDistribute super."aeson-diff"; 1155 "aeson-extra" = dontDistribute super."aeson-extra"; 1156 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 "argon" = dontDistribute super."argon"; 1368 "argparser" = dontDistribute super."argparser"; 1369 "arguedit" = dontDistribute super."arguedit"; ··· 2638 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2639 "digits" = dontDistribute super."digits"; 2640 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2641 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2642 "dingo-core" = dontDistribute super."dingo-core"; 2643 "dingo-example" = dontDistribute super."dingo-example"; ··· 2911 "error-loc" = dontDistribute super."error-loc"; 2912 "error-location" = dontDistribute super."error-location"; 2913 "error-message" = dontDistribute super."error-message"; 2914 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2915 "errors" = doDistribute super."errors_1_4_7"; 2916 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6236 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6237 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6238 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6239 "persistent-map" = dontDistribute super."persistent-map"; 6240 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6241 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6938 "rspp" = dontDistribute super."rspp"; 6939 "rss" = dontDistribute super."rss"; 6940 "rss2irc" = dontDistribute super."rss2irc"; 6941 "rtld" = dontDistribute super."rtld"; 6942 "rtlsdr" = dontDistribute super."rtlsdr"; 6943 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1154 "aeson-diff" = dontDistribute super."aeson-diff"; 1155 "aeson-extra" = dontDistribute super."aeson-extra"; 1156 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1157 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1158 "aeson-lens" = dontDistribute super."aeson-lens"; 1159 "aeson-native" = dontDistribute super."aeson-native"; 1160 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1365 "archlinux-web" = dontDistribute super."archlinux-web"; 1366 "archnews" = dontDistribute super."archnews"; 1367 "arff" = dontDistribute super."arff"; 1368 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1369 "argon" = dontDistribute super."argon"; 1370 "argparser" = dontDistribute super."argparser"; 1371 "arguedit" = dontDistribute super."arguedit"; ··· 2640 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2641 "digits" = dontDistribute super."digits"; 2642 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2643 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2644 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2645 "dingo-core" = dontDistribute super."dingo-core"; 2646 "dingo-example" = dontDistribute super."dingo-example"; ··· 2914 "error-loc" = dontDistribute super."error-loc"; 2915 "error-location" = dontDistribute super."error-location"; 2916 "error-message" = dontDistribute super."error-message"; 2917 + "error-util" = dontDistribute super."error-util"; 2918 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2919 "errors" = doDistribute super."errors_1_4_7"; 2920 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6240 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6241 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6242 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6243 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6244 "persistent-map" = dontDistribute super."persistent-map"; 6245 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6246 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6943 "rspp" = dontDistribute super."rspp"; 6944 "rss" = dontDistribute super."rss"; 6945 "rss2irc" = dontDistribute super."rss2irc"; 6946 + "rtcm" = dontDistribute super."rtcm"; 6947 "rtld" = dontDistribute super."rtld"; 6948 "rtlsdr" = dontDistribute super."rtlsdr"; 6949 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.1.nix
··· 1154 "aeson-diff" = dontDistribute super."aeson-diff"; 1155 "aeson-extra" = dontDistribute super."aeson-extra"; 1156 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 "argon" = dontDistribute super."argon"; 1368 "argparser" = dontDistribute super."argparser"; 1369 "arguedit" = dontDistribute super."arguedit"; ··· 2635 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2636 "digits" = dontDistribute super."digits"; 2637 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2638 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2639 "dingo-core" = dontDistribute super."dingo-core"; 2640 "dingo-example" = dontDistribute super."dingo-example"; ··· 2907 "error-loc" = dontDistribute super."error-loc"; 2908 "error-location" = dontDistribute super."error-location"; 2909 "error-message" = dontDistribute super."error-message"; 2910 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2911 "errors" = doDistribute super."errors_1_4_7"; 2912 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6227 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6228 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6229 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6230 "persistent-map" = dontDistribute super."persistent-map"; 6231 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6232 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6929 "rspp" = dontDistribute super."rspp"; 6930 "rss" = dontDistribute super."rss"; 6931 "rss2irc" = dontDistribute super."rss2irc"; 6932 "rtld" = dontDistribute super."rtld"; 6933 "rtlsdr" = dontDistribute super."rtlsdr"; 6934 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1154 "aeson-diff" = dontDistribute super."aeson-diff"; 1155 "aeson-extra" = dontDistribute super."aeson-extra"; 1156 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1157 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1158 "aeson-lens" = dontDistribute super."aeson-lens"; 1159 "aeson-native" = dontDistribute super."aeson-native"; 1160 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1365 "archlinux-web" = dontDistribute super."archlinux-web"; 1366 "archnews" = dontDistribute super."archnews"; 1367 "arff" = dontDistribute super."arff"; 1368 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1369 "argon" = dontDistribute super."argon"; 1370 "argparser" = dontDistribute super."argparser"; 1371 "arguedit" = dontDistribute super."arguedit"; ··· 2637 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2638 "digits" = dontDistribute super."digits"; 2639 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2640 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2641 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2642 "dingo-core" = dontDistribute super."dingo-core"; 2643 "dingo-example" = dontDistribute super."dingo-example"; ··· 2910 "error-loc" = dontDistribute super."error-loc"; 2911 "error-location" = dontDistribute super."error-location"; 2912 "error-message" = dontDistribute super."error-message"; 2913 + "error-util" = dontDistribute super."error-util"; 2914 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2915 "errors" = doDistribute super."errors_1_4_7"; 2916 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6231 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6232 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6233 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6234 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6235 "persistent-map" = dontDistribute super."persistent-map"; 6236 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6237 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6934 "rspp" = dontDistribute super."rspp"; 6935 "rss" = dontDistribute super."rss"; 6936 "rss2irc" = dontDistribute super."rss2irc"; 6937 + "rtcm" = dontDistribute super."rtcm"; 6938 "rtld" = dontDistribute super."rtld"; 6939 "rtlsdr" = dontDistribute super."rtlsdr"; 6940 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.10.nix
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 "aeson-native" = dontDistribute super."aeson-native"; 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 "archnews" = dontDistribute super."archnews"; 1365 "arff" = dontDistribute super."arff"; 1366 "argon" = dontDistribute super."argon"; 1367 "argparser" = dontDistribute super."argparser"; 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2629 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2630 "digits" = dontDistribute super."digits"; 2631 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2632 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2633 "dingo-core" = dontDistribute super."dingo-core"; 2634 "dingo-example" = dontDistribute super."dingo-example"; ··· 2901 "error-loc" = dontDistribute super."error-loc"; 2902 "error-location" = dontDistribute super."error-location"; 2903 "error-message" = dontDistribute super."error-message"; 2904 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2905 "errors" = doDistribute super."errors_1_4_7"; 2906 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6200 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6201 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6202 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6203 "persistent-map" = dontDistribute super."persistent-map"; 6204 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6205 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6899 "rspp" = dontDistribute super."rspp"; 6900 "rss" = dontDistribute super."rss"; 6901 "rss2irc" = dontDistribute super."rss2irc"; 6902 "rtld" = dontDistribute super."rtld"; 6903 "rtlsdr" = dontDistribute super."rtlsdr"; 6904 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1368 "argon" = dontDistribute super."argon"; 1369 "argparser" = dontDistribute super."argparser"; 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2631 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 "digits" = dontDistribute super."digits"; 2633 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2634 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2635 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2636 "dingo-core" = dontDistribute super."dingo-core"; 2637 "dingo-example" = dontDistribute super."dingo-example"; ··· 2904 "error-loc" = dontDistribute super."error-loc"; 2905 "error-location" = dontDistribute super."error-location"; 2906 "error-message" = dontDistribute super."error-message"; 2907 + "error-util" = dontDistribute super."error-util"; 2908 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2909 "errors" = doDistribute super."errors_1_4_7"; 2910 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6204 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6205 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6206 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6207 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6208 "persistent-map" = dontDistribute super."persistent-map"; 6209 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6210 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6904 "rspp" = dontDistribute super."rspp"; 6905 "rss" = dontDistribute super."rss"; 6906 "rss2irc" = dontDistribute super."rss2irc"; 6907 + "rtcm" = dontDistribute super."rtcm"; 6908 "rtld" = dontDistribute super."rtld"; 6909 "rtlsdr" = dontDistribute super."rtlsdr"; 6910 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.11.nix
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 "aeson-native" = dontDistribute super."aeson-native"; 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 "archnews" = dontDistribute super."archnews"; 1365 "arff" = dontDistribute super."arff"; 1366 "argon" = dontDistribute super."argon"; 1367 "argparser" = dontDistribute super."argparser"; 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2629 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2630 "digits" = dontDistribute super."digits"; 2631 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2632 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2633 "dingo-core" = dontDistribute super."dingo-core"; 2634 "dingo-example" = dontDistribute super."dingo-example"; ··· 2901 "error-loc" = dontDistribute super."error-loc"; 2902 "error-location" = dontDistribute super."error-location"; 2903 "error-message" = dontDistribute super."error-message"; 2904 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2905 "errors" = doDistribute super."errors_1_4_7"; 2906 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6196 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6197 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6198 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6199 "persistent-map" = dontDistribute super."persistent-map"; 6200 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6201 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6895 "rspp" = dontDistribute super."rspp"; 6896 "rss" = dontDistribute super."rss"; 6897 "rss2irc" = dontDistribute super."rss2irc"; 6898 "rtld" = dontDistribute super."rtld"; 6899 "rtlsdr" = dontDistribute super."rtlsdr"; 6900 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1368 "argon" = dontDistribute super."argon"; 1369 "argparser" = dontDistribute super."argparser"; 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2631 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 "digits" = dontDistribute super."digits"; 2633 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2634 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2635 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2636 "dingo-core" = dontDistribute super."dingo-core"; 2637 "dingo-example" = dontDistribute super."dingo-example"; ··· 2904 "error-loc" = dontDistribute super."error-loc"; 2905 "error-location" = dontDistribute super."error-location"; 2906 "error-message" = dontDistribute super."error-message"; 2907 + "error-util" = dontDistribute super."error-util"; 2908 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2909 "errors" = doDistribute super."errors_1_4_7"; 2910 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6200 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6201 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6202 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6203 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6204 "persistent-map" = dontDistribute super."persistent-map"; 6205 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6206 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6900 "rspp" = dontDistribute super."rspp"; 6901 "rss" = dontDistribute super."rss"; 6902 "rss2irc" = dontDistribute super."rss2irc"; 6903 + "rtcm" = dontDistribute super."rtcm"; 6904 "rtld" = dontDistribute super."rtld"; 6905 "rtlsdr" = dontDistribute super."rtlsdr"; 6906 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.12.nix
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 "aeson-native" = dontDistribute super."aeson-native"; 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 "archnews" = dontDistribute super."archnews"; 1365 "arff" = dontDistribute super."arff"; 1366 "argon" = dontDistribute super."argon"; 1367 "argparser" = dontDistribute super."argparser"; 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2629 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2630 "digits" = dontDistribute super."digits"; 2631 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2632 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2633 "dingo-core" = dontDistribute super."dingo-core"; 2634 "dingo-example" = dontDistribute super."dingo-example"; ··· 2901 "error-loc" = dontDistribute super."error-loc"; 2902 "error-location" = dontDistribute super."error-location"; 2903 "error-message" = dontDistribute super."error-message"; 2904 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2905 "errors" = doDistribute super."errors_1_4_7"; 2906 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6195 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6196 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6197 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6198 "persistent-map" = dontDistribute super."persistent-map"; 6199 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6200 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6894 "rspp" = dontDistribute super."rspp"; 6895 "rss" = dontDistribute super."rss"; 6896 "rss2irc" = dontDistribute super."rss2irc"; 6897 "rtld" = dontDistribute super."rtld"; 6898 "rtlsdr" = dontDistribute super."rtlsdr"; 6899 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1368 "argon" = dontDistribute super."argon"; 1369 "argparser" = dontDistribute super."argparser"; 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2631 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 "digits" = dontDistribute super."digits"; 2633 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2634 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2635 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2636 "dingo-core" = dontDistribute super."dingo-core"; 2637 "dingo-example" = dontDistribute super."dingo-example"; ··· 2904 "error-loc" = dontDistribute super."error-loc"; 2905 "error-location" = dontDistribute super."error-location"; 2906 "error-message" = dontDistribute super."error-message"; 2907 + "error-util" = dontDistribute super."error-util"; 2908 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2909 "errors" = doDistribute super."errors_1_4_7"; 2910 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6199 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6200 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6201 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6202 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6203 "persistent-map" = dontDistribute super."persistent-map"; 6204 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6205 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6899 "rspp" = dontDistribute super."rspp"; 6900 "rss" = dontDistribute super."rss"; 6901 "rss2irc" = dontDistribute super."rss2irc"; 6902 + "rtcm" = dontDistribute super."rtcm"; 6903 "rtld" = dontDistribute super."rtld"; 6904 "rtlsdr" = dontDistribute super."rtlsdr"; 6905 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.13.nix
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 "aeson-native" = dontDistribute super."aeson-native"; 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 "archnews" = dontDistribute super."archnews"; 1365 "arff" = dontDistribute super."arff"; 1366 "argon" = dontDistribute super."argon"; 1367 "argparser" = dontDistribute super."argparser"; 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2628 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2629 "digits" = dontDistribute super."digits"; 2630 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2631 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2632 "dingo-core" = dontDistribute super."dingo-core"; 2633 "dingo-example" = dontDistribute super."dingo-example"; ··· 2900 "error-loc" = dontDistribute super."error-loc"; 2901 "error-location" = dontDistribute super."error-location"; 2902 "error-message" = dontDistribute super."error-message"; 2903 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2904 "errors" = doDistribute super."errors_1_4_7"; 2905 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6193 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6194 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6195 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6196 "persistent-map" = dontDistribute super."persistent-map"; 6197 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6198 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6892 "rspp" = dontDistribute super."rspp"; 6893 "rss" = dontDistribute super."rss"; 6894 "rss2irc" = dontDistribute super."rss2irc"; 6895 "rtld" = dontDistribute super."rtld"; 6896 "rtlsdr" = dontDistribute super."rtlsdr"; 6897 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1368 "argon" = dontDistribute super."argon"; 1369 "argparser" = dontDistribute super."argparser"; 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2630 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2631 "digits" = dontDistribute super."digits"; 2632 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2633 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2634 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2635 "dingo-core" = dontDistribute super."dingo-core"; 2636 "dingo-example" = dontDistribute super."dingo-example"; ··· 2903 "error-loc" = dontDistribute super."error-loc"; 2904 "error-location" = dontDistribute super."error-location"; 2905 "error-message" = dontDistribute super."error-message"; 2906 + "error-util" = dontDistribute super."error-util"; 2907 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2908 "errors" = doDistribute super."errors_1_4_7"; 2909 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6197 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6198 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6199 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6200 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6201 "persistent-map" = dontDistribute super."persistent-map"; 6202 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6203 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6897 "rspp" = dontDistribute super."rspp"; 6898 "rss" = dontDistribute super."rss"; 6899 "rss2irc" = dontDistribute super."rss2irc"; 6900 + "rtcm" = dontDistribute super."rtcm"; 6901 "rtld" = dontDistribute super."rtld"; 6902 "rtlsdr" = dontDistribute super."rtlsdr"; 6903 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.14.nix
··· 1152 "aeson-diff" = dontDistribute super."aeson-diff"; 1153 "aeson-extra" = dontDistribute super."aeson-extra"; 1154 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1155 "aeson-lens" = dontDistribute super."aeson-lens"; 1156 "aeson-native" = dontDistribute super."aeson-native"; 1157 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1362 "archlinux-web" = dontDistribute super."archlinux-web"; 1363 "archnews" = dontDistribute super."archnews"; 1364 "arff" = dontDistribute super."arff"; 1365 "argon" = dontDistribute super."argon"; 1366 "argparser" = dontDistribute super."argparser"; 1367 "arguedit" = dontDistribute super."arguedit"; ··· 2625 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2626 "digits" = dontDistribute super."digits"; 2627 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2628 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2629 "dingo-core" = dontDistribute super."dingo-core"; 2630 "dingo-example" = dontDistribute super."dingo-example"; ··· 2897 "error-loc" = dontDistribute super."error-loc"; 2898 "error-location" = dontDistribute super."error-location"; 2899 "error-message" = dontDistribute super."error-message"; 2900 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2901 "errors" = doDistribute super."errors_1_4_7"; 2902 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6186 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6187 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6188 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6189 "persistent-map" = dontDistribute super."persistent-map"; 6190 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6191 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6884 "rspp" = dontDistribute super."rspp"; 6885 "rss" = dontDistribute super."rss"; 6886 "rss2irc" = dontDistribute super."rss2irc"; 6887 "rtld" = dontDistribute super."rtld"; 6888 "rtlsdr" = dontDistribute super."rtlsdr"; 6889 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1152 "aeson-diff" = dontDistribute super."aeson-diff"; 1153 "aeson-extra" = dontDistribute super."aeson-extra"; 1154 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1155 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 "aeson-native" = dontDistribute super."aeson-native"; 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 "archnews" = dontDistribute super."archnews"; 1365 "arff" = dontDistribute super."arff"; 1366 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1367 "argon" = dontDistribute super."argon"; 1368 "argparser" = dontDistribute super."argparser"; 1369 "arguedit" = dontDistribute super."arguedit"; ··· 2627 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2628 "digits" = dontDistribute super."digits"; 2629 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2630 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2631 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2632 "dingo-core" = dontDistribute super."dingo-core"; 2633 "dingo-example" = dontDistribute super."dingo-example"; ··· 2900 "error-loc" = dontDistribute super."error-loc"; 2901 "error-location" = dontDistribute super."error-location"; 2902 "error-message" = dontDistribute super."error-message"; 2903 + "error-util" = dontDistribute super."error-util"; 2904 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2905 "errors" = doDistribute super."errors_1_4_7"; 2906 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6190 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6191 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6192 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6193 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6194 "persistent-map" = dontDistribute super."persistent-map"; 6195 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6196 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6889 "rspp" = dontDistribute super."rspp"; 6890 "rss" = dontDistribute super."rss"; 6891 "rss2irc" = dontDistribute super."rss2irc"; 6892 + "rtcm" = dontDistribute super."rtcm"; 6893 "rtld" = dontDistribute super."rtld"; 6894 "rtlsdr" = dontDistribute super."rtlsdr"; 6895 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.15.nix
··· 1151 "aeson-diff" = dontDistribute super."aeson-diff"; 1152 "aeson-extra" = dontDistribute super."aeson-extra"; 1153 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1154 "aeson-lens" = dontDistribute super."aeson-lens"; 1155 "aeson-native" = dontDistribute super."aeson-native"; 1156 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1361 "archlinux-web" = dontDistribute super."archlinux-web"; 1362 "archnews" = dontDistribute super."archnews"; 1363 "arff" = dontDistribute super."arff"; 1364 "argon" = dontDistribute super."argon"; 1365 "argparser" = dontDistribute super."argparser"; 1366 "arguedit" = dontDistribute super."arguedit"; ··· 2621 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2622 "digits" = dontDistribute super."digits"; 2623 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2624 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2625 "dingo-core" = dontDistribute super."dingo-core"; 2626 "dingo-example" = dontDistribute super."dingo-example"; ··· 2892 "error-loc" = dontDistribute super."error-loc"; 2893 "error-location" = dontDistribute super."error-location"; 2894 "error-message" = dontDistribute super."error-message"; 2895 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2896 "errors" = doDistribute super."errors_1_4_7"; 2897 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6179 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6180 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6181 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6182 "persistent-map" = dontDistribute super."persistent-map"; 6183 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6184 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6875 "rspp" = dontDistribute super."rspp"; 6876 "rss" = dontDistribute super."rss"; 6877 "rss2irc" = dontDistribute super."rss2irc"; 6878 "rtld" = dontDistribute super."rtld"; 6879 "rtlsdr" = dontDistribute super."rtlsdr"; 6880 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1151 "aeson-diff" = dontDistribute super."aeson-diff"; 1152 "aeson-extra" = dontDistribute super."aeson-extra"; 1153 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1154 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1155 "aeson-lens" = dontDistribute super."aeson-lens"; 1156 "aeson-native" = dontDistribute super."aeson-native"; 1157 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1362 "archlinux-web" = dontDistribute super."archlinux-web"; 1363 "archnews" = dontDistribute super."archnews"; 1364 "arff" = dontDistribute super."arff"; 1365 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1366 "argon" = dontDistribute super."argon"; 1367 "argparser" = dontDistribute super."argparser"; 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2623 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2624 "digits" = dontDistribute super."digits"; 2625 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2626 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2627 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2628 "dingo-core" = dontDistribute super."dingo-core"; 2629 "dingo-example" = dontDistribute super."dingo-example"; ··· 2895 "error-loc" = dontDistribute super."error-loc"; 2896 "error-location" = dontDistribute super."error-location"; 2897 "error-message" = dontDistribute super."error-message"; 2898 + "error-util" = dontDistribute super."error-util"; 2899 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2900 "errors" = doDistribute super."errors_1_4_7"; 2901 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6183 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6184 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6185 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6186 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6187 "persistent-map" = dontDistribute super."persistent-map"; 6188 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6189 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6880 "rspp" = dontDistribute super."rspp"; 6881 "rss" = dontDistribute super."rss"; 6882 "rss2irc" = dontDistribute super."rss2irc"; 6883 + "rtcm" = dontDistribute super."rtcm"; 6884 "rtld" = dontDistribute super."rtld"; 6885 "rtlsdr" = dontDistribute super."rtlsdr"; 6886 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.2.nix
··· 1154 "aeson-diff" = dontDistribute super."aeson-diff"; 1155 "aeson-extra" = dontDistribute super."aeson-extra"; 1156 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 "argon" = dontDistribute super."argon"; 1368 "argparser" = dontDistribute super."argparser"; 1369 "arguedit" = dontDistribute super."arguedit"; ··· 2633 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2634 "digits" = dontDistribute super."digits"; 2635 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2636 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2637 "dingo-core" = dontDistribute super."dingo-core"; 2638 "dingo-example" = dontDistribute super."dingo-example"; ··· 2905 "error-loc" = dontDistribute super."error-loc"; 2906 "error-location" = dontDistribute super."error-location"; 2907 "error-message" = dontDistribute super."error-message"; 2908 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2909 "errors" = doDistribute super."errors_1_4_7"; 2910 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6223 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6224 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6225 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6226 "persistent-map" = dontDistribute super."persistent-map"; 6227 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6228 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6924 "rspp" = dontDistribute super."rspp"; 6925 "rss" = dontDistribute super."rss"; 6926 "rss2irc" = dontDistribute super."rss2irc"; 6927 "rtld" = dontDistribute super."rtld"; 6928 "rtlsdr" = dontDistribute super."rtlsdr"; 6929 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1154 "aeson-diff" = dontDistribute super."aeson-diff"; 1155 "aeson-extra" = dontDistribute super."aeson-extra"; 1156 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1157 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1158 "aeson-lens" = dontDistribute super."aeson-lens"; 1159 "aeson-native" = dontDistribute super."aeson-native"; 1160 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1365 "archlinux-web" = dontDistribute super."archlinux-web"; 1366 "archnews" = dontDistribute super."archnews"; 1367 "arff" = dontDistribute super."arff"; 1368 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1369 "argon" = dontDistribute super."argon"; 1370 "argparser" = dontDistribute super."argparser"; 1371 "arguedit" = dontDistribute super."arguedit"; ··· 2635 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2636 "digits" = dontDistribute super."digits"; 2637 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2638 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2639 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2640 "dingo-core" = dontDistribute super."dingo-core"; 2641 "dingo-example" = dontDistribute super."dingo-example"; ··· 2908 "error-loc" = dontDistribute super."error-loc"; 2909 "error-location" = dontDistribute super."error-location"; 2910 "error-message" = dontDistribute super."error-message"; 2911 + "error-util" = dontDistribute super."error-util"; 2912 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2913 "errors" = doDistribute super."errors_1_4_7"; 2914 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6227 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6228 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6229 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6230 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6231 "persistent-map" = dontDistribute super."persistent-map"; 6232 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6233 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6929 "rspp" = dontDistribute super."rspp"; 6930 "rss" = dontDistribute super."rss"; 6931 "rss2irc" = dontDistribute super."rss2irc"; 6932 + "rtcm" = dontDistribute super."rtcm"; 6933 "rtld" = dontDistribute super."rtld"; 6934 "rtlsdr" = dontDistribute super."rtlsdr"; 6935 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.4.nix
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 "aeson-native" = dontDistribute super."aeson-native"; 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 "archnews" = dontDistribute super."archnews"; 1365 "arff" = dontDistribute super."arff"; 1366 "argon" = dontDistribute super."argon"; 1367 "argparser" = dontDistribute super."argparser"; 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2632 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2633 "digits" = dontDistribute super."digits"; 2634 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2635 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2636 "dingo-core" = dontDistribute super."dingo-core"; 2637 "dingo-example" = dontDistribute super."dingo-example"; ··· 2904 "error-loc" = dontDistribute super."error-loc"; 2905 "error-location" = dontDistribute super."error-location"; 2906 "error-message" = dontDistribute super."error-message"; 2907 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2908 "errors" = doDistribute super."errors_1_4_7"; 2909 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6219 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6220 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6221 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6222 "persistent-map" = dontDistribute super."persistent-map"; 6223 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6224 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6919 "rspp" = dontDistribute super."rspp"; 6920 "rss" = dontDistribute super."rss"; 6921 "rss2irc" = dontDistribute super."rss2irc"; 6922 "rtld" = dontDistribute super."rtld"; 6923 "rtlsdr" = dontDistribute super."rtlsdr"; 6924 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1368 "argon" = dontDistribute super."argon"; 1369 "argparser" = dontDistribute super."argparser"; 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2634 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2635 "digits" = dontDistribute super."digits"; 2636 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2637 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2638 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2639 "dingo-core" = dontDistribute super."dingo-core"; 2640 "dingo-example" = dontDistribute super."dingo-example"; ··· 2907 "error-loc" = dontDistribute super."error-loc"; 2908 "error-location" = dontDistribute super."error-location"; 2909 "error-message" = dontDistribute super."error-message"; 2910 + "error-util" = dontDistribute super."error-util"; 2911 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2912 "errors" = doDistribute super."errors_1_4_7"; 2913 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6223 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6224 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6225 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6226 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6227 "persistent-map" = dontDistribute super."persistent-map"; 6228 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6229 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6924 "rspp" = dontDistribute super."rspp"; 6925 "rss" = dontDistribute super."rss"; 6926 "rss2irc" = dontDistribute super."rss2irc"; 6927 + "rtcm" = dontDistribute super."rtcm"; 6928 "rtld" = dontDistribute super."rtld"; 6929 "rtlsdr" = dontDistribute super."rtlsdr"; 6930 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.5.nix
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 "aeson-native" = dontDistribute super."aeson-native"; 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 "archnews" = dontDistribute super."archnews"; 1365 "arff" = dontDistribute super."arff"; 1366 "argon" = dontDistribute super."argon"; 1367 "argparser" = dontDistribute super."argparser"; 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2631 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 "digits" = dontDistribute super."digits"; 2633 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2634 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2635 "dingo-core" = dontDistribute super."dingo-core"; 2636 "dingo-example" = dontDistribute super."dingo-example"; ··· 2903 "error-loc" = dontDistribute super."error-loc"; 2904 "error-location" = dontDistribute super."error-location"; 2905 "error-message" = dontDistribute super."error-message"; 2906 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2907 "errors" = doDistribute super."errors_1_4_7"; 2908 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6217 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6218 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6219 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6220 "persistent-map" = dontDistribute super."persistent-map"; 6221 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6222 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6917 "rspp" = dontDistribute super."rspp"; 6918 "rss" = dontDistribute super."rss"; 6919 "rss2irc" = dontDistribute super."rss2irc"; 6920 "rtld" = dontDistribute super."rtld"; 6921 "rtlsdr" = dontDistribute super."rtlsdr"; 6922 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1368 "argon" = dontDistribute super."argon"; 1369 "argparser" = dontDistribute super."argparser"; 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2633 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2634 "digits" = dontDistribute super."digits"; 2635 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2636 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2637 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2638 "dingo-core" = dontDistribute super."dingo-core"; 2639 "dingo-example" = dontDistribute super."dingo-example"; ··· 2906 "error-loc" = dontDistribute super."error-loc"; 2907 "error-location" = dontDistribute super."error-location"; 2908 "error-message" = dontDistribute super."error-message"; 2909 + "error-util" = dontDistribute super."error-util"; 2910 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2911 "errors" = doDistribute super."errors_1_4_7"; 2912 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6221 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6222 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6223 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6224 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6225 "persistent-map" = dontDistribute super."persistent-map"; 6226 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6227 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6922 "rspp" = dontDistribute super."rspp"; 6923 "rss" = dontDistribute super."rss"; 6924 "rss2irc" = dontDistribute super."rss2irc"; 6925 + "rtcm" = dontDistribute super."rtcm"; 6926 "rtld" = dontDistribute super."rtld"; 6927 "rtlsdr" = dontDistribute super."rtlsdr"; 6928 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.7.nix
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 "aeson-native" = dontDistribute super."aeson-native"; 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 "archnews" = dontDistribute super."archnews"; 1365 "arff" = dontDistribute super."arff"; 1366 "argon" = dontDistribute super."argon"; 1367 "argparser" = dontDistribute super."argparser"; 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2631 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 "digits" = dontDistribute super."digits"; 2633 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2634 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2635 "dingo-core" = dontDistribute super."dingo-core"; 2636 "dingo-example" = dontDistribute super."dingo-example"; ··· 2903 "error-loc" = dontDistribute super."error-loc"; 2904 "error-location" = dontDistribute super."error-location"; 2905 "error-message" = dontDistribute super."error-message"; 2906 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2907 "errors" = doDistribute super."errors_1_4_7"; 2908 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6211 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6212 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6213 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6214 "persistent-map" = dontDistribute super."persistent-map"; 6215 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6216 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6911 "rspp" = dontDistribute super."rspp"; 6912 "rss" = dontDistribute super."rss"; 6913 "rss2irc" = dontDistribute super."rss2irc"; 6914 "rtld" = dontDistribute super."rtld"; 6915 "rtlsdr" = dontDistribute super."rtlsdr"; 6916 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1368 "argon" = dontDistribute super."argon"; 1369 "argparser" = dontDistribute super."argparser"; 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2633 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2634 "digits" = dontDistribute super."digits"; 2635 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2636 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2637 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2638 "dingo-core" = dontDistribute super."dingo-core"; 2639 "dingo-example" = dontDistribute super."dingo-example"; ··· 2906 "error-loc" = dontDistribute super."error-loc"; 2907 "error-location" = dontDistribute super."error-location"; 2908 "error-message" = dontDistribute super."error-message"; 2909 + "error-util" = dontDistribute super."error-util"; 2910 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2911 "errors" = doDistribute super."errors_1_4_7"; 2912 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6215 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6216 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6217 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6218 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6219 "persistent-map" = dontDistribute super."persistent-map"; 6220 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6221 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6916 "rspp" = dontDistribute super."rspp"; 6917 "rss" = dontDistribute super."rss"; 6918 "rss2irc" = dontDistribute super."rss2irc"; 6919 + "rtcm" = dontDistribute super."rtcm"; 6920 "rtld" = dontDistribute super."rtld"; 6921 "rtlsdr" = dontDistribute super."rtlsdr"; 6922 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.8.nix
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 "aeson-native" = dontDistribute super."aeson-native"; 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 "archnews" = dontDistribute super."archnews"; 1365 "arff" = dontDistribute super."arff"; 1366 "argon" = dontDistribute super."argon"; 1367 "argparser" = dontDistribute super."argparser"; 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2631 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 "digits" = dontDistribute super."digits"; 2633 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2634 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2635 "dingo-core" = dontDistribute super."dingo-core"; 2636 "dingo-example" = dontDistribute super."dingo-example"; ··· 2903 "error-loc" = dontDistribute super."error-loc"; 2904 "error-location" = dontDistribute super."error-location"; 2905 "error-message" = dontDistribute super."error-message"; 2906 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2907 "errors" = doDistribute super."errors_1_4_7"; 2908 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6206 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6207 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6208 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6209 "persistent-map" = dontDistribute super."persistent-map"; 6210 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6211 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6906 "rspp" = dontDistribute super."rspp"; 6907 "rss" = dontDistribute super."rss"; 6908 "rss2irc" = dontDistribute super."rss2irc"; 6909 "rtld" = dontDistribute super."rtld"; 6910 "rtlsdr" = dontDistribute super."rtlsdr"; 6911 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1368 "argon" = dontDistribute super."argon"; 1369 "argparser" = dontDistribute super."argparser"; 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2633 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2634 "digits" = dontDistribute super."digits"; 2635 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2636 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2637 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2638 "dingo-core" = dontDistribute super."dingo-core"; 2639 "dingo-example" = dontDistribute super."dingo-example"; ··· 2906 "error-loc" = dontDistribute super."error-loc"; 2907 "error-location" = dontDistribute super."error-location"; 2908 "error-message" = dontDistribute super."error-message"; 2909 + "error-util" = dontDistribute super."error-util"; 2910 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2911 "errors" = doDistribute super."errors_1_4_7"; 2912 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6210 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6211 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6212 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6213 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6214 "persistent-map" = dontDistribute super."persistent-map"; 6215 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6216 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6911 "rspp" = dontDistribute super."rspp"; 6912 "rss" = dontDistribute super."rss"; 6913 "rss2irc" = dontDistribute super."rss2irc"; 6914 + "rtcm" = dontDistribute super."rtcm"; 6915 "rtld" = dontDistribute super."rtld"; 6916 "rtlsdr" = dontDistribute super."rtlsdr"; 6917 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.9.nix
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 "aeson-native" = dontDistribute super."aeson-native"; 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 "archnews" = dontDistribute super."archnews"; 1365 "arff" = dontDistribute super."arff"; 1366 "argon" = dontDistribute super."argon"; 1367 "argparser" = dontDistribute super."argparser"; 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2631 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 "digits" = dontDistribute super."digits"; 2633 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2634 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2635 "dingo-core" = dontDistribute super."dingo-core"; 2636 "dingo-example" = dontDistribute super."dingo-example"; ··· 2903 "error-loc" = dontDistribute super."error-loc"; 2904 "error-location" = dontDistribute super."error-location"; 2905 "error-message" = dontDistribute super."error-message"; 2906 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2907 "errors" = doDistribute super."errors_1_4_7"; 2908 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6203 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6204 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6205 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6206 "persistent-map" = dontDistribute super."persistent-map"; 6207 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6208 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6903 "rspp" = dontDistribute super."rspp"; 6904 "rss" = dontDistribute super."rss"; 6905 "rss2irc" = dontDistribute super."rss2irc"; 6906 "rtld" = dontDistribute super."rtld"; 6907 "rtlsdr" = dontDistribute super."rtlsdr"; 6908 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 "aeson-native" = dontDistribute super."aeson-native"; 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 "archnews" = dontDistribute super."archnews"; 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1368 "argon" = dontDistribute super."argon"; 1369 "argparser" = dontDistribute super."argparser"; 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2633 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2634 "digits" = dontDistribute super."digits"; 2635 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2636 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2637 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2638 "dingo-core" = dontDistribute super."dingo-core"; 2639 "dingo-example" = dontDistribute super."dingo-example"; ··· 2906 "error-loc" = dontDistribute super."error-loc"; 2907 "error-location" = dontDistribute super."error-location"; 2908 "error-message" = dontDistribute super."error-message"; 2909 + "error-util" = dontDistribute super."error-util"; 2910 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2911 "errors" = doDistribute super."errors_1_4_7"; 2912 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6207 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6208 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6209 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6210 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6211 "persistent-map" = dontDistribute super."persistent-map"; 6212 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6213 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6908 "rspp" = dontDistribute super."rspp"; 6909 "rss" = dontDistribute super."rss"; 6910 "rss2irc" = dontDistribute super."rss2irc"; 6911 + "rtcm" = dontDistribute super."rtcm"; 6912 "rtld" = dontDistribute super."rtld"; 6913 "rtlsdr" = dontDistribute super."rtlsdr"; 6914 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.0.nix
··· 1142 "aeson-diff" = dontDistribute super."aeson-diff"; 1143 "aeson-extra" = dontDistribute super."aeson-extra"; 1144 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1145 "aeson-lens" = dontDistribute super."aeson-lens"; 1146 "aeson-native" = dontDistribute super."aeson-native"; 1147 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1351 "archlinux-web" = dontDistribute super."archlinux-web"; 1352 "archnews" = dontDistribute super."archnews"; 1353 "arff" = dontDistribute super."arff"; 1354 "argon" = dontDistribute super."argon"; 1355 "argparser" = dontDistribute super."argparser"; 1356 "arguedit" = dontDistribute super."arguedit"; ··· 2602 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2603 "digits" = dontDistribute super."digits"; 2604 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2605 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2606 "dingo-core" = dontDistribute super."dingo-core"; 2607 "dingo-example" = dontDistribute super."dingo-example"; ··· 2873 "error-loc" = dontDistribute super."error-loc"; 2874 "error-location" = dontDistribute super."error-location"; 2875 "error-message" = dontDistribute super."error-message"; 2876 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0"; 2877 "errors" = doDistribute super."errors_1_4_7"; 2878 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6120 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6121 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6122 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6123 "persistent-map" = dontDistribute super."persistent-map"; 6124 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6125 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6814 "rspp" = dontDistribute super."rspp"; 6815 "rss" = dontDistribute super."rss"; 6816 "rss2irc" = dontDistribute super."rss2irc"; 6817 "rtld" = dontDistribute super."rtld"; 6818 "rtlsdr" = dontDistribute super."rtlsdr"; 6819 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1142 "aeson-diff" = dontDistribute super."aeson-diff"; 1143 "aeson-extra" = dontDistribute super."aeson-extra"; 1144 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1145 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1146 "aeson-lens" = dontDistribute super."aeson-lens"; 1147 "aeson-native" = dontDistribute super."aeson-native"; 1148 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1352 "archlinux-web" = dontDistribute super."archlinux-web"; 1353 "archnews" = dontDistribute super."archnews"; 1354 "arff" = dontDistribute super."arff"; 1355 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1356 "argon" = dontDistribute super."argon"; 1357 "argparser" = dontDistribute super."argparser"; 1358 "arguedit" = dontDistribute super."arguedit"; ··· 2604 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2605 "digits" = dontDistribute super."digits"; 2606 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2607 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2608 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2609 "dingo-core" = dontDistribute super."dingo-core"; 2610 "dingo-example" = dontDistribute super."dingo-example"; ··· 2876 "error-loc" = dontDistribute super."error-loc"; 2877 "error-location" = dontDistribute super."error-location"; 2878 "error-message" = dontDistribute super."error-message"; 2879 + "error-util" = dontDistribute super."error-util"; 2880 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0"; 2881 "errors" = doDistribute super."errors_1_4_7"; 2882 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6124 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6125 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6126 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6127 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6128 "persistent-map" = dontDistribute super."persistent-map"; 6129 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6130 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6819 "rspp" = dontDistribute super."rspp"; 6820 "rss" = dontDistribute super."rss"; 6821 "rss2irc" = dontDistribute super."rss2irc"; 6822 + "rtcm" = dontDistribute super."rtcm"; 6823 "rtld" = dontDistribute super."rtld"; 6824 "rtlsdr" = dontDistribute super."rtlsdr"; 6825 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.1.nix
··· 1142 "aeson-diff" = dontDistribute super."aeson-diff"; 1143 "aeson-extra" = dontDistribute super."aeson-extra"; 1144 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1145 "aeson-lens" = dontDistribute super."aeson-lens"; 1146 "aeson-native" = dontDistribute super."aeson-native"; 1147 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1351 "archlinux-web" = dontDistribute super."archlinux-web"; 1352 "archnews" = dontDistribute super."archnews"; 1353 "arff" = dontDistribute super."arff"; 1354 "argon" = dontDistribute super."argon"; 1355 "argparser" = dontDistribute super."argparser"; 1356 "arguedit" = dontDistribute super."arguedit"; ··· 2601 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2602 "digits" = dontDistribute super."digits"; 2603 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2604 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2605 "dingo-core" = dontDistribute super."dingo-core"; 2606 "dingo-example" = dontDistribute super."dingo-example"; ··· 2872 "error-loc" = dontDistribute super."error-loc"; 2873 "error-location" = dontDistribute super."error-location"; 2874 "error-message" = dontDistribute super."error-message"; 2875 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0"; 2876 "errors" = doDistribute super."errors_1_4_7"; 2877 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6118 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6119 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6120 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6121 "persistent-map" = dontDistribute super."persistent-map"; 6122 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6123 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6812 "rspp" = dontDistribute super."rspp"; 6813 "rss" = dontDistribute super."rss"; 6814 "rss2irc" = dontDistribute super."rss2irc"; 6815 "rtld" = dontDistribute super."rtld"; 6816 "rtlsdr" = dontDistribute super."rtlsdr"; 6817 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1142 "aeson-diff" = dontDistribute super."aeson-diff"; 1143 "aeson-extra" = dontDistribute super."aeson-extra"; 1144 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1145 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1146 "aeson-lens" = dontDistribute super."aeson-lens"; 1147 "aeson-native" = dontDistribute super."aeson-native"; 1148 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1352 "archlinux-web" = dontDistribute super."archlinux-web"; 1353 "archnews" = dontDistribute super."archnews"; 1354 "arff" = dontDistribute super."arff"; 1355 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1356 "argon" = dontDistribute super."argon"; 1357 "argparser" = dontDistribute super."argparser"; 1358 "arguedit" = dontDistribute super."arguedit"; ··· 2603 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2604 "digits" = dontDistribute super."digits"; 2605 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2606 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2607 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2608 "dingo-core" = dontDistribute super."dingo-core"; 2609 "dingo-example" = dontDistribute super."dingo-example"; ··· 2875 "error-loc" = dontDistribute super."error-loc"; 2876 "error-location" = dontDistribute super."error-location"; 2877 "error-message" = dontDistribute super."error-message"; 2878 + "error-util" = dontDistribute super."error-util"; 2879 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0"; 2880 "errors" = doDistribute super."errors_1_4_7"; 2881 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6122 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6123 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6124 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6125 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6126 "persistent-map" = dontDistribute super."persistent-map"; 6127 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6128 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6817 "rspp" = dontDistribute super."rspp"; 6818 "rss" = dontDistribute super."rss"; 6819 "rss2irc" = dontDistribute super."rss2irc"; 6820 + "rtcm" = dontDistribute super."rtcm"; 6821 "rtld" = dontDistribute super."rtld"; 6822 "rtlsdr" = dontDistribute super."rtlsdr"; 6823 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.10.nix
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1346 "archlinux-web" = dontDistribute super."archlinux-web"; 1347 "archnews" = dontDistribute super."archnews"; 1348 "arff" = dontDistribute super."arff"; 1349 "argon" = dontDistribute super."argon"; 1350 "argparser" = dontDistribute super."argparser"; 1351 "arguedit" = dontDistribute super."arguedit"; ··· 2586 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2587 "digits" = dontDistribute super."digits"; 2588 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2589 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2590 "dingo-core" = dontDistribute super."dingo-core"; 2591 "dingo-example" = dontDistribute super."dingo-example"; ··· 2855 "error-loc" = dontDistribute super."error-loc"; 2856 "error-location" = dontDistribute super."error-location"; 2857 "error-message" = dontDistribute super."error-message"; 2858 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2859 "errors" = doDistribute super."errors_1_4_7"; 2860 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6075 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6076 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6077 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6078 "persistent-map" = dontDistribute super."persistent-map"; 6079 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6080 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6764 "rspp" = dontDistribute super."rspp"; 6765 "rss" = dontDistribute super."rss"; 6766 "rss2irc" = dontDistribute super."rss2irc"; 6767 "rtld" = dontDistribute super."rtld"; 6768 "rtlsdr" = dontDistribute super."rtlsdr"; 6769 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1142 "aeson-native" = dontDistribute super."aeson-native"; 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1347 "archlinux-web" = dontDistribute super."archlinux-web"; 1348 "archnews" = dontDistribute super."archnews"; 1349 "arff" = dontDistribute super."arff"; 1350 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1351 "argon" = dontDistribute super."argon"; 1352 "argparser" = dontDistribute super."argparser"; 1353 "arguedit" = dontDistribute super."arguedit"; ··· 2588 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2589 "digits" = dontDistribute super."digits"; 2590 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2591 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2592 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2593 "dingo-core" = dontDistribute super."dingo-core"; 2594 "dingo-example" = dontDistribute super."dingo-example"; ··· 2858 "error-loc" = dontDistribute super."error-loc"; 2859 "error-location" = dontDistribute super."error-location"; 2860 "error-message" = dontDistribute super."error-message"; 2861 + "error-util" = dontDistribute super."error-util"; 2862 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2863 "errors" = doDistribute super."errors_1_4_7"; 2864 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6079 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6080 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6081 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6082 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6083 "persistent-map" = dontDistribute super."persistent-map"; 6084 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6085 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6769 "rspp" = dontDistribute super."rspp"; 6770 "rss" = dontDistribute super."rss"; 6771 "rss2irc" = dontDistribute super."rss2irc"; 6772 + "rtcm" = dontDistribute super."rtcm"; 6773 "rtld" = dontDistribute super."rtld"; 6774 "rtlsdr" = dontDistribute super."rtlsdr"; 6775 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.11.nix
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1345 "archlinux-web" = dontDistribute super."archlinux-web"; 1346 "archnews" = dontDistribute super."archnews"; 1347 "arff" = dontDistribute super."arff"; 1348 "argon" = dontDistribute super."argon"; 1349 "argparser" = dontDistribute super."argparser"; 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2585 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2586 "digits" = dontDistribute super."digits"; 2587 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2588 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2589 "dingo-core" = dontDistribute super."dingo-core"; 2590 "dingo-example" = dontDistribute super."dingo-example"; ··· 2854 "error-loc" = dontDistribute super."error-loc"; 2855 "error-location" = dontDistribute super."error-location"; 2856 "error-message" = dontDistribute super."error-message"; 2857 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2858 "errors" = doDistribute super."errors_1_4_7"; 2859 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6068 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6069 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6070 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6071 "persistent-map" = dontDistribute super."persistent-map"; 6072 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6073 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6756 "rspp" = dontDistribute super."rspp"; 6757 "rss" = dontDistribute super."rss"; 6758 "rss2irc" = dontDistribute super."rss2irc"; 6759 "rtld" = dontDistribute super."rtld"; 6760 "rtlsdr" = dontDistribute super."rtlsdr"; 6761 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1142 "aeson-native" = dontDistribute super."aeson-native"; 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1346 "archlinux-web" = dontDistribute super."archlinux-web"; 1347 "archnews" = dontDistribute super."archnews"; 1348 "arff" = dontDistribute super."arff"; 1349 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1350 "argon" = dontDistribute super."argon"; 1351 "argparser" = dontDistribute super."argparser"; 1352 "arguedit" = dontDistribute super."arguedit"; ··· 2587 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2588 "digits" = dontDistribute super."digits"; 2589 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2590 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2591 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2592 "dingo-core" = dontDistribute super."dingo-core"; 2593 "dingo-example" = dontDistribute super."dingo-example"; ··· 2857 "error-loc" = dontDistribute super."error-loc"; 2858 "error-location" = dontDistribute super."error-location"; 2859 "error-message" = dontDistribute super."error-message"; 2860 + "error-util" = dontDistribute super."error-util"; 2861 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2862 "errors" = doDistribute super."errors_1_4_7"; 2863 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6072 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6073 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6074 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6075 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6076 "persistent-map" = dontDistribute super."persistent-map"; 6077 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6078 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6761 "rspp" = dontDistribute super."rspp"; 6762 "rss" = dontDistribute super."rss"; 6763 "rss2irc" = dontDistribute super."rss2irc"; 6764 + "rtcm" = dontDistribute super."rtcm"; 6765 "rtld" = dontDistribute super."rtld"; 6766 "rtlsdr" = dontDistribute super."rtlsdr"; 6767 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.12.nix
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1345 "archlinux-web" = dontDistribute super."archlinux-web"; 1346 "archnews" = dontDistribute super."archnews"; 1347 "arff" = dontDistribute super."arff"; 1348 "argon" = dontDistribute super."argon"; 1349 "argparser" = dontDistribute super."argparser"; 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2585 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2586 "digits" = dontDistribute super."digits"; 2587 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2588 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2589 "dingo-core" = dontDistribute super."dingo-core"; 2590 "dingo-example" = dontDistribute super."dingo-example"; ··· 2854 "error-loc" = dontDistribute super."error-loc"; 2855 "error-location" = dontDistribute super."error-location"; 2856 "error-message" = dontDistribute super."error-message"; 2857 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2858 "errors" = doDistribute super."errors_1_4_7"; 2859 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6068 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6069 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6070 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6071 "persistent-map" = dontDistribute super."persistent-map"; 6072 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6073 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6756 "rspp" = dontDistribute super."rspp"; 6757 "rss" = dontDistribute super."rss"; 6758 "rss2irc" = dontDistribute super."rss2irc"; 6759 "rtld" = dontDistribute super."rtld"; 6760 "rtlsdr" = dontDistribute super."rtlsdr"; 6761 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1142 "aeson-native" = dontDistribute super."aeson-native"; 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1346 "archlinux-web" = dontDistribute super."archlinux-web"; 1347 "archnews" = dontDistribute super."archnews"; 1348 "arff" = dontDistribute super."arff"; 1349 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1350 "argon" = dontDistribute super."argon"; 1351 "argparser" = dontDistribute super."argparser"; 1352 "arguedit" = dontDistribute super."arguedit"; ··· 2587 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2588 "digits" = dontDistribute super."digits"; 2589 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2590 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2591 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2592 "dingo-core" = dontDistribute super."dingo-core"; 2593 "dingo-example" = dontDistribute super."dingo-example"; ··· 2857 "error-loc" = dontDistribute super."error-loc"; 2858 "error-location" = dontDistribute super."error-location"; 2859 "error-message" = dontDistribute super."error-message"; 2860 + "error-util" = dontDistribute super."error-util"; 2861 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2862 "errors" = doDistribute super."errors_1_4_7"; 2863 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6072 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6073 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6074 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6075 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6076 "persistent-map" = dontDistribute super."persistent-map"; 6077 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6078 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6761 "rspp" = dontDistribute super."rspp"; 6762 "rss" = dontDistribute super."rss"; 6763 "rss2irc" = dontDistribute super."rss2irc"; 6764 + "rtcm" = dontDistribute super."rtcm"; 6765 "rtld" = dontDistribute super."rtld"; 6766 "rtlsdr" = dontDistribute super."rtlsdr"; 6767 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.13.nix
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1345 "archlinux-web" = dontDistribute super."archlinux-web"; 1346 "archnews" = dontDistribute super."archnews"; 1347 "arff" = dontDistribute super."arff"; 1348 "argon" = dontDistribute super."argon"; 1349 "argparser" = dontDistribute super."argparser"; 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2585 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2586 "digits" = dontDistribute super."digits"; 2587 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2588 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2589 "dingo-core" = dontDistribute super."dingo-core"; 2590 "dingo-example" = dontDistribute super."dingo-example"; ··· 2854 "error-loc" = dontDistribute super."error-loc"; 2855 "error-location" = dontDistribute super."error-location"; 2856 "error-message" = dontDistribute super."error-message"; 2857 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2858 "errors" = doDistribute super."errors_1_4_7"; 2859 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6065 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6066 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6067 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6068 "persistent-map" = dontDistribute super."persistent-map"; 6069 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6070 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6753 "rspp" = dontDistribute super."rspp"; 6754 "rss" = dontDistribute super."rss"; 6755 "rss2irc" = dontDistribute super."rss2irc"; 6756 "rtld" = dontDistribute super."rtld"; 6757 "rtlsdr" = dontDistribute super."rtlsdr"; 6758 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1142 "aeson-native" = dontDistribute super."aeson-native"; 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1346 "archlinux-web" = dontDistribute super."archlinux-web"; 1347 "archnews" = dontDistribute super."archnews"; 1348 "arff" = dontDistribute super."arff"; 1349 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1350 "argon" = dontDistribute super."argon"; 1351 "argparser" = dontDistribute super."argparser"; 1352 "arguedit" = dontDistribute super."arguedit"; ··· 2587 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2588 "digits" = dontDistribute super."digits"; 2589 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2590 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2591 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2592 "dingo-core" = dontDistribute super."dingo-core"; 2593 "dingo-example" = dontDistribute super."dingo-example"; ··· 2857 "error-loc" = dontDistribute super."error-loc"; 2858 "error-location" = dontDistribute super."error-location"; 2859 "error-message" = dontDistribute super."error-message"; 2860 + "error-util" = dontDistribute super."error-util"; 2861 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2862 "errors" = doDistribute super."errors_1_4_7"; 2863 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6069 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6070 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6071 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6072 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6073 "persistent-map" = dontDistribute super."persistent-map"; 6074 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6075 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6758 "rspp" = dontDistribute super."rspp"; 6759 "rss" = dontDistribute super."rss"; 6760 "rss2irc" = dontDistribute super."rss2irc"; 6761 + "rtcm" = dontDistribute super."rtcm"; 6762 "rtld" = dontDistribute super."rtld"; 6763 "rtlsdr" = dontDistribute super."rtlsdr"; 6764 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.14.nix
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1345 "archnews" = dontDistribute super."archnews"; 1346 "arff" = dontDistribute super."arff"; 1347 "argon" = dontDistribute super."argon"; 1348 "argparser" = dontDistribute super."argparser"; 1349 "arguedit" = dontDistribute super."arguedit"; ··· 2584 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2585 "digits" = dontDistribute super."digits"; 2586 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2587 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2588 "dingo-core" = dontDistribute super."dingo-core"; 2589 "dingo-example" = dontDistribute super."dingo-example"; ··· 2853 "error-loc" = dontDistribute super."error-loc"; 2854 "error-location" = dontDistribute super."error-location"; 2855 "error-message" = dontDistribute super."error-message"; 2856 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2857 "errors" = doDistribute super."errors_1_4_7"; 2858 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6062 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6063 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6064 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6065 "persistent-map" = dontDistribute super."persistent-map"; 6066 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6067 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6749 "rspp" = dontDistribute super."rspp"; 6750 "rss" = dontDistribute super."rss"; 6751 "rss2irc" = dontDistribute super."rss2irc"; 6752 "rtld" = dontDistribute super."rtld"; 6753 "rtlsdr" = dontDistribute super."rtlsdr"; 6754 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1142 "aeson-native" = dontDistribute super."aeson-native"; 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1345 "archlinux-web" = dontDistribute super."archlinux-web"; 1346 "archnews" = dontDistribute super."archnews"; 1347 "arff" = dontDistribute super."arff"; 1348 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1349 "argon" = dontDistribute super."argon"; 1350 "argparser" = dontDistribute super."argparser"; 1351 "arguedit" = dontDistribute super."arguedit"; ··· 2586 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2587 "digits" = dontDistribute super."digits"; 2588 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2589 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2590 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2591 "dingo-core" = dontDistribute super."dingo-core"; 2592 "dingo-example" = dontDistribute super."dingo-example"; ··· 2856 "error-loc" = dontDistribute super."error-loc"; 2857 "error-location" = dontDistribute super."error-location"; 2858 "error-message" = dontDistribute super."error-message"; 2859 + "error-util" = dontDistribute super."error-util"; 2860 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2861 "errors" = doDistribute super."errors_1_4_7"; 2862 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6066 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6067 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6068 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6069 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6070 "persistent-map" = dontDistribute super."persistent-map"; 6071 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6072 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6754 "rspp" = dontDistribute super."rspp"; 6755 "rss" = dontDistribute super."rss"; 6756 "rss2irc" = dontDistribute super."rss2irc"; 6757 + "rtcm" = dontDistribute super."rtcm"; 6758 "rtld" = dontDistribute super."rtld"; 6759 "rtlsdr" = dontDistribute super."rtlsdr"; 6760 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.15.nix
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1345 "archnews" = dontDistribute super."archnews"; 1346 "arff" = dontDistribute super."arff"; 1347 "argon" = dontDistribute super."argon"; 1348 "argparser" = dontDistribute super."argparser"; 1349 "arguedit" = dontDistribute super."arguedit"; ··· 2584 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2585 "digits" = dontDistribute super."digits"; 2586 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2587 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2588 "dingo-core" = dontDistribute super."dingo-core"; 2589 "dingo-example" = dontDistribute super."dingo-example"; ··· 2852 "error-loc" = dontDistribute super."error-loc"; 2853 "error-location" = dontDistribute super."error-location"; 2854 "error-message" = dontDistribute super."error-message"; 2855 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2856 "errors" = doDistribute super."errors_1_4_7"; 2857 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6058 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6059 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6060 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6061 "persistent-map" = dontDistribute super."persistent-map"; 6062 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6063 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6745 "rspp" = dontDistribute super."rspp"; 6746 "rss" = dontDistribute super."rss"; 6747 "rss2irc" = dontDistribute super."rss2irc"; 6748 "rtld" = dontDistribute super."rtld"; 6749 "rtlsdr" = dontDistribute super."rtlsdr"; 6750 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1142 "aeson-native" = dontDistribute super."aeson-native"; 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1345 "archlinux-web" = dontDistribute super."archlinux-web"; 1346 "archnews" = dontDistribute super."archnews"; 1347 "arff" = dontDistribute super."arff"; 1348 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1349 "argon" = dontDistribute super."argon"; 1350 "argparser" = dontDistribute super."argparser"; 1351 "arguedit" = dontDistribute super."arguedit"; ··· 2586 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2587 "digits" = dontDistribute super."digits"; 2588 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2589 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2590 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2591 "dingo-core" = dontDistribute super."dingo-core"; 2592 "dingo-example" = dontDistribute super."dingo-example"; ··· 2855 "error-loc" = dontDistribute super."error-loc"; 2856 "error-location" = dontDistribute super."error-location"; 2857 "error-message" = dontDistribute super."error-message"; 2858 + "error-util" = dontDistribute super."error-util"; 2859 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2860 "errors" = doDistribute super."errors_1_4_7"; 2861 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6062 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6063 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6064 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6065 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6066 "persistent-map" = dontDistribute super."persistent-map"; 6067 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6068 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6750 "rspp" = dontDistribute super."rspp"; 6751 "rss" = dontDistribute super."rss"; 6752 "rss2irc" = dontDistribute super."rss2irc"; 6753 + "rtcm" = dontDistribute super."rtcm"; 6754 "rtld" = dontDistribute super."rtld"; 6755 "rtlsdr" = dontDistribute super."rtlsdr"; 6756 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.16.nix
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 "aeson-native" = dontDistribute super."aeson-native"; 1141 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 "archnews" = dontDistribute super."archnews"; 1345 "arff" = dontDistribute super."arff"; 1346 "argon" = dontDistribute super."argon"; 1347 "argparser" = dontDistribute super."argparser"; 1348 "arguedit" = dontDistribute super."arguedit"; ··· 2580 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2581 "digits" = dontDistribute super."digits"; 2582 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2583 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2584 "dingo-core" = dontDistribute super."dingo-core"; 2585 "dingo-example" = dontDistribute super."dingo-example"; ··· 2848 "error-loc" = dontDistribute super."error-loc"; 2849 "error-location" = dontDistribute super."error-location"; 2850 "error-message" = dontDistribute super."error-message"; 2851 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2852 "errors" = doDistribute super."errors_1_4_7"; 2853 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6050 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6051 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6052 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6053 "persistent-map" = dontDistribute super."persistent-map"; 6054 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6055 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6737 "rspp" = dontDistribute super."rspp"; 6738 "rss" = dontDistribute super."rss"; 6739 "rss2irc" = dontDistribute super."rss2irc"; 6740 "rtld" = dontDistribute super."rtld"; 6741 "rtlsdr" = dontDistribute super."rtlsdr"; 6742 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1345 "archnews" = dontDistribute super."archnews"; 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1348 "argon" = dontDistribute super."argon"; 1349 "argparser" = dontDistribute super."argparser"; 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2582 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2583 "digits" = dontDistribute super."digits"; 2584 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2585 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2586 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2587 "dingo-core" = dontDistribute super."dingo-core"; 2588 "dingo-example" = dontDistribute super."dingo-example"; ··· 2851 "error-loc" = dontDistribute super."error-loc"; 2852 "error-location" = dontDistribute super."error-location"; 2853 "error-message" = dontDistribute super."error-message"; 2854 + "error-util" = dontDistribute super."error-util"; 2855 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2856 "errors" = doDistribute super."errors_1_4_7"; 2857 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6054 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6055 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6056 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6057 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6058 "persistent-map" = dontDistribute super."persistent-map"; 6059 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6060 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6742 "rspp" = dontDistribute super."rspp"; 6743 "rss" = dontDistribute super."rss"; 6744 "rss2irc" = dontDistribute super."rss2irc"; 6745 + "rtcm" = dontDistribute super."rtcm"; 6746 "rtld" = dontDistribute super."rtld"; 6747 "rtlsdr" = dontDistribute super."rtlsdr"; 6748 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.17.nix
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 "aeson-native" = dontDistribute super."aeson-native"; 1141 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 "archnews" = dontDistribute super."archnews"; 1345 "arff" = dontDistribute super."arff"; 1346 "argon" = dontDistribute super."argon"; 1347 "argparser" = dontDistribute super."argparser"; 1348 "arguedit" = dontDistribute super."arguedit"; ··· 2577 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2578 "digits" = dontDistribute super."digits"; 2579 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2580 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2581 "dingo-core" = dontDistribute super."dingo-core"; 2582 "dingo-example" = dontDistribute super."dingo-example"; ··· 2845 "error-loc" = dontDistribute super."error-loc"; 2846 "error-location" = dontDistribute super."error-location"; 2847 "error-message" = dontDistribute super."error-message"; 2848 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2849 "errors" = doDistribute super."errors_1_4_7"; 2850 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6042 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6043 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6044 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6045 "persistent-map" = dontDistribute super."persistent-map"; 6046 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6047 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6728 "rspp" = dontDistribute super."rspp"; 6729 "rss" = dontDistribute super."rss"; 6730 "rss2irc" = dontDistribute super."rss2irc"; 6731 "rtld" = dontDistribute super."rtld"; 6732 "rtlsdr" = dontDistribute super."rtlsdr"; 6733 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1345 "archnews" = dontDistribute super."archnews"; 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1348 "argon" = dontDistribute super."argon"; 1349 "argparser" = dontDistribute super."argparser"; 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2579 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2580 "digits" = dontDistribute super."digits"; 2581 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2582 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2583 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2584 "dingo-core" = dontDistribute super."dingo-core"; 2585 "dingo-example" = dontDistribute super."dingo-example"; ··· 2848 "error-loc" = dontDistribute super."error-loc"; 2849 "error-location" = dontDistribute super."error-location"; 2850 "error-message" = dontDistribute super."error-message"; 2851 + "error-util" = dontDistribute super."error-util"; 2852 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2853 "errors" = doDistribute super."errors_1_4_7"; 2854 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6046 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6047 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6048 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6049 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6050 "persistent-map" = dontDistribute super."persistent-map"; 6051 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6052 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6733 "rspp" = dontDistribute super."rspp"; 6734 "rss" = dontDistribute super."rss"; 6735 "rss2irc" = dontDistribute super."rss2irc"; 6736 + "rtcm" = dontDistribute super."rtcm"; 6737 "rtld" = dontDistribute super."rtld"; 6738 "rtlsdr" = dontDistribute super."rtlsdr"; 6739 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.18.nix
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 "aeson-native" = dontDistribute super."aeson-native"; 1141 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 "archnews" = dontDistribute super."archnews"; 1345 "arff" = dontDistribute super."arff"; 1346 "argon" = dontDistribute super."argon"; 1347 "argparser" = dontDistribute super."argparser"; 1348 "arguedit" = dontDistribute super."arguedit"; ··· 2575 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2576 "digits" = dontDistribute super."digits"; 2577 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2578 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2579 "dingo-core" = dontDistribute super."dingo-core"; 2580 "dingo-example" = dontDistribute super."dingo-example"; ··· 2842 "error-loc" = dontDistribute super."error-loc"; 2843 "error-location" = dontDistribute super."error-location"; 2844 "error-message" = dontDistribute super."error-message"; 2845 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2846 "errors" = doDistribute super."errors_1_4_7"; 2847 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6036 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6037 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6038 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6039 "persistent-map" = dontDistribute super."persistent-map"; 6040 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6041 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6721 "rspp" = dontDistribute super."rspp"; 6722 "rss" = dontDistribute super."rss"; 6723 "rss2irc" = dontDistribute super."rss2irc"; 6724 "rtld" = dontDistribute super."rtld"; 6725 "rtlsdr" = dontDistribute super."rtlsdr"; 6726 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1345 "archnews" = dontDistribute super."archnews"; 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1348 "argon" = dontDistribute super."argon"; 1349 "argparser" = dontDistribute super."argparser"; 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2577 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2578 "digits" = dontDistribute super."digits"; 2579 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2580 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2581 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2582 "dingo-core" = dontDistribute super."dingo-core"; 2583 "dingo-example" = dontDistribute super."dingo-example"; ··· 2845 "error-loc" = dontDistribute super."error-loc"; 2846 "error-location" = dontDistribute super."error-location"; 2847 "error-message" = dontDistribute super."error-message"; 2848 + "error-util" = dontDistribute super."error-util"; 2849 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2850 "errors" = doDistribute super."errors_1_4_7"; 2851 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6040 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6041 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6042 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6043 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6044 "persistent-map" = dontDistribute super."persistent-map"; 6045 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6046 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6726 "rspp" = dontDistribute super."rspp"; 6727 "rss" = dontDistribute super."rss"; 6728 "rss2irc" = dontDistribute super."rss2irc"; 6729 + "rtcm" = dontDistribute super."rtcm"; 6730 "rtld" = dontDistribute super."rtld"; 6731 "rtlsdr" = dontDistribute super."rtlsdr"; 6732 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.19.nix
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 "aeson-native" = dontDistribute super."aeson-native"; 1141 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 "archnews" = dontDistribute super."archnews"; 1345 "arff" = dontDistribute super."arff"; 1346 "argon" = dontDistribute super."argon"; 1347 "argparser" = dontDistribute super."argparser"; 1348 "arguedit" = dontDistribute super."arguedit"; ··· 2575 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2576 "digits" = dontDistribute super."digits"; 2577 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2578 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2579 "dingo-core" = dontDistribute super."dingo-core"; 2580 "dingo-example" = dontDistribute super."dingo-example"; ··· 2842 "error-loc" = dontDistribute super."error-loc"; 2843 "error-location" = dontDistribute super."error-location"; 2844 "error-message" = dontDistribute super."error-message"; 2845 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2846 "errors" = doDistribute super."errors_1_4_7"; 2847 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6033 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6034 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6035 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6036 "persistent-map" = dontDistribute super."persistent-map"; 6037 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6038 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6718 "rspp" = dontDistribute super."rspp"; 6719 "rss" = dontDistribute super."rss"; 6720 "rss2irc" = dontDistribute super."rss2irc"; 6721 "rtld" = dontDistribute super."rtld"; 6722 "rtlsdr" = dontDistribute super."rtlsdr"; 6723 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1345 "archnews" = dontDistribute super."archnews"; 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1348 "argon" = dontDistribute super."argon"; 1349 "argparser" = dontDistribute super."argparser"; 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2577 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2578 "digits" = dontDistribute super."digits"; 2579 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2580 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2581 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2582 "dingo-core" = dontDistribute super."dingo-core"; 2583 "dingo-example" = dontDistribute super."dingo-example"; ··· 2845 "error-loc" = dontDistribute super."error-loc"; 2846 "error-location" = dontDistribute super."error-location"; 2847 "error-message" = dontDistribute super."error-message"; 2848 + "error-util" = dontDistribute super."error-util"; 2849 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2850 "errors" = doDistribute super."errors_1_4_7"; 2851 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6037 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6038 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6039 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6040 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6041 "persistent-map" = dontDistribute super."persistent-map"; 6042 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6043 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6723 "rspp" = dontDistribute super."rspp"; 6724 "rss" = dontDistribute super."rss"; 6725 "rss2irc" = dontDistribute super."rss2irc"; 6726 + "rtcm" = dontDistribute super."rtcm"; 6727 "rtld" = dontDistribute super."rtld"; 6728 "rtlsdr" = dontDistribute super."rtlsdr"; 6729 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.2.nix
··· 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 "aeson-lens" = dontDistribute super."aeson-lens"; 1145 "aeson-native" = dontDistribute super."aeson-native"; 1146 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1350 "archlinux-web" = dontDistribute super."archlinux-web"; 1351 "archnews" = dontDistribute super."archnews"; 1352 "arff" = dontDistribute super."arff"; 1353 "argon" = dontDistribute super."argon"; 1354 "argparser" = dontDistribute super."argparser"; 1355 "arguedit" = dontDistribute super."arguedit"; ··· 2598 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2599 "digits" = dontDistribute super."digits"; 2600 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2601 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2602 "dingo-core" = dontDistribute super."dingo-core"; 2603 "dingo-example" = dontDistribute super."dingo-example"; ··· 2869 "error-loc" = dontDistribute super."error-loc"; 2870 "error-location" = dontDistribute super."error-location"; 2871 "error-message" = dontDistribute super."error-message"; 2872 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2873 "errors" = doDistribute super."errors_1_4_7"; 2874 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6113 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6114 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6115 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6116 "persistent-map" = dontDistribute super."persistent-map"; 6117 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6118 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6807 "rspp" = dontDistribute super."rspp"; 6808 "rss" = dontDistribute super."rss"; 6809 "rss2irc" = dontDistribute super."rss2irc"; 6810 "rtld" = dontDistribute super."rtld"; 6811 "rtlsdr" = dontDistribute super."rtlsdr"; 6812 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1145 "aeson-lens" = dontDistribute super."aeson-lens"; 1146 "aeson-native" = dontDistribute super."aeson-native"; 1147 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1351 "archlinux-web" = dontDistribute super."archlinux-web"; 1352 "archnews" = dontDistribute super."archnews"; 1353 "arff" = dontDistribute super."arff"; 1354 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1355 "argon" = dontDistribute super."argon"; 1356 "argparser" = dontDistribute super."argparser"; 1357 "arguedit" = dontDistribute super."arguedit"; ··· 2600 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2601 "digits" = dontDistribute super."digits"; 2602 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2603 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2604 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2605 "dingo-core" = dontDistribute super."dingo-core"; 2606 "dingo-example" = dontDistribute super."dingo-example"; ··· 2872 "error-loc" = dontDistribute super."error-loc"; 2873 "error-location" = dontDistribute super."error-location"; 2874 "error-message" = dontDistribute super."error-message"; 2875 + "error-util" = dontDistribute super."error-util"; 2876 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2877 "errors" = doDistribute super."errors_1_4_7"; 2878 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6117 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6118 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6119 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6120 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6121 "persistent-map" = dontDistribute super."persistent-map"; 6122 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6123 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6812 "rspp" = dontDistribute super."rspp"; 6813 "rss" = dontDistribute super."rss"; 6814 "rss2irc" = dontDistribute super."rss2irc"; 6815 + "rtcm" = dontDistribute super."rtcm"; 6816 "rtld" = dontDistribute super."rtld"; 6817 "rtlsdr" = dontDistribute super."rtlsdr"; 6818 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.20.nix
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 "aeson-native" = dontDistribute super."aeson-native"; 1141 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 "archnews" = dontDistribute super."archnews"; 1345 "arff" = dontDistribute super."arff"; 1346 "argon" = dontDistribute super."argon"; 1347 "argparser" = dontDistribute super."argparser"; 1348 "arguedit" = dontDistribute super."arguedit"; ··· 2574 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2575 "digits" = dontDistribute super."digits"; 2576 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2577 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2578 "dingo-core" = dontDistribute super."dingo-core"; 2579 "dingo-example" = dontDistribute super."dingo-example"; ··· 2841 "error-loc" = dontDistribute super."error-loc"; 2842 "error-location" = dontDistribute super."error-location"; 2843 "error-message" = dontDistribute super."error-message"; 2844 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2845 "errors" = doDistribute super."errors_1_4_7"; 2846 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6030 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6031 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6032 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6033 "persistent-map" = dontDistribute super."persistent-map"; 6034 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6035 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6714 "rspp" = dontDistribute super."rspp"; 6715 "rss" = dontDistribute super."rss"; 6716 "rss2irc" = dontDistribute super."rss2irc"; 6717 "rtld" = dontDistribute super."rtld"; 6718 "rtlsdr" = dontDistribute super."rtlsdr"; 6719 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1345 "archnews" = dontDistribute super."archnews"; 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1348 "argon" = dontDistribute super."argon"; 1349 "argparser" = dontDistribute super."argparser"; 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2576 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2577 "digits" = dontDistribute super."digits"; 2578 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2579 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2580 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2581 "dingo-core" = dontDistribute super."dingo-core"; 2582 "dingo-example" = dontDistribute super."dingo-example"; ··· 2844 "error-loc" = dontDistribute super."error-loc"; 2845 "error-location" = dontDistribute super."error-location"; 2846 "error-message" = dontDistribute super."error-message"; 2847 + "error-util" = dontDistribute super."error-util"; 2848 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2849 "errors" = doDistribute super."errors_1_4_7"; 2850 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6034 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6035 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6036 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6037 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6038 "persistent-map" = dontDistribute super."persistent-map"; 6039 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6040 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6719 "rspp" = dontDistribute super."rspp"; 6720 "rss" = dontDistribute super."rss"; 6721 "rss2irc" = dontDistribute super."rss2irc"; 6722 + "rtcm" = dontDistribute super."rtcm"; 6723 "rtld" = dontDistribute super."rtld"; 6724 "rtlsdr" = dontDistribute super."rtlsdr"; 6725 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.21.nix
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 "aeson-native" = dontDistribute super."aeson-native"; 1141 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 "archnews" = dontDistribute super."archnews"; 1345 "arff" = dontDistribute super."arff"; 1346 "argon" = dontDistribute super."argon"; 1347 "argparser" = dontDistribute super."argparser"; 1348 "arguedit" = dontDistribute super."arguedit"; ··· 2574 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2575 "digits" = dontDistribute super."digits"; 2576 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2577 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2578 "dingo-core" = dontDistribute super."dingo-core"; 2579 "dingo-example" = dontDistribute super."dingo-example"; ··· 2841 "error-loc" = dontDistribute super."error-loc"; 2842 "error-location" = dontDistribute super."error-location"; 2843 "error-message" = dontDistribute super."error-message"; 2844 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2845 "errors" = doDistribute super."errors_1_4_7"; 2846 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6028 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6029 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6030 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6031 "persistent-map" = dontDistribute super."persistent-map"; 6032 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6033 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6711 "rspp" = dontDistribute super."rspp"; 6712 "rss" = dontDistribute super."rss"; 6713 "rss2irc" = dontDistribute super."rss2irc"; 6714 "rtld" = dontDistribute super."rtld"; 6715 "rtlsdr" = dontDistribute super."rtlsdr"; 6716 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1345 "archnews" = dontDistribute super."archnews"; 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1348 "argon" = dontDistribute super."argon"; 1349 "argparser" = dontDistribute super."argparser"; 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2576 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2577 "digits" = dontDistribute super."digits"; 2578 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2579 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2580 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2581 "dingo-core" = dontDistribute super."dingo-core"; 2582 "dingo-example" = dontDistribute super."dingo-example"; ··· 2844 "error-loc" = dontDistribute super."error-loc"; 2845 "error-location" = dontDistribute super."error-location"; 2846 "error-message" = dontDistribute super."error-message"; 2847 + "error-util" = dontDistribute super."error-util"; 2848 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2849 "errors" = doDistribute super."errors_1_4_7"; 2850 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6032 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6033 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6034 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6035 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6036 "persistent-map" = dontDistribute super."persistent-map"; 6037 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6038 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6716 "rspp" = dontDistribute super."rspp"; 6717 "rss" = dontDistribute super."rss"; 6718 "rss2irc" = dontDistribute super."rss2irc"; 6719 + "rtcm" = dontDistribute super."rtcm"; 6720 "rtld" = dontDistribute super."rtld"; 6721 "rtlsdr" = dontDistribute super."rtlsdr"; 6722 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.22.nix
··· 1135 "aeson-diff" = dontDistribute super."aeson-diff"; 1136 "aeson-extra" = dontDistribute super."aeson-extra"; 1137 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1138 "aeson-lens" = dontDistribute super."aeson-lens"; 1139 "aeson-native" = dontDistribute super."aeson-native"; 1140 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1342 "archlinux-web" = dontDistribute super."archlinux-web"; 1343 "archnews" = dontDistribute super."archnews"; 1344 "arff" = dontDistribute super."arff"; 1345 "argon" = dontDistribute super."argon"; 1346 "argparser" = dontDistribute super."argparser"; 1347 "arguedit" = dontDistribute super."arguedit"; ··· 2573 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2574 "digits" = dontDistribute super."digits"; 2575 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2576 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2577 "dingo-core" = dontDistribute super."dingo-core"; 2578 "dingo-example" = dontDistribute super."dingo-example"; ··· 2840 "error-loc" = dontDistribute super."error-loc"; 2841 "error-location" = dontDistribute super."error-location"; 2842 "error-message" = dontDistribute super."error-message"; 2843 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2844 "errors" = doDistribute super."errors_1_4_7"; 2845 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6024 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6025 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6026 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6027 "persistent-map" = dontDistribute super."persistent-map"; 6028 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6029 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6707 "rspp" = dontDistribute super."rspp"; 6708 "rss" = dontDistribute super."rss"; 6709 "rss2irc" = dontDistribute super."rss2irc"; 6710 "rtld" = dontDistribute super."rtld"; 6711 "rtlsdr" = dontDistribute super."rtlsdr"; 6712 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1135 "aeson-diff" = dontDistribute super."aeson-diff"; 1136 "aeson-extra" = dontDistribute super."aeson-extra"; 1137 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1138 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1139 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 "aeson-native" = dontDistribute super."aeson-native"; 1141 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 "archnews" = dontDistribute super."archnews"; 1345 "arff" = dontDistribute super."arff"; 1346 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1347 "argon" = dontDistribute super."argon"; 1348 "argparser" = dontDistribute super."argparser"; 1349 "arguedit" = dontDistribute super."arguedit"; ··· 2575 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2576 "digits" = dontDistribute super."digits"; 2577 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2578 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2579 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2580 "dingo-core" = dontDistribute super."dingo-core"; 2581 "dingo-example" = dontDistribute super."dingo-example"; ··· 2843 "error-loc" = dontDistribute super."error-loc"; 2844 "error-location" = dontDistribute super."error-location"; 2845 "error-message" = dontDistribute super."error-message"; 2846 + "error-util" = dontDistribute super."error-util"; 2847 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2848 "errors" = doDistribute super."errors_1_4_7"; 2849 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6028 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6029 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6030 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6031 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6032 "persistent-map" = dontDistribute super."persistent-map"; 6033 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6034 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6712 "rspp" = dontDistribute super."rspp"; 6713 "rss" = dontDistribute super."rss"; 6714 "rss2irc" = dontDistribute super."rss2irc"; 6715 + "rtcm" = dontDistribute super."rtcm"; 6716 "rtld" = dontDistribute super."rtld"; 6717 "rtlsdr" = dontDistribute super."rtlsdr"; 6718 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.3.nix
··· 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 "aeson-lens" = dontDistribute super."aeson-lens"; 1145 "aeson-native" = dontDistribute super."aeson-native"; 1146 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1350 "archlinux-web" = dontDistribute super."archlinux-web"; 1351 "archnews" = dontDistribute super."archnews"; 1352 "arff" = dontDistribute super."arff"; 1353 "argon" = dontDistribute super."argon"; 1354 "argparser" = dontDistribute super."argparser"; 1355 "arguedit" = dontDistribute super."arguedit"; ··· 2598 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2599 "digits" = dontDistribute super."digits"; 2600 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2601 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2602 "dingo-core" = dontDistribute super."dingo-core"; 2603 "dingo-example" = dontDistribute super."dingo-example"; ··· 2869 "error-loc" = dontDistribute super."error-loc"; 2870 "error-location" = dontDistribute super."error-location"; 2871 "error-message" = dontDistribute super."error-message"; 2872 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2873 "errors" = doDistribute super."errors_1_4_7"; 2874 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6111 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6112 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6113 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6114 "persistent-map" = dontDistribute super."persistent-map"; 6115 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6116 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6805 "rspp" = dontDistribute super."rspp"; 6806 "rss" = dontDistribute super."rss"; 6807 "rss2irc" = dontDistribute super."rss2irc"; 6808 "rtld" = dontDistribute super."rtld"; 6809 "rtlsdr" = dontDistribute super."rtlsdr"; 6810 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1145 "aeson-lens" = dontDistribute super."aeson-lens"; 1146 "aeson-native" = dontDistribute super."aeson-native"; 1147 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1351 "archlinux-web" = dontDistribute super."archlinux-web"; 1352 "archnews" = dontDistribute super."archnews"; 1353 "arff" = dontDistribute super."arff"; 1354 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1355 "argon" = dontDistribute super."argon"; 1356 "argparser" = dontDistribute super."argparser"; 1357 "arguedit" = dontDistribute super."arguedit"; ··· 2600 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2601 "digits" = dontDistribute super."digits"; 2602 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2603 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2604 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2605 "dingo-core" = dontDistribute super."dingo-core"; 2606 "dingo-example" = dontDistribute super."dingo-example"; ··· 2872 "error-loc" = dontDistribute super."error-loc"; 2873 "error-location" = dontDistribute super."error-location"; 2874 "error-message" = dontDistribute super."error-message"; 2875 + "error-util" = dontDistribute super."error-util"; 2876 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2877 "errors" = doDistribute super."errors_1_4_7"; 2878 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6115 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6116 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6117 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6118 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6119 "persistent-map" = dontDistribute super."persistent-map"; 6120 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6121 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6810 "rspp" = dontDistribute super."rspp"; 6811 "rss" = dontDistribute super."rss"; 6812 "rss2irc" = dontDistribute super."rss2irc"; 6813 + "rtcm" = dontDistribute super."rtcm"; 6814 "rtld" = dontDistribute super."rtld"; 6815 "rtlsdr" = dontDistribute super."rtlsdr"; 6816 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.4.nix
··· 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 "aeson-lens" = dontDistribute super."aeson-lens"; 1145 "aeson-native" = dontDistribute super."aeson-native"; 1146 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1350 "archlinux-web" = dontDistribute super."archlinux-web"; 1351 "archnews" = dontDistribute super."archnews"; 1352 "arff" = dontDistribute super."arff"; 1353 "argon" = dontDistribute super."argon"; 1354 "argparser" = dontDistribute super."argparser"; 1355 "arguedit" = dontDistribute super."arguedit"; ··· 2597 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2598 "digits" = dontDistribute super."digits"; 2599 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2600 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2601 "dingo-core" = dontDistribute super."dingo-core"; 2602 "dingo-example" = dontDistribute super."dingo-example"; ··· 2868 "error-loc" = dontDistribute super."error-loc"; 2869 "error-location" = dontDistribute super."error-location"; 2870 "error-message" = dontDistribute super."error-message"; 2871 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2872 "errors" = doDistribute super."errors_1_4_7"; 2873 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6107 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6108 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6109 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6110 "persistent-map" = dontDistribute super."persistent-map"; 6111 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6112 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6800 "rspp" = dontDistribute super."rspp"; 6801 "rss" = dontDistribute super."rss"; 6802 "rss2irc" = dontDistribute super."rss2irc"; 6803 "rtld" = dontDistribute super."rtld"; 6804 "rtlsdr" = dontDistribute super."rtlsdr"; 6805 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1145 "aeson-lens" = dontDistribute super."aeson-lens"; 1146 "aeson-native" = dontDistribute super."aeson-native"; 1147 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1351 "archlinux-web" = dontDistribute super."archlinux-web"; 1352 "archnews" = dontDistribute super."archnews"; 1353 "arff" = dontDistribute super."arff"; 1354 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1355 "argon" = dontDistribute super."argon"; 1356 "argparser" = dontDistribute super."argparser"; 1357 "arguedit" = dontDistribute super."arguedit"; ··· 2599 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2600 "digits" = dontDistribute super."digits"; 2601 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2602 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2603 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2604 "dingo-core" = dontDistribute super."dingo-core"; 2605 "dingo-example" = dontDistribute super."dingo-example"; ··· 2871 "error-loc" = dontDistribute super."error-loc"; 2872 "error-location" = dontDistribute super."error-location"; 2873 "error-message" = dontDistribute super."error-message"; 2874 + "error-util" = dontDistribute super."error-util"; 2875 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2876 "errors" = doDistribute super."errors_1_4_7"; 2877 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6111 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6112 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6113 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6114 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6115 "persistent-map" = dontDistribute super."persistent-map"; 6116 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6117 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6805 "rspp" = dontDistribute super."rspp"; 6806 "rss" = dontDistribute super."rss"; 6807 "rss2irc" = dontDistribute super."rss2irc"; 6808 + "rtcm" = dontDistribute super."rtcm"; 6809 "rtld" = dontDistribute super."rtld"; 6810 "rtlsdr" = dontDistribute super."rtlsdr"; 6811 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.5.nix
··· 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 "aeson-lens" = dontDistribute super."aeson-lens"; 1145 "aeson-native" = dontDistribute super."aeson-native"; 1146 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1350 "archlinux-web" = dontDistribute super."archlinux-web"; 1351 "archnews" = dontDistribute super."archnews"; 1352 "arff" = dontDistribute super."arff"; 1353 "argon" = dontDistribute super."argon"; 1354 "argparser" = dontDistribute super."argparser"; 1355 "arguedit" = dontDistribute super."arguedit"; ··· 2596 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2597 "digits" = dontDistribute super."digits"; 2598 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2599 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2600 "dingo-core" = dontDistribute super."dingo-core"; 2601 "dingo-example" = dontDistribute super."dingo-example"; ··· 2867 "error-loc" = dontDistribute super."error-loc"; 2868 "error-location" = dontDistribute super."error-location"; 2869 "error-message" = dontDistribute super."error-message"; 2870 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2871 "errors" = doDistribute super."errors_1_4_7"; 2872 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6105 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6106 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6107 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6108 "persistent-map" = dontDistribute super."persistent-map"; 6109 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6110 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6798 "rspp" = dontDistribute super."rspp"; 6799 "rss" = dontDistribute super."rss"; 6800 "rss2irc" = dontDistribute super."rss2irc"; 6801 "rtld" = dontDistribute super."rtld"; 6802 "rtlsdr" = dontDistribute super."rtlsdr"; 6803 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1145 "aeson-lens" = dontDistribute super."aeson-lens"; 1146 "aeson-native" = dontDistribute super."aeson-native"; 1147 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1351 "archlinux-web" = dontDistribute super."archlinux-web"; 1352 "archnews" = dontDistribute super."archnews"; 1353 "arff" = dontDistribute super."arff"; 1354 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1355 "argon" = dontDistribute super."argon"; 1356 "argparser" = dontDistribute super."argparser"; 1357 "arguedit" = dontDistribute super."arguedit"; ··· 2598 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2599 "digits" = dontDistribute super."digits"; 2600 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2601 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2602 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2603 "dingo-core" = dontDistribute super."dingo-core"; 2604 "dingo-example" = dontDistribute super."dingo-example"; ··· 2870 "error-loc" = dontDistribute super."error-loc"; 2871 "error-location" = dontDistribute super."error-location"; 2872 "error-message" = dontDistribute super."error-message"; 2873 + "error-util" = dontDistribute super."error-util"; 2874 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2875 "errors" = doDistribute super."errors_1_4_7"; 2876 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6109 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6110 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6111 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6112 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6113 "persistent-map" = dontDistribute super."persistent-map"; 6114 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6115 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6803 "rspp" = dontDistribute super."rspp"; 6804 "rss" = dontDistribute super."rss"; 6805 "rss2irc" = dontDistribute super."rss2irc"; 6806 + "rtcm" = dontDistribute super."rtcm"; 6807 "rtld" = dontDistribute super."rtld"; 6808 "rtlsdr" = dontDistribute super."rtlsdr"; 6809 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.6.nix
··· 1139 "aeson-diff" = dontDistribute super."aeson-diff"; 1140 "aeson-extra" = dontDistribute super."aeson-extra"; 1141 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1142 "aeson-lens" = dontDistribute super."aeson-lens"; 1143 "aeson-native" = dontDistribute super."aeson-native"; 1144 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1348 "archlinux-web" = dontDistribute super."archlinux-web"; 1349 "archnews" = dontDistribute super."archnews"; 1350 "arff" = dontDistribute super."arff"; 1351 "argon" = dontDistribute super."argon"; 1352 "argparser" = dontDistribute super."argparser"; 1353 "arguedit" = dontDistribute super."arguedit"; ··· 2593 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2594 "digits" = dontDistribute super."digits"; 2595 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2596 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2597 "dingo-core" = dontDistribute super."dingo-core"; 2598 "dingo-example" = dontDistribute super."dingo-example"; ··· 2864 "error-loc" = dontDistribute super."error-loc"; 2865 "error-location" = dontDistribute super."error-location"; 2866 "error-message" = dontDistribute super."error-message"; 2867 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2868 "errors" = doDistribute super."errors_1_4_7"; 2869 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6099 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6100 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6101 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6102 "persistent-map" = dontDistribute super."persistent-map"; 6103 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6104 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6792 "rspp" = dontDistribute super."rspp"; 6793 "rss" = dontDistribute super."rss"; 6794 "rss2irc" = dontDistribute super."rss2irc"; 6795 "rtld" = dontDistribute super."rtld"; 6796 "rtlsdr" = dontDistribute super."rtlsdr"; 6797 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1139 "aeson-diff" = dontDistribute super."aeson-diff"; 1140 "aeson-extra" = dontDistribute super."aeson-extra"; 1141 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1142 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1143 "aeson-lens" = dontDistribute super."aeson-lens"; 1144 "aeson-native" = dontDistribute super."aeson-native"; 1145 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1349 "archlinux-web" = dontDistribute super."archlinux-web"; 1350 "archnews" = dontDistribute super."archnews"; 1351 "arff" = dontDistribute super."arff"; 1352 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1353 "argon" = dontDistribute super."argon"; 1354 "argparser" = dontDistribute super."argparser"; 1355 "arguedit" = dontDistribute super."arguedit"; ··· 2595 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2596 "digits" = dontDistribute super."digits"; 2597 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2598 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2599 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2600 "dingo-core" = dontDistribute super."dingo-core"; 2601 "dingo-example" = dontDistribute super."dingo-example"; ··· 2867 "error-loc" = dontDistribute super."error-loc"; 2868 "error-location" = dontDistribute super."error-location"; 2869 "error-message" = dontDistribute super."error-message"; 2870 + "error-util" = dontDistribute super."error-util"; 2871 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2872 "errors" = doDistribute super."errors_1_4_7"; 2873 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6103 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6104 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6105 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6106 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6107 "persistent-map" = dontDistribute super."persistent-map"; 6108 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6109 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6797 "rspp" = dontDistribute super."rspp"; 6798 "rss" = dontDistribute super."rss"; 6799 "rss2irc" = dontDistribute super."rss2irc"; 6800 + "rtcm" = dontDistribute super."rtcm"; 6801 "rtld" = dontDistribute super."rtld"; 6802 "rtlsdr" = dontDistribute super."rtlsdr"; 6803 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.7.nix
··· 1138 "aeson-diff" = dontDistribute super."aeson-diff"; 1139 "aeson-extra" = dontDistribute super."aeson-extra"; 1140 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1142 "aeson-native" = dontDistribute super."aeson-native"; 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1347 "archlinux-web" = dontDistribute super."archlinux-web"; 1348 "archnews" = dontDistribute super."archnews"; 1349 "arff" = dontDistribute super."arff"; 1350 "argon" = dontDistribute super."argon"; 1351 "argparser" = dontDistribute super."argparser"; 1352 "arguedit" = dontDistribute super."arguedit"; ··· 2592 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2593 "digits" = dontDistribute super."digits"; 2594 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2595 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2596 "dingo-core" = dontDistribute super."dingo-core"; 2597 "dingo-example" = dontDistribute super."dingo-example"; ··· 2863 "error-loc" = dontDistribute super."error-loc"; 2864 "error-location" = dontDistribute super."error-location"; 2865 "error-message" = dontDistribute super."error-message"; 2866 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2867 "errors" = doDistribute super."errors_1_4_7"; 2868 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6098 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6099 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6100 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6101 "persistent-map" = dontDistribute super."persistent-map"; 6102 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6103 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6791 "rspp" = dontDistribute super."rspp"; 6792 "rss" = dontDistribute super."rss"; 6793 "rss2irc" = dontDistribute super."rss2irc"; 6794 "rtld" = dontDistribute super."rtld"; 6795 "rtlsdr" = dontDistribute super."rtlsdr"; 6796 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1138 "aeson-diff" = dontDistribute super."aeson-diff"; 1139 "aeson-extra" = dontDistribute super."aeson-extra"; 1140 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1141 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1142 "aeson-lens" = dontDistribute super."aeson-lens"; 1143 "aeson-native" = dontDistribute super."aeson-native"; 1144 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1348 "archlinux-web" = dontDistribute super."archlinux-web"; 1349 "archnews" = dontDistribute super."archnews"; 1350 "arff" = dontDistribute super."arff"; 1351 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1352 "argon" = dontDistribute super."argon"; 1353 "argparser" = dontDistribute super."argparser"; 1354 "arguedit" = dontDistribute super."arguedit"; ··· 2594 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2595 "digits" = dontDistribute super."digits"; 2596 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2597 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2598 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2599 "dingo-core" = dontDistribute super."dingo-core"; 2600 "dingo-example" = dontDistribute super."dingo-example"; ··· 2866 "error-loc" = dontDistribute super."error-loc"; 2867 "error-location" = dontDistribute super."error-location"; 2868 "error-message" = dontDistribute super."error-message"; 2869 + "error-util" = dontDistribute super."error-util"; 2870 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2871 "errors" = doDistribute super."errors_1_4_7"; 2872 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6102 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6103 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6104 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6105 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6106 "persistent-map" = dontDistribute super."persistent-map"; 6107 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6108 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6796 "rspp" = dontDistribute super."rspp"; 6797 "rss" = dontDistribute super."rss"; 6798 "rss2irc" = dontDistribute super."rss2irc"; 6799 + "rtcm" = dontDistribute super."rtcm"; 6800 "rtld" = dontDistribute super."rtld"; 6801 "rtlsdr" = dontDistribute super."rtlsdr"; 6802 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.8.nix
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1346 "archlinux-web" = dontDistribute super."archlinux-web"; 1347 "archnews" = dontDistribute super."archnews"; 1348 "arff" = dontDistribute super."arff"; 1349 "argon" = dontDistribute super."argon"; 1350 "argparser" = dontDistribute super."argparser"; 1351 "arguedit" = dontDistribute super."arguedit"; ··· 2591 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2592 "digits" = dontDistribute super."digits"; 2593 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2594 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2595 "dingo-core" = dontDistribute super."dingo-core"; 2596 "dingo-example" = dontDistribute super."dingo-example"; ··· 2862 "error-loc" = dontDistribute super."error-loc"; 2863 "error-location" = dontDistribute super."error-location"; 2864 "error-message" = dontDistribute super."error-message"; 2865 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2866 "errors" = doDistribute super."errors_1_4_7"; 2867 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6094 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6095 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6096 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6097 "persistent-map" = dontDistribute super."persistent-map"; 6098 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6099 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6787 "rspp" = dontDistribute super."rspp"; 6788 "rss" = dontDistribute super."rss"; 6789 "rss2irc" = dontDistribute super."rss2irc"; 6790 "rtld" = dontDistribute super."rtld"; 6791 "rtlsdr" = dontDistribute super."rtlsdr"; 6792 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1142 "aeson-native" = dontDistribute super."aeson-native"; 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1347 "archlinux-web" = dontDistribute super."archlinux-web"; 1348 "archnews" = dontDistribute super."archnews"; 1349 "arff" = dontDistribute super."arff"; 1350 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1351 "argon" = dontDistribute super."argon"; 1352 "argparser" = dontDistribute super."argparser"; 1353 "arguedit" = dontDistribute super."arguedit"; ··· 2593 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2594 "digits" = dontDistribute super."digits"; 2595 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2596 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2597 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2598 "dingo-core" = dontDistribute super."dingo-core"; 2599 "dingo-example" = dontDistribute super."dingo-example"; ··· 2865 "error-loc" = dontDistribute super."error-loc"; 2866 "error-location" = dontDistribute super."error-location"; 2867 "error-message" = dontDistribute super."error-message"; 2868 + "error-util" = dontDistribute super."error-util"; 2869 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2870 "errors" = doDistribute super."errors_1_4_7"; 2871 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6098 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6099 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6100 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6101 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6102 "persistent-map" = dontDistribute super."persistent-map"; 6103 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6104 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6792 "rspp" = dontDistribute super."rspp"; 6793 "rss" = dontDistribute super."rss"; 6794 "rss2irc" = dontDistribute super."rss2irc"; 6795 + "rtcm" = dontDistribute super."rtcm"; 6796 "rtld" = dontDistribute super."rtld"; 6797 "rtlsdr" = dontDistribute super."rtlsdr"; 6798 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.9.nix
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 "aeson-native" = dontDistribute super."aeson-native"; 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1346 "archlinux-web" = dontDistribute super."archlinux-web"; 1347 "archnews" = dontDistribute super."archnews"; 1348 "arff" = dontDistribute super."arff"; 1349 "argon" = dontDistribute super."argon"; 1350 "argparser" = dontDistribute super."argparser"; 1351 "arguedit" = dontDistribute super."arguedit"; ··· 2588 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2589 "digits" = dontDistribute super."digits"; 2590 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2591 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2592 "dingo-core" = dontDistribute super."dingo-core"; 2593 "dingo-example" = dontDistribute super."dingo-example"; ··· 2857 "error-loc" = dontDistribute super."error-loc"; 2858 "error-location" = dontDistribute super."error-location"; 2859 "error-message" = dontDistribute super."error-message"; 2860 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2861 "errors" = doDistribute super."errors_1_4_7"; 2862 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6084 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6085 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6086 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6087 "persistent-map" = dontDistribute super."persistent-map"; 6088 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6089 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6775 "rspp" = dontDistribute super."rspp"; 6776 "rss" = dontDistribute super."rss"; 6777 "rss2irc" = dontDistribute super."rss2irc"; 6778 "rtld" = dontDistribute super."rtld"; 6779 "rtlsdr" = dontDistribute super."rtlsdr"; 6780 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1142 "aeson-native" = dontDistribute super."aeson-native"; 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1347 "archlinux-web" = dontDistribute super."archlinux-web"; 1348 "archnews" = dontDistribute super."archnews"; 1349 "arff" = dontDistribute super."arff"; 1350 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1351 "argon" = dontDistribute super."argon"; 1352 "argparser" = dontDistribute super."argparser"; 1353 "arguedit" = dontDistribute super."arguedit"; ··· 2590 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2591 "digits" = dontDistribute super."digits"; 2592 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2593 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2594 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2595 "dingo-core" = dontDistribute super."dingo-core"; 2596 "dingo-example" = dontDistribute super."dingo-example"; ··· 2860 "error-loc" = dontDistribute super."error-loc"; 2861 "error-location" = dontDistribute super."error-location"; 2862 "error-message" = dontDistribute super."error-message"; 2863 + "error-util" = dontDistribute super."error-util"; 2864 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2865 "errors" = doDistribute super."errors_1_4_7"; 2866 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6088 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6089 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6090 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6091 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6092 "persistent-map" = dontDistribute super."persistent-map"; 6093 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6094 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6780 "rspp" = dontDistribute super."rspp"; 6781 "rss" = dontDistribute super."rss"; 6782 "rss2irc" = dontDistribute super."rss2irc"; 6783 + "rtcm" = dontDistribute super."rtcm"; 6784 "rtld" = dontDistribute super."rtld"; 6785 "rtlsdr" = dontDistribute super."rtlsdr"; 6786 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+8
pkgs/development/haskell-modules/configuration-lts-3.0.nix
··· 1110 "aeson-diff" = dontDistribute super."aeson-diff"; 1111 "aeson-extra" = dontDistribute super."aeson-extra"; 1112 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1113 "aeson-lens" = dontDistribute super."aeson-lens"; 1114 "aeson-native" = dontDistribute super."aeson-native"; 1115 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1303 "archlinux-web" = dontDistribute super."archlinux-web"; 1304 "archnews" = dontDistribute super."archnews"; 1305 "arff" = dontDistribute super."arff"; 1306 "argon" = dontDistribute super."argon"; 1307 "argparser" = dontDistribute super."argparser"; 1308 "arguedit" = dontDistribute super."arguedit"; ··· 2484 "digit" = dontDistribute super."digit"; 2485 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2486 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2487 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2488 "dingo-core" = dontDistribute super."dingo-core"; 2489 "dingo-example" = dontDistribute super."dingo-example"; ··· 2742 "error-loc" = dontDistribute super."error-loc"; 2743 "error-location" = dontDistribute super."error-location"; 2744 "error-message" = dontDistribute super."error-message"; 2745 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2746 "errors" = doDistribute super."errors_2_0_0"; 2747 "ersatz" = dontDistribute super."ersatz"; ··· 4527 "io-reactive" = dontDistribute super."io-reactive"; 4528 "io-region" = dontDistribute super."io-region"; 4529 "io-storage" = dontDistribute super."io-storage"; 4530 "io-streams-http" = dontDistribute super."io-streams-http"; 4531 "io-throttle" = dontDistribute super."io-throttle"; 4532 "ioctl" = dontDistribute super."ioctl"; ··· 5815 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5816 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5817 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5818 "persistent-map" = dontDistribute super."persistent-map"; 5819 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5820 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6062 "prof2dot" = dontDistribute super."prof2dot"; 6063 "prof2pretty" = dontDistribute super."prof2pretty"; 6064 "profiteur" = dontDistribute super."profiteur"; 6065 "progress" = dontDistribute super."progress"; 6066 "progressbar" = dontDistribute super."progressbar"; 6067 "progression" = dontDistribute super."progression"; ··· 6483 "rspp" = dontDistribute super."rspp"; 6484 "rss" = dontDistribute super."rss"; 6485 "rss2irc" = dontDistribute super."rss2irc"; 6486 "rtld" = dontDistribute super."rtld"; 6487 "rtlsdr" = dontDistribute super."rtlsdr"; 6488 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1110 "aeson-diff" = dontDistribute super."aeson-diff"; 1111 "aeson-extra" = dontDistribute super."aeson-extra"; 1112 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1113 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1114 "aeson-lens" = dontDistribute super."aeson-lens"; 1115 "aeson-native" = dontDistribute super."aeson-native"; 1116 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1304 "archlinux-web" = dontDistribute super."archlinux-web"; 1305 "archnews" = dontDistribute super."archnews"; 1306 "arff" = dontDistribute super."arff"; 1307 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1308 "argon" = dontDistribute super."argon"; 1309 "argparser" = dontDistribute super."argparser"; 1310 "arguedit" = dontDistribute super."arguedit"; ··· 2486 "digit" = dontDistribute super."digit"; 2487 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2488 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2489 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2490 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2491 "dingo-core" = dontDistribute super."dingo-core"; 2492 "dingo-example" = dontDistribute super."dingo-example"; ··· 2745 "error-loc" = dontDistribute super."error-loc"; 2746 "error-location" = dontDistribute super."error-location"; 2747 "error-message" = dontDistribute super."error-message"; 2748 + "error-util" = dontDistribute super."error-util"; 2749 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2750 "errors" = doDistribute super."errors_2_0_0"; 2751 "ersatz" = dontDistribute super."ersatz"; ··· 4531 "io-reactive" = dontDistribute super."io-reactive"; 4532 "io-region" = dontDistribute super."io-region"; 4533 "io-storage" = dontDistribute super."io-storage"; 4534 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4535 "io-streams-http" = dontDistribute super."io-streams-http"; 4536 "io-throttle" = dontDistribute super."io-throttle"; 4537 "ioctl" = dontDistribute super."ioctl"; ··· 5820 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5821 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5822 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5823 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5824 "persistent-map" = dontDistribute super."persistent-map"; 5825 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5826 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6068 "prof2dot" = dontDistribute super."prof2dot"; 6069 "prof2pretty" = dontDistribute super."prof2pretty"; 6070 "profiteur" = dontDistribute super."profiteur"; 6071 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6072 "progress" = dontDistribute super."progress"; 6073 "progressbar" = dontDistribute super."progressbar"; 6074 "progression" = dontDistribute super."progression"; ··· 6490 "rspp" = dontDistribute super."rspp"; 6491 "rss" = dontDistribute super."rss"; 6492 "rss2irc" = dontDistribute super."rss2irc"; 6493 + "rtcm" = dontDistribute super."rtcm"; 6494 "rtld" = dontDistribute super."rtld"; 6495 "rtlsdr" = dontDistribute super."rtlsdr"; 6496 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+8
pkgs/development/haskell-modules/configuration-lts-3.1.nix
··· 1110 "aeson-diff" = dontDistribute super."aeson-diff"; 1111 "aeson-extra" = dontDistribute super."aeson-extra"; 1112 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1113 "aeson-lens" = dontDistribute super."aeson-lens"; 1114 "aeson-native" = dontDistribute super."aeson-native"; 1115 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1302 "archlinux-web" = dontDistribute super."archlinux-web"; 1303 "archnews" = dontDistribute super."archnews"; 1304 "arff" = dontDistribute super."arff"; 1305 "argon" = dontDistribute super."argon"; 1306 "argparser" = dontDistribute super."argparser"; 1307 "arguedit" = dontDistribute super."arguedit"; ··· 2482 "digit" = dontDistribute super."digit"; 2483 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2484 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2485 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2486 "dingo-core" = dontDistribute super."dingo-core"; 2487 "dingo-example" = dontDistribute super."dingo-example"; ··· 2740 "error-loc" = dontDistribute super."error-loc"; 2741 "error-location" = dontDistribute super."error-location"; 2742 "error-message" = dontDistribute super."error-message"; 2743 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2744 "errors" = doDistribute super."errors_2_0_0"; 2745 "ersatz" = dontDistribute super."ersatz"; ··· 4521 "io-reactive" = dontDistribute super."io-reactive"; 4522 "io-region" = dontDistribute super."io-region"; 4523 "io-storage" = dontDistribute super."io-storage"; 4524 "io-streams-http" = dontDistribute super."io-streams-http"; 4525 "io-throttle" = dontDistribute super."io-throttle"; 4526 "ioctl" = dontDistribute super."ioctl"; ··· 5807 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5808 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5809 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5810 "persistent-map" = dontDistribute super."persistent-map"; 5811 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5812 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6053 "prof2dot" = dontDistribute super."prof2dot"; 6054 "prof2pretty" = dontDistribute super."prof2pretty"; 6055 "profiteur" = dontDistribute super."profiteur"; 6056 "progress" = dontDistribute super."progress"; 6057 "progressbar" = dontDistribute super."progressbar"; 6058 "progression" = dontDistribute super."progression"; ··· 6473 "rspp" = dontDistribute super."rspp"; 6474 "rss" = dontDistribute super."rss"; 6475 "rss2irc" = dontDistribute super."rss2irc"; 6476 "rtld" = dontDistribute super."rtld"; 6477 "rtlsdr" = dontDistribute super."rtlsdr"; 6478 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
··· 1110 "aeson-diff" = dontDistribute super."aeson-diff"; 1111 "aeson-extra" = dontDistribute super."aeson-extra"; 1112 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1113 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1114 "aeson-lens" = dontDistribute super."aeson-lens"; 1115 "aeson-native" = dontDistribute super."aeson-native"; 1116 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1303 "archlinux-web" = dontDistribute super."archlinux-web"; 1304 "archnews" = dontDistribute super."archnews"; 1305 "arff" = dontDistribute super."arff"; 1306 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1307 "argon" = dontDistribute super."argon"; 1308 "argparser" = dontDistribute super."argparser"; 1309 "arguedit" = dontDistribute super."arguedit"; ··· 2484 "digit" = dontDistribute super."digit"; 2485 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2486 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2487 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2488 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2489 "dingo-core" = dontDistribute super."dingo-core"; 2490 "dingo-example" = dontDistribute super."dingo-example"; ··· 2743 "error-loc" = dontDistribute super."error-loc"; 2744 "error-location" = dontDistribute super."error-location"; 2745 "error-message" = dontDistribute super."error-message"; 2746 + "error-util" = dontDistribute super."error-util"; 2747 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2748 "errors" = doDistribute super."errors_2_0_0"; 2749 "ersatz" = dontDistribute super."ersatz"; ··· 4525 "io-reactive" = dontDistribute super."io-reactive"; 4526 "io-region" = dontDistribute super."io-region"; 4527 "io-storage" = dontDistribute super."io-storage"; 4528 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4529 "io-streams-http" = dontDistribute super."io-streams-http"; 4530 "io-throttle" = dontDistribute super."io-throttle"; 4531 "ioctl" = dontDistribute super."ioctl"; ··· 5812 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5813 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5814 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5815 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5816 "persistent-map" = dontDistribute super."persistent-map"; 5817 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5818 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6059 "prof2dot" = dontDistribute super."prof2dot"; 6060 "prof2pretty" = dontDistribute super."prof2pretty"; 6061 "profiteur" = dontDistribute super."profiteur"; 6062 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6063 "progress" = dontDistribute super."progress"; 6064 "progressbar" = dontDistribute super."progressbar"; 6065 "progression" = dontDistribute super."progression"; ··· 6480 "rspp" = dontDistribute super."rspp"; 6481 "rss" = dontDistribute super."rss"; 6482 "rss2irc" = dontDistribute super."rss2irc"; 6483 + "rtcm" = dontDistribute super."rtcm"; 6484 "rtld" = dontDistribute super."rtld"; 6485 "rtlsdr" = dontDistribute super."rtlsdr"; 6486 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+10
pkgs/development/haskell-modules/configuration-lts-3.10.nix
··· 1101 "aeson-diff" = dontDistribute super."aeson-diff"; 1102 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1103 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1104 "aeson-lens" = dontDistribute super."aeson-lens"; 1105 "aeson-native" = dontDistribute super."aeson-native"; 1106 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1289 "archlinux-web" = dontDistribute super."archlinux-web"; 1290 "archnews" = dontDistribute super."archnews"; 1291 "arff" = dontDistribute super."arff"; 1292 "argon" = dontDistribute super."argon"; 1293 "argparser" = dontDistribute super."argparser"; 1294 "arguedit" = dontDistribute super."arguedit"; ··· 2442 "digit" = dontDistribute super."digit"; 2443 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2444 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2445 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2446 "dingo-core" = dontDistribute super."dingo-core"; 2447 "dingo-example" = dontDistribute super."dingo-example"; ··· 2695 "error-loc" = dontDistribute super."error-loc"; 2696 "error-location" = dontDistribute super."error-location"; 2697 "error-message" = dontDistribute super."error-message"; 2698 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2699 "ersatz" = dontDistribute super."ersatz"; 2700 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4445 "io-reactive" = dontDistribute super."io-reactive"; 4446 "io-region" = dontDistribute super."io-region"; 4447 "io-storage" = dontDistribute super."io-storage"; 4448 "io-streams-http" = dontDistribute super."io-streams-http"; 4449 "io-throttle" = dontDistribute super."io-throttle"; 4450 "ioctl" = dontDistribute super."ioctl"; ··· 5710 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5711 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5712 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5713 "persistent-map" = dontDistribute super."persistent-map"; 5714 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5715 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5946 "prof2dot" = dontDistribute super."prof2dot"; 5947 "prof2pretty" = dontDistribute super."prof2pretty"; 5948 "profiteur" = dontDistribute super."profiteur"; 5949 "progress" = dontDistribute super."progress"; 5950 "progressbar" = dontDistribute super."progressbar"; 5951 "progression" = dontDistribute super."progression"; ··· 6360 "rspp" = dontDistribute super."rspp"; 6361 "rss" = dontDistribute super."rss"; 6362 "rss2irc" = dontDistribute super."rss2irc"; 6363 "rtld" = dontDistribute super."rtld"; 6364 "rtlsdr" = dontDistribute super."rtlsdr"; 6365 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7947 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7948 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7949 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7950 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7951 "yesod-comments" = dontDistribute super."yesod-comments"; 7952 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7953 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7954 "yesod-crud" = dontDistribute super."yesod-crud"; 7955 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7956 "yesod-csp" = dontDistribute super."yesod-csp";
··· 1101 "aeson-diff" = dontDistribute super."aeson-diff"; 1102 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1103 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1104 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1105 "aeson-lens" = dontDistribute super."aeson-lens"; 1106 "aeson-native" = dontDistribute super."aeson-native"; 1107 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1290 "archlinux-web" = dontDistribute super."archlinux-web"; 1291 "archnews" = dontDistribute super."archnews"; 1292 "arff" = dontDistribute super."arff"; 1293 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1294 "argon" = dontDistribute super."argon"; 1295 "argparser" = dontDistribute super."argparser"; 1296 "arguedit" = dontDistribute super."arguedit"; ··· 2444 "digit" = dontDistribute super."digit"; 2445 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2446 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2447 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2448 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2449 "dingo-core" = dontDistribute super."dingo-core"; 2450 "dingo-example" = dontDistribute super."dingo-example"; ··· 2698 "error-loc" = dontDistribute super."error-loc"; 2699 "error-location" = dontDistribute super."error-location"; 2700 "error-message" = dontDistribute super."error-message"; 2701 + "error-util" = dontDistribute super."error-util"; 2702 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2703 "ersatz" = dontDistribute super."ersatz"; 2704 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4449 "io-reactive" = dontDistribute super."io-reactive"; 4450 "io-region" = dontDistribute super."io-region"; 4451 "io-storage" = dontDistribute super."io-storage"; 4452 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4453 "io-streams-http" = dontDistribute super."io-streams-http"; 4454 "io-throttle" = dontDistribute super."io-throttle"; 4455 "ioctl" = dontDistribute super."ioctl"; ··· 5715 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5716 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5717 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5718 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5719 "persistent-map" = dontDistribute super."persistent-map"; 5720 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5721 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5952 "prof2dot" = dontDistribute super."prof2dot"; 5953 "prof2pretty" = dontDistribute super."prof2pretty"; 5954 "profiteur" = dontDistribute super."profiteur"; 5955 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5956 "progress" = dontDistribute super."progress"; 5957 "progressbar" = dontDistribute super."progressbar"; 5958 "progression" = dontDistribute super."progression"; ··· 6367 "rspp" = dontDistribute super."rspp"; 6368 "rss" = dontDistribute super."rss"; 6369 "rss2irc" = dontDistribute super."rss2irc"; 6370 + "rtcm" = dontDistribute super."rtcm"; 6371 "rtld" = dontDistribute super."rtld"; 6372 "rtlsdr" = dontDistribute super."rtlsdr"; 6373 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7955 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7956 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7957 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7958 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7959 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7960 "yesod-comments" = dontDistribute super."yesod-comments"; 7961 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7962 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7963 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7964 "yesod-crud" = dontDistribute super."yesod-crud"; 7965 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7966 "yesod-csp" = dontDistribute super."yesod-csp";
+11
pkgs/development/haskell-modules/configuration-lts-3.11.nix
··· 1101 "aeson-diff" = dontDistribute super."aeson-diff"; 1102 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1103 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1104 "aeson-lens" = dontDistribute super."aeson-lens"; 1105 "aeson-native" = dontDistribute super."aeson-native"; 1106 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1289 "archlinux-web" = dontDistribute super."archlinux-web"; 1290 "archnews" = dontDistribute super."archnews"; 1291 "arff" = dontDistribute super."arff"; 1292 "argon" = dontDistribute super."argon"; 1293 "argparser" = dontDistribute super."argparser"; 1294 "arguedit" = dontDistribute super."arguedit"; ··· 2440 "digit" = dontDistribute super."digit"; 2441 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2442 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2443 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2444 "dingo-core" = dontDistribute super."dingo-core"; 2445 "dingo-example" = dontDistribute super."dingo-example"; ··· 2693 "error-loc" = dontDistribute super."error-loc"; 2694 "error-location" = dontDistribute super."error-location"; 2695 "error-message" = dontDistribute super."error-message"; 2696 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2697 "ersatz" = dontDistribute super."ersatz"; 2698 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4439 "io-reactive" = dontDistribute super."io-reactive"; 4440 "io-region" = dontDistribute super."io-region"; 4441 "io-storage" = dontDistribute super."io-storage"; 4442 "io-streams-http" = dontDistribute super."io-streams-http"; 4443 "io-throttle" = dontDistribute super."io-throttle"; 4444 "ioctl" = dontDistribute super."ioctl"; ··· 5704 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5705 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5706 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5707 "persistent-map" = dontDistribute super."persistent-map"; 5708 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5709 "persistent-odbc" = dontDistribute super."persistent-odbc"; ··· 5938 "prof2dot" = dontDistribute super."prof2dot"; 5939 "prof2pretty" = dontDistribute super."prof2pretty"; 5940 "profiteur" = dontDistribute super."profiteur"; 5941 "progress" = dontDistribute super."progress"; 5942 "progressbar" = dontDistribute super."progressbar"; 5943 "progression" = dontDistribute super."progression"; ··· 6352 "rspp" = dontDistribute super."rspp"; 6353 "rss" = dontDistribute super."rss"; 6354 "rss2irc" = dontDistribute super."rss2irc"; 6355 "rtld" = dontDistribute super."rtld"; 6356 "rtlsdr" = dontDistribute super."rtlsdr"; 6357 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7936 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7937 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7938 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7939 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7940 "yesod-comments" = dontDistribute super."yesod-comments"; 7941 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7942 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7943 "yesod-crud" = dontDistribute super."yesod-crud"; 7944 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7945 "yesod-csp" = dontDistribute super."yesod-csp"; 7946 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7947 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7948 "yesod-examples" = dontDistribute super."yesod-examples"; 7949 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7950 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7951 "yesod-json" = dontDistribute super."yesod-json";
··· 1101 "aeson-diff" = dontDistribute super."aeson-diff"; 1102 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1103 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1104 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1105 "aeson-lens" = dontDistribute super."aeson-lens"; 1106 "aeson-native" = dontDistribute super."aeson-native"; 1107 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1290 "archlinux-web" = dontDistribute super."archlinux-web"; 1291 "archnews" = dontDistribute super."archnews"; 1292 "arff" = dontDistribute super."arff"; 1293 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1294 "argon" = dontDistribute super."argon"; 1295 "argparser" = dontDistribute super."argparser"; 1296 "arguedit" = dontDistribute super."arguedit"; ··· 2442 "digit" = dontDistribute super."digit"; 2443 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2444 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2445 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2446 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2447 "dingo-core" = dontDistribute super."dingo-core"; 2448 "dingo-example" = dontDistribute super."dingo-example"; ··· 2696 "error-loc" = dontDistribute super."error-loc"; 2697 "error-location" = dontDistribute super."error-location"; 2698 "error-message" = dontDistribute super."error-message"; 2699 + "error-util" = dontDistribute super."error-util"; 2700 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2701 "ersatz" = dontDistribute super."ersatz"; 2702 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4443 "io-reactive" = dontDistribute super."io-reactive"; 4444 "io-region" = dontDistribute super."io-region"; 4445 "io-storage" = dontDistribute super."io-storage"; 4446 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4447 "io-streams-http" = dontDistribute super."io-streams-http"; 4448 "io-throttle" = dontDistribute super."io-throttle"; 4449 "ioctl" = dontDistribute super."ioctl"; ··· 5709 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5710 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5711 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5712 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5713 "persistent-map" = dontDistribute super."persistent-map"; 5714 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5715 "persistent-odbc" = dontDistribute super."persistent-odbc"; ··· 5944 "prof2dot" = dontDistribute super."prof2dot"; 5945 "prof2pretty" = dontDistribute super."prof2pretty"; 5946 "profiteur" = dontDistribute super."profiteur"; 5947 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5948 "progress" = dontDistribute super."progress"; 5949 "progressbar" = dontDistribute super."progressbar"; 5950 "progression" = dontDistribute super."progression"; ··· 6359 "rspp" = dontDistribute super."rspp"; 6360 "rss" = dontDistribute super."rss"; 6361 "rss2irc" = dontDistribute super."rss2irc"; 6362 + "rtcm" = dontDistribute super."rtcm"; 6363 "rtld" = dontDistribute super."rtld"; 6364 "rtlsdr" = dontDistribute super."rtlsdr"; 6365 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7944 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7945 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7946 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7947 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7948 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7949 "yesod-comments" = dontDistribute super."yesod-comments"; 7950 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7951 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7952 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7953 "yesod-crud" = dontDistribute super."yesod-crud"; 7954 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7955 "yesod-csp" = dontDistribute super."yesod-csp"; 7956 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7957 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7958 "yesod-examples" = dontDistribute super."yesod-examples"; 7959 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7960 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7961 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7962 "yesod-json" = dontDistribute super."yesod-json";
+11
pkgs/development/haskell-modules/configuration-lts-3.12.nix
··· 1100 "aeson-diff" = dontDistribute super."aeson-diff"; 1101 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1102 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1103 "aeson-lens" = dontDistribute super."aeson-lens"; 1104 "aeson-native" = dontDistribute super."aeson-native"; 1105 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1288 "archlinux-web" = dontDistribute super."archlinux-web"; 1289 "archnews" = dontDistribute super."archnews"; 1290 "arff" = dontDistribute super."arff"; 1291 "argon" = dontDistribute super."argon"; 1292 "argparser" = dontDistribute super."argparser"; 1293 "arguedit" = dontDistribute super."arguedit"; ··· 2435 "digit" = dontDistribute super."digit"; 2436 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2437 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2438 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2439 "dingo-core" = dontDistribute super."dingo-core"; 2440 "dingo-example" = dontDistribute super."dingo-example"; ··· 2688 "error-loc" = dontDistribute super."error-loc"; 2689 "error-location" = dontDistribute super."error-location"; 2690 "error-message" = dontDistribute super."error-message"; 2691 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2692 "ersatz" = dontDistribute super."ersatz"; 2693 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4432 "io-reactive" = dontDistribute super."io-reactive"; 4433 "io-region" = dontDistribute super."io-region"; 4434 "io-storage" = dontDistribute super."io-storage"; 4435 "io-streams-http" = dontDistribute super."io-streams-http"; 4436 "io-throttle" = dontDistribute super."io-throttle"; 4437 "ioctl" = dontDistribute super."ioctl"; ··· 5695 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5696 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5697 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5698 "persistent-map" = dontDistribute super."persistent-map"; 5699 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5700 "persistent-odbc" = dontDistribute super."persistent-odbc"; ··· 5929 "prof2dot" = dontDistribute super."prof2dot"; 5930 "prof2pretty" = dontDistribute super."prof2pretty"; 5931 "profiteur" = dontDistribute super."profiteur"; 5932 "progress" = dontDistribute super."progress"; 5933 "progressbar" = dontDistribute super."progressbar"; 5934 "progression" = dontDistribute super."progression"; ··· 6343 "rspp" = dontDistribute super."rspp"; 6344 "rss" = dontDistribute super."rss"; 6345 "rss2irc" = dontDistribute super."rss2irc"; 6346 "rtld" = dontDistribute super."rtld"; 6347 "rtlsdr" = dontDistribute super."rtlsdr"; 6348 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7923 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7924 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7925 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7926 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7927 "yesod-comments" = dontDistribute super."yesod-comments"; 7928 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7929 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7930 "yesod-crud" = dontDistribute super."yesod-crud"; 7931 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7932 "yesod-csp" = dontDistribute super."yesod-csp"; 7933 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7934 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7935 "yesod-examples" = dontDistribute super."yesod-examples"; 7936 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7937 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7938 "yesod-json" = dontDistribute super."yesod-json";
··· 1100 "aeson-diff" = dontDistribute super."aeson-diff"; 1101 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1102 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1103 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1104 "aeson-lens" = dontDistribute super."aeson-lens"; 1105 "aeson-native" = dontDistribute super."aeson-native"; 1106 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1289 "archlinux-web" = dontDistribute super."archlinux-web"; 1290 "archnews" = dontDistribute super."archnews"; 1291 "arff" = dontDistribute super."arff"; 1292 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1293 "argon" = dontDistribute super."argon"; 1294 "argparser" = dontDistribute super."argparser"; 1295 "arguedit" = dontDistribute super."arguedit"; ··· 2437 "digit" = dontDistribute super."digit"; 2438 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2439 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2440 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2441 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2442 "dingo-core" = dontDistribute super."dingo-core"; 2443 "dingo-example" = dontDistribute super."dingo-example"; ··· 2691 "error-loc" = dontDistribute super."error-loc"; 2692 "error-location" = dontDistribute super."error-location"; 2693 "error-message" = dontDistribute super."error-message"; 2694 + "error-util" = dontDistribute super."error-util"; 2695 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2696 "ersatz" = dontDistribute super."ersatz"; 2697 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4436 "io-reactive" = dontDistribute super."io-reactive"; 4437 "io-region" = dontDistribute super."io-region"; 4438 "io-storage" = dontDistribute super."io-storage"; 4439 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4440 "io-streams-http" = dontDistribute super."io-streams-http"; 4441 "io-throttle" = dontDistribute super."io-throttle"; 4442 "ioctl" = dontDistribute super."ioctl"; ··· 5700 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5701 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5702 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5703 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5704 "persistent-map" = dontDistribute super."persistent-map"; 5705 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5706 "persistent-odbc" = dontDistribute super."persistent-odbc"; ··· 5935 "prof2dot" = dontDistribute super."prof2dot"; 5936 "prof2pretty" = dontDistribute super."prof2pretty"; 5937 "profiteur" = dontDistribute super."profiteur"; 5938 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5939 "progress" = dontDistribute super."progress"; 5940 "progressbar" = dontDistribute super."progressbar"; 5941 "progression" = dontDistribute super."progression"; ··· 6350 "rspp" = dontDistribute super."rspp"; 6351 "rss" = dontDistribute super."rss"; 6352 "rss2irc" = dontDistribute super."rss2irc"; 6353 + "rtcm" = dontDistribute super."rtcm"; 6354 "rtld" = dontDistribute super."rtld"; 6355 "rtlsdr" = dontDistribute super."rtlsdr"; 6356 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7931 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7932 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7933 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7934 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7935 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7936 "yesod-comments" = dontDistribute super."yesod-comments"; 7937 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7938 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7939 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7940 "yesod-crud" = dontDistribute super."yesod-crud"; 7941 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7942 "yesod-csp" = dontDistribute super."yesod-csp"; 7943 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7944 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7945 "yesod-examples" = dontDistribute super."yesod-examples"; 7946 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7947 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7948 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7949 "yesod-json" = dontDistribute super."yesod-json";
+11
pkgs/development/haskell-modules/configuration-lts-3.13.nix
··· 1100 "aeson-diff" = dontDistribute super."aeson-diff"; 1101 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1102 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1103 "aeson-lens" = dontDistribute super."aeson-lens"; 1104 "aeson-native" = dontDistribute super."aeson-native"; 1105 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1288 "archlinux-web" = dontDistribute super."archlinux-web"; 1289 "archnews" = dontDistribute super."archnews"; 1290 "arff" = dontDistribute super."arff"; 1291 "argon" = dontDistribute super."argon"; 1292 "argparser" = dontDistribute super."argparser"; 1293 "arguedit" = dontDistribute super."arguedit"; ··· 2435 "digit" = dontDistribute super."digit"; 2436 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2437 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2438 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2439 "dingo-core" = dontDistribute super."dingo-core"; 2440 "dingo-example" = dontDistribute super."dingo-example"; ··· 2688 "error-loc" = dontDistribute super."error-loc"; 2689 "error-location" = dontDistribute super."error-location"; 2690 "error-message" = dontDistribute super."error-message"; 2691 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2692 "ersatz" = dontDistribute super."ersatz"; 2693 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4431 "io-reactive" = dontDistribute super."io-reactive"; 4432 "io-region" = dontDistribute super."io-region"; 4433 "io-storage" = dontDistribute super."io-storage"; 4434 "io-streams-http" = dontDistribute super."io-streams-http"; 4435 "io-throttle" = dontDistribute super."io-throttle"; 4436 "ioctl" = dontDistribute super."ioctl"; ··· 5691 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5692 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5693 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5694 "persistent-map" = dontDistribute super."persistent-map"; 5695 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5696 "persistent-odbc" = dontDistribute super."persistent-odbc"; ··· 5925 "prof2dot" = dontDistribute super."prof2dot"; 5926 "prof2pretty" = dontDistribute super."prof2pretty"; 5927 "profiteur" = dontDistribute super."profiteur"; 5928 "progress" = dontDistribute super."progress"; 5929 "progressbar" = dontDistribute super."progressbar"; 5930 "progression" = dontDistribute super."progression"; ··· 6339 "rspp" = dontDistribute super."rspp"; 6340 "rss" = dontDistribute super."rss"; 6341 "rss2irc" = dontDistribute super."rss2irc"; 6342 "rtld" = dontDistribute super."rtld"; 6343 "rtlsdr" = dontDistribute super."rtlsdr"; 6344 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7917 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7918 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7919 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7920 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7921 "yesod-comments" = dontDistribute super."yesod-comments"; 7922 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7923 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7924 "yesod-crud" = dontDistribute super."yesod-crud"; 7925 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7926 "yesod-csp" = dontDistribute super."yesod-csp"; 7927 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7928 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7929 "yesod-examples" = dontDistribute super."yesod-examples"; 7930 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7931 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7932 "yesod-json" = dontDistribute super."yesod-json";
··· 1100 "aeson-diff" = dontDistribute super."aeson-diff"; 1101 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1102 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1103 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1104 "aeson-lens" = dontDistribute super."aeson-lens"; 1105 "aeson-native" = dontDistribute super."aeson-native"; 1106 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1289 "archlinux-web" = dontDistribute super."archlinux-web"; 1290 "archnews" = dontDistribute super."archnews"; 1291 "arff" = dontDistribute super."arff"; 1292 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1293 "argon" = dontDistribute super."argon"; 1294 "argparser" = dontDistribute super."argparser"; 1295 "arguedit" = dontDistribute super."arguedit"; ··· 2437 "digit" = dontDistribute super."digit"; 2438 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2439 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2440 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2441 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2442 "dingo-core" = dontDistribute super."dingo-core"; 2443 "dingo-example" = dontDistribute super."dingo-example"; ··· 2691 "error-loc" = dontDistribute super."error-loc"; 2692 "error-location" = dontDistribute super."error-location"; 2693 "error-message" = dontDistribute super."error-message"; 2694 + "error-util" = dontDistribute super."error-util"; 2695 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2696 "ersatz" = dontDistribute super."ersatz"; 2697 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4435 "io-reactive" = dontDistribute super."io-reactive"; 4436 "io-region" = dontDistribute super."io-region"; 4437 "io-storage" = dontDistribute super."io-storage"; 4438 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4439 "io-streams-http" = dontDistribute super."io-streams-http"; 4440 "io-throttle" = dontDistribute super."io-throttle"; 4441 "ioctl" = dontDistribute super."ioctl"; ··· 5696 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5697 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5698 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5699 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5700 "persistent-map" = dontDistribute super."persistent-map"; 5701 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5702 "persistent-odbc" = dontDistribute super."persistent-odbc"; ··· 5931 "prof2dot" = dontDistribute super."prof2dot"; 5932 "prof2pretty" = dontDistribute super."prof2pretty"; 5933 "profiteur" = dontDistribute super."profiteur"; 5934 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5935 "progress" = dontDistribute super."progress"; 5936 "progressbar" = dontDistribute super."progressbar"; 5937 "progression" = dontDistribute super."progression"; ··· 6346 "rspp" = dontDistribute super."rspp"; 6347 "rss" = dontDistribute super."rss"; 6348 "rss2irc" = dontDistribute super."rss2irc"; 6349 + "rtcm" = dontDistribute super."rtcm"; 6350 "rtld" = dontDistribute super."rtld"; 6351 "rtlsdr" = dontDistribute super."rtlsdr"; 6352 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7925 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7926 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7927 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7928 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7929 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7930 "yesod-comments" = dontDistribute super."yesod-comments"; 7931 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7932 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7933 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7934 "yesod-crud" = dontDistribute super."yesod-crud"; 7935 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7936 "yesod-csp" = dontDistribute super."yesod-csp"; 7937 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7938 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7939 "yesod-examples" = dontDistribute super."yesod-examples"; 7940 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7941 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7942 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7943 "yesod-json" = dontDistribute super."yesod-json";
+12
pkgs/development/haskell-modules/configuration-lts-3.14.nix
··· 1097 "aeson-casing" = dontDistribute super."aeson-casing"; 1098 "aeson-diff" = dontDistribute super."aeson-diff"; 1099 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1100 "aeson-lens" = dontDistribute super."aeson-lens"; 1101 "aeson-native" = dontDistribute super."aeson-native"; 1102 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1285 "archlinux-web" = dontDistribute super."archlinux-web"; 1286 "archnews" = dontDistribute super."archnews"; 1287 "arff" = dontDistribute super."arff"; 1288 "argon" = dontDistribute super."argon"; 1289 "argparser" = dontDistribute super."argparser"; 1290 "arguedit" = dontDistribute super."arguedit"; ··· 2426 "digit" = dontDistribute super."digit"; 2427 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2428 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2429 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2430 "dingo-core" = dontDistribute super."dingo-core"; 2431 "dingo-example" = dontDistribute super."dingo-example"; ··· 2678 "error-loc" = dontDistribute super."error-loc"; 2679 "error-location" = dontDistribute super."error-location"; 2680 "error-message" = dontDistribute super."error-message"; 2681 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2682 "ersatz" = dontDistribute super."ersatz"; 2683 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4419 "io-reactive" = dontDistribute super."io-reactive"; 4420 "io-region" = dontDistribute super."io-region"; 4421 "io-storage" = dontDistribute super."io-storage"; 4422 "io-streams-http" = dontDistribute super."io-streams-http"; 4423 "io-throttle" = dontDistribute super."io-throttle"; 4424 "ioctl" = dontDistribute super."ioctl"; ··· 5677 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5678 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5679 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5680 "persistent-map" = dontDistribute super."persistent-map"; 5681 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5682 "persistent-odbc" = dontDistribute super."persistent-odbc"; 5683 "persistent-protobuf" = dontDistribute super."persistent-protobuf"; 5684 "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; 5685 "persistent-redis" = dontDistribute super."persistent-redis"; ··· 5909 "prof2dot" = dontDistribute super."prof2dot"; 5910 "prof2pretty" = dontDistribute super."prof2pretty"; 5911 "profiteur" = dontDistribute super."profiteur"; 5912 "progress" = dontDistribute super."progress"; 5913 "progressbar" = dontDistribute super."progressbar"; 5914 "progression" = dontDistribute super."progression"; ··· 6323 "rspp" = dontDistribute super."rspp"; 6324 "rss" = dontDistribute super."rss"; 6325 "rss2irc" = dontDistribute super."rss2irc"; 6326 "rtld" = dontDistribute super."rtld"; 6327 "rtlsdr" = dontDistribute super."rtlsdr"; 6328 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7897 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7898 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7899 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7900 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7901 "yesod-comments" = dontDistribute super."yesod-comments"; 7902 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7903 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7904 "yesod-crud" = dontDistribute super."yesod-crud"; 7905 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7906 "yesod-csp" = dontDistribute super."yesod-csp"; 7907 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7908 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7909 "yesod-examples" = dontDistribute super."yesod-examples"; 7910 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7911 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7912 "yesod-json" = dontDistribute super."yesod-json";
··· 1097 "aeson-casing" = dontDistribute super."aeson-casing"; 1098 "aeson-diff" = dontDistribute super."aeson-diff"; 1099 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1100 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1101 "aeson-lens" = dontDistribute super."aeson-lens"; 1102 "aeson-native" = dontDistribute super."aeson-native"; 1103 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1286 "archlinux-web" = dontDistribute super."archlinux-web"; 1287 "archnews" = dontDistribute super."archnews"; 1288 "arff" = dontDistribute super."arff"; 1289 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1290 "argon" = dontDistribute super."argon"; 1291 "argparser" = dontDistribute super."argparser"; 1292 "arguedit" = dontDistribute super."arguedit"; ··· 2428 "digit" = dontDistribute super."digit"; 2429 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2430 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2431 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2432 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2433 "dingo-core" = dontDistribute super."dingo-core"; 2434 "dingo-example" = dontDistribute super."dingo-example"; ··· 2681 "error-loc" = dontDistribute super."error-loc"; 2682 "error-location" = dontDistribute super."error-location"; 2683 "error-message" = dontDistribute super."error-message"; 2684 + "error-util" = dontDistribute super."error-util"; 2685 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2686 "ersatz" = dontDistribute super."ersatz"; 2687 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4423 "io-reactive" = dontDistribute super."io-reactive"; 4424 "io-region" = dontDistribute super."io-region"; 4425 "io-storage" = dontDistribute super."io-storage"; 4426 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4427 "io-streams-http" = dontDistribute super."io-streams-http"; 4428 "io-throttle" = dontDistribute super."io-throttle"; 4429 "ioctl" = dontDistribute super."ioctl"; ··· 5682 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5683 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5684 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5685 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5686 "persistent-map" = dontDistribute super."persistent-map"; 5687 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5688 "persistent-odbc" = dontDistribute super."persistent-odbc"; 5689 + "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_1"; 5690 "persistent-protobuf" = dontDistribute super."persistent-protobuf"; 5691 "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; 5692 "persistent-redis" = dontDistribute super."persistent-redis"; ··· 5916 "prof2dot" = dontDistribute super."prof2dot"; 5917 "prof2pretty" = dontDistribute super."prof2pretty"; 5918 "profiteur" = dontDistribute super."profiteur"; 5919 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5920 "progress" = dontDistribute super."progress"; 5921 "progressbar" = dontDistribute super."progressbar"; 5922 "progression" = dontDistribute super."progression"; ··· 6331 "rspp" = dontDistribute super."rspp"; 6332 "rss" = dontDistribute super."rss"; 6333 "rss2irc" = dontDistribute super."rss2irc"; 6334 + "rtcm" = dontDistribute super."rtcm"; 6335 "rtld" = dontDistribute super."rtld"; 6336 "rtlsdr" = dontDistribute super."rtlsdr"; 6337 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7906 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7907 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7908 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7909 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7910 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7911 "yesod-comments" = dontDistribute super."yesod-comments"; 7912 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7913 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7914 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7915 "yesod-crud" = dontDistribute super."yesod-crud"; 7916 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7917 "yesod-csp" = dontDistribute super."yesod-csp"; 7918 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7919 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7920 "yesod-examples" = dontDistribute super."yesod-examples"; 7921 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7922 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7923 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7924 "yesod-json" = dontDistribute super."yesod-json";
+12
pkgs/development/haskell-modules/configuration-lts-3.15.nix
··· 1096 "aeson-casing" = dontDistribute super."aeson-casing"; 1097 "aeson-diff" = dontDistribute super."aeson-diff"; 1098 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1099 "aeson-lens" = dontDistribute super."aeson-lens"; 1100 "aeson-native" = dontDistribute super."aeson-native"; 1101 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1284 "archlinux-web" = dontDistribute super."archlinux-web"; 1285 "archnews" = dontDistribute super."archnews"; 1286 "arff" = dontDistribute super."arff"; 1287 "argon" = dontDistribute super."argon"; 1288 "argparser" = dontDistribute super."argparser"; 1289 "arguedit" = dontDistribute super."arguedit"; ··· 2425 "digit" = dontDistribute super."digit"; 2426 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2427 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2428 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2429 "dingo-core" = dontDistribute super."dingo-core"; 2430 "dingo-example" = dontDistribute super."dingo-example"; ··· 2677 "error-loc" = dontDistribute super."error-loc"; 2678 "error-location" = dontDistribute super."error-location"; 2679 "error-message" = dontDistribute super."error-message"; 2680 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2681 "ersatz" = dontDistribute super."ersatz"; 2682 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4413 "io-reactive" = dontDistribute super."io-reactive"; 4414 "io-region" = dontDistribute super."io-region"; 4415 "io-storage" = dontDistribute super."io-storage"; 4416 "io-streams-http" = dontDistribute super."io-streams-http"; 4417 "io-throttle" = dontDistribute super."io-throttle"; 4418 "ioctl" = dontDistribute super."ioctl"; ··· 5670 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5671 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5672 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5673 "persistent-map" = dontDistribute super."persistent-map"; 5674 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5675 "persistent-odbc" = dontDistribute super."persistent-odbc"; 5676 "persistent-protobuf" = dontDistribute super."persistent-protobuf"; 5677 "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; 5678 "persistent-redis" = dontDistribute super."persistent-redis"; ··· 5902 "prof2dot" = dontDistribute super."prof2dot"; 5903 "prof2pretty" = dontDistribute super."prof2pretty"; 5904 "profiteur" = dontDistribute super."profiteur"; 5905 "progress" = dontDistribute super."progress"; 5906 "progressbar" = dontDistribute super."progressbar"; 5907 "progression" = dontDistribute super."progression"; ··· 6315 "rspp" = dontDistribute super."rspp"; 6316 "rss" = dontDistribute super."rss"; 6317 "rss2irc" = dontDistribute super."rss2irc"; 6318 "rtld" = dontDistribute super."rtld"; 6319 "rtlsdr" = dontDistribute super."rtlsdr"; 6320 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7884 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7885 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7886 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7887 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7888 "yesod-comments" = dontDistribute super."yesod-comments"; 7889 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7890 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7891 "yesod-crud" = dontDistribute super."yesod-crud"; 7892 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7893 "yesod-csp" = dontDistribute super."yesod-csp"; 7894 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7895 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7896 "yesod-examples" = dontDistribute super."yesod-examples"; 7897 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7898 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7899 "yesod-json" = dontDistribute super."yesod-json";
··· 1096 "aeson-casing" = dontDistribute super."aeson-casing"; 1097 "aeson-diff" = dontDistribute super."aeson-diff"; 1098 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1099 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1100 "aeson-lens" = dontDistribute super."aeson-lens"; 1101 "aeson-native" = dontDistribute super."aeson-native"; 1102 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1285 "archlinux-web" = dontDistribute super."archlinux-web"; 1286 "archnews" = dontDistribute super."archnews"; 1287 "arff" = dontDistribute super."arff"; 1288 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1289 "argon" = dontDistribute super."argon"; 1290 "argparser" = dontDistribute super."argparser"; 1291 "arguedit" = dontDistribute super."arguedit"; ··· 2427 "digit" = dontDistribute super."digit"; 2428 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2429 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2430 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2431 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2432 "dingo-core" = dontDistribute super."dingo-core"; 2433 "dingo-example" = dontDistribute super."dingo-example"; ··· 2680 "error-loc" = dontDistribute super."error-loc"; 2681 "error-location" = dontDistribute super."error-location"; 2682 "error-message" = dontDistribute super."error-message"; 2683 + "error-util" = dontDistribute super."error-util"; 2684 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2685 "ersatz" = dontDistribute super."ersatz"; 2686 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4417 "io-reactive" = dontDistribute super."io-reactive"; 4418 "io-region" = dontDistribute super."io-region"; 4419 "io-storage" = dontDistribute super."io-storage"; 4420 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4421 "io-streams-http" = dontDistribute super."io-streams-http"; 4422 "io-throttle" = dontDistribute super."io-throttle"; 4423 "ioctl" = dontDistribute super."ioctl"; ··· 5675 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5676 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5677 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5678 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5679 "persistent-map" = dontDistribute super."persistent-map"; 5680 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5681 "persistent-odbc" = dontDistribute super."persistent-odbc"; 5682 + "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_1"; 5683 "persistent-protobuf" = dontDistribute super."persistent-protobuf"; 5684 "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; 5685 "persistent-redis" = dontDistribute super."persistent-redis"; ··· 5909 "prof2dot" = dontDistribute super."prof2dot"; 5910 "prof2pretty" = dontDistribute super."prof2pretty"; 5911 "profiteur" = dontDistribute super."profiteur"; 5912 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5913 "progress" = dontDistribute super."progress"; 5914 "progressbar" = dontDistribute super."progressbar"; 5915 "progression" = dontDistribute super."progression"; ··· 6323 "rspp" = dontDistribute super."rspp"; 6324 "rss" = dontDistribute super."rss"; 6325 "rss2irc" = dontDistribute super."rss2irc"; 6326 + "rtcm" = dontDistribute super."rtcm"; 6327 "rtld" = dontDistribute super."rtld"; 6328 "rtlsdr" = dontDistribute super."rtlsdr"; 6329 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7893 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7894 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7895 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7896 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7897 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7898 "yesod-comments" = dontDistribute super."yesod-comments"; 7899 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7900 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7901 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7902 "yesod-crud" = dontDistribute super."yesod-crud"; 7903 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7904 "yesod-csp" = dontDistribute super."yesod-csp"; 7905 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7906 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7907 "yesod-examples" = dontDistribute super."yesod-examples"; 7908 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7909 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7910 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7911 "yesod-json" = dontDistribute super."yesod-json";
+12
pkgs/development/haskell-modules/configuration-lts-3.16.nix
··· 1095 "aeson-casing" = dontDistribute super."aeson-casing"; 1096 "aeson-diff" = dontDistribute super."aeson-diff"; 1097 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1098 "aeson-lens" = dontDistribute super."aeson-lens"; 1099 "aeson-native" = dontDistribute super."aeson-native"; 1100 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1283 "archlinux-web" = dontDistribute super."archlinux-web"; 1284 "archnews" = dontDistribute super."archnews"; 1285 "arff" = dontDistribute super."arff"; 1286 "argon" = dontDistribute super."argon"; 1287 "argparser" = dontDistribute super."argparser"; 1288 "arguedit" = dontDistribute super."arguedit"; ··· 2423 "digit" = dontDistribute super."digit"; 2424 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2425 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2426 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2427 "dingo-core" = dontDistribute super."dingo-core"; 2428 "dingo-example" = dontDistribute super."dingo-example"; ··· 2675 "error-loc" = dontDistribute super."error-loc"; 2676 "error-location" = dontDistribute super."error-location"; 2677 "error-message" = dontDistribute super."error-message"; 2678 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2679 "ersatz" = dontDistribute super."ersatz"; 2680 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4409 "io-reactive" = dontDistribute super."io-reactive"; 4410 "io-region" = dontDistribute super."io-region"; 4411 "io-storage" = dontDistribute super."io-storage"; 4412 "io-streams-http" = dontDistribute super."io-streams-http"; 4413 "io-throttle" = dontDistribute super."io-throttle"; 4414 "ioctl" = dontDistribute super."ioctl"; ··· 5662 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5663 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5664 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5665 "persistent-map" = dontDistribute super."persistent-map"; 5666 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5667 "persistent-odbc" = dontDistribute super."persistent-odbc"; 5668 "persistent-protobuf" = dontDistribute super."persistent-protobuf"; 5669 "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; 5670 "persistent-redis" = dontDistribute super."persistent-redis"; ··· 5893 "prof2dot" = dontDistribute super."prof2dot"; 5894 "prof2pretty" = dontDistribute super."prof2pretty"; 5895 "profiteur" = dontDistribute super."profiteur"; 5896 "progress" = dontDistribute super."progress"; 5897 "progressbar" = dontDistribute super."progressbar"; 5898 "progression" = dontDistribute super."progression"; ··· 6304 "rspp" = dontDistribute super."rspp"; 6305 "rss" = dontDistribute super."rss"; 6306 "rss2irc" = dontDistribute super."rss2irc"; 6307 "rtld" = dontDistribute super."rtld"; 6308 "rtlsdr" = dontDistribute super."rtlsdr"; 6309 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7867 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7868 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7869 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7870 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7871 "yesod-comments" = dontDistribute super."yesod-comments"; 7872 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7873 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7874 "yesod-crud" = dontDistribute super."yesod-crud"; 7875 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7876 "yesod-csp" = dontDistribute super."yesod-csp"; 7877 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7878 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7879 "yesod-examples" = dontDistribute super."yesod-examples"; 7880 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7881 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7882 "yesod-json" = dontDistribute super."yesod-json";
··· 1095 "aeson-casing" = dontDistribute super."aeson-casing"; 1096 "aeson-diff" = dontDistribute super."aeson-diff"; 1097 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1098 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1099 "aeson-lens" = dontDistribute super."aeson-lens"; 1100 "aeson-native" = dontDistribute super."aeson-native"; 1101 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1284 "archlinux-web" = dontDistribute super."archlinux-web"; 1285 "archnews" = dontDistribute super."archnews"; 1286 "arff" = dontDistribute super."arff"; 1287 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1288 "argon" = dontDistribute super."argon"; 1289 "argparser" = dontDistribute super."argparser"; 1290 "arguedit" = dontDistribute super."arguedit"; ··· 2425 "digit" = dontDistribute super."digit"; 2426 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2427 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2428 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2429 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2430 "dingo-core" = dontDistribute super."dingo-core"; 2431 "dingo-example" = dontDistribute super."dingo-example"; ··· 2678 "error-loc" = dontDistribute super."error-loc"; 2679 "error-location" = dontDistribute super."error-location"; 2680 "error-message" = dontDistribute super."error-message"; 2681 + "error-util" = dontDistribute super."error-util"; 2682 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2683 "ersatz" = dontDistribute super."ersatz"; 2684 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4413 "io-reactive" = dontDistribute super."io-reactive"; 4414 "io-region" = dontDistribute super."io-region"; 4415 "io-storage" = dontDistribute super."io-storage"; 4416 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4417 "io-streams-http" = dontDistribute super."io-streams-http"; 4418 "io-throttle" = dontDistribute super."io-throttle"; 4419 "ioctl" = dontDistribute super."ioctl"; ··· 5667 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5668 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5669 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5670 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5671 "persistent-map" = dontDistribute super."persistent-map"; 5672 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5673 "persistent-odbc" = dontDistribute super."persistent-odbc"; 5674 + "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_1"; 5675 "persistent-protobuf" = dontDistribute super."persistent-protobuf"; 5676 "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; 5677 "persistent-redis" = dontDistribute super."persistent-redis"; ··· 5900 "prof2dot" = dontDistribute super."prof2dot"; 5901 "prof2pretty" = dontDistribute super."prof2pretty"; 5902 "profiteur" = dontDistribute super."profiteur"; 5903 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5904 "progress" = dontDistribute super."progress"; 5905 "progressbar" = dontDistribute super."progressbar"; 5906 "progression" = dontDistribute super."progression"; ··· 6312 "rspp" = dontDistribute super."rspp"; 6313 "rss" = dontDistribute super."rss"; 6314 "rss2irc" = dontDistribute super."rss2irc"; 6315 + "rtcm" = dontDistribute super."rtcm"; 6316 "rtld" = dontDistribute super."rtld"; 6317 "rtlsdr" = dontDistribute super."rtlsdr"; 6318 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7876 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7877 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7878 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7879 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7880 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7881 "yesod-comments" = dontDistribute super."yesod-comments"; 7882 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7883 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7884 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7885 "yesod-crud" = dontDistribute super."yesod-crud"; 7886 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7887 "yesod-csp" = dontDistribute super."yesod-csp"; 7888 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7889 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7890 "yesod-examples" = dontDistribute super."yesod-examples"; 7891 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7892 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7893 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7894 "yesod-json" = dontDistribute super."yesod-json";
+9
pkgs/development/haskell-modules/configuration-lts-3.2.nix
··· 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 "aeson-lens" = dontDistribute super."aeson-lens"; 1112 "aeson-native" = dontDistribute super."aeson-native"; 1113 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1299 "archlinux-web" = dontDistribute super."archlinux-web"; 1300 "archnews" = dontDistribute super."archnews"; 1301 "arff" = dontDistribute super."arff"; 1302 "argon" = dontDistribute super."argon"; 1303 "argparser" = dontDistribute super."argparser"; 1304 "arguedit" = dontDistribute super."arguedit"; ··· 2479 "digit" = dontDistribute super."digit"; 2480 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2481 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2482 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2483 "dingo-core" = dontDistribute super."dingo-core"; 2484 "dingo-example" = dontDistribute super."dingo-example"; ··· 2736 "error-loc" = dontDistribute super."error-loc"; 2737 "error-location" = dontDistribute super."error-location"; 2738 "error-message" = dontDistribute super."error-message"; 2739 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2740 "errors" = doDistribute super."errors_2_0_0"; 2741 "ersatz" = dontDistribute super."ersatz"; ··· 4515 "io-reactive" = dontDistribute super."io-reactive"; 4516 "io-region" = dontDistribute super."io-region"; 4517 "io-storage" = dontDistribute super."io-storage"; 4518 "io-streams-http" = dontDistribute super."io-streams-http"; 4519 "io-throttle" = dontDistribute super."io-throttle"; 4520 "ioctl" = dontDistribute super."ioctl"; ··· 5799 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5800 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5801 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5802 "persistent-map" = dontDistribute super."persistent-map"; 5803 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5804 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6044 "prof2dot" = dontDistribute super."prof2dot"; 6045 "prof2pretty" = dontDistribute super."prof2pretty"; 6046 "profiteur" = dontDistribute super."profiteur"; 6047 "progress" = dontDistribute super."progress"; 6048 "progressbar" = dontDistribute super."progressbar"; 6049 "progression" = dontDistribute super."progression"; ··· 6462 "rspp" = dontDistribute super."rspp"; 6463 "rss" = dontDistribute super."rss"; 6464 "rss2irc" = dontDistribute super."rss2irc"; 6465 "rtld" = dontDistribute super."rtld"; 6466 "rtlsdr" = dontDistribute super."rtlsdr"; 6467 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8089 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8090 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8091 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8092 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8093 "yesod-comments" = dontDistribute super."yesod-comments"; 8094 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
··· 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1112 "aeson-lens" = dontDistribute super."aeson-lens"; 1113 "aeson-native" = dontDistribute super."aeson-native"; 1114 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1300 "archlinux-web" = dontDistribute super."archlinux-web"; 1301 "archnews" = dontDistribute super."archnews"; 1302 "arff" = dontDistribute super."arff"; 1303 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1304 "argon" = dontDistribute super."argon"; 1305 "argparser" = dontDistribute super."argparser"; 1306 "arguedit" = dontDistribute super."arguedit"; ··· 2481 "digit" = dontDistribute super."digit"; 2482 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2483 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2484 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2485 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2486 "dingo-core" = dontDistribute super."dingo-core"; 2487 "dingo-example" = dontDistribute super."dingo-example"; ··· 2739 "error-loc" = dontDistribute super."error-loc"; 2740 "error-location" = dontDistribute super."error-location"; 2741 "error-message" = dontDistribute super."error-message"; 2742 + "error-util" = dontDistribute super."error-util"; 2743 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2744 "errors" = doDistribute super."errors_2_0_0"; 2745 "ersatz" = dontDistribute super."ersatz"; ··· 4519 "io-reactive" = dontDistribute super."io-reactive"; 4520 "io-region" = dontDistribute super."io-region"; 4521 "io-storage" = dontDistribute super."io-storage"; 4522 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4523 "io-streams-http" = dontDistribute super."io-streams-http"; 4524 "io-throttle" = dontDistribute super."io-throttle"; 4525 "ioctl" = dontDistribute super."ioctl"; ··· 5804 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5805 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5806 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5807 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5808 "persistent-map" = dontDistribute super."persistent-map"; 5809 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5810 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6050 "prof2dot" = dontDistribute super."prof2dot"; 6051 "prof2pretty" = dontDistribute super."prof2pretty"; 6052 "profiteur" = dontDistribute super."profiteur"; 6053 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6054 "progress" = dontDistribute super."progress"; 6055 "progressbar" = dontDistribute super."progressbar"; 6056 "progression" = dontDistribute super."progression"; ··· 6469 "rspp" = dontDistribute super."rspp"; 6470 "rss" = dontDistribute super."rss"; 6471 "rss2irc" = dontDistribute super."rss2irc"; 6472 + "rtcm" = dontDistribute super."rtcm"; 6473 "rtld" = dontDistribute super."rtld"; 6474 "rtlsdr" = dontDistribute super."rtlsdr"; 6475 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8097 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8098 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8099 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8100 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8101 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8102 "yesod-comments" = dontDistribute super."yesod-comments"; 8103 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.3.nix
··· 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 "aeson-lens" = dontDistribute super."aeson-lens"; 1112 "aeson-native" = dontDistribute super."aeson-native"; 1113 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1298 "archlinux-web" = dontDistribute super."archlinux-web"; 1299 "archnews" = dontDistribute super."archnews"; 1300 "arff" = dontDistribute super."arff"; 1301 "argon" = dontDistribute super."argon"; 1302 "argparser" = dontDistribute super."argparser"; 1303 "arguedit" = dontDistribute super."arguedit"; ··· 2475 "digit" = dontDistribute super."digit"; 2476 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2477 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2478 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2479 "dingo-core" = dontDistribute super."dingo-core"; 2480 "dingo-example" = dontDistribute super."dingo-example"; ··· 2732 "error-loc" = dontDistribute super."error-loc"; 2733 "error-location" = dontDistribute super."error-location"; 2734 "error-message" = dontDistribute super."error-message"; 2735 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2736 "errors" = doDistribute super."errors_2_0_0"; 2737 "ersatz" = dontDistribute super."ersatz"; ··· 4508 "io-reactive" = dontDistribute super."io-reactive"; 4509 "io-region" = dontDistribute super."io-region"; 4510 "io-storage" = dontDistribute super."io-storage"; 4511 "io-streams-http" = dontDistribute super."io-streams-http"; 4512 "io-throttle" = dontDistribute super."io-throttle"; 4513 "ioctl" = dontDistribute super."ioctl"; ··· 5791 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5792 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5793 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5794 "persistent-map" = dontDistribute super."persistent-map"; 5795 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5796 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6036 "prof2dot" = dontDistribute super."prof2dot"; 6037 "prof2pretty" = dontDistribute super."prof2pretty"; 6038 "profiteur" = dontDistribute super."profiteur"; 6039 "progress" = dontDistribute super."progress"; 6040 "progressbar" = dontDistribute super."progressbar"; 6041 "progression" = dontDistribute super."progression"; ··· 6453 "rspp" = dontDistribute super."rspp"; 6454 "rss" = dontDistribute super."rss"; 6455 "rss2irc" = dontDistribute super."rss2irc"; 6456 "rtld" = dontDistribute super."rtld"; 6457 "rtlsdr" = dontDistribute super."rtlsdr"; 6458 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8076 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8077 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8078 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8079 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8080 "yesod-comments" = dontDistribute super."yesod-comments"; 8081 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
··· 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1112 "aeson-lens" = dontDistribute super."aeson-lens"; 1113 "aeson-native" = dontDistribute super."aeson-native"; 1114 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1299 "archlinux-web" = dontDistribute super."archlinux-web"; 1300 "archnews" = dontDistribute super."archnews"; 1301 "arff" = dontDistribute super."arff"; 1302 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1303 "argon" = dontDistribute super."argon"; 1304 "argparser" = dontDistribute super."argparser"; 1305 "arguedit" = dontDistribute super."arguedit"; ··· 2477 "digit" = dontDistribute super."digit"; 2478 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2479 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2480 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2481 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2482 "dingo-core" = dontDistribute super."dingo-core"; 2483 "dingo-example" = dontDistribute super."dingo-example"; ··· 2735 "error-loc" = dontDistribute super."error-loc"; 2736 "error-location" = dontDistribute super."error-location"; 2737 "error-message" = dontDistribute super."error-message"; 2738 + "error-util" = dontDistribute super."error-util"; 2739 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2740 "errors" = doDistribute super."errors_2_0_0"; 2741 "ersatz" = dontDistribute super."ersatz"; ··· 4512 "io-reactive" = dontDistribute super."io-reactive"; 4513 "io-region" = dontDistribute super."io-region"; 4514 "io-storage" = dontDistribute super."io-storage"; 4515 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4516 "io-streams-http" = dontDistribute super."io-streams-http"; 4517 "io-throttle" = dontDistribute super."io-throttle"; 4518 "ioctl" = dontDistribute super."ioctl"; ··· 5796 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5797 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5798 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5799 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5800 "persistent-map" = dontDistribute super."persistent-map"; 5801 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5802 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6042 "prof2dot" = dontDistribute super."prof2dot"; 6043 "prof2pretty" = dontDistribute super."prof2pretty"; 6044 "profiteur" = dontDistribute super."profiteur"; 6045 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6046 "progress" = dontDistribute super."progress"; 6047 "progressbar" = dontDistribute super."progressbar"; 6048 "progression" = dontDistribute super."progression"; ··· 6460 "rspp" = dontDistribute super."rspp"; 6461 "rss" = dontDistribute super."rss"; 6462 "rss2irc" = dontDistribute super."rss2irc"; 6463 + "rtcm" = dontDistribute super."rtcm"; 6464 "rtld" = dontDistribute super."rtld"; 6465 "rtlsdr" = dontDistribute super."rtlsdr"; 6466 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8084 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8085 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8086 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8087 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8088 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8089 "yesod-comments" = dontDistribute super."yesod-comments"; 8090 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.4.nix
··· 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 "aeson-lens" = dontDistribute super."aeson-lens"; 1112 "aeson-native" = dontDistribute super."aeson-native"; 1113 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1298 "archlinux-web" = dontDistribute super."archlinux-web"; 1299 "archnews" = dontDistribute super."archnews"; 1300 "arff" = dontDistribute super."arff"; 1301 "argon" = dontDistribute super."argon"; 1302 "argparser" = dontDistribute super."argparser"; 1303 "arguedit" = dontDistribute super."arguedit"; ··· 2474 "digit" = dontDistribute super."digit"; 2475 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2476 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2477 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2478 "dingo-core" = dontDistribute super."dingo-core"; 2479 "dingo-example" = dontDistribute super."dingo-example"; ··· 2731 "error-loc" = dontDistribute super."error-loc"; 2732 "error-location" = dontDistribute super."error-location"; 2733 "error-message" = dontDistribute super."error-message"; 2734 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2735 "errors" = doDistribute super."errors_2_0_0"; 2736 "ersatz" = dontDistribute super."ersatz"; ··· 4507 "io-reactive" = dontDistribute super."io-reactive"; 4508 "io-region" = dontDistribute super."io-region"; 4509 "io-storage" = dontDistribute super."io-storage"; 4510 "io-streams-http" = dontDistribute super."io-streams-http"; 4511 "io-throttle" = dontDistribute super."io-throttle"; 4512 "ioctl" = dontDistribute super."ioctl"; ··· 5790 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5791 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5792 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5793 "persistent-map" = dontDistribute super."persistent-map"; 5794 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5795 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6035 "prof2dot" = dontDistribute super."prof2dot"; 6036 "prof2pretty" = dontDistribute super."prof2pretty"; 6037 "profiteur" = dontDistribute super."profiteur"; 6038 "progress" = dontDistribute super."progress"; 6039 "progressbar" = dontDistribute super."progressbar"; 6040 "progression" = dontDistribute super."progression"; ··· 6452 "rspp" = dontDistribute super."rspp"; 6453 "rss" = dontDistribute super."rss"; 6454 "rss2irc" = dontDistribute super."rss2irc"; 6455 "rtld" = dontDistribute super."rtld"; 6456 "rtlsdr" = dontDistribute super."rtlsdr"; 6457 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8072 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8073 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8074 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8075 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8076 "yesod-comments" = dontDistribute super."yesod-comments"; 8077 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
··· 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1112 "aeson-lens" = dontDistribute super."aeson-lens"; 1113 "aeson-native" = dontDistribute super."aeson-native"; 1114 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1299 "archlinux-web" = dontDistribute super."archlinux-web"; 1300 "archnews" = dontDistribute super."archnews"; 1301 "arff" = dontDistribute super."arff"; 1302 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1303 "argon" = dontDistribute super."argon"; 1304 "argparser" = dontDistribute super."argparser"; 1305 "arguedit" = dontDistribute super."arguedit"; ··· 2476 "digit" = dontDistribute super."digit"; 2477 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2478 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2479 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2480 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2481 "dingo-core" = dontDistribute super."dingo-core"; 2482 "dingo-example" = dontDistribute super."dingo-example"; ··· 2734 "error-loc" = dontDistribute super."error-loc"; 2735 "error-location" = dontDistribute super."error-location"; 2736 "error-message" = dontDistribute super."error-message"; 2737 + "error-util" = dontDistribute super."error-util"; 2738 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2739 "errors" = doDistribute super."errors_2_0_0"; 2740 "ersatz" = dontDistribute super."ersatz"; ··· 4511 "io-reactive" = dontDistribute super."io-reactive"; 4512 "io-region" = dontDistribute super."io-region"; 4513 "io-storage" = dontDistribute super."io-storage"; 4514 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4515 "io-streams-http" = dontDistribute super."io-streams-http"; 4516 "io-throttle" = dontDistribute super."io-throttle"; 4517 "ioctl" = dontDistribute super."ioctl"; ··· 5795 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5796 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5797 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5798 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5799 "persistent-map" = dontDistribute super."persistent-map"; 5800 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5801 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6041 "prof2dot" = dontDistribute super."prof2dot"; 6042 "prof2pretty" = dontDistribute super."prof2pretty"; 6043 "profiteur" = dontDistribute super."profiteur"; 6044 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6045 "progress" = dontDistribute super."progress"; 6046 "progressbar" = dontDistribute super."progressbar"; 6047 "progression" = dontDistribute super."progression"; ··· 6459 "rspp" = dontDistribute super."rspp"; 6460 "rss" = dontDistribute super."rss"; 6461 "rss2irc" = dontDistribute super."rss2irc"; 6462 + "rtcm" = dontDistribute super."rtcm"; 6463 "rtld" = dontDistribute super."rtld"; 6464 "rtlsdr" = dontDistribute super."rtlsdr"; 6465 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8080 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8081 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8082 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8083 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8084 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8085 "yesod-comments" = dontDistribute super."yesod-comments"; 8086 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.5.nix
··· 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 "aeson-lens" = dontDistribute super."aeson-lens"; 1112 "aeson-native" = dontDistribute super."aeson-native"; 1113 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1297 "archlinux-web" = dontDistribute super."archlinux-web"; 1298 "archnews" = dontDistribute super."archnews"; 1299 "arff" = dontDistribute super."arff"; 1300 "argon" = dontDistribute super."argon"; 1301 "argparser" = dontDistribute super."argparser"; 1302 "arguedit" = dontDistribute super."arguedit"; ··· 2471 "digit" = dontDistribute super."digit"; 2472 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2473 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2474 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2475 "dingo-core" = dontDistribute super."dingo-core"; 2476 "dingo-example" = dontDistribute super."dingo-example"; ··· 2728 "error-loc" = dontDistribute super."error-loc"; 2729 "error-location" = dontDistribute super."error-location"; 2730 "error-message" = dontDistribute super."error-message"; 2731 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2732 "errors" = doDistribute super."errors_2_0_0"; 2733 "ersatz" = dontDistribute super."ersatz"; ··· 4496 "io-reactive" = dontDistribute super."io-reactive"; 4497 "io-region" = dontDistribute super."io-region"; 4498 "io-storage" = dontDistribute super."io-storage"; 4499 "io-streams-http" = dontDistribute super."io-streams-http"; 4500 "io-throttle" = dontDistribute super."io-throttle"; 4501 "ioctl" = dontDistribute super."ioctl"; ··· 5776 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5777 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5778 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5779 "persistent-map" = dontDistribute super."persistent-map"; 5780 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5781 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6018 "prof2dot" = dontDistribute super."prof2dot"; 6019 "prof2pretty" = dontDistribute super."prof2pretty"; 6020 "profiteur" = dontDistribute super."profiteur"; 6021 "progress" = dontDistribute super."progress"; 6022 "progressbar" = dontDistribute super."progressbar"; 6023 "progression" = dontDistribute super."progression"; ··· 6435 "rspp" = dontDistribute super."rspp"; 6436 "rss" = dontDistribute super."rss"; 6437 "rss2irc" = dontDistribute super."rss2irc"; 6438 "rtld" = dontDistribute super."rtld"; 6439 "rtlsdr" = dontDistribute super."rtlsdr"; 6440 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8049 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8050 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8051 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8052 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8053 "yesod-comments" = dontDistribute super."yesod-comments"; 8054 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
··· 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1112 "aeson-lens" = dontDistribute super."aeson-lens"; 1113 "aeson-native" = dontDistribute super."aeson-native"; 1114 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1298 "archlinux-web" = dontDistribute super."archlinux-web"; 1299 "archnews" = dontDistribute super."archnews"; 1300 "arff" = dontDistribute super."arff"; 1301 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1302 "argon" = dontDistribute super."argon"; 1303 "argparser" = dontDistribute super."argparser"; 1304 "arguedit" = dontDistribute super."arguedit"; ··· 2473 "digit" = dontDistribute super."digit"; 2474 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2475 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2476 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2477 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2478 "dingo-core" = dontDistribute super."dingo-core"; 2479 "dingo-example" = dontDistribute super."dingo-example"; ··· 2731 "error-loc" = dontDistribute super."error-loc"; 2732 "error-location" = dontDistribute super."error-location"; 2733 "error-message" = dontDistribute super."error-message"; 2734 + "error-util" = dontDistribute super."error-util"; 2735 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2736 "errors" = doDistribute super."errors_2_0_0"; 2737 "ersatz" = dontDistribute super."ersatz"; ··· 4500 "io-reactive" = dontDistribute super."io-reactive"; 4501 "io-region" = dontDistribute super."io-region"; 4502 "io-storage" = dontDistribute super."io-storage"; 4503 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4504 "io-streams-http" = dontDistribute super."io-streams-http"; 4505 "io-throttle" = dontDistribute super."io-throttle"; 4506 "ioctl" = dontDistribute super."ioctl"; ··· 5781 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5782 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5783 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5784 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5785 "persistent-map" = dontDistribute super."persistent-map"; 5786 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5787 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6024 "prof2dot" = dontDistribute super."prof2dot"; 6025 "prof2pretty" = dontDistribute super."prof2pretty"; 6026 "profiteur" = dontDistribute super."profiteur"; 6027 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6028 "progress" = dontDistribute super."progress"; 6029 "progressbar" = dontDistribute super."progressbar"; 6030 "progression" = dontDistribute super."progression"; ··· 6442 "rspp" = dontDistribute super."rspp"; 6443 "rss" = dontDistribute super."rss"; 6444 "rss2irc" = dontDistribute super."rss2irc"; 6445 + "rtcm" = dontDistribute super."rtcm"; 6446 "rtld" = dontDistribute super."rtld"; 6447 "rtlsdr" = dontDistribute super."rtlsdr"; 6448 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8057 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8058 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8059 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8060 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8061 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8062 "yesod-comments" = dontDistribute super."yesod-comments"; 8063 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.6.nix
··· 1107 "aeson-diff" = dontDistribute super."aeson-diff"; 1108 "aeson-extra" = dontDistribute super."aeson-extra"; 1109 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1110 "aeson-lens" = dontDistribute super."aeson-lens"; 1111 "aeson-native" = dontDistribute super."aeson-native"; 1112 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1296 "archlinux-web" = dontDistribute super."archlinux-web"; 1297 "archnews" = dontDistribute super."archnews"; 1298 "arff" = dontDistribute super."arff"; 1299 "argon" = dontDistribute super."argon"; 1300 "argparser" = dontDistribute super."argparser"; 1301 "arguedit" = dontDistribute super."arguedit"; ··· 2469 "digit" = dontDistribute super."digit"; 2470 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2471 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2472 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2473 "dingo-core" = dontDistribute super."dingo-core"; 2474 "dingo-example" = dontDistribute super."dingo-example"; ··· 2726 "error-loc" = dontDistribute super."error-loc"; 2727 "error-location" = dontDistribute super."error-location"; 2728 "error-message" = dontDistribute super."error-message"; 2729 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2730 "ersatz" = dontDistribute super."ersatz"; 2731 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4487 "io-reactive" = dontDistribute super."io-reactive"; 4488 "io-region" = dontDistribute super."io-region"; 4489 "io-storage" = dontDistribute super."io-storage"; 4490 "io-streams-http" = dontDistribute super."io-streams-http"; 4491 "io-throttle" = dontDistribute super."io-throttle"; 4492 "ioctl" = dontDistribute super."ioctl"; ··· 5763 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5764 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5765 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5766 "persistent-map" = dontDistribute super."persistent-map"; 5767 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5768 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6004 "prof2dot" = dontDistribute super."prof2dot"; 6005 "prof2pretty" = dontDistribute super."prof2pretty"; 6006 "profiteur" = dontDistribute super."profiteur"; 6007 "progress" = dontDistribute super."progress"; 6008 "progressbar" = dontDistribute super."progressbar"; 6009 "progression" = dontDistribute super."progression"; ··· 6421 "rspp" = dontDistribute super."rspp"; 6422 "rss" = dontDistribute super."rss"; 6423 "rss2irc" = dontDistribute super."rss2irc"; 6424 "rtld" = dontDistribute super."rtld"; 6425 "rtlsdr" = dontDistribute super."rtlsdr"; 6426 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8032 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8033 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8034 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8035 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8036 "yesod-comments" = dontDistribute super."yesod-comments"; 8037 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
··· 1107 "aeson-diff" = dontDistribute super."aeson-diff"; 1108 "aeson-extra" = dontDistribute super."aeson-extra"; 1109 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1110 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1111 "aeson-lens" = dontDistribute super."aeson-lens"; 1112 "aeson-native" = dontDistribute super."aeson-native"; 1113 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1297 "archlinux-web" = dontDistribute super."archlinux-web"; 1298 "archnews" = dontDistribute super."archnews"; 1299 "arff" = dontDistribute super."arff"; 1300 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1301 "argon" = dontDistribute super."argon"; 1302 "argparser" = dontDistribute super."argparser"; 1303 "arguedit" = dontDistribute super."arguedit"; ··· 2471 "digit" = dontDistribute super."digit"; 2472 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2473 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2474 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2475 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2476 "dingo-core" = dontDistribute super."dingo-core"; 2477 "dingo-example" = dontDistribute super."dingo-example"; ··· 2729 "error-loc" = dontDistribute super."error-loc"; 2730 "error-location" = dontDistribute super."error-location"; 2731 "error-message" = dontDistribute super."error-message"; 2732 + "error-util" = dontDistribute super."error-util"; 2733 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2734 "ersatz" = dontDistribute super."ersatz"; 2735 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4491 "io-reactive" = dontDistribute super."io-reactive"; 4492 "io-region" = dontDistribute super."io-region"; 4493 "io-storage" = dontDistribute super."io-storage"; 4494 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4495 "io-streams-http" = dontDistribute super."io-streams-http"; 4496 "io-throttle" = dontDistribute super."io-throttle"; 4497 "ioctl" = dontDistribute super."ioctl"; ··· 5768 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5769 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5770 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5771 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5772 "persistent-map" = dontDistribute super."persistent-map"; 5773 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5774 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6010 "prof2dot" = dontDistribute super."prof2dot"; 6011 "prof2pretty" = dontDistribute super."prof2pretty"; 6012 "profiteur" = dontDistribute super."profiteur"; 6013 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6014 "progress" = dontDistribute super."progress"; 6015 "progressbar" = dontDistribute super."progressbar"; 6016 "progression" = dontDistribute super."progression"; ··· 6428 "rspp" = dontDistribute super."rspp"; 6429 "rss" = dontDistribute super."rss"; 6430 "rss2irc" = dontDistribute super."rss2irc"; 6431 + "rtcm" = dontDistribute super."rtcm"; 6432 "rtld" = dontDistribute super."rtld"; 6433 "rtlsdr" = dontDistribute super."rtlsdr"; 6434 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8040 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8041 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8042 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8043 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8044 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8045 "yesod-comments" = dontDistribute super."yesod-comments"; 8046 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.7.nix
··· 1106 "aeson-diff" = dontDistribute super."aeson-diff"; 1107 "aeson-extra" = dontDistribute super."aeson-extra"; 1108 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1109 "aeson-lens" = dontDistribute super."aeson-lens"; 1110 "aeson-native" = dontDistribute super."aeson-native"; 1111 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1294 "archlinux-web" = dontDistribute super."archlinux-web"; 1295 "archnews" = dontDistribute super."archnews"; 1296 "arff" = dontDistribute super."arff"; 1297 "argon" = dontDistribute super."argon"; 1298 "argparser" = dontDistribute super."argparser"; 1299 "arguedit" = dontDistribute super."arguedit"; ··· 2462 "digit" = dontDistribute super."digit"; 2463 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2464 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2465 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2466 "dingo-core" = dontDistribute super."dingo-core"; 2467 "dingo-example" = dontDistribute super."dingo-example"; ··· 2718 "error-loc" = dontDistribute super."error-loc"; 2719 "error-location" = dontDistribute super."error-location"; 2720 "error-message" = dontDistribute super."error-message"; 2721 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2722 "ersatz" = dontDistribute super."ersatz"; 2723 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4474 "io-reactive" = dontDistribute super."io-reactive"; 4475 "io-region" = dontDistribute super."io-region"; 4476 "io-storage" = dontDistribute super."io-storage"; 4477 "io-streams-http" = dontDistribute super."io-streams-http"; 4478 "io-throttle" = dontDistribute super."io-throttle"; 4479 "ioctl" = dontDistribute super."ioctl"; ··· 5746 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5747 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5748 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5749 "persistent-map" = dontDistribute super."persistent-map"; 5750 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5751 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5985 "prof2dot" = dontDistribute super."prof2dot"; 5986 "prof2pretty" = dontDistribute super."prof2pretty"; 5987 "profiteur" = dontDistribute super."profiteur"; 5988 "progress" = dontDistribute super."progress"; 5989 "progressbar" = dontDistribute super."progressbar"; 5990 "progression" = dontDistribute super."progression"; ··· 6400 "rspp" = dontDistribute super."rspp"; 6401 "rss" = dontDistribute super."rss"; 6402 "rss2irc" = dontDistribute super."rss2irc"; 6403 "rtld" = dontDistribute super."rtld"; 6404 "rtlsdr" = dontDistribute super."rtlsdr"; 6405 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8005 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8006 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8007 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8008 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8009 "yesod-comments" = dontDistribute super."yesod-comments"; 8010 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
··· 1106 "aeson-diff" = dontDistribute super."aeson-diff"; 1107 "aeson-extra" = dontDistribute super."aeson-extra"; 1108 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1109 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1110 "aeson-lens" = dontDistribute super."aeson-lens"; 1111 "aeson-native" = dontDistribute super."aeson-native"; 1112 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1295 "archlinux-web" = dontDistribute super."archlinux-web"; 1296 "archnews" = dontDistribute super."archnews"; 1297 "arff" = dontDistribute super."arff"; 1298 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1299 "argon" = dontDistribute super."argon"; 1300 "argparser" = dontDistribute super."argparser"; 1301 "arguedit" = dontDistribute super."arguedit"; ··· 2464 "digit" = dontDistribute super."digit"; 2465 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2466 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2467 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2468 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2469 "dingo-core" = dontDistribute super."dingo-core"; 2470 "dingo-example" = dontDistribute super."dingo-example"; ··· 2721 "error-loc" = dontDistribute super."error-loc"; 2722 "error-location" = dontDistribute super."error-location"; 2723 "error-message" = dontDistribute super."error-message"; 2724 + "error-util" = dontDistribute super."error-util"; 2725 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2726 "ersatz" = dontDistribute super."ersatz"; 2727 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4478 "io-reactive" = dontDistribute super."io-reactive"; 4479 "io-region" = dontDistribute super."io-region"; 4480 "io-storage" = dontDistribute super."io-storage"; 4481 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4482 "io-streams-http" = dontDistribute super."io-streams-http"; 4483 "io-throttle" = dontDistribute super."io-throttle"; 4484 "ioctl" = dontDistribute super."ioctl"; ··· 5751 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5752 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5753 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5754 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5755 "persistent-map" = dontDistribute super."persistent-map"; 5756 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5757 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5991 "prof2dot" = dontDistribute super."prof2dot"; 5992 "prof2pretty" = dontDistribute super."prof2pretty"; 5993 "profiteur" = dontDistribute super."profiteur"; 5994 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5995 "progress" = dontDistribute super."progress"; 5996 "progressbar" = dontDistribute super."progressbar"; 5997 "progression" = dontDistribute super."progression"; ··· 6407 "rspp" = dontDistribute super."rspp"; 6408 "rss" = dontDistribute super."rss"; 6409 "rss2irc" = dontDistribute super."rss2irc"; 6410 + "rtcm" = dontDistribute super."rtcm"; 6411 "rtld" = dontDistribute super."rtld"; 6412 "rtlsdr" = dontDistribute super."rtlsdr"; 6413 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8013 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8014 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8015 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8016 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8017 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8018 "yesod-comments" = dontDistribute super."yesod-comments"; 8019 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.8.nix
··· 1106 "aeson-diff" = dontDistribute super."aeson-diff"; 1107 "aeson-extra" = dontDistribute super."aeson-extra"; 1108 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1109 "aeson-lens" = dontDistribute super."aeson-lens"; 1110 "aeson-native" = dontDistribute super."aeson-native"; 1111 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1294 "archlinux-web" = dontDistribute super."archlinux-web"; 1295 "archnews" = dontDistribute super."archnews"; 1296 "arff" = dontDistribute super."arff"; 1297 "argon" = dontDistribute super."argon"; 1298 "argparser" = dontDistribute super."argparser"; 1299 "arguedit" = dontDistribute super."arguedit"; ··· 2451 "digit" = dontDistribute super."digit"; 2452 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2453 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2454 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2455 "dingo-core" = dontDistribute super."dingo-core"; 2456 "dingo-example" = dontDistribute super."dingo-example"; ··· 2707 "error-loc" = dontDistribute super."error-loc"; 2708 "error-location" = dontDistribute super."error-location"; 2709 "error-message" = dontDistribute super."error-message"; 2710 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2711 "ersatz" = dontDistribute super."ersatz"; 2712 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4463 "io-reactive" = dontDistribute super."io-reactive"; 4464 "io-region" = dontDistribute super."io-region"; 4465 "io-storage" = dontDistribute super."io-storage"; 4466 "io-streams-http" = dontDistribute super."io-streams-http"; 4467 "io-throttle" = dontDistribute super."io-throttle"; 4468 "ioctl" = dontDistribute super."ioctl"; ··· 5733 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5734 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5735 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5736 "persistent-map" = dontDistribute super."persistent-map"; 5737 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5738 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5970 "prof2dot" = dontDistribute super."prof2dot"; 5971 "prof2pretty" = dontDistribute super."prof2pretty"; 5972 "profiteur" = dontDistribute super."profiteur"; 5973 "progress" = dontDistribute super."progress"; 5974 "progressbar" = dontDistribute super."progressbar"; 5975 "progression" = dontDistribute super."progression"; ··· 6384 "rspp" = dontDistribute super."rspp"; 6385 "rss" = dontDistribute super."rss"; 6386 "rss2irc" = dontDistribute super."rss2irc"; 6387 "rtld" = dontDistribute super."rtld"; 6388 "rtlsdr" = dontDistribute super."rtlsdr"; 6389 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7985 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7986 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7987 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7988 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7989 "yesod-comments" = dontDistribute super."yesod-comments"; 7990 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
··· 1106 "aeson-diff" = dontDistribute super."aeson-diff"; 1107 "aeson-extra" = dontDistribute super."aeson-extra"; 1108 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1109 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1110 "aeson-lens" = dontDistribute super."aeson-lens"; 1111 "aeson-native" = dontDistribute super."aeson-native"; 1112 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1295 "archlinux-web" = dontDistribute super."archlinux-web"; 1296 "archnews" = dontDistribute super."archnews"; 1297 "arff" = dontDistribute super."arff"; 1298 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1299 "argon" = dontDistribute super."argon"; 1300 "argparser" = dontDistribute super."argparser"; 1301 "arguedit" = dontDistribute super."arguedit"; ··· 2453 "digit" = dontDistribute super."digit"; 2454 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2455 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2456 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2457 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2458 "dingo-core" = dontDistribute super."dingo-core"; 2459 "dingo-example" = dontDistribute super."dingo-example"; ··· 2710 "error-loc" = dontDistribute super."error-loc"; 2711 "error-location" = dontDistribute super."error-location"; 2712 "error-message" = dontDistribute super."error-message"; 2713 + "error-util" = dontDistribute super."error-util"; 2714 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2715 "ersatz" = dontDistribute super."ersatz"; 2716 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4467 "io-reactive" = dontDistribute super."io-reactive"; 4468 "io-region" = dontDistribute super."io-region"; 4469 "io-storage" = dontDistribute super."io-storage"; 4470 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4471 "io-streams-http" = dontDistribute super."io-streams-http"; 4472 "io-throttle" = dontDistribute super."io-throttle"; 4473 "ioctl" = dontDistribute super."ioctl"; ··· 5738 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5739 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5740 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5741 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5742 "persistent-map" = dontDistribute super."persistent-map"; 5743 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5744 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5976 "prof2dot" = dontDistribute super."prof2dot"; 5977 "prof2pretty" = dontDistribute super."prof2pretty"; 5978 "profiteur" = dontDistribute super."profiteur"; 5979 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5980 "progress" = dontDistribute super."progress"; 5981 "progressbar" = dontDistribute super."progressbar"; 5982 "progression" = dontDistribute super."progression"; ··· 6391 "rspp" = dontDistribute super."rspp"; 6392 "rss" = dontDistribute super."rss"; 6393 "rss2irc" = dontDistribute super."rss2irc"; 6394 + "rtcm" = dontDistribute super."rtcm"; 6395 "rtld" = dontDistribute super."rtld"; 6396 "rtlsdr" = dontDistribute super."rtlsdr"; 6397 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7993 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7994 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7995 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7996 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7997 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7998 "yesod-comments" = dontDistribute super."yesod-comments"; 7999 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+10
pkgs/development/haskell-modules/configuration-lts-3.9.nix
··· 1104 "aeson-diff" = dontDistribute super."aeson-diff"; 1105 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1106 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1107 "aeson-lens" = dontDistribute super."aeson-lens"; 1108 "aeson-native" = dontDistribute super."aeson-native"; 1109 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1292 "archlinux-web" = dontDistribute super."archlinux-web"; 1293 "archnews" = dontDistribute super."archnews"; 1294 "arff" = dontDistribute super."arff"; 1295 "argon" = dontDistribute super."argon"; 1296 "argparser" = dontDistribute super."argparser"; 1297 "arguedit" = dontDistribute super."arguedit"; ··· 2446 "digit" = dontDistribute super."digit"; 2447 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2448 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2449 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2450 "dingo-core" = dontDistribute super."dingo-core"; 2451 "dingo-example" = dontDistribute super."dingo-example"; ··· 2701 "error-loc" = dontDistribute super."error-loc"; 2702 "error-location" = dontDistribute super."error-location"; 2703 "error-message" = dontDistribute super."error-message"; 2704 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2705 "ersatz" = dontDistribute super."ersatz"; 2706 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4455 "io-reactive" = dontDistribute super."io-reactive"; 4456 "io-region" = dontDistribute super."io-region"; 4457 "io-storage" = dontDistribute super."io-storage"; 4458 "io-streams-http" = dontDistribute super."io-streams-http"; 4459 "io-throttle" = dontDistribute super."io-throttle"; 4460 "ioctl" = dontDistribute super."ioctl"; ··· 5724 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5725 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5726 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5727 "persistent-map" = dontDistribute super."persistent-map"; 5728 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5729 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5961 "prof2dot" = dontDistribute super."prof2dot"; 5962 "prof2pretty" = dontDistribute super."prof2pretty"; 5963 "profiteur" = dontDistribute super."profiteur"; 5964 "progress" = dontDistribute super."progress"; 5965 "progressbar" = dontDistribute super."progressbar"; 5966 "progression" = dontDistribute super."progression"; ··· 6375 "rspp" = dontDistribute super."rspp"; 6376 "rss" = dontDistribute super."rss"; 6377 "rss2irc" = dontDistribute super."rss2irc"; 6378 "rtld" = dontDistribute super."rtld"; 6379 "rtlsdr" = dontDistribute super."rtlsdr"; 6380 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7975 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7976 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7977 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7978 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7979 "yesod-comments" = dontDistribute super."yesod-comments"; 7980 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7981 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7982 "yesod-crud" = dontDistribute super."yesod-crud"; 7983 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7984 "yesod-csp" = dontDistribute super."yesod-csp";
··· 1104 "aeson-diff" = dontDistribute super."aeson-diff"; 1105 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1106 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1107 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1108 "aeson-lens" = dontDistribute super."aeson-lens"; 1109 "aeson-native" = dontDistribute super."aeson-native"; 1110 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1293 "archlinux-web" = dontDistribute super."archlinux-web"; 1294 "archnews" = dontDistribute super."archnews"; 1295 "arff" = dontDistribute super."arff"; 1296 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1297 "argon" = dontDistribute super."argon"; 1298 "argparser" = dontDistribute super."argparser"; 1299 "arguedit" = dontDistribute super."arguedit"; ··· 2448 "digit" = dontDistribute super."digit"; 2449 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2450 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2451 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2452 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2453 "dingo-core" = dontDistribute super."dingo-core"; 2454 "dingo-example" = dontDistribute super."dingo-example"; ··· 2704 "error-loc" = dontDistribute super."error-loc"; 2705 "error-location" = dontDistribute super."error-location"; 2706 "error-message" = dontDistribute super."error-message"; 2707 + "error-util" = dontDistribute super."error-util"; 2708 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2709 "ersatz" = dontDistribute super."ersatz"; 2710 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4459 "io-reactive" = dontDistribute super."io-reactive"; 4460 "io-region" = dontDistribute super."io-region"; 4461 "io-storage" = dontDistribute super."io-storage"; 4462 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4463 "io-streams-http" = dontDistribute super."io-streams-http"; 4464 "io-throttle" = dontDistribute super."io-throttle"; 4465 "ioctl" = dontDistribute super."ioctl"; ··· 5729 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5730 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5731 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5732 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5733 "persistent-map" = dontDistribute super."persistent-map"; 5734 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5735 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5967 "prof2dot" = dontDistribute super."prof2dot"; 5968 "prof2pretty" = dontDistribute super."prof2pretty"; 5969 "profiteur" = dontDistribute super."profiteur"; 5970 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5971 "progress" = dontDistribute super."progress"; 5972 "progressbar" = dontDistribute super."progressbar"; 5973 "progression" = dontDistribute super."progression"; ··· 6382 "rspp" = dontDistribute super."rspp"; 6383 "rss" = dontDistribute super."rss"; 6384 "rss2irc" = dontDistribute super."rss2irc"; 6385 + "rtcm" = dontDistribute super."rtcm"; 6386 "rtld" = dontDistribute super."rtld"; 6387 "rtlsdr" = dontDistribute super."rtlsdr"; 6388 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7983 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7984 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7985 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7986 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7987 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7988 "yesod-comments" = dontDistribute super."yesod-comments"; 7989 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7990 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7991 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7992 "yesod-crud" = dontDistribute super."yesod-crud"; 7993 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7994 "yesod-csp" = dontDistribute super."yesod-csp";
+346 -133
pkgs/development/haskell-modules/hackage-packages.nix
··· 10738 ({ mkDerivation, base, Cabal, containers, deepseq, QuickCheck }: 10739 mkDerivation { 10740 pname = "IntervalMap"; 10741 - version = "0.4.0.1"; 10742 - sha256 = "2e57335d4bc32de03c5b36b2d1f299a49d712105798d3fa5245a67ae6a6d0033"; 10743 libraryHaskellDepends = [ base containers deepseq ]; 10744 testHaskellDepends = [ base Cabal containers deepseq QuickCheck ]; 10745 homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; ··· 11215 }: 11216 mkDerivation { 11217 pname = "JuicyPixels"; 11218 - version = "3.2.6.3"; 11219 - sha256 = "4bdd5d6c9bd41308365f7d8fc9bc50393f440a96ee4390f0c64122bb08f1657a"; 11220 libraryHaskellDepends = [ 11221 base binary bytestring containers deepseq mtl primitive 11222 transformers vector zlib ··· 14557 }) {}; 14558 14559 "Paraiso" = callPackage 14560 - ({ mkDerivation, array, base, containers, control-monad-failure 14561 - , directory, fgl, filepath, HUnit, ListLike, listlike-instances 14562 - , mtl, numeric-prelude, QuickCheck, random, test-framework 14563 - , test-framework-hunit, test-framework-quickcheck2, text 14564 - , typelevel-tensor, vector 14565 }: 14566 mkDerivation { 14567 pname = "Paraiso"; 14568 - version = "0.3.1.3"; 14569 - sha256 = "29f2154111be164bf7018b6f4b453af81e5a6931d4252795feead058a48dfa9c"; 14570 libraryHaskellDepends = [ 14571 - array base containers control-monad-failure directory fgl filepath 14572 - mtl numeric-prelude random text typelevel-tensor vector 14573 ]; 14574 testHaskellDepends = [ 14575 - array base containers control-monad-failure directory fgl filepath 14576 - HUnit ListLike listlike-instances mtl numeric-prelude QuickCheck 14577 - random test-framework test-framework-hunit 14578 - test-framework-quickcheck2 text typelevel-tensor vector 14579 ]; 14580 homepage = "http://www.paraiso-lang.org/wiki/index.php/Main_Page"; 14581 description = "a code generator for partial differential equations solvers"; ··· 21894 license = stdenv.lib.licenses.bsd3; 21895 }) {}; 21896 21897 "aeson-lens" = callPackage 21898 ({ mkDerivation, aeson, base, bytestring, doctest, lens, text 21899 , unordered-containers, vector ··· 28590 hydraPlatforms = stdenv.lib.platforms.none; 28591 }) {}; 28592 28593 "argon" = callPackage 28594 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal 28595 , containers, directory, docopt, filepath, ghc, ghc-paths ··· 38336 pname = "bytestring-builder"; 38337 version = "0.10.4.0.1"; 38338 sha256 = "2079e5f8b269b4b90095d69f864dcbddfac2499ef985086af8e5d0ddcc341047"; 38339 libraryHaskellDepends = [ base bytestring deepseq ]; 38340 doHaddock = false; 38341 jailbreak = true; ··· 38350 pname = "bytestring-builder"; 38351 version = "0.10.4.1.0"; 38352 sha256 = "bf728099333a09ba28b8c48b28db52eac86d5e48421f7318e13e825a61ab197e"; 38353 libraryHaskellDepends = [ base bytestring deepseq ]; 38354 doHaddock = false; 38355 jailbreak = true; ··· 48691 }: 48692 mkDerivation { 48693 pname = "conduit-iconv"; 48694 - version = "0.1.1.0"; 48695 - sha256 = "90a008befeaf1c51412f646c11c9c66ce595725d397061e2f2af3d7c5b99ca2e"; 48696 libraryHaskellDepends = [ base bytestring conduit ]; 48697 testHaskellDepends = [ 48698 base bytestring conduit mtl QuickCheck test-framework ··· 59458 license = stdenv.lib.licenses.bsd3; 59459 }) {}; 59460 59461 "dimensional-tf" = callPackage 59462 ({ mkDerivation, base, numtype-tf, time }: 59463 mkDerivation { ··· 65583 hydraPlatforms = stdenv.lib.platforms.none; 65584 }) {}; 65585 65586 "errorcall-eq-instance_0_1_0" = callPackage 65587 ({ mkDerivation, base, hspec, QuickCheck }: 65588 mkDerivation { ··· 76943 }) {}; 76944 76945 "git-fmt" = callPackage 76946 - ({ mkDerivation, aeson, base, exceptions, extra, fast-logger 76947 - , filepath, monad-logger, monad-parallel, mtl, optparse-applicative 76948 - , pipes, pipes-concurrency, temporary, text, time 76949 - , unordered-containers, yaml 76950 - }: 76951 - mkDerivation { 76952 - pname = "git-fmt"; 76953 - version = "0.3.1.0"; 76954 - sha256 = "9342baf14ec7e0b4dbeb919fdf33588860ecf9ca706297e9601a055483e54ae2"; 76955 - isLibrary = true; 76956 - isExecutable = true; 76957 - libraryHaskellDepends = [ 76958 - aeson base extra filepath monad-logger mtl pipes text 76959 - unordered-containers yaml 76960 - ]; 76961 - executableHaskellDepends = [ 76962 - base exceptions extra fast-logger filepath monad-logger 76963 - monad-parallel mtl optparse-applicative pipes pipes-concurrency 76964 - temporary text time 76965 - ]; 76966 - homepage = "https://github.com/hjwylde/git-fmt"; 76967 - description = "Custom git command for formatting code"; 76968 - license = stdenv.lib.licenses.bsd3; 76969 - hydraPlatforms = stdenv.lib.platforms.none; 76970 - }) {}; 76971 - 76972 - "git-fmt_0_3_1_1" = callPackage 76973 ({ mkDerivation, aeson, base, exceptions, extra, fast-logger 76974 , filepath, monad-logger, monad-parallel, mtl, optparse-applicative 76975 , pipes, pipes-concurrency, temporary, text, time ··· 77142 "git-vogue" = callPackage 77143 ({ mkDerivation, base, bifunctors, Cabal, containers, cpphs, Diff 77144 , directory, filepath, formatting, ghc-mod, haskell-src-exts, hlint 77145 - , hscolour, hspec, mtl, optparse-applicative, process, split 77146 - , strict, stylish-haskell, temporary, text, transformers, unix 77147 }: 77148 mkDerivation { 77149 pname = "git-vogue"; 77150 - version = "0.2.0.1"; 77151 - sha256 = "2c99b2cdd585c00d819ea492516ce3075f20bdf3187c6472ffb7453779f034d0"; 77152 isLibrary = true; 77153 isExecutable = true; 77154 libraryHaskellDepends = [ 77155 - base containers directory filepath formatting ghc-mod hlint mtl 77156 - optparse-applicative process split stylish-haskell text 77157 - transformers unix 77158 ]; 77159 executableHaskellDepends = [ 77160 - base bifunctors Cabal containers cpphs Diff directory filepath 77161 - ghc-mod haskell-src-exts hlint hscolour optparse-applicative 77162 - process split strict stylish-haskell text 77163 ]; 77164 testHaskellDepends = [ 77165 base containers directory filepath hspec process temporary 77166 - transformers unix 77167 ]; 77168 - jailbreak = true; 77169 - homepage = "https://github.com/anchor/git-vogue"; 77170 description = "A framework for pre-commit checks"; 77171 license = stdenv.lib.licenses.bsd3; 77172 hydraPlatforms = stdenv.lib.platforms.none; ··· 81333 pname = "groundhog-postgresql"; 81334 version = "0.7.0.2"; 81335 sha256 = "312045c39c973596e8e92b8001776bb86898e3c8766e0a42c71e63b343918da3"; 81336 libraryHaskellDepends = [ 81337 attoparsec base blaze-builder bytestring containers groundhog 81338 monad-control monad-logger postgresql-libpq postgresql-simple ··· 95330 }: 95331 mkDerivation { 95332 pname = "hledger-ui"; 95333 - version = "0.27"; 95334 - sha256 = "691f842116178037a338db298dc179b304b10349d98d3df1a4981ca57b57df4b"; 95335 isLibrary = false; 95336 isExecutable = true; 95337 executableHaskellDepends = [ ··· 95339 hledger hledger-lib HUnit lens pretty-show safe split time 95340 transformers vector vty 95341 ]; 95342 - jailbreak = true; 95343 homepage = "http://hledger.org"; 95344 description = "Curses-style user interface for the hledger accounting tool"; 95345 license = "GPL"; ··· 109331 license = "GPL"; 109332 }) {}; 109333 109334 "incremental-sat-solver" = callPackage 109335 ({ mkDerivation, base, containers, mtl }: 109336 mkDerivation { ··· 110596 license = stdenv.lib.licenses.bsd3; 110597 }) {}; 110598 110599 - "io-streams" = callPackage 110600 ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder 110601 , deepseq, directory, filepath, HUnit, mtl, network, primitive 110602 , process, QuickCheck, test-framework, test-framework-hunit ··· 110620 ]; 110621 description = "Simple, composable, and easy-to-use stream I/O"; 110622 license = stdenv.lib.licenses.bsd3; 110623 }) {}; 110624 110625 "io-streams-http" = callPackage ··· 119609 }: 119610 mkDerivation { 119611 pname = "libravatar"; 119612 - version = "0.1.0.1"; 119613 - sha256 = "a58713664cab79ddc03c4faa92175a81fe179b51b852ce46570486cb3bb42d03"; 119614 - revision = "1"; 119615 - editedCabalFile = "decdd92e332caef49c016d1779e401dc3288b753e73317d639e279a8048a766d"; 119616 libraryHaskellDepends = [ 119617 base bytestring crypto-api dns network-uri pureMD5 random SHA url 119618 utf8-string ··· 122603 pname = "lol"; 122604 version = "0.1.0.0"; 122605 sha256 = "be1a72e80ca1f3471b1b630f0407fa6e152ce6410ea7aee86fabda002dff12d0"; 122606 libraryHaskellDepends = [ 122607 arithmoi base constraints containers data-default deepseq 122608 MonadRandom mtl numeric-prelude QuickCheck random reflection repa ··· 123302 }: 123303 mkDerivation { 123304 pname = "luminance"; 123305 - version = "0.7.1"; 123306 - sha256 = "36aabb520ede1cd9dfe6e6c5dc6a45d21c06500e1fdf66ce497e3081d27d56a0"; 123307 libraryHaskellDepends = [ 123308 base containers contravariant dlist gl linear mtl resourcet 123309 semigroups transformers vector void ··· 127681 ({ mkDerivation, base, containers, directory, filepath, tconfig }: 127682 mkDerivation { 127683 pname = "minimal-configuration"; 127684 - version = "0.1.1"; 127685 - sha256 = "83b4efb30c599c0262e63f5cad7583fa1b065dfa869029be52c54d302808271b"; 127686 - revision = "1"; 127687 - editedCabalFile = "12049d8491610c2789c61e4736586d3fa8b1122c5c7657647c3de8d21073ef80"; 127688 libraryHaskellDepends = [ 127689 base containers directory filepath tconfig 127690 ]; 127691 - jailbreak = true; 127692 description = "Minimal ini like configuration library with a few extras"; 127693 - license = stdenv.lib.licenses.bsd3; 127694 }) {}; 127695 127696 "minimorph" = callPackage ··· 137451 }: 137452 mkDerivation { 137453 pname = "opencog-atomspace"; 137454 - version = "0.1.0.1"; 137455 - sha256 = "23fe1b2e746b29b6e4a9339aba4c5274b9369572a53856c87aa00a561057b505"; 137456 libraryHaskellDepends = [ 137457 base containers directory filepath mtl template-haskell 137458 transformers ··· 142707 license = stdenv.lib.licenses.bsd3; 142708 }) {}; 142709 142710 "persistent-map" = callPackage 142711 ({ mkDerivation, base, binary, containers, directory, EdisonAPI 142712 , EdisonCore, filepath, LRU, mtl, stm-io-hooks ··· 143199 maintainers = with stdenv.lib.maintainers; [ psibi ]; 143200 }) {}; 143201 143202 - HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143203 ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit 143204 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143205 HDBC-sqlite3 json loli mps mtl process safe StateVar stm ··· 143209 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143210 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143211 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143212 libraryHaskellDepends = [ 143213 aeson base blaze-builder bytestring conduit containers 143214 HDBC-sqlite3 json loli mps mtl process safe StateVar stm ··· 149317 hydraPlatforms = stdenv.lib.platforms.none; 149318 }) {}; 149319 149320 - "profunctors" = callPackage 149321 ({ mkDerivation, base, comonad, distributive, tagged, transformers 149322 }: 149323 mkDerivation { ··· 149330 homepage = "http://github.com/ekmett/profunctors/"; 149331 description = "Profunctors"; 149332 license = stdenv.lib.licenses.bsd3; 149333 }) {}; 149334 149335 - "profunctors_5_1_2" = callPackage 149336 ({ mkDerivation, base, bifunctors, comonad, contravariant 149337 , distributive, tagged, transformers 149338 }: ··· 149347 homepage = "http://github.com/ekmett/profunctors/"; 149348 description = "Profunctors"; 149349 license = stdenv.lib.licenses.bsd3; 149350 - hydraPlatforms = stdenv.lib.platforms.none; 149351 }) {}; 149352 149353 "progress" = callPackage ··· 154015 }) {}; 154016 154017 "reedsolomon" = callPackage 154018 - ({ mkDerivation, base, bytestring, bytestring-mmap, clock, cpu 154019 , criterion, deepseq, exceptions, filepath, gitrev, loop, mtl 154020 , optparse-applicative, primitive, profunctors, QuickCheck, random 154021 , reedsolomon, statistics, tasty, tasty-ant-xml, tasty-hunit ··· 154023 }: 154024 mkDerivation { 154025 pname = "reedsolomon"; 154026 - version = "0.0.1.2"; 154027 - sha256 = "fb5a25543a54367aa18c274d51e46b9adeabd74ef1a6ea0d60390f29cd4a219b"; 154028 isLibrary = true; 154029 isExecutable = true; 154030 libraryHaskellDepends = [ ··· 154037 optparse-applicative random statistics vector 154038 ]; 154039 testHaskellDepends = [ 154040 - base bytestring cpu exceptions loop mtl primitive profunctors 154041 QuickCheck random tasty tasty-ant-xml tasty-hunit tasty-quickcheck 154042 vector 154043 ]; ··· 157769 }: 157770 mkDerivation { 157771 pname = "rethinkdb"; 157772 - version = "2.1.0.2"; 157773 - sha256 = "80689203aafcbf26b555952953012fc1a1272d2e28cd5dcc30fcceb50951fd07"; 157774 isLibrary = true; 157775 isExecutable = true; 157776 libraryHaskellDepends = [ ··· 159254 description = "watches an RSS/Atom feed and writes it to an IRC channel"; 159255 license = stdenv.lib.licenses.bsd3; 159256 hydraPlatforms = stdenv.lib.platforms.none; 159257 }) {}; 159258 159259 "rtld" = callPackage ··· 171892 }: 171893 mkDerivation { 171894 pname = "sscgi"; 171895 - version = "0.3.0"; 171896 - sha256 = "f90432d5f11e1f5c411e4478180d8882d573bdacc250cfac27800408bb99705e"; 171897 libraryHaskellDepends = [ 171898 attoparsec base bytestring case-insensitive containers Glob 171899 MonadCatchIO-mtl mtl transformers utf8-string ··· 174043 resourcet stm stm-chans test-framework test-framework-hunit 174044 test-framework-quickcheck2 transformers 174045 ]; 174046 homepage = "https://github.com/wowus/stm-conduit"; 174047 description = "Introduces conduits to channels, and promotes using conduits concurrently"; 174048 license = stdenv.lib.licenses.bsd3; ··· 174658 }) {}; 174659 174660 "streaming" = callPackage 174661 - ({ mkDerivation, base, bytestring, mmorph, mtl, time, transformers 174662 }: 174663 mkDerivation { 174664 pname = "streaming"; 174665 - version = "0.1.2.2"; 174666 - sha256 = "1d67401731689b4904fff6fa45ed7257c0c076e4e619714c48443804b6e94beb"; 174667 libraryHaskellDepends = [ 174668 - base bytestring mmorph mtl time transformers 174669 ]; 174670 homepage = "https://github.com/michaelt/streaming"; 174671 - description = "an elementary streaming prelude and a general monad transformer for streaming applications"; 174672 license = stdenv.lib.licenses.bsd3; 174673 }) {}; 174674 174675 "streaming-bytestring" = callPackage 174676 - ({ mkDerivation, base, bytestring, deepseq, mmorph, mtl, streaming 174677 - , transformers 174678 }: 174679 mkDerivation { 174680 pname = "streaming-bytestring"; 174681 - version = "0.1.2.2"; 174682 - sha256 = "db5ab6c378458e57c4441f49b8564b9acfb5e64079b2c5c651d116ad0908c48d"; 174683 libraryHaskellDepends = [ 174684 - base bytestring deepseq mmorph mtl streaming transformers 174685 ]; 174686 homepage = "https://github.com/michaelt/streaming-bytestring"; 174687 description = "effectful byte steams, or: bytestring io done right"; ··· 174993 }: 174994 mkDerivation { 174995 pname = "streaming-utils"; 174996 - version = "0.1.2.2"; 174997 - sha256 = "98aa08e5fb3665b7aa39934f657daf9473553a54946dd3102833e66c7cc65e4e"; 174998 libraryHaskellDepends = [ 174999 aeson attoparsec base bytestring http-client http-client-tls 175000 json-stream mtl pipes streaming streaming-bytestring transformers ··· 179758 179759 "templatepg" = callPackage 179760 ({ mkDerivation, base, binary, bytestring, haskell-src-meta, mtl 179761 - , network, old-locale, parsec, regex-compat, regex-posix 179762 - , template-haskell, time, utf8-string 179763 }: 179764 mkDerivation { 179765 pname = "templatepg"; 179766 - version = "0.2.6"; 179767 - sha256 = "67317c39b93db3a74ec7fc39f37cd273c6ee6673e539c1c1c6433d6a8b8eaac4"; 179768 libraryHaskellDepends = [ 179769 - base binary bytestring haskell-src-meta mtl network old-locale 179770 - parsec regex-compat regex-posix template-haskell time utf8-string 179771 ]; 179772 homepage = "https://github.com/jekor/templatepg"; 179773 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 179774 - license = stdenv.lib.licenses.bsd3; 179775 hydraPlatforms = stdenv.lib.platforms.none; 179776 }) {}; 179777 ··· 190488 }: 190489 mkDerivation { 190490 pname = "validation"; 190491 - version = "0.5.1"; 190492 - sha256 = "0b170b835eb2df60b0b620ac7e64127926f7f7e5e682ee712acd53999422dd25"; 190493 libraryHaskellDepends = [ 190494 base bifunctors lens mtl semigroupoids semigroups transformers 190495 ]; ··· 191167 ({ mkDerivation, base, fftw, primitive, storable-complex, vector }: 191168 mkDerivation { 191169 pname = "vector-fftw"; 191170 - version = "0.1.3.3"; 191171 - sha256 = "131d88fa9ea17e7e46a6d886f37e77282e8e95f2022ccefd2cf11adeca0b9172"; 191172 - libraryHaskellDepends = [ base primitive storable-complex vector ]; 191173 - librarySystemDepends = [ fftw ]; 191174 - homepage = "http://hackage.haskell.org/package/vector-fftw"; 191175 - description = "A binding to the fftw library for one-dimensional vectors"; 191176 - license = stdenv.lib.licenses.bsd3; 191177 - }) {inherit (pkgs) fftw;}; 191178 - 191179 - "vector-fftw_0_1_3_5" = callPackage 191180 - ({ mkDerivation, base, fftw, primitive, storable-complex, vector }: 191181 - mkDerivation { 191182 - pname = "vector-fftw"; 191183 version = "0.1.3.5"; 191184 sha256 = "f4d88d3122c2ea3a92a5dffd78743e8942f261fd7d00724c6aa317adbc59abfe"; 191185 libraryHaskellDepends = [ base primitive storable-complex vector ]; ··· 191187 homepage = "http://hackage.haskell.org/package/vector-fftw"; 191188 description = "A binding to the fftw library for one-dimensional vectors"; 191189 license = stdenv.lib.licenses.bsd3; 191190 - hydraPlatforms = stdenv.lib.platforms.none; 191191 }) {inherit (pkgs) fftw;}; 191192 191193 "vector-functorlazy" = callPackage ··· 195801 pname = "warp-tls"; 195802 version = "3.1.4"; 195803 sha256 = "7572b8893160a07051a60323e91553b8911d87d58712c64f997ecced1a5febd7"; 195804 libraryHaskellDepends = [ 195805 base bytestring cprng-aes data-default-class network 195806 streaming-commons tls wai warp ··· 197809 ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 197810 , amazonka-swf, base, basic-prelude, bytestring, conduit 197811 , conduit-extra, exceptions, fast-logger, formatting, http-conduit 197812 - , lens, monad-control, monad-logger, mtl, mtl-compat 197813 , optparse-applicative, resourcet, safe, shelly, tasty, tasty-hunit 197814 , text, time, transformers, transformers-base, unordered-containers 197815 , uuid, yaml 197816 }: 197817 mkDerivation { 197818 pname = "wolf"; 197819 - version = "0.2.1"; 197820 - sha256 = "e4ab9971eab661b1c614b02d2f3bb9457a85d8479855cc5f0a3656a05205cbe5"; 197821 isLibrary = true; 197822 isExecutable = true; 197823 libraryHaskellDepends = [ 197824 aeson amazonka amazonka-core amazonka-s3 amazonka-swf base 197825 basic-prelude bytestring conduit conduit-extra exceptions 197826 - fast-logger formatting http-conduit lens monad-control monad-logger 197827 - mtl mtl-compat optparse-applicative resourcet safe text time 197828 - transformers transformers-base unordered-containers uuid yaml 197829 ]; 197830 executableHaskellDepends = [ 197831 aeson amazonka-core base basic-prelude bytestring ··· 203943 hydraPlatforms = stdenv.lib.platforms.none; 203944 }) {}; 203945 203946 - "yesod-bin" = callPackage 203947 ({ mkDerivation, async, attoparsec, base, base64-bytestring 203948 , blaze-builder, bytestring, Cabal, conduit, conduit-extra 203949 , containers, data-default-class, deepseq, directory, file-embed ··· 203959 pname = "yesod-bin"; 203960 version = "1.4.14"; 203961 sha256 = "6ed15a3ac5084926073c92fa7fd3ad2efa5ff8b4dc17fa4e6b1c109d57717a0c"; 203962 isLibrary = false; 203963 isExecutable = true; 203964 executableHaskellDepends = [ ··· 204752 hydraPlatforms = stdenv.lib.platforms.none; 204753 }) {}; 204754 204755 - "yesod-core" = callPackage 204756 ({ mkDerivation, aeson, async, auto-update, base, blaze-builder 204757 , blaze-html, blaze-markup, byteable, bytestring, case-insensitive 204758 , cereal, clientsession, conduit, conduit-extra, containers, cookie ··· 204769 pname = "yesod-core"; 204770 version = "1.4.15.1"; 204771 sha256 = "a414a0eb14b4b88ad4d6ec22db9837b4ead9c7958cf236476dce963555a75e29"; 204772 libraryHaskellDepends = [ 204773 aeson auto-update base blaze-builder blaze-html blaze-markup 204774 byteable bytestring case-insensitive cereal clientsession conduit ··· 205150 hydraPlatforms = stdenv.lib.platforms.none; 205151 }) {}; 205152 205153 - "yesod-form" = callPackage 205154 ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html 205155 , blaze-markup, byteable, bytestring, containers, data-default 205156 , email-validate, hspec, network-uri, persistent, resourcet ··· 205161 pname = "yesod-form"; 205162 version = "1.4.5"; 205163 sha256 = "f9a6e9590588f813a159f5fcccbd9ebed8a94c72e82271d19dae945c54c13ccf"; 205164 libraryHaskellDepends = [ 205165 aeson attoparsec base blaze-builder blaze-html blaze-markup 205166 byteable bytestring containers data-default email-validate
··· 10738 ({ mkDerivation, base, Cabal, containers, deepseq, QuickCheck }: 10739 mkDerivation { 10740 pname = "IntervalMap"; 10741 + version = "0.4.1.0"; 10742 + sha256 = "cbe486ae239e97deeccd6194be2e9933291778f6dd3a0bed7af60caa361ef44f"; 10743 libraryHaskellDepends = [ base containers deepseq ]; 10744 testHaskellDepends = [ base Cabal containers deepseq QuickCheck ]; 10745 homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; ··· 11215 }: 11216 mkDerivation { 11217 pname = "JuicyPixels"; 11218 + version = "3.2.6.4"; 11219 + sha256 = "6268583fd7915913b3d68a399184bfcfebfaa010be9aa10232d76324df65a6ac"; 11220 + revision = "1"; 11221 + editedCabalFile = "98af5e6f6f65e399f518466813f6ada6cfa80ebc1eae6ba98525065f985ced15"; 11222 libraryHaskellDepends = [ 11223 base binary bytestring containers deepseq mtl primitive 11224 transformers vector zlib ··· 14559 }) {}; 14560 14561 "Paraiso" = callPackage 14562 + ({ mkDerivation, array, base, containers, directory, failure, fgl 14563 + , filepath, HUnit, mtl, numeric-prelude, process, QuickCheck 14564 + , random, repa, test-framework, test-framework-hunit 14565 + , test-framework-quickcheck2, text, typelevel-tensor, vector 14566 }: 14567 mkDerivation { 14568 pname = "Paraiso"; 14569 + version = "0.3.1.5"; 14570 + sha256 = "4448a2a736f5fec503927d6dc9b5729ef67c818bd2ee14044bcf6c0614951525"; 14571 libraryHaskellDepends = [ 14572 + array base containers directory failure fgl filepath mtl 14573 + numeric-prelude random text typelevel-tensor vector 14574 ]; 14575 testHaskellDepends = [ 14576 + array base containers directory fgl filepath HUnit mtl 14577 + numeric-prelude process QuickCheck random repa test-framework 14578 + test-framework-hunit test-framework-quickcheck2 text 14579 + typelevel-tensor vector 14580 ]; 14581 homepage = "http://www.paraiso-lang.org/wiki/index.php/Main_Page"; 14582 description = "a code generator for partial differential equations solvers"; ··· 21895 license = stdenv.lib.licenses.bsd3; 21896 }) {}; 21897 21898 + "aeson-iproute" = callPackage 21899 + ({ mkDerivation, aeson, base, iproute, text }: 21900 + mkDerivation { 21901 + pname = "aeson-iproute"; 21902 + version = "0.1.1"; 21903 + sha256 = "9fc733cbe7d47e69b33a0003a73e82f337846006de672f87ce1eafbe6bc159af"; 21904 + libraryHaskellDepends = [ aeson base iproute text ]; 21905 + homepage = "https://github.com/greydot/aeson-iproute"; 21906 + description = "Aeson instances for iproute types"; 21907 + license = stdenv.lib.licenses.bsd3; 21908 + }) {}; 21909 + 21910 "aeson-lens" = callPackage 21911 ({ mkDerivation, aeson, base, bytestring, doctest, lens, text 21912 , unordered-containers, vector ··· 28603 hydraPlatforms = stdenv.lib.platforms.none; 28604 }) {}; 28605 28606 + "arghwxhaskell" = callPackage 28607 + ({ mkDerivation, base, directory, wx }: 28608 + mkDerivation { 28609 + pname = "arghwxhaskell"; 28610 + version = "0.8.2.0"; 28611 + sha256 = "6b88ad21393cde84f137f280826de31f121f35cf99c6c3472e423611723cdd5b"; 28612 + isLibrary = false; 28613 + isExecutable = true; 28614 + executableHaskellDepends = [ base directory wx ]; 28615 + homepage = "https://wiki.haskell.org/Argh!"; 28616 + description = "An interpreter for the Argh! programming language in wxHaskell"; 28617 + license = stdenv.lib.licenses.gpl2; 28618 + }) {}; 28619 + 28620 "argon" = callPackage 28621 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal 28622 , containers, directory, docopt, filepath, ghc, ghc-paths ··· 38363 pname = "bytestring-builder"; 38364 version = "0.10.4.0.1"; 38365 sha256 = "2079e5f8b269b4b90095d69f864dcbddfac2499ef985086af8e5d0ddcc341047"; 38366 + revision = "1"; 38367 + editedCabalFile = "2184b845a3059f681324e4c71d041ec0ee5268208149877a06a5c93618c28e9b"; 38368 libraryHaskellDepends = [ base bytestring deepseq ]; 38369 doHaddock = false; 38370 jailbreak = true; ··· 38379 pname = "bytestring-builder"; 38380 version = "0.10.4.1.0"; 38381 sha256 = "bf728099333a09ba28b8c48b28db52eac86d5e48421f7318e13e825a61ab197e"; 38382 + revision = "1"; 38383 + editedCabalFile = "44ec650d19703746349ce9f3b78ab2deb3f796836cd7120d796f2720e74fdb86"; 38384 libraryHaskellDepends = [ base bytestring deepseq ]; 38385 doHaddock = false; 38386 jailbreak = true; ··· 48722 }: 48723 mkDerivation { 48724 pname = "conduit-iconv"; 48725 + version = "0.1.1.1"; 48726 + sha256 = "54a25274f4f3590a6b35ac86a3753dc867a505867cae5d363f775781f4b6ac05"; 48727 libraryHaskellDepends = [ base bytestring conduit ]; 48728 testHaskellDepends = [ 48729 base bytestring conduit mtl QuickCheck test-framework ··· 59489 license = stdenv.lib.licenses.bsd3; 59490 }) {}; 59491 59492 + "dimensional-codata" = callPackage 59493 + ({ mkDerivation, base, dimensional, numtype-dk }: 59494 + mkDerivation { 59495 + pname = "dimensional-codata"; 59496 + version = "2014.0.0.0"; 59497 + sha256 = "45a4eac9e27997493f2bcb2977098ede8443c6eda263a447125446e203a7cae3"; 59498 + libraryHaskellDepends = [ base dimensional numtype-dk ]; 59499 + homepage = "https://github.com/dmcclean/dimensional-codata"; 59500 + description = "CODATA Recommended Physical Constants with Dimensional Types"; 59501 + license = stdenv.lib.licenses.bsd3; 59502 + }) {}; 59503 + 59504 "dimensional-tf" = callPackage 59505 ({ mkDerivation, base, numtype-tf, time }: 59506 mkDerivation { ··· 65626 hydraPlatforms = stdenv.lib.platforms.none; 65627 }) {}; 65628 65629 + "error-util" = callPackage 65630 + ({ mkDerivation, base, transformers }: 65631 + mkDerivation { 65632 + pname = "error-util"; 65633 + version = "0.0.1.1"; 65634 + sha256 = "68d133f2211d9be2f66f7529d1d2251ec13f12f9ccdd5f1c96be53f09cf3e193"; 65635 + libraryHaskellDepends = [ base transformers ]; 65636 + homepage = "http://github.com/pmlodawski/error-util"; 65637 + description = "Set of utils and operators for error handling"; 65638 + license = stdenv.lib.licenses.mit; 65639 + }) {}; 65640 + 65641 "errorcall-eq-instance_0_1_0" = callPackage 65642 ({ mkDerivation, base, hspec, QuickCheck }: 65643 mkDerivation { ··· 76998 }) {}; 76999 77000 "git-fmt" = callPackage 77001 ({ mkDerivation, aeson, base, exceptions, extra, fast-logger 77002 , filepath, monad-logger, monad-parallel, mtl, optparse-applicative 77003 , pipes, pipes-concurrency, temporary, text, time ··· 77170 "git-vogue" = callPackage 77171 ({ mkDerivation, base, bifunctors, Cabal, containers, cpphs, Diff 77172 , directory, filepath, formatting, ghc-mod, haskell-src-exts, hlint 77173 + , hscolour, hspec, optparse-applicative, process, split, strict 77174 + , stylish-haskell, temporary, text, transformers, unix 77175 }: 77176 mkDerivation { 77177 pname = "git-vogue"; 77178 + version = "0.2.1.0"; 77179 + sha256 = "cb42012a44e2b106963c3f4ee94dfbd5efba05715eda6753f9b4485e9a45bcd9"; 77180 isLibrary = true; 77181 isExecutable = true; 77182 libraryHaskellDepends = [ 77183 + base containers directory filepath formatting optparse-applicative 77184 + process split text transformers unix 77185 ]; 77186 executableHaskellDepends = [ 77187 + base bifunctors Cabal cpphs Diff directory ghc-mod haskell-src-exts 77188 + hlint hscolour optparse-applicative strict stylish-haskell text 77189 ]; 77190 testHaskellDepends = [ 77191 base containers directory filepath hspec process temporary 77192 ]; 77193 + homepage = "https://github.com/oswynb/git-vogue"; 77194 description = "A framework for pre-commit checks"; 77195 license = stdenv.lib.licenses.bsd3; 77196 hydraPlatforms = stdenv.lib.platforms.none; ··· 81357 pname = "groundhog-postgresql"; 81358 version = "0.7.0.2"; 81359 sha256 = "312045c39c973596e8e92b8001776bb86898e3c8766e0a42c71e63b343918da3"; 81360 + revision = "1"; 81361 + editedCabalFile = "014cf49927d870d99d906064fc27ee219f7145e71a409cc69ae3ed0cdc0699ca"; 81362 libraryHaskellDepends = [ 81363 attoparsec base blaze-builder bytestring containers groundhog 81364 monad-control monad-logger postgresql-libpq postgresql-simple ··· 95356 }: 95357 mkDerivation { 95358 pname = "hledger-ui"; 95359 + version = "0.27.1"; 95360 + sha256 = "98721c60eb3d30005f51fc1468c6d8a95d87088a2bfa0c95c734569820fd9c4b"; 95361 isLibrary = false; 95362 isExecutable = true; 95363 executableHaskellDepends = [ ··· 95365 hledger hledger-lib HUnit lens pretty-show safe split time 95366 transformers vector vty 95367 ]; 95368 homepage = "http://hledger.org"; 95369 description = "Curses-style user interface for the hledger accounting tool"; 95370 license = "GPL"; ··· 109356 license = "GPL"; 109357 }) {}; 109358 109359 + "incremental-parser_0_2_4_1" = callPackage 109360 + ({ mkDerivation, base, checkers, monoid-subclasses, QuickCheck 109361 + , tasty, tasty-quickcheck 109362 + }: 109363 + mkDerivation { 109364 + pname = "incremental-parser"; 109365 + version = "0.2.4.1"; 109366 + sha256 = "1630a763db0808cfa4c1439365e21a53a378b38c2c02957539a9f75bb482b054"; 109367 + libraryHaskellDepends = [ base monoid-subclasses ]; 109368 + testHaskellDepends = [ 109369 + base checkers monoid-subclasses QuickCheck tasty tasty-quickcheck 109370 + ]; 109371 + homepage = "https://github.com/blamario/incremental-parser"; 109372 + description = "Generic parser library capable of providing partial results from partial input"; 109373 + license = "GPL"; 109374 + hydraPlatforms = stdenv.lib.platforms.none; 109375 + }) {}; 109376 + 109377 "incremental-sat-solver" = callPackage 109378 ({ mkDerivation, base, containers, mtl }: 109379 mkDerivation { ··· 110639 license = stdenv.lib.licenses.bsd3; 110640 }) {}; 110641 110642 + "io-streams_1_3_2_0" = callPackage 110643 ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder 110644 , deepseq, directory, filepath, HUnit, mtl, network, primitive 110645 , process, QuickCheck, test-framework, test-framework-hunit ··· 110663 ]; 110664 description = "Simple, composable, and easy-to-use stream I/O"; 110665 license = stdenv.lib.licenses.bsd3; 110666 + hydraPlatforms = stdenv.lib.platforms.none; 110667 + }) {}; 110668 + 110669 + "io-streams" = callPackage 110670 + ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder 110671 + , deepseq, directory, filepath, HUnit, mtl, network, primitive 110672 + , process, QuickCheck, test-framework, test-framework-hunit 110673 + , test-framework-quickcheck2, text, time, transformers, vector 110674 + , zlib, zlib-bindings 110675 + }: 110676 + mkDerivation { 110677 + pname = "io-streams"; 110678 + version = "1.3.3.1"; 110679 + sha256 = "9a0849eb2efaf72312bbba672c2a589763c15dde50e93a53c64d2b594b80f544"; 110680 + configureFlags = [ "-fnointeractivetests" ]; 110681 + libraryHaskellDepends = [ 110682 + attoparsec base bytestring bytestring-builder network primitive 110683 + process text time transformers vector zlib-bindings 110684 + ]; 110685 + testHaskellDepends = [ 110686 + attoparsec base bytestring bytestring-builder deepseq directory 110687 + filepath HUnit mtl network primitive process QuickCheck 110688 + test-framework test-framework-hunit test-framework-quickcheck2 text 110689 + time transformers vector zlib zlib-bindings 110690 + ]; 110691 + doCheck = false; 110692 + description = "Simple, composable, and easy-to-use stream I/O"; 110693 + license = stdenv.lib.licenses.bsd3; 110694 }) {}; 110695 110696 "io-streams-http" = callPackage ··· 119680 }: 119681 mkDerivation { 119682 pname = "libravatar"; 119683 + version = "0.1.0.2"; 119684 + sha256 = "3df4437eb2345e46f4a2964c4c8d61b8e56ac936d63c9902227c74eed9671885"; 119685 libraryHaskellDepends = [ 119686 base bytestring crypto-api dns network-uri pureMD5 random SHA url 119687 utf8-string ··· 122672 pname = "lol"; 122673 version = "0.1.0.0"; 122674 sha256 = "be1a72e80ca1f3471b1b630f0407fa6e152ce6410ea7aee86fabda002dff12d0"; 122675 + revision = "1"; 122676 + editedCabalFile = "f70d927711c82b11f9d38d398bf8d450788482693cdbde540331ca50674b8e68"; 122677 libraryHaskellDepends = [ 122678 arithmoi base constraints containers data-default deepseq 122679 MonadRandom mtl numeric-prelude QuickCheck random reflection repa ··· 123373 }: 123374 mkDerivation { 123375 pname = "luminance"; 123376 + version = "0.7.2"; 123377 + sha256 = "0ae406e8958c1e6f2520a01d74a55b70d158198ef0d08bbaf30452dc54e9deab"; 123378 libraryHaskellDepends = [ 123379 base containers contravariant dlist gl linear mtl resourcet 123380 semigroups transformers vector void ··· 127752 ({ mkDerivation, base, containers, directory, filepath, tconfig }: 127753 mkDerivation { 127754 pname = "minimal-configuration"; 127755 + version = "0.1.2"; 127756 + sha256 = "7debae44339df6a1c35e99be9807df430fac30d6c27b606f36fe23deed4d928e"; 127757 libraryHaskellDepends = [ 127758 base containers directory filepath tconfig 127759 ]; 127760 description = "Minimal ini like configuration library with a few extras"; 127761 + license = "unknown"; 127762 }) {}; 127763 127764 "minimorph" = callPackage ··· 137519 }: 137520 mkDerivation { 137521 pname = "opencog-atomspace"; 137522 + version = "0.1.0.2"; 137523 + sha256 = "fc7d96645ef0c14e56ffdbcad9537f0ea766616ac3f1dc105e817a53990a30d1"; 137524 libraryHaskellDepends = [ 137525 base containers directory filepath mtl template-haskell 137526 transformers ··· 142775 license = stdenv.lib.licenses.bsd3; 142776 }) {}; 142777 142778 + "persistent-iproute" = callPackage 142779 + ({ mkDerivation, aeson, aeson-iproute, base, bytestring 142780 + , http-api-data, iproute, path-pieces, persistent, text 142781 + }: 142782 + mkDerivation { 142783 + pname = "persistent-iproute"; 142784 + version = "0.2.1"; 142785 + sha256 = "6788ed3e45195a58af71338f1fddecfbe44e079d0a164afac8bf15934199db33"; 142786 + libraryHaskellDepends = [ 142787 + aeson aeson-iproute base bytestring http-api-data iproute 142788 + path-pieces persistent text 142789 + ]; 142790 + homepage = "https://github.com/greydot/persistent-iproute"; 142791 + description = "Persistent instances for types in iproute"; 142792 + license = stdenv.lib.licenses.bsd3; 142793 + }) {}; 142794 + 142795 "persistent-map" = callPackage 142796 ({ mkDerivation, base, binary, containers, directory, EdisonAPI 142797 , EdisonCore, filepath, LRU, mtl, stm-io-hooks ··· 143284 maintainers = with stdenv.lib.maintainers; [ psibi ]; 143285 }) {}; 143286 143287 + "persistent-postgresql_2_2_1_1" = callPackage 143288 ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit 143289 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143290 HDBC-sqlite3 json loli mps mtl process safe StateVar stm ··· 143294 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143295 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143296 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143297 + libraryHaskellDepends = [ 143298 + aeson base blaze-builder bytestring conduit containers 143299 + HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143300 + HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143301 + ]; 143302 + homepage = "http://www.yesodweb.com/book/persistent"; 143303 + HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143304 + license = stdenv.lib.licenses.mit; 143305 + hydraPlatforms = stdenv.lib.platforms.none; 143306 + maintainers = with stdenv.lib.maintainers; [ psibi ]; 143307 + }) {}; 143308 + 143309 + HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143310 + ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit 143311 + HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143312 + HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143313 + , transformers 143314 + }: 143315 + mkDerivation { 143316 + HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143317 + version = "2.2.1.2"; 143318 + sha256 = "475523d2ac2c9719bf7e4034f97aed79e96c63001ef735b8148b657049e7e83a"; 143319 libraryHaskellDepends = [ 143320 aeson base blaze-builder bytestring conduit containers 143321 HDBC-sqlite3 json loli mps mtl process safe StateVar stm ··· 149424 hydraPlatforms = stdenv.lib.platforms.none; 149425 }) {}; 149426 149427 + "profunctors_5_1_1" = callPackage 149428 ({ mkDerivation, base, comonad, distributive, tagged, transformers 149429 }: 149430 mkDerivation { ··· 149437 homepage = "http://github.com/ekmett/profunctors/"; 149438 description = "Profunctors"; 149439 license = stdenv.lib.licenses.bsd3; 149440 + hydraPlatforms = stdenv.lib.platforms.none; 149441 }) {}; 149442 149443 + "profunctors" = callPackage 149444 ({ mkDerivation, base, bifunctors, comonad, contravariant 149445 , distributive, tagged, transformers 149446 }: ··· 149455 homepage = "http://github.com/ekmett/profunctors/"; 149456 description = "Profunctors"; 149457 license = stdenv.lib.licenses.bsd3; 149458 }) {}; 149459 149460 "progress" = callPackage ··· 154122 }) {}; 154123 154124 "reedsolomon" = callPackage 154125 + ({ mkDerivation, base, bytestring, bytestring-mmap, clock 154126 , criterion, deepseq, exceptions, filepath, gitrev, loop, mtl 154127 , optparse-applicative, primitive, profunctors, QuickCheck, random 154128 , reedsolomon, statistics, tasty, tasty-ant-xml, tasty-hunit ··· 154130 }: 154131 mkDerivation { 154132 pname = "reedsolomon"; 154133 + version = "0.0.2.0"; 154134 + sha256 = "f1e61e07374a43ba48d2e8a152a451328ea343432009681c80a87cce8cd85d1c"; 154135 isLibrary = true; 154136 isExecutable = true; 154137 libraryHaskellDepends = [ ··· 154144 optparse-applicative random statistics vector 154145 ]; 154146 testHaskellDepends = [ 154147 + base bytestring exceptions loop mtl primitive profunctors 154148 QuickCheck random tasty tasty-ant-xml tasty-hunit tasty-quickcheck 154149 vector 154150 ]; ··· 157876 }: 157877 mkDerivation { 157878 pname = "rethinkdb"; 157879 + version = "2.2.0.0"; 157880 + sha256 = "a3e629d72bb63150f764c33e2fe507391ee1e77bd4097114fbca73a5d24ca429"; 157881 isLibrary = true; 157882 isExecutable = true; 157883 libraryHaskellDepends = [ ··· 159361 description = "watches an RSS/Atom feed and writes it to an IRC channel"; 159362 license = stdenv.lib.licenses.bsd3; 159363 hydraPlatforms = stdenv.lib.platforms.none; 159364 + }) {}; 159365 + 159366 + "rtcm" = callPackage 159367 + ({ mkDerivation, base, basic-prelude, tasty, tasty-hunit }: 159368 + mkDerivation { 159369 + pname = "rtcm"; 159370 + version = "0.1.0"; 159371 + sha256 = "efff5ccbb113897027a7a5a24616a498e37d769341c026342ad19f03490bc2a4"; 159372 + libraryHaskellDepends = [ base basic-prelude ]; 159373 + testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; 159374 + homepage = "http://github.com/swift-nav/librtcm"; 159375 + description = "Haskell bindings for RTCM"; 159376 + license = stdenv.lib.licenses.bsd3; 159377 }) {}; 159378 159379 "rtld" = callPackage ··· 172012 }: 172013 mkDerivation { 172014 pname = "sscgi"; 172015 + version = "0.3.1"; 172016 + sha256 = "0925d1a384fae39255bd927f2ffa787e84d270fbd747e703f32ae41af06fcf3b"; 172017 libraryHaskellDepends = [ 172018 attoparsec base bytestring case-insensitive containers Glob 172019 MonadCatchIO-mtl mtl transformers utf8-string ··· 174163 resourcet stm stm-chans test-framework test-framework-hunit 174164 test-framework-quickcheck2 transformers 174165 ]; 174166 + doHaddock = false; 174167 + doCheck = false; 174168 homepage = "https://github.com/wowus/stm-conduit"; 174169 description = "Introduces conduits to channels, and promotes using conduits concurrently"; 174170 license = stdenv.lib.licenses.bsd3; ··· 174780 }) {}; 174781 174782 "streaming" = callPackage 174783 + ({ mkDerivation, base, bytestring, containers, exceptions, mmorph 174784 + , mtl, resourcet, time, transformers, transformers-base 174785 }: 174786 mkDerivation { 174787 pname = "streaming"; 174788 + version = "0.1.3.3"; 174789 + sha256 = "7199654f1bfbbed976264a49eab8de8c53a350e156115fe5a9da0a5a1798e507"; 174790 libraryHaskellDepends = [ 174791 + base bytestring containers exceptions mmorph mtl resourcet time 174792 + transformers transformers-base 174793 ]; 174794 homepage = "https://github.com/michaelt/streaming"; 174795 + description = "an elementary streaming prelude and a general stream type"; 174796 license = stdenv.lib.licenses.bsd3; 174797 }) {}; 174798 174799 "streaming-bytestring" = callPackage 174800 + ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl 174801 + , resourcet, streaming, transformers, transformers-base 174802 }: 174803 mkDerivation { 174804 pname = "streaming-bytestring"; 174805 + version = "0.1.3.0"; 174806 + sha256 = "6573ebde6c87e608c0b82b02c25ac15094b93f1e99bd57aab275ca68d2630a13"; 174807 libraryHaskellDepends = [ 174808 + base bytestring deepseq exceptions mmorph mtl resourcet streaming 174809 + transformers transformers-base 174810 ]; 174811 homepage = "https://github.com/michaelt/streaming-bytestring"; 174812 description = "effectful byte steams, or: bytestring io done right"; ··· 175118 }: 175119 mkDerivation { 175120 pname = "streaming-utils"; 175121 + version = "0.1.3.0"; 175122 + sha256 = "f591d4e31aada0be4b0b9ac28b23a6b16d3c26db0f37b3ccb9e05239ab81e75b"; 175123 libraryHaskellDepends = [ 175124 aeson attoparsec base bytestring http-client http-client-tls 175125 json-stream mtl pipes streaming streaming-bytestring transformers ··· 179883 179884 "templatepg" = callPackage 179885 ({ mkDerivation, base, binary, bytestring, haskell-src-meta, mtl 179886 + , network, parsec, regex-compat, regex-posix, template-haskell 179887 + , time, utf8-string 179888 }: 179889 mkDerivation { 179890 pname = "templatepg"; 179891 + version = "0.2.7"; 179892 + sha256 = "d0b35e35bff5ac9d2605c54fa20586d6286376ae1362dad0e069a65dc9e1002f"; 179893 libraryHaskellDepends = [ 179894 + base binary bytestring haskell-src-meta mtl network parsec 179895 + regex-compat regex-posix template-haskell time utf8-string 179896 ]; 179897 homepage = "https://github.com/jekor/templatepg"; 179898 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 179899 + license = stdenv.lib.licenses.mit; 179900 hydraPlatforms = stdenv.lib.platforms.none; 179901 }) {}; 179902 ··· 190613 }: 190614 mkDerivation { 190615 pname = "validation"; 190616 + version = "0.5.2"; 190617 + sha256 = "dd1a5857ead5b9ceec3839c9b6af7f3096bbc5694e37e34dfd4be7c1d5f35437"; 190618 libraryHaskellDepends = [ 190619 base bifunctors lens mtl semigroupoids semigroups transformers 190620 ]; ··· 191292 ({ mkDerivation, base, fftw, primitive, storable-complex, vector }: 191293 mkDerivation { 191294 pname = "vector-fftw"; 191295 version = "0.1.3.5"; 191296 sha256 = "f4d88d3122c2ea3a92a5dffd78743e8942f261fd7d00724c6aa317adbc59abfe"; 191297 libraryHaskellDepends = [ base primitive storable-complex vector ]; ··· 191299 homepage = "http://hackage.haskell.org/package/vector-fftw"; 191300 description = "A binding to the fftw library for one-dimensional vectors"; 191301 license = stdenv.lib.licenses.bsd3; 191302 }) {inherit (pkgs) fftw;}; 191303 191304 "vector-functorlazy" = callPackage ··· 195912 pname = "warp-tls"; 195913 version = "3.1.4"; 195914 sha256 = "7572b8893160a07051a60323e91553b8911d87d58712c64f997ecced1a5febd7"; 195915 + revision = "1"; 195916 + editedCabalFile = "39cf89625ffec9af354d3e502b6974ca122adf0241c9e1e6815bf4c11fb34535"; 195917 libraryHaskellDepends = [ 195918 base bytestring cprng-aes data-default-class network 195919 streaming-commons tls wai warp ··· 197922 ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 197923 , amazonka-swf, base, basic-prelude, bytestring, conduit 197924 , conduit-extra, exceptions, fast-logger, formatting, http-conduit 197925 + , http-types, lens, monad-control, monad-logger, mtl, mtl-compat 197926 , optparse-applicative, resourcet, safe, shelly, tasty, tasty-hunit 197927 , text, time, transformers, transformers-base, unordered-containers 197928 , uuid, yaml 197929 }: 197930 mkDerivation { 197931 pname = "wolf"; 197932 + version = "0.2.2"; 197933 + sha256 = "73a4d33c24eef17da4f09544f478a65ab73935cc720f94d7a62977917b80428b"; 197934 isLibrary = true; 197935 isExecutable = true; 197936 libraryHaskellDepends = [ 197937 aeson amazonka amazonka-core amazonka-s3 amazonka-swf base 197938 basic-prelude bytestring conduit conduit-extra exceptions 197939 + fast-logger formatting http-conduit http-types lens monad-control 197940 + monad-logger mtl mtl-compat optparse-applicative resourcet safe 197941 + text time transformers transformers-base unordered-containers uuid 197942 + yaml 197943 ]; 197944 executableHaskellDepends = [ 197945 aeson amazonka-core base basic-prelude bytestring ··· 204057 hydraPlatforms = stdenv.lib.platforms.none; 204058 }) {}; 204059 204060 + "yesod-bin_1_4_14" = callPackage 204061 ({ mkDerivation, async, attoparsec, base, base64-bytestring 204062 , blaze-builder, bytestring, Cabal, conduit, conduit-extra 204063 , containers, data-default-class, deepseq, directory, file-embed ··· 204073 pname = "yesod-bin"; 204074 version = "1.4.14"; 204075 sha256 = "6ed15a3ac5084926073c92fa7fd3ad2efa5ff8b4dc17fa4e6b1c109d57717a0c"; 204076 + isLibrary = false; 204077 + isExecutable = true; 204078 + executableHaskellDepends = [ 204079 + async attoparsec base base64-bytestring blaze-builder bytestring 204080 + Cabal conduit conduit-extra containers data-default-class deepseq 204081 + directory file-embed filepath fsnotify ghc ghc-paths http-client 204082 + http-conduit http-reverse-proxy http-types lifted-base network 204083 + optparse-applicative parsec process project-template resourcet 204084 + shakespeare split streaming-commons tar template-haskell text time 204085 + transformers transformers-compat unix-compat unordered-containers 204086 + wai wai-extra warp warp-tls yaml zlib 204087 + ]; 204088 + homepage = "http://www.yesodweb.com/"; 204089 + description = "The yesod helper executable"; 204090 + license = stdenv.lib.licenses.mit; 204091 + hydraPlatforms = stdenv.lib.platforms.none; 204092 + }) {}; 204093 + 204094 + "yesod-bin" = callPackage 204095 + ({ mkDerivation, async, attoparsec, base, base64-bytestring 204096 + , blaze-builder, bytestring, Cabal, conduit, conduit-extra 204097 + , containers, data-default-class, deepseq, directory, file-embed 204098 + , filepath, fsnotify, ghc, ghc-paths, http-client, http-conduit 204099 + , http-reverse-proxy, http-types, lifted-base, network 204100 + , optparse-applicative, parsec, process, project-template 204101 + , resourcet, shakespeare, split, streaming-commons, tar 204102 + , template-haskell, text, time, transformers, transformers-compat 204103 + , unix-compat, unordered-containers, wai, wai-extra, warp, warp-tls 204104 + , yaml, zlib 204105 + }: 204106 + mkDerivation { 204107 + pname = "yesod-bin"; 204108 + version = "1.4.15"; 204109 + sha256 = "85d132bf823a8638db38aace4770c8e4bf1de9fcd39f91f6537e17ae6a04a4d6"; 204110 isLibrary = false; 204111 isExecutable = true; 204112 executableHaskellDepends = [ ··· 204900 hydraPlatforms = stdenv.lib.platforms.none; 204901 }) {}; 204902 204903 + "yesod-core_1_4_15_1" = callPackage 204904 ({ mkDerivation, aeson, async, auto-update, base, blaze-builder 204905 , blaze-html, blaze-markup, byteable, bytestring, case-insensitive 204906 , cereal, clientsession, conduit, conduit-extra, containers, cookie ··· 204917 pname = "yesod-core"; 204918 version = "1.4.15.1"; 204919 sha256 = "a414a0eb14b4b88ad4d6ec22db9837b4ead9c7958cf236476dce963555a75e29"; 204920 + libraryHaskellDepends = [ 204921 + aeson auto-update base blaze-builder blaze-html blaze-markup 204922 + byteable bytestring case-insensitive cereal clientsession conduit 204923 + conduit-extra containers cookie data-default deepseq directory 204924 + exceptions fast-logger http-types lifted-base monad-control 204925 + monad-logger mtl mwc-random old-locale parsec path-pieces primitive 204926 + random resourcet safe semigroups shakespeare template-haskell text 204927 + time transformers transformers-base unix-compat 204928 + unordered-containers vector wai wai-extra wai-logger warp word8 204929 + ]; 204930 + testHaskellDepends = [ 204931 + async base blaze-builder bytestring clientsession conduit 204932 + conduit-extra containers cookie hspec hspec-expectations http-types 204933 + HUnit lifted-base mwc-random network path-pieces QuickCheck random 204934 + resourcet shakespeare streaming-commons template-haskell text 204935 + transformers wai wai-extra 204936 + ]; 204937 + homepage = "http://www.yesodweb.com/"; 204938 + description = "Creation of type-safe, RESTful web applications"; 204939 + license = stdenv.lib.licenses.mit; 204940 + hydraPlatforms = stdenv.lib.platforms.none; 204941 + }) {}; 204942 + 204943 + "yesod-core" = callPackage 204944 + ({ mkDerivation, aeson, async, auto-update, base, blaze-builder 204945 + , blaze-html, blaze-markup, byteable, bytestring, case-insensitive 204946 + , cereal, clientsession, conduit, conduit-extra, containers, cookie 204947 + , data-default, deepseq, directory, exceptions, fast-logger, hspec 204948 + , hspec-expectations, http-types, HUnit, lifted-base, monad-control 204949 + , monad-logger, mtl, mwc-random, network, old-locale, parsec 204950 + , path-pieces, primitive, QuickCheck, random, resourcet, safe 204951 + , semigroups, shakespeare, streaming-commons, template-haskell 204952 + , text, time, transformers, transformers-base, unix-compat 204953 + , unordered-containers, vector, wai, wai-extra, wai-logger, warp 204954 + , word8 204955 + }: 204956 + mkDerivation { 204957 + pname = "yesod-core"; 204958 + version = "1.4.16"; 204959 + sha256 = "26bab99551e7f6318f367947606129a9360f3a00e04c3ed5d783de9878ebd268"; 204960 libraryHaskellDepends = [ 204961 aeson auto-update base blaze-builder blaze-html blaze-markup 204962 byteable bytestring case-insensitive cereal clientsession conduit ··· 205338 hydraPlatforms = stdenv.lib.platforms.none; 205339 }) {}; 205340 205341 + "yesod-form_1_4_5" = callPackage 205342 ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html 205343 , blaze-markup, byteable, bytestring, containers, data-default 205344 , email-validate, hspec, network-uri, persistent, resourcet ··· 205349 pname = "yesod-form"; 205350 version = "1.4.5"; 205351 sha256 = "f9a6e9590588f813a159f5fcccbd9ebed8a94c72e82271d19dae945c54c13ccf"; 205352 + libraryHaskellDepends = [ 205353 + aeson attoparsec base blaze-builder blaze-html blaze-markup 205354 + byteable bytestring containers data-default email-validate 205355 + network-uri persistent resourcet semigroups shakespeare 205356 + template-haskell text time transformers wai xss-sanitize yesod-core 205357 + yesod-persistent 205358 + ]; 205359 + testHaskellDepends = [ base hspec text time ]; 205360 + homepage = "http://www.yesodweb.com/"; 205361 + description = "Form handling support for Yesod Web Framework"; 205362 + license = stdenv.lib.licenses.mit; 205363 + hydraPlatforms = stdenv.lib.platforms.none; 205364 + }) {}; 205365 + 205366 + "yesod-form" = callPackage 205367 + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html 205368 + , blaze-markup, byteable, bytestring, containers, data-default 205369 + , email-validate, hspec, network-uri, persistent, resourcet 205370 + , semigroups, shakespeare, template-haskell, text, time 205371 + , transformers, wai, xss-sanitize, yesod-core, yesod-persistent 205372 + }: 205373 + mkDerivation { 205374 + pname = "yesod-form"; 205375 + version = "1.4.6"; 205376 + sha256 = "1a20f58e0f06b92afc5bd31b5ab6b1d5c6645e2f7fd134c4b2e325d818b50e66"; 205377 libraryHaskellDepends = [ 205378 aeson attoparsec base blaze-builder blaze-html blaze-markup 205379 byteable bytestring containers data-default email-validate
-11
pkgs/development/interpreters/perl/5.16/cpp-precomp.patch
··· 1 - --- a/hints/darwin.sh 2013-05-08 11:13:45.000000000 -0600 2 - +++ b/hints/darwin.sh 2013-05-08 11:15:04.000000000 -0600 3 - @@ -129,7 +129,7 @@ 4 - 5 - # Avoid Apple's cpp precompiler, better for extensions 6 - if [ "X`echo | ${cc} -no-cpp-precomp -E - 2>&1 >/dev/null`" = "X" ]; then 7 - - cppflags="${cppflags} -no-cpp-precomp" 8 - + #cppflags="${cppflags} -no-cpp-precomp" 9 - 10 - # This is necessary because perl's build system doesn't 11 - # apply cppflags to cc compile lines as it should.
···
-83
pkgs/development/interpreters/perl/5.16/default.nix
··· 1 - { lib, stdenv, fetchurl, enableThreading ? true }: 2 - 3 - let 4 - 5 - libc = if stdenv.cc.libc or null != null then stdenv.cc.libc else "/usr"; 6 - 7 - in 8 - 9 - stdenv.mkDerivation rec { 10 - name = "perl-5.16.3"; 11 - 12 - src = fetchurl { 13 - url = "mirror://cpan/src/${name}.tar.gz"; 14 - sha256 = "1dpd9lhc4723wmsn4dsn4m320qlqgyw28bvcbhnfqp2nl3f0ikv9"; 15 - }; 16 - 17 - patches = 18 - [ # Do not look in /usr etc. for dependencies. 19 - ./no-sys-dirs.patch 20 - ./no-impure-config-time.patch 21 - ./fixed-man-page-date.patch 22 - ./no-date-in-perl-binary.patch 23 - ] 24 - ++ lib.optional stdenv.isSunOS ./ld-shared.patch 25 - ++ lib.optional stdenv.isDarwin [ ./cpp-precomp.patch ./no-libutil.patch ] ; 26 - 27 - # There's an annoying bug on sandboxed Darwin in Perl's Cwd.pm where it looks for pwd 28 - # in /bin/pwd and /usr/bin/pwd and then falls back on just "pwd" if it can't get them 29 - # while at the same time erasing the PATH environment variable so it unconditionally 30 - # fails. The code in question is guarded by a check for Mac OS, but the patch below 31 - # doesn't have any runtime effect on other platforms. 32 - postPatch = '' 33 - pwd="$(type -P pwd)" 34 - substituteInPlace dist/Cwd/Cwd.pm \ 35 - --replace "pwd_cmd = 'pwd'" "pwd_cmd = '$pwd'" 36 - ''; 37 - 38 - # Build a thread-safe Perl with a dynamic libperls.o. We need the 39 - # "installstyle" option to ensure that modules are put under 40 - # $out/lib/perl5 - this is the general default, but because $out 41 - # contains the string "perl", Configure would select $out/lib. 42 - # Miniperl needs -lm. perl needs -lrt. 43 - configureFlags = 44 - [ "-de" 45 - "-Uinstallusrbinperl" 46 - "-Dinstallstyle=lib/perl5" 47 - "-Duseshrplib" 48 - "-Dlocincpth=${libc}/include" 49 - "-Dloclibpth=${libc}/lib" 50 - ] 51 - ++ lib.optional enableThreading "-Dusethreads"; 52 - 53 - configureScript = "${stdenv.shell} ./Configure"; 54 - 55 - dontAddPrefix = true; 56 - 57 - enableParallelBuilding = true; 58 - 59 - preConfigure = 60 - '' 61 - configureFlags="$configureFlags -Dprefix=$out -Dman1dir=$out/share/man/man1 -Dman3dir=$out/share/man/man3" 62 - 63 - ${lib.optionalString stdenv.isArm '' 64 - configureFlagsArray=(-Dldflags="-lm -lrt") 65 - ''} 66 - 67 - ${lib.optionalString stdenv.isCygwin '' 68 - cp cygwin/cygwin.c{,.bak} 69 - echo "#define PERLIO_NOT_STDIO 0" > tmp 70 - cat tmp cygwin/cygwin.c.bak > cygwin/cygwin.c 71 - ''} 72 - ''; 73 - 74 - preBuild = lib.optionalString (!(stdenv ? cc && stdenv.cc.nativeTools)) 75 - '' 76 - # Make Cwd work on NixOS (where we don't have a /bin/pwd). 77 - substituteInPlace dist/Cwd/Cwd.pm --replace "'/bin/pwd'" "'$(type -tP pwd)'" 78 - ''; 79 - 80 - setupHook = ./setup-hook.sh; 81 - 82 - passthru.libPrefix = "lib/perl5/site_perl"; 83 - }
···
-11
pkgs/development/interpreters/perl/5.16/fixed-man-page-date.patch
··· 1 - --- a/cpan/podlators/lib/Pod/Man.pm 2014-04-07 06:25:23.730505243 +0200 2 - +++ b/cpan/podlators/lib/Pod/Man.pm 2014-04-07 06:26:40.816552603 +0200 3 - @@ -768,7 +768,7 @@ 4 - } else { 5 - ($name, $section) = $self->devise_title; 6 - } 7 - - my $date = $$self{date} || $self->devise_date; 8 - + my $date = "1970-01-01"; # Fixed date for NixOS, orig: $$self{date} || $self->devise_date; 9 - $self->preamble ($name, $section, $date) 10 - unless $self->bare_output or DEBUG > 9; 11 -
···
-11
pkgs/development/interpreters/perl/5.16/ld-shared.patch
··· 1 - --- perl-5.16.2/hints/solaris_2.sh.orig 2013-02-14 19:29:49.453988140 +0000 2 - +++ perl-5.16.2/hints/solaris_2.sh 2013-02-14 19:30:31.681631019 +0000 3 - @@ -568,7 +568,7 @@ 4 - # ccflags="$ccflags -Wa,`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`" 5 - # fi 6 - ldflags="$ldflags -m64" 7 - - lddlflags="$lddlflags -G -m64" 8 - + lddlflags="$lddlflags -shared -m64" 9 - ;; 10 - *) 11 - getconfccflags="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
···
-11
pkgs/development/interpreters/perl/5.16/no-date-in-perl-binary.patch
··· 1 - --- a/perl.c 2014-04-07 07:58:01.402831615 +0200 2 - +++ b/perl.c 2014-04-07 07:59:38.556945298 +0200 3 - @@ -1754,7 +1754,7 @@ 4 - PUSHs(Perl_newSVpvn_flags(aTHX_ non_bincompat_options, 5 - sizeof(non_bincompat_options) - 1, SVs_TEMP)); 6 - 7 - -#ifdef __DATE__ 8 - +#if 0 9 - # ifdef __TIME__ 10 - PUSHs(Perl_newSVpvn_flags(aTHX_ 11 - STR_WITH_LEN("Compiled at " __DATE__ " " __TIME__),
···
-11
pkgs/development/interpreters/perl/5.16/no-impure-config-time.patch
··· 1 - --- a/Configure 2014-04-05 20:21:33.714635700 +0200 2 - +++ b/Configure 2014-04-05 20:23:23.377441026 +0200 3 - @@ -3609,6 +3609,8 @@ 4 - 5 - : who configured the system 6 - cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1` 7 - +cf_time='Thu Jan 1 00:00:01 UTC 1970' 8 - + 9 - case "$cf_by" in 10 - "") 11 - cf_by=`(logname) 2>/dev/null`
···
-12
pkgs/development/interpreters/perl/5.16/no-libutil.patch
··· 1 - diff -ru -x '*~' perl-5.14.2-orig/Configure perl-5.14.2/Configure 2 - --- perl-5.14.2-orig/Configure 2011-09-26 11:44:34.000000000 +0200 3 - +++ perl-5.14.2/Configure 2012-02-16 17:24:50.779839039 +0100 4 - @@ -1368,7 +1368,7 @@ 5 - : List of libraries we want. 6 - : If anyone needs extra -lxxx, put those in a hint file. 7 - libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun" 8 - -libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD" 9 - +libswanted="$libswanted m crypt sec c cposix posix ucb bsd BSD" 10 - : We probably want to search /usr/shlib before most other libraries. 11 - : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. 12 - glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
···
-225
pkgs/development/interpreters/perl/5.16/no-sys-dirs.patch
··· 1 - diff --git a/Configure b/Configure 2 - index fdbbf20..ba1fd07 100755 3 - --- a/Configure 4 - +++ b/Configure 5 - @@ -106,15 +106,7 @@ if test -d c:/. || ( uname -a | grep -i 'os\(/\|\)2' ) 2>&1 >/dev/null ; then 6 - fi 7 - 8 - : Proper PATH setting 9 - -paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin' 10 - -paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin" 11 - -paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin" 12 - -paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin" 13 - -paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb" 14 - -paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /opt/ansic/bin /usr/ccs/bin" 15 - -paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib" 16 - -paths="$paths /sbin /usr/sbin /usr/libexec" 17 - -paths="$paths /system/gnu_library/bin" 18 - +paths='' 19 - 20 - for p in $paths 21 - do 22 - @@ -1323,8 +1315,7 @@ archobjs='' 23 - archname='' 24 - : Possible local include directories to search. 25 - : Set locincpth to "" in a hint file to defeat local include searches. 26 - -locincpth="/usr/local/include /opt/local/include /usr/gnu/include" 27 - -locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include" 28 - +locincpth="" 29 - : 30 - : no include file wanted by default 31 - inclwanted='' 32 - @@ -1335,17 +1326,12 @@ DEBUGGING='' 33 - 34 - libnames='' 35 - : change the next line if compiling for Xenix/286 on Xenix/386 36 - -xlibpth='/usr/lib/386 /lib/386' 37 - +xlibpth='' 38 - : Possible local library directories to search. 39 - -loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib" 40 - -loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib" 41 - +loclibpth="" 42 - 43 - : general looking path for locating libraries 44 - -glibpth="/lib /usr/lib $xlibpth" 45 - -glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib" 46 - -test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth" 47 - -test -f /shlib/libc.so && glibpth="/shlib $glibpth" 48 - -test -d /usr/lib64 && glibpth="$glibpth /lib64 /usr/lib64 /usr/local/lib64" 49 - +glibpth="" 50 - 51 - : Private path used by Configure to find libraries. Its value 52 - : is prepended to libpth. This variable takes care of special 53 - @@ -1380,8 +1366,6 @@ libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun" 54 - libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD" 55 - : We probably want to search /usr/shlib before most other libraries. 56 - : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. 57 - -glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` 58 - -glibpth="/usr/shlib $glibpth" 59 - : Do not use vfork unless overridden by a hint file. 60 - usevfork=false 61 - 62 - @@ -2389,7 +2373,6 @@ uname 63 - zip 64 - " 65 - pth=`echo $PATH | sed -e "s/$p_/ /g"` 66 - -pth="$pth /lib /usr/lib" 67 - for file in $loclist; do 68 - eval xxx=\$$file 69 - case "$xxx" in 70 - @@ -4708,7 +4691,7 @@ $rm -f testcpp.c testcpp.out 71 - : Set private lib path 72 - case "$plibpth" in 73 - '') if ./mips; then 74 - - plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib" 75 - + plibpth="$incpath/usr/lib" 76 - fi;; 77 - esac 78 - case "$libpth" in 79 - @@ -8354,13 +8337,8 @@ esac 80 - echo " " 81 - case "$sysman" in 82 - '') 83 - - syspath='/usr/share/man/man1 /usr/man/man1' 84 - - syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1" 85 - - syspath="$syspath /usr/man/u_man/man1" 86 - - syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1" 87 - - syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1" 88 - - syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1" 89 - - sysman=`./loc . /usr/man/man1 $syspath` 90 - + syspath='' 91 - + sysman='' 92 - ;; 93 - esac 94 - if $test -d "$sysman"; then 95 - @@ -19742,9 +19720,10 @@ $rm_try tryp 96 - case "$full_ar" in 97 - '') full_ar=$ar ;; 98 - esac 99 - +full_ar=ar 100 - 101 - : Store the full pathname to the sed program for use in the C program 102 - -full_sed=$sed 103 - +full_sed=sed 104 - 105 - : see what type gids are declared as in the kernel 106 - echo " " 107 - diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL 108 - index 439f254..2cdfdb0 100644 109 - --- a/ext/Errno/Errno_pm.PL 110 - +++ b/ext/Errno/Errno_pm.PL 111 - @@ -137,11 +137,7 @@ sub get_files { 112 - if ($dep =~ /(\S+errno\.h)/) { 113 - $file{$1} = 1; 114 - } 115 - - } elsif ($^O eq 'linux' && 116 - - $Config{gccversion} ne '' && 117 - - $Config{gccversion} !~ /intel/i 118 - - # might be using, say, Intel's icc 119 - - ) { 120 - + } elsif (0) { 121 - # Some Linuxes have weird errno.hs which generate 122 - # no #file or #line directives 123 - my $linux_errno_h = -e '/usr/include/errno.h' ? 124 - diff --git a/hints/freebsd.sh b/hints/freebsd.sh 125 - index a67c0bb..0f07ca5 100644 126 - --- a/hints/freebsd.sh 127 - +++ b/hints/freebsd.sh 128 - @@ -119,21 +119,21 @@ case "$osvers" in 129 - objformat=`/usr/bin/objformat` 130 - if [ x$objformat = xaout ]; then 131 - if [ -e /usr/lib/aout ]; then 132 - - libpth="/usr/lib/aout /usr/local/lib /usr/lib" 133 - - glibpth="/usr/lib/aout /usr/local/lib /usr/lib" 134 - + libpth="" 135 - + glibpth="" 136 - fi 137 - lddlflags='-Bshareable' 138 - else 139 - - libpth="/usr/lib /usr/local/lib" 140 - - glibpth="/usr/lib /usr/local/lib" 141 - + libpth="" 142 - + glibpth="" 143 - ldflags="-Wl,-E " 144 - lddlflags="-shared " 145 - fi 146 - cccdlflags='-DPIC -fPIC' 147 - ;; 148 - *) 149 - - libpth="/usr/lib /usr/local/lib" 150 - - glibpth="/usr/lib /usr/local/lib" 151 - + libpth="" 152 - + glibpth="" 153 - ldflags="-Wl,-E " 154 - lddlflags="-shared " 155 - cccdlflags='-DPIC -fPIC' 156 - diff --git a/hints/linux.sh b/hints/linux.sh 157 - index 688c68d..c12f5f5 100644 158 - --- a/hints/linux.sh 159 - +++ b/hints/linux.sh 160 - @@ -60,17 +60,6 @@ libswanted="$*" 161 - # Debian 4.0 puts ndbm in the -lgdbm_compat library. 162 - libswanted="$libswanted gdbm_compat" 163 - 164 - -# If you have glibc, then report the version for ./myconfig bug reporting. 165 - -# (Configure doesn't need to know the specific version since it just uses 166 - -# gcc to load the library for all tests.) 167 - -# We don't use __GLIBC__ and __GLIBC_MINOR__ because they 168 - -# are insufficiently precise to distinguish things like 169 - -# libc-2.0.6 and libc-2.0.7. 170 - -if test -L /lib/libc.so.6; then 171 - - libc=`ls -l /lib/libc.so.6 | awk '{print $NF}'` 172 - - libc=/lib/$libc 173 - -fi 174 - - 175 - # Configure may fail to find lstat() since it's a static/inline 176 - # function in <sys/stat.h>. 177 - d_lstat=define 178 - @@ -154,24 +143,6 @@ case "$optimize" in 179 - ;; 180 - esac 181 - 182 - -# Ubuntu 11.04 (and later, presumably) doesn't keep most libraries 183 - -# (such as -lm) in /lib or /usr/lib. So we have to ask gcc to tell us 184 - -# where to look. We don't want gcc's own libraries, however, so we 185 - -# filter those out. 186 - -# This could be conditional on Unbuntu, but other distributions may 187 - -# follow suit, and this scheme seems to work even on rather old gcc's. 188 - -# This unconditionally uses gcc because even if the user is using another 189 - -# compiler, we still need to find the math library and friends, and I don't 190 - -# know how other compilers will cope with that situation. 191 - -# Morever, if the user has their own gcc earlier in $PATH than the system gcc, 192 - -# we don't want its libraries. So we try to prefer the system gcc 193 - -# Still, as an escape hatch, allow Configure command line overrides to 194 - -# plibpth to bypass this check. 195 - -if [ -x /usr/bin/gcc ] ; then 196 - - gcc=/usr/bin/gcc 197 - -else 198 - - gcc=gcc 199 - -fi 200 - 201 - case "$plibpth" in 202 - '') plibpth=`LANG=C LC_ALL=C $gcc -print-search-dirs | grep libraries | 203 - @@ -345,22 +316,6 @@ sparc*) 204 - ;; 205 - esac 206 - 207 - -# SuSE8.2 has /usr/lib/libndbm* which are ld scripts rather than 208 - -# true libraries. The scripts cause binding against static 209 - -# version of -lgdbm which is a bad idea. So if we have 'nm' 210 - -# make sure it can read the file 211 - -# NI-S 2003/08/07 212 - -if [ -r /usr/lib/libndbm.so -a -x /usr/bin/nm ] ; then 213 - - if /usr/bin/nm /usr/lib/libndbm.so >/dev/null 2>&1 ; then 214 - - echo 'Your shared -lndbm seems to be a real library.' 215 - - else 216 - - echo 'Your shared -lndbm is not a real library.' 217 - - set `echo X "$libswanted "| sed -e 's/ ndbm / /'` 218 - - shift 219 - - libswanted="$*" 220 - - fi 221 - -fi 222 - - 223 - 224 - # This script UU/usethreads.cbu will get 'called-back' by Configure 225 - # after it has prompted the user for whether to use threads.
···
-5
pkgs/development/interpreters/perl/5.16/setup-hook.sh
··· 1 - addPerlLibPath () { 2 - addToSearchPath PERL5LIB $1/lib/perl5/site_perl 3 - } 4 - 5 - envHooks+=(addPerlLibPath)
···
+5 -1
pkgs/development/interpreters/ruby/bundler-env/default-gem-config.nix
··· 17 # This seperates "what to build" (the exact gem versions) from "how to build" 18 # (to make gems behave if necessary). 19 20 - { lib, fetchurl, writeScript, ruby, libxml2, libxslt, python, stdenv, which 21 , libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick 22 , pkgconfig , ncurses, xapian, gpgme, utillinux, fetchpatch, tzdata, icu, libffi 23 , cmake, libssh2, openssl, mysql, darwin ··· 103 --replace 'which gpg2' \ 104 '${which}/bin/which gpg2' 105 ''; 106 }; 107 108 therubyracer = attrs: {
··· 17 # This seperates "what to build" (the exact gem versions) from "how to build" 18 # (to make gems behave if necessary). 19 20 + { lib, fetchurl, writeScript, ruby, kerberos, libxml2, libxslt, python, stdenv, which 21 , libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick 22 , pkgconfig , ncurses, xapian, gpgme, utillinux, fetchpatch, tzdata, icu, libffi 23 , cmake, libssh2, openssl, mysql, darwin ··· 103 --replace 'which gpg2' \ 104 '${which}/bin/which gpg2' 105 ''; 106 + }; 107 + 108 + timfel-krb5-auth = attrs: { 109 + buildInputs = [ kerberos ]; 110 }; 111 112 therubyracer = attrs: {
+9 -6
pkgs/development/libraries/indilib/default.nix
··· 1 { stdenv, fetchurl, cmake, cfitsio, libusb, zlib, boost, libnova 2 - , libjpeg, gsl }: 3 4 stdenv.mkDerivation { 5 - name = "indilib-1.0.0"; 6 7 src = fetchurl { 8 - url = mirror://sourceforge/indi/libindi_1.0.0.tar.gz; 9 - sha256 = "0f66jykpjk8mv50lc3rywbqj9mqr4p2n1igfb1222h5fs83c1jhm"; 10 }; 11 12 patches = [ ./udev-dir.patch ] ; 13 14 - propagatedBuildInputs = [ cmake cfitsio libusb zlib boost 15 libnova libjpeg gsl ]; 16 17 meta = { 18 - homepage = http://indi.sf.net; 19 }; 20 }
··· 1 { stdenv, fetchurl, cmake, cfitsio, libusb, zlib, boost, libnova 2 + , curl, libjpeg, gsl }: 3 4 stdenv.mkDerivation { 5 + name = "indilib-1.1.0"; 6 7 src = fetchurl { 8 + url = mirror://sourceforge/indi/libindi_1.1.0.tar.gz; 9 + sha256 = "1bs6lkwqd4aashg93mqqkc7nrg7fbx9mdw85qs5263jqa6sr780w"; 10 }; 11 12 patches = [ ./udev-dir.patch ] ; 13 14 + buildInputs = [ curl cmake cfitsio libusb zlib boost 15 libnova libjpeg gsl ]; 16 17 meta = { 18 + homepage = http://www.indilib.org/; 19 + license = stdenv.lib.licenses.lgpl2Plus; 20 + description = "Implementaion of the INDI protocol for POSIX operating systems"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+2 -2
pkgs/development/libraries/libassuan/default.nix
··· 1 { fetchurl, stdenv, pth, libgpgerror }: 2 3 stdenv.mkDerivation rec { 4 - name = "libassuan-2.3.0"; 5 6 src = fetchurl { 7 url = "mirror://gnupg/libassuan/${name}.tar.bz2"; 8 - sha256 = "0lh4698pgb2wjrrrbdk14llizad5l74f8pdbg4ma4zq4fbsrkjc7"; 9 }; 10 11 buildInputs = [ libgpgerror pth ];
··· 1 { fetchurl, stdenv, pth, libgpgerror }: 2 3 stdenv.mkDerivation rec { 4 + name = "libassuan-2.4.2"; 5 6 src = fetchurl { 7 url = "mirror://gnupg/libassuan/${name}.tar.bz2"; 8 + sha256 = "086bbcdnvs48qq5g4iac7dpk76j0q3jrp16mchdvyx0b720xq1mv"; 9 }; 10 11 buildInputs = [ libgpgerror pth ];
+2 -2
pkgs/development/libraries/openssl/1.0.2.x.nix
··· 8 stdenv.cross; 9 in 10 stdenv.mkDerivation rec { 11 - name = "openssl-1.0.2d"; 12 13 src = fetchurl { 14 urls = [ 15 "http://www.openssl.org/source/${name}.tar.gz" 16 "http://openssl.linux-mirror.org/source/${name}.tar.gz" 17 ]; 18 - sha1 = "d01d17b44663e8ffa6a33a5a30053779d9593c3d"; 19 }; 20 21 patches = optional stdenv.isCygwin ./1.0.1-cygwin64.patch;
··· 8 stdenv.cross; 9 in 10 stdenv.mkDerivation rec { 11 + name = "openssl-1.0.2e"; 12 13 src = fetchurl { 14 urls = [ 15 "http://www.openssl.org/source/${name}.tar.gz" 16 "http://openssl.linux-mirror.org/source/${name}.tar.gz" 17 ]; 18 + sha256 = "1zqb1rff1wikc62a7vj5qxd1k191m8qif5d05mwdxz2wnzywlg72"; 19 }; 20 21 patches = optional stdenv.isCygwin ./1.0.1-cygwin64.patch;
+2 -2
pkgs/development/libraries/openssl/default.nix
··· 8 stdenv.cross; 9 in 10 stdenv.mkDerivation rec { 11 - name = "openssl-1.0.1p"; 12 13 src = fetchurl { 14 urls = [ 15 "http://www.openssl.org/source/${name}.tar.gz" 16 "http://openssl.linux-mirror.org/source/${name}.tar.gz" 17 ]; 18 - sha1 = "9d1977cc89242cd11471269ece2ed4650947c046"; 19 }; 20 21 outputs = [ "out" "man" ];
··· 8 stdenv.cross; 9 in 10 stdenv.mkDerivation rec { 11 + name = "openssl-1.0.1q"; 12 13 src = fetchurl { 14 urls = [ 15 "http://www.openssl.org/source/${name}.tar.gz" 16 "http://openssl.linux-mirror.org/source/${name}.tar.gz" 17 ]; 18 + sha256 = "1dvz0hx7fjxag06b51pawy154y6d2xajm5rwxmfnlq7ax628nrdk"; 19 }; 20 21 outputs = [ "out" "man" ];
+24
pkgs/development/python-modules/django/1.7.7-gis-libs.template.patch
···
··· 1 + diff --git a/django/contrib/gis/gdal/libgdal.py b/django/contrib/gis/gdal/libgdal.py 2 + --- a/django/contrib/gis/gdal/libgdal.py 3 + +++ b/django/contrib/gis/gdal/libgdal.py 4 + @@ -17,7 +17,7 @@ try: 5 + lib_path = settings.GDAL_LIBRARY_PATH 6 + except (AttributeError, EnvironmentError, 7 + ImportError, ImproperlyConfigured): 8 + - lib_path = None 9 + + lib_path = "@gdal@/lib/libgdal.so" 10 + 11 + if lib_path: 12 + lib_names = None 13 + diff --git a/django/contrib/gis/geos/libgeos.py b/django/contrib/gis/geos/libgeos.py 14 + --- a/django/contrib/gis/geos/libgeos.py 15 + +++ b/django/contrib/gis/geos/libgeos.py 16 + @@ -23,7 +23,7 @@ try: 17 + lib_path = settings.GEOS_LIBRARY_PATH 18 + except (AttributeError, EnvironmentError, 19 + ImportError, ImproperlyConfigured): 20 + - lib_path = None 21 + + lib_path = "@geos@/lib/libgeos_c.so" 22 + 23 + # Setting the appropriate names for the GEOS-C library. 24 + if lib_path:
+3 -2
pkgs/development/tools/analysis/kcov/default.nix
··· 1 - {stdenv, fetchurl, cmake, pkgconfig, libelf, zlib, curl, elfutils, python, libiberty, binutils}: 2 stdenv.mkDerivation rec { 3 name = "kcov-${version}"; 4 version = "29"; ··· 8 sha256 = "0nspf1bfq8zv7zmcmvkbgg3c90k10qcd56gyg8ln5z64nadvha9d"; 9 }; 10 11 - buildInputs = [ cmake pkgconfig libelf zlib curl elfutils python libiberty binutils ]; 12 13 meta = with stdenv.lib; { 14 description = "code coverage tester for compiled programs, Python scripts and shell scripts";
··· 1 + {stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}: 2 stdenv.mkDerivation rec { 3 name = "kcov-${version}"; 4 version = "29"; ··· 8 sha256 = "0nspf1bfq8zv7zmcmvkbgg3c90k10qcd56gyg8ln5z64nadvha9d"; 9 }; 10 11 + preConfigure = "patchShebangs src/bin-to-c-source.py"; 12 + buildInputs = [ cmake pkgconfig zlib curl elfutils python libiberty binutils ]; 13 14 meta = with stdenv.lib; { 15 description = "code coverage tester for compiled programs, Python scripts and shell scripts";
+119 -38
pkgs/development/tools/chefdk/Gemfile.lock
··· 1 GEM 2 remote: https://rubygems.org/ 3 specs: 4 - chef (12.0.3) 5 - chef-zero (~> 3.2) 6 diff-lcs (~> 1.2, >= 1.2.4) 7 erubis (~> 2.7) 8 - ffi-yajl (~> 1.2) 9 highline (~> 1.6, >= 1.6.9) 10 mixlib-authentication (~> 1.3) 11 mixlib-cli (~> 1.4) 12 - mixlib-config (~> 2.0) 13 mixlib-log (~> 1.3) 14 - mixlib-shellout (>= 2.0.0.rc.0, < 3.0) 15 net-ssh (~> 2.6) 16 net-ssh-multi (~> 1.1) 17 - ohai (~> 8.0) 18 plist (~> 3.1.0) 19 pry (~> 0.9) 20 - chef-dk (0.4.0) 21 - chef (~> 12.0) 22 - cookbook-omnifetch (~> 0.2) 23 - ffi-yajl (~> 1.0) 24 mixlib-cli (~> 1.5) 25 - mixlib-shellout (>= 2.0.0.rc.0, < 3.0.0) 26 - solve (~> 1.2) 27 - chef-zero (3.2.1) 28 - ffi-yajl (~> 1.1) 29 - hashie (~> 2.0) 30 mixlib-log (~> 1.3) 31 rack 32 uuidtools (~> 2.1) 33 coderay (1.1.0) 34 - cookbook-omnifetch (0.2.0) 35 minitar (~> 0.5.4) 36 - dep-selector-libgecode (1.0.2) 37 - dep_selector (1.0.3) 38 - dep-selector-libgecode (~> 1.0) 39 - ffi (~> 1.9) 40 diff-lcs (1.2.5) 41 erubis (2.7.0) 42 - ffi (1.9.6) 43 - ffi-yajl (1.4.0) 44 - ffi (~> 1.5) 45 libyajl2 (~> 1.2) 46 - hashie (2.1.2) 47 - highline (1.7.1) 48 ipaddress (0.8.0) 49 libyajl2 (1.2.0) 50 method_source (0.8.2) 51 - mime-types (2.4.3) 52 minitar (0.5.4) 53 mixlib-authentication (1.3.0) 54 mixlib-log 55 mixlib-cli (1.5.0) 56 - mixlib-config (2.1.0) 57 mixlib-log (1.6.0) 58 - mixlib-shellout (2.0.1) 59 - net-dhcp (1.3.2) 60 net-ssh (2.9.2) 61 net-ssh-gateway (1.2.0) 62 net-ssh (>= 2.6.5) 63 - net-ssh-multi (1.2.0) 64 net-ssh (>= 2.6.5) 65 net-ssh-gateway (>= 1.2.0) 66 - ohai (8.1.1) 67 ffi (~> 1.9) 68 - ffi-yajl (~> 1.1) 69 ipaddress 70 mime-types (~> 2.0) 71 mixlib-cli 72 mixlib-config (~> 2.0) 73 mixlib-log 74 mixlib-shellout (~> 2.0) 75 - net-dhcp 76 rake (~> 10.1) 77 systemu (~> 2.6.4) 78 wmi-lite (~> 1.0) 79 plist (3.1.0) 80 - pry (0.10.1) 81 coderay (~> 1.1.0) 82 method_source (~> 0.8.1) 83 slop (~> 3.4) 84 - rack (1.6.0) 85 rake (10.4.2) 86 semverse (1.2.1) 87 slop (3.6.0) 88 - solve (1.2.1) 89 - dep_selector (~> 1.0) 90 semverse (~> 1.1) 91 - systemu (2.6.4) 92 uuidtools (2.1.5) 93 wmi-lite (1.0.0) 94 95 PLATFORMS ··· 97 98 DEPENDENCIES 99 chef-dk
··· 1 GEM 2 remote: https://rubygems.org/ 3 specs: 4 + builder (3.2.2) 5 + chef (12.5.1) 6 + chef-config (= 12.5.1) 7 + chef-zero (~> 4.2, >= 4.2.2) 8 diff-lcs (~> 1.2, >= 1.2.4) 9 erubis (~> 2.7) 10 + ffi-yajl (~> 2.2) 11 highline (~> 1.6, >= 1.6.9) 12 mixlib-authentication (~> 1.3) 13 mixlib-cli (~> 1.4) 14 mixlib-log (~> 1.3) 15 + mixlib-shellout (~> 2.0) 16 net-ssh (~> 2.6) 17 net-ssh-multi (~> 1.1) 18 + ohai (>= 8.6.0.alpha.1, < 9) 19 plist (~> 3.1.0) 20 pry (~> 0.9) 21 + rspec-core (~> 3.2) 22 + rspec-expectations (~> 3.2) 23 + rspec-mocks (~> 3.2) 24 + rspec_junit_formatter (~> 0.2.0) 25 + serverspec (~> 2.7) 26 + specinfra (~> 2.10) 27 + syslog-logger (~> 1.6) 28 + chef-config (12.5.1) 29 + mixlib-config (~> 2.0) 30 + mixlib-shellout (~> 2.0) 31 + chef-dk (0.10.0) 32 + chef (~> 12.0, >= 12.2.1) 33 + chef-provisioning (~> 1.2) 34 + cookbook-omnifetch (~> 0.2, >= 0.2.2) 35 + diff-lcs (~> 1.0) 36 + ffi-yajl (>= 1.0, < 3.0) 37 + minitar (~> 0.5.4) 38 mixlib-cli (~> 1.5) 39 + mixlib-shellout (~> 2.0) 40 + paint (~> 1.0) 41 + solve (~> 2.0, >= 2.0.1) 42 + chef-provisioning (1.5.0) 43 + cheffish (~> 1.3, >= 1.3.1) 44 + inifile (~> 2.0) 45 + mixlib-install (~> 0.7.0) 46 + net-scp (~> 1.0) 47 + net-ssh (~> 2.0) 48 + net-ssh-gateway (~> 1.2.0) 49 + winrm (~> 1.3) 50 + chef-zero (4.3.2) 51 + ffi-yajl (~> 2.2) 52 + hashie (>= 2.0, < 4.0) 53 mixlib-log (~> 1.3) 54 rack 55 uuidtools (~> 2.1) 56 + cheffish (1.6.0) 57 + chef-zero (~> 4.3) 58 coderay (1.1.0) 59 + cookbook-omnifetch (0.2.2) 60 minitar (~> 0.5.4) 61 diff-lcs (1.2.5) 62 erubis (2.7.0) 63 + ffi (1.9.10) 64 + ffi-yajl (2.2.2) 65 libyajl2 (~> 1.2) 66 + gssapi (1.2.0) 67 + ffi (>= 1.0.1) 68 + gyoku (1.3.1) 69 + builder (>= 2.1.2) 70 + hashie (3.4.3) 71 + highline (1.7.8) 72 + httpclient (2.7.0.1) 73 + inifile (2.0.2) 74 ipaddress (0.8.0) 75 libyajl2 (1.2.0) 76 + little-plugger (1.1.4) 77 + logging (2.0.0) 78 + little-plugger (~> 1.1) 79 + multi_json (~> 1.10) 80 method_source (0.8.2) 81 + mime-types (2.99) 82 minitar (0.5.4) 83 mixlib-authentication (1.3.0) 84 mixlib-log 85 mixlib-cli (1.5.0) 86 + mixlib-config (2.2.1) 87 + mixlib-install (0.7.0) 88 mixlib-log (1.6.0) 89 + mixlib-shellout (2.2.5) 90 + molinillo (0.2.3) 91 + multi_json (1.11.2) 92 + net-scp (1.2.1) 93 + net-ssh (>= 2.6.5) 94 net-ssh (2.9.2) 95 net-ssh-gateway (1.2.0) 96 net-ssh (>= 2.6.5) 97 + net-ssh-multi (1.2.1) 98 net-ssh (>= 2.6.5) 99 net-ssh-gateway (>= 1.2.0) 100 + net-telnet (0.1.1) 101 + nori (2.6.0) 102 + ohai (8.7.0) 103 + chef-config (>= 12.5.0.alpha.1, < 13) 104 ffi (~> 1.9) 105 + ffi-yajl (~> 2.2) 106 ipaddress 107 mime-types (~> 2.0) 108 mixlib-cli 109 mixlib-config (~> 2.0) 110 mixlib-log 111 mixlib-shellout (~> 2.0) 112 rake (~> 10.1) 113 systemu (~> 2.6.4) 114 wmi-lite (~> 1.0) 115 + paint (1.0.0) 116 plist (3.1.0) 117 + pry (0.10.3) 118 coderay (~> 1.1.0) 119 method_source (~> 0.8.1) 120 slop (~> 3.4) 121 + rack (1.6.4) 122 rake (10.4.2) 123 + rspec (3.4.0) 124 + rspec-core (~> 3.4.0) 125 + rspec-expectations (~> 3.4.0) 126 + rspec-mocks (~> 3.4.0) 127 + rspec-core (3.4.1) 128 + rspec-support (~> 3.4.0) 129 + rspec-expectations (3.4.0) 130 + diff-lcs (>= 1.2.0, < 2.0) 131 + rspec-support (~> 3.4.0) 132 + rspec-its (1.2.0) 133 + rspec-core (>= 3.0.0) 134 + rspec-expectations (>= 3.0.0) 135 + rspec-mocks (3.4.0) 136 + diff-lcs (>= 1.2.0, < 2.0) 137 + rspec-support (~> 3.4.0) 138 + rspec-support (3.4.1) 139 + rspec_junit_formatter (0.2.3) 140 + builder (< 4) 141 + rspec-core (>= 2, < 4, != 2.12.0) 142 + rubyntlm (0.4.0) 143 semverse (1.2.1) 144 + serverspec (2.24.3) 145 + multi_json 146 + rspec (~> 3.0) 147 + rspec-its 148 + specinfra (~> 2.43) 149 + sfl (2.2) 150 slop (3.6.0) 151 + solve (2.0.1) 152 + molinillo (~> 0.2.3) 153 semverse (~> 1.1) 154 + specinfra (2.44.5) 155 + net-scp 156 + net-ssh (~> 2.7) 157 + net-telnet 158 + sfl 159 + syslog-logger (1.6.8) 160 + systemu (2.6.5) 161 uuidtools (2.1.5) 162 + winrm (1.3.6) 163 + builder (>= 2.1.2) 164 + gssapi (~> 1.2) 165 + gyoku (~> 1.0) 166 + httpclient (~> 2.2, >= 2.2.0.2) 167 + logging (>= 1.6.1, < 3.0) 168 + nori (~> 2.0) 169 + rubyntlm (~> 0.4.0) 170 + uuidtools (~> 2.1.2) 171 wmi-lite (1.0.0) 172 173 PLATFORMS ··· 175 176 DEPENDENCIES 177 chef-dk 178 + 179 + BUNDLED WITH 180 + 1.10.5
+1 -1
pkgs/development/tools/chefdk/default.nix
··· 1 { stdenv, lib, bundlerEnv, ruby, perl, autoconf }: 2 3 bundlerEnv { 4 - name = "chefdk-0.4.0"; 5 6 inherit ruby; 7 gemfile = ./Gemfile;
··· 1 { stdenv, lib, bundlerEnv, ruby, perl, autoconf }: 2 3 bundlerEnv { 4 + name = "chefdk-0.10.0"; 5 6 inherit ruby; 7 gemfile = ./Gemfile;
+328 -58
pkgs/development/tools/chefdk/gemset.nix
··· 1 { 2 "chef" = { 3 - version = "12.0.3"; 4 source = { 5 type = "gem"; 6 - sha256 = "0lqix0mli6fm3lwrf563sjvfkfsrnyzbz8xqkp54q65dkl63ldy0"; 7 }; 8 dependencies = [ 9 "chef-zero" 10 "diff-lcs" 11 "erubis" ··· 13 "highline" 14 "mixlib-authentication" 15 "mixlib-cli" 16 - "mixlib-config" 17 "mixlib-log" 18 "mixlib-shellout" 19 "net-ssh" ··· 21 "ohai" 22 "plist" 23 "pry" 24 ]; 25 }; 26 "chef-dk" = { 27 - version = "0.4.0"; 28 source = { 29 type = "gem"; 30 - sha256 = "12fdk5j6cymwk4vk45mvi5i1hs9a88jvg6g7x6pxbc0bp3if2c6a"; 31 }; 32 dependencies = [ 33 "chef" 34 "cookbook-omnifetch" 35 "ffi-yajl" 36 "mixlib-cli" 37 "mixlib-shellout" 38 "solve" 39 ]; 40 }; 41 "chef-zero" = { 42 - version = "3.2.1"; 43 source = { 44 type = "gem"; 45 - sha256 = "04zypmygpxz8nwhjs4gvr8rcb9vqhmz37clbh7k7xxh5b2hs654k"; 46 }; 47 dependencies = [ 48 "ffi-yajl" ··· 52 "uuidtools" 53 ]; 54 }; 55 - "coderay" = { 56 - version = "1.1.0"; 57 - source = { 58 - type = "gem"; 59 - sha256 = "059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s"; 60 - }; 61 - }; 62 - "cookbook-omnifetch" = { 63 - version = "0.2.0"; 64 source = { 65 type = "gem"; 66 - sha256 = "027zz78693jd5g0fwp0xlzig2zijsxcgvfw5854ig37gy5a54wy4"; 67 }; 68 dependencies = [ 69 - "minitar" 70 ]; 71 }; 72 - "dep-selector-libgecode" = { 73 - version = "1.0.2"; 74 source = { 75 type = "gem"; 76 - sha256 = "0755ps446wc4cf26ggmvibr4wmap6ch7zhkh1qmx1p6lic2hr4gn"; 77 }; 78 }; 79 - "dep_selector" = { 80 - version = "1.0.3"; 81 source = { 82 type = "gem"; 83 - sha256 = "1ic90j3d6hmyxmdxzdz8crwmvw61f4kj0jphk43m6ipcx6bkphzw"; 84 }; 85 dependencies = [ 86 - "dep-selector-libgecode" 87 - "ffi" 88 ]; 89 }; 90 "diff-lcs" = { ··· 102 }; 103 }; 104 "ffi" = { 105 - version = "1.9.6"; 106 source = { 107 type = "gem"; 108 - sha256 = "1ckw1336rnyv9yvvl614qgkqqi477g4hljv6xsws2vz14ynlvzhj"; 109 }; 110 }; 111 "ffi-yajl" = { 112 - version = "1.4.0"; 113 source = { 114 type = "gem"; 115 - sha256 = "1l289wyzc06v0rn73msqxx4gm48iqgxkd9rins22f13qicpczi5g"; 116 }; 117 dependencies = [ 118 "ffi" 119 - "libyajl2" 120 ]; 121 }; 122 "hashie" = { 123 - version = "2.1.2"; 124 source = { 125 type = "gem"; 126 - sha256 = "08w9ask37zh5w989b6igair3zf8gwllyzix97rlabxglif9f9qd9"; 127 }; 128 }; 129 "highline" = { 130 - version = "1.7.1"; 131 source = { 132 type = "gem"; 133 - sha256 = "1355zfwmm6baq44rp0ny7zdnsipgn5maxk19hvii0jx2bsk417fr"; 134 }; 135 }; 136 "ipaddress" = { ··· 147 sha256 = "0n5j0p8dxf9xzb9n4bkdr8w0a8gg3jzrn9indri3n0fv90gcs5qi"; 148 }; 149 }; 150 "method_source" = { 151 version = "0.8.2"; 152 source = { ··· 155 }; 156 }; 157 "mime-types" = { 158 - version = "2.4.3"; 159 source = { 160 type = "gem"; 161 - sha256 = "16nissnb31wj7kpcaynx4gr67i7pbkzccfg8k7xmplbkla4rmwiq"; 162 }; 163 }; 164 "minitar" = { ··· 186 }; 187 }; 188 "mixlib-config" = { 189 - version = "2.1.0"; 190 source = { 191 type = "gem"; 192 - sha256 = "13mb628614nl4dfwyyqpxc7b688ls6cfnjx06j8c13sl003xkp7g"; 193 }; 194 }; 195 "mixlib-log" = { ··· 200 }; 201 }; 202 "mixlib-shellout" = { 203 - version = "2.0.1"; 204 source = { 205 type = "gem"; 206 - sha256 = "16n2zli15504bfzxwj5riq92zz3h8n8xswvs5gi0dp2dhyjd7lp3"; 207 }; 208 }; 209 - "net-dhcp" = { 210 - version = "1.3.2"; 211 source = { 212 type = "gem"; 213 - sha256 = "13mq3kwk6k3cd0vhnj1xq0gvbg2hbynzpnvq6fa6vqakbyc0iznd"; 214 }; 215 }; 216 "net-ssh" = { 217 version = "2.9.2"; 218 source = { ··· 231 ]; 232 }; 233 "net-ssh-multi" = { 234 - version = "1.2.0"; 235 source = { 236 type = "gem"; 237 - sha256 = "0927244ac8h3z6wl5cifkblsa95ddpsxr6k8h2fmdvg5wdqs4ydh"; 238 }; 239 dependencies = [ 240 "net-ssh" 241 "net-ssh-gateway" 242 ]; 243 }; 244 "ohai" = { 245 - version = "8.1.1"; 246 source = { 247 type = "gem"; 248 - sha256 = "1lcbl7lrmy56x6l6ca7miawj9h40ff6nv4b3n6bz3w7fa3vh9xz0"; 249 }; 250 dependencies = [ 251 "ffi" 252 "ffi-yajl" 253 "ipaddress" ··· 256 "mixlib-config" 257 "mixlib-log" 258 "mixlib-shellout" 259 - "net-dhcp" 260 "rake" 261 "systemu" 262 "wmi-lite" 263 ]; 264 }; 265 "plist" = { 266 version = "3.1.0"; 267 source = { ··· 270 }; 271 }; 272 "pry" = { 273 - version = "0.10.1"; 274 source = { 275 type = "gem"; 276 - sha256 = "1j0r5fm0wvdwzbh6d6apnp7c0n150hpm9zxpm5xvcgfqr36jaj8z"; 277 }; 278 dependencies = [ 279 "coderay" ··· 282 ]; 283 }; 284 "rack" = { 285 - version = "1.6.0"; 286 source = { 287 type = "gem"; 288 - sha256 = "1f57f8xmrgfgd76s6mq7vx6i266zm4330igw71an1g0kh3a42sbb"; 289 }; 290 }; 291 "rake" = { ··· 295 sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8"; 296 }; 297 }; 298 "semverse" = { 299 version = "1.2.1"; 300 source = { ··· 302 sha256 = "0s47lprqwmlhnxm3anrhvd3559g51hgrcqn3mq0fy696zkv8vfd8"; 303 }; 304 }; 305 "slop" = { 306 version = "3.6.0"; 307 source = { ··· 310 }; 311 }; 312 "solve" = { 313 - version = "1.2.1"; 314 source = { 315 type = "gem"; 316 - sha256 = "0ff5iwhsr6fcp10gd2ivrx1fcw3lm5f5f11srhy2z5dc3v79mcja"; 317 }; 318 dependencies = [ 319 - "dep_selector" 320 "semverse" 321 ]; 322 }; 323 "systemu" = { 324 - version = "2.6.4"; 325 source = { 326 type = "gem"; 327 - sha256 = "16k94azpsy1r958r6ysk4ksnpp54rqmh5hyamad9kwc3lk83i32z"; 328 }; 329 }; 330 "uuidtools" = { ··· 333 type = "gem"; 334 sha256 = "0zjvq1jrrnzj69ylmz1xcr30skf9ymmvjmdwbvscncd7zkr8av5g"; 335 }; 336 }; 337 "wmi-lite" = { 338 version = "1.0.0";
··· 1 { 2 + "builder" = { 3 + version = "3.2.2"; 4 + source = { 5 + type = "gem"; 6 + sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; 7 + }; 8 + }; 9 "chef" = { 10 + version = "12.5.1"; 11 source = { 12 type = "gem"; 13 + sha256 = "0hf6766wmh1dg7f09hi80s8hn1knvzgnaimbhvc05b4q973k5lmb"; 14 }; 15 dependencies = [ 16 + "chef-config" 17 "chef-zero" 18 "diff-lcs" 19 "erubis" ··· 21 "highline" 22 "mixlib-authentication" 23 "mixlib-cli" 24 "mixlib-log" 25 "mixlib-shellout" 26 "net-ssh" ··· 28 "ohai" 29 "plist" 30 "pry" 31 + "rspec-core" 32 + "rspec-expectations" 33 + "rspec-mocks" 34 + "rspec_junit_formatter" 35 + "serverspec" 36 + "specinfra" 37 + "syslog-logger" 38 + ]; 39 + }; 40 + "chef-config" = { 41 + version = "12.5.1"; 42 + source = { 43 + type = "gem"; 44 + sha256 = "18iqlf9x3iavh6183zlkiasxsz45drshihmk8yj56prrzfiys67m"; 45 + }; 46 + dependencies = [ 47 + "mixlib-config" 48 + "mixlib-shellout" 49 ]; 50 }; 51 "chef-dk" = { 52 + version = "0.10.0"; 53 source = { 54 type = "gem"; 55 + sha256 = "0gxm8dbq7y4bf9wb8zad9q5idsl88f1nm3rvnd2am0xka6bnxv29"; 56 }; 57 dependencies = [ 58 "chef" 59 + "chef-provisioning" 60 "cookbook-omnifetch" 61 + "diff-lcs" 62 "ffi-yajl" 63 + "minitar" 64 "mixlib-cli" 65 "mixlib-shellout" 66 + "paint" 67 "solve" 68 ]; 69 }; 70 + "chef-provisioning" = { 71 + version = "1.5.0"; 72 + source = { 73 + type = "gem"; 74 + sha256 = "1xln9hf8mcm81cmw96ccmyzrak54fbjrl9wgii37rx04v4a2435n"; 75 + }; 76 + dependencies = [ 77 + "cheffish" 78 + "inifile" 79 + "mixlib-install" 80 + "net-scp" 81 + "net-ssh" 82 + "net-ssh-gateway" 83 + "winrm" 84 + ]; 85 + }; 86 "chef-zero" = { 87 + version = "4.3.2"; 88 source = { 89 type = "gem"; 90 + sha256 = "1djnxs97kj13vj1hxx4v6978pkwm8i03p76gbirbp3z2zs6jyvjf"; 91 }; 92 dependencies = [ 93 "ffi-yajl" ··· 97 "uuidtools" 98 ]; 99 }; 100 + "cheffish" = { 101 + version = "1.6.0"; 102 source = { 103 type = "gem"; 104 + sha256 = "10aj660azybnf7444a604pjs8p9pvwm3n4mavy8mp3g30yr07paq"; 105 }; 106 dependencies = [ 107 + "chef-zero" 108 ]; 109 }; 110 + "coderay" = { 111 + version = "1.1.0"; 112 source = { 113 type = "gem"; 114 + sha256 = "059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s"; 115 }; 116 }; 117 + "cookbook-omnifetch" = { 118 + version = "0.2.2"; 119 source = { 120 type = "gem"; 121 + sha256 = "1ml25xc69nsgbvp9a6w9yi376rav7b659cvyr8qhfb4jaj4l1yd6"; 122 }; 123 dependencies = [ 124 + "minitar" 125 ]; 126 }; 127 "diff-lcs" = { ··· 139 }; 140 }; 141 "ffi" = { 142 + version = "1.9.10"; 143 source = { 144 type = "gem"; 145 + sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; 146 }; 147 }; 148 "ffi-yajl" = { 149 + version = "2.2.2"; 150 + source = { 151 + type = "gem"; 152 + sha256 = "013n5cf80p2wfpmj1mdjkbmcyx3hg4c81wl3bamglaf4i12a2qk2"; 153 + }; 154 + dependencies = [ 155 + "libyajl2" 156 + ]; 157 + }; 158 + "gssapi" = { 159 + version = "1.2.0"; 160 source = { 161 type = "gem"; 162 + sha256 = "0j93nsf9j57p7x4aafalvjg8hia2mmqv3aky7fmw2ck5yci343ix"; 163 }; 164 dependencies = [ 165 "ffi" 166 + ]; 167 + }; 168 + "gyoku" = { 169 + version = "1.3.1"; 170 + source = { 171 + type = "gem"; 172 + sha256 = "1wn0sl14396g5lyvp8sjmcb1hw9rbyi89gxng91r7w4df4jwiidh"; 173 + }; 174 + dependencies = [ 175 + "builder" 176 ]; 177 }; 178 "hashie" = { 179 + version = "3.4.3"; 180 source = { 181 type = "gem"; 182 + sha256 = "1iv5hd0zcryprx9lbcm615r3afc0d6rhc27clywmhhgpx68k8899"; 183 }; 184 }; 185 "highline" = { 186 + version = "1.7.8"; 187 source = { 188 type = "gem"; 189 + sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr"; 190 + }; 191 + }; 192 + "httpclient" = { 193 + version = "2.7.0.1"; 194 + source = { 195 + type = "gem"; 196 + sha256 = "0k6bqsaqq6c824vrbfb5pkz8bpk565zikd10w85rzj2dy809ik6c"; 197 + }; 198 + }; 199 + "inifile" = { 200 + version = "2.0.2"; 201 + source = { 202 + type = "gem"; 203 + sha256 = "03rpacxnrnisjhd2zhc7629ica958bkdbakicl5kipw1wbprck25"; 204 }; 205 }; 206 "ipaddress" = { ··· 217 sha256 = "0n5j0p8dxf9xzb9n4bkdr8w0a8gg3jzrn9indri3n0fv90gcs5qi"; 218 }; 219 }; 220 + "little-plugger" = { 221 + version = "1.1.4"; 222 + source = { 223 + type = "gem"; 224 + sha256 = "1frilv82dyxnlg8k1jhrvyd73l6k17mxc5vwxx080r4x1p04gwym"; 225 + }; 226 + }; 227 + "logging" = { 228 + version = "2.0.0"; 229 + source = { 230 + type = "gem"; 231 + sha256 = "0ka5q88qvc2w7yr9z338jwxcyj1kifmbr9is5hps2f37asismqvb"; 232 + }; 233 + dependencies = [ 234 + "little-plugger" 235 + "multi_json" 236 + ]; 237 + }; 238 "method_source" = { 239 version = "0.8.2"; 240 source = { ··· 243 }; 244 }; 245 "mime-types" = { 246 + version = "2.99"; 247 source = { 248 type = "gem"; 249 + sha256 = "1hravghdnk9qbibxb3ggzv7mysl97djh8n0rsswy3ssjaw7cbvf2"; 250 }; 251 }; 252 "minitar" = { ··· 274 }; 275 }; 276 "mixlib-config" = { 277 + version = "2.2.1"; 278 source = { 279 type = "gem"; 280 + sha256 = "0smhnyhw1va94vrd7zapxplbavbs4dc78h9yd1yfv52fzxx16zk3"; 281 + }; 282 + }; 283 + "mixlib-install" = { 284 + version = "0.7.0"; 285 + source = { 286 + type = "gem"; 287 + sha256 = "0ll1p7v7fp3rf11dz8pifz33jhl4bdg779n4hzlnbia2z7xfsa2w"; 288 }; 289 }; 290 "mixlib-log" = { ··· 295 }; 296 }; 297 "mixlib-shellout" = { 298 + version = "2.2.5"; 299 source = { 300 type = "gem"; 301 + sha256 = "1is07rar0x8n9h67j4iyrxz2yfgis4bnhh3x7vhbbi6khqqixg79"; 302 }; 303 }; 304 + "molinillo" = { 305 + version = "0.2.3"; 306 source = { 307 type = "gem"; 308 + sha256 = "1ylvnpdn20nna488mkzpq3iy6gr866gmkiv090c7g5h88x1qws0b"; 309 }; 310 }; 311 + "multi_json" = { 312 + version = "1.11.2"; 313 + source = { 314 + type = "gem"; 315 + sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; 316 + }; 317 + }; 318 + "net-scp" = { 319 + version = "1.2.1"; 320 + source = { 321 + type = "gem"; 322 + sha256 = "0b0jqrcsp4bbi4n4mzyf70cp2ysyp6x07j8k8cqgxnvb4i3a134j"; 323 + }; 324 + dependencies = [ 325 + "net-ssh" 326 + ]; 327 + }; 328 "net-ssh" = { 329 version = "2.9.2"; 330 source = { ··· 343 ]; 344 }; 345 "net-ssh-multi" = { 346 + version = "1.2.1"; 347 source = { 348 type = "gem"; 349 + sha256 = "13kxz9b6kgr9mcds44zpavbndxyi6pvyzyda6bhk1kfmb5c10m71"; 350 }; 351 dependencies = [ 352 "net-ssh" 353 "net-ssh-gateway" 354 ]; 355 + }; 356 + "net-telnet" = { 357 + version = "0.1.1"; 358 + source = { 359 + type = "gem"; 360 + sha256 = "13qxznpwmc3hs51b76wqx2w29r158gzzh8719kv2gpi56844c8fx"; 361 + }; 362 + }; 363 + "nori" = { 364 + version = "2.6.0"; 365 + source = { 366 + type = "gem"; 367 + sha256 = "066wc774a2zp4vrq3k7k8p0fhv30ymqmxma1jj7yg5735zls8agn"; 368 + }; 369 }; 370 "ohai" = { 371 + version = "8.7.0"; 372 source = { 373 type = "gem"; 374 + sha256 = "1f10kgxh89iwij54yx8q11n1q87653ckvdmdwg8cwz3qlgf4flhy"; 375 }; 376 dependencies = [ 377 + "chef-config" 378 "ffi" 379 "ffi-yajl" 380 "ipaddress" ··· 383 "mixlib-config" 384 "mixlib-log" 385 "mixlib-shellout" 386 "rake" 387 "systemu" 388 "wmi-lite" 389 ]; 390 }; 391 + "paint" = { 392 + version = "1.0.0"; 393 + source = { 394 + type = "gem"; 395 + sha256 = "0mhwj6w60q40w4f6jz8xx8bv1kghjvsjc3d8q8pnslax4fkmzbp1"; 396 + }; 397 + }; 398 "plist" = { 399 version = "3.1.0"; 400 source = { ··· 403 }; 404 }; 405 "pry" = { 406 + version = "0.10.3"; 407 source = { 408 type = "gem"; 409 + sha256 = "1x78rvp69ws37kwig18a8hr79qn36vh8g1fn75p485y3b3yiqszg"; 410 }; 411 dependencies = [ 412 "coderay" ··· 415 ]; 416 }; 417 "rack" = { 418 + version = "1.6.4"; 419 source = { 420 type = "gem"; 421 + sha256 = "09bs295yq6csjnkzj7ncj50i6chfxrhmzg1pk6p0vd2lb9ac8pj5"; 422 }; 423 }; 424 "rake" = { ··· 428 sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8"; 429 }; 430 }; 431 + "rspec" = { 432 + version = "3.4.0"; 433 + source = { 434 + type = "gem"; 435 + sha256 = "12axhz2nj2m0dy350lxym76m36m1hq48hc59mf00z9dajbpnj78s"; 436 + }; 437 + dependencies = [ 438 + "rspec-core" 439 + "rspec-expectations" 440 + "rspec-mocks" 441 + ]; 442 + }; 443 + "rspec-core" = { 444 + version = "3.4.1"; 445 + source = { 446 + type = "gem"; 447 + sha256 = "0zl4fbrzl4gg2bn3fhv910q04sm2jvzdidmvd71gdgqwbzk0zngn"; 448 + }; 449 + dependencies = [ 450 + "rspec-support" 451 + ]; 452 + }; 453 + "rspec-expectations" = { 454 + version = "3.4.0"; 455 + source = { 456 + type = "gem"; 457 + sha256 = "07pz570glwg87zpyagxxal0daa1jrnjkiksnn410s6846884fk8h"; 458 + }; 459 + dependencies = [ 460 + "diff-lcs" 461 + "rspec-support" 462 + ]; 463 + }; 464 + "rspec-its" = { 465 + version = "1.2.0"; 466 + source = { 467 + type = "gem"; 468 + sha256 = "1pwphny5jawcm1hda3vs9pjv1cybaxy17dc1s75qd7drrvx697p3"; 469 + }; 470 + dependencies = [ 471 + "rspec-core" 472 + "rspec-expectations" 473 + ]; 474 + }; 475 + "rspec-mocks" = { 476 + version = "3.4.0"; 477 + source = { 478 + type = "gem"; 479 + sha256 = "0iw9qvpawj3cfcg3xipi1v4y11g9q4f5lvmzgksn6f0chf97sjy1"; 480 + }; 481 + dependencies = [ 482 + "diff-lcs" 483 + "rspec-support" 484 + ]; 485 + }; 486 + "rspec-support" = { 487 + version = "3.4.1"; 488 + source = { 489 + type = "gem"; 490 + sha256 = "0l6zzlf22hn3pcwnxswsjsiwhqjg7a8mhvm680k5vq98307bkikr"; 491 + }; 492 + }; 493 + "rspec_junit_formatter" = { 494 + version = "0.2.3"; 495 + source = { 496 + type = "gem"; 497 + sha256 = "0hphl8iggqh1mpbbv0avf8735x6jgry5wmkqyzgv1zwnimvja1ai"; 498 + }; 499 + dependencies = [ 500 + "builder" 501 + "rspec-core" 502 + ]; 503 + }; 504 + "rubyntlm" = { 505 + version = "0.4.0"; 506 + source = { 507 + type = "gem"; 508 + sha256 = "03xmi8mxcbc5laad10r6b705dk4vyhl9lr7h940f2rhibymxq45x"; 509 + }; 510 + }; 511 "semverse" = { 512 version = "1.2.1"; 513 source = { ··· 515 sha256 = "0s47lprqwmlhnxm3anrhvd3559g51hgrcqn3mq0fy696zkv8vfd8"; 516 }; 517 }; 518 + "serverspec" = { 519 + version = "2.24.3"; 520 + source = { 521 + type = "gem"; 522 + sha256 = "03v6qqshqjsvbbjf1pwbi2mzgqg84wdbhnqb3gdbl1m9bz7sxg1n"; 523 + }; 524 + dependencies = [ 525 + "multi_json" 526 + "rspec" 527 + "rspec-its" 528 + "specinfra" 529 + ]; 530 + }; 531 + "sfl" = { 532 + version = "2.2"; 533 + source = { 534 + type = "gem"; 535 + sha256 = "0aq7ykbyvx8mx4szkcgp09zs094fg60l2pzxscmxqrgqk9yvyg1j"; 536 + }; 537 + }; 538 "slop" = { 539 version = "3.6.0"; 540 source = { ··· 543 }; 544 }; 545 "solve" = { 546 + version = "2.0.1"; 547 source = { 548 type = "gem"; 549 + sha256 = "0009xvg40y59bijds5njnwfshfw68wmj54yz3qy538g9rpxvmqp1"; 550 }; 551 dependencies = [ 552 + "molinillo" 553 "semverse" 554 ]; 555 }; 556 + "specinfra" = { 557 + version = "2.44.5"; 558 + source = { 559 + type = "gem"; 560 + sha256 = "018i3bmmy7lc21hagvwfmz2sdfj0v87a7yy3z162lcpq62vxw89r"; 561 + }; 562 + dependencies = [ 563 + "net-scp" 564 + "net-ssh" 565 + "net-telnet" 566 + "sfl" 567 + ]; 568 + }; 569 + "syslog-logger" = { 570 + version = "1.6.8"; 571 + source = { 572 + type = "gem"; 573 + sha256 = "14y20phq1khdla4z9wvf98k7j3x6n0rjgs4f7vb0xlf7h53g6hbm"; 574 + }; 575 + }; 576 "systemu" = { 577 + version = "2.6.5"; 578 source = { 579 type = "gem"; 580 + sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; 581 }; 582 }; 583 "uuidtools" = { ··· 586 type = "gem"; 587 sha256 = "0zjvq1jrrnzj69ylmz1xcr30skf9ymmvjmdwbvscncd7zkr8av5g"; 588 }; 589 + }; 590 + "winrm" = { 591 + version = "1.3.6"; 592 + source = { 593 + type = "gem"; 594 + sha256 = "1rx42y5w9d3w6axxwdj9zckzsgsjk172zxn52w2jj65spl98vxbc"; 595 + }; 596 + dependencies = [ 597 + "builder" 598 + "gssapi" 599 + "gyoku" 600 + "httpclient" 601 + "logging" 602 + "nori" 603 + "rubyntlm" 604 + "uuidtools" 605 + ]; 606 }; 607 "wmi-lite" = { 608 version = "1.0.0";
+8 -1
pkgs/games/steam/chrootenv.nix
··· 1 - { lib, buildFHSUserEnv 2 , withJava ? false 3 , withPrimus ? false 4 }: ··· 46 47 ln -s ../lib64/steam-runtime steamrt/amd64 48 ln -s ../lib32/steam-runtime steamrt/i386 49 ''; 50 51 profile = ''
··· 1 + { lib, buildFHSUserEnv, steam 2 , withJava ? false 3 , withPrimus ? false 4 }: ··· 46 47 ln -s ../lib64/steam-runtime steamrt/amd64 48 ln -s ../lib32/steam-runtime steamrt/i386 49 + ''; 50 + 51 + extraInstallCommands = '' 52 + mkdir -p $out/share/applications 53 + ln -s ${steam}/share/icons $out/share 54 + ln -s ${steam}/share/pixmaps $out/share 55 + sed "s,/usr/bin/steam,$out/bin/steam,g" ${steam}/share/applications/steam.desktop > $out/share/applications/steam.desktop 56 ''; 57 58 profile = ''
+120 -120
pkgs/games/steam/runtime-generated.nix
··· 247 }; 248 } 249 rec { 250 - name = "libcomerr2_1.42-1ubuntu2+srt4_amd64"; 251 - md5 = "fc890b8ce50abe33c1c60ec45ca1d203"; 252 source = fetchurl { 253 - url = "http://repo.steampowered.com/steamrt/pool/main/e/e2fsprogs/libcomerr2_1.42-1ubuntu2+srt4_amd64.deb"; 254 inherit md5; 255 name = "libcomerr2.deb"; 256 }; ··· 283 }; 284 } 285 rec { 286 - name = "libdbus-1-3_1.4.18-1ubuntu1.6+srt1_amd64"; 287 - md5 = "31ff871795887c7595908ebef7151186"; 288 source = fetchurl { 289 - url = "http://repo.steampowered.com/steamrt/pool/main/d/dbus/libdbus-1-3_1.4.18-1ubuntu1.6+srt1_amd64.deb"; 290 inherit md5; 291 name = "libdbus-1-3.deb"; 292 }; ··· 328 }; 329 } 330 rec { 331 - name = "libexpat1_2.0.1-7.2ubuntu1.1+srt4_amd64"; 332 - md5 = "18307a925d2ce2d432699073fe679b09"; 333 source = fetchurl { 334 - url = "http://repo.steampowered.com/steamrt/pool/main/e/expat/libexpat1_2.0.1-7.2ubuntu1.1+srt4_amd64.deb"; 335 inherit md5; 336 name = "libexpat1.deb"; 337 }; ··· 373 }; 374 } 375 rec { 376 - name = "libfreetype6_2.4.8-1ubuntu2.2+srt1_amd64"; 377 - md5 = "635e6ee1b6dbb9f609f3b7d738b88d83"; 378 source = fetchurl { 379 - url = "http://repo.steampowered.com/steamrt/pool/main/f/freetype/libfreetype6_2.4.8-1ubuntu2.2+srt1_amd64.deb"; 380 inherit md5; 381 name = "libfreetype6.deb"; 382 }; ··· 400 }; 401 } 402 rec { 403 - name = "libgcrypt11_1.5.0-3ubuntu0.3+srt1_amd64"; 404 - md5 = "869c080b36c95e90484987fc3a46d17b"; 405 source = fetchurl { 406 - url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-3ubuntu0.3+srt1_amd64.deb"; 407 inherit md5; 408 name = "libgcrypt11.deb"; 409 }; ··· 787 }; 788 } 789 rec { 790 - name = "libnss3_3.17.1-0ubuntu0.12.04.1+srt1_amd64"; 791 - md5 = "d2583ca89a2aa19abfd497be664b2fcd"; 792 source = fetchurl { 793 - url = "http://repo.steampowered.com/steamrt/pool/main/n/nss/libnss3_3.17.1-0ubuntu0.12.04.1+srt1_amd64.deb"; 794 inherit md5; 795 name = "libnss3.deb"; 796 }; ··· 868 }; 869 } 870 rec { 871 - name = "libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1+srt4_amd64"; 872 - md5 = "f3f0e80ce2a6be9e830862184223b3ff"; 873 source = fetchurl { 874 - url = "http://repo.steampowered.com/steamrt/pool/main/p/pixman/libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1+srt4_amd64.deb"; 875 inherit md5; 876 name = "libpixman-1-0.deb"; 877 }; ··· 1057 }; 1058 } 1059 rec { 1060 - name = "libsqlite3-0_3.7.9-2ubuntu1.1+srt4_amd64"; 1061 - md5 = "777bba933183fe2e1ec7cddf7d311609"; 1062 source = fetchurl { 1063 - url = "http://repo.steampowered.com/steamrt/pool/main/s/sqlite3/libsqlite3-0_3.7.9-2ubuntu1.1+srt4_amd64.deb"; 1064 inherit md5; 1065 name = "libsqlite3-0.deb"; 1066 }; 1067 } 1068 rec { 1069 - name = "libssl1.0.0_1.0.1-4ubuntu5.21+srt1_amd64"; 1070 - md5 = "0f740796454b18233ab65134c8250889"; 1071 source = fetchurl { 1072 - url = "http://repo.steampowered.com/steamrt/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.21+srt1_amd64.deb"; 1073 inherit md5; 1074 name = "libssl1.0.0.deb"; 1075 }; ··· 1102 }; 1103 } 1104 rec { 1105 - name = "libtasn1-3_2.10-1ubuntu1.2+srt1_amd64"; 1106 - md5 = "cd6947eb0f8a2fbb31ac5483d7aad25a"; 1107 source = fetchurl { 1108 - url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtasn1-3/libtasn1-3_2.10-1ubuntu1.2+srt1_amd64.deb"; 1109 inherit md5; 1110 name = "libtasn1-3.deb"; 1111 }; ··· 1138 }; 1139 } 1140 rec { 1141 - name = "libtiff4_3.9.5-2ubuntu1.6+srt3_amd64"; 1142 - md5 = "f6f1ba2a0a76245cc05217e6c8385fcc"; 1143 source = fetchurl { 1144 - url = "http://repo.steampowered.com/steamrt/pool/main/t/tiff/libtiff4_3.9.5-2ubuntu1.6+srt3_amd64.deb"; 1145 inherit md5; 1146 name = "libtiff4.deb"; 1147 }; ··· 1210 }; 1211 } 1212 rec { 1213 - name = "libvdpau1_0.4.1-3ubuntu1.1+srt4_amd64"; 1214 - md5 = "ad17ca0b0794852836c8166b530b520d"; 1215 source = fetchurl { 1216 - url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvdpau/libvdpau1_0.4.1-3ubuntu1.1+srt4_amd64.deb"; 1217 inherit md5; 1218 name = "libvdpau1.deb"; 1219 }; ··· 1273 }; 1274 } 1275 rec { 1276 - name = "libx11-6_1.4.99.1-0ubuntu2.2+steamrt1+srt4_amd64"; 1277 - md5 = "d1dd7819a0bcd2915c6df05f34bd2932"; 1278 source = fetchurl { 1279 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-6_1.4.99.1-0ubuntu2.2+steamrt1+srt4_amd64.deb"; 1280 inherit md5; 1281 name = "libx11-6.deb"; 1282 }; 1283 } 1284 rec { 1285 - name = "libx11-data_1.4.99.1-0ubuntu2.2+steamrt1+srt4_all"; 1286 - md5 = "e9c006f3f06178fd1a47f4fdffcc9da3"; 1287 source = fetchurl { 1288 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-data_1.4.99.1-0ubuntu2.2+steamrt1+srt4_all.deb"; 1289 inherit md5; 1290 name = "libx11-data.deb"; 1291 }; 1292 } 1293 rec { 1294 - name = "libx11-xcb1_1.4.99.1-0ubuntu2.2+steamrt1+srt4_amd64"; 1295 - md5 = "59f62a1b493eeaa0438d4b5e002fe269"; 1296 source = fetchurl { 1297 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-xcb1_1.4.99.1-0ubuntu2.2+steamrt1+srt4_amd64.deb"; 1298 inherit md5; 1299 name = "libx11-xcb1.deb"; 1300 }; ··· 1588 }; 1589 } 1590 rec { 1591 - name = "libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_amd64"; 1592 - md5 = "6b395ceb55a4454c5fe2f4cfe45d2a3d"; 1593 source = fetchurl { 1594 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxext/libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_amd64.deb"; 1595 inherit md5; 1596 name = "libxext6.deb"; 1597 }; 1598 } 1599 rec { 1600 - name = "libxfixes3_5.0-4ubuntu4.3+srt1_amd64"; 1601 - md5 = "462d20f1f3e38c92f22434fe75c4f932"; 1602 source = fetchurl { 1603 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxfixes/libxfixes3_5.0-4ubuntu4.3+srt1_amd64.deb"; 1604 inherit md5; 1605 name = "libxfixes3.deb"; 1606 }; ··· 1615 }; 1616 } 1617 rec { 1618 - name = "libxi6_1.7.1.901-1ubuntu1~precise2+srt1_amd64"; 1619 - md5 = "c4aa3fcef9981735073c73d822ac52cb"; 1620 source = fetchurl { 1621 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1~precise2+srt1_amd64.deb"; 1622 inherit md5; 1623 name = "libxi6.deb"; 1624 }; ··· 1660 }; 1661 } 1662 rec { 1663 - name = "libxrandr2_1.3.2-2ubuntu0.2+srt4_amd64"; 1664 - md5 = "7fde5d0b6ffa9f94f0300edc4de04ad6"; 1665 source = fetchurl { 1666 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrandr/libxrandr2_1.3.2-2ubuntu0.2+srt4_amd64.deb"; 1667 inherit md5; 1668 name = "libxrandr2.deb"; 1669 }; 1670 } 1671 rec { 1672 - name = "libxrender1_0.9.6-2ubuntu0.1+srt4_amd64"; 1673 - md5 = "a01473ee15ce4a8bb1a1ac2fc8e81bda"; 1674 source = fetchurl { 1675 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrender/libxrender1_0.9.6-2ubuntu0.1+srt4_amd64.deb"; 1676 inherit md5; 1677 name = "libxrender1.deb"; 1678 }; ··· 1986 }; 1987 } 1988 rec { 1989 - name = "libcomerr2_1.42-1ubuntu2+srt4_i386"; 1990 - md5 = "165e9ea1f09704a353220b9ff6cf2f1b"; 1991 source = fetchurl { 1992 - url = "http://repo.steampowered.com/steamrt/pool/main/e/e2fsprogs/libcomerr2_1.42-1ubuntu2+srt4_i386.deb"; 1993 inherit md5; 1994 name = "libcomerr2.deb"; 1995 }; ··· 2022 }; 2023 } 2024 rec { 2025 - name = "libdbus-1-3_1.4.18-1ubuntu1.6+srt1_i386"; 2026 - md5 = "01a50cab2a169d9b0eff71b5cee000ad"; 2027 source = fetchurl { 2028 - url = "http://repo.steampowered.com/steamrt/pool/main/d/dbus/libdbus-1-3_1.4.18-1ubuntu1.6+srt1_i386.deb"; 2029 inherit md5; 2030 name = "libdbus-1-3.deb"; 2031 }; ··· 2067 }; 2068 } 2069 rec { 2070 - name = "libexpat1_2.0.1-7.2ubuntu1.1+srt4_i386"; 2071 - md5 = "4478766ffb8f96db66de0b0f2ccfb290"; 2072 source = fetchurl { 2073 - url = "http://repo.steampowered.com/steamrt/pool/main/e/expat/libexpat1_2.0.1-7.2ubuntu1.1+srt4_i386.deb"; 2074 inherit md5; 2075 name = "libexpat1.deb"; 2076 }; ··· 2112 }; 2113 } 2114 rec { 2115 - name = "libfreetype6_2.4.8-1ubuntu2.2+srt1_i386"; 2116 - md5 = "257bf20101de39017f83e9934cea06e4"; 2117 source = fetchurl { 2118 - url = "http://repo.steampowered.com/steamrt/pool/main/f/freetype/libfreetype6_2.4.8-1ubuntu2.2+srt1_i386.deb"; 2119 inherit md5; 2120 name = "libfreetype6.deb"; 2121 }; ··· 2139 }; 2140 } 2141 rec { 2142 - name = "libgcrypt11_1.5.0-3ubuntu0.3+srt1_i386"; 2143 - md5 = "a857ecbbc060af329d774fefe41b4d5d"; 2144 source = fetchurl { 2145 - url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-3ubuntu0.3+srt1_i386.deb"; 2146 inherit md5; 2147 name = "libgcrypt11.deb"; 2148 }; ··· 2526 }; 2527 } 2528 rec { 2529 - name = "libnss3_3.17.1-0ubuntu0.12.04.1+srt1_i386"; 2530 - md5 = "9be8a7f5cc84852f14af1fc7e9c44f56"; 2531 source = fetchurl { 2532 - url = "http://repo.steampowered.com/steamrt/pool/main/n/nss/libnss3_3.17.1-0ubuntu0.12.04.1+srt1_i386.deb"; 2533 inherit md5; 2534 name = "libnss3.deb"; 2535 }; ··· 2607 }; 2608 } 2609 rec { 2610 - name = "libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1+srt4_i386"; 2611 - md5 = "cbad5a39d1cb49085cd4b50a2e1d96a6"; 2612 source = fetchurl { 2613 - url = "http://repo.steampowered.com/steamrt/pool/main/p/pixman/libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1+srt4_i386.deb"; 2614 inherit md5; 2615 name = "libpixman-1-0.deb"; 2616 }; ··· 2796 }; 2797 } 2798 rec { 2799 - name = "libsqlite3-0_3.7.9-2ubuntu1.1+srt4_i386"; 2800 - md5 = "466f9b4663bdf71a2cb36437e8f70fca"; 2801 source = fetchurl { 2802 - url = "http://repo.steampowered.com/steamrt/pool/main/s/sqlite3/libsqlite3-0_3.7.9-2ubuntu1.1+srt4_i386.deb"; 2803 inherit md5; 2804 name = "libsqlite3-0.deb"; 2805 }; 2806 } 2807 rec { 2808 - name = "libssl1.0.0_1.0.1-4ubuntu5.21+srt1_i386"; 2809 - md5 = "c530243255161578fbddfa9f7200d30c"; 2810 source = fetchurl { 2811 - url = "http://repo.steampowered.com/steamrt/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.21+srt1_i386.deb"; 2812 inherit md5; 2813 name = "libssl1.0.0.deb"; 2814 }; ··· 2841 }; 2842 } 2843 rec { 2844 - name = "libtasn1-3_2.10-1ubuntu1.2+srt1_i386"; 2845 - md5 = "55364b5ab0d027f6ffaf89444f5c0ad9"; 2846 source = fetchurl { 2847 - url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtasn1-3/libtasn1-3_2.10-1ubuntu1.2+srt1_i386.deb"; 2848 inherit md5; 2849 name = "libtasn1-3.deb"; 2850 }; ··· 2877 }; 2878 } 2879 rec { 2880 - name = "libtiff4_3.9.5-2ubuntu1.6+srt3_i386"; 2881 - md5 = "50f018955b48c06df3b00a45c1999c63"; 2882 source = fetchurl { 2883 - url = "http://repo.steampowered.com/steamrt/pool/main/t/tiff/libtiff4_3.9.5-2ubuntu1.6+srt3_i386.deb"; 2884 inherit md5; 2885 name = "libtiff4.deb"; 2886 }; ··· 2949 }; 2950 } 2951 rec { 2952 - name = "libvdpau1_0.4.1-3ubuntu1.1+srt4_i386"; 2953 - md5 = "b627e61dac887be2c3697d3945b4eee6"; 2954 source = fetchurl { 2955 - url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvdpau/libvdpau1_0.4.1-3ubuntu1.1+srt4_i386.deb"; 2956 inherit md5; 2957 name = "libvdpau1.deb"; 2958 }; ··· 3012 }; 3013 } 3014 rec { 3015 - name = "libx11-6_1.4.99.1-0ubuntu2.2+steamrt1+srt4_i386"; 3016 - md5 = "ecf312639e19cab505e978dcb75eea4d"; 3017 source = fetchurl { 3018 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-6_1.4.99.1-0ubuntu2.2+steamrt1+srt4_i386.deb"; 3019 inherit md5; 3020 name = "libx11-6.deb"; 3021 }; 3022 } 3023 rec { 3024 - name = "libx11-data_1.4.99.1-0ubuntu2.2+steamrt1+srt4_all"; 3025 - md5 = "e9c006f3f06178fd1a47f4fdffcc9da3"; 3026 source = fetchurl { 3027 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-data_1.4.99.1-0ubuntu2.2+steamrt1+srt4_all.deb"; 3028 inherit md5; 3029 name = "libx11-data.deb"; 3030 }; 3031 } 3032 rec { 3033 - name = "libx11-xcb1_1.4.99.1-0ubuntu2.2+steamrt1+srt4_i386"; 3034 - md5 = "8ce612a1d9c5b392d7d77c9a49eda59d"; 3035 source = fetchurl { 3036 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-xcb1_1.4.99.1-0ubuntu2.2+steamrt1+srt4_i386.deb"; 3037 inherit md5; 3038 name = "libx11-xcb1.deb"; 3039 }; ··· 3327 }; 3328 } 3329 rec { 3330 - name = "libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_i386"; 3331 - md5 = "a68ef50ca2623f2779b5d6668f545c75"; 3332 source = fetchurl { 3333 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxext/libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_i386.deb"; 3334 inherit md5; 3335 name = "libxext6.deb"; 3336 }; 3337 } 3338 rec { 3339 - name = "libxfixes3_5.0-4ubuntu4.3+srt1_i386"; 3340 - md5 = "263f3532430749f671a83ba3ca48b072"; 3341 source = fetchurl { 3342 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxfixes/libxfixes3_5.0-4ubuntu4.3+srt1_i386.deb"; 3343 inherit md5; 3344 name = "libxfixes3.deb"; 3345 }; ··· 3354 }; 3355 } 3356 rec { 3357 - name = "libxi6_1.7.1.901-1ubuntu1~precise2+srt1_i386"; 3358 - md5 = "f9e20e913df71ed877cd5ec6bd7e823d"; 3359 source = fetchurl { 3360 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1~precise2+srt1_i386.deb"; 3361 inherit md5; 3362 name = "libxi6.deb"; 3363 }; ··· 3399 }; 3400 } 3401 rec { 3402 - name = "libxrandr2_1.3.2-2ubuntu0.2+srt4_i386"; 3403 - md5 = "44eee22d721a1f41c569400fed1810ca"; 3404 source = fetchurl { 3405 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrandr/libxrandr2_1.3.2-2ubuntu0.2+srt4_i386.deb"; 3406 inherit md5; 3407 name = "libxrandr2.deb"; 3408 }; 3409 } 3410 rec { 3411 - name = "libxrender1_0.9.6-2ubuntu0.1+srt4_i386"; 3412 - md5 = "a7a6e50fde5d43c42a9e8f1202f043e5"; 3413 source = fetchurl { 3414 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrender/libxrender1_0.9.6-2ubuntu0.1+srt4_i386.deb"; 3415 inherit md5; 3416 name = "libxrender1.deb"; 3417 };
··· 247 }; 248 } 249 rec { 250 + name = "libcomerr2_1.42-1ubuntu2.2+srt1_amd64"; 251 + md5 = "12cd8bbe50da1b698d5280c8cd1efe38"; 252 source = fetchurl { 253 + url = "http://repo.steampowered.com/steamrt/pool/main/e/e2fsprogs/libcomerr2_1.42-1ubuntu2.2+srt1_amd64.deb"; 254 inherit md5; 255 name = "libcomerr2.deb"; 256 }; ··· 283 }; 284 } 285 rec { 286 + name = "libdbus-1-3_1.4.18-1ubuntu1.7+srt1_amd64"; 287 + md5 = "5082143b56f4d6a72c21244c4b7bc653"; 288 source = fetchurl { 289 + url = "http://repo.steampowered.com/steamrt/pool/main/d/dbus/libdbus-1-3_1.4.18-1ubuntu1.7+srt1_amd64.deb"; 290 inherit md5; 291 name = "libdbus-1-3.deb"; 292 }; ··· 328 }; 329 } 330 rec { 331 + name = "libexpat1_2.0.1-7.2ubuntu1.2+srt1_amd64"; 332 + md5 = "a7148db45279001346cebc02a7d7c1af"; 333 source = fetchurl { 334 + url = "http://repo.steampowered.com/steamrt/pool/main/e/expat/libexpat1_2.0.1-7.2ubuntu1.2+srt1_amd64.deb"; 335 inherit md5; 336 name = "libexpat1.deb"; 337 }; ··· 373 }; 374 } 375 rec { 376 + name = "libfreetype6_2.4.8-1ubuntu2.3+srt1_amd64"; 377 + md5 = "06f7ccb54bba06c1e2673471866039a0"; 378 source = fetchurl { 379 + url = "http://repo.steampowered.com/steamrt/pool/main/f/freetype/libfreetype6_2.4.8-1ubuntu2.3+srt1_amd64.deb"; 380 inherit md5; 381 name = "libfreetype6.deb"; 382 }; ··· 400 }; 401 } 402 rec { 403 + name = "libgcrypt11_1.5.0-3ubuntu0.4+srt1_amd64"; 404 + md5 = "e97b1a78944b7b07871dd36116b07bfe"; 405 source = fetchurl { 406 + url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-3ubuntu0.4+srt1_amd64.deb"; 407 inherit md5; 408 name = "libgcrypt11.deb"; 409 }; ··· 787 }; 788 } 789 rec { 790 + name = "libnss3_3.19.2-0ubuntu0.12.04.1+srt1_amd64"; 791 + md5 = "ba6be27b60728d1bbdc849354376adf8"; 792 source = fetchurl { 793 + url = "http://repo.steampowered.com/steamrt/pool/main/n/nss/libnss3_3.19.2-0ubuntu0.12.04.1+srt1_amd64.deb"; 794 inherit md5; 795 name = "libnss3.deb"; 796 }; ··· 868 }; 869 } 870 rec { 871 + name = "libpixman-1-0_0.30.2-1ubuntu0.0.0.0.2+srt1_amd64"; 872 + md5 = "52134e1b8190957f069268827f2bde74"; 873 source = fetchurl { 874 + url = "http://repo.steampowered.com/steamrt/pool/main/p/pixman/libpixman-1-0_0.30.2-1ubuntu0.0.0.0.2+srt1_amd64.deb"; 875 inherit md5; 876 name = "libpixman-1-0.deb"; 877 }; ··· 1057 }; 1058 } 1059 rec { 1060 + name = "libsqlite3-0_3.7.9-2ubuntu1.2+srt1_amd64"; 1061 + md5 = "1a9c37c32fa46f7d55a2e384cd6ce5a6"; 1062 source = fetchurl { 1063 + url = "http://repo.steampowered.com/steamrt/pool/main/s/sqlite3/libsqlite3-0_3.7.9-2ubuntu1.2+srt1_amd64.deb"; 1064 inherit md5; 1065 name = "libsqlite3-0.deb"; 1066 }; 1067 } 1068 rec { 1069 + name = "libssl1.0.0_1.0.1-4ubuntu5.31+srt1_amd64"; 1070 + md5 = "0ea8b768e93487f8108336c5da92b952"; 1071 source = fetchurl { 1072 + url = "http://repo.steampowered.com/steamrt/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.31+srt1_amd64.deb"; 1073 inherit md5; 1074 name = "libssl1.0.0.deb"; 1075 }; ··· 1102 }; 1103 } 1104 rec { 1105 + name = "libtasn1-3_2.10-1ubuntu1.4+srt1_amd64"; 1106 + md5 = "6e092ebafe0cf5a49ee9319e2cf6f4fd"; 1107 source = fetchurl { 1108 + url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtasn1-3/libtasn1-3_2.10-1ubuntu1.4+srt1_amd64.deb"; 1109 inherit md5; 1110 name = "libtasn1-3.deb"; 1111 }; ··· 1138 }; 1139 } 1140 rec { 1141 + name = "libtiff4_3.9.5-2ubuntu1.8+srt1_amd64"; 1142 + md5 = "7c44d58a6acf73b6c298cfa03e982e0f"; 1143 source = fetchurl { 1144 + url = "http://repo.steampowered.com/steamrt/pool/main/t/tiff/libtiff4_3.9.5-2ubuntu1.8+srt1_amd64.deb"; 1145 inherit md5; 1146 name = "libtiff4.deb"; 1147 }; ··· 1210 }; 1211 } 1212 rec { 1213 + name = "libvdpau1_0.4.1-3ubuntu1.2+srt1_amd64"; 1214 + md5 = "d31594fc832bfd0bc65c43f2e7f40ac5"; 1215 source = fetchurl { 1216 + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvdpau/libvdpau1_0.4.1-3ubuntu1.2+srt1_amd64.deb"; 1217 inherit md5; 1218 name = "libvdpau1.deb"; 1219 }; ··· 1273 }; 1274 } 1275 rec { 1276 + name = "libx11-6_1.4.99.1-0ubuntu2.3+steamrt1+srt1_amd64"; 1277 + md5 = "22ca2e28aa3f3d70b77632a8772a4a9d"; 1278 source = fetchurl { 1279 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-6_1.4.99.1-0ubuntu2.3+steamrt1+srt1_amd64.deb"; 1280 inherit md5; 1281 name = "libx11-6.deb"; 1282 }; 1283 } 1284 rec { 1285 + name = "libx11-data_1.4.99.1-0ubuntu2.3+steamrt1+srt1_all"; 1286 + md5 = "c012bbc8654c3c012dc7b5901c486f4d"; 1287 source = fetchurl { 1288 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-data_1.4.99.1-0ubuntu2.3+steamrt1+srt1_all.deb"; 1289 inherit md5; 1290 name = "libx11-data.deb"; 1291 }; 1292 } 1293 rec { 1294 + name = "libx11-xcb1_1.4.99.1-0ubuntu2.3+steamrt1+srt1_amd64"; 1295 + md5 = "e94af0629e0b59f21c1ccc4f4d4088b5"; 1296 source = fetchurl { 1297 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-xcb1_1.4.99.1-0ubuntu2.3+steamrt1+srt1_amd64.deb"; 1298 inherit md5; 1299 name = "libx11-xcb1.deb"; 1300 }; ··· 1588 }; 1589 } 1590 rec { 1591 + name = "libxext6_1.3.0-3ubuntu0.2+steamrt1+srt1_amd64"; 1592 + md5 = "b6dcf651f5b9dda20fd39912bf03a4c3"; 1593 source = fetchurl { 1594 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxext/libxext6_1.3.0-3ubuntu0.2+steamrt1+srt1_amd64.deb"; 1595 inherit md5; 1596 name = "libxext6.deb"; 1597 }; 1598 } 1599 rec { 1600 + name = "libxfixes3_5.0-4ubuntu4.4+srt1_amd64"; 1601 + md5 = "a80bcd458215e445daddf4cf0d625758"; 1602 source = fetchurl { 1603 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxfixes/libxfixes3_5.0-4ubuntu4.4+srt1_amd64.deb"; 1604 inherit md5; 1605 name = "libxfixes3.deb"; 1606 }; ··· 1615 }; 1616 } 1617 rec { 1618 + name = "libxi6_1.7.1.901-1ubuntu1~precise3+srt1_amd64"; 1619 + md5 = "f25d86e540477fe044c0294670b5f1b5"; 1620 source = fetchurl { 1621 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1~precise3+srt1_amd64.deb"; 1622 inherit md5; 1623 name = "libxi6.deb"; 1624 }; ··· 1660 }; 1661 } 1662 rec { 1663 + name = "libxrandr2_1.3.2-2ubuntu0.3+srt1_amd64"; 1664 + md5 = "bde5d98946e1bfd60a42482339e29787"; 1665 source = fetchurl { 1666 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrandr/libxrandr2_1.3.2-2ubuntu0.3+srt1_amd64.deb"; 1667 inherit md5; 1668 name = "libxrandr2.deb"; 1669 }; 1670 } 1671 rec { 1672 + name = "libxrender1_0.9.6-2ubuntu0.2+srt1_amd64"; 1673 + md5 = "6781fa18b873dc95da21e82cc61609d6"; 1674 source = fetchurl { 1675 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrender/libxrender1_0.9.6-2ubuntu0.2+srt1_amd64.deb"; 1676 inherit md5; 1677 name = "libxrender1.deb"; 1678 }; ··· 1986 }; 1987 } 1988 rec { 1989 + name = "libcomerr2_1.42-1ubuntu2.2+srt1_i386"; 1990 + md5 = "a7450fa3b218cc993b252f7f51b4f83a"; 1991 source = fetchurl { 1992 + url = "http://repo.steampowered.com/steamrt/pool/main/e/e2fsprogs/libcomerr2_1.42-1ubuntu2.2+srt1_i386.deb"; 1993 inherit md5; 1994 name = "libcomerr2.deb"; 1995 }; ··· 2022 }; 2023 } 2024 rec { 2025 + name = "libdbus-1-3_1.4.18-1ubuntu1.7+srt1_i386"; 2026 + md5 = "36d5b7a27a90cc6069c14317c5b182e8"; 2027 source = fetchurl { 2028 + url = "http://repo.steampowered.com/steamrt/pool/main/d/dbus/libdbus-1-3_1.4.18-1ubuntu1.7+srt1_i386.deb"; 2029 inherit md5; 2030 name = "libdbus-1-3.deb"; 2031 }; ··· 2067 }; 2068 } 2069 rec { 2070 + name = "libexpat1_2.0.1-7.2ubuntu1.2+srt1_i386"; 2071 + md5 = "44b8336cf9a2340a693528f2ebe19da2"; 2072 source = fetchurl { 2073 + url = "http://repo.steampowered.com/steamrt/pool/main/e/expat/libexpat1_2.0.1-7.2ubuntu1.2+srt1_i386.deb"; 2074 inherit md5; 2075 name = "libexpat1.deb"; 2076 }; ··· 2112 }; 2113 } 2114 rec { 2115 + name = "libfreetype6_2.4.8-1ubuntu2.3+srt1_i386"; 2116 + md5 = "2b1dd9e53e6a94443e9959de83d8621f"; 2117 source = fetchurl { 2118 + url = "http://repo.steampowered.com/steamrt/pool/main/f/freetype/libfreetype6_2.4.8-1ubuntu2.3+srt1_i386.deb"; 2119 inherit md5; 2120 name = "libfreetype6.deb"; 2121 }; ··· 2139 }; 2140 } 2141 rec { 2142 + name = "libgcrypt11_1.5.0-3ubuntu0.4+srt1_i386"; 2143 + md5 = "3ee78c6888bcf55b43fb6830059c65e3"; 2144 source = fetchurl { 2145 + url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-3ubuntu0.4+srt1_i386.deb"; 2146 inherit md5; 2147 name = "libgcrypt11.deb"; 2148 }; ··· 2526 }; 2527 } 2528 rec { 2529 + name = "libnss3_3.19.2-0ubuntu0.12.04.1+srt1_i386"; 2530 + md5 = "35330de1ca02b0034f468c0df11882bd"; 2531 source = fetchurl { 2532 + url = "http://repo.steampowered.com/steamrt/pool/main/n/nss/libnss3_3.19.2-0ubuntu0.12.04.1+srt1_i386.deb"; 2533 inherit md5; 2534 name = "libnss3.deb"; 2535 }; ··· 2607 }; 2608 } 2609 rec { 2610 + name = "libpixman-1-0_0.30.2-1ubuntu0.0.0.0.2+srt1_i386"; 2611 + md5 = "630fa4416398e12dfae1816acdac1d89"; 2612 source = fetchurl { 2613 + url = "http://repo.steampowered.com/steamrt/pool/main/p/pixman/libpixman-1-0_0.30.2-1ubuntu0.0.0.0.2+srt1_i386.deb"; 2614 inherit md5; 2615 name = "libpixman-1-0.deb"; 2616 }; ··· 2796 }; 2797 } 2798 rec { 2799 + name = "libsqlite3-0_3.7.9-2ubuntu1.2+srt1_i386"; 2800 + md5 = "6653a03901b263af6fce56e6c394e9b3"; 2801 source = fetchurl { 2802 + url = "http://repo.steampowered.com/steamrt/pool/main/s/sqlite3/libsqlite3-0_3.7.9-2ubuntu1.2+srt1_i386.deb"; 2803 inherit md5; 2804 name = "libsqlite3-0.deb"; 2805 }; 2806 } 2807 rec { 2808 + name = "libssl1.0.0_1.0.1-4ubuntu5.31+srt1_i386"; 2809 + md5 = "40b412b5964f9f48ef4f5997702da3d5"; 2810 source = fetchurl { 2811 + url = "http://repo.steampowered.com/steamrt/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.31+srt1_i386.deb"; 2812 inherit md5; 2813 name = "libssl1.0.0.deb"; 2814 }; ··· 2841 }; 2842 } 2843 rec { 2844 + name = "libtasn1-3_2.10-1ubuntu1.4+srt1_i386"; 2845 + md5 = "c24dd57cc16746dbead2fbfa571f978a"; 2846 source = fetchurl { 2847 + url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtasn1-3/libtasn1-3_2.10-1ubuntu1.4+srt1_i386.deb"; 2848 inherit md5; 2849 name = "libtasn1-3.deb"; 2850 }; ··· 2877 }; 2878 } 2879 rec { 2880 + name = "libtiff4_3.9.5-2ubuntu1.8+srt1_i386"; 2881 + md5 = "8374a1fc7909c42faa5ee585eb967b20"; 2882 source = fetchurl { 2883 + url = "http://repo.steampowered.com/steamrt/pool/main/t/tiff/libtiff4_3.9.5-2ubuntu1.8+srt1_i386.deb"; 2884 inherit md5; 2885 name = "libtiff4.deb"; 2886 }; ··· 2949 }; 2950 } 2951 rec { 2952 + name = "libvdpau1_0.4.1-3ubuntu1.2+srt1_i386"; 2953 + md5 = "61cd2560476f54dc11b3e859e104daec"; 2954 source = fetchurl { 2955 + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvdpau/libvdpau1_0.4.1-3ubuntu1.2+srt1_i386.deb"; 2956 inherit md5; 2957 name = "libvdpau1.deb"; 2958 }; ··· 3012 }; 3013 } 3014 rec { 3015 + name = "libx11-6_1.4.99.1-0ubuntu2.3+steamrt1+srt1_i386"; 3016 + md5 = "cc208840d2883eec6f9770b623c24b9d"; 3017 source = fetchurl { 3018 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-6_1.4.99.1-0ubuntu2.3+steamrt1+srt1_i386.deb"; 3019 inherit md5; 3020 name = "libx11-6.deb"; 3021 }; 3022 } 3023 rec { 3024 + name = "libx11-data_1.4.99.1-0ubuntu2.3+steamrt1+srt1_all"; 3025 + md5 = "c012bbc8654c3c012dc7b5901c486f4d"; 3026 source = fetchurl { 3027 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-data_1.4.99.1-0ubuntu2.3+steamrt1+srt1_all.deb"; 3028 inherit md5; 3029 name = "libx11-data.deb"; 3030 }; 3031 } 3032 rec { 3033 + name = "libx11-xcb1_1.4.99.1-0ubuntu2.3+steamrt1+srt1_i386"; 3034 + md5 = "2ef2ffe569708f8433cfb36e754526ec"; 3035 source = fetchurl { 3036 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-xcb1_1.4.99.1-0ubuntu2.3+steamrt1+srt1_i386.deb"; 3037 inherit md5; 3038 name = "libx11-xcb1.deb"; 3039 }; ··· 3327 }; 3328 } 3329 rec { 3330 + name = "libxext6_1.3.0-3ubuntu0.2+steamrt1+srt1_i386"; 3331 + md5 = "7f18f7c6fb6bca8a033e243ca4222057"; 3332 source = fetchurl { 3333 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxext/libxext6_1.3.0-3ubuntu0.2+steamrt1+srt1_i386.deb"; 3334 inherit md5; 3335 name = "libxext6.deb"; 3336 }; 3337 } 3338 rec { 3339 + name = "libxfixes3_5.0-4ubuntu4.4+srt1_i386"; 3340 + md5 = "25d8be35a5e5a6bac479d4bdce8dceba"; 3341 source = fetchurl { 3342 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxfixes/libxfixes3_5.0-4ubuntu4.4+srt1_i386.deb"; 3343 inherit md5; 3344 name = "libxfixes3.deb"; 3345 }; ··· 3354 }; 3355 } 3356 rec { 3357 + name = "libxi6_1.7.1.901-1ubuntu1~precise3+srt1_i386"; 3358 + md5 = "5f82357fd11b009d7fee5020e8ff2c8a"; 3359 source = fetchurl { 3360 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1~precise3+srt1_i386.deb"; 3361 inherit md5; 3362 name = "libxi6.deb"; 3363 }; ··· 3399 }; 3400 } 3401 rec { 3402 + name = "libxrandr2_1.3.2-2ubuntu0.3+srt1_i386"; 3403 + md5 = "659bfe8b731e831f32b047e66643ae05"; 3404 source = fetchurl { 3405 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrandr/libxrandr2_1.3.2-2ubuntu0.3+srt1_i386.deb"; 3406 inherit md5; 3407 name = "libxrandr2.deb"; 3408 }; 3409 } 3410 rec { 3411 + name = "libxrender1_0.9.6-2ubuntu0.2+srt1_i386"; 3412 + md5 = "e5ea9172d234d61d6a31d86465428b05"; 3413 source = fetchurl { 3414 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrender/libxrender1_0.9.6-2ubuntu0.2+srt1_i386.deb"; 3415 inherit md5; 3416 name = "libxrender1.deb"; 3417 };
+10 -12
pkgs/games/steam/steam.nix
··· 1 {stdenv, fetchurl, traceDeps ? false}: 2 3 - stdenv.mkDerivation rec { 4 - name = "${program}-original-${version}"; 5 - program = "steam"; 6 version = "1.0.0.49"; 7 8 src = fetchurl { 9 - url = "http://repo.steampowered.com/steam/pool/steam/s/steam/${program}_${version}.tar.gz"; 10 sha256 = "1c1gl5pwvb5gnnnqf5d9hpcjnfjjgmn4lgx8v0fbx1am5xf3p2gx"; 11 }; 12 13 - traceLog = "/tmp/steam-trace-dependencies.log"; 14 15 - installPhase = '' 16 - make DESTDIR=$out install 17 - mv $out/usr/* $out #*/ 18 - rmdir $out/usr 19 - 20 rm $out/bin/steamdeps 21 ${stdenv.lib.optionalString traceDeps '' 22 cat > $out/bin/steamdeps <<EOF 23 - #! /bin/bash 24 echo \$1 >> ${traceLog} 25 cat \$1 >> ${traceLog} 26 echo >> ${traceLog} ··· 32 meta = with stdenv.lib; { 33 description = "A digital distribution platform"; 34 homepage = http://store.steampowered.com/; 35 - license = licenses.unfree; 36 maintainers = with maintainers; [ jagajaga ]; 37 }; 38 }
··· 1 {stdenv, fetchurl, traceDeps ? false}: 2 3 + let 4 + traceLog = "/tmp/steam-trace-dependencies.log"; 5 version = "1.0.0.49"; 6 7 + in stdenv.mkDerivation rec { 8 + name = "steam-original-${version}"; 9 + 10 src = fetchurl { 11 + url = "http://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz"; 12 sha256 = "1c1gl5pwvb5gnnnqf5d9hpcjnfjjgmn4lgx8v0fbx1am5xf3p2gx"; 13 }; 14 15 + makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ]; 16 17 + postInstall = '' 18 rm $out/bin/steamdeps 19 ${stdenv.lib.optionalString traceDeps '' 20 cat > $out/bin/steamdeps <<EOF 21 + #!${stdenv.shell} 22 echo \$1 >> ${traceLog} 23 cat \$1 >> ${traceLog} 24 echo >> ${traceLog} ··· 30 meta = with stdenv.lib; { 31 description = "A digital distribution platform"; 32 homepage = http://store.steampowered.com/; 33 + license = licenses.unfreeRedistributable; 34 maintainers = with maintainers; [ jagajaga ]; 35 }; 36 }
+13
pkgs/games/steam/update-runtime-shell.nix
···
··· 1 + with import <nixpkgs> {}; 2 + 3 + (python2.buildEnv.override { 4 + extraLibs = with python2Packages; 5 + [ debian 6 + ]; 7 + postBuild = '' 8 + mkdir -p $out/bin 9 + for i in ${nixUnstable}/bin/*; do 10 + ln -s $i $out/bin/$(basename $i) 11 + done 12 + ''; 13 + }).env
+3 -3
pkgs/misc/vim-plugins/vim-utils.nix
··· 1 {stdenv, vim, vimPlugins, vim_configurable, buildEnv, writeText, writeScriptBin 2 - , nix-prefetch-scripts }: 3 4 /* 5 ··· 310 echom repeat("=", 80) 311 endif 312 let opts = {} 313 - let opts.nix_prefetch_git = "${nix-prefetch-scripts}/bin/nix-prefetch-git" 314 - let opts.nix_prefetch_hg = "${nix-prefetch-scripts}/bin/nix-prefetch-hg" 315 let opts.cache_file = g:vim_addon_manager.plugin_root_dir.'/cache' 316 let opts.plugin_dictionaries = [] 317 ${lib.concatMapStrings (file: "let opts.plugin_dictionaries += map(readfile(\"${file}\"), 'eval(v:val)')\n") namefiles }
··· 1 {stdenv, vim, vimPlugins, vim_configurable, buildEnv, writeText, writeScriptBin 2 + , nix-prefetch-hg, nix-prefetch-git }: 3 4 /* 5 ··· 310 echom repeat("=", 80) 311 endif 312 let opts = {} 313 + let opts.nix_prefetch_git = "${nix-prefetch-git}/bin/nix-prefetch-git" 314 + let opts.nix_prefetch_hg = "${nix-prefetch-hg}/bin/nix-prefetch-hg" 315 let opts.cache_file = g:vim_addon_manager.plugin_root_dir.'/cache' 316 let opts.plugin_dictionaries = [] 317 ${lib.concatMapStrings (file: "let opts.plugin_dictionaries += map(readfile(\"${file}\"), 'eval(v:val)')\n") namefiles }
+1 -1
pkgs/servers/mpd/default.nix
··· 21 , jackSupport ? true, libjack2 22 , gmeSupport ? true, game-music-emu 23 , icuSupport ? true, icu 24 - , clientSupport ? false, mpd_clientlib 25 , opusSupport ? true, libopus 26 }: 27
··· 21 , jackSupport ? true, libjack2 22 , gmeSupport ? true, game-music-emu 23 , icuSupport ? true, icu 24 + , clientSupport ? true, mpd_clientlib 25 , opusSupport ? true, libopus 26 }: 27
+61 -83
pkgs/tools/X11/bumblebee/default.nix
··· 16 # 17 # To use at startup, see hardware.bumblebee options. 18 19 - # This nix expression supports for now only the native nvidia driver. 20 - # It should not be hard to generalize this approach to support the 21 - # nouveau driver as well (parameterize hostEnv, i686Env over the 22 - # module package, and parameterize the two wrappers as well) 23 - 24 - { stdenv, fetchurl, pkgconfig, help2man 25 - , libX11, glibc, glib, libbsd 26 - , makeWrapper, buildEnv, module_init_tools 27 - , xorg, xkeyboard_config 28 - , nvidia_x11, virtualgl 29 # The below should only be non-null in a x86_64 system. On a i686 30 # system the above nvidia_x11 and virtualgl will be the i686 packages. 31 # TODO: Confusing. Perhaps use "SubArch" instead of i686? 32 , nvidia_x11_i686 ? null 33 - , virtualgl_i686 ? null 34 , useDisplayDevice ? false 35 - , extraDeviceOptions ? "" 36 }: 37 - with stdenv.lib; 38 let 39 version = "3.2.1"; 40 - name = "bumblebee-${version}"; 41 42 - # Isolated X11 environment without the acceleration driver module. 43 - # Includes the rest of the components needed for bumblebeed and 44 - # optirun to spawn the second X server and to connect to it. 45 - x11Env = buildEnv { 46 - name = "bumblebee-env"; 47 - paths = [ 48 - module_init_tools 49 - xorg.xorgserver 50 - xorg.xrandr 51 - xorg.xrdb 52 - xorg.setxkbmap 53 - xorg.libX11 54 - xorg.libXext 55 - xorg.xf86inputevdev 56 - ]; 57 - }; 58 59 - # The environment for the host architecture. 60 - hostEnv = buildEnv { 61 - name = "bumblebee-x64-env"; 62 - paths = [ 63 - nvidia_x11 64 - virtualgl 65 - ]; 66 - }; 67 68 - # The environment for the sub architecture, i686, if there is one 69 - i686Env = if virtualgl_i686 != null 70 - then buildEnv { 71 - name = "bumblebee-i686-env"; 72 - paths = [ 73 - nvidia_x11_i686 74 - virtualgl_i686 75 - ]; 76 - } 77 - else null; 78 79 - allEnvs = [hostEnv] ++ optional (i686Env != null) i686Env; 80 - ldPathString = makeLibraryPath allEnvs; 81 82 - # By default we don't want to use a display device 83 - deviceOptions = if useDisplayDevice 84 - then "" 85 - else '' 86 87 - # Disable display device 88 - Option "UseEDID" "false" 89 - Option "UseDisplayDevice" "none" 90 - '' 91 - + extraDeviceOptions; 92 93 - in stdenv.mkDerivation { 94 - inherit name deviceOptions; 95 96 src = fetchurl { 97 url = "http://bumblebee-project.org/${name}.tar.gz"; 98 sha256 = "03p3gvx99lwlavznrpg9l7jnl1yfg2adcj8jcjj0gxp20wxp060h"; 99 }; 100 101 - patches = [ ./xopts.patch ./nvidia-conf.patch]; 102 103 preConfigure = '' 104 # Substitute the path to the actual modinfo program in module.c. ··· 114 115 # Apply configuration options 116 substituteInPlace conf/xorg.conf.nvidia \ 117 - --subst-var deviceOptions 118 ''; 119 120 # Build-time dependencies of bumblebeed and optirun. 121 # Note that it has several runtime dependencies. 122 - buildInputs = [ stdenv makeWrapper pkgconfig help2man libX11 glib libbsd ]; 123 124 # The order of LDPATH is very specific: First X11 then the host 125 # environment then the optional sub architecture paths. ··· 130 # include the sub architecture components. 131 configureFlags = [ 132 "--with-udev-rules=$out/lib/udev/rules.d" 133 - "CONF_DRIVER=nvidia" 134 - "CONF_DRIVER_MODULE_NVIDIA=nvidia" 135 - "CONF_LDPATH_NVIDIA=${x11Env}/lib:${ldPathString}" 136 - "CONF_MODPATH_NVIDIA=${hostEnv}/lib/xorg/modules,${x11Env}/lib/xorg/modules" 137 ]; 138 139 - # create a wrapper environment for bumblebeed and optirun 140 postInstall = '' 141 wrapProgram "$out/sbin/bumblebeed" \ 142 - --prefix PATH : "${x11Env}/sbin:${x11Env}/bin:${hostEnv}/bin:\$PATH" \ 143 - --prefix LD_LIBRARY_PATH : "${x11Env}/lib:${hostEnv}/lib:\$LD_LIBRARY_PATH" \ 144 - --set FONTCONFIG_FILE "/etc/fonts/fonts.conf" \ 145 - --set XKB_BINDIR "${xorg.xkbcomp}/bin" \ 146 - --set XKB_DIR "${xkeyboard_config}/etc/X11/xkb" 147 148 wrapProgram "$out/bin/optirun" \ 149 - --prefix PATH : "${hostEnv}/bin" 150 - '' + (if i686Env == null 151 - then "" 152 - else '' 153 - makeWrapper "$out/bin/.optirun-wrapped" "$out/bin/optirun32" \ 154 - --prefix PATH : "${i686Env}/bin" 155 - ''); 156 157 - meta = { 158 homepage = http://github.com/Bumblebee-Project/Bumblebee; 159 description = "Daemon for managing Optimus videocards (power-on/off, spawns xservers)"; 160 - license = stdenv.lib.licenses.gpl3; 161 }; 162 }
··· 16 # 17 # To use at startup, see hardware.bumblebee options. 18 19 + { stdenv, lib, fetchurl, pkgconfig, help2man, makeWrapper 20 + , glib, libbsd 21 + , libX11, libXext, xorgserver, xkbcomp, module_init_tools, xkeyboard_config, xf86videonouveau 22 + , nvidia_x11, virtualgl, primusLib 23 # The below should only be non-null in a x86_64 system. On a i686 24 # system the above nvidia_x11 and virtualgl will be the i686 packages. 25 # TODO: Confusing. Perhaps use "SubArch" instead of i686? 26 , nvidia_x11_i686 ? null 27 + , primusLib_i686 ? null 28 , useDisplayDevice ? false 29 + , extraNvidiaDeviceOptions ? "" 30 + , extraNouveauDeviceOptions ? "" 31 + , useNvidia ? true 32 }: 33 + 34 let 35 version = "3.2.1"; 36 37 + primus = if useNvidia then primusLib else primusLib.override { nvidia_x11 = null; }; 38 + primus_i686 = if useNvidia then primusLib_i686 else primusLib_i686.override { nvidia_x11 = null; }; 39 40 + primusLibs = lib.makeLibraryPath ([primus] ++ lib.optional (primusLib_i686 != null) primus_i686); 41 42 + nvidia_x11s = [nvidia_x11] ++ lib.optional (nvidia_x11_i686 != null) nvidia_x11_i686; 43 44 + nvidiaLibs = lib.makeLibraryPath nvidia_x11s; 45 46 + bbdPath = lib.makeSearchPath "bin" [ module_init_tools xorgserver ]; 47 + bbdLibs = lib.makeLibraryPath [ libX11 libXext ]; 48 49 + xmodules = lib.concatStringsSep "," (map (x: "${x}/lib/xorg/modules") ([ xorgserver ] ++ lib.optional (!useNvidia) xf86videonouveau)); 50 51 + in stdenv.mkDerivation rec { 52 + name = "bumblebee-${version}"; 53 54 src = fetchurl { 55 url = "http://bumblebee-project.org/${name}.tar.gz"; 56 sha256 = "03p3gvx99lwlavznrpg9l7jnl1yfg2adcj8jcjj0gxp20wxp060h"; 57 }; 58 59 + patches = [ ./nixos.patch ]; 60 + 61 + # By default we don't want to use a display device 62 + nvidiaDeviceOptions = lib.optionalString (!useDisplayDevice) '' 63 + # Disable display device 64 + Option "UseEDID" "false" 65 + Option "UseDisplayDevice" "none" 66 + '' + extraNvidiaDeviceOptions; 67 + 68 + nouveauDeviceOptions = extraNouveauDeviceOptions; 69 + 70 + # the have() function is deprecated and not available to bash completions the 71 + # way they are currently loaded in NixOS, so use _have. See #10936 72 + patchPhase = '' 73 + substituteInPlace scripts/bash_completion/bumblebee \ 74 + --replace "have optirun" "_have optirun" 75 + ''; 76 77 preConfigure = '' 78 # Substitute the path to the actual modinfo program in module.c. ··· 88 89 # Apply configuration options 90 substituteInPlace conf/xorg.conf.nvidia \ 91 + --subst-var nvidiaDeviceOptions 92 + 93 + substituteInPlace conf/xorg.conf.nouveau \ 94 + --subst-var nouveauDeviceOptions 95 ''; 96 97 # Build-time dependencies of bumblebeed and optirun. 98 # Note that it has several runtime dependencies. 99 + buildInputs = [ libX11 glib libbsd ]; 100 + nativeBuildInputs = [ makeWrapper pkgconfig help2man ]; 101 102 # The order of LDPATH is very specific: First X11 then the host 103 # environment then the optional sub architecture paths. ··· 108 # include the sub architecture components. 109 configureFlags = [ 110 "--with-udev-rules=$out/lib/udev/rules.d" 111 + # see #10282 112 + #"CONF_PRIMUS_LD_PATH=${primusLibs}" 113 + ] ++ lib.optionals useNvidia [ 114 + "CONF_LDPATH_NVIDIA=${nvidiaLibs}" 115 + "CONF_MODPATH_NVIDIA=${nvidia_x11}/lib/xorg/modules" 116 ]; 117 118 + CFLAGS = [ 119 + "-DX_MODULE_APPENDS=\\\"${xmodules}\\\"" 120 + "-DX_XKB_DIR=\\\"${xkeyboard_config}/etc/X11/xkb\\\"" 121 + ]; 122 + 123 postInstall = '' 124 wrapProgram "$out/sbin/bumblebeed" \ 125 + --set XKB_BINDIR "${xkbcomp}/bin" \ 126 + --prefix PATH : "${bbdPath}" \ 127 + --prefix LD_LIBRARY_PATH : "${bbdLibs}" 128 129 wrapProgram "$out/bin/optirun" \ 130 + --prefix PATH : "${virtualgl}/bin" 131 + ''; 132 133 + meta = with stdenv.lib; { 134 homepage = http://github.com/Bumblebee-Project/Bumblebee; 135 description = "Daemon for managing Optimus videocards (power-on/off, spawns xservers)"; 136 + platforms = platforms.linux; 137 + license = licenses.gpl3; 138 + maintainers = with maintainers; [ abbradar ]; 139 }; 140 }
+81
pkgs/tools/X11/bumblebee/nixos.patch
···
··· 1 + diff --git a/conf/xorg.conf.nouveau b/conf/xorg.conf.nouveau 2 + index 87e48cb..60d6eaf 100644 3 + --- a/conf/xorg.conf.nouveau 4 + +++ b/conf/xorg.conf.nouveau 5 + @@ -15,4 +15,5 @@ Section "Device" 6 + # This Setting is needed on Ubuntu 13.04. 7 + # BusID "PCI:01:00:0" 8 + 9 + +@nouveauDeviceOptions@ 10 + EndSection 11 + diff --git a/conf/xorg.conf.nvidia b/conf/xorg.conf.nvidia 12 + index c3107f9..17072f4 100644 13 + --- a/conf/xorg.conf.nvidia 14 + +++ b/conf/xorg.conf.nvidia 15 + @@ -29,6 +29,6 @@ Section "Device" 16 + Option "ProbeAllGpus" "false" 17 + 18 + Option "NoLogo" "true" 19 + - Option "UseEDID" "false" 20 + - Option "UseDisplayDevice" "none" 21 + + 22 + +@nvidiaDeviceOptions@ 23 + EndSection 24 + diff --git a/src/bbsecondary.c b/src/bbsecondary.c 25 + index 71a6b73..a682d8a 100644 26 + --- a/src/bbsecondary.c 27 + +++ b/src/bbsecondary.c 28 + @@ -145,6 +145,23 @@ bool start_secondary(bool need_secondary) { 29 + } 30 + 31 + bb_log(LOG_INFO, "Starting X server on display %s.\n", bb_config.x_display); 32 + + const char mod_appends[] = X_MODULE_APPENDS; 33 + + 34 + + char *mod_path; 35 + + int pathlen = strlen(bb_config.mod_path); 36 + + if (pathlen == 0) { 37 + + mod_path = mod_appends; 38 + + } else { 39 + + mod_path = malloc(pathlen + 1 + sizeof(mod_appends)); 40 + + if (!mod_path) { 41 + + set_bb_error("Could not allocate memory for modules path\n"); 42 + + return false; 43 + + } 44 + + strcpy(mod_path, bb_config.mod_path); 45 + + mod_path[pathlen] = ','; 46 + + strcpy(mod_path + pathlen + 1, mod_appends); 47 + + } 48 + + 49 + char *x_argv[] = { 50 + XORG_BINARY, 51 + bb_config.x_display, 52 + @@ -153,24 +170,25 @@ bool start_secondary(bool need_secondary) { 53 + "-sharevts", 54 + "-nolisten", "tcp", 55 + "-noreset", 56 + + "-logfile", "/var/log/X.bumblebee.log", 57 + + "-xkbdir", X_XKB_DIR, 58 + "-verbose", "3", 59 + "-isolateDevice", pci_id, 60 + - "-modulepath", bb_config.mod_path, // keep last 61 + + "-modulepath", mod_path, 62 + NULL 63 + }; 64 + enum {n_x_args = sizeof(x_argv) / sizeof(x_argv[0])}; 65 + - if (!*bb_config.mod_path) { 66 + - x_argv[n_x_args - 3] = 0; //remove -modulepath if not set 67 + - } 68 + //close any previous pipe, if it (still) exists 69 + if (bb_status.x_pipe[0] != -1){close(bb_status.x_pipe[0]); bb_status.x_pipe[0] = -1;} 70 + if (bb_status.x_pipe[1] != -1){close(bb_status.x_pipe[1]); bb_status.x_pipe[1] = -1;} 71 + //create a new pipe 72 + if (pipe2(bb_status.x_pipe, O_NONBLOCK | O_CLOEXEC)){ 73 + set_bb_error("Could not create output pipe for X"); 74 + + if (pathlen > 0) free(mod_path); 75 + return false; 76 + } 77 + bb_status.x_pid = bb_run_fork_ld_redirect(x_argv, bb_config.ld_path, bb_status.x_pipe[1]); 78 + + if (pathlen > 0) free(mod_path); 79 + //close the end of the pipe that is not ours 80 + if (bb_status.x_pipe[1] != -1){close(bb_status.x_pipe[1]); bb_status.x_pipe[1] = -1;} 81 + }
-11
pkgs/tools/X11/bumblebee/nvidia-conf.patch
··· 1 - --- bumblebee-3.2.1/conf/xorg.conf.nvidia 2 - +++ bumblebee-3.2.1/conf/xorg.conf.nvidia 3 - @@ -29,6 +29,5 @@ Section "Device" 4 - Option "ProbeAllGpus" "false" 5 - 6 - Option "NoLogo" "true" 7 - - Option "UseEDID" "false" 8 - - Option "UseDisplayDevice" "none" 9 - +@deviceOptions@ 10 - EndSection 11 -
···
-11
pkgs/tools/X11/bumblebee/xopts.patch
··· 1 - --- bumblebee-3.2.1/src/bbsecondary.c 2012-02-05 00:03:06.003439638 +0100 2 - +++ bumblebee-3.2.1/src/bbsecondary.c 2012-02-05 00:46:38.017382619 +0100 3 - @@ -149,6 +149,8 @@ 4 - "-sharevts", 5 - "-nolisten", "tcp", 6 - "-noreset", 7 - + "-xkbdir", getenv("XKB_DIR"), 8 - + "-logfile", "/var/log/X.bumblebee.log", 9 - "-verbose", "3", 10 - "-isolateDevice", pci_id, 11 - "-modulepath",
···
-12
pkgs/tools/X11/primus/builder.sh
··· 1 - source $stdenv/setup 2 - 3 - cp -r $src src 4 - cd src 5 - 6 - export LIBDIR=$out/lib 7 - export PRIMUS_libGLa=$nvidia/lib/libGL.so 8 - export PRIMUS_libGLd=$mesa/lib/libGL.so 9 - export PRIMUS_LOAD_GLOBAL=$mesa/lib/libglapi.so 10 - 11 - make 12 - ln -s $LIBDIR/libGL.so.1 $LIBDIR/libGL.so
···
+10 -23
pkgs/tools/X11/primus/default.nix
··· 5 # Other distributions do the same. 6 { stdenv 7 , primusLib 8 - , writeScript 9 , primusLib_i686 ? null 10 }: 11 - with stdenv.lib; 12 let 13 - version = "1.0.0748176"; 14 - ldPath = makeLibraryPath ([primusLib] ++ optional (primusLib_i686 != null) primusLib_i686); 15 - primusrun = writeScript "primusrun" 16 - '' 17 export LD_LIBRARY_PATH=${ldPath}:$LD_LIBRARY_PATH 18 exec "$@" 19 - ''; 20 - in 21 - stdenv.mkDerivation { 22 - name = "primus-${version}"; 23 - builder = writeScript "builder" 24 - '' 25 - source $stdenv/setup 26 - mkdir -p $out/bin 27 - cp ${primusrun} $out/bin/primusrun 28 - ''; 29 - 30 - meta = { 31 - homepage = https://github.com/amonakov/primus; 32 - description = "Faster OpenGL offloading for Bumblebee"; 33 - maintainers = with maintainers; [ coconnor ]; 34 - }; 35 - }
··· 5 # Other distributions do the same. 6 { stdenv 7 , primusLib 8 + , writeScriptBin 9 , primusLib_i686 ? null 10 + , useNvidia ? true 11 }: 12 + 13 let 14 + primus = if useNvidia then primusLib else primusLib.override { nvidia_x11 = null; }; 15 + primus_i686 = if useNvidia then primusLib_i686 else primusLib_i686.override { nvidia_x11 = null; }; 16 + ldPath = stdenv.lib.makeLibraryPath ([primus] ++ stdenv.lib.optional (primusLib_i686 != null) primus_i686); 17 + 18 + in writeScriptBin "primusrun" '' 19 + #!${stdenv.shell} 20 export LD_LIBRARY_PATH=${ldPath}:$LD_LIBRARY_PATH 21 exec "$@" 22 + ''
+25 -10
pkgs/tools/X11/primus/lib.nix
··· 1 { stdenv, fetchgit 2 , xlibsWrapper, mesa 3 - , nvidia 4 }: 5 - let 6 - version = "1.0.0748176"; 7 - in 8 stdenv.mkDerivation { 9 - name = "primus-lib-${version}"; 10 src = fetchgit { 11 url = git://github.com/amonakov/primus.git; 12 - rev = "074817614c014e3a99259388cb18fd54648b659a"; 13 - sha256 = "0mrh432md6zrm16avxyk57mgszrqpgwdjahspchvlaccqxp3x82v"; 14 }; 15 16 - inherit nvidia mesa; 17 18 - buildInputs = [ xlibsWrapper mesa ]; 19 - builder = ./builder.sh; 20 }
··· 1 { stdenv, fetchgit 2 , xlibsWrapper, mesa 3 + , nvidia_x11 ? null 4 + , libX11 5 }: 6 + 7 stdenv.mkDerivation { 8 + name = "primus-lib-20151204"; 9 + 10 src = fetchgit { 11 url = git://github.com/amonakov/primus.git; 12 + rev = "d1afbf6fce2778c0751eddf19db9882e04f18bfd"; 13 + sha256 = "8f095b5e2030cdb155a42a49873832843c1e4dc3087a6fb94d198de982609923"; 14 }; 15 16 + buildInputs = [ libX11 mesa ]; 17 + 18 + makeFlags = [ "LIBDIR=$(out)/lib" 19 + "PRIMUS_libGLa=${if nvidia_x11 == null then mesa else nvidia_x11}/lib/libGL.so" 20 + "PRIMUS_libGLd=${mesa}/lib/libGL.so" 21 + "PRIMUS_LOAD_GLOBAL=${mesa}/lib/libglapi.so" 22 + ]; 23 + 24 + installPhase = '' 25 + ln -s $out/lib/libGL.so.1 $out/lib/libGL.so 26 + ''; 27 28 + meta = with stdenv.lib; { 29 + description = "Low-overhead client-side GPU offloading"; 30 + homepage = https://github.com/amonakov/primus; 31 + platforms = platforms.linux; 32 + license = licenses.bsd2; 33 + maintainers = with maintainers; [ abbradar ]; 34 + }; 35 }
+17 -28
pkgs/tools/X11/virtualgl/default.nix
··· 1 - { stdenv, fetchurl, mesa, libX11, openssl, libXext 2 - , libjpeg_turbo, cmake }: 3 4 - let 5 - version = "2.3.2"; 6 - in 7 - stdenv.mkDerivation { 8 - name = "virtualgl-${version}"; 9 - src = fetchurl { 10 - url = "mirror://sourceforge/virtualgl/VirtualGL-${version}.tar.gz"; 11 - sha256 = "062lrhd8yr13ch4wpgzxdabqs92j4q7fcl3a0c3sdlav4arspqmy"; 12 - }; 13 14 - patches = [ ./xshm.patch ./fixturbopath.patch ]; 15 16 - prePatch = '' 17 - sed -i s,LD_PRELOAD=lib,LD_PRELOAD=$out/lib/lib, server/vglrun 18 - ''; 19 - 20 - cmakeFlags = [ "-DTJPEG_LIBRARY=${libjpeg_turbo}/lib/libturbojpeg.so" ]; 21 - 22 - preInstall = '' 23 - export makeFlags="prefix=$out" 24 ''; 25 - 26 - buildInputs = [ cmake mesa libX11 openssl libXext libjpeg_turbo ]; 27 - 28 - meta = { 29 - homepage = http://www.virtualgl.org/; 30 - description = "X11 GL rendering in a remote computer with full 3D hw acceleration"; 31 - license = stdenv.lib.licenses.free; # many parts under different free licenses 32 - }; 33 }
··· 1 + { lib, buildEnv 2 + , virtualglLib 3 + , virtualglLib_i686 ? null 4 + }: 5 6 + buildEnv { 7 + name = "virtualgl-${lib.getVersion virtualglLib}"; 8 9 + paths = [ virtualglLib ]; 10 11 + postBuild = lib.optionalString (virtualglLib_i686 != null) '' 12 + rm $out/fakelib 13 + # workaround for #4621 14 + rm $out/bin 15 + mkdir $out/bin 16 + for i in ${virtualglLib}/bin/*; do 17 + ln -s $i $out/bin 18 + done 19 + ln -s ${virtualglLib}/bin/.vglrun.vars64 $out/bin 20 + ln -s ${virtualglLib_i686}/bin/.vglrun.vars32 $out/bin 21 ''; 22 }
-16
pkgs/tools/X11/virtualgl/fixturbopath.patch
··· 1 - --- VirtualGL-2.3/cmakescripts/FindTurboJPEG.cmake.orig 2012-02-02 17:33:49.496283001 +0100 2 - +++ VirtualGL-2.3/cmakescripts/FindTurboJPEG.cmake 2012-02-02 17:44:18.772483239 +0100 3 - @@ -40,8 +40,11 @@ 4 - endif() 5 - endif() 6 - 7 - -set(TJPEG_LIBRARY ${DEFAULT_TJPEG_LIBRARY} CACHE PATH 8 - - "TurboJPEG library path (default: ${DEFAULT_TJPEG_LIBRARY})") 9 - +if(NOT TJPEG_LIBRARY) 10 - + message(STATUS "TJPEG_LIBRARY environment variable not set") 11 - + set(TJPEG_LIBRARY ${DEFAULT_TJPEG_LIBRARY} CACHE PATH 12 - + "TurboJPEG library path (default: ${DEFAULT_TJPEG_LIBRARY})") 13 - +endif() 14 - 15 - if(WIN32) 16 - set(CMAKE_REQUIRED_DEFINITIONS -MT)
···
+29
pkgs/tools/X11/virtualgl/lib.nix
···
··· 1 + { stdenv, fetchurl, cmake, mesa, libX11, libXv, libjpeg_turbo, fltk }: 2 + 3 + let 4 + version = "2.4.1"; 5 + in 6 + stdenv.mkDerivation { 7 + name = "virtualgl-lib-${version}"; 8 + 9 + src = fetchurl { 10 + url = "mirror://sourceforge/virtualgl/VirtualGL-${version}.tar.gz"; 11 + sha256 = "0bngb4hrl0kn19qb3sa6mg6dbaahfk09gx2ng18l00xm6pmwd298"; 12 + }; 13 + 14 + cmakeFlags = [ "-DVGL_SYSTEMFLTK=1" "-DTJPEG_LIBRARY=${libjpeg_turbo}/lib/libturbojpeg.so" ]; 15 + 16 + makeFlags = [ "PREFIX=$(out)" ]; 17 + 18 + nativeBuildInputs = [ cmake ]; 19 + 20 + buildInputs = [ libjpeg_turbo mesa fltk libX11 libXv ]; 21 + 22 + meta = with stdenv.lib; { 23 + homepage = http://www.virtualgl.org/; 24 + description = "X11 GL rendering in a remote computer with full 3D hw acceleration"; 25 + license = licenses.free; # many parts under different free licenses 26 + platforms = platforms.linux; 27 + maintainers = with maintainers; [ abbradar ]; 28 + }; 29 + }
-13
pkgs/tools/X11/virtualgl/xshm.patch
··· 1 - diff --git a/util/fbx.c b/util/fbx.c 2 - index 06ea835..0d89842 100644 3 - --- a/util/fbx.c 4 - +++ b/util/fbx.c 5 - @@ -15,6 +15,8 @@ 6 - // This library abstracts fast frame buffer access 7 - #include <string.h> 8 - #include <stdlib.h> 9 - +#include <X11/Xmd.h> 10 - +#include <X11/extensions/shmproto.h> 11 - #include "fbx.h" 12 - 13 - #define MINWIDTH 160
···
+3 -3
pkgs/tools/admin/awscli/default.nix
··· 2 3 pythonPackages.buildPythonPackage rec { 4 name = "awscli-${version}"; 5 - version = "1.7.47"; 6 namePrefix = ""; 7 8 src = fetchFromGitHub { 9 owner = "aws"; 10 repo = "aws-cli"; 11 rev = version; 12 - sha256 = "1955y1ar2mqzqgfngpwp8pc78wphh1qdgwwy0gs6i352jaqzkvwi"; 13 }; 14 15 propagatedBuildInputs = [ 16 - pythonPackages.botocore_1_1_10 17 pythonPackages.bcdoc 18 pythonPackages.six 19 pythonPackages.colorama
··· 2 3 pythonPackages.buildPythonPackage rec { 4 name = "awscli-${version}"; 5 + version = "1.9.6"; 6 namePrefix = ""; 7 8 src = fetchFromGitHub { 9 owner = "aws"; 10 repo = "aws-cli"; 11 rev = version; 12 + sha256 = "08qclasxf8zdxwmngvynq9n5vv4nwdy68ma7wn7ji40bxmls37g2"; 13 }; 14 15 propagatedBuildInputs = [ 16 + pythonPackages.botocore 17 pythonPackages.bcdoc 18 pythonPackages.six 19 pythonPackages.colorama
+2 -2
pkgs/tools/admin/letsencrypt/default.nix
··· 3 let 4 src = fetchurl { 5 url = "https://github.com/letsencrypt/letsencrypt/archive/v${version}.tar.gz"; 6 - sha256 = "00p94pmli4lr5l3vqi11374p9jxiqir1ygx89zgfm4db47srx41z"; 7 }; 8 - version = "0.0.0.dev20151123"; 9 acme = pythonPackages.buildPythonPackage rec { 10 name = "acme-${version}"; 11 inherit src version;
··· 3 let 4 src = fetchurl { 5 url = "https://github.com/letsencrypt/letsencrypt/archive/v${version}.tar.gz"; 6 + sha256 = "056y5bsmpc4ya5xxals4ypzsm927j6n5kwby3bjc03sy3sscf6hw"; 7 }; 8 + version = "0.1.0"; 9 acme = pythonPackages.buildPythonPackage rec { 10 name = "acme-${version}"; 11 inherit src version;
+4 -3
pkgs/tools/backup/rsnapshot/default.nix
··· 16 ''; 17 in 18 stdenv.mkDerivation rec { 19 - name = "rsnapshot-1.3.1"; 20 src = fetchurl { 21 - url = "mirror://sourceforge/rsnapshot/${name}.tar.gz"; 22 - sha256 = "0pn7vlg3yxl7xrvfwmp4zlrg3cckmlldq6qr5bs3b2b281zcgdll"; 23 }; 24 25 propagatedBuildInputs = [perl openssh rsync logger];
··· 16 ''; 17 in 18 stdenv.mkDerivation rec { 19 + name = "rsnapshot-1.4.1"; 20 + 21 src = fetchurl { 22 + url = "http://rsnapshot.org/downloads/${name}.tar.gz"; 23 + sha256 = "1s28wkpqajgmwi88n3xs3qsa4b7yxd6lkl4zfi0mr06klwli2jpv"; 24 }; 25 26 propagatedBuildInputs = [perl openssh rsync logger];
-52
pkgs/tools/backup/rsnapshot/git.nix
··· 1 - { fetchFromGitHub, stdenv, writeText, perl, openssh, rsync, logger, 2 - configFile ? "/etc/rsnapshot.conf" }: 3 - 4 - let patch = writeText "rsnapshot-config.patch" '' 5 - --- rsnapshot-program.pl 2013-10-05 20:31:08.715991442 +0200 6 - +++ rsnapshot-program.pl 2013-10-05 20:31:42.496193633 +0200 7 - @@ -383,7 +383,7 @@ 8 - } 9 - 10 - # set global variable 11 - - $config_file = $default_config_file; 12 - + $config_file = '${configFile}'; 13 - } 14 - 15 - # accepts no args 16 - ''; 17 - in 18 - stdenv.mkDerivation rec { 19 - name = "rsnapshot-1.4git"; 20 - src = fetchFromGitHub { 21 - owner = "DrHyde"; 22 - repo = "rsnapshot"; 23 - rev = "1047cbb57937c29233388e2fcd847fecd3babe74"; 24 - sha256 = "173y9q89dp4zf7nysqhjp3i2m086n7qdpawb9vx0ml5zha6mxf2p"; 25 - }; 26 - 27 - propagatedBuildInputs = [perl openssh rsync logger]; 28 - 29 - patchPhase = '' 30 - substituteInPlace "Makefile.in" --replace \ 31 - "/usr/bin/pod2man" "${perl}/bin/pod2man" 32 - patch -p0 <${patch} 33 - ''; 34 - 35 - # I still think this is a good idea, but it currently fails in the chroot because it checks 36 - # that things are writable and so on. 37 - #checkPhase = '' 38 - # if [ -f "${configFile}" ] 39 - # then 40 - # ${perl}/bin/perl -w ./rsnapshot configtest 41 - # else 42 - # echo File "${configFile}" does not exist, not checking 43 - # fi 44 - #''; 45 - 46 - meta = with stdenv.lib; { 47 - description = "A filesystem snapshot utility for making backups of local and remote systems"; 48 - homepage = http://rsnapshot.org/; 49 - license = stdenv.lib.licenses.gpl2Plus; 50 - platforms = platforms.linux; 51 - }; 52 - }
···
+7
pkgs/tools/misc/bfr/default.nix
··· 9 sha256 = "0fadfssvj9klj4dq9wdrzys1k2a1z2j0p6kgnfgbjv0n1bq6h4cy"; 10 }; 11 12 buildInputs = [ perl ]; 13 14 meta = with stdenv.lib; {
··· 9 sha256 = "0fadfssvj9klj4dq9wdrzys1k2a1z2j0p6kgnfgbjv0n1bq6h4cy"; 10 }; 11 12 + patches = 13 + [ (fetchurl { 14 + url = "https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-misc/bfr/files/bfr-1.6-perl.patch?revision=1.1"; 15 + sha256 = "1pk9jm3c1qzs727lh0bw61w3qbykaqg4jblywf9pvq5bypk88qfj"; 16 + }) 17 + ]; 18 + 19 buildInputs = [ perl ]; 20 21 meta = with stdenv.lib; {
+12
pkgs/tools/misc/coreutils/default.nix
··· 2 , aclSupport ? false, acl ? null 3 , selinuxSupport? false, libselinux ? null, libsepol ? null 4 , autoconf, automake114x, texinfo 5 }: 6 7 assert aclSupport -> acl != null; ··· 85 FORCE_UNSAFE_CONFIGURE = stdenv.lib.optionalString (stdenv.system == "armv7l-linux" || stdenv.isSunOS) "1"; 86 87 makeFlags = optionalString stdenv.isDarwin "CFLAGS=-D_FORTIFY_SOURCE=0"; 88 89 meta = { 90 homepage = http://www.gnu.org/software/coreutils/;
··· 2 , aclSupport ? false, acl ? null 3 , selinuxSupport? false, libselinux ? null, libsepol ? null 4 , autoconf, automake114x, texinfo 5 + , withPrefix ? false 6 }: 7 8 assert aclSupport -> acl != null; ··· 86 FORCE_UNSAFE_CONFIGURE = stdenv.lib.optionalString (stdenv.system == "armv7l-linux" || stdenv.isSunOS) "1"; 87 88 makeFlags = optionalString stdenv.isDarwin "CFLAGS=-D_FORTIFY_SOURCE=0"; 89 + 90 + # e.g. ls -> gls; grep -> ggrep 91 + postFixup = # feel free to simplify on a mass rebuild 92 + if withPrefix then 93 + '' 94 + ( 95 + cd "$out/bin" 96 + find * -type f -executable -exec mv {} g{} \; 97 + ) 98 + '' 99 + else null; 100 101 meta = { 102 homepage = http://www.gnu.org/software/coreutils/;
+2 -3
pkgs/tools/misc/logstash/default.nix
··· 16 17 installPhase = '' 18 mkdir -p $out 19 - cp -r {Gemfile*,vendor,lib} $out 20 - cp bin/logstash $out/logstash 21 - cp bin/plugin $out/logstash-plugin 22 ''; 23 24 meta = with stdenv.lib; {
··· 16 17 installPhase = '' 18 mkdir -p $out 19 + cp -r {Gemfile*,vendor,lib,bin} $out 20 + mv $out/bin/plugin $out/bin/logstash-plugin 21 ''; 22 23 meta = with stdenv.lib; {
+2 -2
pkgs/tools/misc/tlp/default.nix
··· 1 { stdenv, lib, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils 2 - , kmod, pciutils, smartmontools, x86_energy_perf_policy 3 , enableRDW ? false, networkmanager 4 }: 5 ··· 27 buildInputs = [ perl ]; 28 29 paths = lib.makeSearchPath "bin" 30 - ([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools 31 x86_energy_perf_policy 32 ] 33 ++ lib.optional enableRDW networkmanager
··· 1 { stdenv, lib, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils 2 + , module_init_tools, pciutils, smartmontools, x86_energy_perf_policy 3 , enableRDW ? false, networkmanager 4 }: 5 ··· 27 buildInputs = [ perl ]; 28 29 paths = lib.makeSearchPath "bin" 30 + ([ iw rfkill hdparm ethtool inetutils systemd module_init_tools pciutils smartmontools 31 x86_energy_perf_policy 32 ] 33 ++ lib.optional enableRDW networkmanager
+19
pkgs/tools/misc/xapian-omega/default.nix
···
··· 1 + { stdenv, fetchurl, pkgconfig, xapian, perl, pcre, zlib }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "xapian-omega-${version}"; 5 + version = "1.2.21"; 6 + 7 + src = fetchurl { 8 + url = "http://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz"; 9 + sha256 = "0zjjr4ypanwrjkcpgi37d72v2jjcfwnw8lgddv0i7z2jf1fklbc6"; 10 + }; 11 + 12 + buildInputs = [ pkgconfig xapian perl pcre zlib ]; 13 + 14 + meta = with stdenv.lib; { 15 + description = "Indexer and CGI search front-end built on Xapian library"; 16 + homepage = http://xapian.org/; 17 + license = licenses.gpl2Plus; 18 + }; 19 + }
+6
pkgs/tools/networking/dnsmasq/default.nix
··· 29 "LOCALEDIR=$(out)/share/locale" 30 ]; 31 32 postInstall = '' 33 install -Dm644 dbus/dnsmasq.conf $out/etc/dbus-1/system.d/dnsmasq.conf 34 install -Dm644 trust-anchors.conf $out/share/dnsmasq/trust-anchors.conf 35 36 mkdir -p $out/share/dbus-1/system-services 37 cat <<END > $out/share/dbus-1/system-services/uk.org.thekelleys.dnsmasq.service
··· 29 "LOCALEDIR=$(out)/share/locale" 30 ]; 31 32 + postBuild = '' 33 + make -C contrib/wrt 34 + ''; 35 + 36 postInstall = '' 37 install -Dm644 dbus/dnsmasq.conf $out/etc/dbus-1/system.d/dnsmasq.conf 38 install -Dm644 trust-anchors.conf $out/share/dnsmasq/trust-anchors.conf 39 + install -Dm755 contrib/wrt/dhcp_lease_time $out/bin/dhcp_lease_time 40 + install -Dm755 contrib/wrt/dhcp_release $out/bin/dhcp_release 41 42 mkdir -p $out/share/dbus-1/system-services 43 cat <<END > $out/share/dbus-1/system-services/uk.org.thekelleys.dnsmasq.service
+2 -2
pkgs/tools/networking/dropbear/default.nix
··· 2 sftpPath ? "/var/run/current-system/sw/libexec/sftp-server" }: 3 4 stdenv.mkDerivation rec { 5 - name = "dropbear-2015.70"; 6 7 src = fetchurl { 8 url = "http://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2"; 9 - sha256 = "0mzj1gwamxmk8rab4xmcvldcxdvs5zczim2hdza3dwfhy4ywra32"; 10 }; 11 12 dontDisableStatic = enableStatic;
··· 2 sftpPath ? "/var/run/current-system/sw/libexec/sftp-server" }: 3 4 stdenv.mkDerivation rec { 5 + name = "dropbear-2015.71"; 6 7 src = fetchurl { 8 url = "http://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2"; 9 + sha256 = "1bw3lzmisn6gs6zy9vcqbfnicl437ydskqcayklpw60fkhb18qip"; 10 }; 11 12 dontDisableStatic = enableStatic;
-2
pkgs/tools/networking/openvpn/default.nix
··· 21 --enable-systemd 22 --enable-iproute2 23 IPROUTE=${iproute}/sbin/ip 24 - '' + optionalString stdenv.isDarwin '' 25 - --disable-plugin-auth-pam 26 ''; 27 28 postInstall = ''
··· 21 --enable-systemd 22 --enable-iproute2 23 IPROUTE=${iproute}/sbin/ip 24 ''; 25 26 postInstall = ''
+1 -1
pkgs/tools/networking/p2p/rtorrent/default.nix
··· 12 }; 13 14 buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl xmlrpc_c ]; 15 - configureFlags = "--with-xmlrpc-c"; 16 17 # postInstall = '' 18 # mkdir -p $out/share/man/man1 $out/share/rtorrent
··· 12 }; 13 14 buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl xmlrpc_c ]; 15 + configureFlags = [ "--with-xmlrpc-c" "--with-posix-fallocate" ]; 16 17 # postInstall = '' 18 # mkdir -p $out/share/man/man1 $out/share/rtorrent
+2 -2
pkgs/tools/networking/snabbswitch/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "snabb-${version}"; 5 - version = "2015.11"; 6 7 src = fetchurl { 8 url = "https://github.com/SnabbCo/snabbswitch/archive/v${version}.tar.gz"; 9 - sha256 = "1llyqbjjmh2s23hnx154qj0y6pn5mpxk8qj1fxfpk7dnbq78q601"; 10 }; 11 12 installPhase = ''
··· 2 3 stdenv.mkDerivation rec { 4 name = "snabb-${version}"; 5 + version = "2015.12"; 6 7 src = fetchurl { 8 url = "https://github.com/SnabbCo/snabbswitch/archive/v${version}.tar.gz"; 9 + sha256 = "1949a6d3hqdr2hdfmrr1na9gvjdwdahadbhmvz2pg7azmpq6ssmr"; 10 }; 11 12 installPhase = ''
+38 -26
pkgs/tools/package-management/nix-prefetch-scripts/default.nix
··· 1 - { stdenv, makeWrapper, 2 git, subversion, mercurial, bazaar, cvs, unzip, curl, gnused, coreutils 3 }: 4 - stdenv.mkDerivation { 5 - name = "nix-prefetch-scripts"; 6 7 - buildInputs = [ makeWrapper ]; 8 9 - phases = [ "installPhase" "fixupPhase" ]; 10 - installPhase = '' 11 - mkdir -p $out/bin 12 - function copyScript { 13 - local name=nix-prefetch-$1; 14 - local src=$2; 15 local wrapArgs="" 16 - cp $src $out/bin/$name; 17 - for dep in ''${@:3}; do 18 wrapArgs="$wrapArgs --prefix PATH : $dep/bin" 19 done 20 wrapArgs="$wrapArgs --prefix PATH : ${gnused}/bin" 21 wrapArgs="$wrapArgs --set HOME : /homeless-shelter" 22 wrapProgram $out/bin/$name $wrapArgs 23 - } 24 25 - copyScript "hg" ${../../../build-support/fetchhg/nix-prefetch-hg} ${mercurial} 26 - copyScript "git" ${../../../build-support/fetchgit/nix-prefetch-git} ${git} ${coreutils} 27 - copyScript "svn" ${../../../build-support/fetchsvn/nix-prefetch-svn} ${subversion} 28 - copyScript "bzr" ${../../../build-support/fetchbzr/nix-prefetch-bzr} ${bazaar} 29 - copyScript "cvs" ${../../../build-support/fetchcvs/nix-prefetch-cvs} ${cvs} 30 - copyScript "zip" ${../../../build-support/fetchzip/nix-prefetch-zip} ${unzip} ${curl} 31 - ''; 32 33 - meta = with stdenv.lib; { 34 - description = "Collection of all the nix-prefetch-* scripts which may be used to obtain source hashes"; 35 - maintainers = with maintainers; [ bennofs ]; 36 - platforms = with stdenv.lib.platforms; unix; 37 - # Quicker to build than to download, I hope 38 - hydraPlatforms = []; 39 }; 40 }
··· 1 + { stdenv, makeWrapper, buildEnv, 2 git, subversion, mercurial, bazaar, cvs, unzip, curl, gnused, coreutils 3 }: 4 5 + let mkPrefetchScript = tool: src: deps: 6 + stdenv.mkDerivation { 7 + name = "nix-prefetch-${tool}"; 8 9 + buildInputs = [ makeWrapper ]; 10 + 11 + phases = [ "installPhase" "fixupPhase" ]; 12 + installPhase = '' 13 + mkdir -p $out/bin 14 + 15 local wrapArgs="" 16 + cp ${src} $out/bin/$name; 17 + for dep in ${stdenv.lib.concatStringsSep " " deps}; do 18 wrapArgs="$wrapArgs --prefix PATH : $dep/bin" 19 done 20 wrapArgs="$wrapArgs --prefix PATH : ${gnused}/bin" 21 wrapArgs="$wrapArgs --set HOME : /homeless-shelter" 22 wrapProgram $out/bin/$name $wrapArgs 23 + ''; 24 25 + preferLocalBuild = true; 26 27 + meta = with stdenv.lib; { 28 + description = "Script used to obtain source hashes for fetch${tool}"; 29 + maintainers = with maintainers; [ bennofs ]; 30 + platforms = stdenv.lib.platforms.unix; 31 + }; 32 + }; 33 + in rec { 34 + nix-prefetch-bzr = mkPrefetchScript "bzr" ../../../build-support/fetchbzr/nix-prefetch-bzr [bazaar]; 35 + nix-prefetch-cvs = mkPrefetchScript "cvs" ../../../build-support/fetchcvs/nix-prefetch-cvs [cvs]; 36 + nix-prefetch-git = mkPrefetchScript "git" ../../../build-support/fetchgit/nix-prefetch-git [git coreutils]; 37 + nix-prefetch-hg = mkPrefetchScript "hg" ../../../build-support/fetchhg/nix-prefetch-hg [mercurial]; 38 + nix-prefetch-svn = mkPrefetchScript "svn" ../../../build-support/fetchsvn/nix-prefetch-svn [subversion]; 39 + nix-prefetch-zip = mkPrefetchScript "zip" ../../../build-support/fetchzip/nix-prefetch-zip [unzip curl]; 40 + 41 + nix-prefetch-scripts = buildEnv { 42 + name = "nix-prefetch-scripts"; 43 + 44 + paths = [ nix-prefetch-bzr nix-prefetch-cvs nix-prefetch-git nix-prefetch-hg nix-prefetch-svn nix-prefetch-zip ]; 45 + 46 + meta = with stdenv.lib; { 47 + description = "Collection of all the nix-prefetch-* scripts which may be used to obtain source hashes"; 48 + maintainers = with maintainers; [ bennofs ]; 49 + platforms = stdenv.lib.platforms.unix; 50 + }; 51 }; 52 }
+3 -3
pkgs/tools/security/gnupg/21.nix
··· 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 '' 24 sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c 25 - ''; 26 27 buildInputs = [ 28 pkgconfig libgcrypt libassuan libksba libiconv npth
··· 13 assert x11Support -> pinentry != null; 14 15 stdenv.mkDerivation rec { 16 + name = "gnupg-2.1.10"; 17 18 src = fetchurl { 19 url = "mirror://gnupg/gnupg/${name}.tar.bz2"; 20 + sha256 = "1ybcsazjm21i2ys1wh49cz4azmqz7ghx5rb6hm4gm93i2zc5igck"; 21 }; 22 23 postPatch = stdenv.lib.optionalString stdenv.isLinux '' 24 sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c 25 + ''; #" fix Emacs syntax highlighting :-( 26 27 buildInputs = [ 28 pkgconfig libgcrypt libassuan libksba libiconv npth
+49
pkgs/tools/security/pass/rofi-pass.nix
···
··· 1 + { stdenv, fetchgit 2 + , pass, rofi, coreutils, utillinux, xdotool, gnugrep 3 + , makeWrapper }: 4 + 5 + stdenv.mkDerivation rec { 6 + name = "rofi-pass-${version}"; 7 + version = "1.3.1"; 8 + 9 + src = fetchgit { 10 + url = "https://github.com/carnager/rofi-pass"; 11 + rev = "refs/tags/${version}"; 12 + sha256 = "1r206fq96avhlgkf2fzf8j2a25dav0s945qv66hwvqwhxq74frrv"; 13 + }; 14 + 15 + buildInputs = [ makeWrapper ]; 16 + 17 + dontBuild = true; 18 + 19 + installPhase = '' 20 + mkdir -p $out/bin 21 + cp -a $src/rofi-pass $out/bin/rofi-pass 22 + 23 + mkdir -p $out/share/doc/rofi-pass/ 24 + cp -a $src/config.example $out/share/doc/rofi-pass/config.example 25 + ''; 26 + 27 + wrapperPath = with stdenv.lib; makeSearchPath "bin/" [ 28 + coreutils 29 + utillinux 30 + rofi 31 + pass 32 + xdotool 33 + gnugrep 34 + ]; 35 + 36 + fixupPhase = '' 37 + patchShebangs $out/bin 38 + 39 + wrapProgram $out/bin/rofi-pass \ 40 + --prefix PATH : "${wrapperPath}" 41 + ''; 42 + 43 + meta = { 44 + description = "A script to make rofi work with password-store"; 45 + homepage = https://github.com/carnager/rofi-pass; 46 + maintainers = with stdenv.lib.maintainers; [ hiberno the-kenny ]; 47 + license = stdenv.lib.licenses.gpl3; 48 + }; 49 + }
+4 -4
pkgs/tools/security/pcsclite/default.nix
··· 11 configureFlags = [ 12 # The OS should care on preparing the drivers into this location 13 "--enable-usbdropdir=/var/lib/pcsc/drivers" 14 - "--with-systemdsystemunitdir=\${out}/etc/systemd/system" 15 "--enable-confdir=/etc" 16 - ]; 17 18 nativeBuildInputs = [ pkgconfig perl python2 ]; 19 - buildInputs = [ udev dbus_libs ]; 20 21 meta = with stdenv.lib; { 22 description = "Middleware to access a smart card using SCard API (PC/SC)"; 23 homepage = http://pcsclite.alioth.debian.org/; 24 license = licenses.bsd3; 25 maintainers = with maintainers; [ viric wkennington ]; 26 - platforms = platforms.linux; 27 }; 28 }
··· 11 configureFlags = [ 12 # The OS should care on preparing the drivers into this location 13 "--enable-usbdropdir=/var/lib/pcsc/drivers" 14 "--enable-confdir=/etc" 15 + ] ++ stdenv.lib.optional stdenv.isLinux 16 + "--with-systemdsystemunitdir=\${out}/etc/systemd/system"; 17 18 nativeBuildInputs = [ pkgconfig perl python2 ]; 19 + buildInputs = stdenv.lib.optionals stdenv.isLinux [ udev dbus_libs ]; 20 21 meta = with stdenv.lib; { 22 description = "Middleware to access a smart card using SCard API (PC/SC)"; 23 homepage = http://pcsclite.alioth.debian.org/; 24 license = licenses.bsd3; 25 maintainers = with maintainers; [ viric wkennington ]; 26 + platforms = with platforms; unix; 27 }; 28 }
+33
pkgs/tools/system/ansible/2.nix
···
··· 1 + { windowsSupport ? true, stdenv, fetchurl, pythonPackages, python }: 2 + 3 + pythonPackages.buildPythonPackage rec { 4 + version = "v2.0.0_0.6.rc1"; 5 + name = "ansible-${version}"; 6 + namePrefix = ""; 7 + 8 + src = fetchurl { 9 + url = "http://releases.ansible.com/ansible/ansible-2.0.0-0.6.rc1.tar.gz"; 10 + sha256 = "0v7fqi7qg9lzvpsjlaw9rzas8n1cdsyp3y9jrqzjxs9nbknwcibd"; 11 + }; 12 + 13 + prePatch = '' 14 + sed -i "s,/usr/,$out," lib/ansible/constants.py 15 + ''; 16 + 17 + doCheck = false; 18 + dontStrip = true; 19 + dontPatchELF = true; 20 + dontPatchShebangs = true; 21 + 22 + pythonPath = with pythonPackages; [ 23 + paramiko jinja2 pyyaml httplib2 boto six 24 + ] ++ stdenv.lib.optional windowsSupport pywinrm; 25 + 26 + meta = with stdenv.lib; { 27 + homepage = "http://www.ansible.com"; 28 + description = "A simple automation tool"; 29 + license = licenses.gpl3; 30 + maintainers = [ maintainers.copumpkin ]; 31 + platforms = platforms.linux ++ [ "x86_64-darwin" ]; 32 + }; 33 + }
+2 -2
pkgs/tools/typesetting/tex/auctex/default.nix
··· 2 3 stdenv.mkDerivation ( rec { 4 pname = "auctex"; 5 - version = "11.88"; 6 name = "${pname}-${version}"; 7 8 meta = { ··· 12 13 src = fetchurl { 14 url = "mirror://gnu/${pname}/${name}.tar.gz"; 15 - sha256 = "0gy89nzha20p6m7kpv2nl1fnsfka9scc3mw1lz66fp6czganfs3i"; 16 }; 17 18 buildInputs = [ emacs texLive ];
··· 2 3 stdenv.mkDerivation ( rec { 4 pname = "auctex"; 5 + version = "11.89"; 6 name = "${pname}-${version}"; 7 8 meta = { ··· 12 13 src = fetchurl { 14 url = "mirror://gnu/${pname}/${name}.tar.gz"; 15 + sha256 = "1cf9fkkmzjxa4jvk6c01zgxdikr4zzb5pcx8i4r0hwdk0xljkbwq"; 16 }; 17 18 buildInputs = [ emacs texLive ];
+20 -15
pkgs/tools/typesetting/tex/nix/default.nix
··· 10 , extraFiles ? [] 11 , compressBlanksInIndex ? true 12 , packages ? [] 13 , copySources ? false 14 }: 15 16 assert generatePDF -> !generatePS; 17 - 18 pkgs.stdenv.mkDerivation { 19 name = "doc"; 20 - 21 builder = ./run-latex.sh; 22 copyIncludes = ./copy-includes.pl; 23 - 24 inherit rootFile generatePDF generatePS extraFiles 25 compressBlanksInIndex copySources; 26 27 includes = map (x: [x.key (baseNameOf (toString x.key))]) 28 (findLaTeXIncludes {inherit rootFile;}); 29 - 30 - buildInputs = [ pkgs.tetex pkgs.perl ] ++ packages; 31 }; 32 33 ··· 41 42 builtins.genericClosure { 43 startSet = [{key = rootFile;}]; 44 - 45 operator = 46 {key, ...}: 47 ··· 72 73 in pkgs.lib.fold foundDeps [] deps; 74 }; 75 - 76 77 findLhs2TeXIncludes = 78 { rootFile ··· 80 81 builtins.genericClosure { 82 startSet = [{key = rootFile;}]; 83 - 84 operator = 85 {key, ...}: 86 ··· 103 builder = ./dot2pdf.sh; 104 inherit dotGraph fontsConf; 105 buildInputs = [ 106 - pkgs.perl pkgs.tetex pkgs.graphviz 107 ]; 108 }; 109 - 110 111 dot2ps = 112 { dotGraph ··· 117 builder = ./dot2ps.sh; 118 inherit dotGraph; 119 buildInputs = [ 120 - pkgs.perl pkgs.tetex pkgs.graphviz pkgs.ghostscript 121 ]; 122 }; 123 ··· 132 includes = map (x: [x.key (baseNameOf (toString x.key))]) 133 (findLhs2TeXIncludes {rootFile = source;}); 134 }; 135 - 136 animateDot = dotGraph: nrFrames: pkgs.stdenv.mkDerivation { 137 name = "dot-frames"; 138 builder = ./animatedot.sh; ··· 163 164 165 # Convert a Postscript file to a PNG image, trimming it so that 166 - # there is no unnecessary surrounding whitespace. 167 postscriptToPNG = 168 { postscript 169 }: ··· 173 inherit postscript; 174 175 buildInputs = [pkgs.imagemagick pkgs.ghostscript]; 176 - 177 buildCommand = '' 178 if test -d $postscript; then 179 input=$(ls $postscript/*.ps) ··· 240 "${pkgs.ghostscript}/share/ghostscript/fonts" 241 ]; 242 }; 243 - 244 }
··· 10 , extraFiles ? [] 11 , compressBlanksInIndex ? true 12 , packages ? [] 13 + , texPackages ? {} 14 , copySources ? false 15 }: 16 17 assert generatePDF -> !generatePS; 18 + 19 + let 20 + tex = pkgs.texlive.combine texPackages; 21 + in 22 + 23 pkgs.stdenv.mkDerivation { 24 name = "doc"; 25 + 26 builder = ./run-latex.sh; 27 copyIncludes = ./copy-includes.pl; 28 + 29 inherit rootFile generatePDF generatePS extraFiles 30 compressBlanksInIndex copySources; 31 32 includes = map (x: [x.key (baseNameOf (toString x.key))]) 33 (findLaTeXIncludes {inherit rootFile;}); 34 + 35 + buildInputs = [ tex pkgs.perl ] ++ packages; 36 }; 37 38 ··· 46 47 builtins.genericClosure { 48 startSet = [{key = rootFile;}]; 49 + 50 operator = 51 {key, ...}: 52 ··· 77 78 in pkgs.lib.fold foundDeps [] deps; 79 }; 80 + 81 82 findLhs2TeXIncludes = 83 { rootFile ··· 85 86 builtins.genericClosure { 87 startSet = [{key = rootFile;}]; 88 + 89 operator = 90 {key, ...}: 91 ··· 108 builder = ./dot2pdf.sh; 109 inherit dotGraph fontsConf; 110 buildInputs = [ 111 + pkgs.perl pkgs.graphviz 112 ]; 113 }; 114 + 115 116 dot2ps = 117 { dotGraph ··· 122 builder = ./dot2ps.sh; 123 inherit dotGraph; 124 buildInputs = [ 125 + pkgs.perl pkgs.graphviz pkgs.ghostscript 126 ]; 127 }; 128 ··· 137 includes = map (x: [x.key (baseNameOf (toString x.key))]) 138 (findLhs2TeXIncludes {rootFile = source;}); 139 }; 140 + 141 animateDot = dotGraph: nrFrames: pkgs.stdenv.mkDerivation { 142 name = "dot-frames"; 143 builder = ./animatedot.sh; ··· 168 169 170 # Convert a Postscript file to a PNG image, trimming it so that 171 + # there is no unnecessary surrounding whitespace. 172 postscriptToPNG = 173 { postscript 174 }: ··· 178 inherit postscript; 179 180 buildInputs = [pkgs.imagemagick pkgs.ghostscript]; 181 + 182 buildCommand = '' 183 if test -d $postscript; then 184 input=$(ls $postscript/*.ps) ··· 245 "${pkgs.ghostscript}/share/ghostscript/fonts" 246 ]; 247 }; 248 + 249 }
+48 -44
pkgs/top-level/all-packages.nix
··· 274 }; 275 276 buildFHSChrootEnv = args: chrootFHSEnv { 277 - env = buildFHSEnv args; 278 }; 279 280 buildFHSUserEnv = args: userFHSEnv { 281 - env = buildFHSEnv (removeAttrs args [ "runScript" "extraBindMounts" ]); 282 runScript = args.runScript or "bash"; 283 extraBindMounts = args.extraBindMounts or []; 284 }; 285 286 buildMaven = callPackage ../build-support/build-maven.nix {}; ··· 673 674 bchunk = callPackage ../tools/cd-dvd/bchunk { }; 675 676 - bfr = callPackage ../tools/misc/bfr { 677 - perl = perl516; # Docs fail to build with newer versions 678 - }; 679 680 bibtool = callPackage ../tools/misc/bibtool { }; 681 ··· 1154 coreutils = callPackage ../tools/misc/coreutils { 1155 aclSupport = stdenv.isLinux; 1156 }; 1157 1158 cpio = callPackage ../tools/archivers/cpio { }; 1159 ··· 1602 gitinspector = callPackage ../applications/version-management/gitinspector { }; 1603 1604 gitlab = callPackage ../applications/version-management/gitlab { 1605 - ruby = ruby_2_1_3; 1606 }; 1607 1608 gitlab-shell = callPackage ../applications/version-management/gitlab-shell { 1609 - ruby = ruby_2_1_3; 1610 }; 1611 1612 glusterfs = callPackage ../tools/filesystems/glusterfs { }; 1613 ··· 2904 rng_tools = callPackage ../tools/security/rng-tools { }; 2905 2906 rsnapshot = callPackage ../tools/backup/rsnapshot { 2907 - perl = perl516; # fails to create docs: POD document had syntax errors 2908 # For the `logger' command, we can use either `utillinux' or 2909 # GNU Inetutils. The latter is more portable. 2910 - logger = inetutils; 2911 }; 2912 - rsnapshotGit = lowPrio (callPackage ../tools/backup/rsnapshot/git.nix { 2913 - # For the `logger' command, we can use either `utillinux' or 2914 - # GNU Inetutils. The latter is more portable. 2915 - logger = inetutils; 2916 - }); 2917 2918 rlwrap = callPackage ../tools/misc/rlwrap { }; 2919 ··· 3185 3186 tcpflow = callPackage ../tools/networking/tcpflow { }; 3187 3188 - teamviewer = callPackage_i686 ../applications/networking/remote/teamviewer/10.nix { }; 3189 - 3190 - teamviewer8 = lowPrio (callPackage_i686 ../applications/networking/remote/teamviewer/8.nix { }); 3191 - 3192 - teamviewer9 = lowPrio (callPackage_i686 ../applications/networking/remote/teamviewer/9.nix { }); 3193 3194 telnet = callPackage ../tools/networking/telnet { }; 3195 ··· 5115 5116 ocropus = callPackage ../applications/misc/ocropus { }; 5117 5118 - perl516 = callPackage ../development/interpreters/perl/5.16 { }; 5119 - 5120 perl520 = callPackage ../development/interpreters/perl/5.20 { 5121 fetchurl = fetchurlBoot; 5122 }; ··· 5363 augeas = callPackage ../tools/system/augeas { }; 5364 5365 ansible = callPackage ../tools/system/ansible { }; 5366 5367 antlr = callPackage ../development/tools/parsing/antlr/2.7.7.nix { }; 5368 ··· 8687 xapianBindings10 = callPackage ../development/libraries/xapian/bindings/1.0.x.nix { # TODO perl php Java, tcl, C#, python 8688 }; 8689 8690 xavs = callPackage ../development/libraries/xavs { }; 8691 8692 Xaw3d = callPackage ../development/libraries/Xaw3d { }; ··· 9261 9262 mpd = callPackage ../servers/mpd { 9263 aacSupport = config.mpd.aacSupport or true; 9264 - clientSupport = config.mpd.clientSupport or false; 9265 ffmpegSupport = config.mpd.ffmpegSupport or true; 9266 opusSupport = config.mpd.opusSupport or true; 9267 ··· 10840 powerline-fonts = callPackage ../data/fonts/powerline-fonts { }; 10841 10842 proggyfonts = callPackage ../data/fonts/proggyfonts { }; 10843 - 10844 - pthreadmanpages = callPackage ../data/documentation/pthread-man-pages { 10845 - perl = perl516; # syntax error at troffprepro line 49, near "do subst(" 10846 - }; 10847 10848 sampradaya = callPackage ../data/fonts/sampradaya { }; 10849 ··· 12901 automake = automake114x; 12902 }; 12903 12904 - rofi-pass = callPackage ../applications/misc/rofi/pass.nix { }; 12905 12906 rstudio = callPackage ../applications/editors/rstudio { }; 12907 ··· 13400 13401 virtinst = callPackage ../applications/virtualization/virtinst {}; 13402 13403 - virtualgl = callPackage ../tools/X11/virtualgl { }; 13404 13405 - primus = callPackage ../tools/X11/primus { 13406 - primusLib = callPackage ../tools/X11/primus/lib.nix { 13407 - nvidia = linuxPackages.nvidia_x11; 13408 - }; 13409 13410 primusLib_i686 = if system == "x86_64-linux" 13411 - then callPackage_i686 ../tools/X11/primus/lib.nix { 13412 - nvidia = pkgsi686Linux.linuxPackages.nvidia_x11.override { libsOnly = true; }; 13413 - } 13414 else null; 13415 }; 13416 ··· 13419 nvidia_x11_i686 = if system == "x86_64-linux" 13420 then pkgsi686Linux.linuxPackages.nvidia_x11.override { libsOnly = true; } 13421 else null; 13422 - virtualgl = virtualgl; 13423 - virtualgl_i686 = if system == "x86_64-linux" 13424 - then pkgsi686Linux.virtualgl 13425 else null; 13426 - }; 13427 - 13428 - # use if you intend to connect the nvidia card to a monitor 13429 - bumblebee_display = bumblebee.override { 13430 - useDisplayDevice = true; 13431 }; 13432 13433 vkeybd = callPackage ../applications/audio/vkeybd {}; ··· 13596 ++ optional (config.kodi.enableGenesis or false) genesis 13597 ++ optional (config.kodi.enableSVTPlay or false) svtplay 13598 ++ optional (config.kodi.enableSteamLauncher or false) steam-launcher 13599 ); 13600 }; 13601 ··· 14852 14853 coq-ext-lib = callPackage ../development/coq-modules/coq-ext-lib {}; 14854 14855 mathcomp = callPackage ../development/coq-modules/mathcomp { }; 14856 14857 ssreflect = callPackage ../development/coq-modules/ssreflect { }; ··· 15264 15265 nixui = callPackage ../tools/package-management/nixui { node_webkit = nwjs_0_12; }; 15266 15267 - nix-prefetch-scripts = callPackage ../tools/package-management/nix-prefetch-scripts { }; 15268 15269 nix-template-rpm = callPackage ../build-support/templaterpm { inherit (pythonPackages) python toposort; }; 15270
··· 274 }; 275 276 buildFHSChrootEnv = args: chrootFHSEnv { 277 + env = buildFHSEnv (removeAttrs args [ "extraInstallCommands" ]); 278 + extraInstallCommands = args.extraInstallCommands or ""; 279 }; 280 281 buildFHSUserEnv = args: userFHSEnv { 282 + env = buildFHSEnv (removeAttrs args [ "runScript" "extraBindMounts" "extraInstallCommands" ]); 283 runScript = args.runScript or "bash"; 284 extraBindMounts = args.extraBindMounts or []; 285 + extraInstallCommands = args.extraInstallCommands or ""; 286 }; 287 288 buildMaven = callPackage ../build-support/build-maven.nix {}; ··· 675 676 bchunk = callPackage ../tools/cd-dvd/bchunk { }; 677 678 + bfr = callPackage ../tools/misc/bfr { }; 679 680 bibtool = callPackage ../tools/misc/bibtool { }; 681 ··· 1154 coreutils = callPackage ../tools/misc/coreutils { 1155 aclSupport = stdenv.isLinux; 1156 }; 1157 + 1158 + coreutils-prefixed = coreutils.override { withPrefix = true; }; 1159 1160 cpio = callPackage ../tools/archivers/cpio { }; 1161 ··· 1604 gitinspector = callPackage ../applications/version-management/gitinspector { }; 1605 1606 gitlab = callPackage ../applications/version-management/gitlab { 1607 + ruby = ruby_2_2_2; 1608 }; 1609 1610 gitlab-shell = callPackage ../applications/version-management/gitlab-shell { 1611 + ruby = ruby_2_2_2; 1612 }; 1613 + 1614 + gitlab-git-http-server = callPackage ../applications/version-management/gitlab-git-http-server { }; 1615 1616 glusterfs = callPackage ../tools/filesystems/glusterfs { }; 1617 ··· 2908 rng_tools = callPackage ../tools/security/rng-tools { }; 2909 2910 rsnapshot = callPackage ../tools/backup/rsnapshot { 2911 # For the `logger' command, we can use either `utillinux' or 2912 # GNU Inetutils. The latter is more portable. 2913 + logger = if stdenv.isLinux then utillinux else inetutils; 2914 }; 2915 2916 rlwrap = callPackage ../tools/misc/rlwrap { }; 2917 ··· 3183 3184 tcpflow = callPackage ../tools/networking/tcpflow { }; 3185 3186 + teamviewer = callPackage ../applications/networking/remote/teamviewer { 3187 + stdenv = stdenv_32bit; 3188 + }; 3189 3190 telnet = callPackage ../tools/networking/telnet { }; 3191 ··· 5111 5112 ocropus = callPackage ../applications/misc/ocropus { }; 5113 5114 perl520 = callPackage ../development/interpreters/perl/5.20 { 5115 fetchurl = fetchurlBoot; 5116 }; ··· 5357 augeas = callPackage ../tools/system/augeas { }; 5358 5359 ansible = callPackage ../tools/system/ansible { }; 5360 + 5361 + ansible2 = callPackage ../tools/system/ansible/2.nix { }; 5362 5363 antlr = callPackage ../development/tools/parsing/antlr/2.7.7.nix { }; 5364 ··· 8683 xapianBindings10 = callPackage ../development/libraries/xapian/bindings/1.0.x.nix { # TODO perl php Java, tcl, C#, python 8684 }; 8685 8686 + xapian-omega = callPackage ../tools/misc/xapian-omega {}; 8687 + 8688 xavs = callPackage ../development/libraries/xavs { }; 8689 8690 Xaw3d = callPackage ../development/libraries/Xaw3d { }; ··· 9259 9260 mpd = callPackage ../servers/mpd { 9261 aacSupport = config.mpd.aacSupport or true; 9262 + clientSupport = config.mpd.clientSupport or true; 9263 ffmpegSupport = config.mpd.ffmpegSupport or true; 9264 opusSupport = config.mpd.opusSupport or true; 9265 ··· 10838 powerline-fonts = callPackage ../data/fonts/powerline-fonts { }; 10839 10840 proggyfonts = callPackage ../data/fonts/proggyfonts { }; 10841 10842 sampradaya = callPackage ../data/fonts/sampradaya { }; 10843 ··· 12895 automake = automake114x; 12896 }; 12897 12898 + rofi-pass = callPackage ../tools/security/pass/rofi-pass.nix { }; 12899 12900 rstudio = callPackage ../applications/editors/rstudio { }; 12901 ··· 13394 13395 virtinst = callPackage ../applications/virtualization/virtinst {}; 13396 13397 + virtualglLib = callPackage ../tools/X11/virtualgl/lib.nix { 13398 + fltk = fltk13; 13399 + }; 13400 13401 + virtualgl = callPackage ../tools/X11/virtualgl { 13402 + virtualglLib_i686 = if system == "x86_64-linux" 13403 + then pkgsi686Linux.virtualglLib 13404 + else null; 13405 + }; 13406 13407 + primusLib = callPackage ../tools/X11/primus/lib.nix { 13408 + nvidia_x11 = linuxPackages.nvidia_x11.override { libsOnly = true; }; 13409 + }; 13410 + 13411 + primus = callPackage ../tools/X11/primus { 13412 primusLib_i686 = if system == "x86_64-linux" 13413 + then pkgsi686Linux.primusLib 13414 else null; 13415 }; 13416 ··· 13419 nvidia_x11_i686 = if system == "x86_64-linux" 13420 then pkgsi686Linux.linuxPackages.nvidia_x11.override { libsOnly = true; } 13421 else null; 13422 + primusLib_i686 = if system == "x86_64-linux" 13423 + then pkgsi686Linux.primusLib 13424 else null; 13425 }; 13426 13427 vkeybd = callPackage ../applications/audio/vkeybd {}; ··· 13590 ++ optional (config.kodi.enableGenesis or false) genesis 13591 ++ optional (config.kodi.enableSVTPlay or false) svtplay 13592 ++ optional (config.kodi.enableSteamLauncher or false) steam-launcher 13593 + ++ optional (config.kodi.enablePVRHTS or false) pvr-hts 13594 ); 13595 }; 13596 ··· 14847 14848 coq-ext-lib = callPackage ../development/coq-modules/coq-ext-lib {}; 14849 14850 + flocq = callPackage ../development/coq-modules/flocq {}; 14851 + 14852 mathcomp = callPackage ../development/coq-modules/mathcomp { }; 14853 14854 ssreflect = callPackage ../development/coq-modules/ssreflect { }; ··· 15261 15262 nixui = callPackage ../tools/package-management/nixui { node_webkit = nwjs_0_12; }; 15263 15264 + inherit (callPackages ../tools/package-management/nix-prefetch-scripts { }) 15265 + nix-prefetch-bzr 15266 + nix-prefetch-cvs 15267 + nix-prefetch-git 15268 + nix-prefetch-hg 15269 + nix-prefetch-svn 15270 + nix-prefetch-zip 15271 + nix-prefetch-scripts; 15272 15273 nix-template-rpm = callPackage ../build-support/templaterpm { inherit (pythonPackages) python toposort; }; 15274
+67 -19
pkgs/top-level/emacs-packages.nix
··· 691 }; 692 }; 693 694 find-file-in-project = melpaBuild rec { 695 pname = "find-file-in-project"; 696 version = "3.5"; ··· 1014 }; 1015 }; 1016 1017 - helm-swoop = melpaBuild rec { 1018 - pname = "helm-swoop"; 1019 - version = "20141224"; 1020 - src = fetchFromGitHub { 1021 - owner = "ShingoFukuyama"; 1022 - repo = pname; 1023 - rev = "06a251f7d7fce2a5719e0862e5855972cd8ab1ae"; 1024 - sha256 = "0nq33ldhbvfbm6jnsxqdf3vwaqrsr2gprkzll081gcyl2s1x0l2m"; 1025 - }; 1026 - packageRequires = [ helm ]; 1027 - meta = { 1028 - description = "An Emacs mode which constructs an editable grep for a buffer"; 1029 - license = gpl3Plus; 1030 - }; 1031 - }; 1032 - 1033 helm = melpaBuild rec { 1034 pname = "helm"; 1035 version = "20150105"; ··· 1046 }; 1047 }; 1048 1049 hi2 = melpaBuild rec { 1050 pname = "hi2"; 1051 version = "1.0"; ··· 1444 }; 1445 }; 1446 1447 perspective = melpaBuild rec { 1448 pname = "perspective"; 1449 version = "1.12"; ··· 1642 1643 s = melpaBuild rec { 1644 pname = "s"; 1645 - version = "20140910"; 1646 src = fetchFromGitHub { 1647 owner = "magnars"; 1648 repo = "${pname}.el"; 1649 - rev = "1f85b5112f3f68169ddaa2911fcfa030f979eb4d"; 1650 - sha256 = "9d871ea84f98c51099528a03eddf47218cf70f1431d4c35c19c977d9e73d421f"; 1651 }; 1652 meta = { 1653 description = "String manipulation library for Emacs";
··· 691 }; 692 }; 693 694 + f = melpaBuild rec { 695 + pname = "f"; 696 + version = "20151113"; 697 + src = fetchFromGitHub { 698 + owner = "rejeep"; 699 + repo = "f.el"; 700 + rev = "e0259ee060ff9a3f12204adcc8630869080acd68"; 701 + sha256 = "0lzqfr5xgc3qvpbs6vf63yiw7pc2mybfvsrhczf9ghlmlawqa6k1"; 702 + }; 703 + fileSpecs = [ "f.el" ]; 704 + packageRequires = [ dash s ]; 705 + meta = { 706 + description = "Emacs library for working with files and directories"; 707 + license = gpl3Plus; 708 + }; 709 + }; 710 + 711 find-file-in-project = melpaBuild rec { 712 pname = "find-file-in-project"; 713 version = "3.5"; ··· 1031 }; 1032 }; 1033 1034 helm = melpaBuild rec { 1035 pname = "helm"; 1036 version = "20150105"; ··· 1047 }; 1048 }; 1049 1050 + helm-bibtex = melpaBuild rec { 1051 + pname = "helm-bibtex"; 1052 + version = "20151125"; 1053 + src = fetchFromGitHub { 1054 + owner = "tmalsburg"; 1055 + repo = pname; 1056 + rev = "bfcd5064dcc7c0ac62c46985832b2a73082f96e0"; 1057 + sha256 = "1nvc4ha9wj5j47qg7hdbv1xpjy8a8idc9vc2myl3xa33ywllwdwi"; 1058 + }; 1059 + packageRequires = [ dash f helm parsebib s ]; 1060 + meta = { 1061 + description = "Bibliography Manager for Emacs"; 1062 + license = gpl2; 1063 + }; 1064 + }; 1065 + 1066 + helm-swoop = melpaBuild rec { 1067 + pname = "helm-swoop"; 1068 + version = "20141224"; 1069 + src = fetchFromGitHub { 1070 + owner = "ShingoFukuyama"; 1071 + repo = pname; 1072 + rev = "06a251f7d7fce2a5719e0862e5855972cd8ab1ae"; 1073 + sha256 = "0nq33ldhbvfbm6jnsxqdf3vwaqrsr2gprkzll081gcyl2s1x0l2m"; 1074 + }; 1075 + packageRequires = [ helm ]; 1076 + meta = { 1077 + description = "An Emacs mode which constructs an editable grep for a buffer"; 1078 + license = gpl3Plus; 1079 + }; 1080 + }; 1081 + 1082 hi2 = melpaBuild rec { 1083 pname = "hi2"; 1084 version = "1.0"; ··· 1477 }; 1478 }; 1479 1480 + parsebib = melpaBuild rec { 1481 + pname = "parsebib"; 1482 + version = "20151006"; 1483 + src = fetchFromGitHub { 1484 + owner = "joostkremers"; 1485 + repo = pname; 1486 + rev = "9a1f60bed2814dfb5cec2b92efb5951a4b465cce"; 1487 + sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml"; 1488 + }; 1489 + meta = { 1490 + description = "Emacs library for reading .bib files"; 1491 + license = bsd3; 1492 + }; 1493 + }; 1494 + 1495 perspective = melpaBuild rec { 1496 pname = "perspective"; 1497 version = "1.12"; ··· 1690 1691 s = melpaBuild rec { 1692 pname = "s"; 1693 + version = "20151023"; 1694 src = fetchFromGitHub { 1695 owner = "magnars"; 1696 repo = "${pname}.el"; 1697 + rev = "372e94c1a28031686d75d6c52bfbe833a118a72a"; 1698 + sha256 = "1zn8n3mv0iscs242dbkf5vmkkizfslq5haw9z0d0g3wknq18286h"; 1699 }; 1700 meta = { 1701 description = "String manipulation library for Emacs";
+26 -57
pkgs/top-level/python-packages.nix
··· 1730 1731 boto3 = buildPythonPackage rec { 1732 name = "boto3-${version}"; 1733 - version = "1.1.4"; 1734 1735 - src = pkgs.fetchurl { 1736 - url = "https://github.com/boto/boto3/archive/${version}.zip"; 1737 - sha256 = "11fdfbq8ann11wdzmbd0djnb1biyyhs1jcc8maxmkcj2q9fw6dk0"; 1738 }; 1739 1740 propagatedBuildInputs = [ self.botocore ··· 1759 }; 1760 1761 botocore = buildPythonPackage rec { 1762 - version = "1.2.0"; 1763 name = "botocore-${version}"; 1764 1765 src = pkgs.fetchurl { 1766 url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz"; 1767 - sha256 = "0wj98fsiwqzy0i0zh86fx15sgdjkwqi6crxig6b4kvrckl8bkwjr"; 1768 }; 1769 1770 propagatedBuildInputs = 1771 [ self.dateutil 1772 - self.requests 1773 - self.jmespath 1774 - ]; 1775 - 1776 - buildInputs = [ self.docutils ]; 1777 - 1778 - meta = { 1779 - homepage = https://github.com/boto/botocore; 1780 - 1781 - license = "bsd"; 1782 - 1783 - description = "A low-level interface to a growing number of Amazon Web Services"; 1784 - 1785 - }; 1786 - }; 1787 - 1788 - botocore_1_1_10 = buildPythonPackage rec { 1789 - version = "1.1.10"; 1790 - name = "botocore-${version}"; 1791 - 1792 - src = pkgs.fetchurl { 1793 - url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz"; 1794 - sha256 = "0syj0m0l7k4wa0n9h7h8ywayjv9fgpn5wyzpdriws0j417y1zlyc"; 1795 - }; 1796 - 1797 - propagatedBuildInputs = 1798 - [ self.dateutil 1799 - self.requests 1800 self.jmespath 1801 ]; 1802 ··· 6431 6432 django = self.django_1_7; 6433 6434 django_1_8 = buildPythonPackage rec { 6435 name = "Django-${version}"; 6436 version = "1.8.4"; ··· 7963 }; 7964 }; 7965 7966 - glance = buildPythonPackage rec { 7967 - name = "glance-0.1.7"; 7968 - 7969 - src = pkgs.fetchurl { 7970 - url = "http://pypi.python.org/packages/source/g/glance/${name}.tar.gz"; 7971 - md5 = "e733713ccd23e4a6253386a47971cfb5"; 7972 - }; 7973 - 7974 - buildInputs = with self; [ nose mox ]; 7975 - 7976 - # tests fail for python2.6 7977 - doCheck = python.majorVersion != "2.6"; 7978 - 7979 - propagatedBuildInputs = with self; [ gflags sqlalchemy webob routes eventlet ]; 7980 - 7981 - PYTHON_EGG_CACHE = "`pwd`/.egg-cache"; 7982 - 7983 - meta = { 7984 - homepage = https://launchpad.net/glance; 7985 - description = "Services for discovering, registering, and retrieving virtual machine images"; 7986 - }; 7987 - }; 7988 - 7989 glances = buildPythonPackage rec { 7990 name = "glances-${version}"; 7991 version = "2.4.2"; ··· 11745 url = "https://pypi.python.org/packages/source/o/oslo.rootwrap/${name}.tar.gz"; 11746 sha256 = "1711rlmykizw675ihbaqmk3ph6ah0njbygxr9lrdnacy6yrlmbd5"; 11747 }; 11748 11749 buildInputs = with self; [ eventlet mock oslotest ]; 11750 propagatedBuildInputs = with self; [
··· 1730 1731 boto3 = buildPythonPackage rec { 1732 name = "boto3-${version}"; 1733 + version = "1.2.2"; 1734 1735 + src = pkgs.fetchFromGitHub { 1736 + owner = "boto"; 1737 + repo = "boto3"; 1738 + rev = version; 1739 + sha256 = "1w53lhhdzi29d31qzhflb5mcwb24mfrj4frv70w6qyn8vmqznnjy"; 1740 }; 1741 1742 propagatedBuildInputs = [ self.botocore ··· 1761 }; 1762 1763 botocore = buildPythonPackage rec { 1764 + version = "1.3.6"; 1765 name = "botocore-${version}"; 1766 1767 src = pkgs.fetchurl { 1768 url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz"; 1769 + sha256 = "05a0ihv66fx77j16mjlm76d8zm7sd5wfzh1hx4nm3ilb9gz5h016"; 1770 }; 1771 1772 propagatedBuildInputs = 1773 [ self.dateutil 1774 + self.requests2 1775 self.jmespath 1776 ]; 1777 ··· 6406 6407 django = self.django_1_7; 6408 6409 + django_gis = self.django.override rec { 6410 + patches = [ 6411 + (pkgs.substituteAll { 6412 + src = ../development/python-modules/django/1.7.7-gis-libs.template.patch; 6413 + geos = pkgs.geos; 6414 + gdal = pkgs.gdal; 6415 + }) 6416 + ]; 6417 + }; 6418 + 6419 django_1_8 = buildPythonPackage rec { 6420 name = "Django-${version}"; 6421 version = "1.8.4"; ··· 7948 }; 7949 }; 7950 7951 glances = buildPythonPackage rec { 7952 name = "glances-${version}"; 7953 version = "2.4.2"; ··· 11707 url = "https://pypi.python.org/packages/source/o/oslo.rootwrap/${name}.tar.gz"; 11708 sha256 = "1711rlmykizw675ihbaqmk3ph6ah0njbygxr9lrdnacy6yrlmbd5"; 11709 }; 11710 + 11711 + # https://bugs.launchpad.net/oslo.rootwrap/+bug/1519839 11712 + patchPhase = '' 11713 + substituteInPlace oslo_rootwrap/filters.py \ 11714 + --replace "/bin/cat" "${pkgs.coreutils}/bin/cat" \ 11715 + --replace "/bin/kill" "${pkgs.coreutils}/bin/kill" 11716 + ''; 11717 11718 buildInputs = with self; [ eventlet mock oslotest ]; 11719 propagatedBuildInputs = with self; [
-1
pkgs/top-level/release.nix
··· 160 pmccabe = linux; 161 ppl = all; 162 procps = linux; 163 - pthreadmanpages = linux; 164 pygtk = linux; 165 python = allBut cygwin; 166 pythonFull = linux;
··· 160 pmccabe = linux; 161 ppl = all; 162 procps = linux; 163 pygtk = linux; 164 python = allBut cygwin; 165 pythonFull = linux;