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 1 + let requiredVersion = import ./lib/minver.nix; in 2 2 3 3 if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.nixVersion == 1 then 4 4
+2
lib/minver.nix
··· 1 + # Expose the minimum required version for evaluating Nixpkgs 2 + "1.10"
+14 -7
lib/types.nix
··· 193 193 194 194 nullOr = elemType: mkOptionType { 195 195 name = "null or ${elemType.name}"; 196 - check = x: builtins.isNull x || elemType.check x; 196 + check = x: x == null || elemType.check x; 197 197 merge = loc: defs: 198 - let nrNulls = count (def: isNull def.value) defs; in 198 + let nrNulls = count (def: def.value == null) defs; in 199 199 if nrNulls == length defs then null 200 200 else if nrNulls != 0 then 201 201 throw "The option `${showOption loc}' is defined both null and not null, in ${showFiles (getFiles defs)}." ··· 230 230 substSubModules = m: submodule m; 231 231 }; 232 232 233 - enum = values: mkOptionType { 234 - name = "one of ${concatStringsSep ", " values}"; 235 - check = flip elem values; 236 - merge = mergeOneOption; 237 - }; 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 + }; 238 245 239 246 either = t1: t2: mkOptionType { 240 247 name = "${t1.name} or ${t2.name}";
+25 -10
nixos/modules/hardware/video/bumblebee.nix
··· 2 2 3 3 with lib; 4 4 let 5 + cfg = config.hardware.bumblebee; 6 + 5 7 kernel = config.boot.kernelPackages; 6 - bumblebee = if config.hardware.bumblebee.connectDisplay 7 - then pkgs.bumblebee_display 8 - else pkgs.bumblebee; 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 + }; 9 19 10 20 in 11 21 ··· 29 39 type = types.str; 30 40 description = ''Group for bumblebee socket''; 31 41 }; 42 + 32 43 hardware.bumblebee.connectDisplay = mkOption { 33 44 default = false; 34 45 type = types.bool; ··· 40 51 Only nvidia driver is supported so far. 41 52 ''; 42 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 + }; 43 62 }; 44 63 45 64 config = mkIf config.hardware.bumblebee.enable { 46 65 boot.blacklistedKernelModules = [ "nouveau" "nvidia" ]; 47 66 boot.kernelModules = [ "bbswitch" ]; 48 - boot.extraModulePackages = [ kernel.bbswitch kernel.nvidia_x11 ]; 67 + boot.extraModulePackages = [ kernel.bbswitch ] ++ optional useNvidia kernel.nvidia_x11; 49 68 50 - environment.systemPackages = [ bumblebee pkgs.primus ]; 69 + environment.systemPackages = [ bumblebee primus ]; 51 70 52 71 systemd.services.bumblebeed = { 53 72 description = "Bumblebee Hybrid Graphics Switcher"; 54 73 wantedBy = [ "display-manager.service" ]; 55 74 path = [ kernel.bbswitch bumblebee ]; 56 75 serviceConfig = { 57 - ExecStart = "${bumblebee}/bin/bumblebeed --use-syslog -g ${config.hardware.bumblebee.group}"; 58 - Restart = "always"; 59 - RestartSec = 60; 60 - CPUSchedulingPolicy = "idle"; 76 + ExecStart = "${bumblebee}/bin/bumblebeed --use-syslog -g ${cfg.group} --driver ${cfg.driver}"; 61 77 }; 62 - environment.LD_LIBRARY_PATH="/run/opengl-driver/lib/"; 63 78 environment.MODULE_DIR="/run/current-system/kernel-modules/lib/modules/"; 64 79 }; 65 80 };
+4 -1
nixos/modules/services/hardware/tlp.nix
··· 10 10 11 11 tlp = pkgs.tlp.override { 12 12 inherit enableRDW; 13 - kmod = config.system.sbin.modprobe; 14 13 }; 15 14 16 15 # XXX: We can't use writeTextFile + readFile here because it triggers ··· 69 68 ExecStart = "${tlp}/bin/tlp init start"; 70 69 ExecStop = "${tlp}/bin/tlp init stop"; 71 70 }; 71 + 72 + environment.MODULE_DIR="/run/current-system/kernel-modules/lib/modules/"; 72 73 }; 73 74 74 75 tlp-sleep = { ··· 87 88 ExecStart = "${tlp}/bin/tlp suspend"; 88 89 ExecStop = "${tlp}/bin/tlp resume"; 89 90 }; 91 + 92 + environment.MODULE_DIR="/run/current-system/kernel-modules/lib/modules/"; 90 93 }; 91 94 }; 92 95
+23 -4
nixos/modules/services/misc/gitlab.nix
··· 27 27 http_settings: 28 28 self_signed_cert: false 29 29 repos_path: "${cfg.stateDir}/repositories" 30 + secret_file: "${cfg.stateDir}/config/gitlab_shell_secret" 30 31 log_file: "${cfg.stateDir}/log/gitlab-shell.log" 31 32 redis: 32 33 bin: ${pkgs.redis}/bin/redis-cli ··· 142 143 143 144 config = mkIf cfg.enable { 144 145 145 - environment.systemPackages = [ gitlab-runner pkgs.gitlab-shell ]; 146 + environment.systemPackages = [ pkgs.git gitlab-runner pkgs.gitlab-shell ]; 146 147 147 148 assertions = [ 148 149 { assertion = cfg.databasePassword != ""; ··· 154 155 services.redis.enable = mkDefault true; 155 156 # We use postgres as the main data store. 156 157 services.postgresql.enable = mkDefault true; 157 - services.postgresql.package = mkDefault pkgs.postgresql; 158 158 # Use postfix to send out mails. 159 159 services.postfix.enable = mkDefault true; 160 160 ··· 209 209 }; 210 210 }; 211 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 + 212 229 systemd.services.gitlab = { 213 230 after = [ "network.target" "postgresql.service" "redis.service" ]; 214 231 wantedBy = [ "multi-user.target" ]; ··· 219 236 environment.GITLAB_APPLICATION_LOG_PATH = "${cfg.stateDir}/log/application.log"; 220 237 environment.GITLAB_SATELLITES_PATH = "${cfg.stateDir}/satellites"; 221 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"; 222 241 environment.GITLAB_REPOSITORIES_PATH = "${cfg.stateDir}/repositories"; 223 242 environment.GITLAB_SHELL_HOOKS_PATH = "${cfg.stateDir}/shell/hooks"; 224 243 environment.BUNDLE_GEMFILE = "${pkgs.gitlab}/share/gitlab/Gemfile"; ··· 247 266 rm -rf ${cfg.stateDir}/config 248 267 mkdir -p ${cfg.stateDir}/config 249 268 # TODO: What exactly is gitlab-shell doing with the secret? 250 - head -c 20 /dev/urandom > ${cfg.stateDir}/config/gitlab_shell_secret 269 + tr -dc _A-Z-a-z-0-9 < /dev/urandom | head -c 20 > ${cfg.stateDir}/config/gitlab_shell_secret 251 270 mkdir -p ${cfg.stateDir}/home/.ssh 252 271 touch ${cfg.stateDir}/home/.ssh/authorized_keys 253 272 ··· 272 291 fi 273 292 fi 274 293 294 + ${bundler}/bin/bundle exec rake -f ${pkgs.gitlab}/share/gitlab/Rakefile db:migrate RAILS_ENV=production 275 295 # Install the shell required to push repositories 276 296 ln -fs ${pkgs.writeText "config.yml" gitlabShellYml} ${cfg.stateDir}/shell/config.yml 277 297 export GITLAB_SHELL_CONFIG_PATH=""${cfg.stateDir}/shell/config.yml ··· 296 316 }; 297 317 298 318 }; 299 - 300 319 }
+3 -3
nixos/modules/services/monitoring/teamviewer.nix
··· 14 14 15 15 options = { 16 16 17 - services.teamviewer.enable = mkEnableOption "teamviewer daemon"; 17 + services.teamviewer.enable = mkEnableOption "TeamViewer daemon"; 18 18 19 19 }; 20 20 ··· 27 27 systemd.services.teamviewerd = { 28 28 description = "TeamViewer remote control daemon"; 29 29 30 - wantedBy = [ "graphical.target" ]; 30 + wantedBy = [ "multi-user.target" ]; 31 31 after = [ "NetworkManager-wait-online.service" "network.target" ]; 32 - preStart = "mkdir -pv /var/tmp/teamviewer10/{logs,config}"; 32 + preStart = "mkdir -pv /var/lib/teamviewer /var/log/teamviewer"; 33 33 34 34 serviceConfig = { 35 35 Type = "forking";
+4 -30
nixos/modules/services/networking/nsd.nix
··· 300 300 options = { 301 301 services.nsd = { 302 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 - }; 303 + enable = mkEnableOption "NSD authoritative DNS server"; 304 + bind8Stats = mkEnableOption "BIND8 like statistics"; 319 305 320 306 rootServer = mkOption { 321 307 type = types.bool; ··· 483 469 484 470 485 471 ratelimit = { 486 - enable = mkOption { 487 - type = types.bool; 488 - default = false; 489 - description = '' 490 - Enable ratelimit capabilities. 491 - ''; 492 - }; 472 + enable = mkEnableOption "ratelimit capabilities"; 493 473 494 474 size = mkOption { 495 475 type = types.int; ··· 548 528 549 529 550 530 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 - }; 531 + enable = mkEnableOption "remote control via nsd-control"; 558 532 559 533 interfaces = mkOption { 560 534 type = types.listOf types.str;
+1 -4
nixos/modules/services/x11/window-managers/afterstep.nix
··· 8 8 { 9 9 ###### interface 10 10 options = { 11 - services.xserver.windowManager.afterstep.enable = mkOption { 12 - default = false; 13 - description = "Enable the Afterstep window manager."; 14 - }; 11 + services.xserver.windowManager.afterstep.enable = mkEnableOption "afterstep"; 15 12 }; 16 13 17 14 ###### implementation
+1 -6
nixos/modules/services/x11/window-managers/bspwm.nix
··· 8 8 9 9 { 10 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 - }; 11 + services.xserver.windowManager.bspwm.enable = mkEnableOption "bspwm"; 17 12 }; 18 13 19 14 config = mkIf cfg.enable {
+1 -8
nixos/modules/services/x11/window-managers/clfswm.nix
··· 8 8 9 9 { 10 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 - }; 11 + services.xserver.windowManager.clfswm.enable = mkEnableOption "clfswm"; 19 12 }; 20 13 21 14 config = mkIf cfg.enable {
+1 -4
nixos/modules/services/x11/window-managers/compiz.nix
··· 15 15 16 16 services.xserver.windowManager.compiz = { 17 17 18 - enable = mkOption { 19 - default = false; 20 - description = "Enable the Compiz window manager."; 21 - }; 18 + enable = mkEnableOption "compiz"; 22 19 23 20 renderingFlag = mkOption { 24 21 default = "";
+1 -4
nixos/modules/services/x11/window-managers/fluxbox.nix
··· 8 8 { 9 9 ###### interface 10 10 options = { 11 - services.xserver.windowManager.fluxbox.enable = mkOption { 12 - default = false; 13 - description = "Enable the Fluxbox window manager."; 14 - }; 11 + services.xserver.windowManager.fluxbox.enable = mkEnableOption "fluxbox"; 15 12 }; 16 13 17 14 ###### implementation
+1 -6
nixos/modules/services/x11/window-managers/herbstluftwm.nix
··· 8 8 9 9 { 10 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 - }; 11 + services.xserver.windowManager.herbstluftwm.enable = mkEnableOption "herbstluftwm"; 17 12 }; 18 13 19 14 config = mkIf cfg.enable {
+1 -5
nixos/modules/services/x11/window-managers/i3.nix
··· 9 9 { 10 10 options = { 11 11 services.xserver.windowManager.i3 = { 12 - enable = mkOption { 13 - default = false; 14 - example = true; 15 - description = "Enable the i3 tiling window manager."; 16 - }; 12 + enable = mkEnableOption "i3"; 17 13 18 14 configFile = mkOption { 19 15 default = null;
+1 -1
nixos/modules/services/x11/window-managers/icewm.nix
··· 8 8 { 9 9 ###### interface 10 10 options = { 11 - services.xserver.windowManager.icewm.enable = mkEnableOption "oroborus"; 11 + services.xserver.windowManager.icewm.enable = mkEnableOption "icewm"; 12 12 }; 13 13 14 14 ###### implementation
+1 -7
nixos/modules/services/x11/window-managers/metacity.nix
··· 12 12 13 13 { 14 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 - 15 + services.xserver.windowManager.metacity.enable = mkEnableOption "metacity"; 22 16 }; 23 17 24 18 config = mkIf cfg.enable {
+1 -7
nixos/modules/services/x11/window-managers/notion.nix
··· 8 8 9 9 { 10 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 - }; 11 + services.xserver.windowManager.notion.enable = mkEnableOption "notion"; 18 12 }; 19 13 20 14 config = mkIf cfg.enable {
+2 -7
nixos/modules/services/x11/window-managers/openbox.nix
··· 1 1 {lib, pkgs, config, ...}: 2 2 3 + with lib; 3 4 let 4 5 inherit (lib) mkOption mkIf; 5 6 cfg = config.services.xserver.windowManager.openbox; ··· 7 8 8 9 { 9 10 options = { 10 - services.xserver.windowManager.openbox = { 11 - enable = mkOption { 12 - default = false; 13 - example = true; 14 - description = "Enable the Openbox window manager."; 15 - }; 16 - }; 11 + services.xserver.windowManager.openbox.enable = mkEnableOption "oroborus"; 17 12 }; 18 13 19 14 config = mkIf cfg.enable {
+1 -4
nixos/modules/services/x11/window-managers/ratpoison.nix
··· 8 8 { 9 9 ###### interface 10 10 options = { 11 - services.xserver.windowManager.ratpoison.enable = mkOption { 12 - default = false; 13 - description = "Enable the Ratpoison window manager."; 14 - }; 11 + services.xserver.windowManager.ratpoison.enable = mkEnableOption "ratpoison"; 15 12 }; 16 13 17 14 ###### implementation
+1 -4
nixos/modules/services/x11/window-managers/sawfish.nix
··· 8 8 { 9 9 ###### interface 10 10 options = { 11 - services.xserver.windowManager.sawfish.enable = mkOption { 12 - default = false; 13 - description = "Enable the Sawfish window manager."; 14 - }; 11 + services.xserver.windowManager.sawfish.enable = mkEnableOption "sawfish"; 15 12 }; 16 13 17 14 ###### implementation
+1 -7
nixos/modules/services/x11/window-managers/spectrwm.nix
··· 9 9 10 10 { 11 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 - }; 12 + services.xserver.windowManager.spectrwm.enable = mkEnableOption "spectrwm"; 19 13 }; 20 14 21 15 config = mkIf cfg.enable {
+1 -8
nixos/modules/services/x11/window-managers/stumpwm.nix
··· 8 8 9 9 { 10 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 - }; 11 + services.xserver.windowManager.stumpwm.enable = mkEnableOption "stumpwm"; 19 12 }; 20 13 21 14 config = mkIf cfg.enable {
+1 -6
nixos/modules/services/x11/window-managers/twm.nix
··· 13 13 ###### interface 14 14 15 15 options = { 16 - 17 - services.xserver.windowManager.twm.enable = mkOption { 18 - default = false; 19 - description = "Enable the twm window manager."; 20 - }; 21 - 16 + services.xserver.windowManager.twm.enable = mkEnableOption "twm"; 22 17 }; 23 18 24 19
+1 -4
nixos/modules/services/x11/window-managers/windowmaker.nix
··· 8 8 { 9 9 ###### interface 10 10 options = { 11 - services.xserver.windowManager.windowmaker.enable = mkOption { 12 - default = false; 13 - description = "Enable the Windowmaker window manager."; 14 - }; 11 + services.xserver.windowManager.windowmaker.enable = mkEnableOption "windowmaker"; 15 12 }; 16 13 17 14 ###### implementation
+3 -6
nixos/modules/services/x11/window-managers/wmii.nix
··· 1 - { config, lib, pkgs, options, modulesPath }: 1 + { config, lib, pkgs, options, modulesPath, ... }: 2 2 3 + with lib; 3 4 let 4 5 inherit (lib) mkOption mkIf singleton; 5 6 cfg = config.services.xserver.windowManager.wmii; ··· 7 8 in 8 9 { 9 10 options = { 10 - services.xserver.windowManager.wmii.enable = mkOption { 11 - default = false; 12 - example = true; 13 - description = "Enable the wmii window manager."; 14 - }; 11 + services.xserver.windowManager.wmii.enable = mkEnableOption "wmii"; 15 12 }; 16 13 17 14 config = mkIf cfg.enable {
+2 -6
nixos/modules/services/x11/window-managers/xmonad.nix
··· 1 1 {pkgs, lib, config, ...}: 2 2 3 + with lib; 3 4 let 4 5 inherit (lib) mkOption mkIf optionals literalExample; 5 6 cfg = config.services.xserver.windowManager.xmonad; ··· 13 14 { 14 15 options = { 15 16 services.xserver.windowManager.xmonad = { 16 - enable = mkOption { 17 - default = false; 18 - example = true; 19 - description = "Enable the xmonad window manager."; 20 - }; 21 - 17 + enable = mkEnableOption "xmonad"; 22 18 haskellPackages = mkOption { 23 19 default = pkgs.haskellPackages; 24 20 defaultText = "pkgs.haskellPackages";
+2
nixos/modules/tasks/kbd.nix
··· 56 56 # it has a restart trigger. 57 57 systemd.services."systemd-vconsole-setup" = 58 58 { wantedBy = [ "multi-user.target" ]; 59 + before = [ "display-manager.service" ]; 60 + after = [ "systemd-udev-settle.service" ]; 59 61 restartTriggers = [ vconsoleConf ]; 60 62 }; 61 63
-1
nixos/modules/virtualisation/nova-image.nix
··· 21 21 imports = [ 22 22 ../profiles/qemu-guest.nix 23 23 ../profiles/headless.nix 24 - ./ec2-data.nix 25 24 ]; 26 25 27 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 34 description = "Extract URLs from text"; 35 35 homepage = http://packages.qa.debian.org/u/urlview.html; 36 36 licencse = stdenv.lib.licenses.gpl2; 37 - platforms = stdenv.lib.platforms.linux; 37 + platforms = with stdenv.lib.platforms; linux ++ darwin; 38 38 }; 39 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 6 7 7 srcs = fetchgit { 8 8 url = "https://gitlab.com/gitlab-org/gitlab-shell.git"; 9 - rev = "823aba63e444afa2f45477819770fec3cb5f0159"; 10 - sha256 = "0ppf547xs9pvmk49v4h043d0j93k5n4q0yx3b9ssrc4qf2smflgq"; 9 + rev = "ebbb9d80811c23d49a7d1b75d7a7d2b8ffe7437b"; 10 + sha256 = "fe69ab85d75a3871b4afa11ebc17f43008d135bbdbd6c581f6bebee2a4a3c75d"; 11 11 }; 12 12 13 13 buildInputs = [ ··· 31 31 substituteInPlace lib/gitlab_config.rb --replace\ 32 32 "File.join(ROOT_PATH, 'config.yml')"\ 33 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 34 38 35 # Note that we're running gitlab-shell from current-system/sw 39 36 # because otherwise updating gitlab-shell won't be reflected in 40 37 # the hardcoded path of the authorized-keys file: 41 38 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" 39 + "\"#{ROOT_PATH}/bin/gitlab-shell"\ 40 + "\"GITLAB_SHELL_CONFIG_PATH=#{ENV['GITLAB_SHELL_CONFIG_PATH']} /run/current-system/sw/bin/gitlab-shell" 44 41 45 42 # We're setting GITLAB_SHELL_CONFIG_PATH in the ssh authorized key 46 43 # environment because we need it in gitlab_configrb
+185 -127
pkgs/applications/version-management/gitlab/Gemfile
··· 8 8 RUBY_PLATFORM.include?('linux') && require_as 9 9 end 10 10 11 - gem "rails", "~> 4.1.0" 11 + gem 'rails', '4.1.12' 12 12 13 - # Make links from text 14 - gem 'rails_autolink', '~> 1.1' 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' 15 16 16 17 # Default values for AR models 17 18 gem "default_value_for", "~> 3.0.0" 18 19 19 20 # Supported DBs 20 - gem "mysql2", group: :mysql 21 - gem "pg", group: :postgres 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" 22 39 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' 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' 31 47 32 48 # Extracting information from a git repository 33 49 # 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' 50 + gem "gitlab_git", '~> 7.2.15' 38 51 39 52 # LDAP Auth 40 - gem 'gitlab_omniauth-ldap', '1.1.0', require: "omniauth-ldap" 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" 41 56 42 57 # Git Wiki 43 - gem 'gollum-lib', '~> 3.0.0' 58 + gem 'gollum-lib', '~> 4.0.2' 44 59 45 60 # Language detection 46 - gem "gitlab-linguist", "~> 3.0.0", require: "linguist" 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" 47 66 48 67 # API 49 68 gem "grape", "~> 0.6.1" 50 69 gem "grape-entity", "~> 0.4.2" 51 - gem 'rack-cors', require: 'rack/cors' 70 + gem 'rack-cors', '~> 0.2.9', require: 'rack/cors' 52 71 53 72 # Format dates and times 54 73 # based on human-friendly examples 55 - gem "stamp" 74 + gem "stamp", '~> 0.5.0' 56 75 57 76 # Enumeration fields 58 - gem 'enumerize' 77 + gem 'enumerize', '~> 0.7.0' 59 78 60 79 # Pagination 61 80 gem "kaminari", "~> 0.15.1" 62 81 63 82 # HAML 64 - gem "haml-rails" 83 + gem "haml-rails", '~> 0.5.3' 65 84 66 85 # Files attachments 67 - gem "carrierwave" 86 + gem "carrierwave", '~> 0.9.0' 68 87 69 88 # Drag and Drop UI 70 - gem 'dropzonejs-rails' 89 + gem 'dropzonejs-rails', '~> 0.7.1' 71 90 72 91 # for aws storage 73 - gem "fog", "~> 1.14" 74 - gem "unf" 92 + gem "fog", "~> 1.25.0" 93 + gem "unf", '~> 0.1.4' 75 94 76 95 # Authorization 77 - gem "six" 96 + gem "six", '~> 0.2.0' 78 97 79 98 # Seed data 80 - gem "seed-fu" 99 + gem "seed-fu", '~> 2.3.5' 81 100 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' 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' 96 112 97 113 # Diffs 98 114 gem 'diffy', '~> 3.0.3' 99 115 100 116 # Application server 101 117 group :unicorn do 102 - gem "unicorn", '~> 4.6.3' 103 - gem 'unicorn-worker-killer' 118 + gem "unicorn", '~> 4.8.2' 119 + gem 'unicorn-worker-killer', '~> 0.4.2' 104 120 end 105 121 106 122 # State machine 107 - gem "state_machine" 123 + gem "state_machine", '~> 1.2.0' 124 + # Run events after state machine commits 125 + gem 'after_commit_queue' 108 126 109 127 # Issue tags 110 - gem "acts-as-taggable-on" 128 + gem 'acts-as-taggable-on', '~> 3.4' 111 129 112 130 # Background jobs 113 - gem 'slim' 114 - gem 'sinatra', require: nil 115 - gem 'sidekiq', '2.17.0' 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' 116 135 117 136 # HTTP requests 118 - gem "httparty" 137 + gem "httparty", '~> 0.13.3' 119 138 120 139 # Colored output to console 121 - gem "colored" 140 + gem "colored", '~> 1.2' 141 + gem "colorize", '~> 0.5.8' 122 142 123 143 # GitLab settings 124 - gem 'settingslogic' 144 + gem 'settingslogic', '~> 2.0.9' 125 145 126 146 # Misc 127 - gem "foreman" 128 - gem 'version_sorter' 147 + 148 + gem 'version_sorter', '~> 2.0.0' 129 149 130 150 # Cache 131 - gem "redis-rails" 151 + gem "redis-rails", '~> 4.0.0' 132 152 133 153 # Campfire integration 134 154 gem 'tinder', '~> 1.9.2' 135 155 136 156 # HipChat integration 137 - gem "hipchat", "~> 0.14.0" 157 + gem 'hipchat', '~> 1.5.0' 138 158 139 159 # Flowdock integration 140 - gem "gitlab-flowdock-git-hook", "~> 0.4.2" 160 + gem "gitlab-flowdock-git-hook", "~> 1.0.1" 141 161 142 162 # Gemnasium integration 143 163 gem "gemnasium-gitlab-service", "~> 0.2" 144 164 145 165 # Slack integration 146 - gem "slack-notifier", "~> 0.3.2" 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' 147 173 148 174 # d3 149 - gem "d3_rails", "~> 3.1.4" 175 + gem 'd3_rails', '~> 3.5.5' 176 + 177 + #cal-heatmap 178 + gem "cal-heatmap-rails", "~> 0.0.1" 150 179 151 180 # underscore-rails 152 181 gem "underscore-rails", "~> 1.4.4" ··· 155 184 gem "sanitize", '~> 2.0' 156 185 157 186 # Protect against bruteforcing 158 - gem "rack-attack" 187 + gem "rack-attack", '~> 4.3.0' 159 188 160 189 # Ace editor 161 - gem 'ace-rails-ap' 190 + gem 'ace-rails-ap', '~> 2.0.1' 162 191 163 192 # Keyboard shortcuts 164 - gem 'mousetrap-rails' 193 + gem 'mousetrap-rails', '~> 1.4.6' 165 194 166 - # Semantic UI Sass for Sidebar 167 - gem 'semantic-ui-sass', '~> 0.16.1.0' 195 + # Detect and convert string character encoding 196 + gem 'charlock_holmes', '~> 0.6.9.4' 168 197 169 - gem "sass-rails", '~> 4.0.2' 170 - gem "coffee-rails" 171 - gem "uglifier" 172 - gem "therubyracer" 173 - gem 'turbolinks' 174 - gem 'jquery-turbolinks' 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' 175 203 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" 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' 189 218 190 219 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 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' 195 228 196 229 # Better errors handler 197 - gem 'better_errors' 198 - gem 'binding_of_caller' 199 - 200 - gem 'rails_best_practices' 230 + gem 'better_errors', '~> 1.0.1' 231 + gem 'binding_of_caller', '~> 0.7.2' 201 232 202 233 # Docs generator 203 - gem "sdoc" 234 + gem "sdoc", '~> 0.3.20' 204 235 205 236 # thin instead webrick 206 - gem 'thin' 237 + gem 'thin', '~> 1.6.1' 207 238 end 208 239 209 240 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' 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' 220 251 221 252 # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) 222 - gem 'minitest', '~> 5.3.0' 253 + gem 'minitest', '~> 5.7.0' 223 254 224 255 # Generate Fake data 225 - gem "ffaker" 256 + gem 'ffaker', '~> 2.0.0' 226 257 227 - # Guard 228 - gem 'guard-rspec' 229 - gem 'guard-spinach' 258 + gem 'capybara', '~> 2.4.0' 259 + gem 'capybara-screenshot', '~> 1.0.0' 260 + gem 'poltergeist', '~> 1.6.0' 230 261 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') 262 + gem 'teaspoon', '~> 1.0.0' 263 + gem 'teaspoon-jasmine', '~> 2.2.0' 235 264 236 - # PhantomJS driver for Capybara 237 - gem 'poltergeist', '~> 1.5.1' 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' 238 269 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' 270 + gem 'rubocop', '~> 0.28.0', require: false 271 + gem 'coveralls', '~> 0.8.2', require: false 272 + gem 'simplecov', '~> 0.10.0', require: false 244 273 end 245 274 246 275 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' 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' 252 281 end 253 282 254 283 group :production do 255 284 gem "gitlab_meta", '7.0' 256 285 end 257 286 258 - gem "newrelic_rpm" 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 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 + CFPropertyList (2.3.1) 4 5 RedCloth (4.2.9) 5 6 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) 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) 13 14 rack (~> 1.5.2) 14 15 rack-test (~> 0.6.2) 15 - actionview (4.1.1) 16 - activesupport (= 4.1.1) 16 + actionview (4.1.12) 17 + activesupport (= 4.1.12) 17 18 builder (~> 3.1) 18 19 erubis (~> 2.7.0) 19 - activemodel (4.1.1) 20 - activesupport (= 4.1.1) 20 + activemodel (4.1.12) 21 + activesupport (= 4.1.12) 21 22 builder (~> 3.1) 22 - activerecord (4.1.1) 23 - activemodel (= 4.1.1) 24 - activesupport (= 4.1.1) 23 + activerecord (4.1.12) 24 + activemodel (= 4.1.12) 25 + activesupport (= 4.1.12) 25 26 arel (~> 5.0.0) 26 - activesupport (4.1.1) 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) 27 37 i18n (~> 0.6, >= 0.6.9) 28 38 json (~> 1.7, >= 1.7.7) 29 39 minitest (~> 5.1) 30 40 thread_safe (~> 0.1) 31 41 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) 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) 38 50 arel (5.0.1.20140414130214) 39 - asciidoctor (0.1.4) 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 40 63 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) 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) 45 69 better_errors (1.0.1) 46 70 coderay (>= 1.0.0) 47 71 erubis (>= 2.6.6) 48 72 binding_of_caller (0.7.2) 49 73 debug_inspector (>= 0.0.1) 50 - bootstrap-sass (3.0.3.0) 51 - sass (~> 3.2) 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) 52 88 builder (3.2.2) 53 - capybara (2.2.1) 89 + byebug (6.0.2) 90 + cal-heatmap-rails (0.0.1) 91 + capybara (2.4.4) 54 92 mime-types (>= 1.16) 55 93 nokogiri (>= 1.3.3) 56 94 rack (>= 1.0.0) 57 95 rack-test (>= 0.5.4) 58 96 xpath (~> 2.0) 97 + capybara-screenshot (1.0.11) 98 + capybara (>= 1.0, < 3) 99 + launchy 59 100 carrierwave (0.9.0) 60 101 activemodel (>= 3.2.0) 61 102 activesupport (>= 3.2.0) 62 103 json (>= 1.7) 63 - celluloid (0.15.2) 64 - timers (~> 1.1.0) 104 + celluloid (0.16.0) 105 + timers (~> 4.0.0) 65 106 charlock_holmes (0.6.9.4) 107 + chronic (0.10.2) 108 + chunky_png (1.3.4) 66 109 cliver (0.3.2) 67 - code_analyzer (0.4.3) 68 - sexp_processor 69 110 coderay (1.1.0) 70 111 coercible (1.0.0) 71 112 descendants_tracker (~> 0.0.1) 72 - coffee-rails (4.0.1) 113 + coffee-rails (4.1.0) 73 114 coffee-script (>= 2.2.0) 74 115 railties (>= 4.0.0, < 5.0) 75 - coffee-script (2.2.0) 116 + coffee-script (2.4.1) 76 117 coffee-script-source 77 118 execjs 78 - coffee-script-source (1.6.3) 119 + coffee-script-source (1.9.1.1) 79 120 colored (1.2) 80 121 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) 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) 90 131 creole (0.3.8) 91 - d3_rails (3.1.10) 132 + d3_rails (3.5.6) 92 133 railties (>= 3.1.0) 93 - daemons (1.1.9) 94 - database_cleaner (1.3.0) 134 + daemons (1.2.3) 135 + database_cleaner (1.4.1) 95 136 debug_inspector (0.0.2) 96 - default_value_for (3.0.0) 137 + default_value_for (3.0.1) 97 138 activerecord (>= 3.2.0, < 5.0) 98 - descendants_tracker (0.0.3) 99 - devise (3.2.4) 139 + descendants_tracker (0.0.4) 140 + thread_safe (~> 0.3, >= 0.3.1) 141 + devise (3.5.2) 100 142 bcrypt (~> 3.0) 101 143 orm_adapter (~> 0.1) 102 144 railties (>= 3.2.6, < 5) 145 + responders 103 146 thread_safe (~> 0.1) 104 147 warden (~> 1.2.3) 105 148 devise-async (0.9.0) 106 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) 107 156 diff-lcs (1.2.5) 108 - diffy (3.0.3) 157 + diffy (3.0.7) 109 158 docile (1.1.5) 110 - dotenv (0.9.0) 111 - dropzonejs-rails (0.4.14) 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) 112 164 rails (> 3.1) 113 - email_spec (1.5.0) 165 + email_reply_parser (0.5.8) 166 + email_spec (1.6.0) 114 167 launchy (~> 2.1) 115 168 mail (~> 2.2) 116 - emoji (1.0.1) 117 - json 169 + encryptor (1.3.0) 118 170 enumerize (0.7.0) 119 171 activesupport (>= 3.2) 120 - equalizer (0.0.8) 172 + equalizer (0.0.11) 121 173 erubis (2.7.0) 122 174 escape_utils (0.2.4) 123 - eventmachine (1.0.3) 124 - excon (0.32.1) 125 - execjs (2.0.2) 175 + eventmachine (1.0.8) 176 + excon (0.45.4) 177 + execjs (2.6.0) 126 178 expression_parser (0.9.0) 127 179 factory_girl (4.3.0) 128 180 activesupport (>= 3.0.0) 129 181 factory_girl_rails (4.3.0) 130 182 factory_girl (~> 4.3.0) 131 183 railties (>= 3.0.0) 132 - faraday (0.8.9) 184 + faraday (0.8.10) 133 185 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) 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) 141 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) 142 209 nokogiri (~> 1.5, >= 1.5.11) 143 - fog-brightbox (0.0.1) 144 - fog-core 210 + opennebula 211 + fog-brightbox (0.9.0) 212 + fog-core (~> 1.22) 145 213 fog-json 146 - fog-core (1.21.1) 214 + inflecto (~> 0.0.2) 215 + fog-core (1.32.1) 147 216 builder 148 - excon (~> 0.32) 149 - formatador (~> 0.2.0) 217 + excon (~> 0.45) 218 + formatador (~> 0.2) 150 219 mime-types 151 220 net-scp (~> 1.1) 152 221 net-ssh (>= 2.1.3) 153 - fog-json (1.0.0) 154 - multi_json (~> 1.0) 155 - font-awesome-rails (4.2.0.0) 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) 156 252 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) 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) 167 268 gitlab-grit (>= 2.4.1) 168 269 multi_json 169 - gitlab-grack (2.0.0.pre) 170 - rack (~> 1.5.1) 171 - gitlab-grit (2.6.12) 270 + gitlab-grit (2.7.3) 172 271 charlock_holmes (~> 0.6) 173 272 diff-lcs (~> 1.1) 174 273 mime-types (~> 1.15) 175 274 posix-spawn (~> 0.3) 176 - gitlab-linguist (3.0.0) 275 + gitlab-linguist (3.0.1) 177 276 charlock_holmes (~> 0.6.6) 178 277 escape_utils (~> 0.2.4) 179 278 mime-types (~> 1.19) 180 - gitlab_emoji (0.0.1.1) 181 - emoji (~> 1.0.1) 182 - gitlab_git (7.0.0.rc10) 279 + gitlab_emoji (0.1.1) 280 + gemojione (~> 2.0) 281 + gitlab_git (7.2.15) 183 282 activesupport (~> 4.0) 184 283 charlock_holmes (~> 0.6) 185 284 gitlab-linguist (~> 3.0) 186 - rugged (~> 0.21.0) 285 + rugged (~> 0.22.2) 187 286 gitlab_meta (7.0) 188 - gitlab_omniauth-ldap (1.1.0) 189 - net-ldap (~> 0.7.0) 287 + gitlab_omniauth-ldap (1.2.1) 288 + net-ldap (~> 0.9) 190 289 omniauth (~> 1.0) 191 290 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) 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) 198 299 sanitize (~> 2.1.0) 199 300 stringex (~> 2.5.1) 200 - gon (5.0.1) 301 + gon (5.0.4) 201 302 actionpack (>= 2.3.0) 202 303 json 203 304 grape (0.6.1) ··· 210 311 rack-accept 211 312 rack-mount 212 313 virtus (>= 1.0.0) 213 - grape-entity (0.4.2) 314 + grape-entity (0.4.8) 214 315 activesupport 215 316 multi_json (>= 1.3.2) 216 317 growl (1.0.3) 217 - guard (2.2.4) 318 + guard (2.13.0) 218 319 formatador (>= 0.2.4) 219 - listen (~> 2.1) 320 + listen (>= 2.7, <= 4.0) 220 321 lumberjack (~> 1.0) 322 + nenv (~> 0.1) 323 + notiffany (~> 0.0) 221 324 pry (>= 0.9.12) 325 + shellany (~> 0.0) 222 326 thor (>= 0.18.1) 223 - guard-rspec (4.2.0) 224 - guard (>= 2.1.1) 327 + guard-rspec (4.2.10) 328 + guard (~> 2.1) 225 329 rspec (>= 2.14, < 4.0) 226 - guard-spinach (0.0.2) 227 - guard (>= 1.1) 228 - spinach 229 - haml (4.0.5) 330 + haml (4.0.7) 230 331 tilt 231 332 haml-rails (0.5.3) 232 333 actionpack (>= 4.0.1) ··· 234 335 haml (>= 3.1, < 5.0) 235 336 railties (>= 4.0.1) 236 337 hashie (2.1.2) 338 + highline (1.6.21) 237 339 hike (1.2.3) 238 - hipchat (0.14.0) 340 + hipchat (1.5.2) 239 341 httparty 240 - httparty 342 + mimemagic 343 + hitimes (1.2.3) 241 344 html-pipeline (1.11.0) 242 345 activesupport (>= 2) 243 346 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) 347 + http-cookie (1.0.2) 348 + domain_name (~> 0.5) 249 349 http_parser.rb (0.5.3) 250 - httparty (0.13.0) 350 + httparty (0.13.5) 251 351 json (~> 1.8) 252 352 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) 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) 264 361 railties (>= 3.0, < 5.0) 265 362 thor (>= 0.14, < 2.0) 266 363 jquery-scrollto-rails (1.4.3) 267 364 railties (> 3.1, < 5.0) 268 - jquery-turbolinks (2.0.1) 365 + jquery-turbolinks (2.0.2) 269 366 railties (>= 3.1.0) 270 367 turbolinks 271 368 jquery-ui-rails (4.2.1) 272 369 railties (>= 3.2.16) 273 - json (1.8.1) 274 - jwt (0.1.13) 275 - multi_json (>= 1.5) 370 + json (1.8.3) 371 + jwt (1.5.1) 276 372 kaminari (0.15.1) 277 373 actionpack (>= 3.0.0) 278 374 activesupport (>= 3.0.0) 279 - kgio (2.8.1) 280 - launchy (2.4.2) 375 + kgio (2.9.3) 376 + launchy (2.4.3) 281 377 addressable (~> 2.3) 282 378 letter_opener (1.1.2) 283 379 launchy (~> 2.2) 284 - libv8 (3.16.14.11) 285 - listen (2.3.1) 286 - celluloid (>= 0.15.2) 380 + listen (2.10.1) 381 + celluloid (~> 0.16.0) 287 382 rb-fsevent (>= 0.9.3) 288 383 rb-inotify (>= 0.9) 289 - lumberjack (1.0.4) 290 - mail (2.5.4) 291 - mime-types (~> 1.16) 292 - treetop (~> 1.4.8) 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) 293 390 method_source (0.8.2) 294 391 mime-types (1.25.1) 295 - mini_portile (0.6.0) 296 - minitest (5.3.5) 392 + mimemagic (0.3.0) 393 + mini_portile (0.6.2) 394 + minitest (5.7.0) 297 395 mousetrap-rails (1.4.6) 298 - multi_json (1.10.1) 396 + multi_json (1.11.2) 299 397 multi_xml (0.5.5) 300 398 multipart-post (1.2.0) 301 - mysql2 (0.3.16) 302 - net-ldap (0.7.0) 303 - net-scp (1.1.2) 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) 304 404 net-ssh (>= 2.6.5) 305 - net-ssh (2.8.0) 405 + net-ssh (2.9.2) 406 + netrc (0.10.3) 407 + newrelic-grape (2.0.0) 408 + grape 409 + newrelic_rpm 306 410 newrelic_rpm (3.9.4.245) 307 - nokogiri (1.6.2.1) 308 - mini_portile (= 0.6.0) 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) 309 416 nprogress-rails (0.1.2.3) 310 417 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) 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) 316 423 rack (~> 1.2) 317 - omniauth (1.1.4) 318 - hashie (>= 1.2, < 3) 319 - rack 320 - omniauth-github (1.1.1) 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) 321 434 omniauth (~> 1.0) 322 435 omniauth-oauth2 (~> 1.1) 323 - omniauth-google-oauth2 (0.2.5) 436 + omniauth-gitlab (1.0.0) 437 + omniauth (~> 1.0) 438 + omniauth-oauth2 (~> 1.0) 439 + omniauth-google-oauth2 (0.2.6) 324 440 omniauth (> 1.0) 325 441 omniauth-oauth2 (~> 1.1) 326 - omniauth-oauth (1.0.1) 327 - oauth 442 + omniauth-kerberos (0.2.0) 443 + omniauth-multipassword 444 + timfel-krb5-auth (~> 0.8) 445 + omniauth-multipassword (0.4.2) 328 446 omniauth (~> 1.0) 329 - omniauth-oauth2 (1.1.1) 330 - oauth2 (~> 0.8.0) 447 + omniauth-oauth (1.1.0) 448 + oauth 331 449 omniauth (~> 1.0) 332 - omniauth-shibboleth (1.1.1) 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) 333 457 omniauth (>= 1.0.0) 334 458 omniauth-twitter (1.0.1) 335 459 multi_json (~> 1.3) 336 460 omniauth-oauth (~> 1.0) 337 - org-ruby (0.9.9) 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) 338 470 rubypants (~> 0.2) 339 471 orm_adapter (0.5.0) 340 - pg (0.15.1) 341 - phantomjs (1.9.2.0) 342 - poltergeist (1.5.1) 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) 343 478 capybara (~> 2.1) 344 479 cliver (~> 0.3.1) 345 480 multi_json (~> 1.0) 346 481 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) 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) 352 487 slop (~> 3.4) 488 + pry-rails (0.3.4) 489 + pry (>= 0.9.10) 353 490 pyu-ruby-sasl (0.0.3.3) 354 - quiet_assets (1.0.2) 491 + quiet_assets (1.0.3) 355 492 railties (>= 3.1, < 5.0) 356 - racc (1.4.10) 357 - rack (1.5.2) 493 + rack (1.5.5) 358 494 rack-accept (0.4.5) 359 495 rack (>= 0.4) 360 - rack-attack (2.3.0) 496 + rack-attack (4.3.0) 361 497 rack 362 498 rack-cors (0.2.9) 363 - rack-mini-profiler (0.9.0) 499 + rack-mini-profiler (0.9.7) 364 500 rack (>= 1.1.3) 365 501 rack-mount (0.8.3) 366 502 rack (>= 1.0.0) 367 - rack-protection (1.5.1) 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) 368 510 rack 369 - rack-test (0.6.2) 511 + rack-test (0.6.3) 370 512 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) 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) 378 520 bundler (>= 1.3.0, < 2.0) 379 - railties (= 4.1.1) 521 + railties (= 4.1.12) 380 522 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) 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) 395 528 rake (>= 0.8.7) 396 529 thor (>= 0.18.1, < 2.0) 397 - raindrops (0.12.0) 398 - rake (10.3.2) 530 + rainbow (2.0.0) 531 + raindrops (0.15.0) 532 + rake (10.4.2) 399 533 raphael-rails (2.1.2) 400 - rb-fsevent (0.9.3) 401 - rb-inotify (0.9.2) 534 + rb-fsevent (0.9.5) 535 + rb-inotify (0.9.5) 402 536 ffi (>= 0.5.0) 537 + rbvmomi (1.8.2) 538 + builder 539 + nokogiri (>= 1.4.1) 540 + trollop 403 541 rdoc (3.12.2) 404 542 json (~> 1.4) 405 - redcarpet (3.1.2) 406 - redis (3.0.6) 543 + redcarpet (3.3.2) 544 + redis (3.2.1) 407 545 redis-actionpack (4.0.0) 408 546 actionpack (~> 4) 409 547 redis-rack (~> 1.5.0) 410 548 redis-store (~> 1.1.0) 411 - redis-activesupport (4.0.0) 549 + redis-activesupport (4.1.1) 412 550 activesupport (~> 4) 413 551 redis-store (~> 1.1.0) 414 - redis-namespace (1.4.1) 415 - redis (~> 3.0.4) 552 + redis-namespace (1.5.2) 553 + redis (~> 3.0, >= 3.0.4) 416 554 redis-rack (1.5.0) 417 555 rack (~> 1.5) 418 556 redis-store (~> 1.1.0) ··· 420 558 redis-actionpack (~> 4) 421 559 redis-activesupport (~> 4) 422 560 redis-store (~> 1.1.0) 423 - redis-store (1.1.4) 561 + redis-store (1.1.6) 424 562 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) 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) 430 572 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) 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) 449 618 rubypants (0.2.0) 450 - rugged (0.21.0) 451 - safe_yaml (0.9.7) 619 + rugged (0.22.2) 620 + safe_yaml (1.0.4) 452 621 sanitize (2.1.0) 453 622 nokogiri (>= 1.4.4) 454 623 sass (3.2.19) 455 - sass-rails (4.0.3) 624 + sass-rails (4.0.5) 456 625 railties (>= 4.0.0, < 5.0) 457 - sass (~> 3.2.0) 458 - sprockets (~> 2.8, <= 2.11.0) 626 + sass (~> 3.2.2) 627 + sprockets (~> 2.8, < 3.0) 459 628 sprockets-rails (~> 2.0) 629 + sawyer (0.6.0) 630 + addressable (~> 2.3.5) 631 + faraday (~> 0.8, < 0.10) 460 632 sdoc (0.3.20) 461 633 json (>= 1.1.3) 462 634 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) 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) 467 639 thor (~> 0.14) 468 - semantic-ui-sass (0.16.1.0) 469 - sass (~> 3.2) 470 640 settingslogic (2.0.9) 471 - sexp_processor (4.4.0) 472 - shoulda-matchers (2.1.0) 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) 473 646 activesupport (>= 3.0.0) 474 - sidekiq (2.17.0) 475 - celluloid (>= 0.15.2) 476 - connection_pool (>= 1.0.0) 647 + sidekiq (3.3.0) 648 + celluloid (>= 0.16.0) 649 + connection_pool (>= 2.0.0) 477 650 json 478 - redis (>= 3.0.4) 651 + redis (>= 3.0.6) 479 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) 480 657 simple_oauth (0.1.9) 481 - simplecov (0.9.0) 658 + simplecov (0.10.0) 482 659 docile (~> 1.1.0) 483 - multi_json 484 - simplecov-html (~> 0.8.0) 485 - simplecov-html (0.8.0) 486 - sinatra (1.4.4) 660 + json (~> 1.8) 661 + simplecov-html (~> 0.10.0) 662 + simplecov-html (0.10.0) 663 + sinatra (1.4.6) 487 664 rack (~> 1.4) 488 665 rack-protection (~> 1.4) 489 - tilt (~> 1.3, >= 1.3.4) 666 + tilt (>= 1.3, < 3) 490 667 six (0.2.0) 491 - slack-notifier (0.3.2) 492 - slim (2.0.2) 668 + slack-notifier (1.0.0) 669 + slim (2.0.3) 493 670 temple (~> 0.6.6) 494 671 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) 672 + slop (3.6.0) 673 + spinach (0.8.10) 674 + colorize 675 + gherkin-ruby (>= 0.3.2) 676 + json 499 677 spinach-rails (0.2.1) 500 678 capybara (>= 2.0.0) 501 679 railties (>= 3) 502 680 spinach (>= 0.4) 503 - spring (1.1.3) 504 - spring-commands-rspec (1.0.1) 681 + spring (1.3.6) 682 + spring-commands-rspec (1.0.4) 505 683 spring (>= 0.9.1) 506 684 spring-commands-spinach (1.0.0) 507 685 spring (>= 0.9.1) 508 - sprockets (2.11.0) 686 + spring-commands-teaspoon (0.0.2) 687 + spring (>= 0.9.1) 688 + sprockets (2.12.4) 509 689 hike (~> 1.2) 510 690 multi_json (~> 1.0) 511 691 rack (~> 1.0) 512 692 tilt (~> 1.1, != 1.3.0) 513 - sprockets-rails (2.1.3) 693 + sprockets-rails (2.3.2) 514 694 actionpack (>= 3.0) 515 695 activesupport (>= 3.0) 516 - sprockets (~> 2.8) 696 + sprockets (>= 2.8, < 4.0) 517 697 stamp (0.5.0) 518 698 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) 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) 531 717 thor (0.19.1) 532 - thread_safe (0.3.4) 718 + thread_safe (0.3.5) 533 719 tilt (1.4.1) 534 - timers (1.1.0) 535 - tinder (1.9.3) 720 + timers (4.0.4) 721 + hitimes 722 + timfel-krb5-auth (0.8.3) 723 + tinder (1.9.4) 536 724 eventmachine (~> 1.0) 537 - faraday (~> 0.8) 725 + faraday (~> 0.8.9) 538 726 faraday_middleware (~> 0.9) 539 727 hashie (>= 1.0, < 3) 540 728 json (~> 1.8.0) 541 729 mime-types (~> 1.19) 542 730 multi_json (~> 1.7) 543 731 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) 732 + tins (1.6.0) 733 + trollop (2.1.2) 734 + turbolinks (2.5.3) 549 735 coffee-rails 550 736 twitter-stream (0.1.16) 551 737 eventmachine (>= 0.12.8) ··· 553 739 simple_oauth (~> 0.1.4) 554 740 tzinfo (1.2.2) 555 741 thread_safe (~> 0.1) 556 - uglifier (2.3.2) 742 + uglifier (2.3.3) 557 743 execjs (>= 0.3.0) 558 744 json (>= 1.8.0) 559 745 underscore-rails (1.4.4) 560 746 unf (0.1.4) 561 747 unf_ext 562 - unf_ext (0.0.6) 563 - unicorn (4.6.3) 748 + unf_ext (0.0.7.1) 749 + unicorn (4.8.3) 564 750 kgio (~> 2.6) 565 751 rack 566 752 raindrops (~> 0.7) 567 - unicorn-worker-killer (0.4.2) 753 + unicorn-worker-killer (0.4.3) 754 + get_process_mem (~> 0) 568 755 unicorn (~> 4) 569 - version_sorter (1.1.0) 570 - virtus (1.0.1) 571 - axiom-types (~> 0.0.5) 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) 572 761 coercible (~> 1.0) 573 - descendants_tracker (~> 0.0.1) 574 - equalizer (~> 0.0.7) 762 + descendants_tracker (~> 0.0, >= 0.0.3) 763 + equalizer (~> 0.0, >= 0.0.9) 575 764 warden (1.2.3) 576 765 rack (>= 1.0) 577 - webmock (1.16.0) 578 - addressable (>= 2.2.7) 766 + webmock (1.21.0) 767 + addressable (>= 2.3.6) 579 768 crack (>= 0.3.2) 580 - websocket-driver (0.3.3) 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) 581 775 wikicloth (0.8.1) 582 776 builder 583 777 expression_parser ··· 589 783 ruby 590 784 591 785 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 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) 600 800 bootstrap-sass (~> 3.0) 601 - capybara (~> 2.2.1) 602 - carrierwave 603 - coffee-rails 604 - colored 605 - coveralls 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) 606 813 creole (~> 0.3.6) 607 - d3_rails (~> 3.1.4) 608 - database_cleaner 814 + d3_rails (~> 3.5.5) 815 + database_cleaner (~> 1.4.0) 609 816 default_value_for (~> 3.0.0) 610 - devise (= 3.2.4) 611 - devise-async (= 0.9.0) 817 + devise (~> 3.5.2) 818 + devise-async (~> 0.9.0) 819 + devise-two-factor (~> 2.0.0) 612 820 diffy (~> 3.0.3) 613 - dropzonejs-rails 614 - email_spec 615 - enumerize 616 - factory_girl_rails 617 - ffaker 618 - fog (~> 1.14) 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) 619 829 font-awesome-rails (~> 4.2) 620 830 foreman 831 + fuubar (~> 2.0.0) 621 832 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) 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) 628 838 gitlab_meta (= 7.0) 629 - gitlab_omniauth-ldap (= 1.1.0) 630 - gollum-lib (~> 3.0.0) 839 + gitlab_omniauth-ldap (~> 1.2.1) 840 + gollum-lib (~> 4.0.2) 631 841 gon (~> 5.0.0) 632 842 grape (~> 0.6.1) 633 843 grape-entity (~> 0.4.2) 634 844 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 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) 647 855 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 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) 671 888 raphael-rails (~> 2.1.2) 672 889 rb-fsevent 673 890 rb-inotify 674 891 rdoc (~> 3.6) 675 - redcarpet (~> 3.1.2) 676 - redis-rails 677 - request_store 678 - rspec-rails 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) 679 900 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 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) 702 928 tinder (~> 1.9.2) 703 - turbolinks 704 - uglifier 929 + turbolinks (~> 2.5.0) 930 + uglifier (~> 2.3.2) 705 931 underscore-rails (~> 1.4.4) 706 - unf 707 - unicorn (~> 4.6.3) 708 - unicorn-worker-killer 709 - version_sorter 710 - virtus 711 - webmock 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) 712 939 wikicloth (= 0.8.1)
+15 -18
pkgs/applications/version-management/gitlab/default.nix
··· 1 1 { stdenv, lib, bundler, fetchgit, bundlerEnv, defaultGemConfig, libiconv, ruby 2 - , tzdata, git 2 + , tzdata, git, nodejs, procps 3 3 }: 4 4 5 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 6 env = bundlerEnv { 14 7 name = "gitlab"; 15 8 inherit ruby; ··· 28 21 29 22 stdenv.mkDerivation rec { 30 23 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 - ''; 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 + 41 33 patches = [ 42 34 ./remove-hardcoded-locations.patch 35 + ./disable-dump-schema-after-migration.patch 43 36 ]; 44 37 postPatch = '' 45 38 # For reasons I don't understand "bundle exec" ignores the ··· 49 42 rm lib/tasks/test.rake 50 43 51 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" 52 49 53 50 # required for some gems: 54 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 1 { 2 + "CFPropertyList" = { 3 + version = "2.3.1"; 4 + source = { 5 + type = "gem"; 6 + sha256 = "1wnk3gxnhfafbhgp0ic7qhzlx3lhv04v8nws2s31ii5s8135hs6k"; 7 + }; 8 + }; 2 9 "RedCloth" = { 3 10 version = "4.2.9"; 4 11 source = { ··· 14 21 }; 15 22 }; 16 23 "actionmailer" = { 17 - version = "4.1.1"; 24 + version = "4.1.12"; 18 25 source = { 19 26 type = "gem"; 20 - sha256 = "14mbmlwyrxccmf2svhxmvrv0ypcq53xyyqzh4a2r2azmxjb1zxnx"; 27 + sha256 = "0p1hydjf5vb4na4fs29v7cdknfq3d6qvmld2vbafbh78kkclxi2m"; 21 28 }; 22 29 dependencies = [ 23 30 "actionpack" ··· 26 33 ]; 27 34 }; 28 35 "actionpack" = { 29 - version = "4.1.1"; 36 + version = "4.1.12"; 30 37 source = { 31 38 type = "gem"; 32 - sha256 = "078iqmjay787xg76zibnvk485y29d57wffiv9nj0nmzb89jfa6y1"; 39 + sha256 = "19bryymqlapsvn9df6q2ba4hvw9dwpp4fjc7i6lwffkadc4snkjy"; 33 40 }; 34 41 dependencies = [ 35 42 "actionview" ··· 39 46 ]; 40 47 }; 41 48 "actionview" = { 42 - version = "4.1.1"; 49 + version = "4.1.12"; 43 50 source = { 44 51 type = "gem"; 45 - sha256 = "0wlhsy9hqzpi3xylphx71i9bd5x6dd03qzrh4nnc8mimzjbv14jq"; 52 + sha256 = "1bv8qifaqa514z64zgfw3r4i120h2swwgpfk79xlrac21q6ps70n"; 46 53 }; 47 54 dependencies = [ 48 55 "activesupport" ··· 51 58 ]; 52 59 }; 53 60 "activemodel" = { 54 - version = "4.1.1"; 61 + version = "4.1.12"; 55 62 source = { 56 63 type = "gem"; 57 - sha256 = "0cijxp7n0zv1j2bh5jyirlcwi24j9xlwfsmn7icr0zsybgc0in61"; 64 + sha256 = "16429dg04s64g834svi7ghq486adr32gxr5p9kac2z6mjp8ggjr3"; 58 65 }; 59 66 dependencies = [ 60 67 "activesupport" ··· 62 69 ]; 63 70 }; 64 71 "activerecord" = { 65 - version = "4.1.1"; 72 + version = "4.1.12"; 66 73 source = { 67 74 type = "gem"; 68 - sha256 = "180kxb98097nh8dprqrm5d1ab6xaqv8kxqdbm1p84y87w0kj57yz"; 75 + sha256 = "1w3dbmbdk4whm5p1l6d2ky3xpl59lfcr9p3hwd41dz77ynpi5dr5"; 69 76 }; 70 77 dependencies = [ 71 78 "activemodel" ··· 73 80 "arel" 74 81 ]; 75 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 + }; 76 114 "activesupport" = { 77 - version = "4.1.1"; 115 + version = "4.1.12"; 78 116 source = { 79 117 type = "gem"; 80 - sha256 = "11dsdfrdqqfhpgigb960a4xrs1k7ix5brbsw034nijn8d4fq0hkk"; 118 + sha256 = "166jvrmdwayacnrd4z3rs2d6y0av3xnc18k6120ah13c2ipw69hn"; 81 119 }; 82 120 dependencies = [ 83 121 "i18n" ··· 88 126 ]; 89 127 }; 90 128 "acts-as-taggable-on" = { 91 - version = "2.4.1"; 129 + version = "3.5.0"; 92 130 source = { 93 131 type = "gem"; 94 - sha256 = "0gbmxx6nk109i6c4686vr5wpf89xiiys7s2lwf7z68dpgi1dsxab"; 132 + sha256 = "0bz0z8dlp3fjzah9y9b6rr9mkidsav9l4hdm51fnq1gd05yv3pr7"; 95 133 }; 96 134 dependencies = [ 97 - "rails" 135 + "activerecord" 98 136 ]; 99 137 }; 100 138 "addressable" = { 101 - version = "2.3.5"; 139 + version = "2.3.8"; 102 140 source = { 103 141 type = "gem"; 104 - sha256 = "11hv69v6h39j7m4v51a4p7my7xwjbhxbsg3y7ja156z7by10wkg7"; 142 + sha256 = "1533axm85gpz267km9gnfarf9c78g2scrysd6b8yw33vmhkz2km6"; 105 143 }; 106 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 + }; 107 155 "annotate" = { 108 - version = "2.6.0"; 156 + version = "2.6.10"; 109 157 source = { 110 158 type = "gem"; 111 - sha256 = "0min6rmiqjnp6irjd9mjlz8k13qzx4g51d8v6vn8zn8hdnfbjanr"; 159 + sha256 = "1wdw9phsv2dndgid3pd8h0hl4zycwy11jc9iz6prwza0xax0i7hg"; 112 160 }; 113 161 dependencies = [ 114 162 "activerecord" ··· 122 170 sha256 = "0dhnc20h1v8ml3nmkxq92rr7qxxpk6ixhwvwhgl2dbw9mmxz0hf9"; 123 171 }; 124 172 }; 173 + "asana" = { 174 + version = "0.0.6"; 175 + source = { 176 + type = "gem"; 177 + sha256 = "1x325pywh3d91qrg916gh8i5g13h4qzgi03zc93x6v4m4rj79dcp"; 178 + }; 179 + dependencies = [ 180 + "activeresource" 181 + ]; 182 + }; 125 183 "asciidoctor" = { 126 - version = "0.1.4"; 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"; 127 226 source = { 128 227 type = "gem"; 129 - sha256 = "14ngw7c8sq5ydh0xz6b5jgvs5vbk2sx1vf75fjf0q81ixnd6yb9a"; 228 + sha256 = "129kr8hiyzcnj4x3n14nnp7f7scps9v3d690i7fjzpq8i4n9gz8g"; 130 229 }; 230 + dependencies = [ 231 + "execjs" 232 + "json" 233 + ]; 131 234 }; 132 235 "awesome_print" = { 133 236 version = "1.2.0"; ··· 137 240 }; 138 241 }; 139 242 "axiom-types" = { 140 - version = "0.0.5"; 243 + version = "0.1.1"; 141 244 source = { 142 245 type = "gem"; 143 - sha256 = "0k6mf132n2f5z8xwcwfjayrxfqsd8yyzj2cgxv5phvr7szlqfyzn"; 246 + sha256 = "10q3k04pll041mkgy0m5fn2b1lazm6ly1drdbcczl5p57lzi3zy1"; 144 247 }; 145 248 dependencies = [ 146 249 "descendants_tracker" 147 250 "ice_nine" 251 + "thread_safe" 148 252 ]; 149 253 }; 150 254 "bcrypt" = { 151 - version = "3.1.7"; 255 + version = "3.1.10"; 152 256 source = { 153 257 type = "gem"; 154 - sha256 = "00jpjl2v0y8dsfhxx3l3sp2pnflkxbbywnda46n1w5f7a8qrac0w"; 258 + sha256 = "15cf7zzlj9b0xcx12jf8fmnpc8g1b0yhxal1yr5p7ny3mrz5pll6"; 155 259 }; 156 260 }; 157 261 "better_errors" = { ··· 176 280 ]; 177 281 }; 178 282 "bootstrap-sass" = { 179 - version = "3.0.3.0"; 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"; 180 295 source = { 181 296 type = "gem"; 182 - sha256 = "1isljqrlasq9n7cxj4ldf0cjjhkwzsbl8lj6rf5z9farwjx6k4iz"; 297 + sha256 = "0c3pwqhan5qpkmymmp4zpr6j1v3xrvvla9adsd0z9nx1dbc7llry"; 183 298 }; 184 299 dependencies = [ 300 + "erubis" 301 + "fastercsv" 302 + "haml" 303 + "highline" 304 + "multi_json" 305 + "ruby2ruby" 306 + "ruby_parser" 185 307 "sass" 308 + "terminal-table" 186 309 ]; 187 310 }; 311 + "browser" = { 312 + version = "1.0.0"; 313 + source = { 314 + type = "gem"; 315 + sha256 = "03pmj759wngl03lacn8mdhjn6mc5f8zn08mz6k5hq8czgwcwhjxi"; 316 + }; 317 + }; 188 318 "builder" = { 189 319 version = "3.2.2"; 190 320 source = { ··· 192 322 sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; 193 323 }; 194 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 + }; 195 339 "capybara" = { 196 - version = "2.2.1"; 340 + version = "2.4.4"; 197 341 source = { 198 342 type = "gem"; 199 - sha256 = "1sydb3mnznqn23s2cqb0ysdml0dgl06fzdvx8aqbbx1km9pgz080"; 343 + sha256 = "114k4xi4nfbp3jfbxgwa3fksbwsyibx74gbdqpcgg3dxpmzkaa4f"; 200 344 }; 201 345 dependencies = [ 202 346 "mime-types" ··· 206 350 "xpath" 207 351 ]; 208 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 + }; 209 364 "carrierwave" = { 210 365 version = "0.9.0"; 211 366 source = { ··· 219 374 ]; 220 375 }; 221 376 "celluloid" = { 222 - version = "0.15.2"; 377 + version = "0.16.0"; 223 378 source = { 224 379 type = "gem"; 225 - sha256 = "0lpa97m7f4p5hgzaaa47y1d5c78n8pp4xd8qb0sn5llqd0klkd9b"; 380 + sha256 = "044xk0y7i1xjafzv7blzj5r56s7zr8nzb619arkrl390mf19jxv3"; 226 381 }; 227 382 dependencies = [ 228 383 "timers" ··· 235 390 sha256 = "1vyzsr3r2bwig9knyhay1m7i828w9x5zhma44iajyrbs1ypvfbg5"; 236 391 }; 237 392 }; 238 - "cliver" = { 239 - version = "0.3.2"; 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"; 240 402 source = { 241 403 type = "gem"; 242 - sha256 = "096f4rj7virwvqxhkavy0v55rax10r4jqf8cymbvn4n631948xc7"; 404 + sha256 = "0n5xhkj3vffihl3h9s8yjzazqaqcm4p1nyxa1w2dk3fkpzvb0wfw"; 243 405 }; 244 406 }; 245 - "code_analyzer" = { 246 - version = "0.4.3"; 407 + "cliver" = { 408 + version = "0.3.2"; 247 409 source = { 248 410 type = "gem"; 249 - sha256 = "1v8b6sbsyw1612wilfc2bsjbr41gf46apjqmlqbishmkhywi1di7"; 411 + sha256 = "096f4rj7virwvqxhkavy0v55rax10r4jqf8cymbvn4n631948xc7"; 250 412 }; 251 - dependencies = [ 252 - "sexp_processor" 253 - ]; 254 413 }; 255 414 "coderay" = { 256 415 version = "1.1.0"; ··· 270 429 ]; 271 430 }; 272 431 "coffee-rails" = { 273 - version = "4.0.1"; 432 + version = "4.1.0"; 274 433 source = { 275 434 type = "gem"; 276 - sha256 = "12nqw61xfs43qap4bxp123q4fgj41gvxirdal95ymdd2qzr3cvig"; 435 + sha256 = "0p3zhs44gsy1p90nmghihzfyl7bsk8kv6j3q7rj3bn74wg8w7nqs"; 277 436 }; 278 437 dependencies = [ 279 438 "coffee-script" ··· 281 440 ]; 282 441 }; 283 442 "coffee-script" = { 284 - version = "2.2.0"; 443 + version = "2.4.1"; 285 444 source = { 286 445 type = "gem"; 287 - sha256 = "133cp4znfp44wwnv12myw8s0z6qws74ilqmw88iwzkshg689zpdc"; 446 + sha256 = "0rc7scyk7mnpfxqv5yy4y5q1hx3i7q3ahplcp4bq2g5r24g2izl2"; 288 447 }; 289 448 dependencies = [ 290 449 "coffee-script-source" ··· 292 451 ]; 293 452 }; 294 453 "coffee-script-source" = { 295 - version = "1.6.3"; 454 + version = "1.9.1.1"; 296 455 source = { 297 456 type = "gem"; 298 - sha256 = "0p33h0rdj1n8xhm2d5hzqbb8br6wn4rx0gk4hyhc6rxkaxsy79b4"; 457 + sha256 = "1arfrwyzw4sn7nnaq8jji5sv855rp4c5pvmzkabbdgca0w1cxfq5"; 299 458 }; 300 459 }; 301 460 "colored" = { ··· 313 472 }; 314 473 }; 315 474 "connection_pool" = { 316 - version = "1.2.0"; 475 + version = "2.2.0"; 317 476 source = { 318 477 type = "gem"; 319 - sha256 = "1ffw78r39b3gn121ghi65fsrkzjjv7h0mxag6ilphsas1kzz3h21"; 478 + sha256 = "1b2bb3k39ni5mzcnqlv9y4yjkbin20s7dkwzp0jw2jf1rmzcgrmy"; 320 479 }; 321 480 }; 322 481 "coveralls" = { 323 - version = "0.7.0"; 482 + version = "0.8.2"; 324 483 source = { 325 484 type = "gem"; 326 - sha256 = "0sz30d7b83qqsj3i0fr691w05d62wj7x3afh0ryjkqkis3fq94j4"; 485 + sha256 = "0ds63q3g8zp23813hsvjjqpjglwr76ld4zqbbdhc9ads9l988axz"; 327 486 }; 328 487 dependencies = [ 329 - "multi_json" 488 + "json" 330 489 "rest-client" 331 490 "simplecov" 332 491 "term-ansicolor" ··· 334 493 ]; 335 494 }; 336 495 "crack" = { 337 - version = "0.4.1"; 496 + version = "0.4.2"; 338 497 source = { 339 498 type = "gem"; 340 - sha256 = "0wb2s4nidabcgn2k65ydhx0f9758py79p615qph99117csy915jg"; 499 + sha256 = "1il94m92sz32nw5i6hdq14f1a2c3s9hza9zn6l95fvqhabq38k7a"; 341 500 }; 342 501 dependencies = [ 343 502 "safe_yaml" ··· 351 510 }; 352 511 }; 353 512 "d3_rails" = { 354 - version = "3.1.10"; 513 + version = "3.5.6"; 355 514 source = { 356 515 type = "gem"; 357 - sha256 = "1n94vwn51v1dfqjqmdkb11mgyvq6dfmf5cjwa9w1nj3785yvkii8"; 516 + sha256 = "0faz49chi08zxqwwdzzcb468gmcfmpv1s58y4c431kpa6kyh8qsm"; 358 517 }; 359 518 dependencies = [ 360 519 "railties" 361 520 ]; 362 521 }; 363 522 "daemons" = { 364 - version = "1.1.9"; 523 + version = "1.2.3"; 365 524 source = { 366 525 type = "gem"; 367 - sha256 = "1j1m64pirsldhic6x6sg4lcrmp1bs1ihpd49xm8m1b2rc1c3irzy"; 526 + sha256 = "0b839hryy9sg7x3knsa1d6vfiyvn0mlsnhsb6an8zsalyrz1zgqg"; 368 527 }; 369 528 }; 370 529 "database_cleaner" = { 371 - version = "1.3.0"; 530 + version = "1.4.1"; 372 531 source = { 373 532 type = "gem"; 374 - sha256 = "19w25yda684pg29bggq26wy4lpyjvzscwg2hx3hmmmpysiwfnxgn"; 533 + sha256 = "0n5r7kvsmknk876v3scdphfnvllr9157fa5q7j5fczg8j5qm6kf0"; 375 534 }; 376 535 }; 377 536 "debug_inspector" = { ··· 382 541 }; 383 542 }; 384 543 "default_value_for" = { 385 - version = "3.0.0"; 544 + version = "3.0.1"; 386 545 source = { 387 546 type = "gem"; 388 - sha256 = "08bhk2dzxpvsk891y415man42vn3f9cvysysywh1iavxbv5qkg8z"; 547 + sha256 = "1z4lrba4y1c3y0rxw8321qbwsb3nr6c2igrpksfvz93yhc9m6xm0"; 389 548 }; 390 549 dependencies = [ 391 550 "activerecord" 392 551 ]; 393 552 }; 394 553 "descendants_tracker" = { 395 - version = "0.0.3"; 554 + version = "0.0.4"; 396 555 source = { 397 556 type = "gem"; 398 - sha256 = "0819j80k85j62qjg90v8z8s3h4nf3v6afxxz73hl6iqxr2dhgmq1"; 557 + sha256 = "15q8g3fcqyb41qixn6cky0k3p86291y7xsh1jfd851dvrza1vi79"; 399 558 }; 559 + dependencies = [ 560 + "thread_safe" 561 + ]; 400 562 }; 401 563 "devise" = { 402 - version = "3.2.4"; 564 + version = "3.5.2"; 403 565 source = { 404 566 type = "gem"; 405 - sha256 = "1za4082iacq2n0g0v5s1vmn402wj4bwvqqd55phc9da922j4awx3"; 567 + sha256 = "1wj88i2hyhcnifj606vzgf2q68yhcpyrsx7bc11h93cma51z59c3"; 406 568 }; 407 569 dependencies = [ 408 570 "bcrypt" 409 571 "orm_adapter" 410 572 "railties" 573 + "responders" 411 574 "thread_safe" 412 575 "warden" 413 576 ]; ··· 422 585 "devise" 423 586 ]; 424 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 + }; 425 602 "diff-lcs" = { 426 603 version = "1.2.5"; 427 604 source = { ··· 430 607 }; 431 608 }; 432 609 "diffy" = { 433 - version = "3.0.3"; 610 + version = "3.0.7"; 434 611 source = { 435 612 type = "gem"; 436 - sha256 = "0qldyp6m5vlagiaiwdixbj64ynr5ghz58xsrxykas7581qdxk88m"; 613 + sha256 = "0il0ri511g9rm88qbvncbzgwc6wk6265hmnf7grcczmrs1z49vl0"; 437 614 }; 438 615 }; 439 616 "docile" = { ··· 443 620 sha256 = "0m8j31whq7bm5ljgmsrlfkiqvacrw6iz9wq10r3gwrv5785y8gjx"; 444 621 }; 445 622 }; 446 - "dotenv" = { 447 - version = "0.9.0"; 623 + "domain_name" = { 624 + version = "0.5.24"; 448 625 source = { 449 626 type = "gem"; 450 - sha256 = "1gl0m6s8d6m72wcm4p86kzzjdihyryi5mh6v70qkqd0dl1gj73l3"; 627 + sha256 = "1xjm5arwc35wryn0hbfldx2pfhwx5qilkv7yms4kz0jri3m6mgcc"; 451 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 + ]; 452 642 }; 453 643 "dropzonejs-rails" = { 454 - version = "0.4.14"; 644 + version = "0.7.1"; 455 645 source = { 456 646 type = "gem"; 457 - sha256 = "0aqjij9dvazz7vq9c8m9fxjc3vnkfagqgnq94whzgrm2ikszb1ny"; 647 + sha256 = "0spfjkji6v98996bc320sx3ar3sflkpbjpzwg6cvbycwfn29fjfy"; 458 648 }; 459 649 dependencies = [ 460 650 "rails" 461 651 ]; 462 652 }; 653 + "email_reply_parser" = { 654 + version = "0.5.8"; 655 + source = { 656 + type = "gem"; 657 + sha256 = "0k2p229mv7xn7q627zwmvhrcvba4b9m70pw2jfjm6iimg2vmf22r"; 658 + }; 659 + }; 463 660 "email_spec" = { 464 - version = "1.5.0"; 661 + version = "1.6.0"; 465 662 source = { 466 663 type = "gem"; 467 - sha256 = "0gshv8ylfr1nf6mhgriyzlm5rv5c44yxlgmxva8gpdqsyibfa1r6"; 664 + sha256 = "00p1cc69ncrgg7m45va43pszip8anx5735w1lsb7p5ygkyw8nnpv"; 468 665 }; 469 666 dependencies = [ 470 667 "launchy" 471 668 "mail" 472 669 ]; 473 670 }; 474 - "emoji" = { 475 - version = "1.0.1"; 671 + "encryptor" = { 672 + version = "1.3.0"; 476 673 source = { 477 674 type = "gem"; 478 - sha256 = "01fgzkwfsfcvcgrxb6x58w8rpcv0hq6x761iws0xqv0rzz3a8x1a"; 675 + sha256 = "04wqqda081h7hmhwjjx1yqxprxjk8s5jgv837xqv1bpxiv7f4v1y"; 479 676 }; 480 - dependencies = [ 481 - "json" 482 - ]; 483 677 }; 484 678 "enumerize" = { 485 679 version = "0.7.0"; ··· 492 686 ]; 493 687 }; 494 688 "equalizer" = { 495 - version = "0.0.8"; 689 + version = "0.0.11"; 496 690 source = { 497 691 type = "gem"; 498 - sha256 = "1nh9i4khg7z2nsay8i1i43yk6ml2hwsf7cl179z22p4kwvn04vfn"; 692 + sha256 = "1kjmx3fygx8njxfrwcmn7clfhjhb6bvv3scy2lyyi0wqyi3brra4"; 499 693 }; 500 694 }; 501 695 "erubis" = { ··· 513 707 }; 514 708 }; 515 709 "eventmachine" = { 516 - version = "1.0.3"; 710 + version = "1.0.8"; 517 711 source = { 518 712 type = "gem"; 519 - sha256 = "09sqlsb6x9ddlgfw5gsw7z0yjg5m2qfjiqkz2fx70zsizj3lqhil"; 713 + sha256 = "1frvpk3p73xc64qkn0ymll3flvn4xcycq5yx8a43zd3gyzc1ifjp"; 520 714 }; 521 715 }; 522 716 "excon" = { 523 - version = "0.32.1"; 717 + version = "0.45.4"; 524 718 source = { 525 719 type = "gem"; 526 - sha256 = "0yazh0228ldyxrbrj5pqw06rs5sk3disp24v5bw4h8mp3ibih45a"; 720 + sha256 = "1shb4g3dhsfkywgjv6123yrvp2c8bvi8hqmq47iqa5lp72sn4b4w"; 527 721 }; 528 722 }; 529 723 "execjs" = { 530 - version = "2.0.2"; 724 + version = "2.6.0"; 531 725 source = { 532 726 type = "gem"; 533 - sha256 = "167kbkyql7nvvwjsgdw5z8j66ngq7kc59gxfwsxhqi5fl1z0jbjs"; 727 + sha256 = "0grlxwiccbnflxs30r3h7g23xnps5knav1jyqkk3anvm8363ifjw"; 534 728 }; 535 729 }; 536 730 "expression_parser" = { ··· 562 756 ]; 563 757 }; 564 758 "faraday" = { 565 - version = "0.8.9"; 759 + version = "0.8.10"; 566 760 source = { 567 761 type = "gem"; 568 - sha256 = "17d79fsgx0xwh0mfxyz5pbr435qlw79phlfvifc546w2axdkp718"; 762 + sha256 = "093hrmrx3jn9969q6c9cjms2k73aqwhs03kij378kg1d5izr4r6f"; 569 763 }; 570 764 dependencies = [ 571 765 "multipart-post" 572 766 ]; 573 767 }; 574 768 "faraday_middleware" = { 575 - version = "0.9.0"; 769 + version = "0.10.0"; 576 770 source = { 577 771 type = "gem"; 578 - sha256 = "1kwvi2sdxd6j764a7q5iir73dw2v6816zx3l8cgfv0wr2m47icq2"; 772 + sha256 = "0nxia26xzy8i56qfyz1bg8dg9yb26swpgci8n5jry8mh4bnx5r5h"; 579 773 }; 580 774 dependencies = [ 581 775 "faraday" 582 776 ]; 583 777 }; 778 + "fastercsv" = { 779 + version = "1.5.5"; 780 + source = { 781 + type = "gem"; 782 + sha256 = "1df3vfgw5wg0s405z0pj0rfcvnl9q6wak7ka8gn0xqg4cag1k66h"; 783 + }; 784 + }; 584 785 "ffaker" = { 585 - version = "1.22.1"; 786 + version = "2.0.0"; 586 787 source = { 587 788 type = "gem"; 588 - sha256 = "17zpqhf1kq831jg9rdrpx58mwnrnrvy5g97rxg3hzgy5j09kxq0q"; 789 + sha256 = "19fnbbsw87asyb1hvkr870l2yldah2jcjb8074pgyrma5lynwmn0"; 589 790 }; 590 791 }; 591 792 "ffi" = { 592 - version = "1.9.3"; 793 + version = "1.9.10"; 593 794 source = { 594 795 type = "gem"; 595 - sha256 = "0873h6jp3v65mll7av9bxlzp9m9l1cc66j0krg0llchwbh4pv5sp"; 796 + sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; 596 797 }; 597 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 + }; 598 820 "fog" = { 599 - version = "1.21.0"; 821 + version = "1.25.0"; 600 822 source = { 601 823 type = "gem"; 602 - sha256 = "14hbq573gl5x8zrcx5jz9d7m6rnn0vk8ypgn77hrhjh0wyxb0a7f"; 824 + sha256 = "0zncds3qj5n3i780y6y6sy5h1gg0kwiyiirxyisbd8p0ywwr8bc3"; 603 825 }; 604 826 dependencies = [ 605 827 "fog-brightbox" 606 828 "fog-core" 607 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" 608 839 "nokogiri" 840 + "opennebula" 609 841 ]; 610 842 }; 611 843 "fog-brightbox" = { 612 - version = "0.0.1"; 844 + version = "0.9.0"; 613 845 source = { 614 846 type = "gem"; 615 - sha256 = "0j1bpfa8in3h69habl46zmm1540w46348gd246bamrs5gi4zfqkk"; 847 + sha256 = "01a6ydv7y02zbid8s9mqcxpc0k0hig39ap7mrwj9vp6z7mm9dydv"; 616 848 }; 617 849 dependencies = [ 618 850 "fog-core" 619 851 "fog-json" 852 + "inflecto" 620 853 ]; 621 854 }; 622 855 "fog-core" = { 623 - version = "1.21.1"; 856 + version = "1.32.1"; 624 857 source = { 625 858 type = "gem"; 626 - sha256 = "1wcxilb537ibfl06r8h73ilj5xxvd18cc21nzwbh6fp2ip527q34"; 859 + sha256 = "0pnm3glgha2hxmhjvgp7f088vzdgv08q8c6w8y9c2cys3b4fx83m"; 627 860 }; 628 861 dependencies = [ 629 862 "builder" ··· 635 868 ]; 636 869 }; 637 870 "fog-json" = { 638 - version = "1.0.0"; 871 + version = "1.0.2"; 639 872 source = { 640 873 type = "gem"; 641 - sha256 = "1517sm8bl0bmaw2fbaf5ra6midq3wzgkpm55lb9rw6jm5ys23lyw"; 874 + sha256 = "0advkkdjajkym77r3c0bg2rlahl2akj0vl4p5r273k2qmi16n00r"; 642 875 }; 643 876 dependencies = [ 877 + "fog-core" 644 878 "multi_json" 645 879 ]; 646 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 + }; 647 971 "font-awesome-rails" = { 648 - version = "4.2.0.0"; 972 + version = "4.4.0.0"; 649 973 source = { 650 974 type = "gem"; 651 - sha256 = "1r6x34lswqcm6s6y5fvx34afsydpdly0123m75m1f5vx30l81jh0"; 975 + sha256 = "0igrwlkgpggpfdy3f4kzsz22m14rxx5xnvz3if16czqjlkq4kbbx"; 652 976 }; 653 977 dependencies = [ 654 978 "railties" 655 979 ]; 656 980 }; 657 981 "foreman" = { 658 - version = "0.63.0"; 982 + version = "0.78.0"; 659 983 source = { 660 984 type = "gem"; 661 - sha256 = "0yqyjix9jm4iwyc4f3wc32vxr28rpjcw1c9ni5brs4s2a24inzlk"; 985 + sha256 = "1caz8mi7gq1hs4l1flcyyw1iw1bdvdbhppsvy12akr01k3s17xaq"; 662 986 }; 663 987 dependencies = [ 664 - "dotenv" 665 988 "thor" 666 989 ]; 667 990 }; 668 991 "formatador" = { 669 - version = "0.2.4"; 992 + version = "0.2.5"; 670 993 source = { 671 994 type = "gem"; 672 - sha256 = "0pgmk1h6i6m3cslnfyjqld06a4c2xbbvmngxg2axddf39xwz6f12"; 995 + sha256 = "1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"; 673 996 }; 674 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 + }; 675 1009 "gemnasium-gitlab-service" = { 676 - version = "0.2.2"; 1010 + version = "0.2.6"; 677 1011 source = { 678 1012 type = "gem"; 679 - sha256 = "0a3jy2z1xkgxaqxhsclsfkn52iccdga5zznfk00s69gn0bpvdfc2"; 1013 + sha256 = "1qv7fkahmqkah3770ycrxd0x2ais4z41hb43a0r8q8wcdklns3m3"; 680 1014 }; 681 1015 dependencies = [ 682 1016 "rugged" 683 1017 ]; 684 1018 }; 685 - "gherkin-ruby" = { 686 - version = "0.3.1"; 1019 + "gemojione" = { 1020 + version = "2.0.1"; 687 1021 source = { 688 1022 type = "gem"; 689 - sha256 = "10plcj47ky078dvg78abf0asv29g6ba1zs9mgrza1161cxyj0mlq"; 1023 + sha256 = "0655l0vgs0hbz11s2nlpwwj7df66cxlvv94iz7mhf04qrr5mi26q"; 690 1024 }; 691 1025 dependencies = [ 692 - "racc" 1026 + "json" 693 1027 ]; 694 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 + }; 695 1043 "github-markup" = { 696 - version = "1.1.0"; 1044 + version = "1.3.3"; 697 1045 source = { 698 1046 type = "gem"; 699 - sha256 = "06zsljgavpkwafw32zx69xblhrhz1r2mjbhgpvn51c2qa0rmsd7g"; 1047 + sha256 = "01r901wcgn0gs0n9h684gs5n90y1vaj9lxnx4z5ig611jwa43ivq"; 700 1048 }; 701 1049 }; 702 1050 "gitlab-flowdock-git-hook" = { 703 - version = "0.4.2.2"; 1051 + version = "1.0.1"; 704 1052 source = { 705 1053 type = "gem"; 706 - sha256 = "0r6hwkzkcdv53ib9ispjs38njxmmca7kz8kj5mjadqvdwiak9nwv"; 1054 + sha256 = "1s3a10cdbh4xy732b92zcsm5zyc1lhi5v29d76j8mwbqmj11a2p8"; 707 1055 }; 708 1056 dependencies = [ 1057 + "flowdock" 709 1058 "gitlab-grit" 710 1059 "multi_json" 711 1060 ]; 712 1061 }; 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 1062 "gitlab-grit" = { 724 - version = "2.6.12"; 1063 + version = "2.7.3"; 725 1064 source = { 726 1065 type = "gem"; 727 - sha256 = "00yghwc3ggg34vdkz7v8mq27fc8h47kydahbqzaby5s0w70nx6c8"; 1066 + sha256 = "0nv8shx7w7fww8lf5a2rbvf7bq173rllm381m6x7g1i0qqc68q1b"; 728 1067 }; 729 1068 dependencies = [ 730 1069 "charlock_holmes" ··· 734 1073 ]; 735 1074 }; 736 1075 "gitlab-linguist" = { 737 - version = "3.0.0"; 1076 + version = "3.0.1"; 738 1077 source = { 739 1078 type = "gem"; 740 - sha256 = "0g2nv7lb33354nb8clwjrgxk09vr3wjn4rpyllmq6s01vx660lk6"; 1079 + sha256 = "14ydmxmdm7j56nwlcf4ai08mpc7d3mbfhida52p1zljshbvda5ib"; 741 1080 }; 742 1081 dependencies = [ 743 1082 "charlock_holmes" ··· 746 1085 ]; 747 1086 }; 748 1087 "gitlab_emoji" = { 749 - version = "0.0.1.1"; 1088 + version = "0.1.1"; 750 1089 source = { 751 1090 type = "gem"; 752 - sha256 = "0cqxhbq5c3mvkxbdcwcl4pa0cwlvnjsphs7hp2dz63h82ggwa3vn"; 1091 + sha256 = "13jj6ah88x8y6cr5c82j78a4mi5g88a7vpqf617zpcdiabmr0gl6"; 753 1092 }; 754 1093 dependencies = [ 755 - "emoji" 1094 + "gemojione" 756 1095 ]; 757 1096 }; 758 1097 "gitlab_git" = { 759 - version = "7.0.0.rc10"; 1098 + version = "7.2.15"; 760 1099 source = { 761 1100 type = "gem"; 762 - sha256 = "0kjljz76wh4344z05mv3wiad7qdf6nwaa0yl1jls1j0hk9i4bb4k"; 1101 + sha256 = "1afa645sj322sfy4h6hksi78m87qgvslmf8rgzlqsa4b6zf4w4x2"; 763 1102 }; 764 1103 dependencies = [ 765 1104 "activesupport" ··· 776 1115 }; 777 1116 }; 778 1117 "gitlab_omniauth-ldap" = { 779 - version = "1.1.0"; 1118 + version = "1.2.1"; 780 1119 source = { 781 1120 type = "gem"; 782 - sha256 = "0bpsh8z8fl03fwgz82wn53ibrc7714hmx16s5zxfbq1xk70r3pq7"; 1121 + sha256 = "1vbdyi57vvlrigyfhmqrnkw801x57fwa3gxvj1rj2bn9ig5186ri"; 783 1122 }; 784 1123 dependencies = [ 785 1124 "net-ldap" ··· 788 1127 "rubyntlm" 789 1128 ]; 790 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 + }; 791 1140 "gollum-lib" = { 792 - version = "3.0.0"; 1141 + version = "4.0.3"; 793 1142 source = { 794 1143 type = "gem"; 795 - sha256 = "18g74hl0zm285jszsk4414qvd106j0gkydg134my8hylwv59c23s"; 1144 + sha256 = "1f8jzxza1ckpyzyk137rqd212vfk2ac2mn1pp1wi880s4ynahyky"; 796 1145 }; 797 1146 dependencies = [ 798 1147 "github-markup" 799 - "gitlab-grit" 1148 + "gollum-grit_adapter" 800 1149 "nokogiri" 801 1150 "rouge" 802 1151 "sanitize" ··· 804 1153 ]; 805 1154 }; 806 1155 "gon" = { 807 - version = "5.0.1"; 1156 + version = "5.0.4"; 808 1157 source = { 809 1158 type = "gem"; 810 - sha256 = "19ga6y4375iakccg089f7789r9n87gh16cdmhaa0qsk1m1dx34zm"; 1159 + sha256 = "0gdl6zhj5k8ma3mwm00kjfa12w0l6br9kyyxvfj90cw9irfi049r"; 811 1160 }; 812 1161 dependencies = [ 813 1162 "actionpack" ··· 833 1182 ]; 834 1183 }; 835 1184 "grape-entity" = { 836 - version = "0.4.2"; 1185 + version = "0.4.8"; 837 1186 source = { 838 1187 type = "gem"; 839 - sha256 = "15vvpj7hw2n84glrvh5p3il8h3nnqg5gzgk6knavhamc7gj09g4k"; 1188 + sha256 = "0hxghs2p9ncvdwhp6dwr1a74g552c49dd0jzy0szp4pg2xjbgjk8"; 840 1189 }; 841 1190 dependencies = [ 842 1191 "activesupport" ··· 851 1200 }; 852 1201 }; 853 1202 "guard" = { 854 - version = "2.2.4"; 1203 + version = "2.13.0"; 855 1204 source = { 856 1205 type = "gem"; 857 - sha256 = "0z427rkcpzy82g21cgq7i5sn1vxn8hm8j4d78kj9vlaqgilcybhq"; 1206 + sha256 = "0p3ndfmi6sdw55c7j19pyb2ymlby1vyxlp0k47366im1vi70b7gf"; 858 1207 }; 859 1208 dependencies = [ 860 1209 "formatador" 861 1210 "listen" 862 1211 "lumberjack" 1212 + "nenv" 1213 + "notiffany" 863 1214 "pry" 1215 + "shellany" 864 1216 "thor" 865 1217 ]; 866 1218 }; 867 1219 "guard-rspec" = { 868 - version = "4.2.0"; 1220 + version = "4.2.10"; 869 1221 source = { 870 1222 type = "gem"; 871 - sha256 = "0n4159cw88y0va5v2yvhjphwlgwhqbc3mplj7p92irbj045xsc8n"; 1223 + sha256 = "1mm03i1knmhmdqs4ni03nda7jy3s34c2nxf5sjq1cmywk9c0bn0r"; 872 1224 }; 873 1225 dependencies = [ 874 1226 "guard" 875 1227 "rspec" 876 1228 ]; 877 1229 }; 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 1230 "haml" = { 890 - version = "4.0.5"; 1231 + version = "4.0.7"; 891 1232 source = { 892 1233 type = "gem"; 893 - sha256 = "1xmzb0k5q271090crzmv7dbw8ss4289bzxklrc0fhw6pw3kcvc85"; 1234 + sha256 = "0mrzjgkygvfii66bbylj2j93na8i89998yi01fin3whwqbvx0m1p"; 894 1235 }; 895 1236 dependencies = [ 896 1237 "tilt" ··· 916 1257 sha256 = "08w9ask37zh5w989b6igair3zf8gwllyzix97rlabxglif9f9qd9"; 917 1258 }; 918 1259 }; 1260 + "highline" = { 1261 + version = "1.6.21"; 1262 + source = { 1263 + type = "gem"; 1264 + sha256 = "06bml1fjsnrhd956wqq5k3w8cyd09rv1vixdpa3zzkl6xs72jdn1"; 1265 + }; 1266 + }; 919 1267 "hike" = { 920 1268 version = "1.2.3"; 921 1269 source = { ··· 924 1272 }; 925 1273 }; 926 1274 "hipchat" = { 927 - version = "0.14.0"; 1275 + version = "1.5.2"; 928 1276 source = { 929 1277 type = "gem"; 930 - sha256 = "1y3bi5aj21iay138027i8y9b022hpsfw54k7k31argp2gppc8y0n"; 1278 + sha256 = "0hgy5jav479vbzzk53lazhpjj094dcsqw6w1d6zjn52p72bwq60k"; 931 1279 }; 932 1280 dependencies = [ 933 1281 "httparty" 934 - "httparty" 1282 + "mimemagic" 935 1283 ]; 1284 + }; 1285 + "hitimes" = { 1286 + version = "1.2.3"; 1287 + source = { 1288 + type = "gem"; 1289 + sha256 = "1fr9raz7652bnnx09dllyjdlnwdxsnl0ig5hq9s4s8vackvmckv4"; 1290 + }; 936 1291 }; 937 1292 "html-pipeline" = { 938 1293 version = "1.11.0"; ··· 945 1300 "nokogiri" 946 1301 ]; 947 1302 }; 948 - "html-pipeline-gitlab" = { 949 - version = "0.1.5"; 1303 + "http-cookie" = { 1304 + version = "1.0.2"; 950 1305 source = { 951 1306 type = "gem"; 952 - sha256 = "1gih8j7sq45244v21z5rc19mi21achiy11l5sc8a4xfkvq5gldng"; 1307 + sha256 = "0cz2fdkngs3jc5w32a6xcl511hy03a7zdiy988jk1sf3bf5v3hdw"; 953 1308 }; 954 1309 dependencies = [ 955 - "actionpack" 956 - "gitlab_emoji" 957 - "html-pipeline" 958 - "sanitize" 1310 + "domain_name" 959 1311 ]; 960 1312 }; 961 1313 "http_parser.rb" = { ··· 966 1318 }; 967 1319 }; 968 1320 "httparty" = { 969 - version = "0.13.0"; 1321 + version = "0.13.5"; 970 1322 source = { 971 1323 type = "gem"; 972 - sha256 = "1qda6yhxwh1riddnib8knhqc0ja5h26i75kaxnywfldx9rkd32jw"; 1324 + sha256 = "1m93fbpwydzzwhc2zf2qkj6lrbcabpy7xhx7wb2mnbmgh0fs7ff9"; 973 1325 }; 974 1326 dependencies = [ 975 1327 "json" 976 1328 "multi_xml" 977 1329 ]; 978 1330 }; 979 - "httpauth" = { 980 - version = "0.2.1"; 1331 + "httpclient" = { 1332 + version = "2.6.0.1"; 981 1333 source = { 982 1334 type = "gem"; 983 - sha256 = "1ydlaf1nvs3g7b4xp9445m01qyjbwnbbh2f7gvialipyipj92j8d"; 1335 + sha256 = "0haz4s9xnzr73mkfpgabspj43bhfm9znmpmgdk74n6gih1xlrx1l"; 984 1336 }; 985 1337 }; 986 1338 "i18n" = { 987 - version = "0.6.11"; 1339 + version = "0.7.0"; 988 1340 source = { 989 1341 type = "gem"; 990 - sha256 = "0fwjlgmgry2blf8zlxn9c555cf4a16p287l599kz5104ncjxlzdk"; 1342 + sha256 = "1i5z1ykl8zhszsxcs8mzl8d0dxgs3ylz8qlzrw74jb0gplkx6758"; 1343 + }; 1344 + }; 1345 + "ice_cube" = { 1346 + version = "0.11.1"; 1347 + source = { 1348 + type = "gem"; 1349 + sha256 = "12y23nczfrgslpfqam90076x603xhlpv3fyh8mv49gks4qn2wk20"; 991 1350 }; 992 1351 }; 993 1352 "ice_nine" = { 994 - version = "0.10.0"; 1353 + version = "0.11.1"; 995 1354 source = { 996 1355 type = "gem"; 997 - sha256 = "0hjcn06xgrmpz3zyg0yirx6r7xb2m6akhn29p4yn4698ncw7b3qh"; 1356 + sha256 = "0i674zq0hl6rd0wcd12ni38linfja4k0y3mk5barjb4a6f7rcmkd"; 998 1357 }; 999 1358 }; 1000 - "jasmine" = { 1001 - version = "2.0.2"; 1359 + "inflecto" = { 1360 + version = "0.0.2"; 1002 1361 source = { 1003 1362 type = "gem"; 1004 - sha256 = "1v0z5a5m4np12m0lmf0vl63qdxbh6zxnxbnzx3xjwky723inqhir"; 1363 + sha256 = "085l5axmvqw59mw5jg454a3m3gr67ckq9405a075isdsn7bm3sp4"; 1005 1364 }; 1006 - dependencies = [ 1007 - "jasmine-core" 1008 - "phantomjs" 1009 - "rack" 1010 - "rake" 1011 - ]; 1012 1365 }; 1013 - "jasmine-core" = { 1014 - version = "2.0.0"; 1366 + "ipaddress" = { 1367 + version = "0.8.0"; 1015 1368 source = { 1016 1369 type = "gem"; 1017 - sha256 = "1frr9ndyrawag8c4rhd0yxl3318s5xwb3dqvz3i6z8nc936gwfzj"; 1370 + sha256 = "0cwy4pyd9nl2y2apazp3hvi12gccj5a3ify8mi8k3knvxi5wk2ir"; 1018 1371 }; 1019 1372 }; 1020 1373 "jquery-atwho-rails" = { 1021 - version = "0.3.3"; 1374 + version = "1.0.1"; 1022 1375 source = { 1023 1376 type = "gem"; 1024 - sha256 = "1f8w1kqy46s4qzfhlh08qb1l1czl6randcccxpknaw9pzf367fvs"; 1377 + sha256 = "0fdy4dxfvnzrjbfm45yrnwfczszvnd7psqhnkby0j3qjg8k9xhzw"; 1025 1378 }; 1026 1379 }; 1027 1380 "jquery-rails" = { 1028 - version = "3.1.0"; 1381 + version = "3.1.3"; 1029 1382 source = { 1030 1383 type = "gem"; 1031 - sha256 = "130a8gn67b2zn47yyqshf48d46na885v4g3mh2rrchd5ma1jy6cx"; 1384 + sha256 = "1n07rj1x7l61wygbjdpknv5nxhbg2iybfgkpdgca2kj6c1nb1d87"; 1032 1385 }; 1033 1386 dependencies = [ 1034 1387 "railties" ··· 1046 1399 ]; 1047 1400 }; 1048 1401 "jquery-turbolinks" = { 1049 - version = "2.0.1"; 1402 + version = "2.0.2"; 1050 1403 source = { 1051 1404 type = "gem"; 1052 - sha256 = "0d6av6cc0g8ym5zlkc8f00zxmnqchs95h7hqnrs2yrfz9nj856kd"; 1405 + sha256 = "1plip56znrkq3na5bjys5q2zvlbyj8p8i29kaayzfpi2c4ixxaq3"; 1053 1406 }; 1054 1407 dependencies = [ 1055 1408 "railties" ··· 1067 1420 ]; 1068 1421 }; 1069 1422 "json" = { 1070 - version = "1.8.1"; 1423 + version = "1.8.3"; 1071 1424 source = { 1072 1425 type = "gem"; 1073 - sha256 = "0002bsycvizvkmk1jyv8px1hskk6wrjfk4f7x5byi8gxm6zzn6wn"; 1426 + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; 1074 1427 }; 1075 1428 }; 1076 1429 "jwt" = { 1077 - version = "0.1.13"; 1430 + version = "1.5.1"; 1078 1431 source = { 1079 1432 type = "gem"; 1080 - sha256 = "03c8sy54nhvvb0ksphk15p5yfkd601ncs55k4h32hjqbm9vgnlsn"; 1433 + sha256 = "13b5ccknrmxnb6dk7vlmnb05za1xxyqd8dzb6lpqq503wpfrmlyk"; 1081 1434 }; 1082 - dependencies = [ 1083 - "multi_json" 1084 - ]; 1085 1435 }; 1086 1436 "kaminari" = { 1087 1437 version = "0.15.1"; ··· 1095 1445 ]; 1096 1446 }; 1097 1447 "kgio" = { 1098 - version = "2.8.1"; 1448 + version = "2.9.3"; 1099 1449 source = { 1100 1450 type = "gem"; 1101 - sha256 = "0vpw3nk35mh8mda4gn0qklq51znxxgv3852g6mxifi6hjwxrmrcj"; 1451 + sha256 = "07gl0drxwckj7kbq5nla2lf81lrrrvirvvdcrykjgivysfg6yp5v"; 1102 1452 }; 1103 1453 }; 1104 1454 "launchy" = { 1105 - version = "2.4.2"; 1455 + version = "2.4.3"; 1106 1456 source = { 1107 1457 type = "gem"; 1108 - sha256 = "0i1nmlrqpnk2q6f7iq85cqaa7b8fw4bmqm57w60g92lsfmszs8iv"; 1458 + sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; 1109 1459 }; 1110 1460 dependencies = [ 1111 1461 "addressable" ··· 1121 1471 "launchy" 1122 1472 ]; 1123 1473 }; 1124 - libv8 = { 1125 - version = "3.16.14.11"; 1126 - source = { 1127 - type = "gem"; 1128 - sha256 = "000vbiy78wk5r1f6p7qncab8ldg7qw5pjz7bchn3lw700gpaacxp"; 1129 - }; 1130 - }; 1131 1474 "listen" = { 1132 - version = "2.3.1"; 1475 + version = "2.10.1"; 1133 1476 source = { 1134 1477 type = "gem"; 1135 - sha256 = "081pv5nw79nl1251prh11v3ywghcmb660xm990rbp5bs6c3vcjam"; 1478 + sha256 = "1ipainbx21ni7xakdbksxjim6nixvzfjkifb2d3v45a50dp3diqg"; 1136 1479 }; 1137 1480 dependencies = [ 1138 1481 "celluloid" ··· 1141 1484 ]; 1142 1485 }; 1143 1486 "lumberjack" = { 1144 - version = "1.0.4"; 1487 + version = "1.0.9"; 1145 1488 source = { 1146 1489 type = "gem"; 1147 - sha256 = "1mj6m12hnmkvzl4w2yh04ak3z45pwksj6ra7v30za8snw9kg919d"; 1490 + sha256 = "162frm2bwy58pj8ccsdqa4a6i0csrhb9h5l3inhkl1ivgfc8814l"; 1148 1491 }; 1149 1492 }; 1493 + "macaddr" = { 1494 + version = "1.7.1"; 1495 + source = { 1496 + type = "gem"; 1497 + sha256 = "1clii8mvhmh5lmnm95ljnjygyiyhdpja85c5vy487rhxn52scn0b"; 1498 + }; 1499 + dependencies = [ 1500 + "systemu" 1501 + ]; 1502 + }; 1150 1503 "mail" = { 1151 - version = "2.5.4"; 1504 + version = "2.6.3"; 1152 1505 source = { 1153 1506 type = "gem"; 1154 - sha256 = "0z15ksb8blcppchv03g34844f7xgf36ckp484qjj2886ig1qara4"; 1507 + sha256 = "1nbg60h3cpnys45h7zydxwrl200p7ksvmrbxnwwbpaaf9vnf3znp"; 1155 1508 }; 1156 1509 dependencies = [ 1157 1510 "mime-types" 1158 - "treetop" 1159 1511 ]; 1512 + }; 1513 + "mail_room" = { 1514 + version = "0.5.2"; 1515 + source = { 1516 + type = "gem"; 1517 + sha256 = "1l8ncfwqiiv3nd7i0237xd5ymshgyfxfv4w2bj0lj67ys3l4qwh3"; 1518 + }; 1160 1519 }; 1161 1520 "method_source" = { 1162 1521 version = "0.8.2"; ··· 1172 1531 sha256 = "0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8"; 1173 1532 }; 1174 1533 }; 1534 + "mimemagic" = { 1535 + version = "0.3.0"; 1536 + source = { 1537 + type = "gem"; 1538 + sha256 = "101lq4bnjs7ywdcicpw3vbz9amg5gbb4va1626fybd2hawgdx8d9"; 1539 + }; 1540 + }; 1175 1541 "mini_portile" = { 1176 - version = "0.6.0"; 1542 + version = "0.6.2"; 1177 1543 source = { 1178 1544 type = "gem"; 1179 - sha256 = "09kcn4g63xrdirgwxgjikqg976rr723bkc9bxfr29pk22cj3wavn"; 1545 + sha256 = "0h3xinmacscrnkczq44s6pnhrp4nqma7k056x5wv5xixvf2wsq2w"; 1180 1546 }; 1181 1547 }; 1182 1548 "minitest" = { 1183 - version = "5.3.5"; 1549 + version = "5.7.0"; 1184 1550 source = { 1185 1551 type = "gem"; 1186 - sha256 = "18lkfjr0p26x5qxaficwlnhvjrf5bqwl244qdx4pvr5clrvv17xr"; 1552 + sha256 = "0rxqfakp629mp3vwda7zpgb57lcns5znkskikbfd0kriwv8i1vq8"; 1187 1553 }; 1188 1554 }; 1189 1555 "mousetrap-rails" = { ··· 1194 1560 }; 1195 1561 }; 1196 1562 "multi_json" = { 1197 - version = "1.10.1"; 1563 + version = "1.11.2"; 1198 1564 source = { 1199 1565 type = "gem"; 1200 - sha256 = "1ll21dz01jjiplr846n1c8yzb45kj5hcixgb72rz0zg8fyc9g61c"; 1566 + sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; 1201 1567 }; 1202 1568 }; 1203 1569 "multi_xml" = { ··· 1215 1581 }; 1216 1582 }; 1217 1583 "mysql2" = { 1218 - version = "0.3.16"; 1584 + version = "0.3.20"; 1219 1585 source = { 1220 1586 type = "gem"; 1221 - sha256 = "0ikg892bvyviqvxsyn0v6vj9ndhgdbc1339488n8y4s9zh35y71f"; 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"; 1222 1602 }; 1223 1603 }; 1224 1604 "net-ldap" = { 1225 - version = "0.7.0"; 1605 + version = "0.11"; 1226 1606 source = { 1227 1607 type = "gem"; 1228 - sha256 = "1d54cm02w8xi5nylss5b9vmzsscflcrbwg5qv1rp5frak4f397fk"; 1608 + sha256 = "1xfq94lmc5mcc5giipxn9bmrsm9ny1xc1rp0xpm2pgqwr2q8fm7w"; 1229 1609 }; 1230 1610 }; 1231 1611 "net-scp" = { 1232 - version = "1.1.2"; 1612 + version = "1.2.1"; 1233 1613 source = { 1234 1614 type = "gem"; 1235 - sha256 = "0xsr5gka2y14i5pa6h2lgkdzvmlviqq2qbmgaw76gdzrcf7q9n7k"; 1615 + sha256 = "0b0jqrcsp4bbi4n4mzyf70cp2ysyp6x07j8k8cqgxnvb4i3a134j"; 1236 1616 }; 1237 1617 dependencies = [ 1238 1618 "net-ssh" 1239 1619 ]; 1240 1620 }; 1241 1621 "net-ssh" = { 1242 - version = "2.8.0"; 1622 + version = "2.9.2"; 1623 + source = { 1624 + type = "gem"; 1625 + sha256 = "1p0bj41zrmw5lhnxlm1pqb55zfz9y4p9fkrr9a79nrdmzrk1ph8r"; 1626 + }; 1627 + }; 1628 + "netrc" = { 1629 + version = "0.10.3"; 1243 1630 source = { 1244 1631 type = "gem"; 1245 - sha256 = "0l89a01199ag77vvbm47fdpmx4fp2dk9jsvwvrsqryxqqhzwbxa2"; 1632 + sha256 = "1r6cmg1nvxspl24yrqn77vx7xjqigpypialblpcv5qj6xmc4b8lg"; 1246 1633 }; 1247 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 + }; 1248 1646 "newrelic_rpm" = { 1249 1647 version = "3.9.4.245"; 1250 1648 source = { ··· 1253 1651 }; 1254 1652 }; 1255 1653 "nokogiri" = { 1256 - version = "1.6.2.1"; 1654 + version = "1.6.6.2"; 1257 1655 source = { 1258 1656 type = "gem"; 1259 - sha256 = "0dj8ajm9hlfpa71qz1xn5prqy5qdi32ll74qh8ssjwknp1a35cnz"; 1657 + sha256 = "1j4qv32qjh67dcrc1yy1h8sqjnny8siyy4s44awla8d6jk361h30"; 1260 1658 }; 1261 1659 dependencies = [ 1262 1660 "mini_portile" 1263 1661 ]; 1264 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 + }; 1265 1674 "nprogress-rails" = { 1266 1675 version = "0.1.2.3"; 1267 1676 source = { ··· 1277 1686 }; 1278 1687 }; 1279 1688 "oauth2" = { 1280 - version = "0.8.1"; 1689 + version = "1.0.0"; 1281 1690 source = { 1282 1691 type = "gem"; 1283 - sha256 = "18gk2m42l4dmhiq394mmj1md2l5va5m236lkwy62pwk526lhi271"; 1692 + sha256 = "0zaa7qnvizv363apmxx9vxa8f6c6xy70z0jm0ydx38xvhxr8898r"; 1284 1693 }; 1285 1694 dependencies = [ 1286 1695 "faraday" 1287 - "httpauth" 1288 1696 "jwt" 1289 1697 "multi_json" 1698 + "multi_xml" 1290 1699 "rack" 1291 1700 ]; 1292 1701 }; 1702 + "octokit" = { 1703 + version = "3.7.1"; 1704 + source = { 1705 + type = "gem"; 1706 + sha256 = "1sd6cammv5m96640vdb8yp3kfpzn52s8y7d77dgsfb25bc1jg4xl"; 1707 + }; 1708 + dependencies = [ 1709 + "sawyer" 1710 + ]; 1711 + }; 1293 1712 "omniauth" = { 1294 - version = "1.1.4"; 1713 + version = "1.2.2"; 1295 1714 source = { 1296 1715 type = "gem"; 1297 - sha256 = "1ggg6nrlbpj67q59s5lyrpi6lnwv6wp3y7y5njbqr6y5y7d34wfl"; 1716 + sha256 = "1f0hd9ngfb6f8wz8h2r5n8lr99jqjaghn0h2mljdc6fw031ap7lk"; 1298 1717 }; 1299 1718 dependencies = [ 1300 1719 "hashie" 1301 1720 "rack" 1302 1721 ]; 1303 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 + }; 1304 1735 "omniauth-github" = { 1305 - version = "1.1.1"; 1736 + version = "1.1.2"; 1306 1737 source = { 1307 1738 type = "gem"; 1308 - sha256 = "1hnsindjhy4ihgjl96iwlf26vdv7v2cikagpqpkv25nc97mipd4l"; 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"; 1309 1751 }; 1310 1752 dependencies = [ 1311 1753 "omniauth" ··· 1313 1755 ]; 1314 1756 }; 1315 1757 "omniauth-google-oauth2" = { 1316 - version = "0.2.5"; 1758 + version = "0.2.6"; 1317 1759 source = { 1318 1760 type = "gem"; 1319 - sha256 = "1pgbc21y5kjna1ac2fwaaimv1a4a6wdpy6y5wmvrl6pr631s248w"; 1761 + sha256 = "1nba1iy6w2wj79pvnp9r5bw7jhks0287lw748vkxl9xmwccldnhj"; 1320 1762 }; 1321 1763 dependencies = [ 1322 1764 "omniauth" 1323 1765 "omniauth-oauth2" 1324 1766 ]; 1325 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 + }; 1326 1789 "omniauth-oauth" = { 1327 - version = "1.0.1"; 1790 + version = "1.1.0"; 1328 1791 source = { 1329 1792 type = "gem"; 1330 - sha256 = "0ng7zcsfx0hv4yqwj80y1yc6wh5511p07lihaf9j7a3bzqqgn6wz"; 1793 + sha256 = "1n5vk4by7hkyc09d9blrw2argry5awpw4gbw1l4n2s9b3j4qz037"; 1331 1794 }; 1332 1795 dependencies = [ 1333 1796 "oauth" ··· 1335 1798 ]; 1336 1799 }; 1337 1800 "omniauth-oauth2" = { 1338 - version = "1.1.1"; 1801 + version = "1.3.1"; 1339 1802 source = { 1340 1803 type = "gem"; 1341 - sha256 = "0s7bhlbz9clg1qxjrrcssyp5kxry1zp0lhsfgw735m7ap5vvmf3j"; 1804 + sha256 = "0mskwlw5ibx9mz7ywqji6mm56ikf7mglbnfc02qhg6ry527jsxdm"; 1342 1805 }; 1343 1806 dependencies = [ 1344 1807 "oauth2" 1345 1808 "omniauth" 1346 1809 ]; 1347 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 + }; 1348 1822 "omniauth-shibboleth" = { 1349 - version = "1.1.1"; 1823 + version = "1.1.2"; 1350 1824 source = { 1351 1825 type = "gem"; 1352 - sha256 = "0xljj8mpdbr243ddqcd3bmr2jc674lj9iv0v1z3rczg4q45jmadh"; 1826 + sha256 = "0wy24hwsipjx8iswdbrncgv15qxv7ibg07rv2n6byi037mrnhnhw"; 1353 1827 }; 1354 1828 dependencies = [ 1355 1829 "omniauth" ··· 1366 1840 "omniauth-oauth" 1367 1841 ]; 1368 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 + }; 1369 1867 "org-ruby" = { 1370 - version = "0.9.9"; 1868 + version = "0.9.12"; 1371 1869 source = { 1372 1870 type = "gem"; 1373 - sha256 = "1r978d8rsmln1jz44in6ll61ii84r81wb2mmic633h0agm62s9za"; 1871 + sha256 = "0x69s7aysfiwlcpd9hkvksfyld34d8kxr62adb59vjvh8hxfrjwk"; 1374 1872 }; 1375 1873 dependencies = [ 1376 1874 "rubypants" ··· 1383 1881 sha256 = "1fg9jpjlzf5y49qs9mlpdrgs5rpcyihq1s4k79nv9js0spjhnpda"; 1384 1882 }; 1385 1883 }; 1386 - "pg" = { 1387 - version = "0.15.1"; 1884 + "paranoia" = { 1885 + version = "2.1.3"; 1388 1886 source = { 1389 1887 type = "gem"; 1390 - sha256 = "1lwyb542avqfav3814n5b3pssyih1ghzchs58vyzh5061r02fs5s"; 1888 + sha256 = "1v6izkdf8npwcblzn9zl9ysagih75584d8hpjzhiv0ijz6cw3l92"; 1391 1889 }; 1890 + dependencies = [ 1891 + "activerecord" 1892 + ]; 1392 1893 }; 1393 - "phantomjs" = { 1394 - version = "1.9.2.0"; 1894 + "parser" = { 1895 + version = "2.2.2.6"; 1395 1896 source = { 1396 1897 type = "gem"; 1397 - sha256 = "0cvg8c9b85bhl00wg1fbkbr129sdxlh9gm61fqq3hal3c6sxbws2"; 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"; 1398 1909 }; 1399 1910 }; 1400 1911 "poltergeist" = { 1401 - version = "1.5.1"; 1912 + version = "1.6.0"; 1402 1913 source = { 1403 1914 type = "gem"; 1404 - sha256 = "08va59swiyvppb020xy6k9sqpnf5s6rjm1ycsbkv2abp37080ifv"; 1915 + sha256 = "0mpy2yhn0bhm2s78h8wy22j6378vvsdkj5pcvhr2zfhdjf46g41d"; 1405 1916 }; 1406 1917 dependencies = [ 1407 1918 "capybara" ··· 1410 1921 "websocket-driver" 1411 1922 ]; 1412 1923 }; 1413 - "polyglot" = { 1414 - version = "0.3.4"; 1924 + "posix-spawn" = { 1925 + version = "0.3.11"; 1415 1926 source = { 1416 1927 type = "gem"; 1417 - sha256 = "0jcnabyh7iirz78db1g713iyhshmw4j0nw7q6nbd67vfffgrsh05"; 1928 + sha256 = "052lnxbkvlnwfjw4qd7vn2xrlaaqiav6f5x5bcjin97bsrfq6cmr"; 1418 1929 }; 1419 1930 }; 1420 - "posix-spawn" = { 1421 - version = "0.3.9"; 1931 + "powerpack" = { 1932 + version = "0.0.9"; 1422 1933 source = { 1423 1934 type = "gem"; 1424 - sha256 = "042i1afggy1sv2jmdjjjhyffas28xp2r1ylj5xfv3hchy3b4civ3"; 1935 + sha256 = "0gflp6d2dc4jz3kgg8v4pdzm3qr2bbdygr83dbsi69pxm2gy5536"; 1425 1936 }; 1426 1937 }; 1427 1938 "pry" = { 1428 - version = "0.9.12.4"; 1939 + version = "0.10.1"; 1429 1940 source = { 1430 1941 type = "gem"; 1431 - sha256 = "0ndihrzirbfypf5pkqqcqhml6qpq66wbafkpc5jhjqjc6jc1llis"; 1942 + sha256 = "1j0r5fm0wvdwzbh6d6apnp7c0n150hpm9zxpm5xvcgfqr36jaj8z"; 1432 1943 }; 1433 1944 dependencies = [ 1434 1945 "coderay" ··· 1436 1947 "slop" 1437 1948 ]; 1438 1949 }; 1950 + "pry-rails" = { 1951 + version = "0.3.4"; 1952 + source = { 1953 + type = "gem"; 1954 + sha256 = "0a2iinvabis2xmv0z7z7jmh7bbkkngxj2qixfdg5m6qj9x8k1kx6"; 1955 + }; 1956 + dependencies = [ 1957 + "pry" 1958 + ]; 1959 + }; 1439 1960 "pyu-ruby-sasl" = { 1440 1961 version = "0.0.3.3"; 1441 1962 source = { ··· 1444 1965 }; 1445 1966 }; 1446 1967 "quiet_assets" = { 1447 - version = "1.0.2"; 1968 + version = "1.0.3"; 1448 1969 source = { 1449 1970 type = "gem"; 1450 - sha256 = "1a1gdaaglcpl583x9ma8la8cpls0lbc0l6qhv66dahia8ql8gg1z"; 1971 + sha256 = "1q4azw4j1xsgd7qwcig110mfdn1fm0y34y87zw9j9v187xr401b1"; 1451 1972 }; 1452 1973 dependencies = [ 1453 1974 "railties" 1454 1975 ]; 1455 1976 }; 1456 - "racc" = { 1457 - version = "1.4.10"; 1458 - source = { 1459 - type = "gem"; 1460 - sha256 = "10xm27dic2y8d53rw3yqw6jkdhrlgq11kbf5p8wiskiz28gzd0k2"; 1461 - }; 1462 - }; 1463 1977 "rack" = { 1464 - version = "1.5.2"; 1978 + version = "1.5.5"; 1465 1979 source = { 1466 1980 type = "gem"; 1467 - sha256 = "19szfw76cscrzjldvw30jp3461zl00w4xvw1x9lsmyp86h1g0jp6"; 1981 + sha256 = "1ds3gh8m5gy0d2k4g12k67qid7magg1ia186872yq22ham7sgr2a"; 1468 1982 }; 1469 1983 }; 1470 1984 "rack-accept" = { ··· 1478 1992 ]; 1479 1993 }; 1480 1994 "rack-attack" = { 1481 - version = "2.3.0"; 1995 + version = "4.3.0"; 1482 1996 source = { 1483 1997 type = "gem"; 1484 - sha256 = "177l9q3gi5lypcxs7141mw62cmg4l20i84dzhvhcfz2blp8fa47r"; 1998 + sha256 = "06v5xvp33aysf8hkl9lwl1yjkc82jdlvcm2361y7ckjgykf8ixfr"; 1485 1999 }; 1486 2000 dependencies = [ 1487 2001 "rack" ··· 1495 2009 }; 1496 2010 }; 1497 2011 "rack-mini-profiler" = { 1498 - version = "0.9.0"; 2012 + version = "0.9.7"; 1499 2013 source = { 1500 2014 type = "gem"; 1501 - sha256 = "0js0s422j7qqjbr3zay48hw82m3z7ddf3qvwcp2m8yz1g438fxqw"; 2015 + sha256 = "03lz6x1s8rbrccfsxl2rq677zqkmkvzv7whbmwzdp71zzyvvm14j"; 1502 2016 }; 1503 2017 dependencies = [ 1504 2018 "rack" ··· 1514 2028 "rack" 1515 2029 ]; 1516 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 + }; 1517 2045 "rack-protection" = { 1518 - version = "1.5.1"; 2046 + version = "1.5.3"; 1519 2047 source = { 1520 2048 type = "gem"; 1521 - sha256 = "0qxq5ld15nljxzdcx2wmbc3chw8nb6la1ap838vf263lnjcpx3dd"; 2049 + sha256 = "0cvb21zz7p9wy23wdav63z5qzfn4nialik22yqp6gihkgfqqrh5r"; 1522 2050 }; 1523 2051 dependencies = [ 1524 2052 "rack" 1525 2053 ]; 1526 2054 }; 1527 2055 "rack-test" = { 1528 - version = "0.6.2"; 2056 + version = "0.6.3"; 1529 2057 source = { 1530 2058 type = "gem"; 1531 - sha256 = "01mk715ab5qnqf6va8k3hjsvsmplrfqpz6g58qw4m3l8mim0p4ky"; 2059 + sha256 = "0h6x5jq24makgv2fq5qqgjlrk74dxfy62jif9blk43llw8ib2q7z"; 1532 2060 }; 1533 2061 dependencies = [ 1534 2062 "rack" 1535 2063 ]; 1536 2064 }; 1537 2065 "rails" = { 1538 - version = "4.1.1"; 2066 + version = "4.1.12"; 1539 2067 source = { 1540 2068 type = "gem"; 1541 - sha256 = "199agdsvidzk2g3zd50vkwnlr6gjk3s1qhligiik3rqr4ij7a8k0"; 2069 + sha256 = "0k2n6y92gmysk8y6j1hy6av53f07hhzkhw41qfqwr2hgqc6q8idv"; 1542 2070 }; 1543 2071 dependencies = [ 1544 2072 "actionmailer" ··· 1551 2079 "sprockets-rails" 1552 2080 ]; 1553 2081 }; 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"; 2082 + "rails-observers" = { 2083 + version = "0.1.2"; 1566 2084 source = { 1567 2085 type = "gem"; 1568 - sha256 = "14f6qwrzvk2dai56h32jg42z1h7hiphy6b01wwrnmzpwcgzp34w5"; 2086 + sha256 = "1lsw19jzmvipvrfy2z04hi7r29dvkfc43h43vs67x6lsj9rxwwcy"; 1569 2087 }; 1570 2088 dependencies = [ 1571 - "activesupport" 1572 - "awesome_print" 1573 - "code_analyzer" 1574 - "colored" 1575 - "erubis" 1576 - "i18n" 1577 - "require_all" 1578 - "ruby-progressbar" 2089 + "activemodel" 1579 2090 ]; 1580 2091 }; 1581 2092 "railties" = { 1582 - version = "4.1.1"; 2093 + version = "4.1.12"; 1583 2094 source = { 1584 2095 type = "gem"; 1585 - sha256 = "1rlfbwrcg1qzyv5972wjx3vj40i0k9vgn2zzqavgcha7smmpivqc"; 2096 + sha256 = "0v16grd6ip3ijiz1v36myiirqx9fx004lfvnsmh28b2ddjxcci4q"; 1586 2097 }; 1587 2098 dependencies = [ 1588 2099 "actionpack" ··· 1591 2102 "thor" 1592 2103 ]; 1593 2104 }; 2105 + "rainbow" = { 2106 + version = "2.0.0"; 2107 + source = { 2108 + type = "gem"; 2109 + sha256 = "0dsnzfjiih2w8npsjab3yx1ssmmvmgjkbxny0i9yzrdy7whfw7b4"; 2110 + }; 2111 + }; 1594 2112 "raindrops" = { 1595 - version = "0.12.0"; 2113 + version = "0.15.0"; 1596 2114 source = { 1597 2115 type = "gem"; 1598 - sha256 = "16k8gb6f6y368wqf7s8n0lcm8c2krkrpf3p2qixn7nfs2x0g4xr0"; 2116 + sha256 = "1hv0xhr762axywr937czi92fs0x3zk7k22vg6f4i7rr8d05sp560"; 1599 2117 }; 1600 2118 }; 1601 2119 "rake" = { 1602 - version = "10.3.2"; 2120 + version = "10.4.2"; 1603 2121 source = { 1604 2122 type = "gem"; 1605 - sha256 = "0nvpkjrpsk8xxnij2wd1cdn6arja9q11sxx4aq4fz18bc6fss15m"; 2123 + sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8"; 1606 2124 }; 1607 2125 }; 1608 2126 "raphael-rails" = { ··· 1613 2131 }; 1614 2132 }; 1615 2133 "rb-fsevent" = { 1616 - version = "0.9.3"; 2134 + version = "0.9.5"; 1617 2135 source = { 1618 2136 type = "gem"; 1619 - sha256 = "0bdnxwdxj4r1kdxfi5nszbsb126njrr81p912g64xxs2bgxd1bp1"; 2137 + sha256 = "1p4rz4qqarl7xg2aldpra54h81yal93cbxdy02lmb9kf6f7y2fz4"; 1620 2138 }; 1621 2139 }; 1622 2140 "rb-inotify" = { 1623 - version = "0.9.2"; 2141 + version = "0.9.5"; 1624 2142 source = { 1625 2143 type = "gem"; 1626 - sha256 = "0752fhgfrx370b2jnhxzs8sjv2l8yrnwqj337kx9v100igd1c7iv"; 2144 + sha256 = "0kddx2ia0qylw3r52nhg83irkaclvrncgy2m1ywpbhlhsz1rymb9"; 1627 2145 }; 1628 2146 dependencies = [ 1629 2147 "ffi" 1630 2148 ]; 1631 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 + }; 1632 2162 "rdoc" = { 1633 2163 version = "3.12.2"; 1634 2164 source = { ··· 1640 2170 ]; 1641 2171 }; 1642 2172 "redcarpet" = { 1643 - version = "3.1.2"; 2173 + version = "3.3.2"; 1644 2174 source = { 1645 2175 type = "gem"; 1646 - sha256 = "076p52lkns90hqs27rs4kns2bg7maz8qxr87bl34yd6in319flzz"; 2176 + sha256 = "1xf95nrc8jgv9hjzjnbf3ljwmp29rqxdamyj9crza2czl4k63rnm"; 1647 2177 }; 1648 2178 }; 1649 2179 "redis" = { 1650 - version = "3.0.6"; 2180 + version = "3.2.1"; 1651 2181 source = { 1652 2182 type = "gem"; 1653 - sha256 = "1ha2h422rvbf0wk96bp7k0ibl0jyg7v101jsj7z0r7pvzcx21j73"; 2183 + sha256 = "16jzlqp80qiqg5cdc9l144n6k3c5qj9if4pgij87sscn8ahi993k"; 1654 2184 }; 1655 2185 }; 1656 2186 "redis-actionpack" = { ··· 1666 2196 ]; 1667 2197 }; 1668 2198 "redis-activesupport" = { 1669 - version = "4.0.0"; 2199 + version = "4.1.1"; 1670 2200 source = { 1671 2201 type = "gem"; 1672 - sha256 = "18mlzjchj7sh1jm2icx2idf2hcir3agpd6i01q0gnf36f432v06d"; 2202 + sha256 = "1xciffiqbhksy534sysdd8pgn2hlvyrs1qb4x1kbcx9f3f83y551"; 1673 2203 }; 1674 2204 dependencies = [ 1675 2205 "activesupport" ··· 1677 2207 ]; 1678 2208 }; 1679 2209 "redis-namespace" = { 1680 - version = "1.4.1"; 2210 + version = "1.5.2"; 1681 2211 source = { 1682 2212 type = "gem"; 1683 - sha256 = "0fb6i98mhfxn26bqr5vdzhfjyda36cpaxh0dgxynp1y3m301khf7"; 2213 + sha256 = "0rp8gfkznfxqzxk9s976k71jnljkh0clkrhnp6vgx46s5yhj9g25"; 1684 2214 }; 1685 2215 dependencies = [ 1686 2216 "redis" ··· 1710 2240 ]; 1711 2241 }; 1712 2242 "redis-store" = { 1713 - version = "1.1.4"; 2243 + version = "1.1.6"; 1714 2244 source = { 1715 2245 type = "gem"; 1716 - sha256 = "0ja2h1rdyjga8bqb02w3sk3a1m78dsfg96b842s6mkkbpifpxd4z"; 2246 + sha256 = "1x8pfpd6c3xxb3l9nyggi9qpgxcp9k9rkdwwl80m95lhynwaxcds"; 1717 2247 }; 1718 2248 dependencies = [ 1719 2249 "redis" 1720 2250 ]; 1721 2251 }; 1722 - "ref" = { 1723 - version = "1.0.5"; 2252 + "request_store" = { 2253 + version = "1.2.0"; 1724 2254 source = { 1725 2255 type = "gem"; 1726 - sha256 = "19qgpsfszwc2sfh6wixgky5agn831qq8ap854i1jqqhy1zsci3la"; 2256 + sha256 = "1s7lk5klbg2qfh8hgqymjrlwgpmjmfx03x1hniq16shd1cjwch45"; 1727 2257 }; 1728 2258 }; 1729 - "request_store" = { 1730 - version = "1.0.5"; 2259 + "rerun" = { 2260 + version = "0.10.0"; 1731 2261 source = { 1732 2262 type = "gem"; 1733 - sha256 = "1ky19wb6mpq6dxb81a0h4hnzx7a4ka99n9ay2syi68djbr4bkbbh"; 2263 + sha256 = "0hsw0q0wriz4h55hkm9yd313hqixgsgnp4wrl8v4k4zwz41j76xk"; 1734 2264 }; 2265 + dependencies = [ 2266 + "listen" 2267 + ]; 1735 2268 }; 1736 - "require_all" = { 1737 - version = "1.3.2"; 2269 + "responders" = { 2270 + version = "1.1.2"; 1738 2271 source = { 1739 2272 type = "gem"; 1740 - sha256 = "16l08r6asr8nif6ah75w57i7y728132n8ns62rlrf78sh4lmfkhx"; 2273 + sha256 = "178279kf1kaah917r6zwzw5kk9swj28yxmg6aqffna7789kjhy3f"; 1741 2274 }; 2275 + dependencies = [ 2276 + "railties" 2277 + ]; 1742 2278 }; 1743 2279 "rest-client" = { 1744 - version = "1.6.7"; 2280 + version = "1.8.0"; 1745 2281 source = { 1746 2282 type = "gem"; 1747 - sha256 = "0nn7zalgidz2yj0iqh3xvzh626krm2al79dfiij19jdhp0rk8853"; 2283 + sha256 = "1m8z0c4yf6w47iqz6j2p7x1ip4qnnzvhdph9d5fgx081cvjly3p7"; 1748 2284 }; 1749 2285 dependencies = [ 2286 + "http-cookie" 1750 2287 "mime-types" 2288 + "netrc" 1751 2289 ]; 1752 2290 }; 1753 2291 "rinku" = { ··· 1757 2295 sha256 = "1jh6nys332brph55i6x6cil6swm086kxjw34wq131nl6mwryqp7b"; 1758 2296 }; 1759 2297 }; 2298 + "rotp" = { 2299 + version = "2.1.1"; 2300 + source = { 2301 + type = "gem"; 2302 + sha256 = "1nzsc9hfxijnyzjbv728ln9dm80bc608chaihjdk63i2wi4m529g"; 2303 + }; 2304 + }; 1760 2305 "rouge" = { 1761 - version = "1.3.3"; 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"; 1762 2324 source = { 1763 2325 type = "gem"; 1764 - sha256 = "0l82xyfdpir2hdm94dw8hy01ngghhas1jm8r3lp3kvyw6z7ph4ml"; 2326 + sha256 = "1i28rwmj24ssk91chn0g7qsnvn003y3s5a7jsrg3w4l5ckr841bg"; 1765 2327 }; 2328 + dependencies = [ 2329 + "rqrcode" 2330 + ]; 1766 2331 }; 1767 2332 "rspec" = { 1768 - version = "2.14.1"; 2333 + version = "3.3.0"; 1769 2334 source = { 1770 2335 type = "gem"; 1771 - sha256 = "134y4wzk1prninb5a0bhxgm30kqfzl8dg06af4js5ylnhv2wd7sg"; 2336 + sha256 = "1bn5zs71agc0zyns2r3c8myi5bxw3q7xnzp7f3v5b7hbil1qym4r"; 1772 2337 }; 1773 2338 dependencies = [ 1774 2339 "rspec-core" ··· 1777 2342 ]; 1778 2343 }; 1779 2344 "rspec-core" = { 1780 - version = "2.14.7"; 2345 + version = "3.3.2"; 1781 2346 source = { 1782 2347 type = "gem"; 1783 - sha256 = "0j23ca2hkf0ac708afvi5nxjn75g0mani6m17if52bjrxcgn4577"; 2348 + sha256 = "0xw5qi936j6nz9fixi2mwy03f406761cd72bzyvd61pr854d7hy1"; 1784 2349 }; 2350 + dependencies = [ 2351 + "rspec-support" 2352 + ]; 1785 2353 }; 1786 2354 "rspec-expectations" = { 1787 - version = "2.14.4"; 2355 + version = "3.3.1"; 1788 2356 source = { 1789 2357 type = "gem"; 1790 - sha256 = "0figi31xg100yc90p04n16p1n8q9nlnqyncyl0f34mks8bc4zdrw"; 2358 + sha256 = "1d0b5hpkxlr9f3xpsbhvl3irnk4smmycx2xnmc8qv3pqaa7mb7ah"; 1791 2359 }; 1792 2360 dependencies = [ 1793 2361 "diff-lcs" 2362 + "rspec-support" 1794 2363 ]; 1795 2364 }; 1796 2365 "rspec-mocks" = { 1797 - version = "2.14.4"; 2366 + version = "3.3.2"; 1798 2367 source = { 1799 2368 type = "gem"; 1800 - sha256 = "12vbv0firjkxlinxgg81j6qnwq8mmz48y4iv3ml9j411vqav4ig7"; 2369 + sha256 = "1lfbzscmpyixlbapxmhy2s69596vs1z00lv590l51hgdw70z92vg"; 1801 2370 }; 2371 + dependencies = [ 2372 + "diff-lcs" 2373 + "rspec-support" 2374 + ]; 1802 2375 }; 1803 2376 "rspec-rails" = { 1804 - version = "2.14.0"; 2377 + version = "3.3.3"; 1805 2378 source = { 1806 2379 type = "gem"; 1807 - sha256 = "1s9mszadqjmbcahyjgazygvkj8m7pzg7jpgx8m4wl0vxjxg3gr3f"; 2380 + sha256 = "0m66n9p3a7d3fmrzkbh8312prb6dhrgmp53g1amck308ranasv2a"; 1808 2381 }; 1809 2382 dependencies = [ 1810 2383 "actionpack" ··· 1813 2386 "rspec-core" 1814 2387 "rspec-expectations" 1815 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" 1816 2421 ]; 1817 2422 }; 1818 2423 "ruby-progressbar" = { 1819 - version = "1.2.0"; 2424 + version = "1.7.5"; 1820 2425 source = { 1821 2426 type = "gem"; 1822 - sha256 = "16vxr5n8q87gvdc2px4vzjkasiadzi0c18ynqc8x61352hl5f9ll"; 2427 + sha256 = "0hynaavnqzld17qdx9r7hfw00y16ybldwq730zrqfszjwgi59ivi"; 1823 2428 }; 1824 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 + }; 1825 2462 "rubyntlm" = { 1826 - version = "0.1.1"; 2463 + version = "0.5.2"; 1827 2464 source = { 1828 2465 type = "gem"; 1829 - sha256 = "0w48h3n8jzndqwmxxbj72j4gwma07f0x07ppsiv1qlygq2n9nyx0"; 2466 + sha256 = "04l8686hl0829x4acsnbz0licf8n6794p7shz8iyahin1jnqg3d7"; 1830 2467 }; 1831 2468 }; 1832 2469 "rubypants" = { ··· 1837 2474 }; 1838 2475 }; 1839 2476 "rugged" = { 1840 - version = "0.21.0"; 2477 + version = "0.22.2"; 1841 2478 source = { 1842 2479 type = "gem"; 1843 - sha256 = "0abmh5l1j7pp7vwq8vrqmgv07pc2wq0m97hm1sb0k0ghsx9yqdp5"; 2480 + sha256 = "179pnnvlsrwd96csmhwhy45y4f5p7qh3xcbg6v3hdv5m9qqcirpp"; 1844 2481 }; 1845 2482 }; 1846 2483 "safe_yaml" = { 1847 - version = "0.9.7"; 2484 + version = "1.0.4"; 1848 2485 source = { 1849 2486 type = "gem"; 1850 - sha256 = "0y34vpak8gim18rq02rgd144jsvk5is4xni16wm3shbhivzqb4hk"; 2487 + sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; 1851 2488 }; 1852 2489 }; 1853 2490 "sanitize" = { ··· 1868 2505 }; 1869 2506 }; 1870 2507 "sass-rails" = { 1871 - version = "4.0.3"; 2508 + version = "4.0.5"; 1872 2509 source = { 1873 2510 type = "gem"; 1874 - sha256 = "1j1f7zhn1ywkmgp5m1rdi7n404vd3j53wp9ngq9n7w33bzwnaxmm"; 2511 + sha256 = "1nw78ijbxpaf0pdr6c0jx63nna1l9m8s1mmb4m3g2clx0i0xm4wb"; 1875 2512 }; 1876 2513 dependencies = [ 1877 2514 "railties" ··· 1880 2517 "sprockets-rails" 1881 2518 ]; 1882 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 + }; 1883 2531 "sdoc" = { 1884 2532 version = "0.3.20"; 1885 2533 source = { ··· 1892 2540 ]; 1893 2541 }; 1894 2542 "seed-fu" = { 1895 - version = "2.3.1"; 2543 + version = "2.3.5"; 1896 2544 source = { 1897 2545 type = "gem"; 1898 - sha256 = "1nw1pic6nxbqfwakykamaxm2rgz699yzwf1y64ms4ijgazmwy2gb"; 2546 + sha256 = "11xja82yxir1kwccrzng29h7w911i9j0xj2y7y949yqnw91v12vw"; 1899 2547 }; 1900 2548 dependencies = [ 1901 2549 "activerecord" ··· 1903 2551 ]; 1904 2552 }; 1905 2553 "select2-rails" = { 1906 - version = "3.5.2"; 2554 + version = "3.5.9.3"; 1907 2555 source = { 1908 2556 type = "gem"; 1909 - sha256 = "0zlzkqr4xjd9k317wkw26m8nficp5cdf5ghl1h47ajgrj9pjvbnw"; 2557 + sha256 = "0ni2k74n73y3gv56gs37gkjlh912szjf6k9j483wz41m3xvlz7fj"; 1910 2558 }; 1911 2559 dependencies = [ 1912 2560 "thor" 1913 2561 ]; 1914 2562 }; 1915 - "semantic-ui-sass" = { 1916 - version = "0.16.1.0"; 2563 + "settingslogic" = { 2564 + version = "2.0.9"; 1917 2565 source = { 1918 2566 type = "gem"; 1919 - sha256 = "18bivcl0a1pzd0sdxlnpwfb6fdai52f94kwzx68ky818mk1zgaal"; 2567 + sha256 = "1ria5zcrk1nf0b9yia15mdpzw0dqr6wjpbj8dsdbbps81lfsj9ar"; 1920 2568 }; 1921 - dependencies = [ 1922 - "sass" 1923 - ]; 2569 + }; 2570 + "sexp_processor" = { 2571 + version = "4.6.0"; 2572 + source = { 2573 + type = "gem"; 2574 + sha256 = "0gxlcpg81wfjf5gpggf8h6l2dbq3ikgavbrr2yfw3m2vqy88yjg2"; 2575 + }; 1924 2576 }; 1925 - "settingslogic" = { 1926 - version = "2.0.9"; 2577 + "sham_rack" = { 2578 + version = "1.3.6"; 1927 2579 source = { 1928 2580 type = "gem"; 1929 - sha256 = "1ria5zcrk1nf0b9yia15mdpzw0dqr6wjpbj8dsdbbps81lfsj9ar"; 2581 + sha256 = "0zs6hpgg87x5jrykjxgfp2i7m5aja53s5kamdhxam16wki1hid3i"; 1930 2582 }; 2583 + dependencies = [ 2584 + "rack" 2585 + ]; 1931 2586 }; 1932 - "sexp_processor" = { 1933 - version = "4.4.0"; 2587 + "shellany" = { 2588 + version = "0.0.1"; 1934 2589 source = { 1935 2590 type = "gem"; 1936 - sha256 = "1rvbxsnjqy82mq0ah6jbmakhr18kfp47gls698pf3dcrvbdisnbi"; 2591 + sha256 = "1ryyzrj1kxmnpdzhlv4ys3dnl2r5r3d2rs2jwzbnd1v96a8pl4hf"; 1937 2592 }; 1938 2593 }; 1939 2594 "shoulda-matchers" = { 1940 - version = "2.1.0"; 2595 + version = "2.8.0"; 1941 2596 source = { 1942 2597 type = "gem"; 1943 - sha256 = "1ilz8hsc8n8snd1q6l54mkrcm1zgvc3bxdrhinldz9bh17hyhk6s"; 2598 + sha256 = "0d3ryqcsk1n9y35bx5wxnqbgw4m8b3c79isazdjnnbg8crdp72d0"; 1944 2599 }; 1945 2600 dependencies = [ 1946 2601 "activesupport" 1947 2602 ]; 1948 2603 }; 1949 2604 "sidekiq" = { 1950 - version = "2.17.0"; 2605 + version = "3.3.0"; 1951 2606 source = { 1952 2607 type = "gem"; 1953 - sha256 = "0lqcl5b3x1k9m78ry2yl1vq6b4schxwcywqkwzl7cw8w642pxic1"; 2608 + sha256 = "0xwy2n4jaja82gw11q1qsqc2jp7hp2asxhfr0gkfb58wj7k5y32l"; 1954 2609 }; 1955 2610 dependencies = [ 1956 2611 "celluloid" ··· 1960 2615 "redis-namespace" 1961 2616 ]; 1962 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 + }; 1963 2630 "simple_oauth" = { 1964 2631 version = "0.1.9"; 1965 2632 source = { ··· 1968 2635 }; 1969 2636 }; 1970 2637 "simplecov" = { 1971 - version = "0.9.0"; 2638 + version = "0.10.0"; 1972 2639 source = { 1973 2640 type = "gem"; 1974 - sha256 = "1dwyb1q6mn4cy76s9givrakf5x439jmvny46qpa0ywzkli95f82g"; 2641 + sha256 = "1q2iq2vgrdvvla5y907gkmqx6ry2qvnvc7a90hlcbwgp1w0sv6z4"; 1975 2642 }; 1976 2643 dependencies = [ 1977 2644 "docile" 1978 - "multi_json" 2645 + "json" 1979 2646 "simplecov-html" 1980 2647 ]; 1981 2648 }; 1982 2649 "simplecov-html" = { 1983 - version = "0.8.0"; 2650 + version = "0.10.0"; 1984 2651 source = { 1985 2652 type = "gem"; 1986 - sha256 = "0jhn3jql73x7hsr00wwv984iyrcg0xhf64s90zaqv2f26blkqfb9"; 2653 + sha256 = "1qni8g0xxglkx25w54qcfbi4wjkpvmb28cb7rj5zk3iqynjcdrqf"; 1987 2654 }; 1988 2655 }; 1989 2656 "sinatra" = { 1990 - version = "1.4.4"; 2657 + version = "1.4.6"; 1991 2658 source = { 1992 2659 type = "gem"; 1993 - sha256 = "12iy0f92d3zyk4759flgcracrbzc3x6cilpgdkzhzgjrsm9aa5hs"; 2660 + sha256 = "1hhmwqc81ram7lfwwziv0z70jh92sj1m7h7s9fr0cn2xq8mmn8l7"; 1994 2661 }; 1995 2662 dependencies = [ 1996 2663 "rack" ··· 2006 2673 }; 2007 2674 }; 2008 2675 "slack-notifier" = { 2009 - version = "0.3.2"; 2676 + version = "1.0.0"; 2010 2677 source = { 2011 2678 type = "gem"; 2012 - sha256 = "0126im7nm7qw03xgls5qmbldls94yjgv8fzhrnqy7140a51n65k4"; 2679 + sha256 = "0v4kd0l83shmk17qb35lighxjq9j7g3slnkrsyiy36kaqcfrjm97"; 2013 2680 }; 2014 2681 }; 2015 2682 "slim" = { 2016 - version = "2.0.2"; 2683 + version = "2.0.3"; 2017 2684 source = { 2018 2685 type = "gem"; 2019 - sha256 = "1sm78ai5xvqqh7zpv6c2c4iy2lakmrqfmmnyr5ha768vjxzzdk87"; 2686 + sha256 = "1z279vis4z2xsjzf568pxcl2gd1az760ij13d6qzx400mgn7nqxs"; 2020 2687 }; 2021 2688 dependencies = [ 2022 2689 "temple" ··· 2024 2691 ]; 2025 2692 }; 2026 2693 "slop" = { 2027 - version = "3.4.7"; 2694 + version = "3.6.0"; 2028 2695 source = { 2029 2696 type = "gem"; 2030 - sha256 = "1x3dwljqvkzj314rwn2bxgim9xvgwnfipzg5g0kwwxfn90fpv2sn"; 2697 + sha256 = "00w8g3j7k7kl8ri2cf1m58ckxk8rn350gp4chfscmgv6pq1spk3n"; 2031 2698 }; 2032 2699 }; 2033 2700 "spinach" = { 2034 - version = "0.8.7"; 2701 + version = "0.8.10"; 2035 2702 source = { 2036 2703 type = "gem"; 2037 - sha256 = "036zrwf31iq5fh2qgins51nh9756aqyz4almznq2p36yfylihdx4"; 2704 + sha256 = "0phfjs4iw2iqxdaljzwk6qxmi2x86pl3hirmpgw2pgfx76wfx688"; 2038 2705 }; 2039 2706 dependencies = [ 2040 2707 "colorize" 2041 2708 "gherkin-ruby" 2709 + "json" 2042 2710 ]; 2043 2711 }; 2044 2712 "spinach-rails" = { ··· 2054 2722 ]; 2055 2723 }; 2056 2724 "spring" = { 2057 - version = "1.1.3"; 2725 + version = "1.3.6"; 2058 2726 source = { 2059 2727 type = "gem"; 2060 - sha256 = "1ibj1d1490wys76ng4g7q8q2rglh37yqxkz2c3vv087cizr8ralj"; 2728 + sha256 = "0xvz2x6nvza5i53p7mddnf11j2wshqmbaphi6ngd6nar8v35y0k1"; 2061 2729 }; 2062 2730 }; 2063 2731 "spring-commands-rspec" = { 2064 - version = "1.0.1"; 2732 + version = "1.0.4"; 2065 2733 source = { 2066 2734 type = "gem"; 2067 - sha256 = "1z6ghbyndpaz9pm6mw97jpgc1zvz79y3ijidji3z4ygx98imxmv1"; 2735 + sha256 = "0b0svpq3md1pjz5drpa5pxwg8nk48wrshq8lckim4x3nli7ya0k2"; 2068 2736 }; 2069 2737 dependencies = [ 2070 2738 "spring" ··· 2080 2748 "spring" 2081 2749 ]; 2082 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 + }; 2083 2761 "sprockets" = { 2084 - version = "2.11.0"; 2762 + version = "2.12.4"; 2085 2763 source = { 2086 2764 type = "gem"; 2087 - sha256 = "082rrn7nsy18ky095zm6a9b4zfbikf60gaakplyqmkjclxk4lsmh"; 2765 + sha256 = "15818683yz27w4hgywccf27n91azy9a4nmb5qkklzb08k8jw9gp3"; 2088 2766 }; 2089 2767 dependencies = [ 2090 2768 "hike" ··· 2094 2772 ]; 2095 2773 }; 2096 2774 "sprockets-rails" = { 2097 - version = "2.1.3"; 2775 + version = "2.3.2"; 2098 2776 source = { 2099 2777 type = "gem"; 2100 - sha256 = "12kdy9vjn3ygrxhn9jxxx0rvsq601vayrkgbr3rqcpyhqhl4s4wy"; 2778 + sha256 = "1pk2a69cxirg2dkkpl5cr3fvrj1qgifw1fmpz1ggkcziwxajyg6d"; 2101 2779 }; 2102 2780 dependencies = [ 2103 2781 "actionpack" ··· 2120 2798 }; 2121 2799 }; 2122 2800 "stringex" = { 2123 - version = "2.5.1"; 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"; 2124 2826 source = { 2125 2827 type = "gem"; 2126 - sha256 = "178ppbdm70hzadrgq55q83c3hwv6b7wixacg9kk4v6cxnns5dmfv"; 2828 + sha256 = "0cprz18vgf0jgcggcxf4pwx8jcwbiyj1p0dnck5aavlvaxaic58s"; 2127 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 + ]; 2128 2843 }; 2129 2844 "temple" = { 2130 - version = "0.6.7"; 2845 + version = "0.6.10"; 2131 2846 source = { 2132 2847 type = "gem"; 2133 - sha256 = "09makksvllkzrm0vfb91xm46pq5qdp2c04cqid9i2immqcwz6x1k"; 2848 + sha256 = "1lzz4bisg97725m1q62jhmcxklfhky7g326d0b7p2q0kjx262q81"; 2134 2849 }; 2135 2850 }; 2136 2851 "term-ansicolor" = { 2137 - version = "1.2.2"; 2852 + version = "1.3.2"; 2138 2853 source = { 2139 2854 type = "gem"; 2140 - sha256 = "1b41q1q6mqcgzq9fhzhmjvfg5sfs5v7gkb8z57r4hajcp89lflxr"; 2855 + sha256 = "0ydbbyjmk5p7fsi55ffnkq79jnfqx65c3nj8d9rpgl6sw85ahyys"; 2141 2856 }; 2142 2857 dependencies = [ 2143 2858 "tins" 2144 2859 ]; 2145 2860 }; 2146 - "test_after_commit" = { 2147 - version = "0.2.2"; 2861 + "terminal-table" = { 2862 + version = "1.5.2"; 2148 2863 source = { 2149 2864 type = "gem"; 2150 - sha256 = "13zsag1lbkabwkaxbwhf06d4za5r4nb0fam95rqnx3yxnyshkq4b"; 2865 + sha256 = "1s6qyj9ir1agbbi32li9c0c34dcl0klyxqif6mxy0dbvq7kqfp8f"; 2151 2866 }; 2152 2867 }; 2153 - "therubyracer" = { 2154 - version = "0.12.0"; 2868 + "test_after_commit" = { 2869 + version = "0.2.7"; 2155 2870 source = { 2156 2871 type = "gem"; 2157 - sha256 = "185k2kvn2q9xznrij3swf9xp3d13h3hdc4w4ldhbrjkg7k1139q6"; 2872 + sha256 = "179dgdpsmn9lcxxkyrxxvmyj4x3xi9sdq80l3zfqcgprnbxavbp7"; 2158 2873 }; 2159 2874 dependencies = [ 2160 - "libv8" 2161 - "ref" 2875 + "activerecord" 2162 2876 ]; 2163 2877 }; 2164 2878 "thin" = { 2165 - version = "1.6.1"; 2879 + version = "1.6.3"; 2166 2880 source = { 2167 2881 type = "gem"; 2168 - sha256 = "065xsmjb7s0gfhx0zhh6wpjxvq26n6d7vq479df9llnk68b0xf50"; 2882 + sha256 = "1m56aygh5rh8ncp3s2gnn8ghn5ibkk0bg6s3clmh1vzaasw2lj4i"; 2169 2883 }; 2170 2884 dependencies = [ 2171 2885 "daemons" ··· 2181 2895 }; 2182 2896 }; 2183 2897 "thread_safe" = { 2184 - version = "0.3.4"; 2898 + version = "0.3.5"; 2185 2899 source = { 2186 2900 type = "gem"; 2187 - sha256 = "1cil2zcdzqkyr8zrwhlg7gywryg36j4mxlxw0h0x0j0wjym5nc8n"; 2901 + sha256 = "1hq46wqsyylx5afkp6jmcihdpv4ynzzq9ygb6z2pb1cbz5js0gcr"; 2188 2902 }; 2189 2903 }; 2190 2904 "tilt" = { ··· 2195 2909 }; 2196 2910 }; 2197 2911 "timers" = { 2198 - version = "1.1.0"; 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"; 2199 2923 source = { 2200 2924 type = "gem"; 2201 - sha256 = "0x3vnkxy3bg9f6v1nhkfqkajr19glrzkmqd5a1wy8hrylx8rdfrv"; 2925 + sha256 = "105vajc0jkqgcx1wbp0ad262sdry4l1irk7jpaawv8vzfjfqqf5b"; 2202 2926 }; 2203 2927 }; 2204 2928 "tinder" = { 2205 - version = "1.9.3"; 2929 + version = "1.9.4"; 2206 2930 source = { 2207 2931 type = "gem"; 2208 - sha256 = "0ixxyrlr1ynj9bki515byqg7j45vkvfm4s49n614whpdf8mgs1hb"; 2932 + sha256 = "0gl5kln3dgybgarksk2ly4y0wy2lljsh59idfllwzynap8hx9jar"; 2209 2933 }; 2210 2934 dependencies = [ 2211 2935 "eventmachine" ··· 2219 2943 ]; 2220 2944 }; 2221 2945 "tins" = { 2222 - version = "0.13.1"; 2946 + version = "1.6.0"; 2223 2947 source = { 2224 2948 type = "gem"; 2225 - sha256 = "0c7gqgj7z1frab4r9i8dbf111l3jyd44npraz8fdds1b8qvz4fy5"; 2949 + sha256 = "02qarvy17nbwvslfgqam8y6y7479cwmb1a6di9z18hzka4cf90hz"; 2226 2950 }; 2227 2951 }; 2228 - "treetop" = { 2229 - version = "1.4.15"; 2952 + "trollop" = { 2953 + version = "2.1.2"; 2230 2954 source = { 2231 2955 type = "gem"; 2232 - sha256 = "1zqj5y0mvfvyz11nhsb4d5ch0i0rfcyj64qx19mw4qhg3hh8z9pz"; 2956 + sha256 = "0415y63df86sqj43c0l82and65ia5h64if7n0znkbrmi6y0jwhl8"; 2233 2957 }; 2234 - dependencies = [ 2235 - "polyglot" 2236 - "polyglot" 2237 - ]; 2238 2958 }; 2239 2959 "turbolinks" = { 2240 - version = "2.0.0"; 2960 + version = "2.5.3"; 2241 2961 source = { 2242 2962 type = "gem"; 2243 - sha256 = "1zz8ff6v1chsv1clixapcmw1w62pqa1xlxlvlgxasvkscbqxhbyr"; 2963 + sha256 = "1ddrx25vvvqxlz4h59lrmjhc2bfwxf4bpicvyhgbpjd48ckj81jn"; 2244 2964 }; 2245 2965 dependencies = [ 2246 2966 "coffee-rails" ··· 2269 2989 ]; 2270 2990 }; 2271 2991 "uglifier" = { 2272 - version = "2.3.2"; 2992 + version = "2.3.3"; 2273 2993 source = { 2274 2994 type = "gem"; 2275 - sha256 = "1w5cc90wzs4jdpvfrhqjgf4gwsg517cwz15a31p4z7hxs412z52y"; 2995 + sha256 = "0v45v2hccmadxpqrlk8gj9sgyak4d6838014wizdvzkh8sy23nvr"; 2276 2996 }; 2277 2997 dependencies = [ 2278 2998 "execjs" ··· 2297 3017 ]; 2298 3018 }; 2299 3019 "unf_ext" = { 2300 - version = "0.0.6"; 3020 + version = "0.0.7.1"; 2301 3021 source = { 2302 3022 type = "gem"; 2303 - sha256 = "07zbmkzcid6pzdqgla3456ipfdka7j1v4hsx1iaa8rbnllqbmkdg"; 3023 + sha256 = "0ly2ms6c3irmbr1575ldyh52bz2v0lzzr2gagf0p526k12ld2n5b"; 2304 3024 }; 2305 3025 }; 2306 3026 "unicorn" = { 2307 - version = "4.6.3"; 3027 + version = "4.8.3"; 2308 3028 source = { 2309 3029 type = "gem"; 2310 - sha256 = "0rj9lwqwaklyk5vy0lqj4x7fcqb027j240waya5zvb14i8a142zx"; 3030 + sha256 = "1kpg2vikx2hxdyrl45bqcr89a0w59hfw7yn7xh87bmlczi34xds4"; 2311 3031 }; 2312 3032 dependencies = [ 2313 3033 "kgio" ··· 2316 3036 ]; 2317 3037 }; 2318 3038 "unicorn-worker-killer" = { 2319 - version = "0.4.2"; 3039 + version = "0.4.3"; 2320 3040 source = { 2321 3041 type = "gem"; 2322 - sha256 = "12y7lsqyfca9dxy387hfx4c3xjd22sj4b9xxrmdzcksighs1ja3d"; 3042 + sha256 = "0hhss1bwammh7nhplcj90455h79yq10c30npz4lpcsgw7vcpls00"; 2323 3043 }; 2324 3044 dependencies = [ 3045 + "get_process_mem" 2325 3046 "unicorn" 3047 + ]; 3048 + }; 3049 + "uuid" = { 3050 + version = "2.3.8"; 3051 + source = { 3052 + type = "gem"; 3053 + sha256 = "0gr2mxg27l380wpiy66mgv9wq02myj6m4gmp6c4g1vsbzkh0213v"; 3054 + }; 3055 + dependencies = [ 3056 + "macaddr" 2326 3057 ]; 2327 3058 }; 2328 3059 "version_sorter" = { 2329 - version = "1.1.0"; 3060 + version = "2.0.0"; 2330 3061 source = { 2331 3062 type = "gem"; 2332 - sha256 = "0wvqjkj0z5yi29f6907f1jzfszq8zgrq74mapmmi9csgvqkybsmf"; 3063 + sha256 = "1lad9c43w2xfzmva57ia6glpmhyivyk1m79jli42canshvan5v6y"; 2333 3064 }; 2334 3065 }; 2335 3066 "virtus" = { 2336 - version = "1.0.1"; 3067 + version = "1.0.5"; 2337 3068 source = { 2338 3069 type = "gem"; 2339 - sha256 = "19j4ssjxn4ag8i08v4andlz1rnhd2dwfxh2qn2a3hq3s6xjivn03"; 3070 + sha256 = "06iphwi3c4f7y9i2rvhvaizfswqbaflilziz4dxqngrdysgkn1fk"; 2340 3071 }; 2341 3072 dependencies = [ 2342 3073 "axiom-types" ··· 2356 3087 ]; 2357 3088 }; 2358 3089 "webmock" = { 2359 - version = "1.16.0"; 3090 + version = "1.21.0"; 2360 3091 source = { 2361 3092 type = "gem"; 2362 - sha256 = "1y2pm64qah6n9c203c90vlw8jkvbjv703y8qr2z6ikwblp8cxs49"; 3093 + sha256 = "1p7hqdxk5359xwp59pcx841fhbnqx01ra98rnwhdyz61nrc6piv3"; 2363 3094 }; 2364 3095 dependencies = [ 2365 3096 "addressable" ··· 2367 3098 ]; 2368 3099 }; 2369 3100 "websocket-driver" = { 2370 - version = "0.3.3"; 3101 + version = "0.6.2"; 2371 3102 source = { 2372 3103 type = "gem"; 2373 - sha256 = "0f3nx6yfd7q8xz78zfc3zbkj2rwfm4ri9viqjy1dmnkhwg0h96jf"; 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"; 2374 3115 }; 2375 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 + }; 2376 3128 "wikicloth" = { 2377 3129 version = "0.8.1"; 2378 3130 source = { ··· 2395 3147 "nokogiri" 2396 3148 ]; 2397 3149 }; 2398 - } 3150 + }
+26 -17
pkgs/applications/version-management/gitlab/remove-hardcoded-locations.patch
··· 1 1 diff --git a/config/environments/production.rb b/config/environments/production.rb 2 - index 78bf543..9b37122 100644 2 + index 3316ece..c34dec0 100644 3 3 --- a/config/environments/production.rb 4 4 +++ b/config/environments/production.rb 5 - @@ -66,10 +66,10 @@ Gitlab::Application.configure do 5 + @@ -67,10 +67,10 @@ Gitlab::Application.configure do 6 6 7 7 config.action_mailer.delivery_method = :sendmail 8 8 # Defaults to: ··· 18 18 config.action_mailer.raise_delivery_errors = true 19 19 20 20 diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example 21 - index e7a8d08..834ecaf 100644 21 + index 15930fc..bdb423c 100644 22 22 --- a/config/gitlab.yml.example 23 23 +++ b/config/gitlab.yml.example 24 - @@ -17,8 +17,8 @@ production: &base 24 + @@ -29,8 +29,8 @@ production: &base 25 25 ## GitLab settings 26 26 gitlab: 27 27 ## Web server settings (note: host is the FQDN, do not include http://) ··· 32 32 https: false # Set to true if using HTTPS, see installation.md#using-https for additional HTTPS configuration details 33 33 34 34 # Uncommment this line below if your ssh host is different from HTTP/HTTPS one 35 - @@ -31,11 +31,11 @@ production: &base 35 + @@ -43,7 +43,7 @@ production: &base 36 36 # relative_url_root: /gitlab 37 37 38 38 # Uncomment and customize if you can't use the default user to run GitLab (default: 'git') 39 39 - # user: git 40 40 + user: gitlab 41 41 42 - ## Email settings 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 43 47 # Email address used in the "From" field in mails sent by GitLab 44 48 - email_from: example@example.com 45 49 + email_from: <%= ENV['GITLAB_EMAIL_FROM'] %> 50 + email_display_name: GitLab 51 + email_reply_to: noreply@example.com 46 52 47 - # Email server smtp settings are in [a separate file](initializers/smtp_settings.rb.sample). 48 - 49 - @@ -230,12 +230,12 @@ production: &base 53 + @@ -298,12 +298,12 @@ production: &base 50 54 # GitLab Satellites 51 55 satellites: 52 56 # Relative paths are relative to Rails.root (default: tmp/repo_satellites/) ··· 58 62 backup: 59 63 - path: "tmp/backups" # Relative paths are relative to Rails.root (default: tmp/backups/) 60 64 + path: <%= ENV['GITLAB_BACKUP_PATH'] %> 65 + # archive_permissions: 0640 # Permissions for the resulting backup.tar file (default: 0600) 61 66 # 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 67 + # pg_schema: public # default: nil, it means that all schemas will be backed up 68 + @@ -322,15 +322,15 @@ production: &base 65 69 66 70 ## GitLab Shell settings 67 71 gitlab_shell: ··· 73 77 - hooks_path: /home/git/gitlab-shell/hooks/ 74 78 + repos_path: <%= ENV['GITLAB_REPOSITORIES_PATH'] %> 75 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'] %> 76 85 77 86 # Git over HTTP 78 87 upload_pack: true 79 - @@ -266,7 +266,7 @@ production: &base 88 + @@ -343,7 +343,7 @@ production: &base 80 89 # CAUTION! 81 90 # Use the default values unless you really know what you are doing 82 91 git: ··· 85 94 # The next value is the maximum memory size grit can use 86 95 # Given in number of bytes per git object (e.g. a commit) 87 96 # This value can be increased if you have very large commits 88 - @@ -299,7 +299,7 @@ test: 97 + @@ -388,7 +388,7 @@ test: 89 98 gravatar: 90 99 enabled: true 91 100 gitlab: ··· 95 104 96 105 # When you run tests we clone and setup gitlab-shell 97 106 diff --git a/lib/gitlab/app_logger.rb b/lib/gitlab/app_logger.rb 98 - index 8e4717b..abfe2e4 100644 107 + index dddcb25..d61f10a 100644 99 108 --- a/lib/gitlab/app_logger.rb 100 109 +++ b/lib/gitlab/app_logger.rb 101 110 @@ -1,7 +1,7 @@ 102 111 module Gitlab 103 112 class AppLogger < Gitlab::Logger 104 - def self.file_name 105 - - 'application.log' 113 + def self.file_name_noext 114 + - 'application' 106 115 + ENV["GITLAB_APPLICATION_LOG_PATH"] 107 116 end 108 117
+49 -2
pkgs/applications/video/kodi/plugins.nix
··· 1 - { stdenv, fetchFromGitHub, kodi, steam }: 1 + { stdenv, fetchFromGitHub, cmake, kodi, steam, libcec_platform, tinyxml }: 2 2 3 3 let 4 4 5 - pluginDir = "/lib/kodi/plugin"; 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 + }; 6 21 7 22 mkKodiPlugin = { plugin, namespace, version, src, meta, ... }: 8 23 stdenv.lib.makeOverridable stdenv.mkDerivation rec { ··· 134 149 propagatedBuildinputs = [ steam ]; 135 150 }; 136 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 + }; 137 184 }
+2 -2
pkgs/applications/video/kodi/wrapper.nix
··· 14 14 buildInputs = [ makeWrapper ]; 15 15 16 16 buildCommand = '' 17 - mkdir -p $out/share/kodi/addons/packages 17 + mkdir -p $out/share/kodi/addons 18 18 ${stdenv.lib.concatMapStrings 19 19 (plugin: "ln -s ${plugin.out 20 20 + plugin.kodiPlugin ··· 50 50 51 51 }; 52 52 53 - } 53 + }
+2 -1
pkgs/applications/virtualization/openstack/glance.nix
··· 23 23 # oslo componenets 24 24 oslo-config oslo-context oslo-concurrency oslo-service oslo-utils oslo-db 25 25 oslo-i18n oslo-log oslo-messaging oslo-middleware oslo-policy oslo-serialization 26 + MySQL_python 26 27 ]; 27 28 28 29 buildInputs = with pythonPackages; [ 29 30 Babel coverage fixtures mox3 mock oslosphinx requests2 testrepository pep8 30 - testresources testscenarios testtools psutil_1 oslotest psycopg2 MySQL_python 31 + testresources testscenarios testtools psutil_1 oslotest psycopg2 31 32 sqlite which strace 32 33 ]; 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 }: 1 + { stdenv, fetchurl, pythonPackages, xmlsec, which, dnsmasq }: 3 2 4 3 pythonPackages.buildPythonPackage rec { 5 4 name = "neutron-${version}"; ··· 29 28 ]; 30 29 31 30 # make sure we include migrations 32 - patchPhase = '' 31 + prePatch = '' 33 32 echo "graft neutron" >> MANIFEST.in 33 + substituteInPlace etc/neutron/rootwrap.d/dhcp.filters --replace "/sbin/dnsmasq" "${dnsmasq}/bin/dnsmasq" 34 34 ''; 35 + patches = [ ./neutron-iproute-4.patch ]; 35 36 36 37 buildInputs = with pythonPackages; [ 37 38 cliff coverage fixtures mock subunit requests-mock oslosphinx testrepository
+1 -1
pkgs/applications/virtualization/virt-manager/default.nix
··· 20 20 propagatedBuildInputs = 21 21 [ eventlet greenlet gflags netaddr carrot routes 22 22 PasteDeploy m2crypto ipy twisted sqlalchemy_migrate_0_7 23 - distutils_extra simplejson readline glance cheetah lockfile httplib2 23 + distutils_extra simplejson readline glanceclient cheetah lockfile httplib2 24 24 urlgrabber virtinst pyGtkGlade pythonDBus gnome_python pygobject3 25 25 libvirt libxml2Python ipaddr vte libosinfo gobjectIntrospection gtk3 mox 26 26 gtkvnc libvirt-glib glib gsettings_desktop_schemas gnome3.defaultIconTheme
+1 -1
pkgs/applications/virtualization/virtinst/default.nix
··· 15 15 pythonPath = with pythonPackages; 16 16 [ setuptools eventlet greenlet gflags netaddr sqlalchemy carrot routes 17 17 PasteDeploy m2crypto ipy twisted sqlalchemy_migrate 18 - distutils_extra simplejson readline glance cheetah lockfile httplib2 18 + distutils_extra simplejson readline glanceclient cheetah lockfile httplib2 19 19 # !!! should libvirt be a build-time dependency? Note that 20 20 # libxml2Python is a dependency of libvirt.py. 21 21 libvirt libxml2Python urlgrabber
+2 -1
pkgs/build-support/build-fhs-chrootenv/default.nix
··· 1 - { stdenv } : { env } : 1 + { stdenv } : { env, extraInstallCommands ? "" } : 2 2 3 3 let 4 4 # References to shell scripts that set up or tear down the environment ··· 43 43 -e "s|@name@|${name}|g" \ 44 44 ${destroySh} > destroy-${name}-chrootenv 45 45 chmod +x destroy-${name}-chrootenv 46 + ${extraInstallCommands} 46 47 ''; 47 48 }
+3 -1
pkgs/build-support/build-fhs-userenv/default.nix
··· 1 - { runCommand, lib, writeText, writeScriptBin, stdenv, ruby } : { env, runScript ? "bash", extraBindMounts ? [] } : 1 + { runCommand, lib, writeText, writeScriptBin, stdenv, ruby } : 2 + { env, runScript ? "bash", extraBindMounts ? [], extraInstallCommands ? "" } : 2 3 3 4 let 4 5 name = env.pname; ··· 44 45 exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init runScript} "\$(pwd)" "\$@" 45 46 EOF 46 47 chmod +x $out/bin/${name} 48 + ${extraInstallCommands} 47 49 ''
+6 -44
pkgs/build-support/fetchurl/mirrors.nix
··· 51 51 52 52 # GnuPG. 53 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/ 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/ 98 60 ]; 99 61 100 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 4 name = "ipafont-003.03"; 5 5 6 6 src = fetchurl { 7 - url = "http://ipafont.ipa.go.jp/ipafont/IPAfont00303.php"; 7 + url = "http://ipafont.ipa.go.jp/old/ipafont/IPAfont00303.php"; 8 8 sha256 = "f755ed79a4b8e715bed2f05a189172138aedf93db0f465b4e20c344a02766fe5"; 9 9 }; 10 10
+4 -2
pkgs/development/compilers/dmd/default.nix
··· 1 - { stdenv, fetchurl, unzip, curl }: 1 + { stdenv, fetchurl, unzip, curl, makeWrapper, gcc }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "dmd-2.067.1"; ··· 8 8 sha256 = "0ny99vfllvvgcl79pwisxcdnb3732i827k9zg8c0j4s0n79k5z94"; 9 9 }; 10 10 11 - buildInputs = [ unzip curl ]; 11 + buildInputs = [ unzip curl makeWrapper ]; 12 12 13 13 # Allow to use "clang++", commented in Makefile 14 14 postPatch = stdenv.lib.optionalString stdenv.isDarwin '' ··· 47 47 48 48 cp -r std $out/include/d2 49 49 cp -r etc $out/include/d2 50 + 51 + wrapProgram $out/bin/dmd --prefix PATH ":" "${gcc}/bin/" 50 52 51 53 cd $out/bin 52 54 tee dmd.conf << EOF
+3 -3
pkgs/development/coq-modules/flocq/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 5 5 name = "coq-flocq-${coq.coq-version}-${version}"; 6 - version = "2.4.0"; 6 + version = "2.5.0"; 7 7 8 8 src = fetchurl { 9 - url = https://gforge.inria.fr/frs/download.php/file/33979/flocq-2.4.0.tar.gz; 10 - sha256 = "020x4nkkrvndkvp5zwb9vads8a2jh603khcwrm40yhqldgfd8zlv"; 9 + url = https://gforge.inria.fr/frs/download.php/file/35091/flocq-2.5.0.tar.gz; 10 + sha256 = "0v3qiaz7vxfc5nk8rxwi39mik7hm7p5kb040q2pimb69qgfl6vml"; 11 11 }; 12 12 13 13 buildInputs = [ coq.ocaml coq.camlp5 bash which autoconf automake ];
+3 -3
pkgs/development/coq-modules/interval/default.nix
··· 1 1 { stdenv, fetchurl, which, coq, flocq, mathcomp }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "coq-interval-${coq.coq-version}-2.0.0"; 4 + name = "coq-interval-${coq.coq-version}-2.1.0"; 5 5 6 6 src = fetchurl { 7 - url = https://gforge.inria.fr/frs/download.php/file/34294/interval-2.0.0.tar.gz; 8 - sha256 = "0wx0z07nhx88hwl20icgb5w4mx6s5pn7mhzyx5jn8f7yl1m46ad2"; 7 + url = https://gforge.inria.fr/frs/download.php/file/35092/interval-2.1.0.tar.gz; 8 + sha256 = "02sn8mh85kxwn7681h2z6r7vnac9idh4ik3hbmr2yvixizakb70b"; 9 9 }; 10 10 11 11 nativeBuildInputs = [ which ];
-3
pkgs/development/haskell-modules/configuration-common.nix
··· 921 921 librarySystemDepends = (drv.librarySystemDepends or []) ++ [ pkgs.ncurses ]; 922 922 }); 923 923 924 - # https://github.com/fpco/stackage/issues/1004 925 - gtk2hs-buildtools = super.gtk2hs-buildtools.override { alex = self.alex_3_1_4; }; 926 - 927 924 # https://github.com/Gabriel439/Haskell-Morte-Library/issues/32 928 925 morte = super.morte.override { alex = self.alex_3_1_4; }; 929 926
+6
pkgs/development/haskell-modules/configuration-lts-0.0.nix
··· 1159 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1162 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 1164 "aeson-native" = dontDistribute super."aeson-native"; 1164 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 1371 "archnews" = dontDistribute super."archnews"; 1371 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1372 1374 "argon" = dontDistribute super."argon"; 1373 1375 "argparser" = dontDistribute super."argparser"; 1374 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2652 2654 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2653 2655 "digits" = dontDistribute super."digits"; 2654 2656 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2657 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2655 2658 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2656 2659 "dingo-core" = dontDistribute super."dingo-core"; 2657 2660 "dingo-example" = dontDistribute super."dingo-example"; ··· 2927 2930 "error-loc" = dontDistribute super."error-loc"; 2928 2931 "error-location" = dontDistribute super."error-location"; 2929 2932 "error-message" = dontDistribute super."error-message"; 2933 + "error-util" = dontDistribute super."error-util"; 2930 2934 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2931 2935 "errors" = doDistribute super."errors_1_4_7"; 2932 2936 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6258 6262 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6259 6263 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6260 6264 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6265 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6261 6266 "persistent-map" = dontDistribute super."persistent-map"; 6262 6267 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6263 6268 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6964 6969 "rspp" = dontDistribute super."rspp"; 6965 6970 "rss" = dontDistribute super."rss"; 6966 6971 "rss2irc" = dontDistribute super."rss2irc"; 6972 + "rtcm" = dontDistribute super."rtcm"; 6967 6973 "rtld" = dontDistribute super."rtld"; 6968 6974 "rtlsdr" = dontDistribute super."rtlsdr"; 6969 6975 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.1.nix
··· 1159 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1162 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 1164 "aeson-native" = dontDistribute super."aeson-native"; 1164 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 1371 "archnews" = dontDistribute super."archnews"; 1371 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1372 1374 "argon" = dontDistribute super."argon"; 1373 1375 "argparser" = dontDistribute super."argparser"; 1374 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2651 2653 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2652 2654 "digits" = dontDistribute super."digits"; 2653 2655 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2656 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2654 2657 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2655 2658 "dingo-core" = dontDistribute super."dingo-core"; 2656 2659 "dingo-example" = dontDistribute super."dingo-example"; ··· 2926 2929 "error-loc" = dontDistribute super."error-loc"; 2927 2930 "error-location" = dontDistribute super."error-location"; 2928 2931 "error-message" = dontDistribute super."error-message"; 2932 + "error-util" = dontDistribute super."error-util"; 2929 2933 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2930 2934 "errors" = doDistribute super."errors_1_4_7"; 2931 2935 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6257 6261 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6258 6262 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6259 6263 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6264 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6260 6265 "persistent-map" = dontDistribute super."persistent-map"; 6261 6266 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6262 6267 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6963 6968 "rspp" = dontDistribute super."rspp"; 6964 6969 "rss" = dontDistribute super."rss"; 6965 6970 "rss2irc" = dontDistribute super."rss2irc"; 6971 + "rtcm" = dontDistribute super."rtcm"; 6966 6972 "rtld" = dontDistribute super."rtld"; 6967 6973 "rtlsdr" = dontDistribute super."rtlsdr"; 6968 6974 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.2.nix
··· 1159 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1162 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 1164 "aeson-native" = dontDistribute super."aeson-native"; 1164 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 1371 "archnews" = dontDistribute super."archnews"; 1371 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1372 1374 "argon" = dontDistribute super."argon"; 1373 1375 "argparser" = dontDistribute super."argparser"; 1374 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2651 2653 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2652 2654 "digits" = dontDistribute super."digits"; 2653 2655 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2656 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2654 2657 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2655 2658 "dingo-core" = dontDistribute super."dingo-core"; 2656 2659 "dingo-example" = dontDistribute super."dingo-example"; ··· 2926 2929 "error-loc" = dontDistribute super."error-loc"; 2927 2930 "error-location" = dontDistribute super."error-location"; 2928 2931 "error-message" = dontDistribute super."error-message"; 2932 + "error-util" = dontDistribute super."error-util"; 2929 2933 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2930 2934 "errors" = doDistribute super."errors_1_4_7"; 2931 2935 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6257 6261 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6258 6262 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6259 6263 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6264 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6260 6265 "persistent-map" = dontDistribute super."persistent-map"; 6261 6266 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6262 6267 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6963 6968 "rspp" = dontDistribute super."rspp"; 6964 6969 "rss" = dontDistribute super."rss"; 6965 6970 "rss2irc" = dontDistribute super."rss2irc"; 6971 + "rtcm" = dontDistribute super."rtcm"; 6966 6972 "rtld" = dontDistribute super."rtld"; 6967 6973 "rtlsdr" = dontDistribute super."rtlsdr"; 6968 6974 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.3.nix
··· 1159 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1162 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 1164 "aeson-native" = dontDistribute super."aeson-native"; 1164 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 1371 "archnews" = dontDistribute super."archnews"; 1371 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1372 1374 "argon" = dontDistribute super."argon"; 1373 1375 "argparser" = dontDistribute super."argparser"; 1374 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2651 2653 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2652 2654 "digits" = dontDistribute super."digits"; 2653 2655 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2656 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2654 2657 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2655 2658 "dingo-core" = dontDistribute super."dingo-core"; 2656 2659 "dingo-example" = dontDistribute super."dingo-example"; ··· 2926 2929 "error-loc" = dontDistribute super."error-loc"; 2927 2930 "error-location" = dontDistribute super."error-location"; 2928 2931 "error-message" = dontDistribute super."error-message"; 2932 + "error-util" = dontDistribute super."error-util"; 2929 2933 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2930 2934 "errors" = doDistribute super."errors_1_4_7"; 2931 2935 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6257 6261 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6258 6262 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6259 6263 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6264 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6260 6265 "persistent-map" = dontDistribute super."persistent-map"; 6261 6266 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6262 6267 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6963 6968 "rspp" = dontDistribute super."rspp"; 6964 6969 "rss" = dontDistribute super."rss"; 6965 6970 "rss2irc" = dontDistribute super."rss2irc"; 6971 + "rtcm" = dontDistribute super."rtcm"; 6966 6972 "rtld" = dontDistribute super."rtld"; 6967 6973 "rtlsdr" = dontDistribute super."rtlsdr"; 6968 6974 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.4.nix
··· 1159 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1162 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 1164 "aeson-native" = dontDistribute super."aeson-native"; 1164 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 1371 "archnews" = dontDistribute super."archnews"; 1371 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1372 1374 "argon" = dontDistribute super."argon"; 1373 1375 "argparser" = dontDistribute super."argparser"; 1374 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2650 2652 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2651 2653 "digits" = dontDistribute super."digits"; 2652 2654 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2655 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2653 2656 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2654 2657 "dingo-core" = dontDistribute super."dingo-core"; 2655 2658 "dingo-example" = dontDistribute super."dingo-example"; ··· 2925 2928 "error-loc" = dontDistribute super."error-loc"; 2926 2929 "error-location" = dontDistribute super."error-location"; 2927 2930 "error-message" = dontDistribute super."error-message"; 2931 + "error-util" = dontDistribute super."error-util"; 2928 2932 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2929 2933 "errors" = doDistribute super."errors_1_4_7"; 2930 2934 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6254 6258 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6255 6259 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6256 6260 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6261 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6257 6262 "persistent-map" = dontDistribute super."persistent-map"; 6258 6263 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6259 6264 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6959 6964 "rspp" = dontDistribute super."rspp"; 6960 6965 "rss" = dontDistribute super."rss"; 6961 6966 "rss2irc" = dontDistribute super."rss2irc"; 6967 + "rtcm" = dontDistribute super."rtcm"; 6962 6968 "rtld" = dontDistribute super."rtld"; 6963 6969 "rtlsdr" = dontDistribute super."rtlsdr"; 6964 6970 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.5.nix
··· 1159 1159 "aeson-diff" = dontDistribute super."aeson-diff"; 1160 1160 "aeson-extra" = dontDistribute super."aeson-extra"; 1161 1161 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1162 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1162 1163 "aeson-lens" = dontDistribute super."aeson-lens"; 1163 1164 "aeson-native" = dontDistribute super."aeson-native"; 1164 1165 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1369 1370 "archlinux-web" = dontDistribute super."archlinux-web"; 1370 1371 "archnews" = dontDistribute super."archnews"; 1371 1372 "arff" = dontDistribute super."arff"; 1373 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1372 1374 "argon" = dontDistribute super."argon"; 1373 1375 "argparser" = dontDistribute super."argparser"; 1374 1376 "arguedit" = dontDistribute super."arguedit"; ··· 2650 2652 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2651 2653 "digits" = dontDistribute super."digits"; 2652 2654 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2655 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2653 2656 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2654 2657 "dingo-core" = dontDistribute super."dingo-core"; 2655 2658 "dingo-example" = dontDistribute super."dingo-example"; ··· 2925 2928 "error-loc" = dontDistribute super."error-loc"; 2926 2929 "error-location" = dontDistribute super."error-location"; 2927 2930 "error-message" = dontDistribute super."error-message"; 2931 + "error-util" = dontDistribute super."error-util"; 2928 2932 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2929 2933 "errors" = doDistribute super."errors_1_4_7"; 2930 2934 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6254 6258 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6255 6259 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6256 6260 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6261 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6257 6262 "persistent-map" = dontDistribute super."persistent-map"; 6258 6263 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6259 6264 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6959 6964 "rspp" = dontDistribute super."rspp"; 6960 6965 "rss" = dontDistribute super."rss"; 6961 6966 "rss2irc" = dontDistribute super."rss2irc"; 6967 + "rtcm" = dontDistribute super."rtcm"; 6962 6968 "rtld" = dontDistribute super."rtld"; 6963 6969 "rtlsdr" = dontDistribute super."rtlsdr"; 6964 6970 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.6.nix
··· 1158 1158 "aeson-diff" = dontDistribute super."aeson-diff"; 1159 1159 "aeson-extra" = dontDistribute super."aeson-extra"; 1160 1160 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1161 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1161 1162 "aeson-lens" = dontDistribute super."aeson-lens"; 1162 1163 "aeson-native" = dontDistribute super."aeson-native"; 1163 1164 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1368 1369 "archlinux-web" = dontDistribute super."archlinux-web"; 1369 1370 "archnews" = dontDistribute super."archnews"; 1370 1371 "arff" = dontDistribute super."arff"; 1372 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1371 1373 "argon" = dontDistribute super."argon"; 1372 1374 "argparser" = dontDistribute super."argparser"; 1373 1375 "arguedit" = dontDistribute super."arguedit"; ··· 2647 2649 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2648 2650 "digits" = dontDistribute super."digits"; 2649 2651 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2652 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2650 2653 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2651 2654 "dingo-core" = dontDistribute super."dingo-core"; 2652 2655 "dingo-example" = dontDistribute super."dingo-example"; ··· 2922 2925 "error-loc" = dontDistribute super."error-loc"; 2923 2926 "error-location" = dontDistribute super."error-location"; 2924 2927 "error-message" = dontDistribute super."error-message"; 2928 + "error-util" = dontDistribute super."error-util"; 2925 2929 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2926 2930 "errors" = doDistribute super."errors_1_4_7"; 2927 2931 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6249 6253 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6250 6254 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6251 6255 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6256 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6252 6257 "persistent-map" = dontDistribute super."persistent-map"; 6253 6258 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6254 6259 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6953 6958 "rspp" = dontDistribute super."rspp"; 6954 6959 "rss" = dontDistribute super."rss"; 6955 6960 "rss2irc" = dontDistribute super."rss2irc"; 6961 + "rtcm" = dontDistribute super."rtcm"; 6956 6962 "rtld" = dontDistribute super."rtld"; 6957 6963 "rtlsdr" = dontDistribute super."rtlsdr"; 6958 6964 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-0.7.nix
··· 1158 1158 "aeson-diff" = dontDistribute super."aeson-diff"; 1159 1159 "aeson-extra" = dontDistribute super."aeson-extra"; 1160 1160 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1161 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1161 1162 "aeson-lens" = dontDistribute super."aeson-lens"; 1162 1163 "aeson-native" = dontDistribute super."aeson-native"; 1163 1164 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1368 1369 "archlinux-web" = dontDistribute super."archlinux-web"; 1369 1370 "archnews" = dontDistribute super."archnews"; 1370 1371 "arff" = dontDistribute super."arff"; 1372 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1371 1373 "argon" = dontDistribute super."argon"; 1372 1374 "argparser" = dontDistribute super."argparser"; 1373 1375 "arguedit" = dontDistribute super."arguedit"; ··· 2647 2649 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2648 2650 "digits" = dontDistribute super."digits"; 2649 2651 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2652 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2650 2653 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2651 2654 "dingo-core" = dontDistribute super."dingo-core"; 2652 2655 "dingo-example" = dontDistribute super."dingo-example"; ··· 2922 2925 "error-loc" = dontDistribute super."error-loc"; 2923 2926 "error-location" = dontDistribute super."error-location"; 2924 2927 "error-message" = dontDistribute super."error-message"; 2928 + "error-util" = dontDistribute super."error-util"; 2925 2929 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2926 2930 "errors" = doDistribute super."errors_1_4_7"; 2927 2931 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6249 6253 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6250 6254 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6251 6255 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6256 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6252 6257 "persistent-map" = dontDistribute super."persistent-map"; 6253 6258 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6254 6259 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6953 6958 "rspp" = dontDistribute super."rspp"; 6954 6959 "rss" = dontDistribute super."rss"; 6955 6960 "rss2irc" = dontDistribute super."rss2irc"; 6961 + "rtcm" = dontDistribute super."rtcm"; 6956 6962 "rtld" = dontDistribute super."rtld"; 6957 6963 "rtlsdr" = dontDistribute super."rtlsdr"; 6958 6964 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.0.nix
··· 1154 1154 "aeson-diff" = dontDistribute super."aeson-diff"; 1155 1155 "aeson-extra" = dontDistribute super."aeson-extra"; 1156 1156 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1157 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 1158 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 1159 "aeson-native" = dontDistribute super."aeson-native"; 1159 1160 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 1365 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 1366 "archnews" = dontDistribute super."archnews"; 1366 1367 "arff" = dontDistribute super."arff"; 1368 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1367 1369 "argon" = dontDistribute super."argon"; 1368 1370 "argparser" = dontDistribute super."argparser"; 1369 1371 "arguedit" = dontDistribute super."arguedit"; ··· 2638 2640 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2639 2641 "digits" = dontDistribute super."digits"; 2640 2642 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2643 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2641 2644 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2642 2645 "dingo-core" = dontDistribute super."dingo-core"; 2643 2646 "dingo-example" = dontDistribute super."dingo-example"; ··· 2911 2914 "error-loc" = dontDistribute super."error-loc"; 2912 2915 "error-location" = dontDistribute super."error-location"; 2913 2916 "error-message" = dontDistribute super."error-message"; 2917 + "error-util" = dontDistribute super."error-util"; 2914 2918 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2915 2919 "errors" = doDistribute super."errors_1_4_7"; 2916 2920 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6236 6240 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6237 6241 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6238 6242 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6243 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6239 6244 "persistent-map" = dontDistribute super."persistent-map"; 6240 6245 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2"; 6241 6246 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2"; ··· 6938 6943 "rspp" = dontDistribute super."rspp"; 6939 6944 "rss" = dontDistribute super."rss"; 6940 6945 "rss2irc" = dontDistribute super."rss2irc"; 6946 + "rtcm" = dontDistribute super."rtcm"; 6941 6947 "rtld" = dontDistribute super."rtld"; 6942 6948 "rtlsdr" = dontDistribute super."rtlsdr"; 6943 6949 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.1.nix
··· 1154 1154 "aeson-diff" = dontDistribute super."aeson-diff"; 1155 1155 "aeson-extra" = dontDistribute super."aeson-extra"; 1156 1156 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1157 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 1158 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 1159 "aeson-native" = dontDistribute super."aeson-native"; 1159 1160 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 1365 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 1366 "archnews" = dontDistribute super."archnews"; 1366 1367 "arff" = dontDistribute super."arff"; 1368 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1367 1369 "argon" = dontDistribute super."argon"; 1368 1370 "argparser" = dontDistribute super."argparser"; 1369 1371 "arguedit" = dontDistribute super."arguedit"; ··· 2635 2637 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2636 2638 "digits" = dontDistribute super."digits"; 2637 2639 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2640 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2638 2641 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2639 2642 "dingo-core" = dontDistribute super."dingo-core"; 2640 2643 "dingo-example" = dontDistribute super."dingo-example"; ··· 2907 2910 "error-loc" = dontDistribute super."error-loc"; 2908 2911 "error-location" = dontDistribute super."error-location"; 2909 2912 "error-message" = dontDistribute super."error-message"; 2913 + "error-util" = dontDistribute super."error-util"; 2910 2914 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2911 2915 "errors" = doDistribute super."errors_1_4_7"; 2912 2916 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6227 6231 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6228 6232 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6229 6233 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6234 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6230 6235 "persistent-map" = dontDistribute super."persistent-map"; 6231 6236 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6232 6237 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6929 6934 "rspp" = dontDistribute super."rspp"; 6930 6935 "rss" = dontDistribute super."rss"; 6931 6936 "rss2irc" = dontDistribute super."rss2irc"; 6937 + "rtcm" = dontDistribute super."rtcm"; 6932 6938 "rtld" = dontDistribute super."rtld"; 6933 6939 "rtlsdr" = dontDistribute super."rtlsdr"; 6934 6940 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.10.nix
··· 1153 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1156 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 1158 "aeson-native" = dontDistribute super."aeson-native"; 1158 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 1365 "archnews" = dontDistribute super."archnews"; 1365 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1366 1368 "argon" = dontDistribute super."argon"; 1367 1369 "argparser" = dontDistribute super."argparser"; 1368 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2629 2631 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2630 2632 "digits" = dontDistribute super."digits"; 2631 2633 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2634 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2632 2635 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2633 2636 "dingo-core" = dontDistribute super."dingo-core"; 2634 2637 "dingo-example" = dontDistribute super."dingo-example"; ··· 2901 2904 "error-loc" = dontDistribute super."error-loc"; 2902 2905 "error-location" = dontDistribute super."error-location"; 2903 2906 "error-message" = dontDistribute super."error-message"; 2907 + "error-util" = dontDistribute super."error-util"; 2904 2908 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2905 2909 "errors" = doDistribute super."errors_1_4_7"; 2906 2910 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6200 6204 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6201 6205 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6202 6206 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6207 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6203 6208 "persistent-map" = dontDistribute super."persistent-map"; 6204 6209 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6205 6210 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6899 6904 "rspp" = dontDistribute super."rspp"; 6900 6905 "rss" = dontDistribute super."rss"; 6901 6906 "rss2irc" = dontDistribute super."rss2irc"; 6907 + "rtcm" = dontDistribute super."rtcm"; 6902 6908 "rtld" = dontDistribute super."rtld"; 6903 6909 "rtlsdr" = dontDistribute super."rtlsdr"; 6904 6910 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.11.nix
··· 1153 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1156 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 1158 "aeson-native" = dontDistribute super."aeson-native"; 1158 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 1365 "archnews" = dontDistribute super."archnews"; 1365 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1366 1368 "argon" = dontDistribute super."argon"; 1367 1369 "argparser" = dontDistribute super."argparser"; 1368 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2629 2631 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2630 2632 "digits" = dontDistribute super."digits"; 2631 2633 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2634 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2632 2635 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2633 2636 "dingo-core" = dontDistribute super."dingo-core"; 2634 2637 "dingo-example" = dontDistribute super."dingo-example"; ··· 2901 2904 "error-loc" = dontDistribute super."error-loc"; 2902 2905 "error-location" = dontDistribute super."error-location"; 2903 2906 "error-message" = dontDistribute super."error-message"; 2907 + "error-util" = dontDistribute super."error-util"; 2904 2908 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2905 2909 "errors" = doDistribute super."errors_1_4_7"; 2906 2910 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6196 6200 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6197 6201 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6198 6202 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6203 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6199 6204 "persistent-map" = dontDistribute super."persistent-map"; 6200 6205 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6201 6206 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6895 6900 "rspp" = dontDistribute super."rspp"; 6896 6901 "rss" = dontDistribute super."rss"; 6897 6902 "rss2irc" = dontDistribute super."rss2irc"; 6903 + "rtcm" = dontDistribute super."rtcm"; 6898 6904 "rtld" = dontDistribute super."rtld"; 6899 6905 "rtlsdr" = dontDistribute super."rtlsdr"; 6900 6906 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.12.nix
··· 1153 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1156 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 1158 "aeson-native" = dontDistribute super."aeson-native"; 1158 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 1365 "archnews" = dontDistribute super."archnews"; 1365 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1366 1368 "argon" = dontDistribute super."argon"; 1367 1369 "argparser" = dontDistribute super."argparser"; 1368 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2629 2631 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2630 2632 "digits" = dontDistribute super."digits"; 2631 2633 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2634 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2632 2635 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2633 2636 "dingo-core" = dontDistribute super."dingo-core"; 2634 2637 "dingo-example" = dontDistribute super."dingo-example"; ··· 2901 2904 "error-loc" = dontDistribute super."error-loc"; 2902 2905 "error-location" = dontDistribute super."error-location"; 2903 2906 "error-message" = dontDistribute super."error-message"; 2907 + "error-util" = dontDistribute super."error-util"; 2904 2908 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2905 2909 "errors" = doDistribute super."errors_1_4_7"; 2906 2910 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6195 6199 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6196 6200 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6197 6201 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6202 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6198 6203 "persistent-map" = dontDistribute super."persistent-map"; 6199 6204 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6200 6205 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6894 6899 "rspp" = dontDistribute super."rspp"; 6895 6900 "rss" = dontDistribute super."rss"; 6896 6901 "rss2irc" = dontDistribute super."rss2irc"; 6902 + "rtcm" = dontDistribute super."rtcm"; 6897 6903 "rtld" = dontDistribute super."rtld"; 6898 6904 "rtlsdr" = dontDistribute super."rtlsdr"; 6899 6905 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.13.nix
··· 1153 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1156 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 1158 "aeson-native" = dontDistribute super."aeson-native"; 1158 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 1365 "archnews" = dontDistribute super."archnews"; 1365 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1366 1368 "argon" = dontDistribute super."argon"; 1367 1369 "argparser" = dontDistribute super."argparser"; 1368 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2628 2630 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2629 2631 "digits" = dontDistribute super."digits"; 2630 2632 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2633 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2631 2634 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2632 2635 "dingo-core" = dontDistribute super."dingo-core"; 2633 2636 "dingo-example" = dontDistribute super."dingo-example"; ··· 2900 2903 "error-loc" = dontDistribute super."error-loc"; 2901 2904 "error-location" = dontDistribute super."error-location"; 2902 2905 "error-message" = dontDistribute super."error-message"; 2906 + "error-util" = dontDistribute super."error-util"; 2903 2907 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2904 2908 "errors" = doDistribute super."errors_1_4_7"; 2905 2909 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6193 6197 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6194 6198 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6195 6199 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6200 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6196 6201 "persistent-map" = dontDistribute super."persistent-map"; 6197 6202 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6198 6203 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6892 6897 "rspp" = dontDistribute super."rspp"; 6893 6898 "rss" = dontDistribute super."rss"; 6894 6899 "rss2irc" = dontDistribute super."rss2irc"; 6900 + "rtcm" = dontDistribute super."rtcm"; 6895 6901 "rtld" = dontDistribute super."rtld"; 6896 6902 "rtlsdr" = dontDistribute super."rtlsdr"; 6897 6903 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.14.nix
··· 1152 1152 "aeson-diff" = dontDistribute super."aeson-diff"; 1153 1153 "aeson-extra" = dontDistribute super."aeson-extra"; 1154 1154 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1155 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1155 1156 "aeson-lens" = dontDistribute super."aeson-lens"; 1156 1157 "aeson-native" = dontDistribute super."aeson-native"; 1157 1158 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1362 1363 "archlinux-web" = dontDistribute super."archlinux-web"; 1363 1364 "archnews" = dontDistribute super."archnews"; 1364 1365 "arff" = dontDistribute super."arff"; 1366 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1365 1367 "argon" = dontDistribute super."argon"; 1366 1368 "argparser" = dontDistribute super."argparser"; 1367 1369 "arguedit" = dontDistribute super."arguedit"; ··· 2625 2627 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2626 2628 "digits" = dontDistribute super."digits"; 2627 2629 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2630 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2628 2631 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2629 2632 "dingo-core" = dontDistribute super."dingo-core"; 2630 2633 "dingo-example" = dontDistribute super."dingo-example"; ··· 2897 2900 "error-loc" = dontDistribute super."error-loc"; 2898 2901 "error-location" = dontDistribute super."error-location"; 2899 2902 "error-message" = dontDistribute super."error-message"; 2903 + "error-util" = dontDistribute super."error-util"; 2900 2904 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2901 2905 "errors" = doDistribute super."errors_1_4_7"; 2902 2906 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6186 6190 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6187 6191 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6188 6192 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6193 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6189 6194 "persistent-map" = dontDistribute super."persistent-map"; 6190 6195 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6191 6196 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6884 6889 "rspp" = dontDistribute super."rspp"; 6885 6890 "rss" = dontDistribute super."rss"; 6886 6891 "rss2irc" = dontDistribute super."rss2irc"; 6892 + "rtcm" = dontDistribute super."rtcm"; 6887 6893 "rtld" = dontDistribute super."rtld"; 6888 6894 "rtlsdr" = dontDistribute super."rtlsdr"; 6889 6895 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.15.nix
··· 1151 1151 "aeson-diff" = dontDistribute super."aeson-diff"; 1152 1152 "aeson-extra" = dontDistribute super."aeson-extra"; 1153 1153 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1154 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1154 1155 "aeson-lens" = dontDistribute super."aeson-lens"; 1155 1156 "aeson-native" = dontDistribute super."aeson-native"; 1156 1157 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1361 1362 "archlinux-web" = dontDistribute super."archlinux-web"; 1362 1363 "archnews" = dontDistribute super."archnews"; 1363 1364 "arff" = dontDistribute super."arff"; 1365 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1364 1366 "argon" = dontDistribute super."argon"; 1365 1367 "argparser" = dontDistribute super."argparser"; 1366 1368 "arguedit" = dontDistribute super."arguedit"; ··· 2621 2623 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2622 2624 "digits" = dontDistribute super."digits"; 2623 2625 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2626 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2624 2627 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2625 2628 "dingo-core" = dontDistribute super."dingo-core"; 2626 2629 "dingo-example" = dontDistribute super."dingo-example"; ··· 2892 2895 "error-loc" = dontDistribute super."error-loc"; 2893 2896 "error-location" = dontDistribute super."error-location"; 2894 2897 "error-message" = dontDistribute super."error-message"; 2898 + "error-util" = dontDistribute super."error-util"; 2895 2899 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2896 2900 "errors" = doDistribute super."errors_1_4_7"; 2897 2901 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6179 6183 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6180 6184 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6181 6185 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6186 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6182 6187 "persistent-map" = dontDistribute super."persistent-map"; 6183 6188 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6184 6189 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6875 6880 "rspp" = dontDistribute super."rspp"; 6876 6881 "rss" = dontDistribute super."rss"; 6877 6882 "rss2irc" = dontDistribute super."rss2irc"; 6883 + "rtcm" = dontDistribute super."rtcm"; 6878 6884 "rtld" = dontDistribute super."rtld"; 6879 6885 "rtlsdr" = dontDistribute super."rtlsdr"; 6880 6886 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.2.nix
··· 1154 1154 "aeson-diff" = dontDistribute super."aeson-diff"; 1155 1155 "aeson-extra" = dontDistribute super."aeson-extra"; 1156 1156 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1157 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1157 1158 "aeson-lens" = dontDistribute super."aeson-lens"; 1158 1159 "aeson-native" = dontDistribute super."aeson-native"; 1159 1160 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1364 1365 "archlinux-web" = dontDistribute super."archlinux-web"; 1365 1366 "archnews" = dontDistribute super."archnews"; 1366 1367 "arff" = dontDistribute super."arff"; 1368 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1367 1369 "argon" = dontDistribute super."argon"; 1368 1370 "argparser" = dontDistribute super."argparser"; 1369 1371 "arguedit" = dontDistribute super."arguedit"; ··· 2633 2635 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2634 2636 "digits" = dontDistribute super."digits"; 2635 2637 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2638 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2636 2639 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2637 2640 "dingo-core" = dontDistribute super."dingo-core"; 2638 2641 "dingo-example" = dontDistribute super."dingo-example"; ··· 2905 2908 "error-loc" = dontDistribute super."error-loc"; 2906 2909 "error-location" = dontDistribute super."error-location"; 2907 2910 "error-message" = dontDistribute super."error-message"; 2911 + "error-util" = dontDistribute super."error-util"; 2908 2912 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2909 2913 "errors" = doDistribute super."errors_1_4_7"; 2910 2914 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6223 6227 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6224 6228 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6225 6229 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6230 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6226 6231 "persistent-map" = dontDistribute super."persistent-map"; 6227 6232 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6228 6233 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6924 6929 "rspp" = dontDistribute super."rspp"; 6925 6930 "rss" = dontDistribute super."rss"; 6926 6931 "rss2irc" = dontDistribute super."rss2irc"; 6932 + "rtcm" = dontDistribute super."rtcm"; 6927 6933 "rtld" = dontDistribute super."rtld"; 6928 6934 "rtlsdr" = dontDistribute super."rtlsdr"; 6929 6935 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.4.nix
··· 1153 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1156 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 1158 "aeson-native" = dontDistribute super."aeson-native"; 1158 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 1365 "archnews" = dontDistribute super."archnews"; 1365 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1366 1368 "argon" = dontDistribute super."argon"; 1367 1369 "argparser" = dontDistribute super."argparser"; 1368 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2632 2634 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2633 2635 "digits" = dontDistribute super."digits"; 2634 2636 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2637 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2635 2638 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2636 2639 "dingo-core" = dontDistribute super."dingo-core"; 2637 2640 "dingo-example" = dontDistribute super."dingo-example"; ··· 2904 2907 "error-loc" = dontDistribute super."error-loc"; 2905 2908 "error-location" = dontDistribute super."error-location"; 2906 2909 "error-message" = dontDistribute super."error-message"; 2910 + "error-util" = dontDistribute super."error-util"; 2907 2911 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2908 2912 "errors" = doDistribute super."errors_1_4_7"; 2909 2913 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6219 6223 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6220 6224 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6221 6225 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6226 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6222 6227 "persistent-map" = dontDistribute super."persistent-map"; 6223 6228 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6224 6229 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6919 6924 "rspp" = dontDistribute super."rspp"; 6920 6925 "rss" = dontDistribute super."rss"; 6921 6926 "rss2irc" = dontDistribute super."rss2irc"; 6927 + "rtcm" = dontDistribute super."rtcm"; 6922 6928 "rtld" = dontDistribute super."rtld"; 6923 6929 "rtlsdr" = dontDistribute super."rtlsdr"; 6924 6930 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.5.nix
··· 1153 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1156 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 1158 "aeson-native" = dontDistribute super."aeson-native"; 1158 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 1365 "archnews" = dontDistribute super."archnews"; 1365 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1366 1368 "argon" = dontDistribute super."argon"; 1367 1369 "argparser" = dontDistribute super."argparser"; 1368 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2631 2633 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 2634 "digits" = dontDistribute super."digits"; 2633 2635 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2636 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2634 2637 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2635 2638 "dingo-core" = dontDistribute super."dingo-core"; 2636 2639 "dingo-example" = dontDistribute super."dingo-example"; ··· 2903 2906 "error-loc" = dontDistribute super."error-loc"; 2904 2907 "error-location" = dontDistribute super."error-location"; 2905 2908 "error-message" = dontDistribute super."error-message"; 2909 + "error-util" = dontDistribute super."error-util"; 2906 2910 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2907 2911 "errors" = doDistribute super."errors_1_4_7"; 2908 2912 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6217 6221 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6218 6222 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6219 6223 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6224 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6220 6225 "persistent-map" = dontDistribute super."persistent-map"; 6221 6226 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6222 6227 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6917 6922 "rspp" = dontDistribute super."rspp"; 6918 6923 "rss" = dontDistribute super."rss"; 6919 6924 "rss2irc" = dontDistribute super."rss2irc"; 6925 + "rtcm" = dontDistribute super."rtcm"; 6920 6926 "rtld" = dontDistribute super."rtld"; 6921 6927 "rtlsdr" = dontDistribute super."rtlsdr"; 6922 6928 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.7.nix
··· 1153 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1156 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 1158 "aeson-native" = dontDistribute super."aeson-native"; 1158 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 1365 "archnews" = dontDistribute super."archnews"; 1365 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1366 1368 "argon" = dontDistribute super."argon"; 1367 1369 "argparser" = dontDistribute super."argparser"; 1368 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2631 2633 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 2634 "digits" = dontDistribute super."digits"; 2633 2635 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2636 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2634 2637 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2635 2638 "dingo-core" = dontDistribute super."dingo-core"; 2636 2639 "dingo-example" = dontDistribute super."dingo-example"; ··· 2903 2906 "error-loc" = dontDistribute super."error-loc"; 2904 2907 "error-location" = dontDistribute super."error-location"; 2905 2908 "error-message" = dontDistribute super."error-message"; 2909 + "error-util" = dontDistribute super."error-util"; 2906 2910 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2907 2911 "errors" = doDistribute super."errors_1_4_7"; 2908 2912 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6211 6215 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6212 6216 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6213 6217 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6218 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6214 6219 "persistent-map" = dontDistribute super."persistent-map"; 6215 6220 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6216 6221 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6911 6916 "rspp" = dontDistribute super."rspp"; 6912 6917 "rss" = dontDistribute super."rss"; 6913 6918 "rss2irc" = dontDistribute super."rss2irc"; 6919 + "rtcm" = dontDistribute super."rtcm"; 6914 6920 "rtld" = dontDistribute super."rtld"; 6915 6921 "rtlsdr" = dontDistribute super."rtlsdr"; 6916 6922 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.8.nix
··· 1153 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1156 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 1158 "aeson-native" = dontDistribute super."aeson-native"; 1158 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 1365 "archnews" = dontDistribute super."archnews"; 1365 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1366 1368 "argon" = dontDistribute super."argon"; 1367 1369 "argparser" = dontDistribute super."argparser"; 1368 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2631 2633 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 2634 "digits" = dontDistribute super."digits"; 2633 2635 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2636 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2634 2637 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2635 2638 "dingo-core" = dontDistribute super."dingo-core"; 2636 2639 "dingo-example" = dontDistribute super."dingo-example"; ··· 2903 2906 "error-loc" = dontDistribute super."error-loc"; 2904 2907 "error-location" = dontDistribute super."error-location"; 2905 2908 "error-message" = dontDistribute super."error-message"; 2909 + "error-util" = dontDistribute super."error-util"; 2906 2910 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2907 2911 "errors" = doDistribute super."errors_1_4_7"; 2908 2912 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6206 6210 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6207 6211 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6208 6212 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6213 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6209 6214 "persistent-map" = dontDistribute super."persistent-map"; 6210 6215 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6211 6216 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6906 6911 "rspp" = dontDistribute super."rspp"; 6907 6912 "rss" = dontDistribute super."rss"; 6908 6913 "rss2irc" = dontDistribute super."rss2irc"; 6914 + "rtcm" = dontDistribute super."rtcm"; 6909 6915 "rtld" = dontDistribute super."rtld"; 6910 6916 "rtlsdr" = dontDistribute super."rtlsdr"; 6911 6917 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-1.9.nix
··· 1153 1153 "aeson-diff" = dontDistribute super."aeson-diff"; 1154 1154 "aeson-extra" = dontDistribute super."aeson-extra"; 1155 1155 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1156 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1156 1157 "aeson-lens" = dontDistribute super."aeson-lens"; 1157 1158 "aeson-native" = dontDistribute super."aeson-native"; 1158 1159 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1363 1364 "archlinux-web" = dontDistribute super."archlinux-web"; 1364 1365 "archnews" = dontDistribute super."archnews"; 1365 1366 "arff" = dontDistribute super."arff"; 1367 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1366 1368 "argon" = dontDistribute super."argon"; 1367 1369 "argparser" = dontDistribute super."argparser"; 1368 1370 "arguedit" = dontDistribute super."arguedit"; ··· 2631 2633 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2632 2634 "digits" = dontDistribute super."digits"; 2633 2635 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2636 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2634 2637 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2635 2638 "dingo-core" = dontDistribute super."dingo-core"; 2636 2639 "dingo-example" = dontDistribute super."dingo-example"; ··· 2903 2906 "error-loc" = dontDistribute super."error-loc"; 2904 2907 "error-location" = dontDistribute super."error-location"; 2905 2908 "error-message" = dontDistribute super."error-message"; 2909 + "error-util" = dontDistribute super."error-util"; 2906 2910 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_1_0"; 2907 2911 "errors" = doDistribute super."errors_1_4_7"; 2908 2912 "ersatz" = doDistribute super."ersatz_0_2_6_1"; ··· 6203 6207 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6204 6208 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6205 6209 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6210 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6206 6211 "persistent-map" = dontDistribute super."persistent-map"; 6207 6212 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6208 6213 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_2_1"; ··· 6903 6908 "rspp" = dontDistribute super."rspp"; 6904 6909 "rss" = dontDistribute super."rss"; 6905 6910 "rss2irc" = dontDistribute super."rss2irc"; 6911 + "rtcm" = dontDistribute super."rtcm"; 6906 6912 "rtld" = dontDistribute super."rtld"; 6907 6913 "rtlsdr" = dontDistribute super."rtlsdr"; 6908 6914 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.0.nix
··· 1142 1142 "aeson-diff" = dontDistribute super."aeson-diff"; 1143 1143 "aeson-extra" = dontDistribute super."aeson-extra"; 1144 1144 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1145 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1145 1146 "aeson-lens" = dontDistribute super."aeson-lens"; 1146 1147 "aeson-native" = dontDistribute super."aeson-native"; 1147 1148 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1351 1352 "archlinux-web" = dontDistribute super."archlinux-web"; 1352 1353 "archnews" = dontDistribute super."archnews"; 1353 1354 "arff" = dontDistribute super."arff"; 1355 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1354 1356 "argon" = dontDistribute super."argon"; 1355 1357 "argparser" = dontDistribute super."argparser"; 1356 1358 "arguedit" = dontDistribute super."arguedit"; ··· 2602 2604 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2603 2605 "digits" = dontDistribute super."digits"; 2604 2606 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2607 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2605 2608 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2606 2609 "dingo-core" = dontDistribute super."dingo-core"; 2607 2610 "dingo-example" = dontDistribute super."dingo-example"; ··· 2873 2876 "error-loc" = dontDistribute super."error-loc"; 2874 2877 "error-location" = dontDistribute super."error-location"; 2875 2878 "error-message" = dontDistribute super."error-message"; 2879 + "error-util" = dontDistribute super."error-util"; 2876 2880 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0"; 2877 2881 "errors" = doDistribute super."errors_1_4_7"; 2878 2882 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6120 6124 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6121 6125 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6122 6126 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6127 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6123 6128 "persistent-map" = dontDistribute super."persistent-map"; 6124 6129 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6125 6130 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6814 6819 "rspp" = dontDistribute super."rspp"; 6815 6820 "rss" = dontDistribute super."rss"; 6816 6821 "rss2irc" = dontDistribute super."rss2irc"; 6822 + "rtcm" = dontDistribute super."rtcm"; 6817 6823 "rtld" = dontDistribute super."rtld"; 6818 6824 "rtlsdr" = dontDistribute super."rtlsdr"; 6819 6825 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.1.nix
··· 1142 1142 "aeson-diff" = dontDistribute super."aeson-diff"; 1143 1143 "aeson-extra" = dontDistribute super."aeson-extra"; 1144 1144 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1145 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1145 1146 "aeson-lens" = dontDistribute super."aeson-lens"; 1146 1147 "aeson-native" = dontDistribute super."aeson-native"; 1147 1148 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1351 1352 "archlinux-web" = dontDistribute super."archlinux-web"; 1352 1353 "archnews" = dontDistribute super."archnews"; 1353 1354 "arff" = dontDistribute super."arff"; 1355 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1354 1356 "argon" = dontDistribute super."argon"; 1355 1357 "argparser" = dontDistribute super."argparser"; 1356 1358 "arguedit" = dontDistribute super."arguedit"; ··· 2601 2603 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2602 2604 "digits" = dontDistribute super."digits"; 2603 2605 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2606 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2604 2607 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2605 2608 "dingo-core" = dontDistribute super."dingo-core"; 2606 2609 "dingo-example" = dontDistribute super."dingo-example"; ··· 2872 2875 "error-loc" = dontDistribute super."error-loc"; 2873 2876 "error-location" = dontDistribute super."error-location"; 2874 2877 "error-message" = dontDistribute super."error-message"; 2878 + "error-util" = dontDistribute super."error-util"; 2875 2879 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0"; 2876 2880 "errors" = doDistribute super."errors_1_4_7"; 2877 2881 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6118 6122 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6119 6123 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6120 6124 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6125 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6121 6126 "persistent-map" = dontDistribute super."persistent-map"; 6122 6127 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6123 6128 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6812 6817 "rspp" = dontDistribute super."rspp"; 6813 6818 "rss" = dontDistribute super."rss"; 6814 6819 "rss2irc" = dontDistribute super."rss2irc"; 6820 + "rtcm" = dontDistribute super."rtcm"; 6815 6821 "rtld" = dontDistribute super."rtld"; 6816 6822 "rtlsdr" = dontDistribute super."rtlsdr"; 6817 6823 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.10.nix
··· 1137 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 1142 "aeson-native" = dontDistribute super."aeson-native"; 1142 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1346 1347 "archlinux-web" = dontDistribute super."archlinux-web"; 1347 1348 "archnews" = dontDistribute super."archnews"; 1348 1349 "arff" = dontDistribute super."arff"; 1350 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1349 1351 "argon" = dontDistribute super."argon"; 1350 1352 "argparser" = dontDistribute super."argparser"; 1351 1353 "arguedit" = dontDistribute super."arguedit"; ··· 2586 2588 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2587 2589 "digits" = dontDistribute super."digits"; 2588 2590 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2591 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2589 2592 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2590 2593 "dingo-core" = dontDistribute super."dingo-core"; 2591 2594 "dingo-example" = dontDistribute super."dingo-example"; ··· 2855 2858 "error-loc" = dontDistribute super."error-loc"; 2856 2859 "error-location" = dontDistribute super."error-location"; 2857 2860 "error-message" = dontDistribute super."error-message"; 2861 + "error-util" = dontDistribute super."error-util"; 2858 2862 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2859 2863 "errors" = doDistribute super."errors_1_4_7"; 2860 2864 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6075 6079 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6076 6080 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6077 6081 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6082 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6078 6083 "persistent-map" = dontDistribute super."persistent-map"; 6079 6084 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6080 6085 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6764 6769 "rspp" = dontDistribute super."rspp"; 6765 6770 "rss" = dontDistribute super."rss"; 6766 6771 "rss2irc" = dontDistribute super."rss2irc"; 6772 + "rtcm" = dontDistribute super."rtcm"; 6767 6773 "rtld" = dontDistribute super."rtld"; 6768 6774 "rtlsdr" = dontDistribute super."rtlsdr"; 6769 6775 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.11.nix
··· 1137 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 1142 "aeson-native" = dontDistribute super."aeson-native"; 1142 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1345 1346 "archlinux-web" = dontDistribute super."archlinux-web"; 1346 1347 "archnews" = dontDistribute super."archnews"; 1347 1348 "arff" = dontDistribute super."arff"; 1349 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1348 1350 "argon" = dontDistribute super."argon"; 1349 1351 "argparser" = dontDistribute super."argparser"; 1350 1352 "arguedit" = dontDistribute super."arguedit"; ··· 2585 2587 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2586 2588 "digits" = dontDistribute super."digits"; 2587 2589 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2590 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2588 2591 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2589 2592 "dingo-core" = dontDistribute super."dingo-core"; 2590 2593 "dingo-example" = dontDistribute super."dingo-example"; ··· 2854 2857 "error-loc" = dontDistribute super."error-loc"; 2855 2858 "error-location" = dontDistribute super."error-location"; 2856 2859 "error-message" = dontDistribute super."error-message"; 2860 + "error-util" = dontDistribute super."error-util"; 2857 2861 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2858 2862 "errors" = doDistribute super."errors_1_4_7"; 2859 2863 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6068 6072 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6069 6073 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6070 6074 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6075 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6071 6076 "persistent-map" = dontDistribute super."persistent-map"; 6072 6077 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6073 6078 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6756 6761 "rspp" = dontDistribute super."rspp"; 6757 6762 "rss" = dontDistribute super."rss"; 6758 6763 "rss2irc" = dontDistribute super."rss2irc"; 6764 + "rtcm" = dontDistribute super."rtcm"; 6759 6765 "rtld" = dontDistribute super."rtld"; 6760 6766 "rtlsdr" = dontDistribute super."rtlsdr"; 6761 6767 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.12.nix
··· 1137 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 1142 "aeson-native" = dontDistribute super."aeson-native"; 1142 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1345 1346 "archlinux-web" = dontDistribute super."archlinux-web"; 1346 1347 "archnews" = dontDistribute super."archnews"; 1347 1348 "arff" = dontDistribute super."arff"; 1349 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1348 1350 "argon" = dontDistribute super."argon"; 1349 1351 "argparser" = dontDistribute super."argparser"; 1350 1352 "arguedit" = dontDistribute super."arguedit"; ··· 2585 2587 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2586 2588 "digits" = dontDistribute super."digits"; 2587 2589 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2590 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2588 2591 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2589 2592 "dingo-core" = dontDistribute super."dingo-core"; 2590 2593 "dingo-example" = dontDistribute super."dingo-example"; ··· 2854 2857 "error-loc" = dontDistribute super."error-loc"; 2855 2858 "error-location" = dontDistribute super."error-location"; 2856 2859 "error-message" = dontDistribute super."error-message"; 2860 + "error-util" = dontDistribute super."error-util"; 2857 2861 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2858 2862 "errors" = doDistribute super."errors_1_4_7"; 2859 2863 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6068 6072 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6069 6073 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6070 6074 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6075 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6071 6076 "persistent-map" = dontDistribute super."persistent-map"; 6072 6077 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6073 6078 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6756 6761 "rspp" = dontDistribute super."rspp"; 6757 6762 "rss" = dontDistribute super."rss"; 6758 6763 "rss2irc" = dontDistribute super."rss2irc"; 6764 + "rtcm" = dontDistribute super."rtcm"; 6759 6765 "rtld" = dontDistribute super."rtld"; 6760 6766 "rtlsdr" = dontDistribute super."rtlsdr"; 6761 6767 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.13.nix
··· 1137 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 1142 "aeson-native" = dontDistribute super."aeson-native"; 1142 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1345 1346 "archlinux-web" = dontDistribute super."archlinux-web"; 1346 1347 "archnews" = dontDistribute super."archnews"; 1347 1348 "arff" = dontDistribute super."arff"; 1349 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1348 1350 "argon" = dontDistribute super."argon"; 1349 1351 "argparser" = dontDistribute super."argparser"; 1350 1352 "arguedit" = dontDistribute super."arguedit"; ··· 2585 2587 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2586 2588 "digits" = dontDistribute super."digits"; 2587 2589 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2590 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2588 2591 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2589 2592 "dingo-core" = dontDistribute super."dingo-core"; 2590 2593 "dingo-example" = dontDistribute super."dingo-example"; ··· 2854 2857 "error-loc" = dontDistribute super."error-loc"; 2855 2858 "error-location" = dontDistribute super."error-location"; 2856 2859 "error-message" = dontDistribute super."error-message"; 2860 + "error-util" = dontDistribute super."error-util"; 2857 2861 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2858 2862 "errors" = doDistribute super."errors_1_4_7"; 2859 2863 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6065 6069 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6066 6070 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6067 6071 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6072 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6068 6073 "persistent-map" = dontDistribute super."persistent-map"; 6069 6074 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6070 6075 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6753 6758 "rspp" = dontDistribute super."rspp"; 6754 6759 "rss" = dontDistribute super."rss"; 6755 6760 "rss2irc" = dontDistribute super."rss2irc"; 6761 + "rtcm" = dontDistribute super."rtcm"; 6756 6762 "rtld" = dontDistribute super."rtld"; 6757 6763 "rtlsdr" = dontDistribute super."rtlsdr"; 6758 6764 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.14.nix
··· 1137 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 1142 "aeson-native" = dontDistribute super."aeson-native"; 1142 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1344 1345 "archlinux-web" = dontDistribute super."archlinux-web"; 1345 1346 "archnews" = dontDistribute super."archnews"; 1346 1347 "arff" = dontDistribute super."arff"; 1348 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1347 1349 "argon" = dontDistribute super."argon"; 1348 1350 "argparser" = dontDistribute super."argparser"; 1349 1351 "arguedit" = dontDistribute super."arguedit"; ··· 2584 2586 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2585 2587 "digits" = dontDistribute super."digits"; 2586 2588 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2589 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2587 2590 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2588 2591 "dingo-core" = dontDistribute super."dingo-core"; 2589 2592 "dingo-example" = dontDistribute super."dingo-example"; ··· 2853 2856 "error-loc" = dontDistribute super."error-loc"; 2854 2857 "error-location" = dontDistribute super."error-location"; 2855 2858 "error-message" = dontDistribute super."error-message"; 2859 + "error-util" = dontDistribute super."error-util"; 2856 2860 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2857 2861 "errors" = doDistribute super."errors_1_4_7"; 2858 2862 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6062 6066 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6063 6067 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6064 6068 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6069 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6065 6070 "persistent-map" = dontDistribute super."persistent-map"; 6066 6071 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6067 6072 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6749 6754 "rspp" = dontDistribute super."rspp"; 6750 6755 "rss" = dontDistribute super."rss"; 6751 6756 "rss2irc" = dontDistribute super."rss2irc"; 6757 + "rtcm" = dontDistribute super."rtcm"; 6752 6758 "rtld" = dontDistribute super."rtld"; 6753 6759 "rtlsdr" = dontDistribute super."rtlsdr"; 6754 6760 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.15.nix
··· 1137 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 1142 "aeson-native" = dontDistribute super."aeson-native"; 1142 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1344 1345 "archlinux-web" = dontDistribute super."archlinux-web"; 1345 1346 "archnews" = dontDistribute super."archnews"; 1346 1347 "arff" = dontDistribute super."arff"; 1348 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1347 1349 "argon" = dontDistribute super."argon"; 1348 1350 "argparser" = dontDistribute super."argparser"; 1349 1351 "arguedit" = dontDistribute super."arguedit"; ··· 2584 2586 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2585 2587 "digits" = dontDistribute super."digits"; 2586 2588 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2589 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2587 2590 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2588 2591 "dingo-core" = dontDistribute super."dingo-core"; 2589 2592 "dingo-example" = dontDistribute super."dingo-example"; ··· 2852 2855 "error-loc" = dontDistribute super."error-loc"; 2853 2856 "error-location" = dontDistribute super."error-location"; 2854 2857 "error-message" = dontDistribute super."error-message"; 2858 + "error-util" = dontDistribute super."error-util"; 2855 2859 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2856 2860 "errors" = doDistribute super."errors_1_4_7"; 2857 2861 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6058 6062 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6059 6063 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6060 6064 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6065 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6061 6066 "persistent-map" = dontDistribute super."persistent-map"; 6062 6067 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6063 6068 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6745 6750 "rspp" = dontDistribute super."rspp"; 6746 6751 "rss" = dontDistribute super."rss"; 6747 6752 "rss2irc" = dontDistribute super."rss2irc"; 6753 + "rtcm" = dontDistribute super."rtcm"; 6748 6754 "rtld" = dontDistribute super."rtld"; 6749 6755 "rtlsdr" = dontDistribute super."rtlsdr"; 6750 6756 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.16.nix
··· 1136 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1139 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 1141 "aeson-native" = dontDistribute super."aeson-native"; 1141 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 1345 "archnews" = dontDistribute super."archnews"; 1345 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1346 1348 "argon" = dontDistribute super."argon"; 1347 1349 "argparser" = dontDistribute super."argparser"; 1348 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2580 2582 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2581 2583 "digits" = dontDistribute super."digits"; 2582 2584 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2585 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2583 2586 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2584 2587 "dingo-core" = dontDistribute super."dingo-core"; 2585 2588 "dingo-example" = dontDistribute super."dingo-example"; ··· 2848 2851 "error-loc" = dontDistribute super."error-loc"; 2849 2852 "error-location" = dontDistribute super."error-location"; 2850 2853 "error-message" = dontDistribute super."error-message"; 2854 + "error-util" = dontDistribute super."error-util"; 2851 2855 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2852 2856 "errors" = doDistribute super."errors_1_4_7"; 2853 2857 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6050 6054 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6051 6055 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6052 6056 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6057 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6053 6058 "persistent-map" = dontDistribute super."persistent-map"; 6054 6059 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6055 6060 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6737 6742 "rspp" = dontDistribute super."rspp"; 6738 6743 "rss" = dontDistribute super."rss"; 6739 6744 "rss2irc" = dontDistribute super."rss2irc"; 6745 + "rtcm" = dontDistribute super."rtcm"; 6740 6746 "rtld" = dontDistribute super."rtld"; 6741 6747 "rtlsdr" = dontDistribute super."rtlsdr"; 6742 6748 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.17.nix
··· 1136 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1139 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 1141 "aeson-native" = dontDistribute super."aeson-native"; 1141 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 1345 "archnews" = dontDistribute super."archnews"; 1345 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1346 1348 "argon" = dontDistribute super."argon"; 1347 1349 "argparser" = dontDistribute super."argparser"; 1348 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2577 2579 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2578 2580 "digits" = dontDistribute super."digits"; 2579 2581 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2582 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2580 2583 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2581 2584 "dingo-core" = dontDistribute super."dingo-core"; 2582 2585 "dingo-example" = dontDistribute super."dingo-example"; ··· 2845 2848 "error-loc" = dontDistribute super."error-loc"; 2846 2849 "error-location" = dontDistribute super."error-location"; 2847 2850 "error-message" = dontDistribute super."error-message"; 2851 + "error-util" = dontDistribute super."error-util"; 2848 2852 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2849 2853 "errors" = doDistribute super."errors_1_4_7"; 2850 2854 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6042 6046 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6043 6047 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6044 6048 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6049 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6045 6050 "persistent-map" = dontDistribute super."persistent-map"; 6046 6051 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6047 6052 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6728 6733 "rspp" = dontDistribute super."rspp"; 6729 6734 "rss" = dontDistribute super."rss"; 6730 6735 "rss2irc" = dontDistribute super."rss2irc"; 6736 + "rtcm" = dontDistribute super."rtcm"; 6731 6737 "rtld" = dontDistribute super."rtld"; 6732 6738 "rtlsdr" = dontDistribute super."rtlsdr"; 6733 6739 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.18.nix
··· 1136 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1139 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 1141 "aeson-native" = dontDistribute super."aeson-native"; 1141 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 1345 "archnews" = dontDistribute super."archnews"; 1345 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1346 1348 "argon" = dontDistribute super."argon"; 1347 1349 "argparser" = dontDistribute super."argparser"; 1348 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2575 2577 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2576 2578 "digits" = dontDistribute super."digits"; 2577 2579 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2580 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2578 2581 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2579 2582 "dingo-core" = dontDistribute super."dingo-core"; 2580 2583 "dingo-example" = dontDistribute super."dingo-example"; ··· 2842 2845 "error-loc" = dontDistribute super."error-loc"; 2843 2846 "error-location" = dontDistribute super."error-location"; 2844 2847 "error-message" = dontDistribute super."error-message"; 2848 + "error-util" = dontDistribute super."error-util"; 2845 2849 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2846 2850 "errors" = doDistribute super."errors_1_4_7"; 2847 2851 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6036 6040 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6037 6041 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6038 6042 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6043 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6039 6044 "persistent-map" = dontDistribute super."persistent-map"; 6040 6045 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6041 6046 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6721 6726 "rspp" = dontDistribute super."rspp"; 6722 6727 "rss" = dontDistribute super."rss"; 6723 6728 "rss2irc" = dontDistribute super."rss2irc"; 6729 + "rtcm" = dontDistribute super."rtcm"; 6724 6730 "rtld" = dontDistribute super."rtld"; 6725 6731 "rtlsdr" = dontDistribute super."rtlsdr"; 6726 6732 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.19.nix
··· 1136 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1139 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 1141 "aeson-native" = dontDistribute super."aeson-native"; 1141 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 1345 "archnews" = dontDistribute super."archnews"; 1345 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1346 1348 "argon" = dontDistribute super."argon"; 1347 1349 "argparser" = dontDistribute super."argparser"; 1348 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2575 2577 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2576 2578 "digits" = dontDistribute super."digits"; 2577 2579 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2580 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2578 2581 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2579 2582 "dingo-core" = dontDistribute super."dingo-core"; 2580 2583 "dingo-example" = dontDistribute super."dingo-example"; ··· 2842 2845 "error-loc" = dontDistribute super."error-loc"; 2843 2846 "error-location" = dontDistribute super."error-location"; 2844 2847 "error-message" = dontDistribute super."error-message"; 2848 + "error-util" = dontDistribute super."error-util"; 2845 2849 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2846 2850 "errors" = doDistribute super."errors_1_4_7"; 2847 2851 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6033 6037 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6034 6038 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6035 6039 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6040 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6036 6041 "persistent-map" = dontDistribute super."persistent-map"; 6037 6042 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6038 6043 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6718 6723 "rspp" = dontDistribute super."rspp"; 6719 6724 "rss" = dontDistribute super."rss"; 6720 6725 "rss2irc" = dontDistribute super."rss2irc"; 6726 + "rtcm" = dontDistribute super."rtcm"; 6721 6727 "rtld" = dontDistribute super."rtld"; 6722 6728 "rtlsdr" = dontDistribute super."rtlsdr"; 6723 6729 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.2.nix
··· 1141 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1144 1145 "aeson-lens" = dontDistribute super."aeson-lens"; 1145 1146 "aeson-native" = dontDistribute super."aeson-native"; 1146 1147 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1350 1351 "archlinux-web" = dontDistribute super."archlinux-web"; 1351 1352 "archnews" = dontDistribute super."archnews"; 1352 1353 "arff" = dontDistribute super."arff"; 1354 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1353 1355 "argon" = dontDistribute super."argon"; 1354 1356 "argparser" = dontDistribute super."argparser"; 1355 1357 "arguedit" = dontDistribute super."arguedit"; ··· 2598 2600 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2599 2601 "digits" = dontDistribute super."digits"; 2600 2602 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2603 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2601 2604 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2602 2605 "dingo-core" = dontDistribute super."dingo-core"; 2603 2606 "dingo-example" = dontDistribute super."dingo-example"; ··· 2869 2872 "error-loc" = dontDistribute super."error-loc"; 2870 2873 "error-location" = dontDistribute super."error-location"; 2871 2874 "error-message" = dontDistribute super."error-message"; 2875 + "error-util" = dontDistribute super."error-util"; 2872 2876 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2873 2877 "errors" = doDistribute super."errors_1_4_7"; 2874 2878 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6113 6117 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6114 6118 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6115 6119 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6120 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6116 6121 "persistent-map" = dontDistribute super."persistent-map"; 6117 6122 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6118 6123 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6807 6812 "rspp" = dontDistribute super."rspp"; 6808 6813 "rss" = dontDistribute super."rss"; 6809 6814 "rss2irc" = dontDistribute super."rss2irc"; 6815 + "rtcm" = dontDistribute super."rtcm"; 6810 6816 "rtld" = dontDistribute super."rtld"; 6811 6817 "rtlsdr" = dontDistribute super."rtlsdr"; 6812 6818 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.20.nix
··· 1136 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1139 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 1141 "aeson-native" = dontDistribute super."aeson-native"; 1141 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 1345 "archnews" = dontDistribute super."archnews"; 1345 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1346 1348 "argon" = dontDistribute super."argon"; 1347 1349 "argparser" = dontDistribute super."argparser"; 1348 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2574 2576 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2575 2577 "digits" = dontDistribute super."digits"; 2576 2578 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2579 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2577 2580 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2578 2581 "dingo-core" = dontDistribute super."dingo-core"; 2579 2582 "dingo-example" = dontDistribute super."dingo-example"; ··· 2841 2844 "error-loc" = dontDistribute super."error-loc"; 2842 2845 "error-location" = dontDistribute super."error-location"; 2843 2846 "error-message" = dontDistribute super."error-message"; 2847 + "error-util" = dontDistribute super."error-util"; 2844 2848 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2845 2849 "errors" = doDistribute super."errors_1_4_7"; 2846 2850 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6030 6034 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6031 6035 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6032 6036 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6037 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6033 6038 "persistent-map" = dontDistribute super."persistent-map"; 6034 6039 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6035 6040 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6714 6719 "rspp" = dontDistribute super."rspp"; 6715 6720 "rss" = dontDistribute super."rss"; 6716 6721 "rss2irc" = dontDistribute super."rss2irc"; 6722 + "rtcm" = dontDistribute super."rtcm"; 6717 6723 "rtld" = dontDistribute super."rtld"; 6718 6724 "rtlsdr" = dontDistribute super."rtlsdr"; 6719 6725 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.21.nix
··· 1136 1136 "aeson-diff" = dontDistribute super."aeson-diff"; 1137 1137 "aeson-extra" = dontDistribute super."aeson-extra"; 1138 1138 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1139 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1139 1140 "aeson-lens" = dontDistribute super."aeson-lens"; 1140 1141 "aeson-native" = dontDistribute super."aeson-native"; 1141 1142 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1343 1344 "archlinux-web" = dontDistribute super."archlinux-web"; 1344 1345 "archnews" = dontDistribute super."archnews"; 1345 1346 "arff" = dontDistribute super."arff"; 1347 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1346 1348 "argon" = dontDistribute super."argon"; 1347 1349 "argparser" = dontDistribute super."argparser"; 1348 1350 "arguedit" = dontDistribute super."arguedit"; ··· 2574 2576 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2575 2577 "digits" = dontDistribute super."digits"; 2576 2578 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2579 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2577 2580 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2578 2581 "dingo-core" = dontDistribute super."dingo-core"; 2579 2582 "dingo-example" = dontDistribute super."dingo-example"; ··· 2841 2844 "error-loc" = dontDistribute super."error-loc"; 2842 2845 "error-location" = dontDistribute super."error-location"; 2843 2846 "error-message" = dontDistribute super."error-message"; 2847 + "error-util" = dontDistribute super."error-util"; 2844 2848 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2845 2849 "errors" = doDistribute super."errors_1_4_7"; 2846 2850 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6028 6032 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6029 6033 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6030 6034 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6035 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6031 6036 "persistent-map" = dontDistribute super."persistent-map"; 6032 6037 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6033 6038 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6711 6716 "rspp" = dontDistribute super."rspp"; 6712 6717 "rss" = dontDistribute super."rss"; 6713 6718 "rss2irc" = dontDistribute super."rss2irc"; 6719 + "rtcm" = dontDistribute super."rtcm"; 6714 6720 "rtld" = dontDistribute super."rtld"; 6715 6721 "rtlsdr" = dontDistribute super."rtlsdr"; 6716 6722 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.22.nix
··· 1135 1135 "aeson-diff" = dontDistribute super."aeson-diff"; 1136 1136 "aeson-extra" = dontDistribute super."aeson-extra"; 1137 1137 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1138 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1138 1139 "aeson-lens" = dontDistribute super."aeson-lens"; 1139 1140 "aeson-native" = dontDistribute super."aeson-native"; 1140 1141 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1342 1343 "archlinux-web" = dontDistribute super."archlinux-web"; 1343 1344 "archnews" = dontDistribute super."archnews"; 1344 1345 "arff" = dontDistribute super."arff"; 1346 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1345 1347 "argon" = dontDistribute super."argon"; 1346 1348 "argparser" = dontDistribute super."argparser"; 1347 1349 "arguedit" = dontDistribute super."arguedit"; ··· 2573 2575 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2574 2576 "digits" = dontDistribute super."digits"; 2575 2577 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2578 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2576 2579 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2577 2580 "dingo-core" = dontDistribute super."dingo-core"; 2578 2581 "dingo-example" = dontDistribute super."dingo-example"; ··· 2840 2843 "error-loc" = dontDistribute super."error-loc"; 2841 2844 "error-location" = dontDistribute super."error-location"; 2842 2845 "error-message" = dontDistribute super."error-message"; 2846 + "error-util" = dontDistribute super."error-util"; 2843 2847 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2844 2848 "errors" = doDistribute super."errors_1_4_7"; 2845 2849 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6024 6028 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6025 6029 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6026 6030 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6031 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6027 6032 "persistent-map" = dontDistribute super."persistent-map"; 6028 6033 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6029 6034 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6707 6712 "rspp" = dontDistribute super."rspp"; 6708 6713 "rss" = dontDistribute super."rss"; 6709 6714 "rss2irc" = dontDistribute super."rss2irc"; 6715 + "rtcm" = dontDistribute super."rtcm"; 6710 6716 "rtld" = dontDistribute super."rtld"; 6711 6717 "rtlsdr" = dontDistribute super."rtlsdr"; 6712 6718 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.3.nix
··· 1141 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1144 1145 "aeson-lens" = dontDistribute super."aeson-lens"; 1145 1146 "aeson-native" = dontDistribute super."aeson-native"; 1146 1147 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1350 1351 "archlinux-web" = dontDistribute super."archlinux-web"; 1351 1352 "archnews" = dontDistribute super."archnews"; 1352 1353 "arff" = dontDistribute super."arff"; 1354 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1353 1355 "argon" = dontDistribute super."argon"; 1354 1356 "argparser" = dontDistribute super."argparser"; 1355 1357 "arguedit" = dontDistribute super."arguedit"; ··· 2598 2600 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2599 2601 "digits" = dontDistribute super."digits"; 2600 2602 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2603 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2601 2604 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2602 2605 "dingo-core" = dontDistribute super."dingo-core"; 2603 2606 "dingo-example" = dontDistribute super."dingo-example"; ··· 2869 2872 "error-loc" = dontDistribute super."error-loc"; 2870 2873 "error-location" = dontDistribute super."error-location"; 2871 2874 "error-message" = dontDistribute super."error-message"; 2875 + "error-util" = dontDistribute super."error-util"; 2872 2876 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2873 2877 "errors" = doDistribute super."errors_1_4_7"; 2874 2878 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6111 6115 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6112 6116 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6113 6117 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6118 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6114 6119 "persistent-map" = dontDistribute super."persistent-map"; 6115 6120 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6116 6121 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6805 6810 "rspp" = dontDistribute super."rspp"; 6806 6811 "rss" = dontDistribute super."rss"; 6807 6812 "rss2irc" = dontDistribute super."rss2irc"; 6813 + "rtcm" = dontDistribute super."rtcm"; 6808 6814 "rtld" = dontDistribute super."rtld"; 6809 6815 "rtlsdr" = dontDistribute super."rtlsdr"; 6810 6816 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.4.nix
··· 1141 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1144 1145 "aeson-lens" = dontDistribute super."aeson-lens"; 1145 1146 "aeson-native" = dontDistribute super."aeson-native"; 1146 1147 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1350 1351 "archlinux-web" = dontDistribute super."archlinux-web"; 1351 1352 "archnews" = dontDistribute super."archnews"; 1352 1353 "arff" = dontDistribute super."arff"; 1354 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1353 1355 "argon" = dontDistribute super."argon"; 1354 1356 "argparser" = dontDistribute super."argparser"; 1355 1357 "arguedit" = dontDistribute super."arguedit"; ··· 2597 2599 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2598 2600 "digits" = dontDistribute super."digits"; 2599 2601 "dimensional" = doDistribute super."dimensional_0_13_0_1"; 2602 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2600 2603 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2601 2604 "dingo-core" = dontDistribute super."dingo-core"; 2602 2605 "dingo-example" = dontDistribute super."dingo-example"; ··· 2868 2871 "error-loc" = dontDistribute super."error-loc"; 2869 2872 "error-location" = dontDistribute super."error-location"; 2870 2873 "error-message" = dontDistribute super."error-message"; 2874 + "error-util" = dontDistribute super."error-util"; 2871 2875 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2872 2876 "errors" = doDistribute super."errors_1_4_7"; 2873 2877 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6107 6111 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6108 6112 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6109 6113 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6114 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6110 6115 "persistent-map" = dontDistribute super."persistent-map"; 6111 6116 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6112 6117 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6800 6805 "rspp" = dontDistribute super."rspp"; 6801 6806 "rss" = dontDistribute super."rss"; 6802 6807 "rss2irc" = dontDistribute super."rss2irc"; 6808 + "rtcm" = dontDistribute super."rtcm"; 6803 6809 "rtld" = dontDistribute super."rtld"; 6804 6810 "rtlsdr" = dontDistribute super."rtlsdr"; 6805 6811 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.5.nix
··· 1141 1141 "aeson-diff" = dontDistribute super."aeson-diff"; 1142 1142 "aeson-extra" = dontDistribute super."aeson-extra"; 1143 1143 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1144 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1144 1145 "aeson-lens" = dontDistribute super."aeson-lens"; 1145 1146 "aeson-native" = dontDistribute super."aeson-native"; 1146 1147 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1350 1351 "archlinux-web" = dontDistribute super."archlinux-web"; 1351 1352 "archnews" = dontDistribute super."archnews"; 1352 1353 "arff" = dontDistribute super."arff"; 1354 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1353 1355 "argon" = dontDistribute super."argon"; 1354 1356 "argparser" = dontDistribute super."argparser"; 1355 1357 "arguedit" = dontDistribute super."arguedit"; ··· 2596 2598 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2597 2599 "digits" = dontDistribute super."digits"; 2598 2600 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2601 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2599 2602 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2600 2603 "dingo-core" = dontDistribute super."dingo-core"; 2601 2604 "dingo-example" = dontDistribute super."dingo-example"; ··· 2867 2870 "error-loc" = dontDistribute super."error-loc"; 2868 2871 "error-location" = dontDistribute super."error-location"; 2869 2872 "error-message" = dontDistribute super."error-message"; 2873 + "error-util" = dontDistribute super."error-util"; 2870 2874 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2871 2875 "errors" = doDistribute super."errors_1_4_7"; 2872 2876 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6105 6109 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6106 6110 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6107 6111 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6112 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6108 6113 "persistent-map" = dontDistribute super."persistent-map"; 6109 6114 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6110 6115 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6798 6803 "rspp" = dontDistribute super."rspp"; 6799 6804 "rss" = dontDistribute super."rss"; 6800 6805 "rss2irc" = dontDistribute super."rss2irc"; 6806 + "rtcm" = dontDistribute super."rtcm"; 6801 6807 "rtld" = dontDistribute super."rtld"; 6802 6808 "rtlsdr" = dontDistribute super."rtlsdr"; 6803 6809 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.6.nix
··· 1139 1139 "aeson-diff" = dontDistribute super."aeson-diff"; 1140 1140 "aeson-extra" = dontDistribute super."aeson-extra"; 1141 1141 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1142 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1142 1143 "aeson-lens" = dontDistribute super."aeson-lens"; 1143 1144 "aeson-native" = dontDistribute super."aeson-native"; 1144 1145 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1348 1349 "archlinux-web" = dontDistribute super."archlinux-web"; 1349 1350 "archnews" = dontDistribute super."archnews"; 1350 1351 "arff" = dontDistribute super."arff"; 1352 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1351 1353 "argon" = dontDistribute super."argon"; 1352 1354 "argparser" = dontDistribute super."argparser"; 1353 1355 "arguedit" = dontDistribute super."arguedit"; ··· 2593 2595 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2594 2596 "digits" = dontDistribute super."digits"; 2595 2597 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2598 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2596 2599 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2597 2600 "dingo-core" = dontDistribute super."dingo-core"; 2598 2601 "dingo-example" = dontDistribute super."dingo-example"; ··· 2864 2867 "error-loc" = dontDistribute super."error-loc"; 2865 2868 "error-location" = dontDistribute super."error-location"; 2866 2869 "error-message" = dontDistribute super."error-message"; 2870 + "error-util" = dontDistribute super."error-util"; 2867 2871 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2868 2872 "errors" = doDistribute super."errors_1_4_7"; 2869 2873 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6099 6103 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6100 6104 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6101 6105 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6106 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6102 6107 "persistent-map" = dontDistribute super."persistent-map"; 6103 6108 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6104 6109 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6792 6797 "rspp" = dontDistribute super."rspp"; 6793 6798 "rss" = dontDistribute super."rss"; 6794 6799 "rss2irc" = dontDistribute super."rss2irc"; 6800 + "rtcm" = dontDistribute super."rtcm"; 6795 6801 "rtld" = dontDistribute super."rtld"; 6796 6802 "rtlsdr" = dontDistribute super."rtlsdr"; 6797 6803 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.7.nix
··· 1138 1138 "aeson-diff" = dontDistribute super."aeson-diff"; 1139 1139 "aeson-extra" = dontDistribute super."aeson-extra"; 1140 1140 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1141 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1141 1142 "aeson-lens" = dontDistribute super."aeson-lens"; 1142 1143 "aeson-native" = dontDistribute super."aeson-native"; 1143 1144 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1347 1348 "archlinux-web" = dontDistribute super."archlinux-web"; 1348 1349 "archnews" = dontDistribute super."archnews"; 1349 1350 "arff" = dontDistribute super."arff"; 1351 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1350 1352 "argon" = dontDistribute super."argon"; 1351 1353 "argparser" = dontDistribute super."argparser"; 1352 1354 "arguedit" = dontDistribute super."arguedit"; ··· 2592 2594 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2593 2595 "digits" = dontDistribute super."digits"; 2594 2596 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2597 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2595 2598 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2596 2599 "dingo-core" = dontDistribute super."dingo-core"; 2597 2600 "dingo-example" = dontDistribute super."dingo-example"; ··· 2863 2866 "error-loc" = dontDistribute super."error-loc"; 2864 2867 "error-location" = dontDistribute super."error-location"; 2865 2868 "error-message" = dontDistribute super."error-message"; 2869 + "error-util" = dontDistribute super."error-util"; 2866 2870 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2867 2871 "errors" = doDistribute super."errors_1_4_7"; 2868 2872 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6098 6102 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6099 6103 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6100 6104 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6105 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6101 6106 "persistent-map" = dontDistribute super."persistent-map"; 6102 6107 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6103 6108 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6791 6796 "rspp" = dontDistribute super."rspp"; 6792 6797 "rss" = dontDistribute super."rss"; 6793 6798 "rss2irc" = dontDistribute super."rss2irc"; 6799 + "rtcm" = dontDistribute super."rtcm"; 6794 6800 "rtld" = dontDistribute super."rtld"; 6795 6801 "rtlsdr" = dontDistribute super."rtlsdr"; 6796 6802 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.8.nix
··· 1137 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 1142 "aeson-native" = dontDistribute super."aeson-native"; 1142 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1346 1347 "archlinux-web" = dontDistribute super."archlinux-web"; 1347 1348 "archnews" = dontDistribute super."archnews"; 1348 1349 "arff" = dontDistribute super."arff"; 1350 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1349 1351 "argon" = dontDistribute super."argon"; 1350 1352 "argparser" = dontDistribute super."argparser"; 1351 1353 "arguedit" = dontDistribute super."arguedit"; ··· 2591 2593 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2592 2594 "digits" = dontDistribute super."digits"; 2593 2595 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2596 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2594 2597 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2595 2598 "dingo-core" = dontDistribute super."dingo-core"; 2596 2599 "dingo-example" = dontDistribute super."dingo-example"; ··· 2862 2865 "error-loc" = dontDistribute super."error-loc"; 2863 2866 "error-location" = dontDistribute super."error-location"; 2864 2867 "error-message" = dontDistribute super."error-message"; 2868 + "error-util" = dontDistribute super."error-util"; 2865 2869 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2866 2870 "errors" = doDistribute super."errors_1_4_7"; 2867 2871 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6094 6098 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6095 6099 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6096 6100 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6101 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6097 6102 "persistent-map" = dontDistribute super."persistent-map"; 6098 6103 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_1"; 6099 6104 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3"; ··· 6787 6792 "rspp" = dontDistribute super."rspp"; 6788 6793 "rss" = dontDistribute super."rss"; 6789 6794 "rss2irc" = dontDistribute super."rss2irc"; 6795 + "rtcm" = dontDistribute super."rtcm"; 6790 6796 "rtld" = dontDistribute super."rtld"; 6791 6797 "rtlsdr" = dontDistribute super."rtlsdr"; 6792 6798 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+6
pkgs/development/haskell-modules/configuration-lts-2.9.nix
··· 1137 1137 "aeson-diff" = dontDistribute super."aeson-diff"; 1138 1138 "aeson-extra" = dontDistribute super."aeson-extra"; 1139 1139 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1140 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1140 1141 "aeson-lens" = dontDistribute super."aeson-lens"; 1141 1142 "aeson-native" = dontDistribute super."aeson-native"; 1142 1143 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1346 1347 "archlinux-web" = dontDistribute super."archlinux-web"; 1347 1348 "archnews" = dontDistribute super."archnews"; 1348 1349 "arff" = dontDistribute super."arff"; 1350 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1349 1351 "argon" = dontDistribute super."argon"; 1350 1352 "argparser" = dontDistribute super."argparser"; 1351 1353 "arguedit" = dontDistribute super."arguedit"; ··· 2588 2590 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2589 2591 "digits" = dontDistribute super."digits"; 2590 2592 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2593 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2591 2594 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2592 2595 "dingo-core" = dontDistribute super."dingo-core"; 2593 2596 "dingo-example" = dontDistribute super."dingo-example"; ··· 2857 2860 "error-loc" = dontDistribute super."error-loc"; 2858 2861 "error-location" = dontDistribute super."error-location"; 2859 2862 "error-message" = dontDistribute super."error-message"; 2863 + "error-util" = dontDistribute super."error-util"; 2860 2864 "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; 2861 2865 "errors" = doDistribute super."errors_1_4_7"; 2862 2866 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 6084 6088 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 6085 6089 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 6086 6090 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 6091 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 6087 6092 "persistent-map" = dontDistribute super."persistent-map"; 6088 6093 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 6089 6094 "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; ··· 6775 6780 "rspp" = dontDistribute super."rspp"; 6776 6781 "rss" = dontDistribute super."rss"; 6777 6782 "rss2irc" = dontDistribute super."rss2irc"; 6783 + "rtcm" = dontDistribute super."rtcm"; 6778 6784 "rtld" = dontDistribute super."rtld"; 6779 6785 "rtlsdr" = dontDistribute super."rtlsdr"; 6780 6786 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+8
pkgs/development/haskell-modules/configuration-lts-3.0.nix
··· 1110 1110 "aeson-diff" = dontDistribute super."aeson-diff"; 1111 1111 "aeson-extra" = dontDistribute super."aeson-extra"; 1112 1112 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1113 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1113 1114 "aeson-lens" = dontDistribute super."aeson-lens"; 1114 1115 "aeson-native" = dontDistribute super."aeson-native"; 1115 1116 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1303 1304 "archlinux-web" = dontDistribute super."archlinux-web"; 1304 1305 "archnews" = dontDistribute super."archnews"; 1305 1306 "arff" = dontDistribute super."arff"; 1307 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1306 1308 "argon" = dontDistribute super."argon"; 1307 1309 "argparser" = dontDistribute super."argparser"; 1308 1310 "arguedit" = dontDistribute super."arguedit"; ··· 2484 2486 "digit" = dontDistribute super."digit"; 2485 2487 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2486 2488 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2489 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2487 2490 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2488 2491 "dingo-core" = dontDistribute super."dingo-core"; 2489 2492 "dingo-example" = dontDistribute super."dingo-example"; ··· 2742 2745 "error-loc" = dontDistribute super."error-loc"; 2743 2746 "error-location" = dontDistribute super."error-location"; 2744 2747 "error-message" = dontDistribute super."error-message"; 2748 + "error-util" = dontDistribute super."error-util"; 2745 2749 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2746 2750 "errors" = doDistribute super."errors_2_0_0"; 2747 2751 "ersatz" = dontDistribute super."ersatz"; ··· 4527 4531 "io-reactive" = dontDistribute super."io-reactive"; 4528 4532 "io-region" = dontDistribute super."io-region"; 4529 4533 "io-storage" = dontDistribute super."io-storage"; 4534 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4530 4535 "io-streams-http" = dontDistribute super."io-streams-http"; 4531 4536 "io-throttle" = dontDistribute super."io-throttle"; 4532 4537 "ioctl" = dontDistribute super."ioctl"; ··· 5815 5820 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5816 5821 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5817 5822 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5823 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5818 5824 "persistent-map" = dontDistribute super."persistent-map"; 5819 5825 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5820 5826 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6062 6068 "prof2dot" = dontDistribute super."prof2dot"; 6063 6069 "prof2pretty" = dontDistribute super."prof2pretty"; 6064 6070 "profiteur" = dontDistribute super."profiteur"; 6071 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6065 6072 "progress" = dontDistribute super."progress"; 6066 6073 "progressbar" = dontDistribute super."progressbar"; 6067 6074 "progression" = dontDistribute super."progression"; ··· 6483 6490 "rspp" = dontDistribute super."rspp"; 6484 6491 "rss" = dontDistribute super."rss"; 6485 6492 "rss2irc" = dontDistribute super."rss2irc"; 6493 + "rtcm" = dontDistribute super."rtcm"; 6486 6494 "rtld" = dontDistribute super."rtld"; 6487 6495 "rtlsdr" = dontDistribute super."rtlsdr"; 6488 6496 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+8
pkgs/development/haskell-modules/configuration-lts-3.1.nix
··· 1110 1110 "aeson-diff" = dontDistribute super."aeson-diff"; 1111 1111 "aeson-extra" = dontDistribute super."aeson-extra"; 1112 1112 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1113 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1113 1114 "aeson-lens" = dontDistribute super."aeson-lens"; 1114 1115 "aeson-native" = dontDistribute super."aeson-native"; 1115 1116 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1302 1303 "archlinux-web" = dontDistribute super."archlinux-web"; 1303 1304 "archnews" = dontDistribute super."archnews"; 1304 1305 "arff" = dontDistribute super."arff"; 1306 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1305 1307 "argon" = dontDistribute super."argon"; 1306 1308 "argparser" = dontDistribute super."argparser"; 1307 1309 "arguedit" = dontDistribute super."arguedit"; ··· 2482 2484 "digit" = dontDistribute super."digit"; 2483 2485 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2484 2486 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2487 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2485 2488 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2486 2489 "dingo-core" = dontDistribute super."dingo-core"; 2487 2490 "dingo-example" = dontDistribute super."dingo-example"; ··· 2740 2743 "error-loc" = dontDistribute super."error-loc"; 2741 2744 "error-location" = dontDistribute super."error-location"; 2742 2745 "error-message" = dontDistribute super."error-message"; 2746 + "error-util" = dontDistribute super."error-util"; 2743 2747 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2744 2748 "errors" = doDistribute super."errors_2_0_0"; 2745 2749 "ersatz" = dontDistribute super."ersatz"; ··· 4521 4525 "io-reactive" = dontDistribute super."io-reactive"; 4522 4526 "io-region" = dontDistribute super."io-region"; 4523 4527 "io-storage" = dontDistribute super."io-storage"; 4528 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4524 4529 "io-streams-http" = dontDistribute super."io-streams-http"; 4525 4530 "io-throttle" = dontDistribute super."io-throttle"; 4526 4531 "ioctl" = dontDistribute super."ioctl"; ··· 5807 5812 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5808 5813 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5809 5814 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5815 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5810 5816 "persistent-map" = dontDistribute super."persistent-map"; 5811 5817 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5812 5818 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6053 6059 "prof2dot" = dontDistribute super."prof2dot"; 6054 6060 "prof2pretty" = dontDistribute super."prof2pretty"; 6055 6061 "profiteur" = dontDistribute super."profiteur"; 6062 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6056 6063 "progress" = dontDistribute super."progress"; 6057 6064 "progressbar" = dontDistribute super."progressbar"; 6058 6065 "progression" = dontDistribute super."progression"; ··· 6473 6480 "rspp" = dontDistribute super."rspp"; 6474 6481 "rss" = dontDistribute super."rss"; 6475 6482 "rss2irc" = dontDistribute super."rss2irc"; 6483 + "rtcm" = dontDistribute super."rtcm"; 6476 6484 "rtld" = dontDistribute super."rtld"; 6477 6485 "rtlsdr" = dontDistribute super."rtlsdr"; 6478 6486 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+10
pkgs/development/haskell-modules/configuration-lts-3.10.nix
··· 1101 1101 "aeson-diff" = dontDistribute super."aeson-diff"; 1102 1102 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1103 1103 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1104 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1104 1105 "aeson-lens" = dontDistribute super."aeson-lens"; 1105 1106 "aeson-native" = dontDistribute super."aeson-native"; 1106 1107 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1289 1290 "archlinux-web" = dontDistribute super."archlinux-web"; 1290 1291 "archnews" = dontDistribute super."archnews"; 1291 1292 "arff" = dontDistribute super."arff"; 1293 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1292 1294 "argon" = dontDistribute super."argon"; 1293 1295 "argparser" = dontDistribute super."argparser"; 1294 1296 "arguedit" = dontDistribute super."arguedit"; ··· 2442 2444 "digit" = dontDistribute super."digit"; 2443 2445 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2444 2446 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2447 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2445 2448 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2446 2449 "dingo-core" = dontDistribute super."dingo-core"; 2447 2450 "dingo-example" = dontDistribute super."dingo-example"; ··· 2695 2698 "error-loc" = dontDistribute super."error-loc"; 2696 2699 "error-location" = dontDistribute super."error-location"; 2697 2700 "error-message" = dontDistribute super."error-message"; 2701 + "error-util" = dontDistribute super."error-util"; 2698 2702 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2699 2703 "ersatz" = dontDistribute super."ersatz"; 2700 2704 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4445 4449 "io-reactive" = dontDistribute super."io-reactive"; 4446 4450 "io-region" = dontDistribute super."io-region"; 4447 4451 "io-storage" = dontDistribute super."io-storage"; 4452 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4448 4453 "io-streams-http" = dontDistribute super."io-streams-http"; 4449 4454 "io-throttle" = dontDistribute super."io-throttle"; 4450 4455 "ioctl" = dontDistribute super."ioctl"; ··· 5710 5715 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5711 5716 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5712 5717 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5718 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5713 5719 "persistent-map" = dontDistribute super."persistent-map"; 5714 5720 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5715 5721 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5946 5952 "prof2dot" = dontDistribute super."prof2dot"; 5947 5953 "prof2pretty" = dontDistribute super."prof2pretty"; 5948 5954 "profiteur" = dontDistribute super."profiteur"; 5955 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5949 5956 "progress" = dontDistribute super."progress"; 5950 5957 "progressbar" = dontDistribute super."progressbar"; 5951 5958 "progression" = dontDistribute super."progression"; ··· 6360 6367 "rspp" = dontDistribute super."rspp"; 6361 6368 "rss" = dontDistribute super."rss"; 6362 6369 "rss2irc" = dontDistribute super."rss2irc"; 6370 + "rtcm" = dontDistribute super."rtcm"; 6363 6371 "rtld" = dontDistribute super."rtld"; 6364 6372 "rtlsdr" = dontDistribute super."rtlsdr"; 6365 6373 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7947 7955 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7948 7956 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7949 7957 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7958 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7950 7959 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7951 7960 "yesod-comments" = dontDistribute super."yesod-comments"; 7952 7961 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7953 7962 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7963 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7954 7964 "yesod-crud" = dontDistribute super."yesod-crud"; 7955 7965 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7956 7966 "yesod-csp" = dontDistribute super."yesod-csp";
+11
pkgs/development/haskell-modules/configuration-lts-3.11.nix
··· 1101 1101 "aeson-diff" = dontDistribute super."aeson-diff"; 1102 1102 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1103 1103 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1104 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1104 1105 "aeson-lens" = dontDistribute super."aeson-lens"; 1105 1106 "aeson-native" = dontDistribute super."aeson-native"; 1106 1107 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1289 1290 "archlinux-web" = dontDistribute super."archlinux-web"; 1290 1291 "archnews" = dontDistribute super."archnews"; 1291 1292 "arff" = dontDistribute super."arff"; 1293 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1292 1294 "argon" = dontDistribute super."argon"; 1293 1295 "argparser" = dontDistribute super."argparser"; 1294 1296 "arguedit" = dontDistribute super."arguedit"; ··· 2440 2442 "digit" = dontDistribute super."digit"; 2441 2443 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2442 2444 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2445 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2443 2446 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2444 2447 "dingo-core" = dontDistribute super."dingo-core"; 2445 2448 "dingo-example" = dontDistribute super."dingo-example"; ··· 2693 2696 "error-loc" = dontDistribute super."error-loc"; 2694 2697 "error-location" = dontDistribute super."error-location"; 2695 2698 "error-message" = dontDistribute super."error-message"; 2699 + "error-util" = dontDistribute super."error-util"; 2696 2700 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2697 2701 "ersatz" = dontDistribute super."ersatz"; 2698 2702 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4439 4443 "io-reactive" = dontDistribute super."io-reactive"; 4440 4444 "io-region" = dontDistribute super."io-region"; 4441 4445 "io-storage" = dontDistribute super."io-storage"; 4446 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4442 4447 "io-streams-http" = dontDistribute super."io-streams-http"; 4443 4448 "io-throttle" = dontDistribute super."io-throttle"; 4444 4449 "ioctl" = dontDistribute super."ioctl"; ··· 5704 5709 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5705 5710 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5706 5711 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5712 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5707 5713 "persistent-map" = dontDistribute super."persistent-map"; 5708 5714 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5709 5715 "persistent-odbc" = dontDistribute super."persistent-odbc"; ··· 5938 5944 "prof2dot" = dontDistribute super."prof2dot"; 5939 5945 "prof2pretty" = dontDistribute super."prof2pretty"; 5940 5946 "profiteur" = dontDistribute super."profiteur"; 5947 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5941 5948 "progress" = dontDistribute super."progress"; 5942 5949 "progressbar" = dontDistribute super."progressbar"; 5943 5950 "progression" = dontDistribute super."progression"; ··· 6352 6359 "rspp" = dontDistribute super."rspp"; 6353 6360 "rss" = dontDistribute super."rss"; 6354 6361 "rss2irc" = dontDistribute super."rss2irc"; 6362 + "rtcm" = dontDistribute super."rtcm"; 6355 6363 "rtld" = dontDistribute super."rtld"; 6356 6364 "rtlsdr" = dontDistribute super."rtlsdr"; 6357 6365 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7936 7944 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7937 7945 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7938 7946 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7947 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7939 7948 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7940 7949 "yesod-comments" = dontDistribute super."yesod-comments"; 7941 7950 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7942 7951 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7952 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7943 7953 "yesod-crud" = dontDistribute super."yesod-crud"; 7944 7954 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7945 7955 "yesod-csp" = dontDistribute super."yesod-csp"; 7946 7956 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7947 7957 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7948 7958 "yesod-examples" = dontDistribute super."yesod-examples"; 7959 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7949 7960 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7950 7961 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7951 7962 "yesod-json" = dontDistribute super."yesod-json";
+11
pkgs/development/haskell-modules/configuration-lts-3.12.nix
··· 1100 1100 "aeson-diff" = dontDistribute super."aeson-diff"; 1101 1101 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1102 1102 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1103 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1103 1104 "aeson-lens" = dontDistribute super."aeson-lens"; 1104 1105 "aeson-native" = dontDistribute super."aeson-native"; 1105 1106 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1288 1289 "archlinux-web" = dontDistribute super."archlinux-web"; 1289 1290 "archnews" = dontDistribute super."archnews"; 1290 1291 "arff" = dontDistribute super."arff"; 1292 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1291 1293 "argon" = dontDistribute super."argon"; 1292 1294 "argparser" = dontDistribute super."argparser"; 1293 1295 "arguedit" = dontDistribute super."arguedit"; ··· 2435 2437 "digit" = dontDistribute super."digit"; 2436 2438 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2437 2439 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2440 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2438 2441 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2439 2442 "dingo-core" = dontDistribute super."dingo-core"; 2440 2443 "dingo-example" = dontDistribute super."dingo-example"; ··· 2688 2691 "error-loc" = dontDistribute super."error-loc"; 2689 2692 "error-location" = dontDistribute super."error-location"; 2690 2693 "error-message" = dontDistribute super."error-message"; 2694 + "error-util" = dontDistribute super."error-util"; 2691 2695 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2692 2696 "ersatz" = dontDistribute super."ersatz"; 2693 2697 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4432 4436 "io-reactive" = dontDistribute super."io-reactive"; 4433 4437 "io-region" = dontDistribute super."io-region"; 4434 4438 "io-storage" = dontDistribute super."io-storage"; 4439 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4435 4440 "io-streams-http" = dontDistribute super."io-streams-http"; 4436 4441 "io-throttle" = dontDistribute super."io-throttle"; 4437 4442 "ioctl" = dontDistribute super."ioctl"; ··· 5695 5700 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5696 5701 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5697 5702 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5703 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5698 5704 "persistent-map" = dontDistribute super."persistent-map"; 5699 5705 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5700 5706 "persistent-odbc" = dontDistribute super."persistent-odbc"; ··· 5929 5935 "prof2dot" = dontDistribute super."prof2dot"; 5930 5936 "prof2pretty" = dontDistribute super."prof2pretty"; 5931 5937 "profiteur" = dontDistribute super."profiteur"; 5938 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5932 5939 "progress" = dontDistribute super."progress"; 5933 5940 "progressbar" = dontDistribute super."progressbar"; 5934 5941 "progression" = dontDistribute super."progression"; ··· 6343 6350 "rspp" = dontDistribute super."rspp"; 6344 6351 "rss" = dontDistribute super."rss"; 6345 6352 "rss2irc" = dontDistribute super."rss2irc"; 6353 + "rtcm" = dontDistribute super."rtcm"; 6346 6354 "rtld" = dontDistribute super."rtld"; 6347 6355 "rtlsdr" = dontDistribute super."rtlsdr"; 6348 6356 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7923 7931 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7924 7932 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7925 7933 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7934 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7926 7935 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7927 7936 "yesod-comments" = dontDistribute super."yesod-comments"; 7928 7937 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7929 7938 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7939 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7930 7940 "yesod-crud" = dontDistribute super."yesod-crud"; 7931 7941 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7932 7942 "yesod-csp" = dontDistribute super."yesod-csp"; 7933 7943 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7934 7944 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7935 7945 "yesod-examples" = dontDistribute super."yesod-examples"; 7946 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7936 7947 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7937 7948 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7938 7949 "yesod-json" = dontDistribute super."yesod-json";
+11
pkgs/development/haskell-modules/configuration-lts-3.13.nix
··· 1100 1100 "aeson-diff" = dontDistribute super."aeson-diff"; 1101 1101 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1102 1102 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1103 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1103 1104 "aeson-lens" = dontDistribute super."aeson-lens"; 1104 1105 "aeson-native" = dontDistribute super."aeson-native"; 1105 1106 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1288 1289 "archlinux-web" = dontDistribute super."archlinux-web"; 1289 1290 "archnews" = dontDistribute super."archnews"; 1290 1291 "arff" = dontDistribute super."arff"; 1292 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1291 1293 "argon" = dontDistribute super."argon"; 1292 1294 "argparser" = dontDistribute super."argparser"; 1293 1295 "arguedit" = dontDistribute super."arguedit"; ··· 2435 2437 "digit" = dontDistribute super."digit"; 2436 2438 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2437 2439 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2440 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2438 2441 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2439 2442 "dingo-core" = dontDistribute super."dingo-core"; 2440 2443 "dingo-example" = dontDistribute super."dingo-example"; ··· 2688 2691 "error-loc" = dontDistribute super."error-loc"; 2689 2692 "error-location" = dontDistribute super."error-location"; 2690 2693 "error-message" = dontDistribute super."error-message"; 2694 + "error-util" = dontDistribute super."error-util"; 2691 2695 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2692 2696 "ersatz" = dontDistribute super."ersatz"; 2693 2697 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4431 4435 "io-reactive" = dontDistribute super."io-reactive"; 4432 4436 "io-region" = dontDistribute super."io-region"; 4433 4437 "io-storage" = dontDistribute super."io-storage"; 4438 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4434 4439 "io-streams-http" = dontDistribute super."io-streams-http"; 4435 4440 "io-throttle" = dontDistribute super."io-throttle"; 4436 4441 "ioctl" = dontDistribute super."ioctl"; ··· 5691 5696 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5692 5697 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5693 5698 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5699 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5694 5700 "persistent-map" = dontDistribute super."persistent-map"; 5695 5701 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5696 5702 "persistent-odbc" = dontDistribute super."persistent-odbc"; ··· 5925 5931 "prof2dot" = dontDistribute super."prof2dot"; 5926 5932 "prof2pretty" = dontDistribute super."prof2pretty"; 5927 5933 "profiteur" = dontDistribute super."profiteur"; 5934 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5928 5935 "progress" = dontDistribute super."progress"; 5929 5936 "progressbar" = dontDistribute super."progressbar"; 5930 5937 "progression" = dontDistribute super."progression"; ··· 6339 6346 "rspp" = dontDistribute super."rspp"; 6340 6347 "rss" = dontDistribute super."rss"; 6341 6348 "rss2irc" = dontDistribute super."rss2irc"; 6349 + "rtcm" = dontDistribute super."rtcm"; 6342 6350 "rtld" = dontDistribute super."rtld"; 6343 6351 "rtlsdr" = dontDistribute super."rtlsdr"; 6344 6352 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7917 7925 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7918 7926 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7919 7927 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7928 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7920 7929 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7921 7930 "yesod-comments" = dontDistribute super."yesod-comments"; 7922 7931 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7923 7932 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7933 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7924 7934 "yesod-crud" = dontDistribute super."yesod-crud"; 7925 7935 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7926 7936 "yesod-csp" = dontDistribute super."yesod-csp"; 7927 7937 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7928 7938 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7929 7939 "yesod-examples" = dontDistribute super."yesod-examples"; 7940 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7930 7941 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7931 7942 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7932 7943 "yesod-json" = dontDistribute super."yesod-json";
+12
pkgs/development/haskell-modules/configuration-lts-3.14.nix
··· 1097 1097 "aeson-casing" = dontDistribute super."aeson-casing"; 1098 1098 "aeson-diff" = dontDistribute super."aeson-diff"; 1099 1099 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1100 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1100 1101 "aeson-lens" = dontDistribute super."aeson-lens"; 1101 1102 "aeson-native" = dontDistribute super."aeson-native"; 1102 1103 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1285 1286 "archlinux-web" = dontDistribute super."archlinux-web"; 1286 1287 "archnews" = dontDistribute super."archnews"; 1287 1288 "arff" = dontDistribute super."arff"; 1289 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1288 1290 "argon" = dontDistribute super."argon"; 1289 1291 "argparser" = dontDistribute super."argparser"; 1290 1292 "arguedit" = dontDistribute super."arguedit"; ··· 2426 2428 "digit" = dontDistribute super."digit"; 2427 2429 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2428 2430 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2431 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2429 2432 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2430 2433 "dingo-core" = dontDistribute super."dingo-core"; 2431 2434 "dingo-example" = dontDistribute super."dingo-example"; ··· 2678 2681 "error-loc" = dontDistribute super."error-loc"; 2679 2682 "error-location" = dontDistribute super."error-location"; 2680 2683 "error-message" = dontDistribute super."error-message"; 2684 + "error-util" = dontDistribute super."error-util"; 2681 2685 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2682 2686 "ersatz" = dontDistribute super."ersatz"; 2683 2687 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4419 4423 "io-reactive" = dontDistribute super."io-reactive"; 4420 4424 "io-region" = dontDistribute super."io-region"; 4421 4425 "io-storage" = dontDistribute super."io-storage"; 4426 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4422 4427 "io-streams-http" = dontDistribute super."io-streams-http"; 4423 4428 "io-throttle" = dontDistribute super."io-throttle"; 4424 4429 "ioctl" = dontDistribute super."ioctl"; ··· 5677 5682 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5678 5683 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5679 5684 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5685 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5680 5686 "persistent-map" = dontDistribute super."persistent-map"; 5681 5687 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5682 5688 "persistent-odbc" = dontDistribute super."persistent-odbc"; 5689 + "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_1"; 5683 5690 "persistent-protobuf" = dontDistribute super."persistent-protobuf"; 5684 5691 "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; 5685 5692 "persistent-redis" = dontDistribute super."persistent-redis"; ··· 5909 5916 "prof2dot" = dontDistribute super."prof2dot"; 5910 5917 "prof2pretty" = dontDistribute super."prof2pretty"; 5911 5918 "profiteur" = dontDistribute super."profiteur"; 5919 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5912 5920 "progress" = dontDistribute super."progress"; 5913 5921 "progressbar" = dontDistribute super."progressbar"; 5914 5922 "progression" = dontDistribute super."progression"; ··· 6323 6331 "rspp" = dontDistribute super."rspp"; 6324 6332 "rss" = dontDistribute super."rss"; 6325 6333 "rss2irc" = dontDistribute super."rss2irc"; 6334 + "rtcm" = dontDistribute super."rtcm"; 6326 6335 "rtld" = dontDistribute super."rtld"; 6327 6336 "rtlsdr" = dontDistribute super."rtlsdr"; 6328 6337 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7897 7906 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7898 7907 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7899 7908 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7909 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7900 7910 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7901 7911 "yesod-comments" = dontDistribute super."yesod-comments"; 7902 7912 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7903 7913 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7914 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7904 7915 "yesod-crud" = dontDistribute super."yesod-crud"; 7905 7916 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7906 7917 "yesod-csp" = dontDistribute super."yesod-csp"; 7907 7918 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7908 7919 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7909 7920 "yesod-examples" = dontDistribute super."yesod-examples"; 7921 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7910 7922 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7911 7923 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7912 7924 "yesod-json" = dontDistribute super."yesod-json";
+12
pkgs/development/haskell-modules/configuration-lts-3.15.nix
··· 1096 1096 "aeson-casing" = dontDistribute super."aeson-casing"; 1097 1097 "aeson-diff" = dontDistribute super."aeson-diff"; 1098 1098 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1099 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1099 1100 "aeson-lens" = dontDistribute super."aeson-lens"; 1100 1101 "aeson-native" = dontDistribute super."aeson-native"; 1101 1102 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1284 1285 "archlinux-web" = dontDistribute super."archlinux-web"; 1285 1286 "archnews" = dontDistribute super."archnews"; 1286 1287 "arff" = dontDistribute super."arff"; 1288 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1287 1289 "argon" = dontDistribute super."argon"; 1288 1290 "argparser" = dontDistribute super."argparser"; 1289 1291 "arguedit" = dontDistribute super."arguedit"; ··· 2425 2427 "digit" = dontDistribute super."digit"; 2426 2428 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2427 2429 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2430 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2428 2431 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2429 2432 "dingo-core" = dontDistribute super."dingo-core"; 2430 2433 "dingo-example" = dontDistribute super."dingo-example"; ··· 2677 2680 "error-loc" = dontDistribute super."error-loc"; 2678 2681 "error-location" = dontDistribute super."error-location"; 2679 2682 "error-message" = dontDistribute super."error-message"; 2683 + "error-util" = dontDistribute super."error-util"; 2680 2684 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2681 2685 "ersatz" = dontDistribute super."ersatz"; 2682 2686 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4413 4417 "io-reactive" = dontDistribute super."io-reactive"; 4414 4418 "io-region" = dontDistribute super."io-region"; 4415 4419 "io-storage" = dontDistribute super."io-storage"; 4420 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4416 4421 "io-streams-http" = dontDistribute super."io-streams-http"; 4417 4422 "io-throttle" = dontDistribute super."io-throttle"; 4418 4423 "ioctl" = dontDistribute super."ioctl"; ··· 5670 5675 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5671 5676 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5672 5677 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5678 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5673 5679 "persistent-map" = dontDistribute super."persistent-map"; 5674 5680 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5675 5681 "persistent-odbc" = dontDistribute super."persistent-odbc"; 5682 + "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_1"; 5676 5683 "persistent-protobuf" = dontDistribute super."persistent-protobuf"; 5677 5684 "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; 5678 5685 "persistent-redis" = dontDistribute super."persistent-redis"; ··· 5902 5909 "prof2dot" = dontDistribute super."prof2dot"; 5903 5910 "prof2pretty" = dontDistribute super."prof2pretty"; 5904 5911 "profiteur" = dontDistribute super."profiteur"; 5912 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5905 5913 "progress" = dontDistribute super."progress"; 5906 5914 "progressbar" = dontDistribute super."progressbar"; 5907 5915 "progression" = dontDistribute super."progression"; ··· 6315 6323 "rspp" = dontDistribute super."rspp"; 6316 6324 "rss" = dontDistribute super."rss"; 6317 6325 "rss2irc" = dontDistribute super."rss2irc"; 6326 + "rtcm" = dontDistribute super."rtcm"; 6318 6327 "rtld" = dontDistribute super."rtld"; 6319 6328 "rtlsdr" = dontDistribute super."rtlsdr"; 6320 6329 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7884 7893 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7885 7894 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7886 7895 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7896 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7887 7897 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7888 7898 "yesod-comments" = dontDistribute super."yesod-comments"; 7889 7899 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7890 7900 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7901 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7891 7902 "yesod-crud" = dontDistribute super."yesod-crud"; 7892 7903 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7893 7904 "yesod-csp" = dontDistribute super."yesod-csp"; 7894 7905 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7895 7906 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7896 7907 "yesod-examples" = dontDistribute super."yesod-examples"; 7908 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7897 7909 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7898 7910 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7899 7911 "yesod-json" = dontDistribute super."yesod-json";
+12
pkgs/development/haskell-modules/configuration-lts-3.16.nix
··· 1095 1095 "aeson-casing" = dontDistribute super."aeson-casing"; 1096 1096 "aeson-diff" = dontDistribute super."aeson-diff"; 1097 1097 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1098 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1098 1099 "aeson-lens" = dontDistribute super."aeson-lens"; 1099 1100 "aeson-native" = dontDistribute super."aeson-native"; 1100 1101 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1283 1284 "archlinux-web" = dontDistribute super."archlinux-web"; 1284 1285 "archnews" = dontDistribute super."archnews"; 1285 1286 "arff" = dontDistribute super."arff"; 1287 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1286 1288 "argon" = dontDistribute super."argon"; 1287 1289 "argparser" = dontDistribute super."argparser"; 1288 1290 "arguedit" = dontDistribute super."arguedit"; ··· 2423 2425 "digit" = dontDistribute super."digit"; 2424 2426 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2425 2427 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2428 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2426 2429 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2427 2430 "dingo-core" = dontDistribute super."dingo-core"; 2428 2431 "dingo-example" = dontDistribute super."dingo-example"; ··· 2675 2678 "error-loc" = dontDistribute super."error-loc"; 2676 2679 "error-location" = dontDistribute super."error-location"; 2677 2680 "error-message" = dontDistribute super."error-message"; 2681 + "error-util" = dontDistribute super."error-util"; 2678 2682 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2679 2683 "ersatz" = dontDistribute super."ersatz"; 2680 2684 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4409 4413 "io-reactive" = dontDistribute super."io-reactive"; 4410 4414 "io-region" = dontDistribute super."io-region"; 4411 4415 "io-storage" = dontDistribute super."io-storage"; 4416 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4412 4417 "io-streams-http" = dontDistribute super."io-streams-http"; 4413 4418 "io-throttle" = dontDistribute super."io-throttle"; 4414 4419 "ioctl" = dontDistribute super."ioctl"; ··· 5662 5667 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5663 5668 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5664 5669 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5670 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5665 5671 "persistent-map" = dontDistribute super."persistent-map"; 5666 5672 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; 5667 5673 "persistent-odbc" = dontDistribute super."persistent-odbc"; 5674 + "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_1"; 5668 5675 "persistent-protobuf" = dontDistribute super."persistent-protobuf"; 5669 5676 "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; 5670 5677 "persistent-redis" = dontDistribute super."persistent-redis"; ··· 5893 5900 "prof2dot" = dontDistribute super."prof2dot"; 5894 5901 "prof2pretty" = dontDistribute super."prof2pretty"; 5895 5902 "profiteur" = dontDistribute super."profiteur"; 5903 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5896 5904 "progress" = dontDistribute super."progress"; 5897 5905 "progressbar" = dontDistribute super."progressbar"; 5898 5906 "progression" = dontDistribute super."progression"; ··· 6304 6312 "rspp" = dontDistribute super."rspp"; 6305 6313 "rss" = dontDistribute super."rss"; 6306 6314 "rss2irc" = dontDistribute super."rss2irc"; 6315 + "rtcm" = dontDistribute super."rtcm"; 6307 6316 "rtld" = dontDistribute super."rtld"; 6308 6317 "rtlsdr" = dontDistribute super."rtlsdr"; 6309 6318 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7867 7876 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7868 7877 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7869 7878 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7879 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7870 7880 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7871 7881 "yesod-comments" = dontDistribute super."yesod-comments"; 7872 7882 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7873 7883 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7884 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7874 7885 "yesod-crud" = dontDistribute super."yesod-crud"; 7875 7886 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7876 7887 "yesod-csp" = dontDistribute super."yesod-csp"; 7877 7888 "yesod-datatables" = dontDistribute super."yesod-datatables"; 7878 7889 "yesod-dsl" = dontDistribute super."yesod-dsl"; 7879 7890 "yesod-examples" = dontDistribute super."yesod-examples"; 7891 + "yesod-form" = doDistribute super."yesod-form_1_4_5"; 7880 7892 "yesod-form-json" = dontDistribute super."yesod-form-json"; 7881 7893 "yesod-goodies" = dontDistribute super."yesod-goodies"; 7882 7894 "yesod-json" = dontDistribute super."yesod-json";
+9
pkgs/development/haskell-modules/configuration-lts-3.2.nix
··· 1108 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1111 1112 "aeson-lens" = dontDistribute super."aeson-lens"; 1112 1113 "aeson-native" = dontDistribute super."aeson-native"; 1113 1114 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1299 1300 "archlinux-web" = dontDistribute super."archlinux-web"; 1300 1301 "archnews" = dontDistribute super."archnews"; 1301 1302 "arff" = dontDistribute super."arff"; 1303 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1302 1304 "argon" = dontDistribute super."argon"; 1303 1305 "argparser" = dontDistribute super."argparser"; 1304 1306 "arguedit" = dontDistribute super."arguedit"; ··· 2479 2481 "digit" = dontDistribute super."digit"; 2480 2482 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2481 2483 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2484 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2482 2485 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2483 2486 "dingo-core" = dontDistribute super."dingo-core"; 2484 2487 "dingo-example" = dontDistribute super."dingo-example"; ··· 2736 2739 "error-loc" = dontDistribute super."error-loc"; 2737 2740 "error-location" = dontDistribute super."error-location"; 2738 2741 "error-message" = dontDistribute super."error-message"; 2742 + "error-util" = dontDistribute super."error-util"; 2739 2743 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2740 2744 "errors" = doDistribute super."errors_2_0_0"; 2741 2745 "ersatz" = dontDistribute super."ersatz"; ··· 4515 4519 "io-reactive" = dontDistribute super."io-reactive"; 4516 4520 "io-region" = dontDistribute super."io-region"; 4517 4521 "io-storage" = dontDistribute super."io-storage"; 4522 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4518 4523 "io-streams-http" = dontDistribute super."io-streams-http"; 4519 4524 "io-throttle" = dontDistribute super."io-throttle"; 4520 4525 "ioctl" = dontDistribute super."ioctl"; ··· 5799 5804 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5800 5805 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5801 5806 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5807 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5802 5808 "persistent-map" = dontDistribute super."persistent-map"; 5803 5809 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5804 5810 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6044 6050 "prof2dot" = dontDistribute super."prof2dot"; 6045 6051 "prof2pretty" = dontDistribute super."prof2pretty"; 6046 6052 "profiteur" = dontDistribute super."profiteur"; 6053 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6047 6054 "progress" = dontDistribute super."progress"; 6048 6055 "progressbar" = dontDistribute super."progressbar"; 6049 6056 "progression" = dontDistribute super."progression"; ··· 6462 6469 "rspp" = dontDistribute super."rspp"; 6463 6470 "rss" = dontDistribute super."rss"; 6464 6471 "rss2irc" = dontDistribute super."rss2irc"; 6472 + "rtcm" = dontDistribute super."rtcm"; 6465 6473 "rtld" = dontDistribute super."rtld"; 6466 6474 "rtlsdr" = dontDistribute super."rtlsdr"; 6467 6475 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8089 8097 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8090 8098 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8091 8099 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8100 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8092 8101 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8093 8102 "yesod-comments" = dontDistribute super."yesod-comments"; 8094 8103 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.3.nix
··· 1108 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1111 1112 "aeson-lens" = dontDistribute super."aeson-lens"; 1112 1113 "aeson-native" = dontDistribute super."aeson-native"; 1113 1114 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1298 1299 "archlinux-web" = dontDistribute super."archlinux-web"; 1299 1300 "archnews" = dontDistribute super."archnews"; 1300 1301 "arff" = dontDistribute super."arff"; 1302 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1301 1303 "argon" = dontDistribute super."argon"; 1302 1304 "argparser" = dontDistribute super."argparser"; 1303 1305 "arguedit" = dontDistribute super."arguedit"; ··· 2475 2477 "digit" = dontDistribute super."digit"; 2476 2478 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2477 2479 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2480 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2478 2481 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2479 2482 "dingo-core" = dontDistribute super."dingo-core"; 2480 2483 "dingo-example" = dontDistribute super."dingo-example"; ··· 2732 2735 "error-loc" = dontDistribute super."error-loc"; 2733 2736 "error-location" = dontDistribute super."error-location"; 2734 2737 "error-message" = dontDistribute super."error-message"; 2738 + "error-util" = dontDistribute super."error-util"; 2735 2739 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2736 2740 "errors" = doDistribute super."errors_2_0_0"; 2737 2741 "ersatz" = dontDistribute super."ersatz"; ··· 4508 4512 "io-reactive" = dontDistribute super."io-reactive"; 4509 4513 "io-region" = dontDistribute super."io-region"; 4510 4514 "io-storage" = dontDistribute super."io-storage"; 4515 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4511 4516 "io-streams-http" = dontDistribute super."io-streams-http"; 4512 4517 "io-throttle" = dontDistribute super."io-throttle"; 4513 4518 "ioctl" = dontDistribute super."ioctl"; ··· 5791 5796 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5792 5797 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5793 5798 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5799 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5794 5800 "persistent-map" = dontDistribute super."persistent-map"; 5795 5801 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5796 5802 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6036 6042 "prof2dot" = dontDistribute super."prof2dot"; 6037 6043 "prof2pretty" = dontDistribute super."prof2pretty"; 6038 6044 "profiteur" = dontDistribute super."profiteur"; 6045 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6039 6046 "progress" = dontDistribute super."progress"; 6040 6047 "progressbar" = dontDistribute super."progressbar"; 6041 6048 "progression" = dontDistribute super."progression"; ··· 6453 6460 "rspp" = dontDistribute super."rspp"; 6454 6461 "rss" = dontDistribute super."rss"; 6455 6462 "rss2irc" = dontDistribute super."rss2irc"; 6463 + "rtcm" = dontDistribute super."rtcm"; 6456 6464 "rtld" = dontDistribute super."rtld"; 6457 6465 "rtlsdr" = dontDistribute super."rtlsdr"; 6458 6466 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8076 8084 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8077 8085 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8078 8086 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8087 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8079 8088 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8080 8089 "yesod-comments" = dontDistribute super."yesod-comments"; 8081 8090 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.4.nix
··· 1108 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1111 1112 "aeson-lens" = dontDistribute super."aeson-lens"; 1112 1113 "aeson-native" = dontDistribute super."aeson-native"; 1113 1114 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1298 1299 "archlinux-web" = dontDistribute super."archlinux-web"; 1299 1300 "archnews" = dontDistribute super."archnews"; 1300 1301 "arff" = dontDistribute super."arff"; 1302 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1301 1303 "argon" = dontDistribute super."argon"; 1302 1304 "argparser" = dontDistribute super."argparser"; 1303 1305 "arguedit" = dontDistribute super."arguedit"; ··· 2474 2476 "digit" = dontDistribute super."digit"; 2475 2477 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2476 2478 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2479 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2477 2480 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2478 2481 "dingo-core" = dontDistribute super."dingo-core"; 2479 2482 "dingo-example" = dontDistribute super."dingo-example"; ··· 2731 2734 "error-loc" = dontDistribute super."error-loc"; 2732 2735 "error-location" = dontDistribute super."error-location"; 2733 2736 "error-message" = dontDistribute super."error-message"; 2737 + "error-util" = dontDistribute super."error-util"; 2734 2738 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2735 2739 "errors" = doDistribute super."errors_2_0_0"; 2736 2740 "ersatz" = dontDistribute super."ersatz"; ··· 4507 4511 "io-reactive" = dontDistribute super."io-reactive"; 4508 4512 "io-region" = dontDistribute super."io-region"; 4509 4513 "io-storage" = dontDistribute super."io-storage"; 4514 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4510 4515 "io-streams-http" = dontDistribute super."io-streams-http"; 4511 4516 "io-throttle" = dontDistribute super."io-throttle"; 4512 4517 "ioctl" = dontDistribute super."ioctl"; ··· 5790 5795 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5791 5796 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5792 5797 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5798 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5793 5799 "persistent-map" = dontDistribute super."persistent-map"; 5794 5800 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5795 5801 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6035 6041 "prof2dot" = dontDistribute super."prof2dot"; 6036 6042 "prof2pretty" = dontDistribute super."prof2pretty"; 6037 6043 "profiteur" = dontDistribute super."profiteur"; 6044 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6038 6045 "progress" = dontDistribute super."progress"; 6039 6046 "progressbar" = dontDistribute super."progressbar"; 6040 6047 "progression" = dontDistribute super."progression"; ··· 6452 6459 "rspp" = dontDistribute super."rspp"; 6453 6460 "rss" = dontDistribute super."rss"; 6454 6461 "rss2irc" = dontDistribute super."rss2irc"; 6462 + "rtcm" = dontDistribute super."rtcm"; 6455 6463 "rtld" = dontDistribute super."rtld"; 6456 6464 "rtlsdr" = dontDistribute super."rtlsdr"; 6457 6465 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8072 8080 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8073 8081 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8074 8082 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8083 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8075 8084 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8076 8085 "yesod-comments" = dontDistribute super."yesod-comments"; 8077 8086 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.5.nix
··· 1108 1108 "aeson-diff" = dontDistribute super."aeson-diff"; 1109 1109 "aeson-extra" = dontDistribute super."aeson-extra"; 1110 1110 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1111 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1111 1112 "aeson-lens" = dontDistribute super."aeson-lens"; 1112 1113 "aeson-native" = dontDistribute super."aeson-native"; 1113 1114 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1297 1298 "archlinux-web" = dontDistribute super."archlinux-web"; 1298 1299 "archnews" = dontDistribute super."archnews"; 1299 1300 "arff" = dontDistribute super."arff"; 1301 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1300 1302 "argon" = dontDistribute super."argon"; 1301 1303 "argparser" = dontDistribute super."argparser"; 1302 1304 "arguedit" = dontDistribute super."arguedit"; ··· 2471 2473 "digit" = dontDistribute super."digit"; 2472 2474 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2473 2475 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2476 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2474 2477 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2475 2478 "dingo-core" = dontDistribute super."dingo-core"; 2476 2479 "dingo-example" = dontDistribute super."dingo-example"; ··· 2728 2731 "error-loc" = dontDistribute super."error-loc"; 2729 2732 "error-location" = dontDistribute super."error-location"; 2730 2733 "error-message" = dontDistribute super."error-message"; 2734 + "error-util" = dontDistribute super."error-util"; 2731 2735 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2732 2736 "errors" = doDistribute super."errors_2_0_0"; 2733 2737 "ersatz" = dontDistribute super."ersatz"; ··· 4496 4500 "io-reactive" = dontDistribute super."io-reactive"; 4497 4501 "io-region" = dontDistribute super."io-region"; 4498 4502 "io-storage" = dontDistribute super."io-storage"; 4503 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4499 4504 "io-streams-http" = dontDistribute super."io-streams-http"; 4500 4505 "io-throttle" = dontDistribute super."io-throttle"; 4501 4506 "ioctl" = dontDistribute super."ioctl"; ··· 5776 5781 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5777 5782 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5778 5783 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5784 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5779 5785 "persistent-map" = dontDistribute super."persistent-map"; 5780 5786 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5781 5787 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6018 6024 "prof2dot" = dontDistribute super."prof2dot"; 6019 6025 "prof2pretty" = dontDistribute super."prof2pretty"; 6020 6026 "profiteur" = dontDistribute super."profiteur"; 6027 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6021 6028 "progress" = dontDistribute super."progress"; 6022 6029 "progressbar" = dontDistribute super."progressbar"; 6023 6030 "progression" = dontDistribute super."progression"; ··· 6435 6442 "rspp" = dontDistribute super."rspp"; 6436 6443 "rss" = dontDistribute super."rss"; 6437 6444 "rss2irc" = dontDistribute super."rss2irc"; 6445 + "rtcm" = dontDistribute super."rtcm"; 6438 6446 "rtld" = dontDistribute super."rtld"; 6439 6447 "rtlsdr" = dontDistribute super."rtlsdr"; 6440 6448 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8049 8057 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8050 8058 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8051 8059 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8060 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8052 8061 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8053 8062 "yesod-comments" = dontDistribute super."yesod-comments"; 8054 8063 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.6.nix
··· 1107 1107 "aeson-diff" = dontDistribute super."aeson-diff"; 1108 1108 "aeson-extra" = dontDistribute super."aeson-extra"; 1109 1109 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1110 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1110 1111 "aeson-lens" = dontDistribute super."aeson-lens"; 1111 1112 "aeson-native" = dontDistribute super."aeson-native"; 1112 1113 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1296 1297 "archlinux-web" = dontDistribute super."archlinux-web"; 1297 1298 "archnews" = dontDistribute super."archnews"; 1298 1299 "arff" = dontDistribute super."arff"; 1300 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1299 1301 "argon" = dontDistribute super."argon"; 1300 1302 "argparser" = dontDistribute super."argparser"; 1301 1303 "arguedit" = dontDistribute super."arguedit"; ··· 2469 2471 "digit" = dontDistribute super."digit"; 2470 2472 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2471 2473 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2474 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2472 2475 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2473 2476 "dingo-core" = dontDistribute super."dingo-core"; 2474 2477 "dingo-example" = dontDistribute super."dingo-example"; ··· 2726 2729 "error-loc" = dontDistribute super."error-loc"; 2727 2730 "error-location" = dontDistribute super."error-location"; 2728 2731 "error-message" = dontDistribute super."error-message"; 2732 + "error-util" = dontDistribute super."error-util"; 2729 2733 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2730 2734 "ersatz" = dontDistribute super."ersatz"; 2731 2735 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4487 4491 "io-reactive" = dontDistribute super."io-reactive"; 4488 4492 "io-region" = dontDistribute super."io-region"; 4489 4493 "io-storage" = dontDistribute super."io-storage"; 4494 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4490 4495 "io-streams-http" = dontDistribute super."io-streams-http"; 4491 4496 "io-throttle" = dontDistribute super."io-throttle"; 4492 4497 "ioctl" = dontDistribute super."ioctl"; ··· 5763 5768 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5764 5769 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5765 5770 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5771 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5766 5772 "persistent-map" = dontDistribute super."persistent-map"; 5767 5773 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5768 5774 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 6004 6010 "prof2dot" = dontDistribute super."prof2dot"; 6005 6011 "prof2pretty" = dontDistribute super."prof2pretty"; 6006 6012 "profiteur" = dontDistribute super."profiteur"; 6013 + "profunctors" = doDistribute super."profunctors_5_1_1"; 6007 6014 "progress" = dontDistribute super."progress"; 6008 6015 "progressbar" = dontDistribute super."progressbar"; 6009 6016 "progression" = dontDistribute super."progression"; ··· 6421 6428 "rspp" = dontDistribute super."rspp"; 6422 6429 "rss" = dontDistribute super."rss"; 6423 6430 "rss2irc" = dontDistribute super."rss2irc"; 6431 + "rtcm" = dontDistribute super."rtcm"; 6424 6432 "rtld" = dontDistribute super."rtld"; 6425 6433 "rtlsdr" = dontDistribute super."rtlsdr"; 6426 6434 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8032 8040 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8033 8041 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8034 8042 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8043 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8035 8044 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8036 8045 "yesod-comments" = dontDistribute super."yesod-comments"; 8037 8046 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.7.nix
··· 1106 1106 "aeson-diff" = dontDistribute super."aeson-diff"; 1107 1107 "aeson-extra" = dontDistribute super."aeson-extra"; 1108 1108 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1109 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1109 1110 "aeson-lens" = dontDistribute super."aeson-lens"; 1110 1111 "aeson-native" = dontDistribute super."aeson-native"; 1111 1112 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1294 1295 "archlinux-web" = dontDistribute super."archlinux-web"; 1295 1296 "archnews" = dontDistribute super."archnews"; 1296 1297 "arff" = dontDistribute super."arff"; 1298 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1297 1299 "argon" = dontDistribute super."argon"; 1298 1300 "argparser" = dontDistribute super."argparser"; 1299 1301 "arguedit" = dontDistribute super."arguedit"; ··· 2462 2464 "digit" = dontDistribute super."digit"; 2463 2465 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2464 2466 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2467 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2465 2468 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2466 2469 "dingo-core" = dontDistribute super."dingo-core"; 2467 2470 "dingo-example" = dontDistribute super."dingo-example"; ··· 2718 2721 "error-loc" = dontDistribute super."error-loc"; 2719 2722 "error-location" = dontDistribute super."error-location"; 2720 2723 "error-message" = dontDistribute super."error-message"; 2724 + "error-util" = dontDistribute super."error-util"; 2721 2725 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2722 2726 "ersatz" = dontDistribute super."ersatz"; 2723 2727 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4474 4478 "io-reactive" = dontDistribute super."io-reactive"; 4475 4479 "io-region" = dontDistribute super."io-region"; 4476 4480 "io-storage" = dontDistribute super."io-storage"; 4481 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4477 4482 "io-streams-http" = dontDistribute super."io-streams-http"; 4478 4483 "io-throttle" = dontDistribute super."io-throttle"; 4479 4484 "ioctl" = dontDistribute super."ioctl"; ··· 5746 5751 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5747 5752 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5748 5753 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5754 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5749 5755 "persistent-map" = dontDistribute super."persistent-map"; 5750 5756 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5751 5757 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5985 5991 "prof2dot" = dontDistribute super."prof2dot"; 5986 5992 "prof2pretty" = dontDistribute super."prof2pretty"; 5987 5993 "profiteur" = dontDistribute super."profiteur"; 5994 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5988 5995 "progress" = dontDistribute super."progress"; 5989 5996 "progressbar" = dontDistribute super."progressbar"; 5990 5997 "progression" = dontDistribute super."progression"; ··· 6400 6407 "rspp" = dontDistribute super."rspp"; 6401 6408 "rss" = dontDistribute super."rss"; 6402 6409 "rss2irc" = dontDistribute super."rss2irc"; 6410 + "rtcm" = dontDistribute super."rtcm"; 6403 6411 "rtld" = dontDistribute super."rtld"; 6404 6412 "rtlsdr" = dontDistribute super."rtlsdr"; 6405 6413 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 8005 8013 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 8006 8014 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 8007 8015 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 8016 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 8008 8017 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 8009 8018 "yesod-comments" = dontDistribute super."yesod-comments"; 8010 8019 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+9
pkgs/development/haskell-modules/configuration-lts-3.8.nix
··· 1106 1106 "aeson-diff" = dontDistribute super."aeson-diff"; 1107 1107 "aeson-extra" = dontDistribute super."aeson-extra"; 1108 1108 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1109 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1109 1110 "aeson-lens" = dontDistribute super."aeson-lens"; 1110 1111 "aeson-native" = dontDistribute super."aeson-native"; 1111 1112 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1294 1295 "archlinux-web" = dontDistribute super."archlinux-web"; 1295 1296 "archnews" = dontDistribute super."archnews"; 1296 1297 "arff" = dontDistribute super."arff"; 1298 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1297 1299 "argon" = dontDistribute super."argon"; 1298 1300 "argparser" = dontDistribute super."argparser"; 1299 1301 "arguedit" = dontDistribute super."arguedit"; ··· 2451 2453 "digit" = dontDistribute super."digit"; 2452 2454 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2453 2455 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2456 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2454 2457 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2455 2458 "dingo-core" = dontDistribute super."dingo-core"; 2456 2459 "dingo-example" = dontDistribute super."dingo-example"; ··· 2707 2710 "error-loc" = dontDistribute super."error-loc"; 2708 2711 "error-location" = dontDistribute super."error-location"; 2709 2712 "error-message" = dontDistribute super."error-message"; 2713 + "error-util" = dontDistribute super."error-util"; 2710 2714 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2711 2715 "ersatz" = dontDistribute super."ersatz"; 2712 2716 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4463 4467 "io-reactive" = dontDistribute super."io-reactive"; 4464 4468 "io-region" = dontDistribute super."io-region"; 4465 4469 "io-storage" = dontDistribute super."io-storage"; 4470 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4466 4471 "io-streams-http" = dontDistribute super."io-streams-http"; 4467 4472 "io-throttle" = dontDistribute super."io-throttle"; 4468 4473 "ioctl" = dontDistribute super."ioctl"; ··· 5733 5738 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5734 5739 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5735 5740 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5741 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5736 5742 "persistent-map" = dontDistribute super."persistent-map"; 5737 5743 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5738 5744 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5970 5976 "prof2dot" = dontDistribute super."prof2dot"; 5971 5977 "prof2pretty" = dontDistribute super."prof2pretty"; 5972 5978 "profiteur" = dontDistribute super."profiteur"; 5979 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5973 5980 "progress" = dontDistribute super."progress"; 5974 5981 "progressbar" = dontDistribute super."progressbar"; 5975 5982 "progression" = dontDistribute super."progression"; ··· 6384 6391 "rspp" = dontDistribute super."rspp"; 6385 6392 "rss" = dontDistribute super."rss"; 6386 6393 "rss2irc" = dontDistribute super."rss2irc"; 6394 + "rtcm" = dontDistribute super."rtcm"; 6387 6395 "rtld" = dontDistribute super."rtld"; 6388 6396 "rtlsdr" = dontDistribute super."rtlsdr"; 6389 6397 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7985 7993 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7986 7994 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7987 7995 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7996 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7988 7997 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7989 7998 "yesod-comments" = dontDistribute super."yesod-comments"; 7990 7999 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+10
pkgs/development/haskell-modules/configuration-lts-3.9.nix
··· 1104 1104 "aeson-diff" = dontDistribute super."aeson-diff"; 1105 1105 "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; 1106 1106 "aeson-filthy" = dontDistribute super."aeson-filthy"; 1107 + "aeson-iproute" = dontDistribute super."aeson-iproute"; 1107 1108 "aeson-lens" = dontDistribute super."aeson-lens"; 1108 1109 "aeson-native" = dontDistribute super."aeson-native"; 1109 1110 "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; ··· 1292 1293 "archlinux-web" = dontDistribute super."archlinux-web"; 1293 1294 "archnews" = dontDistribute super."archnews"; 1294 1295 "arff" = dontDistribute super."arff"; 1296 + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; 1295 1297 "argon" = dontDistribute super."argon"; 1296 1298 "argparser" = dontDistribute super."argparser"; 1297 1299 "arguedit" = dontDistribute super."arguedit"; ··· 2446 2448 "digit" = dontDistribute super."digit"; 2447 2449 "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; 2448 2450 "dimensional" = doDistribute super."dimensional_0_13_0_2"; 2451 + "dimensional-codata" = dontDistribute super."dimensional-codata"; 2449 2452 "dimensional-tf" = dontDistribute super."dimensional-tf"; 2450 2453 "dingo-core" = dontDistribute super."dingo-core"; 2451 2454 "dingo-example" = dontDistribute super."dingo-example"; ··· 2701 2704 "error-loc" = dontDistribute super."error-loc"; 2702 2705 "error-location" = dontDistribute super."error-location"; 2703 2706 "error-message" = dontDistribute super."error-message"; 2707 + "error-util" = dontDistribute super."error-util"; 2704 2708 "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; 2705 2709 "ersatz" = dontDistribute super."ersatz"; 2706 2710 "ersatz-toysat" = dontDistribute super."ersatz-toysat"; ··· 4455 4459 "io-reactive" = dontDistribute super."io-reactive"; 4456 4460 "io-region" = dontDistribute super."io-region"; 4457 4461 "io-storage" = dontDistribute super."io-storage"; 4462 + "io-streams" = doDistribute super."io-streams_1_3_2_0"; 4458 4463 "io-streams-http" = dontDistribute super."io-streams-http"; 4459 4464 "io-throttle" = dontDistribute super."io-throttle"; 4460 4465 "ioctl" = dontDistribute super."ioctl"; ··· 5724 5729 "persistent-equivalence" = dontDistribute super."persistent-equivalence"; 5725 5730 "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; 5726 5731 "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; 5732 + "persistent-iproute" = dontDistribute super."persistent-iproute"; 5727 5733 "persistent-map" = dontDistribute super."persistent-map"; 5728 5734 "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; 5729 5735 "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; ··· 5961 5967 "prof2dot" = dontDistribute super."prof2dot"; 5962 5968 "prof2pretty" = dontDistribute super."prof2pretty"; 5963 5969 "profiteur" = dontDistribute super."profiteur"; 5970 + "profunctors" = doDistribute super."profunctors_5_1_1"; 5964 5971 "progress" = dontDistribute super."progress"; 5965 5972 "progressbar" = dontDistribute super."progressbar"; 5966 5973 "progression" = dontDistribute super."progression"; ··· 6375 6382 "rspp" = dontDistribute super."rspp"; 6376 6383 "rss" = dontDistribute super."rss"; 6377 6384 "rss2irc" = dontDistribute super."rss2irc"; 6385 + "rtcm" = dontDistribute super."rtcm"; 6378 6386 "rtld" = dontDistribute super."rtld"; 6379 6387 "rtlsdr" = dontDistribute super."rtlsdr"; 6380 6388 "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; ··· 7975 7983 "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; 7976 7984 "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; 7977 7985 "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; 7986 + "yesod-bin" = doDistribute super."yesod-bin_1_4_14"; 7978 7987 "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; 7979 7988 "yesod-comments" = dontDistribute super."yesod-comments"; 7980 7989 "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; 7981 7990 "yesod-continuations" = dontDistribute super."yesod-continuations"; 7991 + "yesod-core" = doDistribute super."yesod-core_1_4_15_1"; 7982 7992 "yesod-crud" = dontDistribute super."yesod-crud"; 7983 7993 "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; 7984 7994 "yesod-csp" = dontDistribute super."yesod-csp";
+346 -133
pkgs/development/haskell-modules/hackage-packages.nix
··· 10738 10738 ({ mkDerivation, base, Cabal, containers, deepseq, QuickCheck }: 10739 10739 mkDerivation { 10740 10740 pname = "IntervalMap"; 10741 - version = "0.4.0.1"; 10742 - sha256 = "2e57335d4bc32de03c5b36b2d1f299a49d712105798d3fa5245a67ae6a6d0033"; 10741 + version = "0.4.1.0"; 10742 + sha256 = "cbe486ae239e97deeccd6194be2e9933291778f6dd3a0bed7af60caa361ef44f"; 10743 10743 libraryHaskellDepends = [ base containers deepseq ]; 10744 10744 testHaskellDepends = [ base Cabal containers deepseq QuickCheck ]; 10745 10745 homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; ··· 11215 11215 }: 11216 11216 mkDerivation { 11217 11217 pname = "JuicyPixels"; 11218 - version = "3.2.6.3"; 11219 - sha256 = "4bdd5d6c9bd41308365f7d8fc9bc50393f440a96ee4390f0c64122bb08f1657a"; 11218 + version = "3.2.6.4"; 11219 + sha256 = "6268583fd7915913b3d68a399184bfcfebfaa010be9aa10232d76324df65a6ac"; 11220 + revision = "1"; 11221 + editedCabalFile = "98af5e6f6f65e399f518466813f6ada6cfa80ebc1eae6ba98525065f985ced15"; 11220 11222 libraryHaskellDepends = [ 11221 11223 base binary bytestring containers deepseq mtl primitive 11222 11224 transformers vector zlib ··· 14557 14559 }) {}; 14558 14560 14559 14561 "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 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 14565 14566 }: 14566 14567 mkDerivation { 14567 14568 pname = "Paraiso"; 14568 - version = "0.3.1.3"; 14569 - sha256 = "29f2154111be164bf7018b6f4b453af81e5a6931d4252795feead058a48dfa9c"; 14569 + version = "0.3.1.5"; 14570 + sha256 = "4448a2a736f5fec503927d6dc9b5729ef67c818bd2ee14044bcf6c0614951525"; 14570 14571 libraryHaskellDepends = [ 14571 - array base containers control-monad-failure directory fgl filepath 14572 - mtl numeric-prelude random text typelevel-tensor vector 14572 + array base containers directory failure fgl filepath mtl 14573 + numeric-prelude random text typelevel-tensor vector 14573 14574 ]; 14574 14575 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 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 14579 14580 ]; 14580 14581 homepage = "http://www.paraiso-lang.org/wiki/index.php/Main_Page"; 14581 14582 description = "a code generator for partial differential equations solvers"; ··· 21894 21895 license = stdenv.lib.licenses.bsd3; 21895 21896 }) {}; 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 + 21897 21910 "aeson-lens" = callPackage 21898 21911 ({ mkDerivation, aeson, base, bytestring, doctest, lens, text 21899 21912 , unordered-containers, vector ··· 28590 28603 hydraPlatforms = stdenv.lib.platforms.none; 28591 28604 }) {}; 28592 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 + 28593 28620 "argon" = callPackage 28594 28621 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal 28595 28622 , containers, directory, docopt, filepath, ghc, ghc-paths ··· 38336 38363 pname = "bytestring-builder"; 38337 38364 version = "0.10.4.0.1"; 38338 38365 sha256 = "2079e5f8b269b4b90095d69f864dcbddfac2499ef985086af8e5d0ddcc341047"; 38366 + revision = "1"; 38367 + editedCabalFile = "2184b845a3059f681324e4c71d041ec0ee5268208149877a06a5c93618c28e9b"; 38339 38368 libraryHaskellDepends = [ base bytestring deepseq ]; 38340 38369 doHaddock = false; 38341 38370 jailbreak = true; ··· 38350 38379 pname = "bytestring-builder"; 38351 38380 version = "0.10.4.1.0"; 38352 38381 sha256 = "bf728099333a09ba28b8c48b28db52eac86d5e48421f7318e13e825a61ab197e"; 38382 + revision = "1"; 38383 + editedCabalFile = "44ec650d19703746349ce9f3b78ab2deb3f796836cd7120d796f2720e74fdb86"; 38353 38384 libraryHaskellDepends = [ base bytestring deepseq ]; 38354 38385 doHaddock = false; 38355 38386 jailbreak = true; ··· 48691 48722 }: 48692 48723 mkDerivation { 48693 48724 pname = "conduit-iconv"; 48694 - version = "0.1.1.0"; 48695 - sha256 = "90a008befeaf1c51412f646c11c9c66ce595725d397061e2f2af3d7c5b99ca2e"; 48725 + version = "0.1.1.1"; 48726 + sha256 = "54a25274f4f3590a6b35ac86a3753dc867a505867cae5d363f775781f4b6ac05"; 48696 48727 libraryHaskellDepends = [ base bytestring conduit ]; 48697 48728 testHaskellDepends = [ 48698 48729 base bytestring conduit mtl QuickCheck test-framework ··· 59458 59489 license = stdenv.lib.licenses.bsd3; 59459 59490 }) {}; 59460 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 + 59461 59504 "dimensional-tf" = callPackage 59462 59505 ({ mkDerivation, base, numtype-tf, time }: 59463 59506 mkDerivation { ··· 65583 65626 hydraPlatforms = stdenv.lib.platforms.none; 65584 65627 }) {}; 65585 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 + 65586 65641 "errorcall-eq-instance_0_1_0" = callPackage 65587 65642 ({ mkDerivation, base, hspec, QuickCheck }: 65588 65643 mkDerivation { ··· 76943 76998 }) {}; 76944 76999 76945 77000 "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 77001 ({ mkDerivation, aeson, base, exceptions, extra, fast-logger 76974 77002 , filepath, monad-logger, monad-parallel, mtl, optparse-applicative 76975 77003 , pipes, pipes-concurrency, temporary, text, time ··· 77142 77170 "git-vogue" = callPackage 77143 77171 ({ mkDerivation, base, bifunctors, Cabal, containers, cpphs, Diff 77144 77172 , 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 77173 + , hscolour, hspec, optparse-applicative, process, split, strict 77174 + , stylish-haskell, temporary, text, transformers, unix 77147 77175 }: 77148 77176 mkDerivation { 77149 77177 pname = "git-vogue"; 77150 - version = "0.2.0.1"; 77151 - sha256 = "2c99b2cdd585c00d819ea492516ce3075f20bdf3187c6472ffb7453779f034d0"; 77178 + version = "0.2.1.0"; 77179 + sha256 = "cb42012a44e2b106963c3f4ee94dfbd5efba05715eda6753f9b4485e9a45bcd9"; 77152 77180 isLibrary = true; 77153 77181 isExecutable = true; 77154 77182 libraryHaskellDepends = [ 77155 - base containers directory filepath formatting ghc-mod hlint mtl 77156 - optparse-applicative process split stylish-haskell text 77157 - transformers unix 77183 + base containers directory filepath formatting optparse-applicative 77184 + process split text transformers unix 77158 77185 ]; 77159 77186 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 77187 + base bifunctors Cabal cpphs Diff directory ghc-mod haskell-src-exts 77188 + hlint hscolour optparse-applicative strict stylish-haskell text 77163 77189 ]; 77164 77190 testHaskellDepends = [ 77165 77191 base containers directory filepath hspec process temporary 77166 - transformers unix 77167 77192 ]; 77168 - jailbreak = true; 77169 - homepage = "https://github.com/anchor/git-vogue"; 77193 + homepage = "https://github.com/oswynb/git-vogue"; 77170 77194 description = "A framework for pre-commit checks"; 77171 77195 license = stdenv.lib.licenses.bsd3; 77172 77196 hydraPlatforms = stdenv.lib.platforms.none; ··· 81333 81357 pname = "groundhog-postgresql"; 81334 81358 version = "0.7.0.2"; 81335 81359 sha256 = "312045c39c973596e8e92b8001776bb86898e3c8766e0a42c71e63b343918da3"; 81360 + revision = "1"; 81361 + editedCabalFile = "014cf49927d870d99d906064fc27ee219f7145e71a409cc69ae3ed0cdc0699ca"; 81336 81362 libraryHaskellDepends = [ 81337 81363 attoparsec base blaze-builder bytestring containers groundhog 81338 81364 monad-control monad-logger postgresql-libpq postgresql-simple ··· 95330 95356 }: 95331 95357 mkDerivation { 95332 95358 pname = "hledger-ui"; 95333 - version = "0.27"; 95334 - sha256 = "691f842116178037a338db298dc179b304b10349d98d3df1a4981ca57b57df4b"; 95359 + version = "0.27.1"; 95360 + sha256 = "98721c60eb3d30005f51fc1468c6d8a95d87088a2bfa0c95c734569820fd9c4b"; 95335 95361 isLibrary = false; 95336 95362 isExecutable = true; 95337 95363 executableHaskellDepends = [ ··· 95339 95365 hledger hledger-lib HUnit lens pretty-show safe split time 95340 95366 transformers vector vty 95341 95367 ]; 95342 - jailbreak = true; 95343 95368 homepage = "http://hledger.org"; 95344 95369 description = "Curses-style user interface for the hledger accounting tool"; 95345 95370 license = "GPL"; ··· 109331 109356 license = "GPL"; 109332 109357 }) {}; 109333 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 + 109334 109377 "incremental-sat-solver" = callPackage 109335 109378 ({ mkDerivation, base, containers, mtl }: 109336 109379 mkDerivation { ··· 110596 110639 license = stdenv.lib.licenses.bsd3; 110597 110640 }) {}; 110598 110641 110599 - "io-streams" = callPackage 110642 + "io-streams_1_3_2_0" = callPackage 110600 110643 ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder 110601 110644 , deepseq, directory, filepath, HUnit, mtl, network, primitive 110602 110645 , process, QuickCheck, test-framework, test-framework-hunit ··· 110620 110663 ]; 110621 110664 description = "Simple, composable, and easy-to-use stream I/O"; 110622 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; 110623 110694 }) {}; 110624 110695 110625 110696 "io-streams-http" = callPackage ··· 119609 119680 }: 119610 119681 mkDerivation { 119611 119682 pname = "libravatar"; 119612 - version = "0.1.0.1"; 119613 - sha256 = "a58713664cab79ddc03c4faa92175a81fe179b51b852ce46570486cb3bb42d03"; 119614 - revision = "1"; 119615 - editedCabalFile = "decdd92e332caef49c016d1779e401dc3288b753e73317d639e279a8048a766d"; 119683 + version = "0.1.0.2"; 119684 + sha256 = "3df4437eb2345e46f4a2964c4c8d61b8e56ac936d63c9902227c74eed9671885"; 119616 119685 libraryHaskellDepends = [ 119617 119686 base bytestring crypto-api dns network-uri pureMD5 random SHA url 119618 119687 utf8-string ··· 122603 122672 pname = "lol"; 122604 122673 version = "0.1.0.0"; 122605 122674 sha256 = "be1a72e80ca1f3471b1b630f0407fa6e152ce6410ea7aee86fabda002dff12d0"; 122675 + revision = "1"; 122676 + editedCabalFile = "f70d927711c82b11f9d38d398bf8d450788482693cdbde540331ca50674b8e68"; 122606 122677 libraryHaskellDepends = [ 122607 122678 arithmoi base constraints containers data-default deepseq 122608 122679 MonadRandom mtl numeric-prelude QuickCheck random reflection repa ··· 123302 123373 }: 123303 123374 mkDerivation { 123304 123375 pname = "luminance"; 123305 - version = "0.7.1"; 123306 - sha256 = "36aabb520ede1cd9dfe6e6c5dc6a45d21c06500e1fdf66ce497e3081d27d56a0"; 123376 + version = "0.7.2"; 123377 + sha256 = "0ae406e8958c1e6f2520a01d74a55b70d158198ef0d08bbaf30452dc54e9deab"; 123307 123378 libraryHaskellDepends = [ 123308 123379 base containers contravariant dlist gl linear mtl resourcet 123309 123380 semigroups transformers vector void ··· 127681 127752 ({ mkDerivation, base, containers, directory, filepath, tconfig }: 127682 127753 mkDerivation { 127683 127754 pname = "minimal-configuration"; 127684 - version = "0.1.1"; 127685 - sha256 = "83b4efb30c599c0262e63f5cad7583fa1b065dfa869029be52c54d302808271b"; 127686 - revision = "1"; 127687 - editedCabalFile = "12049d8491610c2789c61e4736586d3fa8b1122c5c7657647c3de8d21073ef80"; 127755 + version = "0.1.2"; 127756 + sha256 = "7debae44339df6a1c35e99be9807df430fac30d6c27b606f36fe23deed4d928e"; 127688 127757 libraryHaskellDepends = [ 127689 127758 base containers directory filepath tconfig 127690 127759 ]; 127691 - jailbreak = true; 127692 127760 description = "Minimal ini like configuration library with a few extras"; 127693 - license = stdenv.lib.licenses.bsd3; 127761 + license = "unknown"; 127694 127762 }) {}; 127695 127763 127696 127764 "minimorph" = callPackage ··· 137451 137519 }: 137452 137520 mkDerivation { 137453 137521 pname = "opencog-atomspace"; 137454 - version = "0.1.0.1"; 137455 - sha256 = "23fe1b2e746b29b6e4a9339aba4c5274b9369572a53856c87aa00a561057b505"; 137522 + version = "0.1.0.2"; 137523 + sha256 = "fc7d96645ef0c14e56ffdbcad9537f0ea766616ac3f1dc105e817a53990a30d1"; 137456 137524 libraryHaskellDepends = [ 137457 137525 base containers directory filepath mtl template-haskell 137458 137526 transformers ··· 142707 142775 license = stdenv.lib.licenses.bsd3; 142708 142776 }) {}; 142709 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 + 142710 142795 "persistent-map" = callPackage 142711 142796 ({ mkDerivation, base, binary, containers, directory, EdisonAPI 142712 142797 , EdisonCore, filepath, LRU, mtl, stm-io-hooks ··· 143199 143284 maintainers = with stdenv.lib.maintainers; [ psibi ]; 143200 143285 }) {}; 143201 143286 143202 - HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143287 + "persistent-postgresql_2_2_1_1" = callPackage 143203 143288 ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit 143204 143289 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143205 143290 HDBC-sqlite3 json loli mps mtl process safe StateVar stm ··· 143209 143294 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143210 143295 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 143211 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"; 143212 143319 libraryHaskellDepends = [ 143213 143320 aeson base blaze-builder bytestring conduit containers 143214 143321 HDBC-sqlite3 json loli mps mtl process safe StateVar stm ··· 149317 149424 hydraPlatforms = stdenv.lib.platforms.none; 149318 149425 }) {}; 149319 149426 149320 - "profunctors" = callPackage 149427 + "profunctors_5_1_1" = callPackage 149321 149428 ({ mkDerivation, base, comonad, distributive, tagged, transformers 149322 149429 }: 149323 149430 mkDerivation { ··· 149330 149437 homepage = "http://github.com/ekmett/profunctors/"; 149331 149438 description = "Profunctors"; 149332 149439 license = stdenv.lib.licenses.bsd3; 149440 + hydraPlatforms = stdenv.lib.platforms.none; 149333 149441 }) {}; 149334 149442 149335 - "profunctors_5_1_2" = callPackage 149443 + "profunctors" = callPackage 149336 149444 ({ mkDerivation, base, bifunctors, comonad, contravariant 149337 149445 , distributive, tagged, transformers 149338 149446 }: ··· 149347 149455 homepage = "http://github.com/ekmett/profunctors/"; 149348 149456 description = "Profunctors"; 149349 149457 license = stdenv.lib.licenses.bsd3; 149350 - hydraPlatforms = stdenv.lib.platforms.none; 149351 149458 }) {}; 149352 149459 149353 149460 "progress" = callPackage ··· 154015 154122 }) {}; 154016 154123 154017 154124 "reedsolomon" = callPackage 154018 - ({ mkDerivation, base, bytestring, bytestring-mmap, clock, cpu 154125 + ({ mkDerivation, base, bytestring, bytestring-mmap, clock 154019 154126 , criterion, deepseq, exceptions, filepath, gitrev, loop, mtl 154020 154127 , optparse-applicative, primitive, profunctors, QuickCheck, random 154021 154128 , reedsolomon, statistics, tasty, tasty-ant-xml, tasty-hunit ··· 154023 154130 }: 154024 154131 mkDerivation { 154025 154132 pname = "reedsolomon"; 154026 - version = "0.0.1.2"; 154027 - sha256 = "fb5a25543a54367aa18c274d51e46b9adeabd74ef1a6ea0d60390f29cd4a219b"; 154133 + version = "0.0.2.0"; 154134 + sha256 = "f1e61e07374a43ba48d2e8a152a451328ea343432009681c80a87cce8cd85d1c"; 154028 154135 isLibrary = true; 154029 154136 isExecutable = true; 154030 154137 libraryHaskellDepends = [ ··· 154037 154144 optparse-applicative random statistics vector 154038 154145 ]; 154039 154146 testHaskellDepends = [ 154040 - base bytestring cpu exceptions loop mtl primitive profunctors 154147 + base bytestring exceptions loop mtl primitive profunctors 154041 154148 QuickCheck random tasty tasty-ant-xml tasty-hunit tasty-quickcheck 154042 154149 vector 154043 154150 ]; ··· 157769 157876 }: 157770 157877 mkDerivation { 157771 157878 pname = "rethinkdb"; 157772 - version = "2.1.0.2"; 157773 - sha256 = "80689203aafcbf26b555952953012fc1a1272d2e28cd5dcc30fcceb50951fd07"; 157879 + version = "2.2.0.0"; 157880 + sha256 = "a3e629d72bb63150f764c33e2fe507391ee1e77bd4097114fbca73a5d24ca429"; 157774 157881 isLibrary = true; 157775 157882 isExecutable = true; 157776 157883 libraryHaskellDepends = [ ··· 159254 159361 description = "watches an RSS/Atom feed and writes it to an IRC channel"; 159255 159362 license = stdenv.lib.licenses.bsd3; 159256 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; 159257 159377 }) {}; 159258 159378 159259 159379 "rtld" = callPackage ··· 171892 172012 }: 171893 172013 mkDerivation { 171894 172014 pname = "sscgi"; 171895 - version = "0.3.0"; 171896 - sha256 = "f90432d5f11e1f5c411e4478180d8882d573bdacc250cfac27800408bb99705e"; 172015 + version = "0.3.1"; 172016 + sha256 = "0925d1a384fae39255bd927f2ffa787e84d270fbd747e703f32ae41af06fcf3b"; 171897 172017 libraryHaskellDepends = [ 171898 172018 attoparsec base bytestring case-insensitive containers Glob 171899 172019 MonadCatchIO-mtl mtl transformers utf8-string ··· 174043 174163 resourcet stm stm-chans test-framework test-framework-hunit 174044 174164 test-framework-quickcheck2 transformers 174045 174165 ]; 174166 + doHaddock = false; 174167 + doCheck = false; 174046 174168 homepage = "https://github.com/wowus/stm-conduit"; 174047 174169 description = "Introduces conduits to channels, and promotes using conduits concurrently"; 174048 174170 license = stdenv.lib.licenses.bsd3; ··· 174658 174780 }) {}; 174659 174781 174660 174782 "streaming" = callPackage 174661 - ({ mkDerivation, base, bytestring, mmorph, mtl, time, transformers 174783 + ({ mkDerivation, base, bytestring, containers, exceptions, mmorph 174784 + , mtl, resourcet, time, transformers, transformers-base 174662 174785 }: 174663 174786 mkDerivation { 174664 174787 pname = "streaming"; 174665 - version = "0.1.2.2"; 174666 - sha256 = "1d67401731689b4904fff6fa45ed7257c0c076e4e619714c48443804b6e94beb"; 174788 + version = "0.1.3.3"; 174789 + sha256 = "7199654f1bfbbed976264a49eab8de8c53a350e156115fe5a9da0a5a1798e507"; 174667 174790 libraryHaskellDepends = [ 174668 - base bytestring mmorph mtl time transformers 174791 + base bytestring containers exceptions mmorph mtl resourcet time 174792 + transformers transformers-base 174669 174793 ]; 174670 174794 homepage = "https://github.com/michaelt/streaming"; 174671 - description = "an elementary streaming prelude and a general monad transformer for streaming applications"; 174795 + description = "an elementary streaming prelude and a general stream type"; 174672 174796 license = stdenv.lib.licenses.bsd3; 174673 174797 }) {}; 174674 174798 174675 174799 "streaming-bytestring" = callPackage 174676 - ({ mkDerivation, base, bytestring, deepseq, mmorph, mtl, streaming 174677 - , transformers 174800 + ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl 174801 + , resourcet, streaming, transformers, transformers-base 174678 174802 }: 174679 174803 mkDerivation { 174680 174804 pname = "streaming-bytestring"; 174681 - version = "0.1.2.2"; 174682 - sha256 = "db5ab6c378458e57c4441f49b8564b9acfb5e64079b2c5c651d116ad0908c48d"; 174805 + version = "0.1.3.0"; 174806 + sha256 = "6573ebde6c87e608c0b82b02c25ac15094b93f1e99bd57aab275ca68d2630a13"; 174683 174807 libraryHaskellDepends = [ 174684 - base bytestring deepseq mmorph mtl streaming transformers 174808 + base bytestring deepseq exceptions mmorph mtl resourcet streaming 174809 + transformers transformers-base 174685 174810 ]; 174686 174811 homepage = "https://github.com/michaelt/streaming-bytestring"; 174687 174812 description = "effectful byte steams, or: bytestring io done right"; ··· 174993 175118 }: 174994 175119 mkDerivation { 174995 175120 pname = "streaming-utils"; 174996 - version = "0.1.2.2"; 174997 - sha256 = "98aa08e5fb3665b7aa39934f657daf9473553a54946dd3102833e66c7cc65e4e"; 175121 + version = "0.1.3.0"; 175122 + sha256 = "f591d4e31aada0be4b0b9ac28b23a6b16d3c26db0f37b3ccb9e05239ab81e75b"; 174998 175123 libraryHaskellDepends = [ 174999 175124 aeson attoparsec base bytestring http-client http-client-tls 175000 175125 json-stream mtl pipes streaming streaming-bytestring transformers ··· 179758 179883 179759 179884 "templatepg" = callPackage 179760 179885 ({ mkDerivation, base, binary, bytestring, haskell-src-meta, mtl 179761 - , network, old-locale, parsec, regex-compat, regex-posix 179762 - , template-haskell, time, utf8-string 179886 + , network, parsec, regex-compat, regex-posix, template-haskell 179887 + , time, utf8-string 179763 179888 }: 179764 179889 mkDerivation { 179765 179890 pname = "templatepg"; 179766 - version = "0.2.6"; 179767 - sha256 = "67317c39b93db3a74ec7fc39f37cd273c6ee6673e539c1c1c6433d6a8b8eaac4"; 179891 + version = "0.2.7"; 179892 + sha256 = "d0b35e35bff5ac9d2605c54fa20586d6286376ae1362dad0e069a65dc9e1002f"; 179768 179893 libraryHaskellDepends = [ 179769 - base binary bytestring haskell-src-meta mtl network old-locale 179770 - parsec regex-compat regex-posix template-haskell time utf8-string 179894 + base binary bytestring haskell-src-meta mtl network parsec 179895 + regex-compat regex-posix template-haskell time utf8-string 179771 179896 ]; 179772 179897 homepage = "https://github.com/jekor/templatepg"; 179773 179898 HDBC-sqlite3 json loli mps mtl process safe StateVar stm 179774 - license = stdenv.lib.licenses.bsd3; 179899 + license = stdenv.lib.licenses.mit; 179775 179900 hydraPlatforms = stdenv.lib.platforms.none; 179776 179901 }) {}; 179777 179902 ··· 190488 190613 }: 190489 190614 mkDerivation { 190490 190615 pname = "validation"; 190491 - version = "0.5.1"; 190492 - sha256 = "0b170b835eb2df60b0b620ac7e64127926f7f7e5e682ee712acd53999422dd25"; 190616 + version = "0.5.2"; 190617 + sha256 = "dd1a5857ead5b9ceec3839c9b6af7f3096bbc5694e37e34dfd4be7c1d5f35437"; 190493 190618 libraryHaskellDepends = [ 190494 190619 base bifunctors lens mtl semigroupoids semigroups transformers 190495 190620 ]; ··· 191167 191292 ({ mkDerivation, base, fftw, primitive, storable-complex, vector }: 191168 191293 mkDerivation { 191169 191294 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 191295 version = "0.1.3.5"; 191184 191296 sha256 = "f4d88d3122c2ea3a92a5dffd78743e8942f261fd7d00724c6aa317adbc59abfe"; 191185 191297 libraryHaskellDepends = [ base primitive storable-complex vector ]; ··· 191187 191299 homepage = "http://hackage.haskell.org/package/vector-fftw"; 191188 191300 description = "A binding to the fftw library for one-dimensional vectors"; 191189 191301 license = stdenv.lib.licenses.bsd3; 191190 - hydraPlatforms = stdenv.lib.platforms.none; 191191 191302 }) {inherit (pkgs) fftw;}; 191192 191303 191193 191304 "vector-functorlazy" = callPackage ··· 195801 195912 pname = "warp-tls"; 195802 195913 version = "3.1.4"; 195803 195914 sha256 = "7572b8893160a07051a60323e91553b8911d87d58712c64f997ecced1a5febd7"; 195915 + revision = "1"; 195916 + editedCabalFile = "39cf89625ffec9af354d3e502b6974ca122adf0241c9e1e6815bf4c11fb34535"; 195804 195917 libraryHaskellDepends = [ 195805 195918 base bytestring cprng-aes data-default-class network 195806 195919 streaming-commons tls wai warp ··· 197809 197922 ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 197810 197923 , amazonka-swf, base, basic-prelude, bytestring, conduit 197811 197924 , conduit-extra, exceptions, fast-logger, formatting, http-conduit 197812 - , lens, monad-control, monad-logger, mtl, mtl-compat 197925 + , http-types, lens, monad-control, monad-logger, mtl, mtl-compat 197813 197926 , optparse-applicative, resourcet, safe, shelly, tasty, tasty-hunit 197814 197927 , text, time, transformers, transformers-base, unordered-containers 197815 197928 , uuid, yaml 197816 197929 }: 197817 197930 mkDerivation { 197818 197931 pname = "wolf"; 197819 - version = "0.2.1"; 197820 - sha256 = "e4ab9971eab661b1c614b02d2f3bb9457a85d8479855cc5f0a3656a05205cbe5"; 197932 + version = "0.2.2"; 197933 + sha256 = "73a4d33c24eef17da4f09544f478a65ab73935cc720f94d7a62977917b80428b"; 197821 197934 isLibrary = true; 197822 197935 isExecutable = true; 197823 197936 libraryHaskellDepends = [ 197824 197937 aeson amazonka amazonka-core amazonka-s3 amazonka-swf base 197825 197938 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 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 197829 197943 ]; 197830 197944 executableHaskellDepends = [ 197831 197945 aeson amazonka-core base basic-prelude bytestring ··· 203943 204057 hydraPlatforms = stdenv.lib.platforms.none; 203944 204058 }) {}; 203945 204059 203946 - "yesod-bin" = callPackage 204060 + "yesod-bin_1_4_14" = callPackage 203947 204061 ({ mkDerivation, async, attoparsec, base, base64-bytestring 203948 204062 , blaze-builder, bytestring, Cabal, conduit, conduit-extra 203949 204063 , containers, data-default-class, deepseq, directory, file-embed ··· 203959 204073 pname = "yesod-bin"; 203960 204074 version = "1.4.14"; 203961 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"; 203962 204110 isLibrary = false; 203963 204111 isExecutable = true; 203964 204112 executableHaskellDepends = [ ··· 204752 204900 hydraPlatforms = stdenv.lib.platforms.none; 204753 204901 }) {}; 204754 204902 204755 - "yesod-core" = callPackage 204903 + "yesod-core_1_4_15_1" = callPackage 204756 204904 ({ mkDerivation, aeson, async, auto-update, base, blaze-builder 204757 204905 , blaze-html, blaze-markup, byteable, bytestring, case-insensitive 204758 204906 , cereal, clientsession, conduit, conduit-extra, containers, cookie ··· 204769 204917 pname = "yesod-core"; 204770 204918 version = "1.4.15.1"; 204771 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"; 204772 204960 libraryHaskellDepends = [ 204773 204961 aeson auto-update base blaze-builder blaze-html blaze-markup 204774 204962 byteable bytestring case-insensitive cereal clientsession conduit ··· 205150 205338 hydraPlatforms = stdenv.lib.platforms.none; 205151 205339 }) {}; 205152 205340 205153 - "yesod-form" = callPackage 205341 + "yesod-form_1_4_5" = callPackage 205154 205342 ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html 205155 205343 , blaze-markup, byteable, bytestring, containers, data-default 205156 205344 , email-validate, hspec, network-uri, persistent, resourcet ··· 205161 205349 pname = "yesod-form"; 205162 205350 version = "1.4.5"; 205163 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"; 205164 205377 libraryHaskellDepends = [ 205165 205378 aeson attoparsec base blaze-builder blaze-html blaze-markup 205166 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 17 # This seperates "what to build" (the exact gem versions) from "how to build" 18 18 # (to make gems behave if necessary). 19 19 20 - { lib, fetchurl, writeScript, ruby, libxml2, libxslt, python, stdenv, which 20 + { lib, fetchurl, writeScript, ruby, kerberos, libxml2, libxslt, python, stdenv, which 21 21 , libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick 22 22 , pkgconfig , ncurses, xapian, gpgme, utillinux, fetchpatch, tzdata, icu, libffi 23 23 , cmake, libssh2, openssl, mysql, darwin ··· 103 103 --replace 'which gpg2' \ 104 104 '${which}/bin/which gpg2' 105 105 ''; 106 + }; 107 + 108 + timfel-krb5-auth = attrs: { 109 + buildInputs = [ kerberos ]; 106 110 }; 107 111 108 112 therubyracer = attrs: {
+9 -6
pkgs/development/libraries/indilib/default.nix
··· 1 1 { stdenv, fetchurl, cmake, cfitsio, libusb, zlib, boost, libnova 2 - , libjpeg, gsl }: 2 + , curl, libjpeg, gsl }: 3 3 4 4 stdenv.mkDerivation { 5 - name = "indilib-1.0.0"; 5 + name = "indilib-1.1.0"; 6 6 7 7 src = fetchurl { 8 - url = mirror://sourceforge/indi/libindi_1.0.0.tar.gz; 9 - sha256 = "0f66jykpjk8mv50lc3rywbqj9mqr4p2n1igfb1222h5fs83c1jhm"; 8 + url = mirror://sourceforge/indi/libindi_1.1.0.tar.gz; 9 + sha256 = "1bs6lkwqd4aashg93mqqkc7nrg7fbx9mdw85qs5263jqa6sr780w"; 10 10 }; 11 11 12 12 patches = [ ./udev-dir.patch ] ; 13 13 14 - propagatedBuildInputs = [ cmake cfitsio libusb zlib boost 14 + buildInputs = [ curl cmake cfitsio libusb zlib boost 15 15 libnova libjpeg gsl ]; 16 16 17 17 meta = { 18 - homepage = http://indi.sf.net; 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; 19 22 }; 20 23 }
+2 -2
pkgs/development/libraries/libassuan/default.nix
··· 1 1 { fetchurl, stdenv, pth, libgpgerror }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "libassuan-2.3.0"; 4 + name = "libassuan-2.4.2"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://gnupg/libassuan/${name}.tar.bz2"; 8 - sha256 = "0lh4698pgb2wjrrrbdk14llizad5l74f8pdbg4ma4zq4fbsrkjc7"; 8 + sha256 = "086bbcdnvs48qq5g4iac7dpk76j0q3jrp16mchdvyx0b720xq1mv"; 9 9 }; 10 10 11 11 buildInputs = [ libgpgerror pth ];
+2 -2
pkgs/development/libraries/openssl/1.0.2.x.nix
··· 8 8 stdenv.cross; 9 9 in 10 10 stdenv.mkDerivation rec { 11 - name = "openssl-1.0.2d"; 11 + name = "openssl-1.0.2e"; 12 12 13 13 src = fetchurl { 14 14 urls = [ 15 15 "http://www.openssl.org/source/${name}.tar.gz" 16 16 "http://openssl.linux-mirror.org/source/${name}.tar.gz" 17 17 ]; 18 - sha1 = "d01d17b44663e8ffa6a33a5a30053779d9593c3d"; 18 + sha256 = "1zqb1rff1wikc62a7vj5qxd1k191m8qif5d05mwdxz2wnzywlg72"; 19 19 }; 20 20 21 21 patches = optional stdenv.isCygwin ./1.0.1-cygwin64.patch;
+2 -2
pkgs/development/libraries/openssl/default.nix
··· 8 8 stdenv.cross; 9 9 in 10 10 stdenv.mkDerivation rec { 11 - name = "openssl-1.0.1p"; 11 + name = "openssl-1.0.1q"; 12 12 13 13 src = fetchurl { 14 14 urls = [ 15 15 "http://www.openssl.org/source/${name}.tar.gz" 16 16 "http://openssl.linux-mirror.org/source/${name}.tar.gz" 17 17 ]; 18 - sha1 = "9d1977cc89242cd11471269ece2ed4650947c046"; 18 + sha256 = "1dvz0hx7fjxag06b51pawy154y6d2xajm5rwxmfnlq7ax628nrdk"; 19 19 }; 20 20 21 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}: 1 + {stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}: 2 2 stdenv.mkDerivation rec { 3 3 name = "kcov-${version}"; 4 4 version = "29"; ··· 8 8 sha256 = "0nspf1bfq8zv7zmcmvkbgg3c90k10qcd56gyg8ln5z64nadvha9d"; 9 9 }; 10 10 11 - buildInputs = [ cmake pkgconfig libelf zlib curl elfutils python libiberty binutils ]; 11 + preConfigure = "patchShebangs src/bin-to-c-source.py"; 12 + buildInputs = [ cmake pkgconfig zlib curl elfutils python libiberty binutils ]; 12 13 13 14 meta = with stdenv.lib; { 14 15 description = "code coverage tester for compiled programs, Python scripts and shell scripts";
+119 -38
pkgs/development/tools/chefdk/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - chef (12.0.3) 5 - chef-zero (~> 3.2) 4 + builder (3.2.2) 5 + chef (12.5.1) 6 + chef-config (= 12.5.1) 7 + chef-zero (~> 4.2, >= 4.2.2) 6 8 diff-lcs (~> 1.2, >= 1.2.4) 7 9 erubis (~> 2.7) 8 - ffi-yajl (~> 1.2) 10 + ffi-yajl (~> 2.2) 9 11 highline (~> 1.6, >= 1.6.9) 10 12 mixlib-authentication (~> 1.3) 11 13 mixlib-cli (~> 1.4) 12 - mixlib-config (~> 2.0) 13 14 mixlib-log (~> 1.3) 14 - mixlib-shellout (>= 2.0.0.rc.0, < 3.0) 15 + mixlib-shellout (~> 2.0) 15 16 net-ssh (~> 2.6) 16 17 net-ssh-multi (~> 1.1) 17 - ohai (~> 8.0) 18 + ohai (>= 8.6.0.alpha.1, < 9) 18 19 plist (~> 3.1.0) 19 20 pry (~> 0.9) 20 - chef-dk (0.4.0) 21 - chef (~> 12.0) 22 - cookbook-omnifetch (~> 0.2) 23 - ffi-yajl (~> 1.0) 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) 24 38 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) 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) 30 53 mixlib-log (~> 1.3) 31 54 rack 32 55 uuidtools (~> 2.1) 56 + cheffish (1.6.0) 57 + chef-zero (~> 4.3) 33 58 coderay (1.1.0) 34 - cookbook-omnifetch (0.2.0) 59 + cookbook-omnifetch (0.2.2) 35 60 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 61 diff-lcs (1.2.5) 41 62 erubis (2.7.0) 42 - ffi (1.9.6) 43 - ffi-yajl (1.4.0) 44 - ffi (~> 1.5) 63 + ffi (1.9.10) 64 + ffi-yajl (2.2.2) 45 65 libyajl2 (~> 1.2) 46 - hashie (2.1.2) 47 - highline (1.7.1) 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) 48 74 ipaddress (0.8.0) 49 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) 50 80 method_source (0.8.2) 51 - mime-types (2.4.3) 81 + mime-types (2.99) 52 82 minitar (0.5.4) 53 83 mixlib-authentication (1.3.0) 54 84 mixlib-log 55 85 mixlib-cli (1.5.0) 56 - mixlib-config (2.1.0) 86 + mixlib-config (2.2.1) 87 + mixlib-install (0.7.0) 57 88 mixlib-log (1.6.0) 58 - mixlib-shellout (2.0.1) 59 - net-dhcp (1.3.2) 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) 60 94 net-ssh (2.9.2) 61 95 net-ssh-gateway (1.2.0) 62 96 net-ssh (>= 2.6.5) 63 - net-ssh-multi (1.2.0) 97 + net-ssh-multi (1.2.1) 64 98 net-ssh (>= 2.6.5) 65 99 net-ssh-gateway (>= 1.2.0) 66 - ohai (8.1.1) 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) 67 104 ffi (~> 1.9) 68 - ffi-yajl (~> 1.1) 105 + ffi-yajl (~> 2.2) 69 106 ipaddress 70 107 mime-types (~> 2.0) 71 108 mixlib-cli 72 109 mixlib-config (~> 2.0) 73 110 mixlib-log 74 111 mixlib-shellout (~> 2.0) 75 - net-dhcp 76 112 rake (~> 10.1) 77 113 systemu (~> 2.6.4) 78 114 wmi-lite (~> 1.0) 115 + paint (1.0.0) 79 116 plist (3.1.0) 80 - pry (0.10.1) 117 + pry (0.10.3) 81 118 coderay (~> 1.1.0) 82 119 method_source (~> 0.8.1) 83 120 slop (~> 3.4) 84 - rack (1.6.0) 121 + rack (1.6.4) 85 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) 86 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) 87 150 slop (3.6.0) 88 - solve (1.2.1) 89 - dep_selector (~> 1.0) 151 + solve (2.0.1) 152 + molinillo (~> 0.2.3) 90 153 semverse (~> 1.1) 91 - systemu (2.6.4) 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) 92 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) 93 171 wmi-lite (1.0.0) 94 172 95 173 PLATFORMS ··· 97 175 98 176 DEPENDENCIES 99 177 chef-dk 178 + 179 + BUNDLED WITH 180 + 1.10.5
+1 -1
pkgs/development/tools/chefdk/default.nix
··· 1 1 { stdenv, lib, bundlerEnv, ruby, perl, autoconf }: 2 2 3 3 bundlerEnv { 4 - name = "chefdk-0.4.0"; 4 + name = "chefdk-0.10.0"; 5 5 6 6 inherit ruby; 7 7 gemfile = ./Gemfile;
+328 -58
pkgs/development/tools/chefdk/gemset.nix
··· 1 1 { 2 + "builder" = { 3 + version = "3.2.2"; 4 + source = { 5 + type = "gem"; 6 + sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; 7 + }; 8 + }; 2 9 "chef" = { 3 - version = "12.0.3"; 10 + version = "12.5.1"; 4 11 source = { 5 12 type = "gem"; 6 - sha256 = "0lqix0mli6fm3lwrf563sjvfkfsrnyzbz8xqkp54q65dkl63ldy0"; 13 + sha256 = "0hf6766wmh1dg7f09hi80s8hn1knvzgnaimbhvc05b4q973k5lmb"; 7 14 }; 8 15 dependencies = [ 16 + "chef-config" 9 17 "chef-zero" 10 18 "diff-lcs" 11 19 "erubis" ··· 13 21 "highline" 14 22 "mixlib-authentication" 15 23 "mixlib-cli" 16 - "mixlib-config" 17 24 "mixlib-log" 18 25 "mixlib-shellout" 19 26 "net-ssh" ··· 21 28 "ohai" 22 29 "plist" 23 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" 24 49 ]; 25 50 }; 26 51 "chef-dk" = { 27 - version = "0.4.0"; 52 + version = "0.10.0"; 28 53 source = { 29 54 type = "gem"; 30 - sha256 = "12fdk5j6cymwk4vk45mvi5i1hs9a88jvg6g7x6pxbc0bp3if2c6a"; 55 + sha256 = "0gxm8dbq7y4bf9wb8zad9q5idsl88f1nm3rvnd2am0xka6bnxv29"; 31 56 }; 32 57 dependencies = [ 33 58 "chef" 59 + "chef-provisioning" 34 60 "cookbook-omnifetch" 61 + "diff-lcs" 35 62 "ffi-yajl" 63 + "minitar" 36 64 "mixlib-cli" 37 65 "mixlib-shellout" 66 + "paint" 38 67 "solve" 39 68 ]; 40 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 + }; 41 86 "chef-zero" = { 42 - version = "3.2.1"; 87 + version = "4.3.2"; 43 88 source = { 44 89 type = "gem"; 45 - sha256 = "04zypmygpxz8nwhjs4gvr8rcb9vqhmz37clbh7k7xxh5b2hs654k"; 90 + sha256 = "1djnxs97kj13vj1hxx4v6978pkwm8i03p76gbirbp3z2zs6jyvjf"; 46 91 }; 47 92 dependencies = [ 48 93 "ffi-yajl" ··· 52 97 "uuidtools" 53 98 ]; 54 99 }; 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"; 100 + "cheffish" = { 101 + version = "1.6.0"; 64 102 source = { 65 103 type = "gem"; 66 - sha256 = "027zz78693jd5g0fwp0xlzig2zijsxcgvfw5854ig37gy5a54wy4"; 104 + sha256 = "10aj660azybnf7444a604pjs8p9pvwm3n4mavy8mp3g30yr07paq"; 67 105 }; 68 106 dependencies = [ 69 - "minitar" 107 + "chef-zero" 70 108 ]; 71 109 }; 72 - "dep-selector-libgecode" = { 73 - version = "1.0.2"; 110 + "coderay" = { 111 + version = "1.1.0"; 74 112 source = { 75 113 type = "gem"; 76 - sha256 = "0755ps446wc4cf26ggmvibr4wmap6ch7zhkh1qmx1p6lic2hr4gn"; 114 + sha256 = "059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s"; 77 115 }; 78 116 }; 79 - "dep_selector" = { 80 - version = "1.0.3"; 117 + "cookbook-omnifetch" = { 118 + version = "0.2.2"; 81 119 source = { 82 120 type = "gem"; 83 - sha256 = "1ic90j3d6hmyxmdxzdz8crwmvw61f4kj0jphk43m6ipcx6bkphzw"; 121 + sha256 = "1ml25xc69nsgbvp9a6w9yi376rav7b659cvyr8qhfb4jaj4l1yd6"; 84 122 }; 85 123 dependencies = [ 86 - "dep-selector-libgecode" 87 - "ffi" 124 + "minitar" 88 125 ]; 89 126 }; 90 127 "diff-lcs" = { ··· 102 139 }; 103 140 }; 104 141 "ffi" = { 105 - version = "1.9.6"; 142 + version = "1.9.10"; 106 143 source = { 107 144 type = "gem"; 108 - sha256 = "1ckw1336rnyv9yvvl614qgkqqi477g4hljv6xsws2vz14ynlvzhj"; 145 + sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; 109 146 }; 110 147 }; 111 148 "ffi-yajl" = { 112 - version = "1.4.0"; 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"; 113 160 source = { 114 161 type = "gem"; 115 - sha256 = "1l289wyzc06v0rn73msqxx4gm48iqgxkd9rins22f13qicpczi5g"; 162 + sha256 = "0j93nsf9j57p7x4aafalvjg8hia2mmqv3aky7fmw2ck5yci343ix"; 116 163 }; 117 164 dependencies = [ 118 165 "ffi" 119 - "libyajl2" 166 + ]; 167 + }; 168 + "gyoku" = { 169 + version = "1.3.1"; 170 + source = { 171 + type = "gem"; 172 + sha256 = "1wn0sl14396g5lyvp8sjmcb1hw9rbyi89gxng91r7w4df4jwiidh"; 173 + }; 174 + dependencies = [ 175 + "builder" 120 176 ]; 121 177 }; 122 178 "hashie" = { 123 - version = "2.1.2"; 179 + version = "3.4.3"; 124 180 source = { 125 181 type = "gem"; 126 - sha256 = "08w9ask37zh5w989b6igair3zf8gwllyzix97rlabxglif9f9qd9"; 182 + sha256 = "1iv5hd0zcryprx9lbcm615r3afc0d6rhc27clywmhhgpx68k8899"; 127 183 }; 128 184 }; 129 185 "highline" = { 130 - version = "1.7.1"; 186 + version = "1.7.8"; 131 187 source = { 132 188 type = "gem"; 133 - sha256 = "1355zfwmm6baq44rp0ny7zdnsipgn5maxk19hvii0jx2bsk417fr"; 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"; 134 204 }; 135 205 }; 136 206 "ipaddress" = { ··· 147 217 sha256 = "0n5j0p8dxf9xzb9n4bkdr8w0a8gg3jzrn9indri3n0fv90gcs5qi"; 148 218 }; 149 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 + }; 150 238 "method_source" = { 151 239 version = "0.8.2"; 152 240 source = { ··· 155 243 }; 156 244 }; 157 245 "mime-types" = { 158 - version = "2.4.3"; 246 + version = "2.99"; 159 247 source = { 160 248 type = "gem"; 161 - sha256 = "16nissnb31wj7kpcaynx4gr67i7pbkzccfg8k7xmplbkla4rmwiq"; 249 + sha256 = "1hravghdnk9qbibxb3ggzv7mysl97djh8n0rsswy3ssjaw7cbvf2"; 162 250 }; 163 251 }; 164 252 "minitar" = { ··· 186 274 }; 187 275 }; 188 276 "mixlib-config" = { 189 - version = "2.1.0"; 277 + version = "2.2.1"; 190 278 source = { 191 279 type = "gem"; 192 - sha256 = "13mb628614nl4dfwyyqpxc7b688ls6cfnjx06j8c13sl003xkp7g"; 280 + sha256 = "0smhnyhw1va94vrd7zapxplbavbs4dc78h9yd1yfv52fzxx16zk3"; 281 + }; 282 + }; 283 + "mixlib-install" = { 284 + version = "0.7.0"; 285 + source = { 286 + type = "gem"; 287 + sha256 = "0ll1p7v7fp3rf11dz8pifz33jhl4bdg779n4hzlnbia2z7xfsa2w"; 193 288 }; 194 289 }; 195 290 "mixlib-log" = { ··· 200 295 }; 201 296 }; 202 297 "mixlib-shellout" = { 203 - version = "2.0.1"; 298 + version = "2.2.5"; 204 299 source = { 205 300 type = "gem"; 206 - sha256 = "16n2zli15504bfzxwj5riq92zz3h8n8xswvs5gi0dp2dhyjd7lp3"; 301 + sha256 = "1is07rar0x8n9h67j4iyrxz2yfgis4bnhh3x7vhbbi6khqqixg79"; 207 302 }; 208 303 }; 209 - "net-dhcp" = { 210 - version = "1.3.2"; 304 + "molinillo" = { 305 + version = "0.2.3"; 211 306 source = { 212 307 type = "gem"; 213 - sha256 = "13mq3kwk6k3cd0vhnj1xq0gvbg2hbynzpnvq6fa6vqakbyc0iznd"; 308 + sha256 = "1ylvnpdn20nna488mkzpq3iy6gr866gmkiv090c7g5h88x1qws0b"; 214 309 }; 215 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 + }; 216 328 "net-ssh" = { 217 329 version = "2.9.2"; 218 330 source = { ··· 231 343 ]; 232 344 }; 233 345 "net-ssh-multi" = { 234 - version = "1.2.0"; 346 + version = "1.2.1"; 235 347 source = { 236 348 type = "gem"; 237 - sha256 = "0927244ac8h3z6wl5cifkblsa95ddpsxr6k8h2fmdvg5wdqs4ydh"; 349 + sha256 = "13kxz9b6kgr9mcds44zpavbndxyi6pvyzyda6bhk1kfmb5c10m71"; 238 350 }; 239 351 dependencies = [ 240 352 "net-ssh" 241 353 "net-ssh-gateway" 242 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 + }; 243 369 }; 244 370 "ohai" = { 245 - version = "8.1.1"; 371 + version = "8.7.0"; 246 372 source = { 247 373 type = "gem"; 248 - sha256 = "1lcbl7lrmy56x6l6ca7miawj9h40ff6nv4b3n6bz3w7fa3vh9xz0"; 374 + sha256 = "1f10kgxh89iwij54yx8q11n1q87653ckvdmdwg8cwz3qlgf4flhy"; 249 375 }; 250 376 dependencies = [ 377 + "chef-config" 251 378 "ffi" 252 379 "ffi-yajl" 253 380 "ipaddress" ··· 256 383 "mixlib-config" 257 384 "mixlib-log" 258 385 "mixlib-shellout" 259 - "net-dhcp" 260 386 "rake" 261 387 "systemu" 262 388 "wmi-lite" 263 389 ]; 264 390 }; 391 + "paint" = { 392 + version = "1.0.0"; 393 + source = { 394 + type = "gem"; 395 + sha256 = "0mhwj6w60q40w4f6jz8xx8bv1kghjvsjc3d8q8pnslax4fkmzbp1"; 396 + }; 397 + }; 265 398 "plist" = { 266 399 version = "3.1.0"; 267 400 source = { ··· 270 403 }; 271 404 }; 272 405 "pry" = { 273 - version = "0.10.1"; 406 + version = "0.10.3"; 274 407 source = { 275 408 type = "gem"; 276 - sha256 = "1j0r5fm0wvdwzbh6d6apnp7c0n150hpm9zxpm5xvcgfqr36jaj8z"; 409 + sha256 = "1x78rvp69ws37kwig18a8hr79qn36vh8g1fn75p485y3b3yiqszg"; 277 410 }; 278 411 dependencies = [ 279 412 "coderay" ··· 282 415 ]; 283 416 }; 284 417 "rack" = { 285 - version = "1.6.0"; 418 + version = "1.6.4"; 286 419 source = { 287 420 type = "gem"; 288 - sha256 = "1f57f8xmrgfgd76s6mq7vx6i266zm4330igw71an1g0kh3a42sbb"; 421 + sha256 = "09bs295yq6csjnkzj7ncj50i6chfxrhmzg1pk6p0vd2lb9ac8pj5"; 289 422 }; 290 423 }; 291 424 "rake" = { ··· 295 428 sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8"; 296 429 }; 297 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 + }; 298 511 "semverse" = { 299 512 version = "1.2.1"; 300 513 source = { ··· 302 515 sha256 = "0s47lprqwmlhnxm3anrhvd3559g51hgrcqn3mq0fy696zkv8vfd8"; 303 516 }; 304 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 + }; 305 538 "slop" = { 306 539 version = "3.6.0"; 307 540 source = { ··· 310 543 }; 311 544 }; 312 545 "solve" = { 313 - version = "1.2.1"; 546 + version = "2.0.1"; 314 547 source = { 315 548 type = "gem"; 316 - sha256 = "0ff5iwhsr6fcp10gd2ivrx1fcw3lm5f5f11srhy2z5dc3v79mcja"; 549 + sha256 = "0009xvg40y59bijds5njnwfshfw68wmj54yz3qy538g9rpxvmqp1"; 317 550 }; 318 551 dependencies = [ 319 - "dep_selector" 552 + "molinillo" 320 553 "semverse" 321 554 ]; 322 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 + }; 323 576 "systemu" = { 324 - version = "2.6.4"; 577 + version = "2.6.5"; 325 578 source = { 326 579 type = "gem"; 327 - sha256 = "16k94azpsy1r958r6ysk4ksnpp54rqmh5hyamad9kwc3lk83i32z"; 580 + sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; 328 581 }; 329 582 }; 330 583 "uuidtools" = { ··· 333 586 type = "gem"; 334 587 sha256 = "0zjvq1jrrnzj69ylmz1xcr30skf9ymmvjmdwbvscncd7zkr8av5g"; 335 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 + ]; 336 606 }; 337 607 "wmi-lite" = { 338 608 version = "1.0.0";
+8 -1
pkgs/games/steam/chrootenv.nix
··· 1 - { lib, buildFHSUserEnv 1 + { lib, buildFHSUserEnv, steam 2 2 , withJava ? false 3 3 , withPrimus ? false 4 4 }: ··· 46 46 47 47 ln -s ../lib64/steam-runtime steamrt/amd64 48 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 49 56 ''; 50 57 51 58 profile = ''
+120 -120
pkgs/games/steam/runtime-generated.nix
··· 247 247 }; 248 248 } 249 249 rec { 250 - name = "libcomerr2_1.42-1ubuntu2+srt4_amd64"; 251 - md5 = "fc890b8ce50abe33c1c60ec45ca1d203"; 250 + name = "libcomerr2_1.42-1ubuntu2.2+srt1_amd64"; 251 + md5 = "12cd8bbe50da1b698d5280c8cd1efe38"; 252 252 source = fetchurl { 253 - url = "http://repo.steampowered.com/steamrt/pool/main/e/e2fsprogs/libcomerr2_1.42-1ubuntu2+srt4_amd64.deb"; 253 + url = "http://repo.steampowered.com/steamrt/pool/main/e/e2fsprogs/libcomerr2_1.42-1ubuntu2.2+srt1_amd64.deb"; 254 254 inherit md5; 255 255 name = "libcomerr2.deb"; 256 256 }; ··· 283 283 }; 284 284 } 285 285 rec { 286 - name = "libdbus-1-3_1.4.18-1ubuntu1.6+srt1_amd64"; 287 - md5 = "31ff871795887c7595908ebef7151186"; 286 + name = "libdbus-1-3_1.4.18-1ubuntu1.7+srt1_amd64"; 287 + md5 = "5082143b56f4d6a72c21244c4b7bc653"; 288 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"; 289 + url = "http://repo.steampowered.com/steamrt/pool/main/d/dbus/libdbus-1-3_1.4.18-1ubuntu1.7+srt1_amd64.deb"; 290 290 inherit md5; 291 291 name = "libdbus-1-3.deb"; 292 292 }; ··· 328 328 }; 329 329 } 330 330 rec { 331 - name = "libexpat1_2.0.1-7.2ubuntu1.1+srt4_amd64"; 332 - md5 = "18307a925d2ce2d432699073fe679b09"; 331 + name = "libexpat1_2.0.1-7.2ubuntu1.2+srt1_amd64"; 332 + md5 = "a7148db45279001346cebc02a7d7c1af"; 333 333 source = fetchurl { 334 - url = "http://repo.steampowered.com/steamrt/pool/main/e/expat/libexpat1_2.0.1-7.2ubuntu1.1+srt4_amd64.deb"; 334 + url = "http://repo.steampowered.com/steamrt/pool/main/e/expat/libexpat1_2.0.1-7.2ubuntu1.2+srt1_amd64.deb"; 335 335 inherit md5; 336 336 name = "libexpat1.deb"; 337 337 }; ··· 373 373 }; 374 374 } 375 375 rec { 376 - name = "libfreetype6_2.4.8-1ubuntu2.2+srt1_amd64"; 377 - md5 = "635e6ee1b6dbb9f609f3b7d738b88d83"; 376 + name = "libfreetype6_2.4.8-1ubuntu2.3+srt1_amd64"; 377 + md5 = "06f7ccb54bba06c1e2673471866039a0"; 378 378 source = fetchurl { 379 - url = "http://repo.steampowered.com/steamrt/pool/main/f/freetype/libfreetype6_2.4.8-1ubuntu2.2+srt1_amd64.deb"; 379 + url = "http://repo.steampowered.com/steamrt/pool/main/f/freetype/libfreetype6_2.4.8-1ubuntu2.3+srt1_amd64.deb"; 380 380 inherit md5; 381 381 name = "libfreetype6.deb"; 382 382 }; ··· 400 400 }; 401 401 } 402 402 rec { 403 - name = "libgcrypt11_1.5.0-3ubuntu0.3+srt1_amd64"; 404 - md5 = "869c080b36c95e90484987fc3a46d17b"; 403 + name = "libgcrypt11_1.5.0-3ubuntu0.4+srt1_amd64"; 404 + md5 = "e97b1a78944b7b07871dd36116b07bfe"; 405 405 source = fetchurl { 406 - url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-3ubuntu0.3+srt1_amd64.deb"; 406 + url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-3ubuntu0.4+srt1_amd64.deb"; 407 407 inherit md5; 408 408 name = "libgcrypt11.deb"; 409 409 }; ··· 787 787 }; 788 788 } 789 789 rec { 790 - name = "libnss3_3.17.1-0ubuntu0.12.04.1+srt1_amd64"; 791 - md5 = "d2583ca89a2aa19abfd497be664b2fcd"; 790 + name = "libnss3_3.19.2-0ubuntu0.12.04.1+srt1_amd64"; 791 + md5 = "ba6be27b60728d1bbdc849354376adf8"; 792 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"; 793 + url = "http://repo.steampowered.com/steamrt/pool/main/n/nss/libnss3_3.19.2-0ubuntu0.12.04.1+srt1_amd64.deb"; 794 794 inherit md5; 795 795 name = "libnss3.deb"; 796 796 }; ··· 868 868 }; 869 869 } 870 870 rec { 871 - name = "libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1+srt4_amd64"; 872 - md5 = "f3f0e80ce2a6be9e830862184223b3ff"; 871 + name = "libpixman-1-0_0.30.2-1ubuntu0.0.0.0.2+srt1_amd64"; 872 + md5 = "52134e1b8190957f069268827f2bde74"; 873 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"; 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 875 inherit md5; 876 876 name = "libpixman-1-0.deb"; 877 877 }; ··· 1057 1057 }; 1058 1058 } 1059 1059 rec { 1060 - name = "libsqlite3-0_3.7.9-2ubuntu1.1+srt4_amd64"; 1061 - md5 = "777bba933183fe2e1ec7cddf7d311609"; 1060 + name = "libsqlite3-0_3.7.9-2ubuntu1.2+srt1_amd64"; 1061 + md5 = "1a9c37c32fa46f7d55a2e384cd6ce5a6"; 1062 1062 source = fetchurl { 1063 - url = "http://repo.steampowered.com/steamrt/pool/main/s/sqlite3/libsqlite3-0_3.7.9-2ubuntu1.1+srt4_amd64.deb"; 1063 + url = "http://repo.steampowered.com/steamrt/pool/main/s/sqlite3/libsqlite3-0_3.7.9-2ubuntu1.2+srt1_amd64.deb"; 1064 1064 inherit md5; 1065 1065 name = "libsqlite3-0.deb"; 1066 1066 }; 1067 1067 } 1068 1068 rec { 1069 - name = "libssl1.0.0_1.0.1-4ubuntu5.21+srt1_amd64"; 1070 - md5 = "0f740796454b18233ab65134c8250889"; 1069 + name = "libssl1.0.0_1.0.1-4ubuntu5.31+srt1_amd64"; 1070 + md5 = "0ea8b768e93487f8108336c5da92b952"; 1071 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"; 1072 + url = "http://repo.steampowered.com/steamrt/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.31+srt1_amd64.deb"; 1073 1073 inherit md5; 1074 1074 name = "libssl1.0.0.deb"; 1075 1075 }; ··· 1102 1102 }; 1103 1103 } 1104 1104 rec { 1105 - name = "libtasn1-3_2.10-1ubuntu1.2+srt1_amd64"; 1106 - md5 = "cd6947eb0f8a2fbb31ac5483d7aad25a"; 1105 + name = "libtasn1-3_2.10-1ubuntu1.4+srt1_amd64"; 1106 + md5 = "6e092ebafe0cf5a49ee9319e2cf6f4fd"; 1107 1107 source = fetchurl { 1108 - url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtasn1-3/libtasn1-3_2.10-1ubuntu1.2+srt1_amd64.deb"; 1108 + url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtasn1-3/libtasn1-3_2.10-1ubuntu1.4+srt1_amd64.deb"; 1109 1109 inherit md5; 1110 1110 name = "libtasn1-3.deb"; 1111 1111 }; ··· 1138 1138 }; 1139 1139 } 1140 1140 rec { 1141 - name = "libtiff4_3.9.5-2ubuntu1.6+srt3_amd64"; 1142 - md5 = "f6f1ba2a0a76245cc05217e6c8385fcc"; 1141 + name = "libtiff4_3.9.5-2ubuntu1.8+srt1_amd64"; 1142 + md5 = "7c44d58a6acf73b6c298cfa03e982e0f"; 1143 1143 source = fetchurl { 1144 - url = "http://repo.steampowered.com/steamrt/pool/main/t/tiff/libtiff4_3.9.5-2ubuntu1.6+srt3_amd64.deb"; 1144 + url = "http://repo.steampowered.com/steamrt/pool/main/t/tiff/libtiff4_3.9.5-2ubuntu1.8+srt1_amd64.deb"; 1145 1145 inherit md5; 1146 1146 name = "libtiff4.deb"; 1147 1147 }; ··· 1210 1210 }; 1211 1211 } 1212 1212 rec { 1213 - name = "libvdpau1_0.4.1-3ubuntu1.1+srt4_amd64"; 1214 - md5 = "ad17ca0b0794852836c8166b530b520d"; 1213 + name = "libvdpau1_0.4.1-3ubuntu1.2+srt1_amd64"; 1214 + md5 = "d31594fc832bfd0bc65c43f2e7f40ac5"; 1215 1215 source = fetchurl { 1216 - url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvdpau/libvdpau1_0.4.1-3ubuntu1.1+srt4_amd64.deb"; 1216 + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvdpau/libvdpau1_0.4.1-3ubuntu1.2+srt1_amd64.deb"; 1217 1217 inherit md5; 1218 1218 name = "libvdpau1.deb"; 1219 1219 }; ··· 1273 1273 }; 1274 1274 } 1275 1275 rec { 1276 - name = "libx11-6_1.4.99.1-0ubuntu2.2+steamrt1+srt4_amd64"; 1277 - md5 = "d1dd7819a0bcd2915c6df05f34bd2932"; 1276 + name = "libx11-6_1.4.99.1-0ubuntu2.3+steamrt1+srt1_amd64"; 1277 + md5 = "22ca2e28aa3f3d70b77632a8772a4a9d"; 1278 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"; 1279 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-6_1.4.99.1-0ubuntu2.3+steamrt1+srt1_amd64.deb"; 1280 1280 inherit md5; 1281 1281 name = "libx11-6.deb"; 1282 1282 }; 1283 1283 } 1284 1284 rec { 1285 - name = "libx11-data_1.4.99.1-0ubuntu2.2+steamrt1+srt4_all"; 1286 - md5 = "e9c006f3f06178fd1a47f4fdffcc9da3"; 1285 + name = "libx11-data_1.4.99.1-0ubuntu2.3+steamrt1+srt1_all"; 1286 + md5 = "c012bbc8654c3c012dc7b5901c486f4d"; 1287 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"; 1288 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-data_1.4.99.1-0ubuntu2.3+steamrt1+srt1_all.deb"; 1289 1289 inherit md5; 1290 1290 name = "libx11-data.deb"; 1291 1291 }; 1292 1292 } 1293 1293 rec { 1294 - name = "libx11-xcb1_1.4.99.1-0ubuntu2.2+steamrt1+srt4_amd64"; 1295 - md5 = "59f62a1b493eeaa0438d4b5e002fe269"; 1294 + name = "libx11-xcb1_1.4.99.1-0ubuntu2.3+steamrt1+srt1_amd64"; 1295 + md5 = "e94af0629e0b59f21c1ccc4f4d4088b5"; 1296 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"; 1297 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-xcb1_1.4.99.1-0ubuntu2.3+steamrt1+srt1_amd64.deb"; 1298 1298 inherit md5; 1299 1299 name = "libx11-xcb1.deb"; 1300 1300 }; ··· 1588 1588 }; 1589 1589 } 1590 1590 rec { 1591 - name = "libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_amd64"; 1592 - md5 = "6b395ceb55a4454c5fe2f4cfe45d2a3d"; 1591 + name = "libxext6_1.3.0-3ubuntu0.2+steamrt1+srt1_amd64"; 1592 + md5 = "b6dcf651f5b9dda20fd39912bf03a4c3"; 1593 1593 source = fetchurl { 1594 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxext/libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_amd64.deb"; 1594 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxext/libxext6_1.3.0-3ubuntu0.2+steamrt1+srt1_amd64.deb"; 1595 1595 inherit md5; 1596 1596 name = "libxext6.deb"; 1597 1597 }; 1598 1598 } 1599 1599 rec { 1600 - name = "libxfixes3_5.0-4ubuntu4.3+srt1_amd64"; 1601 - md5 = "462d20f1f3e38c92f22434fe75c4f932"; 1600 + name = "libxfixes3_5.0-4ubuntu4.4+srt1_amd64"; 1601 + md5 = "a80bcd458215e445daddf4cf0d625758"; 1602 1602 source = fetchurl { 1603 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxfixes/libxfixes3_5.0-4ubuntu4.3+srt1_amd64.deb"; 1603 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxfixes/libxfixes3_5.0-4ubuntu4.4+srt1_amd64.deb"; 1604 1604 inherit md5; 1605 1605 name = "libxfixes3.deb"; 1606 1606 }; ··· 1615 1615 }; 1616 1616 } 1617 1617 rec { 1618 - name = "libxi6_1.7.1.901-1ubuntu1~precise2+srt1_amd64"; 1619 - md5 = "c4aa3fcef9981735073c73d822ac52cb"; 1618 + name = "libxi6_1.7.1.901-1ubuntu1~precise3+srt1_amd64"; 1619 + md5 = "f25d86e540477fe044c0294670b5f1b5"; 1620 1620 source = fetchurl { 1621 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1~precise2+srt1_amd64.deb"; 1621 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1~precise3+srt1_amd64.deb"; 1622 1622 inherit md5; 1623 1623 name = "libxi6.deb"; 1624 1624 }; ··· 1660 1660 }; 1661 1661 } 1662 1662 rec { 1663 - name = "libxrandr2_1.3.2-2ubuntu0.2+srt4_amd64"; 1664 - md5 = "7fde5d0b6ffa9f94f0300edc4de04ad6"; 1663 + name = "libxrandr2_1.3.2-2ubuntu0.3+srt1_amd64"; 1664 + md5 = "bde5d98946e1bfd60a42482339e29787"; 1665 1665 source = fetchurl { 1666 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrandr/libxrandr2_1.3.2-2ubuntu0.2+srt4_amd64.deb"; 1666 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrandr/libxrandr2_1.3.2-2ubuntu0.3+srt1_amd64.deb"; 1667 1667 inherit md5; 1668 1668 name = "libxrandr2.deb"; 1669 1669 }; 1670 1670 } 1671 1671 rec { 1672 - name = "libxrender1_0.9.6-2ubuntu0.1+srt4_amd64"; 1673 - md5 = "a01473ee15ce4a8bb1a1ac2fc8e81bda"; 1672 + name = "libxrender1_0.9.6-2ubuntu0.2+srt1_amd64"; 1673 + md5 = "6781fa18b873dc95da21e82cc61609d6"; 1674 1674 source = fetchurl { 1675 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrender/libxrender1_0.9.6-2ubuntu0.1+srt4_amd64.deb"; 1675 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrender/libxrender1_0.9.6-2ubuntu0.2+srt1_amd64.deb"; 1676 1676 inherit md5; 1677 1677 name = "libxrender1.deb"; 1678 1678 }; ··· 1986 1986 }; 1987 1987 } 1988 1988 rec { 1989 - name = "libcomerr2_1.42-1ubuntu2+srt4_i386"; 1990 - md5 = "165e9ea1f09704a353220b9ff6cf2f1b"; 1989 + name = "libcomerr2_1.42-1ubuntu2.2+srt1_i386"; 1990 + md5 = "a7450fa3b218cc993b252f7f51b4f83a"; 1991 1991 source = fetchurl { 1992 - url = "http://repo.steampowered.com/steamrt/pool/main/e/e2fsprogs/libcomerr2_1.42-1ubuntu2+srt4_i386.deb"; 1992 + url = "http://repo.steampowered.com/steamrt/pool/main/e/e2fsprogs/libcomerr2_1.42-1ubuntu2.2+srt1_i386.deb"; 1993 1993 inherit md5; 1994 1994 name = "libcomerr2.deb"; 1995 1995 }; ··· 2022 2022 }; 2023 2023 } 2024 2024 rec { 2025 - name = "libdbus-1-3_1.4.18-1ubuntu1.6+srt1_i386"; 2026 - md5 = "01a50cab2a169d9b0eff71b5cee000ad"; 2025 + name = "libdbus-1-3_1.4.18-1ubuntu1.7+srt1_i386"; 2026 + md5 = "36d5b7a27a90cc6069c14317c5b182e8"; 2027 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"; 2028 + url = "http://repo.steampowered.com/steamrt/pool/main/d/dbus/libdbus-1-3_1.4.18-1ubuntu1.7+srt1_i386.deb"; 2029 2029 inherit md5; 2030 2030 name = "libdbus-1-3.deb"; 2031 2031 }; ··· 2067 2067 }; 2068 2068 } 2069 2069 rec { 2070 - name = "libexpat1_2.0.1-7.2ubuntu1.1+srt4_i386"; 2071 - md5 = "4478766ffb8f96db66de0b0f2ccfb290"; 2070 + name = "libexpat1_2.0.1-7.2ubuntu1.2+srt1_i386"; 2071 + md5 = "44b8336cf9a2340a693528f2ebe19da2"; 2072 2072 source = fetchurl { 2073 - url = "http://repo.steampowered.com/steamrt/pool/main/e/expat/libexpat1_2.0.1-7.2ubuntu1.1+srt4_i386.deb"; 2073 + url = "http://repo.steampowered.com/steamrt/pool/main/e/expat/libexpat1_2.0.1-7.2ubuntu1.2+srt1_i386.deb"; 2074 2074 inherit md5; 2075 2075 name = "libexpat1.deb"; 2076 2076 }; ··· 2112 2112 }; 2113 2113 } 2114 2114 rec { 2115 - name = "libfreetype6_2.4.8-1ubuntu2.2+srt1_i386"; 2116 - md5 = "257bf20101de39017f83e9934cea06e4"; 2115 + name = "libfreetype6_2.4.8-1ubuntu2.3+srt1_i386"; 2116 + md5 = "2b1dd9e53e6a94443e9959de83d8621f"; 2117 2117 source = fetchurl { 2118 - url = "http://repo.steampowered.com/steamrt/pool/main/f/freetype/libfreetype6_2.4.8-1ubuntu2.2+srt1_i386.deb"; 2118 + url = "http://repo.steampowered.com/steamrt/pool/main/f/freetype/libfreetype6_2.4.8-1ubuntu2.3+srt1_i386.deb"; 2119 2119 inherit md5; 2120 2120 name = "libfreetype6.deb"; 2121 2121 }; ··· 2139 2139 }; 2140 2140 } 2141 2141 rec { 2142 - name = "libgcrypt11_1.5.0-3ubuntu0.3+srt1_i386"; 2143 - md5 = "a857ecbbc060af329d774fefe41b4d5d"; 2142 + name = "libgcrypt11_1.5.0-3ubuntu0.4+srt1_i386"; 2143 + md5 = "3ee78c6888bcf55b43fb6830059c65e3"; 2144 2144 source = fetchurl { 2145 - url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-3ubuntu0.3+srt1_i386.deb"; 2145 + url = "http://repo.steampowered.com/steamrt/pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-3ubuntu0.4+srt1_i386.deb"; 2146 2146 inherit md5; 2147 2147 name = "libgcrypt11.deb"; 2148 2148 }; ··· 2526 2526 }; 2527 2527 } 2528 2528 rec { 2529 - name = "libnss3_3.17.1-0ubuntu0.12.04.1+srt1_i386"; 2530 - md5 = "9be8a7f5cc84852f14af1fc7e9c44f56"; 2529 + name = "libnss3_3.19.2-0ubuntu0.12.04.1+srt1_i386"; 2530 + md5 = "35330de1ca02b0034f468c0df11882bd"; 2531 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"; 2532 + url = "http://repo.steampowered.com/steamrt/pool/main/n/nss/libnss3_3.19.2-0ubuntu0.12.04.1+srt1_i386.deb"; 2533 2533 inherit md5; 2534 2534 name = "libnss3.deb"; 2535 2535 }; ··· 2607 2607 }; 2608 2608 } 2609 2609 rec { 2610 - name = "libpixman-1-0_0.30.2-1ubuntu0.0.0.0.1+srt4_i386"; 2611 - md5 = "cbad5a39d1cb49085cd4b50a2e1d96a6"; 2610 + name = "libpixman-1-0_0.30.2-1ubuntu0.0.0.0.2+srt1_i386"; 2611 + md5 = "630fa4416398e12dfae1816acdac1d89"; 2612 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"; 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 2614 inherit md5; 2615 2615 name = "libpixman-1-0.deb"; 2616 2616 }; ··· 2796 2796 }; 2797 2797 } 2798 2798 rec { 2799 - name = "libsqlite3-0_3.7.9-2ubuntu1.1+srt4_i386"; 2800 - md5 = "466f9b4663bdf71a2cb36437e8f70fca"; 2799 + name = "libsqlite3-0_3.7.9-2ubuntu1.2+srt1_i386"; 2800 + md5 = "6653a03901b263af6fce56e6c394e9b3"; 2801 2801 source = fetchurl { 2802 - url = "http://repo.steampowered.com/steamrt/pool/main/s/sqlite3/libsqlite3-0_3.7.9-2ubuntu1.1+srt4_i386.deb"; 2802 + url = "http://repo.steampowered.com/steamrt/pool/main/s/sqlite3/libsqlite3-0_3.7.9-2ubuntu1.2+srt1_i386.deb"; 2803 2803 inherit md5; 2804 2804 name = "libsqlite3-0.deb"; 2805 2805 }; 2806 2806 } 2807 2807 rec { 2808 - name = "libssl1.0.0_1.0.1-4ubuntu5.21+srt1_i386"; 2809 - md5 = "c530243255161578fbddfa9f7200d30c"; 2808 + name = "libssl1.0.0_1.0.1-4ubuntu5.31+srt1_i386"; 2809 + md5 = "40b412b5964f9f48ef4f5997702da3d5"; 2810 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"; 2811 + url = "http://repo.steampowered.com/steamrt/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.31+srt1_i386.deb"; 2812 2812 inherit md5; 2813 2813 name = "libssl1.0.0.deb"; 2814 2814 }; ··· 2841 2841 }; 2842 2842 } 2843 2843 rec { 2844 - name = "libtasn1-3_2.10-1ubuntu1.2+srt1_i386"; 2845 - md5 = "55364b5ab0d027f6ffaf89444f5c0ad9"; 2844 + name = "libtasn1-3_2.10-1ubuntu1.4+srt1_i386"; 2845 + md5 = "c24dd57cc16746dbead2fbfa571f978a"; 2846 2846 source = fetchurl { 2847 - url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtasn1-3/libtasn1-3_2.10-1ubuntu1.2+srt1_i386.deb"; 2847 + url = "http://repo.steampowered.com/steamrt/pool/main/libt/libtasn1-3/libtasn1-3_2.10-1ubuntu1.4+srt1_i386.deb"; 2848 2848 inherit md5; 2849 2849 name = "libtasn1-3.deb"; 2850 2850 }; ··· 2877 2877 }; 2878 2878 } 2879 2879 rec { 2880 - name = "libtiff4_3.9.5-2ubuntu1.6+srt3_i386"; 2881 - md5 = "50f018955b48c06df3b00a45c1999c63"; 2880 + name = "libtiff4_3.9.5-2ubuntu1.8+srt1_i386"; 2881 + md5 = "8374a1fc7909c42faa5ee585eb967b20"; 2882 2882 source = fetchurl { 2883 - url = "http://repo.steampowered.com/steamrt/pool/main/t/tiff/libtiff4_3.9.5-2ubuntu1.6+srt3_i386.deb"; 2883 + url = "http://repo.steampowered.com/steamrt/pool/main/t/tiff/libtiff4_3.9.5-2ubuntu1.8+srt1_i386.deb"; 2884 2884 inherit md5; 2885 2885 name = "libtiff4.deb"; 2886 2886 }; ··· 2949 2949 }; 2950 2950 } 2951 2951 rec { 2952 - name = "libvdpau1_0.4.1-3ubuntu1.1+srt4_i386"; 2953 - md5 = "b627e61dac887be2c3697d3945b4eee6"; 2952 + name = "libvdpau1_0.4.1-3ubuntu1.2+srt1_i386"; 2953 + md5 = "61cd2560476f54dc11b3e859e104daec"; 2954 2954 source = fetchurl { 2955 - url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvdpau/libvdpau1_0.4.1-3ubuntu1.1+srt4_i386.deb"; 2955 + url = "http://repo.steampowered.com/steamrt/pool/main/libv/libvdpau/libvdpau1_0.4.1-3ubuntu1.2+srt1_i386.deb"; 2956 2956 inherit md5; 2957 2957 name = "libvdpau1.deb"; 2958 2958 }; ··· 3012 3012 }; 3013 3013 } 3014 3014 rec { 3015 - name = "libx11-6_1.4.99.1-0ubuntu2.2+steamrt1+srt4_i386"; 3016 - md5 = "ecf312639e19cab505e978dcb75eea4d"; 3015 + name = "libx11-6_1.4.99.1-0ubuntu2.3+steamrt1+srt1_i386"; 3016 + md5 = "cc208840d2883eec6f9770b623c24b9d"; 3017 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"; 3018 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-6_1.4.99.1-0ubuntu2.3+steamrt1+srt1_i386.deb"; 3019 3019 inherit md5; 3020 3020 name = "libx11-6.deb"; 3021 3021 }; 3022 3022 } 3023 3023 rec { 3024 - name = "libx11-data_1.4.99.1-0ubuntu2.2+steamrt1+srt4_all"; 3025 - md5 = "e9c006f3f06178fd1a47f4fdffcc9da3"; 3024 + name = "libx11-data_1.4.99.1-0ubuntu2.3+steamrt1+srt1_all"; 3025 + md5 = "c012bbc8654c3c012dc7b5901c486f4d"; 3026 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"; 3027 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-data_1.4.99.1-0ubuntu2.3+steamrt1+srt1_all.deb"; 3028 3028 inherit md5; 3029 3029 name = "libx11-data.deb"; 3030 3030 }; 3031 3031 } 3032 3032 rec { 3033 - name = "libx11-xcb1_1.4.99.1-0ubuntu2.2+steamrt1+srt4_i386"; 3034 - md5 = "8ce612a1d9c5b392d7d77c9a49eda59d"; 3033 + name = "libx11-xcb1_1.4.99.1-0ubuntu2.3+steamrt1+srt1_i386"; 3034 + md5 = "2ef2ffe569708f8433cfb36e754526ec"; 3035 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"; 3036 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libx11/libx11-xcb1_1.4.99.1-0ubuntu2.3+steamrt1+srt1_i386.deb"; 3037 3037 inherit md5; 3038 3038 name = "libx11-xcb1.deb"; 3039 3039 }; ··· 3327 3327 }; 3328 3328 } 3329 3329 rec { 3330 - name = "libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_i386"; 3331 - md5 = "a68ef50ca2623f2779b5d6668f545c75"; 3330 + name = "libxext6_1.3.0-3ubuntu0.2+steamrt1+srt1_i386"; 3331 + md5 = "7f18f7c6fb6bca8a033e243ca4222057"; 3332 3332 source = fetchurl { 3333 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxext/libxext6_1.3.0-3ubuntu0.1+steamrt1+srt1_i386.deb"; 3333 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxext/libxext6_1.3.0-3ubuntu0.2+steamrt1+srt1_i386.deb"; 3334 3334 inherit md5; 3335 3335 name = "libxext6.deb"; 3336 3336 }; 3337 3337 } 3338 3338 rec { 3339 - name = "libxfixes3_5.0-4ubuntu4.3+srt1_i386"; 3340 - md5 = "263f3532430749f671a83ba3ca48b072"; 3339 + name = "libxfixes3_5.0-4ubuntu4.4+srt1_i386"; 3340 + md5 = "25d8be35a5e5a6bac479d4bdce8dceba"; 3341 3341 source = fetchurl { 3342 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxfixes/libxfixes3_5.0-4ubuntu4.3+srt1_i386.deb"; 3342 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxfixes/libxfixes3_5.0-4ubuntu4.4+srt1_i386.deb"; 3343 3343 inherit md5; 3344 3344 name = "libxfixes3.deb"; 3345 3345 }; ··· 3354 3354 }; 3355 3355 } 3356 3356 rec { 3357 - name = "libxi6_1.7.1.901-1ubuntu1~precise2+srt1_i386"; 3358 - md5 = "f9e20e913df71ed877cd5ec6bd7e823d"; 3357 + name = "libxi6_1.7.1.901-1ubuntu1~precise3+srt1_i386"; 3358 + md5 = "5f82357fd11b009d7fee5020e8ff2c8a"; 3359 3359 source = fetchurl { 3360 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1~precise2+srt1_i386.deb"; 3360 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1~precise3+srt1_i386.deb"; 3361 3361 inherit md5; 3362 3362 name = "libxi6.deb"; 3363 3363 }; ··· 3399 3399 }; 3400 3400 } 3401 3401 rec { 3402 - name = "libxrandr2_1.3.2-2ubuntu0.2+srt4_i386"; 3403 - md5 = "44eee22d721a1f41c569400fed1810ca"; 3402 + name = "libxrandr2_1.3.2-2ubuntu0.3+srt1_i386"; 3403 + md5 = "659bfe8b731e831f32b047e66643ae05"; 3404 3404 source = fetchurl { 3405 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrandr/libxrandr2_1.3.2-2ubuntu0.2+srt4_i386.deb"; 3405 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrandr/libxrandr2_1.3.2-2ubuntu0.3+srt1_i386.deb"; 3406 3406 inherit md5; 3407 3407 name = "libxrandr2.deb"; 3408 3408 }; 3409 3409 } 3410 3410 rec { 3411 - name = "libxrender1_0.9.6-2ubuntu0.1+srt4_i386"; 3412 - md5 = "a7a6e50fde5d43c42a9e8f1202f043e5"; 3411 + name = "libxrender1_0.9.6-2ubuntu0.2+srt1_i386"; 3412 + md5 = "e5ea9172d234d61d6a31d86465428b05"; 3413 3413 source = fetchurl { 3414 - url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrender/libxrender1_0.9.6-2ubuntu0.1+srt4_i386.deb"; 3414 + url = "http://repo.steampowered.com/steamrt/pool/main/libx/libxrender/libxrender1_0.9.6-2ubuntu0.2+srt1_i386.deb"; 3415 3415 inherit md5; 3416 3416 name = "libxrender1.deb"; 3417 3417 };
+10 -12
pkgs/games/steam/steam.nix
··· 1 1 {stdenv, fetchurl, traceDeps ? false}: 2 2 3 - stdenv.mkDerivation rec { 4 - name = "${program}-original-${version}"; 5 - program = "steam"; 3 + let 4 + traceLog = "/tmp/steam-trace-dependencies.log"; 6 5 version = "1.0.0.49"; 7 6 7 + in stdenv.mkDerivation rec { 8 + name = "steam-original-${version}"; 9 + 8 10 src = fetchurl { 9 - url = "http://repo.steampowered.com/steam/pool/steam/s/steam/${program}_${version}.tar.gz"; 11 + url = "http://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz"; 10 12 sha256 = "1c1gl5pwvb5gnnnqf5d9hpcjnfjjgmn4lgx8v0fbx1am5xf3p2gx"; 11 13 }; 12 14 13 - traceLog = "/tmp/steam-trace-dependencies.log"; 15 + makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ]; 14 16 15 - installPhase = '' 16 - make DESTDIR=$out install 17 - mv $out/usr/* $out #*/ 18 - rmdir $out/usr 19 - 17 + postInstall = '' 20 18 rm $out/bin/steamdeps 21 19 ${stdenv.lib.optionalString traceDeps '' 22 20 cat > $out/bin/steamdeps <<EOF 23 - #! /bin/bash 21 + #!${stdenv.shell} 24 22 echo \$1 >> ${traceLog} 25 23 cat \$1 >> ${traceLog} 26 24 echo >> ${traceLog} ··· 32 30 meta = with stdenv.lib; { 33 31 description = "A digital distribution platform"; 34 32 homepage = http://store.steampowered.com/; 35 - license = licenses.unfree; 33 + license = licenses.unfreeRedistributable; 36 34 maintainers = with maintainers; [ jagajaga ]; 37 35 }; 38 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 1 {stdenv, vim, vimPlugins, vim_configurable, buildEnv, writeText, writeScriptBin 2 - , nix-prefetch-scripts }: 2 + , nix-prefetch-hg, nix-prefetch-git }: 3 3 4 4 /* 5 5 ··· 310 310 echom repeat("=", 80) 311 311 endif 312 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" 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 315 let opts.cache_file = g:vim_addon_manager.plugin_root_dir.'/cache' 316 316 let opts.plugin_dictionaries = [] 317 317 ${lib.concatMapStrings (file: "let opts.plugin_dictionaries += map(readfile(\"${file}\"), 'eval(v:val)')\n") namefiles }
+1 -1
pkgs/servers/mpd/default.nix
··· 21 21 , jackSupport ? true, libjack2 22 22 , gmeSupport ? true, game-music-emu 23 23 , icuSupport ? true, icu 24 - , clientSupport ? false, mpd_clientlib 24 + , clientSupport ? true, mpd_clientlib 25 25 , opusSupport ? true, libopus 26 26 }: 27 27
+61 -83
pkgs/tools/X11/bumblebee/default.nix
··· 16 16 # 17 17 # To use at startup, see hardware.bumblebee options. 18 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 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 29 23 # The below should only be non-null in a x86_64 system. On a i686 30 24 # system the above nvidia_x11 and virtualgl will be the i686 packages. 31 25 # TODO: Confusing. Perhaps use "SubArch" instead of i686? 32 26 , nvidia_x11_i686 ? null 33 - , virtualgl_i686 ? null 27 + , primusLib_i686 ? null 34 28 , useDisplayDevice ? false 35 - , extraDeviceOptions ? "" 29 + , extraNvidiaDeviceOptions ? "" 30 + , extraNouveauDeviceOptions ? "" 31 + , useNvidia ? true 36 32 }: 37 - with stdenv.lib; 33 + 38 34 let 39 35 version = "3.2.1"; 40 - name = "bumblebee-${version}"; 41 36 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 - }; 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; }; 58 39 59 - # The environment for the host architecture. 60 - hostEnv = buildEnv { 61 - name = "bumblebee-x64-env"; 62 - paths = [ 63 - nvidia_x11 64 - virtualgl 65 - ]; 66 - }; 40 + primusLibs = lib.makeLibraryPath ([primus] ++ lib.optional (primusLib_i686 != null) primus_i686); 67 41 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; 42 + nvidia_x11s = [nvidia_x11] ++ lib.optional (nvidia_x11_i686 != null) nvidia_x11_i686; 78 43 79 - allEnvs = [hostEnv] ++ optional (i686Env != null) i686Env; 80 - ldPathString = makeLibraryPath allEnvs; 44 + nvidiaLibs = lib.makeLibraryPath nvidia_x11s; 81 45 82 - # By default we don't want to use a display device 83 - deviceOptions = if useDisplayDevice 84 - then "" 85 - else '' 46 + bbdPath = lib.makeSearchPath "bin" [ module_init_tools xorgserver ]; 47 + bbdLibs = lib.makeLibraryPath [ libX11 libXext ]; 86 48 87 - # Disable display device 88 - Option "UseEDID" "false" 89 - Option "UseDisplayDevice" "none" 90 - '' 91 - + extraDeviceOptions; 49 + xmodules = lib.concatStringsSep "," (map (x: "${x}/lib/xorg/modules") ([ xorgserver ] ++ lib.optional (!useNvidia) xf86videonouveau)); 92 50 93 - in stdenv.mkDerivation { 94 - inherit name deviceOptions; 51 + in stdenv.mkDerivation rec { 52 + name = "bumblebee-${version}"; 95 53 96 54 src = fetchurl { 97 55 url = "http://bumblebee-project.org/${name}.tar.gz"; 98 56 sha256 = "03p3gvx99lwlavznrpg9l7jnl1yfg2adcj8jcjj0gxp20wxp060h"; 99 57 }; 100 58 101 - patches = [ ./xopts.patch ./nvidia-conf.patch]; 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 + ''; 102 76 103 77 preConfigure = '' 104 78 # Substitute the path to the actual modinfo program in module.c. ··· 114 88 115 89 # Apply configuration options 116 90 substituteInPlace conf/xorg.conf.nvidia \ 117 - --subst-var deviceOptions 91 + --subst-var nvidiaDeviceOptions 92 + 93 + substituteInPlace conf/xorg.conf.nouveau \ 94 + --subst-var nouveauDeviceOptions 118 95 ''; 119 96 120 97 # Build-time dependencies of bumblebeed and optirun. 121 98 # Note that it has several runtime dependencies. 122 - buildInputs = [ stdenv makeWrapper pkgconfig help2man libX11 glib libbsd ]; 99 + buildInputs = [ libX11 glib libbsd ]; 100 + nativeBuildInputs = [ makeWrapper pkgconfig help2man ]; 123 101 124 102 # The order of LDPATH is very specific: First X11 then the host 125 103 # environment then the optional sub architecture paths. ··· 130 108 # include the sub architecture components. 131 109 configureFlags = [ 132 110 "--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" 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" 137 116 ]; 138 117 139 - # create a wrapper environment for bumblebeed and optirun 118 + CFLAGS = [ 119 + "-DX_MODULE_APPENDS=\\\"${xmodules}\\\"" 120 + "-DX_XKB_DIR=\\\"${xkeyboard_config}/etc/X11/xkb\\\"" 121 + ]; 122 + 140 123 postInstall = '' 141 124 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" 125 + --set XKB_BINDIR "${xkbcomp}/bin" \ 126 + --prefix PATH : "${bbdPath}" \ 127 + --prefix LD_LIBRARY_PATH : "${bbdLibs}" 147 128 148 129 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 - ''); 130 + --prefix PATH : "${virtualgl}/bin" 131 + ''; 156 132 157 - meta = { 133 + meta = with stdenv.lib; { 158 134 homepage = http://github.com/Bumblebee-Project/Bumblebee; 159 135 description = "Daemon for managing Optimus videocards (power-on/off, spawns xservers)"; 160 - license = stdenv.lib.licenses.gpl3; 136 + platforms = platforms.linux; 137 + license = licenses.gpl3; 138 + maintainers = with maintainers; [ abbradar ]; 161 139 }; 162 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 5 # Other distributions do the same. 6 6 { stdenv 7 7 , primusLib 8 - , writeScript 8 + , writeScriptBin 9 9 , primusLib_i686 ? null 10 + , useNvidia ? true 10 11 }: 11 - with stdenv.lib; 12 + 12 13 let 13 - version = "1.0.0748176"; 14 - ldPath = makeLibraryPath ([primusLib] ++ optional (primusLib_i686 != null) primusLib_i686); 15 - primusrun = writeScript "primusrun" 16 - '' 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} 17 20 export LD_LIBRARY_PATH=${ldPath}:$LD_LIBRARY_PATH 18 21 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 - } 22 + ''
+25 -10
pkgs/tools/X11/primus/lib.nix
··· 1 1 { stdenv, fetchgit 2 2 , xlibsWrapper, mesa 3 - , nvidia 3 + , nvidia_x11 ? null 4 + , libX11 4 5 }: 5 - let 6 - version = "1.0.0748176"; 7 - in 6 + 8 7 stdenv.mkDerivation { 9 - name = "primus-lib-${version}"; 8 + name = "primus-lib-20151204"; 9 + 10 10 src = fetchgit { 11 11 url = git://github.com/amonakov/primus.git; 12 - rev = "074817614c014e3a99259388cb18fd54648b659a"; 13 - sha256 = "0mrh432md6zrm16avxyk57mgszrqpgwdjahspchvlaccqxp3x82v"; 12 + rev = "d1afbf6fce2778c0751eddf19db9882e04f18bfd"; 13 + sha256 = "8f095b5e2030cdb155a42a49873832843c1e4dc3087a6fb94d198de982609923"; 14 14 }; 15 15 16 - inherit nvidia mesa; 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 + ''; 17 27 18 - buildInputs = [ xlibsWrapper mesa ]; 19 - builder = ./builder.sh; 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 + }; 20 35 }
+17 -28
pkgs/tools/X11/virtualgl/default.nix
··· 1 - { stdenv, fetchurl, mesa, libX11, openssl, libXext 2 - , libjpeg_turbo, cmake }: 1 + { lib, buildEnv 2 + , virtualglLib 3 + , virtualglLib_i686 ? null 4 + }: 3 5 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 - }; 6 + buildEnv { 7 + name = "virtualgl-${lib.getVersion virtualglLib}"; 13 8 14 - patches = [ ./xshm.patch ./fixturbopath.patch ]; 9 + paths = [ virtualglLib ]; 15 10 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" 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 24 21 ''; 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 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 2 3 3 pythonPackages.buildPythonPackage rec { 4 4 name = "awscli-${version}"; 5 - version = "1.7.47"; 5 + version = "1.9.6"; 6 6 namePrefix = ""; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "aws"; 10 10 repo = "aws-cli"; 11 11 rev = version; 12 - sha256 = "1955y1ar2mqzqgfngpwp8pc78wphh1qdgwwy0gs6i352jaqzkvwi"; 12 + sha256 = "08qclasxf8zdxwmngvynq9n5vv4nwdy68ma7wn7ji40bxmls37g2"; 13 13 }; 14 14 15 15 propagatedBuildInputs = [ 16 - pythonPackages.botocore_1_1_10 16 + pythonPackages.botocore 17 17 pythonPackages.bcdoc 18 18 pythonPackages.six 19 19 pythonPackages.colorama
+2 -2
pkgs/tools/admin/letsencrypt/default.nix
··· 3 3 let 4 4 src = fetchurl { 5 5 url = "https://github.com/letsencrypt/letsencrypt/archive/v${version}.tar.gz"; 6 - sha256 = "00p94pmli4lr5l3vqi11374p9jxiqir1ygx89zgfm4db47srx41z"; 6 + sha256 = "056y5bsmpc4ya5xxals4ypzsm927j6n5kwby3bjc03sy3sscf6hw"; 7 7 }; 8 - version = "0.0.0.dev20151123"; 8 + version = "0.1.0"; 9 9 acme = pythonPackages.buildPythonPackage rec { 10 10 name = "acme-${version}"; 11 11 inherit src version;
+4 -3
pkgs/tools/backup/rsnapshot/default.nix
··· 16 16 ''; 17 17 in 18 18 stdenv.mkDerivation rec { 19 - name = "rsnapshot-1.3.1"; 19 + name = "rsnapshot-1.4.1"; 20 + 20 21 src = fetchurl { 21 - url = "mirror://sourceforge/rsnapshot/${name}.tar.gz"; 22 - sha256 = "0pn7vlg3yxl7xrvfwmp4zlrg3cckmlldq6qr5bs3b2b281zcgdll"; 22 + url = "http://rsnapshot.org/downloads/${name}.tar.gz"; 23 + sha256 = "1s28wkpqajgmwi88n3xs3qsa4b7yxd6lkl4zfi0mr06klwli2jpv"; 23 24 }; 24 25 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 9 sha256 = "0fadfssvj9klj4dq9wdrzys1k2a1z2j0p6kgnfgbjv0n1bq6h4cy"; 10 10 }; 11 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 + 12 19 buildInputs = [ perl ]; 13 20 14 21 meta = with stdenv.lib; {
+12
pkgs/tools/misc/coreutils/default.nix
··· 2 2 , aclSupport ? false, acl ? null 3 3 , selinuxSupport? false, libselinux ? null, libsepol ? null 4 4 , autoconf, automake114x, texinfo 5 + , withPrefix ? false 5 6 }: 6 7 7 8 assert aclSupport -> acl != null; ··· 85 86 FORCE_UNSAFE_CONFIGURE = stdenv.lib.optionalString (stdenv.system == "armv7l-linux" || stdenv.isSunOS) "1"; 86 87 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; 88 100 89 101 meta = { 90 102 homepage = http://www.gnu.org/software/coreutils/;
+2 -3
pkgs/tools/misc/logstash/default.nix
··· 16 16 17 17 installPhase = '' 18 18 mkdir -p $out 19 - cp -r {Gemfile*,vendor,lib} $out 20 - cp bin/logstash $out/logstash 21 - cp bin/plugin $out/logstash-plugin 19 + cp -r {Gemfile*,vendor,lib,bin} $out 20 + mv $out/bin/plugin $out/bin/logstash-plugin 22 21 ''; 23 22 24 23 meta = with stdenv.lib; {
+2 -2
pkgs/tools/misc/tlp/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils 2 - , kmod, pciutils, smartmontools, x86_energy_perf_policy 2 + , module_init_tools, pciutils, smartmontools, x86_energy_perf_policy 3 3 , enableRDW ? false, networkmanager 4 4 }: 5 5 ··· 27 27 buildInputs = [ perl ]; 28 28 29 29 paths = lib.makeSearchPath "bin" 30 - ([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools 30 + ([ iw rfkill hdparm ethtool inetutils systemd module_init_tools pciutils smartmontools 31 31 x86_energy_perf_policy 32 32 ] 33 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 29 "LOCALEDIR=$(out)/share/locale" 30 30 ]; 31 31 32 + postBuild = '' 33 + make -C contrib/wrt 34 + ''; 35 + 32 36 postInstall = '' 33 37 install -Dm644 dbus/dnsmasq.conf $out/etc/dbus-1/system.d/dnsmasq.conf 34 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 35 41 36 42 mkdir -p $out/share/dbus-1/system-services 37 43 cat <<END > $out/share/dbus-1/system-services/uk.org.thekelleys.dnsmasq.service
+2 -2
pkgs/tools/networking/dropbear/default.nix
··· 2 2 sftpPath ? "/var/run/current-system/sw/libexec/sftp-server" }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "dropbear-2015.70"; 5 + name = "dropbear-2015.71"; 6 6 7 7 src = fetchurl { 8 8 url = "http://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2"; 9 - sha256 = "0mzj1gwamxmk8rab4xmcvldcxdvs5zczim2hdza3dwfhy4ywra32"; 9 + sha256 = "1bw3lzmisn6gs6zy9vcqbfnicl437ydskqcayklpw60fkhb18qip"; 10 10 }; 11 11 12 12 dontDisableStatic = enableStatic;
-2
pkgs/tools/networking/openvpn/default.nix
··· 21 21 --enable-systemd 22 22 --enable-iproute2 23 23 IPROUTE=${iproute}/sbin/ip 24 - '' + optionalString stdenv.isDarwin '' 25 - --disable-plugin-auth-pam 26 24 ''; 27 25 28 26 postInstall = ''
+1 -1
pkgs/tools/networking/p2p/rtorrent/default.nix
··· 12 12 }; 13 13 14 14 buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl xmlrpc_c ]; 15 - configureFlags = "--with-xmlrpc-c"; 15 + configureFlags = [ "--with-xmlrpc-c" "--with-posix-fallocate" ]; 16 16 17 17 # postInstall = '' 18 18 # mkdir -p $out/share/man/man1 $out/share/rtorrent
+2 -2
pkgs/tools/networking/snabbswitch/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "snabb-${version}"; 5 - version = "2015.11"; 5 + version = "2015.12"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/SnabbCo/snabbswitch/archive/v${version}.tar.gz"; 9 - sha256 = "1llyqbjjmh2s23hnx154qj0y6pn5mpxk8qj1fxfpk7dnbq78q601"; 9 + sha256 = "1949a6d3hqdr2hdfmrr1na9gvjdwdahadbhmvz2pg7azmpq6ssmr"; 10 10 }; 11 11 12 12 installPhase = ''
+38 -26
pkgs/tools/package-management/nix-prefetch-scripts/default.nix
··· 1 - { stdenv, makeWrapper, 1 + { stdenv, makeWrapper, buildEnv, 2 2 git, subversion, mercurial, bazaar, cvs, unzip, curl, gnused, coreutils 3 3 }: 4 - stdenv.mkDerivation { 5 - name = "nix-prefetch-scripts"; 6 4 7 - buildInputs = [ makeWrapper ]; 5 + let mkPrefetchScript = tool: src: deps: 6 + stdenv.mkDerivation { 7 + name = "nix-prefetch-${tool}"; 8 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; 9 + buildInputs = [ makeWrapper ]; 10 + 11 + phases = [ "installPhase" "fixupPhase" ]; 12 + installPhase = '' 13 + mkdir -p $out/bin 14 + 15 15 local wrapArgs="" 16 - cp $src $out/bin/$name; 17 - for dep in ''${@:3}; do 16 + cp ${src} $out/bin/$name; 17 + for dep in ${stdenv.lib.concatStringsSep " " deps}; do 18 18 wrapArgs="$wrapArgs --prefix PATH : $dep/bin" 19 19 done 20 20 wrapArgs="$wrapArgs --prefix PATH : ${gnused}/bin" 21 21 wrapArgs="$wrapArgs --set HOME : /homeless-shelter" 22 22 wrapProgram $out/bin/$name $wrapArgs 23 - } 23 + ''; 24 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 - ''; 25 + preferLocalBuild = true; 32 26 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 = []; 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 + }; 39 51 }; 40 52 }
+3 -3
pkgs/tools/security/gnupg/21.nix
··· 13 13 assert x11Support -> pinentry != null; 14 14 15 15 stdenv.mkDerivation rec { 16 - name = "gnupg-2.1.9"; 16 + name = "gnupg-2.1.10"; 17 17 18 18 src = fetchurl { 19 19 url = "mirror://gnupg/gnupg/${name}.tar.bz2"; 20 - sha256 = "1dpp555glln6fldk72ad7lkrn8h3cr2bg714z5kfn2qrawx67dqw"; 20 + sha256 = "1ybcsazjm21i2ys1wh49cz4azmqz7ghx5rb6hm4gm93i2zc5igck"; 21 21 }; 22 22 23 23 postPatch = stdenv.lib.optionalString stdenv.isLinux '' 24 24 sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c 25 - ''; 25 + ''; #" fix Emacs syntax highlighting :-( 26 26 27 27 buildInputs = [ 28 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 11 configureFlags = [ 12 12 # The OS should care on preparing the drivers into this location 13 13 "--enable-usbdropdir=/var/lib/pcsc/drivers" 14 - "--with-systemdsystemunitdir=\${out}/etc/systemd/system" 15 14 "--enable-confdir=/etc" 16 - ]; 15 + ] ++ stdenv.lib.optional stdenv.isLinux 16 + "--with-systemdsystemunitdir=\${out}/etc/systemd/system"; 17 17 18 18 nativeBuildInputs = [ pkgconfig perl python2 ]; 19 - buildInputs = [ udev dbus_libs ]; 19 + buildInputs = stdenv.lib.optionals stdenv.isLinux [ udev dbus_libs ]; 20 20 21 21 meta = with stdenv.lib; { 22 22 description = "Middleware to access a smart card using SCard API (PC/SC)"; 23 23 homepage = http://pcsclite.alioth.debian.org/; 24 24 license = licenses.bsd3; 25 25 maintainers = with maintainers; [ viric wkennington ]; 26 - platforms = platforms.linux; 26 + platforms = with platforms; unix; 27 27 }; 28 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 2 3 3 stdenv.mkDerivation ( rec { 4 4 pname = "auctex"; 5 - version = "11.88"; 5 + version = "11.89"; 6 6 name = "${pname}-${version}"; 7 7 8 8 meta = { ··· 12 12 13 13 src = fetchurl { 14 14 url = "mirror://gnu/${pname}/${name}.tar.gz"; 15 - sha256 = "0gy89nzha20p6m7kpv2nl1fnsfka9scc3mw1lz66fp6czganfs3i"; 15 + sha256 = "1cf9fkkmzjxa4jvk6c01zgxdikr4zzb5pcx8i4r0hwdk0xljkbwq"; 16 16 }; 17 17 18 18 buildInputs = [ emacs texLive ];
+20 -15
pkgs/tools/typesetting/tex/nix/default.nix
··· 10 10 , extraFiles ? [] 11 11 , compressBlanksInIndex ? true 12 12 , packages ? [] 13 + , texPackages ? {} 13 14 , copySources ? false 14 15 }: 15 16 16 17 assert generatePDF -> !generatePS; 17 - 18 + 19 + let 20 + tex = pkgs.texlive.combine texPackages; 21 + in 22 + 18 23 pkgs.stdenv.mkDerivation { 19 24 name = "doc"; 20 - 25 + 21 26 builder = ./run-latex.sh; 22 27 copyIncludes = ./copy-includes.pl; 23 - 28 + 24 29 inherit rootFile generatePDF generatePS extraFiles 25 30 compressBlanksInIndex copySources; 26 31 27 32 includes = map (x: [x.key (baseNameOf (toString x.key))]) 28 33 (findLaTeXIncludes {inherit rootFile;}); 29 - 30 - buildInputs = [ pkgs.tetex pkgs.perl ] ++ packages; 34 + 35 + buildInputs = [ tex pkgs.perl ] ++ packages; 31 36 }; 32 37 33 38 ··· 41 46 42 47 builtins.genericClosure { 43 48 startSet = [{key = rootFile;}]; 44 - 49 + 45 50 operator = 46 51 {key, ...}: 47 52 ··· 72 77 73 78 in pkgs.lib.fold foundDeps [] deps; 74 79 }; 75 - 80 + 76 81 77 82 findLhs2TeXIncludes = 78 83 { rootFile ··· 80 85 81 86 builtins.genericClosure { 82 87 startSet = [{key = rootFile;}]; 83 - 88 + 84 89 operator = 85 90 {key, ...}: 86 91 ··· 103 108 builder = ./dot2pdf.sh; 104 109 inherit dotGraph fontsConf; 105 110 buildInputs = [ 106 - pkgs.perl pkgs.tetex pkgs.graphviz 111 + pkgs.perl pkgs.graphviz 107 112 ]; 108 113 }; 109 - 114 + 110 115 111 116 dot2ps = 112 117 { dotGraph ··· 117 122 builder = ./dot2ps.sh; 118 123 inherit dotGraph; 119 124 buildInputs = [ 120 - pkgs.perl pkgs.tetex pkgs.graphviz pkgs.ghostscript 125 + pkgs.perl pkgs.graphviz pkgs.ghostscript 121 126 ]; 122 127 }; 123 128 ··· 132 137 includes = map (x: [x.key (baseNameOf (toString x.key))]) 133 138 (findLhs2TeXIncludes {rootFile = source;}); 134 139 }; 135 - 140 + 136 141 animateDot = dotGraph: nrFrames: pkgs.stdenv.mkDerivation { 137 142 name = "dot-frames"; 138 143 builder = ./animatedot.sh; ··· 163 168 164 169 165 170 # Convert a Postscript file to a PNG image, trimming it so that 166 - # there is no unnecessary surrounding whitespace. 171 + # there is no unnecessary surrounding whitespace. 167 172 postscriptToPNG = 168 173 { postscript 169 174 }: ··· 173 178 inherit postscript; 174 179 175 180 buildInputs = [pkgs.imagemagick pkgs.ghostscript]; 176 - 181 + 177 182 buildCommand = '' 178 183 if test -d $postscript; then 179 184 input=$(ls $postscript/*.ps) ··· 240 245 "${pkgs.ghostscript}/share/ghostscript/fonts" 241 246 ]; 242 247 }; 243 - 248 + 244 249 }
+48 -44
pkgs/top-level/all-packages.nix
··· 274 274 }; 275 275 276 276 buildFHSChrootEnv = args: chrootFHSEnv { 277 - env = buildFHSEnv args; 277 + env = buildFHSEnv (removeAttrs args [ "extraInstallCommands" ]); 278 + extraInstallCommands = args.extraInstallCommands or ""; 278 279 }; 279 280 280 281 buildFHSUserEnv = args: userFHSEnv { 281 - env = buildFHSEnv (removeAttrs args [ "runScript" "extraBindMounts" ]); 282 + env = buildFHSEnv (removeAttrs args [ "runScript" "extraBindMounts" "extraInstallCommands" ]); 282 283 runScript = args.runScript or "bash"; 283 284 extraBindMounts = args.extraBindMounts or []; 285 + extraInstallCommands = args.extraInstallCommands or ""; 284 286 }; 285 287 286 288 buildMaven = callPackage ../build-support/build-maven.nix {}; ··· 673 675 674 676 bchunk = callPackage ../tools/cd-dvd/bchunk { }; 675 677 676 - bfr = callPackage ../tools/misc/bfr { 677 - perl = perl516; # Docs fail to build with newer versions 678 - }; 678 + bfr = callPackage ../tools/misc/bfr { }; 679 679 680 680 bibtool = callPackage ../tools/misc/bibtool { }; 681 681 ··· 1154 1154 coreutils = callPackage ../tools/misc/coreutils { 1155 1155 aclSupport = stdenv.isLinux; 1156 1156 }; 1157 + 1158 + coreutils-prefixed = coreutils.override { withPrefix = true; }; 1157 1159 1158 1160 cpio = callPackage ../tools/archivers/cpio { }; 1159 1161 ··· 1602 1604 gitinspector = callPackage ../applications/version-management/gitinspector { }; 1603 1605 1604 1606 gitlab = callPackage ../applications/version-management/gitlab { 1605 - ruby = ruby_2_1_3; 1607 + ruby = ruby_2_2_2; 1606 1608 }; 1607 1609 1608 1610 gitlab-shell = callPackage ../applications/version-management/gitlab-shell { 1609 - ruby = ruby_2_1_3; 1611 + ruby = ruby_2_2_2; 1610 1612 }; 1613 + 1614 + gitlab-git-http-server = callPackage ../applications/version-management/gitlab-git-http-server { }; 1611 1615 1612 1616 glusterfs = callPackage ../tools/filesystems/glusterfs { }; 1613 1617 ··· 2904 2908 rng_tools = callPackage ../tools/security/rng-tools { }; 2905 2909 2906 2910 rsnapshot = callPackage ../tools/backup/rsnapshot { 2907 - perl = perl516; # fails to create docs: POD document had syntax errors 2908 2911 # For the `logger' command, we can use either `utillinux' or 2909 2912 # GNU Inetutils. The latter is more portable. 2910 - logger = inetutils; 2913 + logger = if stdenv.isLinux then utillinux else inetutils; 2911 2914 }; 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 2915 2918 2916 rlwrap = callPackage ../tools/misc/rlwrap { }; 2919 2917 ··· 3185 3183 3186 3184 tcpflow = callPackage ../tools/networking/tcpflow { }; 3187 3185 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 { }); 3186 + teamviewer = callPackage ../applications/networking/remote/teamviewer { 3187 + stdenv = stdenv_32bit; 3188 + }; 3193 3189 3194 3190 telnet = callPackage ../tools/networking/telnet { }; 3195 3191 ··· 5115 5111 5116 5112 ocropus = callPackage ../applications/misc/ocropus { }; 5117 5113 5118 - perl516 = callPackage ../development/interpreters/perl/5.16 { }; 5119 - 5120 5114 perl520 = callPackage ../development/interpreters/perl/5.20 { 5121 5115 fetchurl = fetchurlBoot; 5122 5116 }; ··· 5363 5357 augeas = callPackage ../tools/system/augeas { }; 5364 5358 5365 5359 ansible = callPackage ../tools/system/ansible { }; 5360 + 5361 + ansible2 = callPackage ../tools/system/ansible/2.nix { }; 5366 5362 5367 5363 antlr = callPackage ../development/tools/parsing/antlr/2.7.7.nix { }; 5368 5364 ··· 8687 8683 xapianBindings10 = callPackage ../development/libraries/xapian/bindings/1.0.x.nix { # TODO perl php Java, tcl, C#, python 8688 8684 }; 8689 8685 8686 + xapian-omega = callPackage ../tools/misc/xapian-omega {}; 8687 + 8690 8688 xavs = callPackage ../development/libraries/xavs { }; 8691 8689 8692 8690 Xaw3d = callPackage ../development/libraries/Xaw3d { }; ··· 9261 9259 9262 9260 mpd = callPackage ../servers/mpd { 9263 9261 aacSupport = config.mpd.aacSupport or true; 9264 - clientSupport = config.mpd.clientSupport or false; 9262 + clientSupport = config.mpd.clientSupport or true; 9265 9263 ffmpegSupport = config.mpd.ffmpegSupport or true; 9266 9264 opusSupport = config.mpd.opusSupport or true; 9267 9265 ··· 10840 10838 powerline-fonts = callPackage ../data/fonts/powerline-fonts { }; 10841 10839 10842 10840 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 10841 10848 10842 sampradaya = callPackage ../data/fonts/sampradaya { }; 10849 10843 ··· 12901 12895 automake = automake114x; 12902 12896 }; 12903 12897 12904 - rofi-pass = callPackage ../applications/misc/rofi/pass.nix { }; 12898 + rofi-pass = callPackage ../tools/security/pass/rofi-pass.nix { }; 12905 12899 12906 12900 rstudio = callPackage ../applications/editors/rstudio { }; 12907 12901 ··· 13400 13394 13401 13395 virtinst = callPackage ../applications/virtualization/virtinst {}; 13402 13396 13403 - virtualgl = callPackage ../tools/X11/virtualgl { }; 13397 + virtualglLib = callPackage ../tools/X11/virtualgl/lib.nix { 13398 + fltk = fltk13; 13399 + }; 13404 13400 13405 - primus = callPackage ../tools/X11/primus { 13406 - primusLib = callPackage ../tools/X11/primus/lib.nix { 13407 - nvidia = linuxPackages.nvidia_x11; 13408 - }; 13401 + virtualgl = callPackage ../tools/X11/virtualgl { 13402 + virtualglLib_i686 = if system == "x86_64-linux" 13403 + then pkgsi686Linux.virtualglLib 13404 + else null; 13405 + }; 13409 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 { 13410 13412 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 - } 13413 + then pkgsi686Linux.primusLib 13414 13414 else null; 13415 13415 }; 13416 13416 ··· 13419 13419 nvidia_x11_i686 = if system == "x86_64-linux" 13420 13420 then pkgsi686Linux.linuxPackages.nvidia_x11.override { libsOnly = true; } 13421 13421 else null; 13422 - virtualgl = virtualgl; 13423 - virtualgl_i686 = if system == "x86_64-linux" 13424 - then pkgsi686Linux.virtualgl 13422 + primusLib_i686 = if system == "x86_64-linux" 13423 + then pkgsi686Linux.primusLib 13425 13424 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 13425 }; 13432 13426 13433 13427 vkeybd = callPackage ../applications/audio/vkeybd {}; ··· 13596 13590 ++ optional (config.kodi.enableGenesis or false) genesis 13597 13591 ++ optional (config.kodi.enableSVTPlay or false) svtplay 13598 13592 ++ optional (config.kodi.enableSteamLauncher or false) steam-launcher 13593 + ++ optional (config.kodi.enablePVRHTS or false) pvr-hts 13599 13594 ); 13600 13595 }; 13601 13596 ··· 14852 14847 14853 14848 coq-ext-lib = callPackage ../development/coq-modules/coq-ext-lib {}; 14854 14849 14850 + flocq = callPackage ../development/coq-modules/flocq {}; 14851 + 14855 14852 mathcomp = callPackage ../development/coq-modules/mathcomp { }; 14856 14853 14857 14854 ssreflect = callPackage ../development/coq-modules/ssreflect { }; ··· 15264 15261 15265 15262 nixui = callPackage ../tools/package-management/nixui { node_webkit = nwjs_0_12; }; 15266 15263 15267 - nix-prefetch-scripts = callPackage ../tools/package-management/nix-prefetch-scripts { }; 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; 15268 15272 15269 15273 nix-template-rpm = callPackage ../build-support/templaterpm { inherit (pythonPackages) python toposort; }; 15270 15274
+67 -19
pkgs/top-level/emacs-packages.nix
··· 691 691 }; 692 692 }; 693 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 + 694 711 find-file-in-project = melpaBuild rec { 695 712 pname = "find-file-in-project"; 696 713 version = "3.5"; ··· 1014 1031 }; 1015 1032 }; 1016 1033 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 1034 helm = melpaBuild rec { 1034 1035 pname = "helm"; 1035 1036 version = "20150105"; ··· 1046 1047 }; 1047 1048 }; 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 + 1049 1082 hi2 = melpaBuild rec { 1050 1083 pname = "hi2"; 1051 1084 version = "1.0"; ··· 1444 1477 }; 1445 1478 }; 1446 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 + 1447 1495 perspective = melpaBuild rec { 1448 1496 pname = "perspective"; 1449 1497 version = "1.12"; ··· 1642 1690 1643 1691 s = melpaBuild rec { 1644 1692 pname = "s"; 1645 - version = "20140910"; 1693 + version = "20151023"; 1646 1694 src = fetchFromGitHub { 1647 1695 owner = "magnars"; 1648 1696 repo = "${pname}.el"; 1649 - rev = "1f85b5112f3f68169ddaa2911fcfa030f979eb4d"; 1650 - sha256 = "9d871ea84f98c51099528a03eddf47218cf70f1431d4c35c19c977d9e73d421f"; 1697 + rev = "372e94c1a28031686d75d6c52bfbe833a118a72a"; 1698 + sha256 = "1zn8n3mv0iscs242dbkf5vmkkizfslq5haw9z0d0g3wknq18286h"; 1651 1699 }; 1652 1700 meta = { 1653 1701 description = "String manipulation library for Emacs";
+26 -57
pkgs/top-level/python-packages.nix
··· 1730 1730 1731 1731 boto3 = buildPythonPackage rec { 1732 1732 name = "boto3-${version}"; 1733 - version = "1.1.4"; 1733 + version = "1.2.2"; 1734 1734 1735 - src = pkgs.fetchurl { 1736 - url = "https://github.com/boto/boto3/archive/${version}.zip"; 1737 - sha256 = "11fdfbq8ann11wdzmbd0djnb1biyyhs1jcc8maxmkcj2q9fw6dk0"; 1735 + src = pkgs.fetchFromGitHub { 1736 + owner = "boto"; 1737 + repo = "boto3"; 1738 + rev = version; 1739 + sha256 = "1w53lhhdzi29d31qzhflb5mcwb24mfrj4frv70w6qyn8vmqznnjy"; 1738 1740 }; 1739 1741 1740 1742 propagatedBuildInputs = [ self.botocore ··· 1759 1761 }; 1760 1762 1761 1763 botocore = buildPythonPackage rec { 1762 - version = "1.2.0"; 1764 + version = "1.3.6"; 1763 1765 name = "botocore-${version}"; 1764 1766 1765 1767 src = pkgs.fetchurl { 1766 1768 url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz"; 1767 - sha256 = "0wj98fsiwqzy0i0zh86fx15sgdjkwqi6crxig6b4kvrckl8bkwjr"; 1769 + sha256 = "05a0ihv66fx77j16mjlm76d8zm7sd5wfzh1hx4nm3ilb9gz5h016"; 1768 1770 }; 1769 1771 1770 1772 propagatedBuildInputs = 1771 1773 [ 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 1774 + self.requests2 1800 1775 self.jmespath 1801 1776 ]; 1802 1777 ··· 6431 6406 6432 6407 django = self.django_1_7; 6433 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 + 6434 6419 django_1_8 = buildPythonPackage rec { 6435 6420 name = "Django-${version}"; 6436 6421 version = "1.8.4"; ··· 7963 7948 }; 7964 7949 }; 7965 7950 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 7951 glances = buildPythonPackage rec { 7990 7952 name = "glances-${version}"; 7991 7953 version = "2.4.2"; ··· 11745 11707 url = "https://pypi.python.org/packages/source/o/oslo.rootwrap/${name}.tar.gz"; 11746 11708 sha256 = "1711rlmykizw675ihbaqmk3ph6ah0njbygxr9lrdnacy6yrlmbd5"; 11747 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 + ''; 11748 11717 11749 11718 buildInputs = with self; [ eventlet mock oslotest ]; 11750 11719 propagatedBuildInputs = with self; [
-1
pkgs/top-level/release.nix
··· 160 160 pmccabe = linux; 161 161 ppl = all; 162 162 procps = linux; 163 - pthreadmanpages = linux; 164 163 pygtk = linux; 165 164 python = allBut cygwin; 166 165 pythonFull = linux;