lol

Merge branch 'master' into staging

+6260 -4335
+1 -1
.github/CONTRIBUTING.md
··· 32 32 33 33 ## Reviewing contributions 34 34 35 - See the nixpkgs manual for more details on how to [Review contributions](http://hydra.nixos.org/job/nixpkgs/trunk/manual/latest/download-by-type/doc/manual#chap-reviewing-contributions). 35 + See the nixpkgs manual for more details on how to [Review contributions](https://nixos.org/nixpkgs/manual/#sec-reviewing-contributions).
+2 -1
.mention-bot
··· 1 1 { 2 2 "userBlacklist": [ 3 3 "civodul", 4 - "jhasse" 4 + "jhasse", 5 + "shlevy" 5 6 ], 6 7 "alwaysNotifyForPaths": [ 7 8 { "name": "FRidh", "files": ["pkgs/top-level/python-packages.nix", "pkgs/development/interpreters/python/*", "pkgs/development/python-modules/*" ] },
+1 -1
nixos/lib/make-squashfs.nix
··· 25 25 26 26 # Generate the squashfs image. 27 27 mksquashfs nix-path-registration $storePaths $out \ 28 - -keep-as-directory -all-root 28 + -keep-as-directory -all-root -comp xz 29 29 ''; 30 30 }
+1 -3
nixos/modules/profiles/base.nix
··· 7 7 # Include some utilities that are useful for installing or repairing 8 8 # the system. 9 9 environment.systemPackages = [ 10 - pkgs.w3m # needed for the manual anyway 10 + pkgs.w3m-nox # needed for the manual anyway 11 11 pkgs.testdisk # useful for repairing boot problems 12 12 pkgs.mssys # for writing Microsoft boot sectors / MBRs 13 13 pkgs.efibootmgr ··· 42 42 # Some compression/archiver tools. 43 43 pkgs.unzip 44 44 pkgs.zip 45 - pkgs.dar # disk archiver 46 - pkgs.cabextract 47 45 ]; 48 46 49 47 # Include support for various filesystems.
+2
nixos/modules/profiles/minimal.nix
··· 14 14 15 15 programs.man.enable = mkDefault false; 16 16 programs.info.enable = mkDefault false; 17 + 18 + sound.enable = mkDefault false; 17 19 }
+409 -189
nixos/modules/services/cluster/kubernetes.nix
··· 5 5 let 6 6 cfg = config.services.kubernetes; 7 7 8 + skipAttrs = attrs: map (filterAttrs (k: v: k != "enable")) 9 + (filter (v: !(hasAttr "enable" v) || v.enable) attrs); 10 + 11 + infraContainer = pkgs.dockerTools.buildImage { 12 + name = "pause"; 13 + tag = "latest"; 14 + contents = cfg.package.pause; 15 + config.Cmd = "/bin/pause"; 16 + }; 17 + 18 + kubeconfig = pkgs.writeText "kubeconfig" (builtins.toJSON { 19 + apiVersion = "v1"; 20 + kind = "Config"; 21 + clusters = [{ 22 + name = "local"; 23 + cluster.certificate-authority = cfg.kubeconfig.caFile; 24 + cluster.server = cfg.kubeconfig.server; 25 + }]; 26 + users = [{ 27 + name = "kubelet"; 28 + user = { 29 + client-certificate = cfg.kubeconfig.certFile; 30 + client-key = cfg.kubeconfig.keyFile; 31 + }; 32 + }]; 33 + contexts = [{ 34 + context = { 35 + cluster = "local"; 36 + user = "kubelet"; 37 + }; 38 + current-context = "kubelet-context"; 39 + }]; 40 + }); 41 + 42 + policyFile = pkgs.writeText "kube-policy" 43 + concatStringsSep "\n" (map (builtins.toJSON cfg.apiserver.authorizationPolicy)); 44 + 45 + cniConfig = pkgs.buildEnv { 46 + name = "kubernetes-cni-config"; 47 + paths = imap (i: entry: 48 + pkgs.writeTextDir "${10+i}-${entry.type}.conf" (builtins.toJSON entry) 49 + ) cfg.kubelet.cni.config; 50 + }; 51 + 52 + manifests = pkgs.buildEnv { 53 + name = "kubernetes-manifests"; 54 + paths = mapAttrsToList (name: manifest: 55 + pkgs.writeTextDir "${name}.json" (builtins.toJSON manifest) 56 + ) cfg.kubelet.manifests; 57 + }; 58 + 8 59 in { 9 60 10 61 ###### interface 11 62 12 63 options.services.kubernetes = { 64 + roles = mkOption { 65 + description = '' 66 + Kubernetes role that this machine should take. 67 + 68 + Master role will enable etcd, apiserver, scheduler and controller manager 69 + services. Node role will enable etcd, docker, kubelet and proxy services. 70 + ''; 71 + default = []; 72 + type = types.listOf (types.enum ["master" "node"]); 73 + }; 74 + 13 75 package = mkOption { 14 76 description = "Kubernetes package to use."; 15 77 type = types.package; 78 + default = pkgs.kubernetes; 16 79 }; 17 80 18 81 verbose = mkOption { ··· 21 84 type = types.bool; 22 85 }; 23 86 24 - etcdServers = mkOption { 25 - description = "Kubernetes list of etcd servers to watch."; 26 - default = [ "127.0.0.1:2379" ]; 27 - type = types.listOf types.str; 87 + etcd = { 88 + servers = mkOption { 89 + description = "List of etcd servers. By default etcd is started, except if this option is changed."; 90 + default = ["http://127.0.0.1:2379"]; 91 + type = types.listOf types.str; 92 + }; 93 + 94 + keyFile = mkOption { 95 + description = "Etcd key file"; 96 + default = null; 97 + type = types.nullOr types.path; 98 + }; 99 + 100 + certFile = mkOption { 101 + description = "Etcd cert file"; 102 + default = null; 103 + type = types.nullOr types.path; 104 + }; 105 + 106 + caFile = mkOption { 107 + description = "Etcd ca file"; 108 + default = null; 109 + type = types.nullOr types.path; 110 + }; 28 111 }; 29 112 30 - roles = mkOption { 31 - description = '' 32 - Kubernetes role that this machine should take. 113 + kubeconfig = { 114 + server = mkOption { 115 + description = "Kubernetes apiserver server address"; 116 + default = "http://${cfg.apiserver.address}:${toString cfg.apiserver.port}"; 117 + type = types.str; 118 + }; 33 119 34 - Master role will enable etcd, apiserver, scheduler and controller manager 35 - services. Node role will enable etcd, docker, kubelet and proxy services. 36 - ''; 37 - default = []; 38 - type = types.listOf (types.enum ["master" "node"]); 120 + caFile = mkOption { 121 + description = "Certificate authrority file to use to connect to kuberentes apiserver"; 122 + type = types.nullOr types.path; 123 + default = null; 124 + }; 125 + 126 + certFile = mkOption { 127 + description = "Client certificate file to use to connect to kubernetes"; 128 + type = types.nullOr types.path; 129 + default = null; 130 + }; 131 + 132 + keyFile = mkOption { 133 + description = "Client key file to use to connect to kubernetes"; 134 + type = types.nullOr types.path; 135 + default = null; 136 + }; 39 137 }; 40 138 41 139 dataDir = mkOption { 42 140 description = "Kubernetes root directory for managing kubelet files."; 43 141 default = "/var/lib/kubernetes"; 44 142 type = types.path; 45 - }; 46 - 47 - dockerCfg = mkOption { 48 - description = "Kubernetes contents of dockercfg file."; 49 - default = ""; 50 - type = types.lines; 51 143 }; 52 144 53 145 apiserver = { ··· 72 164 type = types.str; 73 165 }; 74 166 167 + advertiseAddress = mkOption { 168 + description = '' 169 + Kubernetes apiserver IP address on which to advertise the apiserver 170 + to members of the cluster. This address must be reachable by the rest 171 + of the cluster. 172 + ''; 173 + default = null; 174 + type = types.nullOr types.str; 175 + }; 176 + 75 177 port = mkOption { 76 178 description = "Kubernetes apiserver listening port."; 77 179 default = 8080; ··· 80 182 81 183 securePort = mkOption { 82 184 description = "Kubernetes apiserver secure port."; 83 - default = 6443; 185 + default = 443; 84 186 type = types.int; 85 187 }; 86 188 87 189 tlsCertFile = mkOption { 88 190 description = "Kubernetes apiserver certificate file."; 89 - default = ""; 90 - type = types.str; 191 + default = null; 192 + type = types.nullOr types.path; 91 193 }; 92 194 93 - tlsPrivateKeyFile = mkOption { 195 + tlsKeyFile = mkOption { 94 196 description = "Kubernetes apiserver private key file."; 95 - default = ""; 96 - type = types.str; 197 + default = null; 198 + type = types.nullOr types.path; 97 199 }; 98 200 99 201 clientCaFile = mkOption { 100 202 description = "Kubernetes apiserver CA file for client auth."; 101 - default = ""; 102 - type = types.str; 203 + default = null; 204 + type = types.nullOr types.path; 103 205 }; 104 206 105 207 tokenAuth = mkOption { 106 208 description = '' 107 209 Kubernetes apiserver token authentication file. See 108 - <link xlink:href="http://kubernetes.io/v1.0/docs/admin/authentication.html"/> 210 + <link xlink:href="http://kubernetes.io/docs/admin/authentication.html"/> 109 211 ''; 110 - default = {}; 111 - example = literalExample '' 112 - { 113 - alice = "abc123"; 114 - bob = "xyz987"; 115 - } 116 - ''; 117 - type = types.attrsOf types.str; 212 + default = null; 213 + example = ''token,user,uid,"group1,group2,group3"''; 214 + type = types.nullOr types.lines; 118 215 }; 119 216 120 217 authorizationMode = mkOption { ··· 148 245 149 246 allowPrivileged = mkOption { 150 247 description = "Whether to allow privileged containers on kubernetes."; 151 - default = false; 248 + default = true; 152 249 type = types.bool; 153 250 }; 154 251 155 252 portalNet = mkOption { 156 253 description = "Kubernetes CIDR notation IP range from which to assign portal IPs"; 157 - default = "10.10.10.10/16"; 254 + default = "10.10.10.10/24"; 158 255 type = types.str; 159 256 }; 160 257 ··· 171 268 admissionControl = mkOption { 172 269 description = '' 173 270 Kubernetes admission control plugins to use. See 174 - <link xlink:href="http://kubernetes.io/v1.0/docs/admin/admission-controllers.html"/> 271 + <link xlink:href="http://kubernetes.io/docs/admin/admission-controllers/"/> 175 272 ''; 176 - default = ["AlwaysAdmit"]; 273 + default = ["NamespaceLifecycle" "LimitRanger" "ServiceAccount" "ResourceQuota"]; 177 274 example = [ 178 275 "NamespaceLifecycle" "NamespaceExists" "LimitRanger" 179 276 "SecurityContextDeny" "ServiceAccount" "ResourceQuota" ··· 181 278 type = types.listOf types.str; 182 279 }; 183 280 184 - serviceAccountKey = mkOption { 281 + serviceAccountKeyFile = mkOption { 185 282 description = '' 186 283 Kubernetes apiserver PEM-encoded x509 RSA private or public key file, 187 - used to verify ServiceAccount tokens. 284 + used to verify ServiceAccount tokens. By default tls private key file 285 + is used. 188 286 ''; 189 287 default = null; 190 288 type = types.nullOr types.path; 191 289 }; 192 290 291 + kubeletClientCaFile = mkOption { 292 + description = "Path to a cert file for connecting to kubelet"; 293 + default = null; 294 + type = types.nullOr types.path; 295 + }; 296 + 297 + kubeletClientCertFile = mkOption { 298 + description = "Client certificate to use for connections to kubelet"; 299 + default = null; 300 + type = types.nullOr types.path; 301 + }; 302 + 303 + kubeletClientKeyFile = mkOption { 304 + description = "Key to use for connections to kubelet"; 305 + default = null; 306 + type = types.nullOr types.path; 307 + }; 308 + 309 + kubeletHttps = mkOption { 310 + description = "Whether to use https for connections to kubelet"; 311 + default = true; 312 + type = types.bool; 313 + }; 314 + 193 315 extraOpts = mkOption { 194 316 description = "Kubernetes apiserver extra command line options."; 195 317 default = ""; ··· 216 338 type = types.int; 217 339 }; 218 340 219 - master = mkOption { 220 - description = "Kubernetes apiserver address"; 221 - default = "${cfg.apiserver.address}:${toString cfg.apiserver.port}"; 222 - type = types.str; 341 + leaderElect = mkOption { 342 + description = "Whether to start leader election before executing main loop"; 343 + type = types.bool; 344 + default = false; 223 345 }; 224 346 225 347 extraOpts = mkOption { ··· 248 370 type = types.int; 249 371 }; 250 372 251 - master = mkOption { 252 - description = "Kubernetes apiserver address"; 253 - default = "${cfg.apiserver.address}:${toString cfg.apiserver.port}"; 254 - type = types.str; 373 + leaderElect = mkOption { 374 + description = "Whether to start leader election before executing main loop"; 375 + type = types.bool; 376 + default = false; 255 377 }; 256 378 257 - serviceAccountPrivateKey = mkOption { 379 + serviceAccountKeyFile = mkOption { 258 380 description = '' 259 381 Kubernetes controller manager PEM-encoded private RSA key file used to 260 382 sign service account tokens ··· 272 394 type = types.nullOr types.path; 273 395 }; 274 396 397 + clusterCidr = mkOption { 398 + description = "Kubernetes controller manager CIDR Range for Pods in cluster"; 399 + default = "10.10.0.0/16"; 400 + type = types.str; 401 + }; 402 + 275 403 extraOpts = mkOption { 276 404 description = "Kubernetes controller manager extra command line options."; 277 405 default = ""; ··· 292 420 type = types.bool; 293 421 }; 294 422 423 + registerSchedulable = mkOption { 424 + description = "Register the node as schedulable. No-op if register-node is false."; 425 + default = true; 426 + type = types.bool; 427 + }; 428 + 295 429 address = mkOption { 296 430 description = "Kubernetes kubelet info server listening address."; 297 431 default = "0.0.0.0"; ··· 304 438 type = types.int; 305 439 }; 306 440 441 + tlsCertFile = mkOption { 442 + description = "File containing x509 Certificate for HTTPS."; 443 + default = null; 444 + type = types.nullOr types.path; 445 + }; 446 + 447 + tlsKeyFile = mkOption { 448 + description = "File containing x509 private key matching tlsCertFile."; 449 + default = null; 450 + type = types.nullOr types.path; 451 + }; 452 + 307 453 healthz = { 308 454 bind = mkOption { 309 455 description = "Kubernetes kubelet healthz listening address."; ··· 326 472 327 473 allowPrivileged = mkOption { 328 474 description = "Whether to allow kubernetes containers to request privileged mode."; 329 - default = false; 475 + default = true; 330 476 type = types.bool; 331 477 }; 332 478 333 - apiServers = mkOption { 334 - description = '' 335 - Kubernetes kubelet list of Kubernetes API servers for publishing events, 336 - and reading pods and services. 337 - ''; 338 - default = ["${cfg.apiserver.address}:${toString cfg.apiserver.port}"]; 339 - type = types.listOf types.str; 340 - }; 341 - 342 479 cadvisorPort = mkOption { 343 480 description = "Kubernetes kubelet local cadvisor port."; 344 481 default = 4194; ··· 347 484 348 485 clusterDns = mkOption { 349 486 description = "Use alternative dns."; 350 - default = ""; 487 + default = "10.10.1.1"; 351 488 type = types.str; 352 489 }; 353 490 354 491 clusterDomain = mkOption { 355 492 description = "Use alternative domain."; 356 - default = "kubernetes.io"; 493 + default = "cluster.local"; 357 494 type = types.str; 358 495 }; 359 496 497 + networkPlugin = mkOption { 498 + description = "Network plugin to use by kubernetes"; 499 + type = types.nullOr (types.enum ["cni" "kubenet"]); 500 + default = "kubenet"; 501 + }; 502 + 503 + cni = { 504 + packages = mkOption { 505 + description = "List of network plugin packages to install"; 506 + type = types.listOf types.package; 507 + default = []; 508 + }; 509 + 510 + config = mkOption { 511 + description = "Kubernetes CNI configuration"; 512 + type = types.listOf types.attrs; 513 + default = []; 514 + example = literalExample '' 515 + [{ 516 + "cniVersion": "0.2.0", 517 + "name": "mynet", 518 + "type": "bridge", 519 + "bridge": "cni0", 520 + "isGateway": true, 521 + "ipMasq": true, 522 + "ipam": { 523 + "type": "host-local", 524 + "subnet": "10.22.0.0/16", 525 + "routes": [ 526 + { "dst": "0.0.0.0/0" } 527 + ] 528 + } 529 + } { 530 + "cniVersion": "0.2.0", 531 + "type": "loopback" 532 + }] 533 + ''; 534 + }; 535 + }; 536 + 537 + manifests = mkOption { 538 + description = "List of manifests to bootstrap with kubelet"; 539 + type = types.attrsOf types.attrs; 540 + default = {}; 541 + }; 542 + 360 543 extraOpts = mkOption { 361 544 description = "Kubernetes kubelet extra command line options."; 362 545 default = ""; ··· 377 560 type = types.str; 378 561 }; 379 562 380 - master = mkOption { 381 - description = "Kubernetes apiserver address"; 382 - default = "${cfg.apiserver.address}:${toString cfg.apiserver.port}"; 383 - type = types.str; 384 - }; 385 - 386 563 extraOpts = mkOption { 387 564 description = "Kubernetes proxy extra command line options."; 388 565 default = ""; ··· 390 567 }; 391 568 }; 392 569 393 - kube2sky = { 394 - enable = mkEnableOption "Whether to enable kube2sky dns service."; 570 + dns = { 571 + enable = mkEnableOption "kubernetes dns service."; 395 572 396 - domain = mkOption { 397 - description = "Kuberntes kube2sky domain under which all DNS names will be hosted."; 398 - default = cfg.kubelet.clusterDomain; 399 - type = types.str; 573 + port = mkOption { 574 + description = "Kubernetes dns listening port"; 575 + default = 53; 576 + type = types.int; 400 577 }; 401 578 402 - master = mkOption { 403 - description = "Kubernetes apiserver address"; 404 - default = "${cfg.apiserver.address}:${toString cfg.apiserver.port}"; 579 + domain = mkOption { 580 + description = "Kuberntes dns domain under which to create names."; 581 + default = cfg.kubelet.clusterDomain; 405 582 type = types.str; 406 583 }; 407 584 408 585 extraOpts = mkOption { 409 - description = "Kubernetes kube2sky extra command line options."; 586 + description = "Kubernetes dns extra command line options."; 410 587 default = ""; 411 588 type = types.str; 412 589 }; ··· 416 593 ###### implementation 417 594 418 595 config = mkMerge [ 596 + (mkIf cfg.kubelet.enable { 597 + systemd.services.kubelet = { 598 + description = "Kubernetes Kubelet Service"; 599 + wantedBy = [ "multi-user.target" ]; 600 + after = [ "network.target" "docker.service" "kube-apiserver.service" ]; 601 + path = with pkgs; [ gitMinimal openssh docker utillinux iproute ethtool thin-provisioning-tools iptables ]; 602 + preStart = '' 603 + docker load < ${infraContainer} 604 + rm /opt/cni/bin/* || true 605 + ${concatMapStringsSep "\n" (p: "ln -fs ${p.plugins}/* /opt/cni/bin") cfg.kubelet.cni.packages} 606 + ''; 607 + serviceConfig = { 608 + ExecStart = ''${cfg.package}/bin/kubelet \ 609 + --pod-manifest-path=${manifests} \ 610 + --kubeconfig=${kubeconfig} \ 611 + --require-kubeconfig \ 612 + --address=${cfg.kubelet.address} \ 613 + --port=${toString cfg.kubelet.port} \ 614 + --register-node=${if cfg.kubelet.registerNode then "true" else "false"} \ 615 + --register-schedulable=${if cfg.kubelet.registerSchedulable then "true" else "false"} \ 616 + ${optionalString (cfg.kubelet.tlsCertFile != null) 617 + "--tls-cert-file=${cfg.kubelet.tlsCertFile}"} \ 618 + ${optionalString (cfg.kubelet.tlsKeyFile != null) 619 + "--tls-private-key-file=${cfg.kubelet.tlsKeyFile}"} \ 620 + --healthz-bind-address=${cfg.kubelet.healthz.bind} \ 621 + --healthz-port=${toString cfg.kubelet.healthz.port} \ 622 + --hostname-override=${cfg.kubelet.hostname} \ 623 + --allow-privileged=${if cfg.kubelet.allowPrivileged then "true" else "false"} \ 624 + --root-dir=${cfg.dataDir} \ 625 + --cadvisor_port=${toString cfg.kubelet.cadvisorPort} \ 626 + ${optionalString (cfg.kubelet.clusterDns != "") 627 + "--cluster-dns=${cfg.kubelet.clusterDns}"} \ 628 + ${optionalString (cfg.kubelet.clusterDomain != "") 629 + "--cluster-domain=${cfg.kubelet.clusterDomain}"} \ 630 + --pod-infra-container-image=pause \ 631 + ${optionalString (cfg.kubelet.networkPlugin != null) 632 + "--network-plugin=${cfg.kubelet.networkPlugin}"} \ 633 + --cni-conf-dir=${cniConfig} \ 634 + --reconcile-cidr \ 635 + --hairpin-mode=hairpin-veth \ 636 + ${optionalString cfg.verbose "--v=6 --log_flush_frequency=1s"} \ 637 + ${cfg.kubelet.extraOpts} 638 + ''; 639 + WorkingDirectory = cfg.dataDir; 640 + }; 641 + }; 642 + 643 + environment.etc = mapAttrs' (name: manifest: 644 + nameValuePair "kubernetes/manifests/${name}.json" { 645 + text = builtins.toJSON manifest; 646 + mode = "0755"; 647 + } 648 + ) cfg.kubelet.manifests; 649 + 650 + # Allways include cni plugins 651 + services.kubernetes.kubelet.cni.packages = [pkgs.cni]; 652 + }) 653 + 419 654 (mkIf cfg.apiserver.enable { 420 655 systemd.services.kube-apiserver = { 421 - description = "Kubernetes Api Server"; 656 + description = "Kubernetes Kubelet Service"; 422 657 wantedBy = [ "multi-user.target" ]; 423 - requires = ["kubernetes-setup.service"]; 424 - after = [ "network.target" "etcd.service" "kubernetes-setup.service" ]; 658 + after = [ "network.target" "docker.service" ]; 425 659 serviceConfig = { 426 - ExecStart = let 427 - authorizationPolicyFile = 428 - pkgs.writeText "kubernetes-policy" 429 - (builtins.toJSON cfg.apiserver.authorizationPolicy); 430 - tokenAuthFile = 431 - pkgs.writeText "kubernetes-auth" 432 - (concatImapStringsSep "\n" (i: v: v + "," + (toString i)) 433 - (mapAttrsToList (name: token: token + "," + name) cfg.apiserver.tokenAuth)); 434 - in ''${cfg.package}/bin/kube-apiserver \ 435 - --etcd-servers=${concatMapStringsSep "," (f: "http://${f}") cfg.etcdServers} \ 436 - --insecure-bind-address=${cfg.apiserver.address} \ 660 + ExecStart = ''${cfg.package}/bin/kube-apiserver \ 661 + --etcd-servers=${concatStringsSep "," cfg.etcd.servers} \ 662 + ${optionalString (cfg.etcd.caFile != null) 663 + "--etcd-cafile=${cfg.etcd.caFile}"} \ 664 + ${optionalString (cfg.etcd.certFile != null) 665 + "--etcd-certfile=${cfg.etcd.certFile}"} \ 666 + ${optionalString (cfg.etcd.keyFile != null) 667 + "--etcd-keyfile=${cfg.etcd.keyFile}"} \ 437 668 --insecure-port=${toString cfg.apiserver.port} \ 438 - --bind-address=${cfg.apiserver.publicAddress} \ 669 + --bind-address=0.0.0.0 \ 670 + ${optionalString (cfg.apiserver.advertiseAddress != null) 671 + "--advertise-address=${cfg.apiserver.advertiseAddress}"} \ 439 672 --allow-privileged=${if cfg.apiserver.allowPrivileged then "true" else "false"} \ 440 - ${optionalString (cfg.apiserver.tlsCertFile!="") 673 + ${optionalString (cfg.apiserver.tlsCertFile != null) 441 674 "--tls-cert-file=${cfg.apiserver.tlsCertFile}"} \ 442 - ${optionalString (cfg.apiserver.tlsPrivateKeyFile!="") 443 - "--tls-private-key-file=${cfg.apiserver.tlsPrivateKeyFile}"} \ 444 - ${optionalString (cfg.apiserver.tokenAuth!=[]) 445 - "--token-auth-file=${tokenAuthFile}"} \ 446 - ${optionalString (cfg.apiserver.clientCaFile!="") 675 + ${optionalString (cfg.apiserver.tlsKeyFile != null) 676 + "--tls-private-key-file=${cfg.apiserver.tlsKeyFile}"} \ 677 + ${optionalString (cfg.apiserver.tokenAuth != null) 678 + "--token-auth-file=${cfg.apiserver.tokenAuth}"} \ 679 + --kubelet-https=${if cfg.apiserver.kubeletHttps then "true" else "false"} \ 680 + ${optionalString (cfg.apiserver.kubeletClientCaFile != null) 681 + "--kubelet-certificate-authority=${cfg.apiserver.kubeletClientCaFile}"} \ 682 + ${optionalString (cfg.apiserver.kubeletClientCertFile != null) 683 + "--kubelet-client-certificate=${cfg.apiserver.kubeletClientCertFile}"} \ 684 + ${optionalString (cfg.apiserver.kubeletClientKeyFile != null) 685 + "--kubelet-client-key=${cfg.apiserver.kubeletClientKeyFile}"} \ 686 + ${optionalString (cfg.apiserver.clientCaFile != null) 447 687 "--client-ca-file=${cfg.apiserver.clientCaFile}"} \ 448 688 --authorization-mode=${cfg.apiserver.authorizationMode} \ 449 689 ${optionalString (cfg.apiserver.authorizationMode == "ABAC") 450 - "--authorization-policy-file=${authorizationPolicyFile}"} \ 690 + "--authorization-policy-file=${policyFile}"} \ 451 691 --secure-port=${toString cfg.apiserver.securePort} \ 452 692 --service-cluster-ip-range=${cfg.apiserver.portalNet} \ 453 - ${optionalString (cfg.apiserver.runtimeConfig!="") 693 + ${optionalString (cfg.apiserver.runtimeConfig != "") 454 694 "--runtime-config=${cfg.apiserver.runtimeConfig}"} \ 455 695 --admission_control=${concatStringsSep "," cfg.apiserver.admissionControl} \ 456 - ${optionalString (cfg.apiserver.serviceAccountKey!=null) 457 - "--service-account-key-file=${cfg.apiserver.serviceAccountKey}"} \ 458 - --logtostderr=true \ 459 - ${optionalString cfg.verbose "--v=6 --log-flush-frequency=1s"} \ 696 + ${optionalString (cfg.apiserver.serviceAccountKeyFile!=null) 697 + "--service-account-key-file=${cfg.apiserver.serviceAccountKeyFile}"} \ 698 + ${optionalString cfg.verbose "--v=6"} \ 699 + ${optionalString cfg.verbose "--log-flush-frequency=1s"} \ 460 700 ${cfg.apiserver.extraOpts} 461 701 ''; 702 + WorkingDirectory = cfg.dataDir; 462 703 User = "kubernetes"; 704 + Group = "kubernetes"; 705 + AmbientCapabilities = "cap_net_bind_service"; 706 + Restart = "on-failure"; 707 + RestartSec = 5; 463 708 }; 464 709 }; 465 710 }) ··· 468 713 systemd.services.kube-scheduler = { 469 714 description = "Kubernetes Scheduler Service"; 470 715 wantedBy = [ "multi-user.target" ]; 471 - after = [ "network.target" "kubernetes-apiserver.service" ]; 716 + after = [ "kube-apiserver.service" ]; 472 717 serviceConfig = { 473 718 ExecStart = ''${cfg.package}/bin/kube-scheduler \ 474 719 --address=${cfg.scheduler.address} \ 475 720 --port=${toString cfg.scheduler.port} \ 476 - --master=${cfg.scheduler.master} \ 477 - --logtostderr=true \ 478 - ${optionalString cfg.verbose "--v=6 --log-flush-frequency=1s"} \ 721 + --leader-elect=${if cfg.scheduler.leaderElect then "true" else "false"} \ 722 + --kubeconfig=${kubeconfig} \ 723 + ${optionalString cfg.verbose "--v=6"} \ 724 + ${optionalString cfg.verbose "--log-flush-frequency=1s"} \ 479 725 ${cfg.scheduler.extraOpts} 480 726 ''; 727 + WorkingDirectory = cfg.dataDir; 481 728 User = "kubernetes"; 729 + Group = "kubernetes"; 482 730 }; 483 731 }; 484 732 }) ··· 487 735 systemd.services.kube-controller-manager = { 488 736 description = "Kubernetes Controller Manager Service"; 489 737 wantedBy = [ "multi-user.target" ]; 490 - after = [ "network.target" "kubernetes-apiserver.service" ]; 738 + after = [ "kube-apiserver.service" ]; 491 739 serviceConfig = { 492 740 ExecStart = ''${cfg.package}/bin/kube-controller-manager \ 493 741 --address=${cfg.controllerManager.address} \ 494 742 --port=${toString cfg.controllerManager.port} \ 495 - --master=${cfg.controllerManager.master} \ 496 - ${optionalString (cfg.controllerManager.serviceAccountPrivateKey!=null) 497 - "--service-account-private-key-file=${cfg.controllerManager.serviceAccountPrivateKey}"} \ 743 + --kubeconfig=${kubeconfig} \ 744 + --leader-elect=${if cfg.controllerManager.leaderElect then "true" else "false"} \ 745 + ${if (cfg.controllerManager.serviceAccountKeyFile!=null) 746 + then "--service-account-private-key-file=${cfg.controllerManager.serviceAccountKeyFile}" 747 + else "--service-account-private-key-file=/var/run/kubernetes/apiserver.key"} \ 498 748 ${optionalString (cfg.controllerManager.rootCaFile!=null) 499 749 "--root-ca-file=${cfg.controllerManager.rootCaFile}"} \ 500 - --logtostderr=true \ 501 - ${optionalString cfg.verbose "--v=6 --log-flush-frequency=1s"} \ 750 + ${optionalString (cfg.controllerManager.clusterCidr!=null) 751 + "--cluster-cidr=${cfg.controllerManager.clusterCidr}"} \ 752 + --allocate-node-cidrs=true \ 753 + ${optionalString cfg.verbose "--v=6"} \ 754 + ${optionalString cfg.verbose "--log-flush-frequency=1s"} \ 502 755 ${cfg.controllerManager.extraOpts} 503 756 ''; 757 + WorkingDirectory = cfg.dataDir; 504 758 User = "kubernetes"; 759 + Group = "kubernetes"; 505 760 }; 506 761 }; 507 762 }) 508 763 509 - (mkIf cfg.kubelet.enable { 510 - systemd.services.kubelet = { 511 - description = "Kubernetes Kubelet Service"; 512 - wantedBy = [ "multi-user.target" ]; 513 - requires = ["kubernetes-setup.service"]; 514 - after = [ "network.target" "etcd.service" "docker.service" "kubernetes-setup.service" ]; 515 - path = [ pkgs.gitMinimal pkgs.openssh ]; 516 - script = '' 517 - export PATH="/bin:/sbin:/usr/bin:/usr/sbin:$PATH" 518 - exec ${cfg.package}/bin/kubelet \ 519 - --api-servers=${concatMapStringsSep "," (f: "http://${f}") cfg.kubelet.apiServers} \ 520 - --register-node=${if cfg.kubelet.registerNode then "true" else "false"} \ 521 - --address=${cfg.kubelet.address} \ 522 - --port=${toString cfg.kubelet.port} \ 523 - --healthz-bind-address=${cfg.kubelet.healthz.bind} \ 524 - --healthz-port=${toString cfg.kubelet.healthz.port} \ 525 - --hostname-override=${cfg.kubelet.hostname} \ 526 - --allow-privileged=${if cfg.kubelet.allowPrivileged then "true" else "false"} \ 527 - --root-dir=${cfg.dataDir} \ 528 - --cadvisor_port=${toString cfg.kubelet.cadvisorPort} \ 529 - ${optionalString (cfg.kubelet.clusterDns != "") 530 - ''--cluster-dns=${cfg.kubelet.clusterDns}''} \ 531 - ${optionalString (cfg.kubelet.clusterDomain != "") 532 - ''--cluster-domain=${cfg.kubelet.clusterDomain}''} \ 533 - --logtostderr=true \ 534 - ${optionalString cfg.verbose "--v=6 --log_flush_frequency=1s"} \ 535 - ${cfg.kubelet.extraOpts} 536 - ''; 537 - serviceConfig.WorkingDirectory = cfg.dataDir; 538 - }; 539 - }) 540 - 541 764 (mkIf cfg.proxy.enable { 542 765 systemd.services.kube-proxy = { 543 766 description = "Kubernetes Proxy Service"; 544 767 wantedBy = [ "multi-user.target" ]; 545 - after = [ "network.target" "etcd.service" ]; 768 + after = [ "kube-apiserver.service" ]; 769 + path = [pkgs.iptables]; 546 770 serviceConfig = { 547 771 ExecStart = ''${cfg.package}/bin/kube-proxy \ 548 - --master=${cfg.proxy.master} \ 772 + --kubeconfig=${kubeconfig} \ 549 773 --bind-address=${cfg.proxy.address} \ 550 - --logtostderr=true \ 551 - ${optionalString cfg.verbose "--v=6 --log-flush-frequency=1s"} \ 552 - ${cfg.proxy.extraOpts} 774 + ${optionalString cfg.verbose "--v=6"} \ 775 + ${optionalString cfg.verbose "--log-flush-frequency=1s"} \ 776 + ${cfg.controllerManager.extraOpts} 553 777 ''; 554 - Restart = "always"; # Retry connection 555 - RestartSec = "5s"; 778 + WorkingDirectory = cfg.dataDir; 556 779 }; 557 780 }; 558 781 }) 559 782 560 - (mkIf cfg.kube2sky.enable { 561 - systemd.services.kube2sky = { 562 - description = "Kubernetes Dns Bridge Service"; 783 + (mkIf cfg.dns.enable { 784 + systemd.services.kube-dns = { 785 + description = "Kubernetes Dns Service"; 563 786 wantedBy = [ "multi-user.target" ]; 564 - after = [ "network.target" "skydns.service" "etcd.service" "kubernetes-apiserver.service" ]; 787 + after = [ "kube-apiserver.service" ]; 565 788 serviceConfig = { 566 - ExecStart = ''${cfg.package}/bin/kube2sky \ 567 - -etcd-server=http://${head cfg.etcdServers} \ 568 - -domain=${cfg.kube2sky.domain} \ 569 - -kube_master_url=http://${cfg.kube2sky.master} \ 570 - -logtostderr=true \ 571 - ${optionalString cfg.verbose "--v=6 --log-flush-frequency=1s"} \ 572 - ${cfg.kube2sky.extraOpts} 789 + ExecStart = ''${cfg.package}/bin/kube-dns \ 790 + --kubecfg-file=${kubeconfig} \ 791 + --dns-port=${toString cfg.dns.port} \ 792 + --domain=${cfg.dns.domain} \ 793 + ${optionalString cfg.verbose "--v=6"} \ 794 + ${optionalString cfg.verbose "--log-flush-frequency=1s"} \ 795 + ${cfg.dns.extraOpts} 573 796 ''; 797 + WorkingDirectory = cfg.dataDir; 574 798 User = "kubernetes"; 799 + Group = "kubernetes"; 800 + AmbientCapabilities = "cap_net_bind_service"; 801 + SendSIGHUP = true; 575 802 }; 576 803 }; 804 + }) 805 + 806 + (mkIf cfg.kubelet.enable { 807 + boot.kernelModules = ["br_netfilter"]; 577 808 }) 578 809 579 810 (mkIf (any (el: el == "master") cfg.roles) { 811 + virtualisation.docker.enable = mkDefault true; 812 + services.kubernetes.kubelet.enable = mkDefault true; 813 + services.kubernetes.kubelet.allowPrivileged = mkDefault true; 580 814 services.kubernetes.apiserver.enable = mkDefault true; 581 815 services.kubernetes.scheduler.enable = mkDefault true; 582 816 services.kubernetes.controllerManager.enable = mkDefault true; 583 - services.kubernetes.kube2sky.enable = mkDefault true; 817 + services.etcd.enable = mkDefault (cfg.etcd.servers == ["http://127.0.0.1:2379"]); 584 818 }) 585 819 586 820 (mkIf (any (el: el == "node") cfg.roles) { 587 821 virtualisation.docker.enable = mkDefault true; 822 + virtualisation.docker.logDriver = mkDefault "json-file"; 588 823 services.kubernetes.kubelet.enable = mkDefault true; 589 824 services.kubernetes.proxy.enable = mkDefault true; 590 - }) 591 - 592 - (mkIf (any (el: el == "node" || el == "master") cfg.roles) { 593 - services.etcd.enable = mkDefault true; 594 - 595 - services.skydns.enable = mkDefault true; 596 - services.skydns.domain = mkDefault cfg.kubelet.clusterDomain; 825 + services.kubernetes.dns.enable = mkDefault true; 597 826 }) 598 827 599 828 (mkIf ( ··· 601 830 cfg.scheduler.enable || 602 831 cfg.controllerManager.enable || 603 832 cfg.kubelet.enable || 604 - cfg.proxy.enable 833 + cfg.proxy.enable || 834 + cfg.dns.enable 605 835 ) { 606 - systemd.services.kubernetes-setup = { 607 - description = "Kubernetes setup."; 608 - serviceConfig.Type = "oneshot"; 609 - script = '' 610 - mkdir -p /var/run/kubernetes 611 - chown kubernetes /var/lib/kubernetes 612 - 613 - rm ${cfg.dataDir}/.dockercfg || true 614 - ln -fs ${pkgs.writeText "kubernetes-dockercfg" cfg.dockerCfg} ${cfg.dataDir}/.dockercfg 615 - ''; 616 - }; 617 - 618 - services.kubernetes.package = mkDefault pkgs.kubernetes; 836 + systemd.tmpfiles.rules = [ 837 + "d /opt/cni/bin 0755 root root -" 838 + "d /var/run/kubernetes 0755 kubernetes kubernetes -" 839 + "d /var/lib/kubernetes 0755 kubernetes kubernetes -" 840 + ]; 619 841 620 842 environment.systemPackages = [ cfg.package ]; 621 - 622 843 users.extraUsers = singleton { 623 844 name = "kubernetes"; 624 845 uid = config.ids.uids.kubernetes; ··· 630 851 }; 631 852 users.extraGroups.kubernetes.gid = config.ids.gids.kubernetes; 632 853 }) 633 - 634 854 ]; 635 855 }
+1 -1
nixos/modules/services/monitoring/collectd.nix
··· 9 9 BaseDir "${cfg.dataDir}" 10 10 PIDFile "${cfg.pidFile}" 11 11 AutoLoadPlugin ${if cfg.autoLoadPlugin then "true" else "false"} 12 - Hostname ${config.networking.hostName} 12 + Hostname "${config.networking.hostName}" 13 13 14 14 LoadPlugin syslog 15 15 <Plugin "syslog">
+12 -12
nixos/modules/services/network-filesystems/tahoe.nix
··· 233 233 serviceConfig = { 234 234 Type = "simple"; 235 235 PIDFile = pidfile; 236 + # Believe it or not, Tahoe is very brittle about the order of 237 + # arguments to $(tahoe start). The node directory must come first, 238 + # and arguments which alter Twisted's behavior come afterwards. 239 + ExecStart = '' 240 + ${settings.package}/bin/tahoe start ${nodedir} -n -l- --pidfile=${pidfile} 241 + ''; 236 242 }; 237 243 preStart = '' 238 244 if [ \! -d ${nodedir} ]; then ··· 247 253 # rm ${nodedir}/tahoe.cfg 248 254 # ln -s /etc/tahoe-lafs/introducer-${node}.cfg ${nodedir}/tahoe.cfg 249 255 cp /etc/tahoe-lafs/introducer-${node}.cfg ${nodedir}/tahoe.cfg 250 - ''; 251 - # Believe it or not, Tahoe is very brittle about the order of 252 - # arguments to $(tahoe start). The node directory must come first, 253 - # and arguments which alter Twisted's behavior come afterwards. 254 - script = '' 255 - tahoe start ${nodedir} -n -l- --pidfile=${pidfile} 256 256 ''; 257 257 }); 258 258 users.extraUsers = flip mapAttrs' cfg.introducers (node: _: ··· 333 333 serviceConfig = { 334 334 Type = "simple"; 335 335 PIDFile = pidfile; 336 + # Believe it or not, Tahoe is very brittle about the order of 337 + # arguments to $(tahoe start). The node directory must come first, 338 + # and arguments which alter Twisted's behavior come afterwards. 339 + ExecStart = '' 340 + ${settings.package}/bin/tahoe start ${nodedir} -n -l- --pidfile=${pidfile} 341 + ''; 336 342 }; 337 343 preStart = '' 338 344 if [ \! -d ${nodedir} ]; then ··· 347 353 # rm ${nodedir}/tahoe.cfg 348 354 # ln -s /etc/tahoe-lafs/${node}.cfg ${nodedir}/tahoe.cfg 349 355 cp /etc/tahoe-lafs/${node}.cfg ${nodedir}/tahoe.cfg 350 - ''; 351 - # Believe it or not, Tahoe is very brittle about the order of 352 - # arguments to $(tahoe start). The node directory must come first, 353 - # and arguments which alter Twisted's behavior come afterwards. 354 - script = '' 355 - tahoe start ${nodedir} -n -l- --pidfile=${pidfile} 356 356 ''; 357 357 }); 358 358 users.extraUsers = flip mapAttrs' cfg.nodes (node: _:
+4 -4
nixos/modules/services/x11/display-managers/default.nix
··· 82 82 83 83 # Speed up application start by 50-150ms according to 84 84 # http://kdemonkey.blogspot.nl/2008/04/magic-trick.html 85 - rm -rf $HOME/.compose-cache 86 - mkdir $HOME/.compose-cache 85 + rm -rf "$HOME/.compose-cache" 86 + mkdir "$HOME/.compose-cache" 87 87 88 88 # Work around KDE errors when a user first logs in and 89 89 # .local/share doesn't exist yet. 90 - mkdir -p $HOME/.local/share 90 + mkdir -p "$HOME/.local/share" 91 91 92 92 unset _DID_SYSTEMD_CAT 93 93 ··· 148 148 allowSubstitutes = false; 149 149 } 150 150 '' 151 - mkdir -p $out 151 + mkdir -p "$out" 152 152 ${concatMapStrings (n: '' 153 153 cat - > "$out/${n}.desktop" << EODESKTOP 154 154 [Desktop Entry]
+28 -22
nixos/modules/services/x11/window-managers/i3.nix
··· 3 3 with lib; 4 4 5 5 let 6 - wmCfg = config.services.xserver.windowManager; 6 + cfg = config.services.xserver.windowManager.i3; 7 + in 8 + 9 + { 10 + options.services.xserver.windowManager.i3 = { 11 + enable = mkEnableOption "i3 window manager"; 7 12 8 - i3option = name: { 9 - enable = mkEnableOption name; 10 13 configFile = mkOption { 11 - default = null; 12 - type = types.nullOr types.path; 14 + default = null; 15 + type = with types; nullOr path; 13 16 description = '' 14 17 Path to the i3 configuration file. 15 18 If left at the default value, $HOME/.i3/config will be used. 16 19 ''; 17 20 }; 21 + 18 22 extraSessionCommands = mkOption { 19 - default = ""; 20 - type = types.lines; 23 + default = ""; 24 + type = types.lines; 21 25 description = '' 22 26 Shell commands executed just before i3 is started. 23 27 ''; 24 28 }; 29 + 30 + package = mkOption { 31 + type = types.package; 32 + default = pkgs.i3; 33 + defaultText = "pkgs.i3"; 34 + example = "pkgs.i3-gaps"; 35 + description = '' 36 + i3 package to use. 37 + ''; 38 + }; 25 39 }; 26 40 27 - i3config = name: pkg: cfg: { 41 + config = mkIf cfg.enable { 28 42 services.xserver.windowManager.session = [{ 29 - inherit name; 43 + name = "i3"; 30 44 start = '' 31 45 ${cfg.extraSessionCommands} 32 46 33 - ${pkg}/bin/i3 ${optionalString (cfg.configFile != null) 47 + ${cfg.package}/bin/i3 ${optionalString (cfg.configFile != null) 34 48 "-c \"${cfg.configFile}\"" 35 49 } & 36 50 waitPID=$! 37 51 ''; 38 52 }]; 39 - environment.systemPackages = [ pkg ]; 53 + environment.systemPackages = [ cfg.package ]; 40 54 }; 41 55 42 - in 43 - 44 - { 45 - options.services.xserver.windowManager = { 46 - i3 = i3option "i3"; 47 - i3-gaps = i3option "i3-gaps"; 48 - }; 49 - 50 - config = mkMerge [ 51 - (mkIf wmCfg.i3.enable (i3config "i3" pkgs.i3 wmCfg.i3)) 52 - (mkIf wmCfg.i3-gaps.enable (i3config "i3-gaps" pkgs.i3-gaps wmCfg.i3-gaps)) 56 + imports = [ 57 + (mkRemovedOptionModule [ "services" "xserver" "windowManager" "i3-gaps" "enable" ] 58 + "Use services.xserver.windowManager.i3.enable and set services.xserver.windowManager.i3.package to pkgs.i3-gaps to use i3-gaps.") 53 59 ]; 54 60 }
+383 -157
nixos/tests/kubernetes.nix
··· 1 - # This test runs two node kubernetes cluster and checks if simple redis pod works 1 + { system ? builtins.currentSystem }: 2 + 3 + with import ../lib/testing.nix { inherit system; }; 4 + with import ../lib/qemu-flags.nix; 5 + with pkgs.lib; 2 6 3 - import ./make-test.nix ({ pkgs, ...} : rec { 4 - name = "kubernetes"; 5 - meta = with pkgs.stdenv.lib.maintainers; { 6 - maintainers = [ offline ]; 7 + let 8 + redisPod = pkgs.writeText "redis-master-pod.json" (builtins.toJSON { 9 + kind = "Pod"; 10 + apiVersion = "v1"; 11 + metadata.name = "redis"; 12 + metadata.labels.name = "redis"; 13 + spec.containers = [{ 14 + name = "redis"; 15 + image = "redis"; 16 + args = ["--bind" "0.0.0.0"]; 17 + imagePullPolicy = "Never"; 18 + ports = [{ 19 + name = "redis-server"; 20 + containerPort = 6379; 21 + }]; 22 + }]; 23 + }); 24 + 25 + redisService = pkgs.writeText "redis-service.json" (builtins.toJSON { 26 + kind = "Service"; 27 + apiVersion = "v1"; 28 + metadata.name = "redis"; 29 + spec = { 30 + ports = [{port = 6379; targetPort = 6379;}]; 31 + selector = {name = "redis";}; 32 + }; 33 + }); 34 + 35 + redisImage = pkgs.dockerTools.buildImage { 36 + name = "redis"; 37 + tag = "latest"; 38 + contents = pkgs.redis; 39 + config.Entrypoint = "/bin/redis-server"; 7 40 }; 8 41 9 - redisMaster = builtins.toFile "redis-master-pod.yaml" '' 10 - id: redis-master-pod 11 - kind: Pod 12 - apiVersion: v1beta1 13 - desiredState: 14 - manifest: 15 - version: v1beta1 16 - id: redis-master-pod 17 - containers: 18 - - name: master 19 - image: master:5000/nix 20 - cpu: 100 21 - ports: 22 - - name: redis-server 23 - containerPort: 6379 24 - hostPort: 6379 25 - volumeMounts: 26 - - name: nix-store 27 - mountPath: /nix/store 28 - readOnly: true 29 - volumeMounts: 30 - - name: system-profile 31 - mountPath: /bin 32 - readOnly: true 33 - command: 34 - - /bin/redis-server 35 - volumes: 36 - - name: nix-store 37 - source: 38 - hostDir: 39 - path: /nix/store 40 - - name: system-profile 41 - source: 42 - hostDir: 43 - path: /run/current-system/sw/bin 44 - labels: 45 - name: redis 46 - role: master 42 + testSimplePod = '' 43 + $kubernetes->execute("docker load < ${redisImage}"); 44 + $kubernetes->waitUntilSucceeds("kubectl create -f ${redisPod}"); 45 + $kubernetes->succeed("kubectl create -f ${redisService}"); 46 + $kubernetes->waitUntilSucceeds("kubectl get pod redis | grep Running"); 47 + $kubernetes->succeed("nc -z \$\(dig \@10.10.0.1 redis.default.svc.cluster.local +short\) 6379"); 47 48 ''; 49 + in { 50 + # This test runs kubernetes on a single node 51 + trivial = makeTest { 52 + name = "kubernetes-trivial"; 48 53 49 - nodes = { 50 - master = 51 - { config, pkgs, lib, nodes, ... }: 52 - { 53 - virtualisation.memorySize = 768; 54 - services.kubernetes = { 55 - roles = ["master" "node"]; 56 - dockerCfg = ''{"master:5000":{}}''; 57 - controllerManager.machines = ["master" "node"]; 58 - apiserver.address = "0.0.0.0"; 59 - verbose = true; 60 - }; 61 - virtualisation.docker.extraOptions = "--iptables=false --ip-masq=false -b cbr0 --insecure-registry master:5000"; 54 + nodes = { 55 + kubernetes = 56 + { config, pkgs, lib, nodes, ... }: 57 + { 58 + virtualisation.memorySize = 768; 59 + virtualisation.diskSize = 2048; 60 + 61 + programs.bash.enableCompletion = true; 62 62 63 - services.etcd = { 64 - listenPeerUrls = ["http://0.0.0.0:7001"]; 65 - initialAdvertisePeerUrls = ["http://master:7001"]; 66 - initialCluster = ["master=http://master:7001" "node=http://node:7001"]; 67 - }; 68 - services.dockerRegistry.enable = true; 69 - services.dockerRegistry.host = "0.0.0.0"; 70 - services.dockerRegistry.port = 5000; 63 + services.kubernetes.roles = ["master" "node"]; 64 + virtualisation.docker.extraOptions = "--iptables=false --ip-masq=false -b cbr0"; 71 65 72 - virtualisation.vlans = [ 1 2 ]; 73 - networking.bridges = { 74 - cbr0.interfaces = [ "eth2" ]; 75 - }; 76 - networking.interfaces = { 77 - cbr0 = { 78 - ipAddress = "10.10.0.1"; 79 - prefixLength = 24; 80 - }; 81 - eth2.ip4 = lib.mkOverride 0 [ ]; 66 + networking.bridges.cbr0.interfaces = []; 67 + networking.interfaces.cbr0 = {}; 82 68 }; 83 - networking.localCommands = '' 84 - ip route add 10.10.0.0/16 dev cbr0 85 - ip route flush cache 86 - ''; 87 - networking.extraHosts = "127.0.0.1 master"; 69 + }; 70 + 71 + testScript = '' 72 + startAll; 73 + 74 + $kubernetes->waitUntilSucceeds("kubectl get nodes | grep kubernetes | grep Ready"); 75 + 76 + ${testSimplePod} 77 + ''; 78 + }; 79 + 80 + cluster = let 81 + runWithOpenSSL = file: cmd: pkgs.runCommand file { 82 + buildInputs = [ pkgs.openssl ]; 83 + } cmd; 84 + 85 + ca_key = runWithOpenSSL "ca-key.pem" "openssl genrsa -out $out 2048"; 86 + ca_pem = runWithOpenSSL "ca.pem" '' 87 + openssl req \ 88 + -x509 -new -nodes -key ${ca_key} \ 89 + -days 10000 -out $out -subj "/CN=etcd-ca" 90 + ''; 91 + etcd_key = runWithOpenSSL "etcd-key.pem" "openssl genrsa -out $out 2048"; 92 + etcd_csr = runWithOpenSSL "etcd.csr" '' 93 + openssl req \ 94 + -new -key ${etcd_key} \ 95 + -out $out -subj "/CN=etcd" \ 96 + -config ${openssl_cnf} 97 + ''; 98 + etcd_cert = runWithOpenSSL "etcd.pem" '' 99 + openssl x509 \ 100 + -req -in ${etcd_csr} \ 101 + -CA ${ca_pem} -CAkey ${ca_key} \ 102 + -CAcreateserial -out $out \ 103 + -days 365 -extensions v3_req \ 104 + -extfile ${openssl_cnf} 105 + ''; 106 + 107 + etcd_client_key = runWithOpenSSL "etcd-client-key.pem" 108 + "openssl genrsa -out $out 2048"; 109 + 110 + etcd_client_csr = runWithOpenSSL "etcd-client-key.pem" '' 111 + openssl req \ 112 + -new -key ${etcd_client_key} \ 113 + -out $out -subj "/CN=etcd-client" \ 114 + -config ${client_openssl_cnf} 115 + ''; 116 + 117 + etcd_client_cert = runWithOpenSSL "etcd-client.crt" '' 118 + openssl x509 \ 119 + -req -in ${etcd_client_csr} \ 120 + -CA ${ca_pem} -CAkey ${ca_key} -CAcreateserial \ 121 + -out $out -days 365 -extensions v3_req \ 122 + -extfile ${client_openssl_cnf} 123 + ''; 124 + 125 + apiserver_key = runWithOpenSSL "apiserver-key.pem" "openssl genrsa -out $out 2048"; 126 + 127 + apiserver_csr = runWithOpenSSL "apiserver.csr" '' 128 + openssl req \ 129 + -new -key ${apiserver_key} \ 130 + -out $out -subj "/CN=kube-apiserver" \ 131 + -config ${apiserver_cnf} 132 + ''; 133 + 134 + apiserver_cert = runWithOpenSSL "apiserver.pem" '' 135 + openssl x509 \ 136 + -req -in ${apiserver_csr} \ 137 + -CA ${ca_pem} -CAkey ${ca_key} -CAcreateserial \ 138 + -out $out -days 365 -extensions v3_req \ 139 + -extfile ${apiserver_cnf} 140 + ''; 141 + 142 + worker_key = runWithOpenSSL "worker-key.pem" "openssl genrsa -out $out 2048"; 143 + 144 + worker_csr = runWithOpenSSL "worker.csr" '' 145 + openssl req \ 146 + -new -key ${worker_key} \ 147 + -out $out -subj "/CN=kube-worker" \ 148 + -config ${worker_cnf} 149 + ''; 150 + 151 + worker_cert = runWithOpenSSL "worker.pem" '' 152 + openssl x509 \ 153 + -req -in ${worker_csr} \ 154 + -CA ${ca_pem} -CAkey ${ca_key} -CAcreateserial \ 155 + -out $out -days 365 -extensions v3_req \ 156 + -extfile ${worker_cnf} 157 + ''; 158 + 159 + openssl_cnf = pkgs.writeText "openssl.cnf" '' 160 + [req] 161 + req_extensions = v3_req 162 + distinguished_name = req_distinguished_name 163 + [req_distinguished_name] 164 + [ v3_req ] 165 + basicConstraints = CA:FALSE 166 + keyUsage = digitalSignature, keyEncipherment 167 + extendedKeyUsage = serverAuth 168 + subjectAltName = @alt_names 169 + [alt_names] 170 + DNS.1 = etcd1 171 + DNS.2 = etcd2 172 + DNS.3 = etcd3 173 + IP.1 = 127.0.0.1 174 + ''; 88 175 89 - networking.firewall.enable = false; 90 - #networking.firewall.allowedTCPPorts = [ 4001 7001 ]; 176 + client_openssl_cnf = pkgs.writeText "client-openssl.cnf" '' 177 + [req] 178 + req_extensions = v3_req 179 + distinguished_name = req_distinguished_name 180 + [req_distinguished_name] 181 + [ v3_req ] 182 + basicConstraints = CA:FALSE 183 + keyUsage = digitalSignature, keyEncipherment 184 + extendedKeyUsage = clientAuth 185 + ''; 91 186 92 - environment.systemPackages = [ pkgs.redis ]; 187 + apiserver_cnf = pkgs.writeText "apiserver-openssl.cnf" '' 188 + [req] 189 + req_extensions = v3_req 190 + distinguished_name = req_distinguished_name 191 + [req_distinguished_name] 192 + [ v3_req ] 193 + basicConstraints = CA:FALSE 194 + keyUsage = nonRepudiation, digitalSignature, keyEncipherment 195 + subjectAltName = @alt_names 196 + [alt_names] 197 + DNS.1 = kubernetes 198 + DNS.2 = kubernetes.default 199 + DNS.3 = kubernetes.default.svc 200 + DNS.4 = kubernetes.default.svc.cluster.local 201 + IP.1 = 10.10.10.1 202 + ''; 203 + 204 + worker_cnf = pkgs.writeText "worker-openssl.cnf" '' 205 + [req] 206 + req_extensions = v3_req 207 + distinguished_name = req_distinguished_name 208 + [req_distinguished_name] 209 + [ v3_req ] 210 + basicConstraints = CA:FALSE 211 + keyUsage = nonRepudiation, digitalSignature, keyEncipherment 212 + subjectAltName = @alt_names 213 + [alt_names] 214 + DNS.1 = kubeWorker1 215 + DNS.2 = kubeWorker2 216 + ''; 217 + 218 + etcdNodeConfig = { 219 + virtualisation.memorySize = 128; 220 + 221 + services = { 222 + etcd = { 223 + enable = true; 224 + keyFile = etcd_key; 225 + certFile = etcd_cert; 226 + trustedCaFile = ca_pem; 227 + peerClientCertAuth = true; 228 + listenClientUrls = ["https://0.0.0.0:2379"]; 229 + listenPeerUrls = ["https://0.0.0.0:2380"]; 93 230 }; 231 + }; 94 232 95 - node = 96 - { config, pkgs, lib, nodes, ... }: 97 - { 98 - services.kubernetes = { 99 - roles = ["node"]; 100 - dockerCfg = ''{"master:5000":{}}''; 101 - kubelet.apiServers = ["master:8080"]; 102 - verbose = true; 103 - }; 104 - virtualisation.docker.extraOptions = "--iptables=false --ip-masq=false -b cbr0 --insecure-registry master:5000"; 105 - services.etcd = { 106 - listenPeerUrls = ["http://0.0.0.0:7001"]; 107 - initialAdvertisePeerUrls = ["http://node:7001"]; 108 - initialCluster = ["master=http://master:7001" "node=http://node:7001"]; 109 - }; 233 + environment.variables = { 234 + ETCDCTL_CERT_FILE = "${etcd_client_cert}"; 235 + ETCDCTL_KEY_FILE = "${etcd_client_key}"; 236 + ETCDCTL_CA_FILE = "${ca_pem}"; 237 + ETCDCTL_PEERS = "https://127.0.0.1:2379"; 238 + }; 110 239 111 - virtualisation.vlans = [ 1 2 ]; 112 - networking.bridges = { 113 - cbr0.interfaces = [ "eth2" ]; 114 - }; 115 - networking.interfaces = { 116 - cbr0 = { 117 - ipAddress = "10.10.1.1"; 118 - prefixLength = 24; 119 - }; 120 - eth2.ip4 = lib.mkOverride 0 [ ]; 121 - }; 122 - networking.localCommands = '' 123 - ip route add 10.10.0.0/16 dev cbr0 124 - ip route flush cache 125 - ''; 126 - networking.extraHosts = "127.0.0.1 node"; 240 + networking.firewall.allowedTCPPorts = [ 2379 2380 ]; 241 + }; 127 242 128 - networking.firewall.enable = false; 129 - #networking.firewall.allowedTCPPorts = [ 4001 7001 ]; 243 + kubeConfig = { 244 + virtualisation.diskSize = 2048; 245 + programs.bash.enableCompletion = true; 130 246 131 - environment.systemPackages = [ pkgs.redis ]; 247 + services.flannel = { 248 + enable = true; 249 + network = "10.10.0.0/16"; 250 + iface = "eth1"; 251 + etcd = { 252 + endpoints = ["https://etcd1:2379" "https://etcd2:2379" "https://etcd3:2379"]; 253 + keyFile = etcd_client_key; 254 + certFile = etcd_client_cert; 255 + caFile = ca_pem; 132 256 }; 257 + }; 258 + 259 + # vxlan 260 + networking.firewall.allowedUDPPorts = [ 8472 ]; 261 + 262 + systemd.services.docker.after = ["flannel.service"]; 263 + systemd.services.docker.serviceConfig.EnvironmentFile = "/run/flannel/subnet.env"; 264 + virtualisation.docker.extraOptions = "--iptables=false --ip-masq=false --bip $FLANNEL_SUBNET"; 265 + 266 + services.kubernetes.verbose = true; 267 + services.kubernetes.etcd = { 268 + servers = ["https://etcd1:2379" "https://etcd2:2379" "https://etcd3:2379"]; 269 + keyFile = etcd_client_key; 270 + certFile = etcd_client_cert; 271 + caFile = ca_pem; 272 + }; 133 273 134 - client = 135 - { config, pkgs, nodes, ... }: 136 - { 137 - virtualisation.docker.enable = true; 138 - virtualisation.docker.extraOptions = "--insecure-registry master:5000"; 139 - environment.systemPackages = [ pkgs.kubernetes ]; 140 - environment.etc."test/redis-master-pod.yaml".source = redisMaster; 141 - environment.etc."test/pause".source = "${pkgs.kubernetes}/bin/kube-pause"; 142 - environment.etc."test/Dockerfile".source = pkgs.writeText "Dockerfile" '' 143 - FROM scratch 144 - ADD pause / 145 - ENTRYPOINT ["/pause"] 146 - ''; 274 + environment.systemPackages = [ pkgs.bind pkgs.tcpdump pkgs.utillinux ]; 275 + }; 276 + 277 + kubeMasterConfig = {pkgs, ...}: { 278 + require = [kubeConfig]; 279 + 280 + # kube apiserver 281 + networking.firewall.allowedTCPPorts = [ 443 ]; 282 + 283 + virtualisation.memorySize = 512; 284 + 285 + services.kubernetes = { 286 + roles = ["master"]; 287 + scheduler.leaderElect = true; 288 + controllerManager.leaderElect = true; 289 + 290 + apiserver = { 291 + publicAddress = "0.0.0.0"; 292 + advertiseAddress = "192.168.1.8"; 293 + tlsKeyFile = apiserver_key; 294 + tlsCertFile = apiserver_cert; 295 + clientCaFile = ca_pem; 296 + kubeletClientCaFile = ca_pem; 297 + kubeletClientKeyFile = worker_key; 298 + kubeletClientCertFile = worker_cert; 147 299 }; 148 - }; 300 + }; 301 + }; 302 + 303 + kubeWorkerConfig = { pkgs, ... }: { 304 + require = [kubeConfig]; 305 + 306 + virtualisation.memorySize = 512; 307 + 308 + # kubelet 309 + networking.firewall.allowedTCPPorts = [ 10250 ]; 310 + 311 + services.kubernetes = { 312 + roles = ["node"]; 313 + kubeconfig = { 314 + server = "https://kubernetes:443"; 315 + caFile = ca_pem; 316 + certFile = worker_cert; 317 + keyFile = worker_key; 318 + }; 319 + kubelet = { 320 + tlsKeyFile = worker_key; 321 + tlsCertFile = worker_cert; 322 + }; 323 + }; 324 + }; 325 + in makeTest { 326 + name = "kubernetes-cluster"; 327 + 328 + nodes = { 329 + etcd1 = { config, pkgs, nodes, ... }: { 330 + require = [etcdNodeConfig]; 331 + services.etcd = { 332 + advertiseClientUrls = ["https://etcd1:2379"]; 333 + initialCluster = ["etcd1=https://etcd1:2380" "etcd2=https://etcd2:2380" "etcd3=https://etcd3:2380"]; 334 + initialAdvertisePeerUrls = ["https://etcd1:2380"]; 335 + }; 336 + }; 337 + 338 + etcd2 = { config, pkgs, ... }: { 339 + require = [etcdNodeConfig]; 340 + services.etcd = { 341 + advertiseClientUrls = ["https://etcd2:2379"]; 342 + initialCluster = ["etcd1=https://etcd1:2380" "etcd2=https://etcd2:2380" "etcd3=https://etcd3:2380"]; 343 + initialAdvertisePeerUrls = ["https://etcd2:2380"]; 344 + }; 345 + }; 346 + 347 + etcd3 = { config, pkgs, ... }: { 348 + require = [etcdNodeConfig]; 349 + services.etcd = { 350 + advertiseClientUrls = ["https://etcd3:2379"]; 351 + initialCluster = ["etcd1=https://etcd1:2380" "etcd2=https://etcd2:2380" "etcd3=https://etcd3:2380"]; 352 + initialAdvertisePeerUrls = ["https://etcd3:2380"]; 353 + }; 354 + }; 355 + 356 + kubeMaster1 = { config, pkgs, lib, nodes, ... }: { 357 + require = [kubeMasterConfig]; 358 + }; 359 + 360 + kubeMaster2 = { config, pkgs, lib, nodes, ... }: { 361 + require = [kubeMasterConfig]; 362 + }; 149 363 150 - testScript = '' 151 - startAll; 364 + # Kubernetes TCP load balancer 365 + kubernetes = { config, pkgs, ... }: { 366 + # kubernetes 367 + networking.firewall.allowedTCPPorts = [ 443 ]; 152 368 153 - $master->waitForUnit("kubernetes-apiserver.service"); 154 - $master->waitForUnit("kubernetes-scheduler.service"); 155 - $master->waitForUnit("kubernetes-controller-manager.service"); 156 - $master->waitForUnit("kubernetes-kubelet.service"); 157 - $master->waitForUnit("kubernetes-proxy.service"); 369 + services.haproxy.enable = true; 370 + services.haproxy.config = '' 371 + global 372 + log 127.0.0.1 local0 notice 373 + user haproxy 374 + group haproxy 158 375 159 - $node->waitForUnit("kubernetes-kubelet.service"); 160 - $node->waitForUnit("kubernetes-proxy.service"); 376 + defaults 377 + log global 378 + retries 2 379 + timeout connect 3000 380 + timeout server 5000 381 + timeout client 5000 382 + 383 + listen kubernetes 384 + bind 0.0.0.0:443 385 + mode tcp 386 + option ssl-hello-chk 387 + balance roundrobin 388 + server kube-master-1 kubeMaster1:443 check 389 + server kube-master-2 kubeMaster2:443 check 390 + ''; 391 + }; 161 392 162 - $master->waitUntilSucceeds("kubectl get minions | grep master"); 163 - $master->waitUntilSucceeds("kubectl get minions | grep node"); 393 + kubeWorker1 = { config, pkgs, lib, nodes, ... }: { 394 + require = [kubeWorkerConfig]; 395 + }; 164 396 165 - $client->waitForUnit("docker.service"); 166 - $client->succeed("tar cv --files-from /dev/null | docker import - nix"); 167 - $client->succeed("docker tag nix master:5000/nix"); 168 - $master->waitForUnit("docker-registry.service"); 169 - $client->succeed("docker push master:5000/nix"); 170 - $client->succeed("mkdir -p /root/pause"); 171 - $client->succeed("cp /etc/test/pause /root/pause/"); 172 - $client->succeed("cp /etc/test/Dockerfile /root/pause/"); 173 - $client->succeed("cd /root/pause && docker build -t master:5000/pause ."); 174 - $client->succeed("docker push master:5000/pause"); 397 + kubeWorker2 = { config, pkgs, lib, nodes, ... }: { 398 + require = [kubeWorkerConfig]; 399 + }; 400 + }; 175 401 176 - subtest "simple pod", sub { 177 - $client->succeed("kubectl create -f ${redisMaster} -s http://master:8080"); 178 - $client->waitUntilSucceeds("kubectl get pods -s http://master:8080 | grep redis-master | grep -i running"); 179 - } 402 + testScript = '' 403 + startAll; 180 404 181 - ''; 182 - }) 405 + ${testSimplePod} 406 + ''; 407 + }; 408 + }
+3 -3
pkgs/applications/audio/deadbeef/plugins/mpris2.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, deadbeef, glib }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.8"; 5 4 name = "deadbeef-mpris2-plugin-${version}"; 5 + version = "1.10"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/Serranya/deadbeef-mpris2-plugin/releases/download/v${version}/${name}.tar.xz"; 9 - sha256 = "1xg880zlxbqz7hs5g7xwc128l08j8c3isn45rdi138hi4fqbyjfi"; 9 + sha256 = "083fbvi06y85khr8hdm4rl5alxdanjbbyphizyr4hi93d7a0jg75"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkgconfig ]; ··· 15 15 16 16 meta = with stdenv.lib; { 17 17 description = "MPRISv2 plugin for the DeaDBeeF music player"; 18 - homepage = https://github.com/Serranya/deadbeef-mpris2-plugin/; 18 + homepage = "https://github.com/Serranya/deadbeef-mpris2-plugin/"; 19 19 license = licenses.gpl2; 20 20 platforms = platforms.linux; 21 21 maintainers = [ maintainers.abbradar ];
+8 -3
pkgs/applications/audio/mopidy-gmusic/default.nix
··· 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 4 name = "mopidy-gmusic-${version}"; 5 - version = "1.0.0"; 5 + version = "2.0.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/mopidy/mopidy-gmusic/archive/v${version}.tar.gz"; 9 - sha256 = "0yfilzfamy1bxnmgb1xk56jrk4sz0i7vcnc0a8klrm9sc7agnm9i"; 9 + sha256 = "1xryw2aixfza3brxlgjdlg0lghlb17g7kay9zy56mlzp0jr7m87j"; 10 10 }; 11 11 12 - propagatedBuildInputs = [ mopidy pythonPackages.requests2 pythonPackages.gmusicapi ]; 12 + propagatedBuildInputs = [ 13 + mopidy 14 + pythonPackages.requests2 15 + pythonPackages.gmusicapi 16 + pythonPackages.cachetools 17 + ]; 13 18 14 19 doCheck = false; 15 20
+3 -3
pkgs/applications/audio/svox/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "svox-${version}"; 5 - version = "2016-01-25"; 5 + version = "2016-10-20"; 6 6 7 7 src = fetchgit { 8 8 url = "https://android.googlesource.com/platform/external/svox"; 9 - rev = "dfb9937746b1828d093faf3b1494f9dc403f392d"; 10 - sha256 = "1gkfj5avikzmr2vv8bhf83n15jcbz4phz5j13l0qnh3gjzh4f1bk"; 9 + rev = "2dd8f16e4436520b93e93aa72b92acad92c0127d"; 10 + sha256 = "064h3zb9bn1z6xbv15iy6l4rlxx8fqzy54s898qvafjhz6kawj9g"; 11 11 }; 12 12 13 13 postPatch = ''
+1 -1
pkgs/applications/display-managers/sddm/default.nix
··· 57 57 58 58 meta = with stdenv.lib; { 59 59 description = "QML based X11 display manager"; 60 - homepage = https://github.com/sddm/sddm; 60 + homepage = "https://github.com/sddm/sddm"; 61 61 platforms = platforms.linux; 62 62 maintainers = with maintainers; [ abbradar ttuegel ]; 63 63 };
+26 -26
pkgs/applications/editors/emacs-modes/elpa-generated.nix
··· 175 175 }) {}; 176 176 auctex = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 177 177 pname = "auctex"; 178 - version = "11.89.6"; 178 + version = "11.89.7"; 179 179 src = fetchurl { 180 - url = "https://elpa.gnu.org/packages/auctex-11.89.6.tar"; 181 - sha256 = "1lfaki8s9ri6ds88mhpxwqb2jrjf7hbs1w3nxhg307344lac07gy"; 180 + url = "https://elpa.gnu.org/packages/auctex-11.89.7.tar"; 181 + sha256 = "03sxdh6dv4m98yq09hxcph2lgidai8ky22i9acjcp6vfjlsb9mlf"; 182 182 }; 183 183 packageRequires = []; 184 184 meta = { ··· 335 335 company = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }: 336 336 elpaBuild { 337 337 pname = "company"; 338 - version = "0.9.0"; 338 + version = "0.9.2"; 339 339 src = fetchurl { 340 - url = "https://elpa.gnu.org/packages/company-0.9.0.tar"; 341 - sha256 = "1d090j1xv97nbxzz0iq4gmzjijggm8wsd0y1zfsa8syrq8qa0ajs"; 340 + url = "https://elpa.gnu.org/packages/company-0.9.2.tar"; 341 + sha256 = "10divixs06gq9nm8s8x0q12ir07y27d06l52ix2dn84zvj853z4z"; 342 342 }; 343 343 packageRequires = [ cl-lib emacs ]; 344 344 meta = { ··· 619 619 el-search = callPackage ({ elpaBuild, emacs, fetchurl, lib, stream }: 620 620 elpaBuild { 621 621 pname = "el-search"; 622 - version = "1.0.1"; 622 + version = "1.1.2"; 623 623 src = fetchurl { 624 - url = "https://elpa.gnu.org/packages/el-search-1.0.1.tar"; 625 - sha256 = "14l7zq4bm5ihybpj8qvqpzzmgjsyhr8yq2d4jmadk35q5hlx1cbb"; 624 + url = "https://elpa.gnu.org/packages/el-search-1.1.2.tar"; 625 + sha256 = "1cav55nx1045c3xasi5d76yyqi68ygp9dpqv9bazrqgcpsmw6y8b"; 626 626 }; 627 627 packageRequires = [ emacs stream ]; 628 628 meta = { ··· 712 712 }) {}; 713 713 exwm = callPackage ({ elpaBuild, fetchurl, lib, xelb }: elpaBuild { 714 714 pname = "exwm"; 715 - version = "0.11"; 715 + version = "0.12"; 716 716 src = fetchurl { 717 - url = "https://elpa.gnu.org/packages/exwm-0.11.tar"; 718 - sha256 = "108n09b6512y05rskq754hzwc5nzqmkq1lfrarl34my41wsc1qnf"; 717 + url = "https://elpa.gnu.org/packages/exwm-0.12.tar"; 718 + sha256 = "1h964w9ir8plam45c194af74g5q1wdvgwrldlmlcplcswlsn3n4z"; 719 719 }; 720 720 packageRequires = [ xelb ]; 721 721 meta = { ··· 1351 1351 }) {}; 1352 1352 org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 1353 1353 pname = "org"; 1354 - version = "20161102"; 1354 + version = "20161118"; 1355 1355 src = fetchurl { 1356 - url = "https://elpa.gnu.org/packages/org-20161102.tar"; 1357 - sha256 = "12v9jhakdxcmlw9zrcrh1fwi3kh6z0qva90hpnr0zjqyj72i0wir"; 1356 + url = "https://elpa.gnu.org/packages/org-20161118.tar"; 1357 + sha256 = "1w9g8r08kaiw9f4fjsj0hbffzq85rj734j5lxvbaafbnz7dbklk1"; 1358 1358 }; 1359 1359 packageRequires = []; 1360 1360 meta = { ··· 1703 1703 }) {}; 1704 1704 spinner = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 1705 1705 pname = "spinner"; 1706 - version = "1.7.1"; 1706 + version = "1.7.3"; 1707 1707 src = fetchurl { 1708 - url = "https://elpa.gnu.org/packages/spinner-1.7.1.el"; 1709 - sha256 = "1fmwzdih0kbyvs8bn38mpm4sbs2mikqy2vdykfy9g20wpa8vb681"; 1708 + url = "https://elpa.gnu.org/packages/spinner-1.7.3.el"; 1709 + sha256 = "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"; 1710 1710 }; 1711 1711 packageRequires = []; 1712 1712 meta = { ··· 1901 1901 license = lib.licenses.free; 1902 1902 }; 1903 1903 }) {}; 1904 - validate = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }: 1904 + validate = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib, seq }: 1905 1905 elpaBuild { 1906 1906 pname = "validate"; 1907 - version = "1.0.0"; 1907 + version = "1.0.2"; 1908 1908 src = fetchurl { 1909 - url = "https://elpa.gnu.org/packages/validate-1.0.0.el"; 1910 - sha256 = "10js4qds5xi5a89s4v4fz6f71b25g3x8jm1lcpf9s75i1q1xiysk"; 1909 + url = "https://elpa.gnu.org/packages/validate-1.0.2.el"; 1910 + sha256 = "19xhd9mxkdcisspz5q3bnvf6jjsvmhjjrpw3pq5lgyqbcz8k8dsr"; 1911 1911 }; 1912 - packageRequires = [ cl-lib emacs ]; 1912 + packageRequires = [ cl-lib emacs seq ]; 1913 1913 meta = { 1914 1914 homepage = "https://elpa.gnu.org/packages/validate.html"; 1915 1915 license = lib.licenses.free; ··· 2049 2049 xelb = callPackage ({ cl-generic, elpaBuild, emacs, fetchurl, lib }: 2050 2050 elpaBuild { 2051 2051 pname = "xelb"; 2052 - version = "0.11"; 2052 + version = "0.12"; 2053 2053 src = fetchurl { 2054 - url = "https://elpa.gnu.org/packages/xelb-0.11.tar"; 2055 - sha256 = "12qgbv30dizp7kadq9kg7nfyg5qfbfy14s833zg95fqqa87qg90j"; 2054 + url = "https://elpa.gnu.org/packages/xelb-0.12.tar"; 2055 + sha256 = "0i9n0f3ibj4a5pwcsvwrah9m0fz32m0x6a9wsmjn3li20v8pcb81"; 2056 2056 }; 2057 2057 packageRequires = [ cl-generic emacs ]; 2058 2058 meta = {
+1471 -947
pkgs/applications/editors/emacs-modes/melpa-generated.nix
··· 880 880 ace-isearch = callPackage ({ ace-jump-mode, avy, emacs, fetchFromGitHub, fetchurl, helm-swoop, lib, melpaBuild }: 881 881 melpaBuild { 882 882 pname = "ace-isearch"; 883 - version = "20160927.330"; 883 + version = "20161107.1730"; 884 884 src = fetchFromGitHub { 885 885 owner = "tam17aki"; 886 886 repo = "ace-isearch"; 887 - rev = "b8c59511d7ff13ed050a80be372121d9cba9e160"; 888 - sha256 = "1flfskn0bsz0mxfys0ipn20355v20d48l8mgf41wb49kvnnd1bmz"; 887 + rev = "33b98ecdb3d5a966cbfc0ec7b104be5afca14f25"; 888 + sha256 = "05a5jf9lx1g5cms5p1js7qxria5dfm310m83zmvwcdr96mfbz9ii"; 889 889 }; 890 890 recipeFile = fetchurl { 891 891 url = "https://raw.githubusercontent.com/milkypostman/melpa/344f0cf784a027cde196b7d766024fb415fa1968/recipes/ace-isearch"; ··· 1173 1173 addressbook-bookmark = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 1174 1174 melpaBuild { 1175 1175 pname = "addressbook-bookmark"; 1176 - version = "20160925.22"; 1176 + version = "20161123.407"; 1177 1177 src = fetchFromGitHub { 1178 1178 owner = "thierryvolpiatto"; 1179 1179 repo = "addressbook-bookmark"; 1180 - rev = "53732af6e225976f8d51c971041eed4320987c36"; 1181 - sha256 = "0qnh9bk5xgggh80wylzq06alxkj22y9p8lixncjanwhygh80vv3s"; 1180 + rev = "98bb27cea55250bbd32e44002b48cd59e436c089"; 1181 + sha256 = "0lv7jn4s0fb995z3hy2s3z22yg69zncxc9hwsmpdgh56ds1mw68i"; 1182 1182 }; 1183 1183 recipeFile = fetchurl { 1184 1184 url = "https://raw.githubusercontent.com/milkypostman/melpa/a497aec6e27efa627068542cae5a16c01c3c6d3c/recipes/addressbook-bookmark"; ··· 1319 1319 }) {}; 1320 1320 ahg = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { 1321 1321 pname = "ahg"; 1322 - version = "20161010.9"; 1322 + version = "20161110.455"; 1323 1323 src = fetchhg { 1324 1324 url = "https://bitbucket.com/agriggio/ahg"; 1325 - rev = "5d878053fcbd"; 1326 - sha256 = "1jisl6nh3c75fyzmr3azpf5sp8cdcfw8hd4aczbrgpjbii6127np"; 1325 + rev = "0e1d1b4142e7"; 1326 + sha256 = "09606q8b9qhz1szshv8aapc7450j085rjf2fv769vbivr3kshqvh"; 1327 1327 }; 1328 1328 recipeFile = fetchurl { 1329 1329 url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/ahg"; ··· 1423 1423 alchemist = callPackage ({ company, dash, elixir-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: 1424 1424 melpaBuild { 1425 1425 pname = "alchemist"; 1426 - version = "20161002.2144"; 1426 + version = "20161122.2304"; 1427 1427 src = fetchFromGitHub { 1428 1428 owner = "tonini"; 1429 1429 repo = "alchemist.el"; 1430 - rev = "5693e5a7b1d75faee0dd424cd89fd20b3b9d77f6"; 1431 - sha256 = "1cim833y3xh2s0vz3zawxbybb1yri8qmfhhk3iqbiw2w9gg2y4qs"; 1430 + rev = "26762b767419b13211e331251def9159ee3f8c6b"; 1431 + sha256 = "1bss5rgdp37zy4rlyx7j6rngrp9q2ijyr54n5z0r8asmd913r73q"; 1432 1432 }; 1433 1433 recipeFile = fetchurl { 1434 1434 url = "https://raw.githubusercontent.com/milkypostman/melpa/6616dc61d17c5bd89bc4d226baab24a1f8e49b3e/recipes/alchemist"; ··· 1553 1553 src = fetchFromGitHub { 1554 1554 owner = "domtronn"; 1555 1555 repo = "all-the-icons.el"; 1556 - rev = "a7ef8e703c17c978a82f442c88d250371c5e06f7"; 1557 - sha256 = "0gfa1a17wwp66jl0v6pbp9fcn45kp3jsvpd7ha4j590ijikz2yv4"; 1556 + rev = "b2d923e51d23e84198e21b025c656bf862eaced6"; 1557 + sha256 = "0j5230nas9h6rn4wfsaf5pgd3yxxk615j68y2j01pjrrkxvrwqig"; 1558 1558 }; 1559 1559 recipeFile = fetchurl { 1560 1560 url = "https://raw.githubusercontent.com/milkypostman/melpa/604c01aa15927bd122260529ff0f4bb6a8168b7e/recipes/all-the-icons"; ··· 1567 1567 license = lib.licenses.free; 1568 1568 }; 1569 1569 }) {}; 1570 + all-the-icons-dired = callPackage ({ all-the-icons, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 1571 + melpaBuild { 1572 + pname = "all-the-icons-dired"; 1573 + version = "20161113.1217"; 1574 + src = fetchFromGitHub { 1575 + owner = "jtbm37"; 1576 + repo = "all-the-icons-dired"; 1577 + rev = "e0244106e06a7cf769bcf36a34fff211d8f67e62"; 1578 + sha256 = "1xgp72ycnl1m1lx3cnygd0nssn6nr0x543rq1cmdxdr6snf5j152"; 1579 + }; 1580 + recipeFile = fetchurl { 1581 + url = "https://raw.githubusercontent.com/milkypostman/melpa/cf8e432e3cd316ffeb7e0b68b855e23bcc3b9491/recipes/all-the-icons-dired"; 1582 + sha256 = "0fbl3i3wi2ka43xri0i30x561115hmv3j75vpkyzz3g1m9w006br"; 1583 + name = "all-the-icons-dired"; 1584 + }; 1585 + packageRequires = [ all-the-icons emacs ]; 1586 + meta = { 1587 + homepage = "https://melpa.org/#/all-the-icons-dired"; 1588 + license = lib.licenses.free; 1589 + }; 1590 + }) {}; 1570 1591 amd-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, js2-mode, js2-refactor, lib, makey, melpaBuild, projectile, s, seq }: 1571 1592 melpaBuild { 1572 1593 pname = "amd-mode"; 1573 - version = "20161103.139"; 1594 + version = "20161116.534"; 1574 1595 src = fetchFromGitHub { 1575 1596 owner = "NicolasPetton"; 1576 1597 repo = "amd-mode.el"; 1577 - rev = "01c487419f2785a4573bdd7e49800414a6f83fe7"; 1578 - sha256 = "0fxca3mg3335n4frl332ng1zndw1j3dski7gwa4j4pixc2ihi02m"; 1598 + rev = "a50cbdd53bc0e1ed0f96a425bd29f5b706161c18"; 1599 + sha256 = "12wxjgvxhnmn27dl2p5m90nxmfkk64w1fn4zmxn2a4fpvb7y579s"; 1579 1600 }; 1580 1601 recipeFile = fetchurl { 1581 1602 url = "https://raw.githubusercontent.com/milkypostman/melpa/e4d6e9935e4935c9de769c7bf1c1b6dd256e10da/recipes/amd-mode"; ··· 1663 1684 anaconda-mode = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic, s }: 1664 1685 melpaBuild { 1665 1686 pname = "anaconda-mode"; 1666 - version = "20161028.29"; 1687 + version = "20161121.1137"; 1667 1688 src = fetchFromGitHub { 1668 1689 owner = "proofit404"; 1669 1690 repo = "anaconda-mode"; 1670 - rev = "ae336344e61c1d38480ec230d85efbe2cb17980f"; 1671 - sha256 = "1776s0gf9283amskmaqnpcpflqgvzk87n5qcishiczxijdymry7y"; 1691 + rev = "4f84759cab7746cf705f75719e701551d47de1e3"; 1692 + sha256 = "1sra3blrdkw4yd3ivsyg64vgd8207clfpqhjchja0x2n3z8792v5"; 1672 1693 }; 1673 1694 recipeFile = fetchurl { 1674 1695 url = "https://raw.githubusercontent.com/milkypostman/melpa/e03b698fd3fe5b80bdd24ce01f7fba28e9da0da8/recipes/anaconda-mode"; ··· 1934 1955 ansible-vault = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 1935 1956 melpaBuild { 1936 1957 pname = "ansible-vault"; 1937 - version = "20161008.1435"; 1958 + version = "20161115.1128"; 1938 1959 src = fetchFromGitHub { 1939 1960 owner = "zellio"; 1940 1961 repo = "ansible-vault-mode"; 1941 - rev = "57fd8017ab93cc6a1f9bbc795d494a069557a1cb"; 1942 - sha256 = "04sdgg98z9gydgx8sf4nfmkwazm799gyvywssfa0mkcvza2z7s21"; 1962 + rev = "f4d9b3a77490071b8c59caa473bb54df86e90362"; 1963 + sha256 = "0f6dmj3b57sy6xl6d50982lnsin0lzyjwk0q1blpz0h2imadr8qm"; 1943 1964 }; 1944 1965 recipeFile = fetchurl { 1945 1966 url = "https://raw.githubusercontent.com/milkypostman/melpa/2bff0da29a9b883e53a3d211c5577a3e0bc263a0/recipes/ansible-vault"; ··· 2429 2450 apropospriate-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 2430 2451 melpaBuild { 2431 2452 pname = "apropospriate-theme"; 2432 - version = "20160724.1010"; 2453 + version = "20161120.943"; 2433 2454 src = fetchFromGitHub { 2434 2455 owner = "waymondo"; 2435 2456 repo = "apropospriate-theme"; 2436 - rev = "cddb2a40688b1dac8e0c62595bdffc0c6b5d40a3"; 2437 - sha256 = "0h8rrh34mqms27c2nq5f7k93kjvcv9qj0z9f1jjibvxrcw9lpp4y"; 2457 + rev = "a84e23eebf26b4f0f5fe9926d8feaf01e7d6c304"; 2458 + sha256 = "12lrnv4aqwpvr40351n0qvh2d6p378qffh8fqw9x8dyzcxjyjhpr"; 2438 2459 }; 2439 2460 recipeFile = fetchurl { 2440 2461 url = "https://raw.githubusercontent.com/milkypostman/melpa/1da33013f15825ab656260ce7453b8127e0286f4/recipes/apropospriate-theme"; ··· 2675 2696 assess = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild }: 2676 2697 melpaBuild { 2677 2698 pname = "assess"; 2678 - version = "20161012.753"; 2699 + version = "20161114.1451"; 2679 2700 src = fetchFromGitHub { 2680 2701 owner = "phillord"; 2681 2702 repo = "assess"; 2682 - rev = "e2e5f1cbbdeb4bdeb7a474f0ec1b038c3786b1ef"; 2683 - sha256 = "1pv8q88f5aj6qxqv0n8knfb3gk079wgk6l0nkch8518pq00vwnif"; 2703 + rev = "9521b074808d30c50d45eba7d5c186c79d165e8c"; 2704 + sha256 = "164kapf9n5gqgnsg3rrlb5r2j9sq5yn7kf1bd1vfh3i5zdlhl0wy"; 2684 2705 }; 2685 2706 recipeFile = fetchurl { 2686 2707 url = "https://raw.githubusercontent.com/milkypostman/melpa/6f917a34506193f2674b195569dfd3c13ba62c1d/recipes/assess"; ··· 2700 2721 src = fetchFromGitHub { 2701 2722 owner = "jwiegley"; 2702 2723 repo = "emacs-async"; 2703 - rev = "82428780ec96e18ae801783f8d7388749fafd5fa"; 2704 - sha256 = "17kznp00gs162b205q8mzy6abcf3jrmnqfb1vdv86rk1gzsr483q"; 2724 + rev = "54977d6c596a295f7519a0da36407c3a3e055b36"; 2725 + sha256 = "1kzah2714nppaai8cckvbryq6b10fwp025fv3kzjspf3sjf5ijva"; 2705 2726 }; 2706 2727 recipeFile = fetchurl { 2707 2728 url = "https://raw.githubusercontent.com/milkypostman/melpa/6a0fe448e82f42cad0fdaa40c964032892fedd83/recipes/async"; ··· 2780 2801 atomic-chrome = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, websocket }: 2781 2802 melpaBuild { 2782 2803 pname = "atomic-chrome"; 2783 - version = "20161106.1438"; 2804 + version = "20161114.409"; 2784 2805 src = fetchFromGitHub { 2785 2806 owner = "alpha22jp"; 2786 2807 repo = "atomic-chrome"; 2787 - rev = "439b669b10b671f5795fd5557abfbc30e0d6fbb4"; 2788 - sha256 = "1bwng9qdys5wx0x9rn4nak92qpspfsb04xrl0p3szl5izz427cb6"; 2808 + rev = "62fa0dc6167bd65185ec5138bac5c60acdda2875"; 2809 + sha256 = "117a10vns47wnhihblb66ngn581ngqbhbanwhakfc5kd4xflqcaz"; 2789 2810 }; 2790 2811 recipeFile = fetchurl { 2791 2812 url = "https://raw.githubusercontent.com/milkypostman/melpa/35785773942a5510e2317ded5bdf872ffe434e8c/recipes/atomic-chrome"; ··· 3323 3344 auto-indent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 3324 3345 melpaBuild { 3325 3346 pname = "auto-indent-mode"; 3326 - version = "20160426.2022"; 3347 + version = "20161118.1458"; 3327 3348 src = fetchFromGitHub { 3328 3349 owner = "mattfidler"; 3329 3350 repo = "auto-indent-mode.el"; 3330 - rev = "9a0f13d93ad25b6e6b97fd566ec74ef5b6c60254"; 3331 - sha256 = "1ya7lnlgrxwrbaxlkl0bbz2m8pic6yjln0dm1mcmr9mjglp8kh6y"; 3351 + rev = "7e939f3a7b092c6c32c97d63fd88aef6cc355cdb"; 3352 + sha256 = "18c9469b53kwydhrpd8kivwvs0w0ndfbwkyxixjz9wijp0wmpri1"; 3332 3353 }; 3333 3354 recipeFile = fetchurl { 3334 3355 url = "https://raw.githubusercontent.com/milkypostman/melpa/49af78177278e7072c70fde0eaa5bb82490ebe9d/recipes/auto-indent-mode"; ··· 3425 3446 auto-save-buffers-enhanced = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 3426 3447 melpaBuild { 3427 3448 pname = "auto-save-buffers-enhanced"; 3428 - version = "20130607.1949"; 3449 + version = "20161108.2310"; 3429 3450 src = fetchFromGitHub { 3430 3451 owner = "kentaro"; 3431 3452 repo = "auto-save-buffers-enhanced"; 3432 - rev = "caf594120781a323ac37eab82bcf87f1ed4c9c42"; 3433 - sha256 = "10aw3bpvawkqj1l8brvzq057wx3mkzpxs4zc3yhppkhq2cpvx7i2"; 3453 + rev = "461e8c816c1b7c650be5f209078b381fe55da8c6"; 3454 + sha256 = "0ckjijjpqpbv9yrqfnl3x9hcdwwdgvm5r2vyx1a9nk4d3i0hd9i5"; 3434 3455 }; 3435 3456 recipeFile = fetchurl { 3436 3457 url = "https://raw.githubusercontent.com/milkypostman/melpa/d221a217e9f6a686fa2a8b120a1f0b43c4482ce6/recipes/auto-save-buffers-enhanced"; ··· 3467 3488 auto-virtualenv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, pyvenv, s }: 3468 3489 melpaBuild { 3469 3490 pname = "auto-virtualenv"; 3470 - version = "20160220.636"; 3491 + version = "20161107.1001"; 3471 3492 src = fetchFromGitHub { 3472 3493 owner = "marcwebbie"; 3473 3494 repo = "auto-virtualenv"; 3474 - rev = "e55bf927da4e29b0f4d9198f3358a87f9970c3b6"; 3475 - sha256 = "1ya5rn55sclh2w5bjy4b2b75gd6bgavfqmhdisz6afp8w4l4a2bv"; 3495 + rev = "d352bc4c9d76cb2e1680846f13bae940931d8380"; 3496 + sha256 = "1yb1g8xmh5mgkszcch2z7rzmrywl8zyyy7j8ff1agvz0ic4b9893"; 3476 3497 }; 3477 3498 recipeFile = fetchurl { 3478 3499 url = "https://raw.githubusercontent.com/milkypostman/melpa/ccb91515d9a8195061429ed8df3471867d211f9a/recipes/auto-virtualenv"; ··· 3880 3901 axiom-environment = callPackage ({ emacs, fetchhg, fetchurl, lib, melpaBuild }: 3881 3902 melpaBuild { 3882 3903 pname = "axiom-environment"; 3883 - version = "20161106.509"; 3904 + version = "20161120.1200"; 3884 3905 src = fetchhg { 3885 3906 url = "https://bitbucket.com/pdo/axiom-environment"; 3886 - rev = "4d70a7ec2429"; 3887 - sha256 = "1dmixpwsl2qsiy6c0vspi1fwvgwisw84vhijhmbkfpzrqrp1lkwc"; 3907 + rev = "485778b352fd"; 3908 + sha256 = "010qb68d0vv6h3wqlmrav6qvazm8dcjgkqr9yn4j8s5x3c94a5cn"; 3888 3909 }; 3889 3910 recipeFile = fetchurl { 3890 3911 url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/axiom-environment"; ··· 3900 3921 babel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 3901 3922 melpaBuild { 3902 3923 pname = "babel"; 3903 - version = "20160629.1151"; 3924 + version = "20161122.2340"; 3904 3925 src = fetchFromGitHub { 3905 3926 owner = "juergenhoetzel"; 3906 3927 repo = "babel"; 3907 - rev = "bf860f4594f06729b3ff5da2102ec9e3ab8a5ccb"; 3908 - sha256 = "1d5v21ig92w30dllhp2cqbjqma2l0l87cjqqlx721qx15zfhxxxb"; 3928 + rev = "d4212e25fcbd22b8e38be13936f937a2963d34a9"; 3929 + sha256 = "0lxiavjs2fbwlqbmkl2hssjzv8a8baa8vvqqfnprhnipngkkgdaf"; 3909 3930 }; 3910 3931 recipeFile = fetchurl { 3911 3932 url = "https://raw.githubusercontent.com/milkypostman/melpa/b0d748fa06b3cbe336cb01a7e3ed7b0421d885cc/recipes/babel"; ··· 4135 4156 basic-c-compile = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 4136 4157 melpaBuild { 4137 4158 pname = "basic-c-compile"; 4138 - version = "20160803.527"; 4159 + version = "20161114.2134"; 4139 4160 src = fetchFromGitHub { 4140 4161 owner = "nick96"; 4141 4162 repo = "basic-c-compile"; 4142 - rev = "69e1ce9078a1a54beddc6c9f786cdd521a3717bf"; 4143 - sha256 = "0r1ygnkvl3b61qw5lsji3434f2dkbsfkc1fk6rl355am9ssn3vr6"; 4163 + rev = "ccdbb2fcb605e285ca39c1781ab1e583e90f7558"; 4164 + sha256 = "03hsg0n2hvsqiziblpjal9saiyhcizldn9bkpk3cqh2bipg1fjys"; 4144 4165 }; 4145 4166 recipeFile = fetchurl { 4146 4167 url = "https://raw.githubusercontent.com/milkypostman/melpa/bdf8a23771774f630baa41b24375cb57f90fbb2e/recipes/basic-c-compile"; ··· 5132 5153 bog = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 5133 5154 melpaBuild { 5134 5155 pname = "bog"; 5135 - version = "20161024.1828"; 5156 + version = "20161109.1647"; 5136 5157 src = fetchFromGitHub { 5137 5158 owner = "kyleam"; 5138 5159 repo = "bog"; 5139 - rev = "a6b566a4eca0dcc89a7d2af42e057b4e2561189d"; 5140 - sha256 = "1y3i9wcvxj1s7hyxb3ni0p7hmdlln1h3a1h2ddgkjw5yv2vq768q"; 5160 + rev = "cf7817de3f37ce2404ee637a655f1a511b829585"; 5161 + sha256 = "0h166w8bg864ppwg64m0vhg649mmkclld85zcd0lmbqa9wfml5j5"; 5141 5162 }; 5142 5163 recipeFile = fetchurl { 5143 5164 url = "https://raw.githubusercontent.com/milkypostman/melpa/19fd0bf2f8e52c79120c492a6dcabdd51b465d35/recipes/bog"; ··· 5215 5236 }) {}; 5216 5237 bookmark-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 5217 5238 pname = "bookmark-plus"; 5218 - version = "20161027.926"; 5239 + version = "20161118.1618"; 5219 5240 src = fetchurl { 5220 5241 url = "https://www.emacswiki.org/emacs/download/bookmark+.el"; 5221 - sha256 = "06621js3bvslfmzmkphzzcrd8hbixin2nx30ammcqaa6572y14ad"; 5242 + sha256 = "05jf7rbaxfxrlmk2vq09p10mj80p529raqfy3ajsk8adgqsxw1lr"; 5222 5243 }; 5223 5244 recipeFile = fetchurl { 5224 5245 url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/bookmark+"; ··· 5255 5276 boon = callPackage ({ dash, emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: 5256 5277 melpaBuild { 5257 5278 pname = "boon"; 5258 - version = "20161106.723"; 5279 + version = "20161116.1212"; 5259 5280 src = fetchFromGitHub { 5260 5281 owner = "jyp"; 5261 5282 repo = "boon"; 5262 - rev = "dea1f7e830b38e6b70db5a318eaa269f417444d4"; 5263 - sha256 = "0f6yrls2l37rpq932n7h5fr6688vsk32my300z66mszcqfvmr566"; 5283 + rev = "0ca91753aeb3a523b56e745f83087017ffefd5de"; 5284 + sha256 = "04zv2kl3mvn61k9zwr6j7scxv8mfi13gvnyx1hdzbrb28dw22dg3"; 5264 5285 }; 5265 5286 recipeFile = fetchurl { 5266 5287 url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/boon"; ··· 5793 5814 bui = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 5794 5815 melpaBuild { 5795 5816 pname = "bui"; 5796 - version = "20161023.113"; 5817 + version = "20161115.1058"; 5797 5818 src = fetchFromGitHub { 5798 5819 owner = "alezost"; 5799 5820 repo = "bui.el"; 5800 - rev = "c1bc2a1cd7e43d51915dd736af299632061515b2"; 5801 - sha256 = "0yncgymgcdp2g094f5f6n46326gv647997i5kafii8snc0y2nxyl"; 5821 + rev = "76f45f8c821cc5f2e0da721a0ad025b625feaa70"; 5822 + sha256 = "1nx99a50g123jxrlnbpxn5i8imh8320jjsh9r067iqbj6dl3hajf"; 5802 5823 }; 5803 5824 recipeFile = fetchurl { 5804 5825 url = "https://raw.githubusercontent.com/milkypostman/melpa/38b7c9345de75a707b4a73e8bb8e2f213e4fd739/recipes/bui"; ··· 5965 5986 src = fetchFromGitHub { 5966 5987 owner = "jorgenschaefer"; 5967 5988 repo = "emacs-buttercup"; 5968 - rev = "5db07c940e3acbd20111391c72edfa847e7a5409"; 5969 - sha256 = "1928m4368rrcsg242nk3i06fdd6r03aiwh8iz589j00w4761y4kq"; 5989 + rev = "794afbfa4c5a004fe8e0c5373be98671ee24c413"; 5990 + sha256 = "1jhfpcz9k2kkg19gn3v4imahaf0w01gj04yw451x8dx1m7q1jaqc"; 5970 5991 }; 5971 5992 recipeFile = fetchurl { 5972 5993 url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b187cb5b3cc5b546bfa6b94b6792e6363242d1/recipes/buttercup"; ··· 6320 6341 version = "20151009.845"; 6321 6342 src = fetchsvn { 6322 6343 url = "http://caml.inria.fr/svn/ocaml/trunk/emacs/"; 6323 - rev = "16552"; 6344 + rev = "16554"; 6324 6345 sha256 = "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw"; 6325 6346 }; 6326 6347 recipeFile = fetchurl { ··· 6358 6379 cargo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode }: 6359 6380 melpaBuild { 6360 6381 pname = "cargo"; 6361 - version = "20161107.426"; 6382 + version = "20161116.35"; 6362 6383 src = fetchFromGitHub { 6363 6384 owner = "kwrooijen"; 6364 6385 repo = "cargo.el"; 6365 - rev = "059b1ca83e58a4ced0a0f1cd1b4e06525fdc257a"; 6366 - sha256 = "15bgxdz65wywkckwm9rxf595hc8gabqb2015hwp1n9pa8k511jkg"; 6386 + rev = "fb19a7e66f8478578edf7be71dadc1d75876248d"; 6387 + sha256 = "0ksliwv8f2dhrgr423qn4zjmwm37v3hh5wpbfbz6ij6c2lrhx6j4"; 6367 6388 }; 6368 6389 recipeFile = fetchurl { 6369 6390 url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/cargo"; ··· 6425 6446 src = fetchFromGitHub { 6426 6447 owner = "cask"; 6427 6448 repo = "cask"; 6428 - rev = "58f641960bcb152b33fcd27d41111291702e2da6"; 6429 - sha256 = "1sl094adnchjvf189c3l1njawrj5ww1sv5vvjr9hb1ng2rw20z7b"; 6449 + rev = "0a2e8436e02af6ca688b25ba90a19505a6113296"; 6450 + sha256 = "1fjsss678dj6vikm0ig5jqksjlwgnwhpaqfy3dk56gnjc49nl29v"; 6430 6451 }; 6431 6452 recipeFile = fetchurl { 6432 6453 url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/cask"; ··· 6530 6551 src = fetchFromGitHub { 6531 6552 owner = "skk-dev"; 6532 6553 repo = "ddskk"; 6533 - rev = "d0d80ff47a2d39969c7091aa594fd51f21953b07"; 6534 - sha256 = "0mwfbd99kv4cb6ba50swll944vcrdsbs4hy2kkcsff8n84pbap17"; 6554 + rev = "85cd10f23b6eeddfc74da440fb6d7217ab0a6c52"; 6555 + sha256 = "11k6vyjadn0fjbvlssj0q4c7w1wadxd7cl4dii40c7q97nznmhky"; 6535 6556 }; 6536 6557 recipeFile = fetchurl { 6537 6558 url = "https://raw.githubusercontent.com/milkypostman/melpa/7375cab750a67ede1a021b6a4371b678a7b991b0/recipes/ccc"; ··· 6572 6593 src = fetchFromGitHub { 6573 6594 owner = "skk-dev"; 6574 6595 repo = "ddskk"; 6575 - rev = "d0d80ff47a2d39969c7091aa594fd51f21953b07"; 6576 - sha256 = "0mwfbd99kv4cb6ba50swll944vcrdsbs4hy2kkcsff8n84pbap17"; 6596 + rev = "85cd10f23b6eeddfc74da440fb6d7217ab0a6c52"; 6597 + sha256 = "11k6vyjadn0fjbvlssj0q4c7w1wadxd7cl4dii40c7q97nznmhky"; 6577 6598 }; 6578 6599 recipeFile = fetchurl { 6579 6600 url = "https://raw.githubusercontent.com/milkypostman/melpa/b48fe069ecd95ea0f9768ecad969e0838344e45d/recipes/cdb"; ··· 6759 6780 src = fetchFromGitHub { 6760 6781 owner = "cfengine"; 6761 6782 repo = "core"; 6762 - rev = "3726a19cb9b33abf3ae7b760902637ed40051836"; 6763 - sha256 = "05mfldh44j07wslbz3hq874amfld42vwkg70f0966rmlh1nz3rwm"; 6783 + rev = "26e76a63dd9b5fe3c9bddec93c3fd65e3436a595"; 6784 + sha256 = "18xr1hz602y684f1hzg3k5qnkxkymkw7r4ssbgxql6gpjqxpk918"; 6764 6785 }; 6765 6786 recipeFile = fetchurl { 6766 6787 url = "https://raw.githubusercontent.com/milkypostman/melpa/c737839aeda583e61257ad40157e24df7f918b0f/recipes/cfengine-code-style"; ··· 6799 6820 version = "20160801.615"; 6800 6821 src = fetchsvn { 6801 6822 url = "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs"; 6802 - rev = "11867"; 6823 + rev = "11894"; 6803 6824 sha256 = "1wbk9aslvcmwj3n28appdhl3p2m6jgrpb5cijij8fk0szzxi1hrl"; 6804 6825 }; 6805 6826 recipeFile = fetchurl { ··· 6919 6940 chatwork = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 6920 6941 melpaBuild { 6921 6942 pname = "chatwork"; 6922 - version = "20150807.1948"; 6943 + version = "20161121.555"; 6923 6944 src = fetchFromGitHub { 6924 6945 owner = "ataka"; 6925 6946 repo = "chatwork"; 6926 - rev = "7a1def04735423d47e058a8137e859391a6aaf7e"; 6927 - sha256 = "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb"; 6947 + rev = "70b41451e2d2751e634e84e0452b34c558463fe4"; 6948 + sha256 = "11h76qc2n2p8yz941drmi0rp13xmmlacikfygdv1n7s730ja0hgy"; 6928 6949 }; 6929 6950 recipeFile = fetchurl { 6930 6951 url = "https://raw.githubusercontent.com/milkypostman/melpa/77ae72e62b8771e890525c063522e7091ca8f674/recipes/chatwork"; ··· 7150 7171 chinese-pyim = callPackage ({ async, chinese-pyim-basedict, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }: 7151 7172 melpaBuild { 7152 7173 pname = "chinese-pyim"; 7153 - version = "20161106.1712"; 7174 + version = "20161117.524"; 7154 7175 src = fetchFromGitHub { 7155 7176 owner = "tumashu"; 7156 7177 repo = "chinese-pyim"; 7157 - rev = "b210c0d5275e1e8c0b78bed186cc18fc27061dd4"; 7158 - sha256 = "1jixkb7jw07lykbfv022ccnys4xypcbv03f9bxl2r16wizzymvvd"; 7178 + rev = "2636a572b6d3b3b529658db465fc5eebc75859fb"; 7179 + sha256 = "0hyafgarsriw678arwim4n1jg31zf41yzjsmgpfcd0nn9gpb1q0q"; 7159 7180 }; 7160 7181 recipeFile = fetchurl { 7161 7182 url = "https://raw.githubusercontent.com/milkypostman/melpa/157a264533124ba05c161aa93a32c7209f002fba/recipes/chinese-pyim"; ··· 7378 7399 cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }: 7379 7400 melpaBuild { 7380 7401 pname = "cider"; 7381 - version = "20161016.424"; 7402 + version = "20161121.312"; 7382 7403 src = fetchFromGitHub { 7383 7404 owner = "clojure-emacs"; 7384 7405 repo = "cider"; 7385 - rev = "3be082ae4a3d0b40d360648b20fb7caa14c0a9fc"; 7386 - sha256 = "00c0674gxwwn8ijg2g61mq546bzwh142cj16lm960zq2rnbc0ia0"; 7406 + rev = "adab93a7a2b00e03b75aa6086b0457a2e94cc85e"; 7407 + sha256 = "1nrpdah0n7ym0mhk59ifpndxnyi1myv6bwvk1b9m87r7mbw2zzw0"; 7387 7408 }; 7388 7409 recipeFile = fetchurl { 7389 7410 url = "https://raw.githubusercontent.com/milkypostman/melpa/55a937aed818dbe41530037da315f705205f189b/recipes/cider"; ··· 7504 7525 ciel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7505 7526 melpaBuild { 7506 7527 pname = "ciel"; 7507 - version = "20160809.310"; 7528 + version = "20161110.2236"; 7508 7529 src = fetchFromGitHub { 7509 7530 owner = "cs14095"; 7510 7531 repo = "ciel.el"; 7511 - rev = "ebe6dc68aeed627b88dafd170b023121f7def0d4"; 7512 - sha256 = "1z2hsbfkml5psj47b4i83grn96q85mpqll95nqb3n98hyc6da90a"; 7532 + rev = "1a19d08b14cd0f5a76b5681b2f80d65f06af3df4"; 7533 + sha256 = "01l5rswqh9dk626ykmdvs2imaqli9f5pkyzl9j41nhx49c3j1q6z"; 7513 7534 }; 7514 7535 recipeFile = fetchurl { 7515 7536 url = "https://raw.githubusercontent.com/milkypostman/melpa/9c70c007a557ea9fb9eb4d3f8b7adbe4dac39c8a/recipes/ciel"; ··· 7567 7588 circe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7568 7589 melpaBuild { 7569 7590 pname = "circe"; 7570 - version = "20161104.1348"; 7591 + version = "20161118.414"; 7571 7592 src = fetchFromGitHub { 7572 7593 owner = "jorgenschaefer"; 7573 7594 repo = "circe"; 7574 - rev = "8a42bf93e38b6437f1da5bf4d0f6de8ad9a85fef"; 7575 - sha256 = "1rrc440hqxl7fi8f437clz169n6vacqfs5pmc7ni5m65k9kqm1fa"; 7595 + rev = "e549f0a7f8c6a39cc3129581b85682e3977d2bdd"; 7596 + sha256 = "16c45hb216b3r214p8v7zzlpz26s39lc9fmjl6ll3jwvqpq19kb1"; 7576 7597 }; 7577 7598 recipeFile = fetchurl { 7578 7599 url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/circe"; ··· 7654 7675 version = "20161004.253"; 7655 7676 src = fetchsvn { 7656 7677 url = "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format"; 7657 - rev = "286103"; 7658 - sha256 = "09109zh6dx1af4jqdrc448wb5rmjgm6k6630l4z931aqwfw004kx"; 7678 + rev = "287759"; 7679 + sha256 = "1z80wgs7p8xhlfpdisyhhpk4ha0azpbicrp8hqlkrzn7rmlgmiij"; 7659 7680 }; 7660 7681 recipeFile = fetchurl { 7661 7682 url = "https://raw.githubusercontent.com/milkypostman/melpa/69e56114948419a27f06204f6fe5326cc250ae28/recipes/clang-format"; ··· 7998 8019 clojars = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }: 7999 8020 melpaBuild { 8000 8021 pname = "clojars"; 8001 - version = "20160518.2135"; 8022 + version = "20161109.1448"; 8002 8023 src = fetchFromGitHub { 8003 8024 owner = "joshuamiller"; 8004 8025 repo = "clojars.el"; 8005 - rev = "7243d901afa5c8d209df7c4e6a62fb2828703aaf"; 8006 - sha256 = "15hnjxc7xczidn3fl88zkb8868r0v1892pvhgzpwkh3biailfq5h"; 8026 + rev = "8f4ca8a283d4e9acaab912bb7217ffb5800b01a7"; 8027 + sha256 = "1j7ib7iyv4l8f3cgzyqz7jpwwa1bml343imqj5ynr7jzasv7pz52"; 8007 8028 }; 8008 8029 recipeFile = fetchurl { 8009 8030 url = "https://raw.githubusercontent.com/milkypostman/melpa/7f766319c3e18a41017684ea503b0382e96ab31b/recipes/clojars"; ··· 8040 8061 clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 8041 8062 melpaBuild { 8042 8063 pname = "clojure-mode"; 8043 - version = "20161105.2359"; 8064 + version = "20161121.311"; 8044 8065 src = fetchFromGitHub { 8045 8066 owner = "clojure-emacs"; 8046 8067 repo = "clojure-mode"; 8047 - rev = "3f67fdaeade3a99dc4f481596dfb396d4fee06a9"; 8048 - sha256 = "1v170j8c3z1431zdrd3cygr4j72jlgihgzbgij6dkci8rmsldb6h"; 8068 + rev = "116278521899f205a067c47621d97e4968aacb71"; 8069 + sha256 = "0s4cvymjxriw8zkzg0msvy9crrf0lrqg1gij2m5x2cvjhr60a0hi"; 8049 8070 }; 8050 8071 recipeFile = fetchurl { 8051 8072 url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode"; ··· 8065 8086 src = fetchFromGitHub { 8066 8087 owner = "clojure-emacs"; 8067 8088 repo = "clojure-mode"; 8068 - rev = "3f67fdaeade3a99dc4f481596dfb396d4fee06a9"; 8069 - sha256 = "1v170j8c3z1431zdrd3cygr4j72jlgihgzbgij6dkci8rmsldb6h"; 8089 + rev = "116278521899f205a067c47621d97e4968aacb71"; 8090 + sha256 = "0s4cvymjxriw8zkzg0msvy9crrf0lrqg1gij2m5x2cvjhr60a0hi"; 8070 8091 }; 8071 8092 recipeFile = fetchurl { 8072 8093 url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode-extra-font-locking"; ··· 8121 8142 license = lib.licenses.free; 8122 8143 }; 8123 8144 }) {}; 8124 - clomacs = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 8145 + clomacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 8125 8146 melpaBuild { 8126 8147 pname = "clomacs"; 8127 - version = "20160920.42"; 8148 + version = "20161122.316"; 8128 8149 src = fetchFromGitHub { 8129 8150 owner = "clojure-emacs"; 8130 8151 repo = "clomacs"; 8131 - rev = "b4e2379b1360d777514fbacf20002aeb7c34adf6"; 8132 - sha256 = "0829phiki2fh95q9s2hqz12hhn1wprbl2vnczr02j3vqhdv992vz"; 8152 + rev = "cbc902307a158949f3060fde1d2994b5c8e6aa6c"; 8153 + sha256 = "0lb93vf8kh92c026x7mjkzx46gvddadlc6mps1kzy3vyrp0vj3p1"; 8133 8154 }; 8134 8155 recipeFile = fetchurl { 8135 8156 url = "https://raw.githubusercontent.com/milkypostman/melpa/345f9797e87e3f5f957c167a5e3d33d1e31b50a3/recipes/clomacs"; 8136 8157 sha256 = "1vfjzrzp58ap75i0dh5bwnlkb8qbpfmrd3fg9n6aaibvvd2m3hyh"; 8137 8158 name = "clomacs"; 8138 8159 }; 8139 - packageRequires = [ cider emacs ]; 8160 + packageRequires = []; 8140 8161 meta = { 8141 8162 homepage = "https://melpa.org/#/clomacs"; 8142 8163 license = lib.licenses.free; ··· 8275 8296 src = fetchFromGitHub { 8276 8297 owner = "Kitware"; 8277 8298 repo = "CMake"; 8278 - rev = "9df1cb0fa68869f8125025f20fa8c64467aab2e8"; 8279 - sha256 = "0p3xi5jhz0k6hf1nx6srfaidckwlw2bcsvb63q9bbchaap17lpia"; 8299 + rev = "8288d16126193e86bb6880a7d7b749649ad83e2c"; 8300 + sha256 = "1667641a08jhxv6n0ni1k8pdn42bf6qg3bj5z7h9mn8kl0jsq6ha"; 8280 8301 }; 8281 8302 recipeFile = fetchurl { 8282 8303 url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode"; ··· 9015 9036 license = lib.licenses.free; 9016 9037 }; 9017 9038 }) {}; 9018 - company = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 9039 + company = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 9019 9040 melpaBuild { 9020 9041 pname = "company"; 9021 - version = "20160829.1206"; 9042 + version = "20161113.1747"; 9022 9043 src = fetchFromGitHub { 9023 9044 owner = "company-mode"; 9024 9045 repo = "company-mode"; 9025 - rev = "f2327bc7f303fcf83c3d8f9c76f61deaa110ebb5"; 9026 - sha256 = "0d0if7nksd5adybc6w9v8bg2j11gz975b869k4kd9fi3fbsv5cw3"; 9046 + rev = "1c516df435577b2c85995c1cbe80a9968d9ae6a0"; 9047 + sha256 = "0s2dkxp1lzpma0jddh4k2fn78nsnkggcsvih4faankh05jay9i7b"; 9027 9048 }; 9028 9049 recipeFile = fetchurl { 9029 9050 url = "https://raw.githubusercontent.com/milkypostman/melpa/96e7b4184497d0d0db532947f2801398b72432e4/recipes/company"; 9030 9051 sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; 9031 9052 name = "company"; 9032 9053 }; 9033 - packageRequires = [ cl-lib emacs ]; 9054 + packageRequires = [ emacs ]; 9034 9055 meta = { 9035 9056 homepage = "https://melpa.org/#/company"; 9036 9057 license = lib.licenses.free; ··· 9060 9081 company-ansible = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 9061 9082 melpaBuild { 9062 9083 pname = "company-ansible"; 9063 - version = "20160920.1241"; 9084 + version = "20161119.1155"; 9064 9085 src = fetchFromGitHub { 9065 9086 owner = "krzysztof-magosa"; 9066 9087 repo = "company-ansible"; 9067 - rev = "9f22c09009734bd281fcbb89d8903a04b8a72b74"; 9068 - sha256 = "0z6ix3sihzzkk4jgi1qg5ma9wczzdl55kc0y93jnfn69yk3l0ikn"; 9088 + rev = "5e8b51b21d32d3d8929fc2e82dec8f584a863399"; 9089 + sha256 = "0appxl6njgxmgpf9np5cpjym3ifgdwh0mzvsnxvx08pidrrnmm33"; 9069 9090 }; 9070 9091 recipeFile = fetchurl { 9071 9092 url = "https://raw.githubusercontent.com/milkypostman/melpa/7b44cd4bd9f9a7c942ca3f3bd88b2ce61ffff130/recipes/company-ansible"; ··· 9327 9348 company-emoji = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: 9328 9349 melpaBuild { 9329 9350 pname = "company-emoji"; 9330 - version = "20161105.2138"; 9351 + version = "20161108.1800"; 9331 9352 src = fetchFromGitHub { 9332 9353 owner = "dunn"; 9333 9354 repo = "company-emoji"; 9334 - rev = "af70f5d12a38919d5728a32784674e70566cbce6"; 9335 - sha256 = "0a1ak43js2ag157mvzyjvjh3z1x4r3r2541rbh5ihwlix6c5v637"; 9355 + rev = "b971ab0a66126f0d1410254ba1e21f17c2270101"; 9356 + sha256 = "1c9r1j7xpq6c27y6akfarrcg87idww3c10rkhm26m1vprqk73vr3"; 9336 9357 }; 9337 9358 recipeFile = fetchurl { 9338 9359 url = "https://raw.githubusercontent.com/milkypostman/melpa/5733dccdffe97911a30352fbcda2900c33d79810/recipes/company-emoji"; ··· 9348 9369 company-flow = callPackage ({ company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 9349 9370 melpaBuild { 9350 9371 pname = "company-flow"; 9351 - version = "20160915.2229"; 9372 + version = "20161111.2147"; 9352 9373 src = fetchFromGitHub { 9353 9374 owner = "aaronjensen"; 9354 9375 repo = "company-flow"; 9355 - rev = "a5bb9014de6ef1393cb12ff808dd4469da7ea648"; 9356 - sha256 = "15yyg0qapmkc9m53fpxzpiq2rh6cxwanh1k79v0d0qqk97dxdr3y"; 9376 + rev = "1f10d38135679f705494f23cd866ded0130e2993"; 9377 + sha256 = "0alkxdd171dwk6rnq2yc6gpljdazz7yz7q3mzs3q4rcmrvlr8h84"; 9357 9378 }; 9358 9379 recipeFile = fetchurl { 9359 9380 url = "https://raw.githubusercontent.com/milkypostman/melpa/63d346c14af1c5c138d14591a4d6dbc44d9bc429/recipes/company-flow"; ··· 9436 9457 src = fetchFromGitHub { 9437 9458 owner = "nsf"; 9438 9459 repo = "gocode"; 9439 - rev = "82514c86ff1b37eb29aa979fe51238846857935d"; 9440 - sha256 = "04fcz539haxvxlsnlmvw9inwmgssh8msn37iwlfax7z1a81bqq54"; 9460 + rev = "5070dacabf2a80deeaf4ddb0be3761d06fce7be5"; 9461 + sha256 = "0w54cwjcyq7cr3g50kg4zy1xrkaqakb18qbdam11qvz6kix3syg1"; 9441 9462 }; 9442 9463 recipeFile = fetchurl { 9443 9464 url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/company-go"; ··· 9583 9604 src = fetchFromGitHub { 9584 9605 owner = "CestDiego"; 9585 9606 repo = "nand2tetris.el"; 9586 - rev = "9c5161c840f30f01647c188699dacba5e51b3b44"; 9587 - sha256 = "05ngqw29gzjs0zzs8nyldfcqkbnh9n7jkaxrsc40dfqikjhaj5xc"; 9607 + rev = "e1be652b7d46e653a85c564ed917b5b75ab4bc50"; 9608 + sha256 = "1xnb5y1ddy4s7kia6zfzd8s5q9m2zfd72344qizywla86rqk7lpb"; 9588 9609 }; 9589 9610 recipeFile = fetchurl { 9590 9611 url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/company-nand2tetris"; ··· 9705 9726 company-quickhelp = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip }: 9706 9727 melpaBuild { 9707 9728 pname = "company-quickhelp"; 9708 - version = "20160826.806"; 9729 + version = "20161113.1226"; 9709 9730 src = fetchFromGitHub { 9710 9731 owner = "expez"; 9711 9732 repo = "company-quickhelp"; 9712 - rev = "d8fd045715ca64bc8cb3e714c05fe70d7eb33f09"; 9713 - sha256 = "1fdiz1jqxnrl940vqbq14idrs4ird9dkzgckmyawzznv5yi29fw4"; 9733 + rev = "41014e9018cc6f42741ce85383852930e6411f2e"; 9734 + sha256 = "00svfw08g44byzx23zb0kla6y6z05m6qlxzl0q32kkgkqvdhzb17"; 9714 9735 }; 9715 9736 recipeFile = fetchurl { 9716 9737 url = "https://raw.githubusercontent.com/milkypostman/melpa/022cc4fee54bb0194822947c70058145e2980b94/recipes/company-quickhelp"; ··· 9751 9772 src = fetchFromGitHub { 9752 9773 owner = "iquiw"; 9753 9774 repo = "company-restclient"; 9754 - rev = "3955ad1792e17e7af9c886aae5e4bce0c160808f"; 9755 - sha256 = "11siamfl62q2fv608p4slc72zdincp68klcm1fkvr50g808hwd7h"; 9775 + rev = "7b41cd58ffdf965480f1cf52d58d718009ba6fe7"; 9776 + sha256 = "0j6b9jqs4i05rxx6fs7rvim1snf33fi1l6dkm9lskchbykzz4adq"; 9756 9777 }; 9757 9778 recipeFile = fetchurl { 9758 9779 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dd063bc3789772fdcc6a8555817588962e60825/recipes/company-restclient"; ··· 9904 9925 src = fetchFromGitHub { 9905 9926 owner = "abingham"; 9906 9927 repo = "emacs-ycmd"; 9907 - rev = "d116b167bf776dbeba6a822c0b3c19a2c97f68d4"; 9908 - sha256 = "192qiwpkc5a0bxsiqj6zyvlblvixq24m845dgpcsqzwpjcm7qq9l"; 9928 + rev = "f11500fbc6bf66ff27deaf6988f31b8a13860468"; 9929 + sha256 = "1rbc9wvpjliv0ah0zy181q9q05fi0ihl0ap0ghli56ri05s6fhp2"; 9909 9930 }; 9910 9931 recipeFile = fetchurl { 9911 9932 url = "https://raw.githubusercontent.com/milkypostman/melpa/1138c8cc239183a2435ce8c1a6df5163e5fed2ea/recipes/company-ycmd"; ··· 9939 9960 license = lib.licenses.free; 9940 9961 }; 9941 9962 }) {}; 9942 - composer = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }: 9963 + composer = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, request, s, seq }: 9943 9964 melpaBuild { 9944 9965 pname = "composer"; 9945 - version = "20161029.1317"; 9966 + version = "20161115.1102"; 9946 9967 src = fetchFromGitHub { 9947 9968 owner = "zonuexe"; 9948 9969 repo = "composer.el"; 9949 - rev = "47d840e03412da5db13ae2b962576f0166517581"; 9950 - sha256 = "1vw1im39c4jvsaw3ghvwvya9l5h7jiysfhry3p22gdng0l2n4008"; 9970 + rev = "2ea50be23557ce50de2c5a517fcd4abc980969b1"; 9971 + sha256 = "0ir0a3i7bvnf80als7bwjvr604jvhpk0gwln88kqgksvy1bh1nky"; 9951 9972 }; 9952 9973 recipeFile = fetchurl { 9953 9974 url = "https://raw.githubusercontent.com/milkypostman/melpa/39c5002f0688397a51b1b0c6c15f6ac07c3681bc/recipes/composer"; 9954 9975 sha256 = "1gwgfbb0fqn87s7jscr9xy47h239wy74n3hgpk4i16p2g6qinpza"; 9955 9976 name = "composer"; 9956 9977 }; 9957 - packageRequires = [ emacs f request s ]; 9978 + packageRequires = [ emacs f request s seq ]; 9958 9979 meta = { 9959 9980 homepage = "https://melpa.org/#/composer"; 9960 9981 license = lib.licenses.free; ··· 10235 10256 counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: 10236 10257 melpaBuild { 10237 10258 pname = "counsel"; 10238 - version = "20161104.828"; 10259 + version = "20161119.850"; 10239 10260 src = fetchFromGitHub { 10240 10261 owner = "abo-abo"; 10241 10262 repo = "swiper"; 10242 - rev = "c8be3973a4841a3ee7d05e59666724965ecc8dd8"; 10243 - sha256 = "010hrxabaf9pj9dyj6x12sx6m9y8bk8nzdz1xsha2jq3fcglw2mc"; 10263 + rev = "7e02815e31eb2227b7ef5fe8015913f259ced7f0"; 10264 + sha256 = "1gf1liwggddsizldx9sa4qw44skq72qmmzx5h3582sxncqjjp8mk"; 10244 10265 }; 10245 10266 recipeFile = fetchurl { 10246 10267 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c50f32b8d603db0d70e77907e36862cd66b811/recipes/counsel"; ··· 10250 10271 packageRequires = [ emacs swiper ]; 10251 10272 meta = { 10252 10273 homepage = "https://melpa.org/#/counsel"; 10274 + license = lib.licenses.free; 10275 + }; 10276 + }) {}; 10277 + counsel-bbdb = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: 10278 + melpaBuild { 10279 + pname = "counsel-bbdb"; 10280 + version = "20161105.350"; 10281 + src = fetchFromGitHub { 10282 + owner = "redguardtoo"; 10283 + repo = "counsel-bbdb"; 10284 + rev = "297d0c7e6e1eaafcd5e188724fea8e8f26b95555"; 10285 + sha256 = "14gw4d855v2nvqh06vs9rzs816pn1hp4rhfikb0wzg1ay6gdrwi7"; 10286 + }; 10287 + recipeFile = fetchurl { 10288 + url = "https://raw.githubusercontent.com/milkypostman/melpa/0ed9bcdb1f25a6dd743c1dac2bb6cda73a5a5dc2/recipes/counsel-bbdb"; 10289 + sha256 = "14d9mk44skpmyj0zkqwz97j80r630j7s5hfrrhlsafdpl5aafjxp"; 10290 + name = "counsel-bbdb"; 10291 + }; 10292 + packageRequires = [ emacs ivy ]; 10293 + meta = { 10294 + homepage = "https://melpa.org/#/counsel-bbdb"; 10253 10295 license = lib.licenses.free; 10254 10296 }; 10255 10297 }) {}; ··· 10491 10533 src = fetchFromGitHub { 10492 10534 owner = "emacsfodder"; 10493 10535 repo = "emacs-theme-creamsody"; 10494 - rev = "a0071bf037a7f2d87097918fe5338e23f4736edd"; 10495 - sha256 = "0ch5xm2mnkd7inh7m5ir12w2b6zprzsqsl9asayhd0kpnk7r0yz4"; 10536 + rev = "06a1142d7601dd2e9f31bbcd6b33458636c6a2bd"; 10537 + sha256 = "1dmnlsdhcsvlzpfcshlk7p0yjry5626i07yl08rgjhxcgbhillf8"; 10496 10538 }; 10497 10539 recipeFile = fetchurl { 10498 10540 url = "https://raw.githubusercontent.com/milkypostman/melpa/488f95b9e425726d641120130d894babcc3b3e85/recipes/creamsody-theme"; ··· 10797 10839 license = lib.licenses.free; 10798 10840 }; 10799 10841 }) {}; 10842 + csv = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: 10843 + melpaBuild { 10844 + pname = "csv"; 10845 + version = "20161113.710"; 10846 + src = fetchFromGitLab { 10847 + owner = "u11"; 10848 + repo = "csv.el"; 10849 + rev = "aa1dfa1263565d5fac3879c21d8ddf5f8915e411"; 10850 + sha256 = "1vmazjrfcsa9aa9aw8bq5sazdhqvhxyj837dyw5lmh8gk7z0xdaa"; 10851 + }; 10852 + recipeFile = fetchurl { 10853 + url = "https://raw.githubusercontent.com/milkypostman/melpa/233f9de5f65fd8374f2c1912503c30905aa6691d/recipes/csv"; 10854 + sha256 = "1rvi5p27lsb284zqgv4cdqkbqc9r92axmvg7sv52rm7qcj8njwqd"; 10855 + name = "csv"; 10856 + }; 10857 + packageRequires = []; 10858 + meta = { 10859 + homepage = "https://melpa.org/#/csv"; 10860 + license = lib.licenses.free; 10861 + }; 10862 + }) {}; 10800 10863 csv-nav = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 10801 10864 pname = "csv-nav"; 10802 10865 version = "20130407.1120"; ··· 11210 11273 src = fetchFromGitHub { 11211 11274 owner = "cython"; 11212 11275 repo = "cython"; 11213 - rev = "ccfebe9171fe65484d459aa3f0f3c1c97397c103"; 11214 - sha256 = "1ji1hra4iahy12067qzda0kbw5ry9khp6z0gbfrihzjq5rmn4h3j"; 11276 + rev = "530729168f51e071bbff6259dab6426425777e92"; 11277 + sha256 = "15nq08fhxg02ilmin6y0119y85z2y1rnllgj8g12kg71zghqwj0s"; 11215 11278 }; 11216 11279 recipeFile = fetchurl { 11217 11280 url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode"; ··· 11248 11311 d-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 11249 11312 melpaBuild { 11250 11313 pname = "d-mode"; 11251 - version = "20161011.1257"; 11314 + version = "20161022.717"; 11252 11315 src = fetchFromGitHub { 11253 11316 owner = "Emacs-D-Mode-Maintainers"; 11254 11317 repo = "Emacs-D-Mode"; 11255 - rev = "98af62e67026fee1dda9155e1a463917fc83802e"; 11256 - sha256 = "0fzplvi1sm8k2sabfdvrd7j2xypwqh0g9v1mxa75dajdmcd85zpj"; 11318 + rev = "a97c92ced57224287a84e7fc48ba9aac6b2afc08"; 11319 + sha256 = "0ln38lkl8qcnpcpjqck3i6hd5zjv43g7vka3kapz2bnz4s33jn3p"; 11257 11320 }; 11258 11321 recipeFile = fetchurl { 11259 11322 url = "https://raw.githubusercontent.com/milkypostman/melpa/3c13e9ccc358743de660b1f0e89d6bb709c42bff/recipes/d-mode"; ··· 11311 11374 danneskjold-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 11312 11375 melpaBuild { 11313 11376 pname = "danneskjold-theme"; 11314 - version = "20161026.201"; 11377 + version = "20161121.123"; 11315 11378 src = fetchFromGitHub { 11316 11379 owner = "rails-to-cosmos"; 11317 11380 repo = "danneskjold-theme"; 11318 - rev = "a667ef6967008ae6176838efd26b3631ba63a3df"; 11319 - sha256 = "1qrvss2qw88xqv040bp143h7aab78j1kp9x5j4s6pz0ihj593ywn"; 11381 + rev = "8fd6c58d0d7ce9df77f465a456e3c3fe2e00ec0a"; 11382 + sha256 = "0bbw4bvrxfhg9fmm9fp1p3cwr1j9z9kysmk3n0jq5xryxsnpk8kl"; 11320 11383 }; 11321 11384 recipeFile = fetchurl { 11322 11385 url = "https://raw.githubusercontent.com/milkypostman/melpa/557244a3b60c7cd3ca964ff843aa1e9d5a1e32ec/recipes/danneskjold-theme"; ··· 11329 11392 license = lib.licenses.free; 11330 11393 }; 11331 11394 }) {}; 11395 + dante = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 11396 + melpaBuild { 11397 + pname = "dante"; 11398 + version = "20161120.1330"; 11399 + src = fetchFromGitHub { 11400 + owner = "jyp"; 11401 + repo = "dante"; 11402 + rev = "9f1d1120326fa9028770b33a150c7dfee49d6de4"; 11403 + sha256 = "0n76vywm6nsmlhq9papaxnqi2mwg9sszjgzxpxz0bi1y30a392ll"; 11404 + }; 11405 + recipeFile = fetchurl { 11406 + url = "https://raw.githubusercontent.com/milkypostman/melpa/5afa8226077cbda4b76f52734cf8e0b745ab88e8/recipes/dante"; 11407 + sha256 = "1j0qwjshh2227k63vd06bvrsccymqssx26yfzams1xf7bp6y0krs"; 11408 + name = "dante"; 11409 + }; 11410 + packageRequires = [ dash emacs flycheck ]; 11411 + meta = { 11412 + homepage = "https://melpa.org/#/dante"; 11413 + license = lib.licenses.free; 11414 + }; 11415 + }) {}; 11332 11416 darcula-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: 11333 11417 melpaBuild { 11334 11418 pname = "darcula-theme"; ··· 11413 11497 license = lib.licenses.free; 11414 11498 }; 11415 11499 }) {}; 11500 + darkane-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 11501 + melpaBuild { 11502 + pname = "darkane-theme"; 11503 + version = "20161111.1304"; 11504 + src = fetchFromGitHub { 11505 + owner = "FelixFortis"; 11506 + repo = "emacs-darkane-theme"; 11507 + rev = "afa346c793b74645392677b276c56b87c354b8ef"; 11508 + sha256 = "1mi2k7llbk4n05mcy80lswv5vqlfca2izslds7z0sihik8fys4m6"; 11509 + }; 11510 + recipeFile = fetchurl { 11511 + url = "https://raw.githubusercontent.com/milkypostman/melpa/826bd40f9da54e263dbad4bd861bd8227ea76656/recipes/darkane-theme"; 11512 + sha256 = "1lnjjhy70bizqlpih9aqvv6hsx8lj4qa5klbd7mrldqywab8cpib"; 11513 + name = "darkane-theme"; 11514 + }; 11515 + packageRequires = [ emacs ]; 11516 + meta = { 11517 + homepage = "https://melpa.org/#/darkane-theme"; 11518 + license = lib.licenses.free; 11519 + }; 11520 + }) {}; 11416 11521 darkburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 11417 11522 melpaBuild { 11418 11523 pname = "darkburn-theme"; ··· 11483 11588 src = fetchFromGitHub { 11484 11589 owner = "emacsfodder"; 11485 11590 repo = "emacs-theme-darktooth"; 11486 - rev = "1a5d0dc5ae9c57bcb07085ded6fa82c3512ff80f"; 11487 - sha256 = "0hz3hhkyg6m2wvffanpclc2wq7y8n63sgz726kg87iqgq2lfa096"; 11591 + rev = "c9a3a985ca1dec84557c45129798cfa7a3da4638"; 11592 + sha256 = "11rhwddxw64xwhghlchrmm30dsg1bs7v2l14v9lf66ck8n3xzfpk"; 11488 11593 }; 11489 11594 recipeFile = fetchurl { 11490 11595 url = "https://raw.githubusercontent.com/milkypostman/melpa/b7f62ac1566ced7332e83253f79078dc30cb7889/recipes/darktooth-theme"; ··· 11521 11626 dash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 11522 11627 melpaBuild { 11523 11628 pname = "dash"; 11524 - version = "20161106.410"; 11629 + version = "20161121.55"; 11525 11630 src = fetchFromGitHub { 11526 11631 owner = "magnars"; 11527 11632 repo = "dash.el"; 11528 - rev = "1422b70b562a9d4e198eb73e03d89f446fcf5295"; 11529 - sha256 = "080d3im10wgn5qccydiavidik8rjmp432i4mhkb2x5fpqaikv62x"; 11633 + rev = "958e3fb62fd326d3743c0603b80d24ab85712c03"; 11634 + sha256 = "1a1zca0lh01wayd4qdjihimhd1bn00qpwfiybgdcb7yn5xfwv9a1"; 11530 11635 }; 11531 11636 recipeFile = fetchurl { 11532 11637 url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash"; ··· 11567 11672 src = fetchFromGitHub { 11568 11673 owner = "magnars"; 11569 11674 repo = "dash.el"; 11570 - rev = "1422b70b562a9d4e198eb73e03d89f446fcf5295"; 11571 - sha256 = "080d3im10wgn5qccydiavidik8rjmp432i4mhkb2x5fpqaikv62x"; 11675 + rev = "958e3fb62fd326d3743c0603b80d24ab85712c03"; 11676 + sha256 = "1a1zca0lh01wayd4qdjihimhd1bn00qpwfiybgdcb7yn5xfwv9a1"; 11572 11677 }; 11573 11678 recipeFile = fetchurl { 11574 11679 url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash-functional"; ··· 11578 11683 packageRequires = [ dash emacs ]; 11579 11684 meta = { 11580 11685 homepage = "https://melpa.org/#/dash-functional"; 11686 + license = lib.licenses.free; 11687 + }; 11688 + }) {}; 11689 + dashboard = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, page-break-lines }: 11690 + melpaBuild { 11691 + pname = "dashboard"; 11692 + version = "20161121.1329"; 11693 + src = fetchFromGitHub { 11694 + owner = "rakanalh"; 11695 + repo = "emacs-dashboard"; 11696 + rev = "7db073f60a2505bf49e9b94cfedd235f1e01e471"; 11697 + sha256 = "1cryijlb79r4dlkmb0nwaamfi18cw0bfr2c1js7vvp5lqs8sb87w"; 11698 + }; 11699 + recipeFile = fetchurl { 11700 + url = "https://raw.githubusercontent.com/milkypostman/melpa/b047625aebdbf7b5d644b55afbdccfc6c4ac14a8/recipes/dashboard"; 11701 + sha256 = "04lp8ylfnbdj65s8z0m5kyj4rwxcsdwinlkpj00j1my0m74y5i0p"; 11702 + name = "dashboard"; 11703 + }; 11704 + packageRequires = [ emacs page-break-lines ]; 11705 + meta = { 11706 + homepage = "https://melpa.org/#/dashboard"; 11581 11707 license = lib.licenses.free; 11582 11708 }; 11583 11709 }) {}; ··· 11752 11878 ddskk = callPackage ({ ccc, cdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: 11753 11879 melpaBuild { 11754 11880 pname = "ddskk"; 11755 - version = "20161005.453"; 11881 + version = "20161110.548"; 11756 11882 src = fetchFromGitHub { 11757 11883 owner = "skk-dev"; 11758 11884 repo = "ddskk"; 11759 - rev = "d0d80ff47a2d39969c7091aa594fd51f21953b07"; 11760 - sha256 = "0mwfbd99kv4cb6ba50swll944vcrdsbs4hy2kkcsff8n84pbap17"; 11885 + rev = "85cd10f23b6eeddfc74da440fb6d7217ab0a6c52"; 11886 + sha256 = "11k6vyjadn0fjbvlssj0q4c7w1wadxd7cl4dii40c7q97nznmhky"; 11761 11887 }; 11762 11888 recipeFile = fetchurl { 11763 11889 url = "https://raw.githubusercontent.com/milkypostman/melpa/6eccccb79881eaa04af3ed6395cd2ab981d9c894/recipes/ddskk"; ··· 11770 11896 license = lib.licenses.free; 11771 11897 }; 11772 11898 }) {}; 11899 + debian-bug = callPackage ({ fetchcvs, fetchurl, lib, melpaBuild }: 11900 + melpaBuild { 11901 + pname = "debian-bug"; 11902 + version = "20140131.929"; 11903 + src = fetchcvs { 11904 + cvsRoot = ":pserver:anonymous@cvs.alioth.debian.org:/cvs/pkg-goodies-el"; 11905 + module = "emacs-goodies-el"; 11906 + sha256 = "5c75978cdb4339ae7153edeafdf81d6effd8e23df6e406001c8106e105852105"; 11907 + }; 11908 + recipeFile = fetchurl { 11909 + url = "https://raw.githubusercontent.com/milkypostman/melpa/19ea27b9e95dafa13b0740e850d065f169625c4f/recipes/debian-bug"; 11910 + sha256 = "0qlksbiw9qb0bv85b3rimsmzfr8dhbjjg4h0wnx7x434m6wqlm1a"; 11911 + name = "debian-bug"; 11912 + }; 11913 + packageRequires = []; 11914 + meta = { 11915 + homepage = "https://melpa.org/#/debian-bug"; 11916 + license = lib.licenses.free; 11917 + }; 11918 + }) {}; 11773 11919 debpaste = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }: 11774 11920 melpaBuild { 11775 11921 pname = "debpaste"; ··· 12706 12852 license = lib.licenses.free; 12707 12853 }; 12708 12854 }) {}; 12709 - dired-k = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 12855 + dired-k = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 12710 12856 melpaBuild { 12711 12857 pname = "dired-k"; 12712 - version = "20160918.2130"; 12858 + version = "20161116.116"; 12713 12859 src = fetchFromGitHub { 12714 12860 owner = "syohex"; 12715 12861 repo = "emacs-dired-k"; 12716 - rev = "26aa877bed6246feeb448c659a5b676d7796197e"; 12717 - sha256 = "062zylfm18200d987m0vphaqph6syzah28ll8zz79fhqajgv6ndz"; 12862 + rev = "3f0b9315f87b0f930d51089e311d41282d5f8b15"; 12863 + sha256 = "09xh097v3fd0mjxqlmbfwjlr1v4a99mj4rvwdb6kqgajmlhgi9hx"; 12718 12864 }; 12719 12865 recipeFile = fetchurl { 12720 12866 url = "https://raw.githubusercontent.com/milkypostman/melpa/7f8a828b2fbfa11c4b74192d9d0cfa0ad34b3da7/recipes/dired-k"; 12721 12867 sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; 12722 12868 name = "dired-k"; 12723 12869 }; 12724 - packageRequires = [ cl-lib emacs ]; 12870 + packageRequires = [ emacs ]; 12725 12871 meta = { 12726 12872 homepage = "https://melpa.org/#/dired-k"; 12727 12873 license = lib.licenses.free; ··· 12792 12938 }) {}; 12793 12939 dired-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 12794 12940 pname = "dired-plus"; 12795 - version = "20161022.916"; 12941 + version = "20161120.1849"; 12796 12942 src = fetchurl { 12797 12943 url = "https://www.emacswiki.org/emacs/download/dired+.el"; 12798 - sha256 = "1j3w3gfk0lnyj576wg1mzdn2k1l0s777j8z36cvrs82z6pln6qb4"; 12944 + sha256 = "1pidj3658rrj4sn9kmjay9bb90a8p67n6gfw8gk90pqb1nxfx1v2"; 12799 12945 }; 12800 12946 recipeFile = fetchurl { 12801 12947 url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/dired+"; ··· 13406 13552 dix = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 13407 13553 melpaBuild { 13408 13554 pname = "dix"; 13409 - version = "20161004.450"; 13555 + version = "20161114.142"; 13410 13556 src = fetchFromGitHub { 13411 13557 owner = "unhammer"; 13412 13558 repo = "dix"; 13413 - rev = "9e6facb25e1137ef4e1329151a7902dc2d168507"; 13414 - sha256 = "1raz281dyq3dgxbmwrcpdy1g8i5kwlv0i42ixpsdhhj1dcmzhqza"; 13559 + rev = "5df503b66d8b726e19812ff0fa82bcbcc6bf5cd6"; 13560 + sha256 = "164w42rqjyn8xrbb6w6z9wi1r8fs5sv6fdvfk5arv4g8ab2wnish"; 13415 13561 }; 13416 13562 recipeFile = fetchurl { 13417 13563 url = "https://raw.githubusercontent.com/milkypostman/melpa/149eeba213b82aa0bcda1073aaf1aa02c2593f91/recipes/dix"; ··· 13431 13577 src = fetchFromGitHub { 13432 13578 owner = "unhammer"; 13433 13579 repo = "dix"; 13434 - rev = "9e6facb25e1137ef4e1329151a7902dc2d168507"; 13435 - sha256 = "1raz281dyq3dgxbmwrcpdy1g8i5kwlv0i42ixpsdhhj1dcmzhqza"; 13580 + rev = "5df503b66d8b726e19812ff0fa82bcbcc6bf5cd6"; 13581 + sha256 = "164w42rqjyn8xrbb6w6z9wi1r8fs5sv6fdvfk5arv4g8ab2wnish"; 13436 13582 }; 13437 13583 recipeFile = fetchurl { 13438 13584 url = "https://raw.githubusercontent.com/milkypostman/melpa/d9dcceb57231bf2082154cab394064a59d84d3a5/recipes/dix-evil"; ··· 13487 13633 license = lib.licenses.free; 13488 13634 }; 13489 13635 }) {}; 13490 - django-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }: 13636 + django-mode = callPackage ({ fetchFromGitHub, fetchurl, helm-make, lib, melpaBuild, projectile, s }: 13491 13637 melpaBuild { 13492 13638 pname = "django-mode"; 13493 - version = "20160926.1151"; 13639 + version = "20161109.749"; 13494 13640 src = fetchFromGitHub { 13495 13641 owner = "myfreeweb"; 13496 13642 repo = "django-mode"; 13497 - rev = "a3fdf9156a65a03e6f50c41d32b0f5a6960bba54"; 13498 - sha256 = "0z7yskxz34wncmg516qkaisbr7w3fcp9jrx80w2h68lyy8slcbmv"; 13643 + rev = "561a3a7359a1526b67688239cdee67e0425b6a01"; 13644 + sha256 = "0xyi5j0cf1d8dv7lpfcgzkfargkpga3dp93pxi8x9pshafmlnrw8"; 13499 13645 }; 13500 13646 recipeFile = fetchurl { 13501 13647 url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc46811612ff96cb1e09552b9f095d68528dcb3/recipes/django-mode"; 13502 13648 sha256 = "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara"; 13503 13649 name = "django-mode"; 13504 13650 }; 13505 - packageRequires = [ projectile s ]; 13651 + packageRequires = [ helm-make projectile s ]; 13506 13652 meta = { 13507 13653 homepage = "https://melpa.org/#/django-mode"; 13508 13654 license = lib.licenses.free; ··· 13515 13661 src = fetchFromGitHub { 13516 13662 owner = "myfreeweb"; 13517 13663 repo = "django-mode"; 13518 - rev = "a3fdf9156a65a03e6f50c41d32b0f5a6960bba54"; 13519 - sha256 = "0z7yskxz34wncmg516qkaisbr7w3fcp9jrx80w2h68lyy8slcbmv"; 13664 + rev = "561a3a7359a1526b67688239cdee67e0425b6a01"; 13665 + sha256 = "0xyi5j0cf1d8dv7lpfcgzkfargkpga3dp93pxi8x9pshafmlnrw8"; 13520 13666 }; 13521 13667 recipeFile = fetchurl { 13522 13668 url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc46811612ff96cb1e09552b9f095d68528dcb3/recipes/django-snippets"; ··· 13876 14022 doom-themes = callPackage ({ all-the-icons, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 13877 14023 melpaBuild { 13878 14024 pname = "doom-themes"; 13879 - version = "20161103.1722"; 14025 + version = "20161118.1805"; 13880 14026 src = fetchFromGitHub { 13881 14027 owner = "hlissner"; 13882 14028 repo = "emacs-doom-theme"; 13883 - rev = "6a33ec057419e14ef0494e5ed1291cff4c8723e2"; 13884 - sha256 = "0c5v0ry6bk47hb90ghry96arvdzdhfidy0d9ffslxdf0j7zfw4i1"; 14029 + rev = "4074e83f9c6426aa3b9129b1510aa97b281d9e90"; 14030 + sha256 = "0a3c3q9acxk8i94lrhg0cccz58zr34xhphfh7q1140qfvgv0h1ql"; 13885 14031 }; 13886 14032 recipeFile = fetchurl { 13887 14033 url = "https://raw.githubusercontent.com/milkypostman/melpa/73fd9f3c2352ea1af49166c2fe586d0410614081/recipes/doom-themes"; ··· 14115 14261 dracula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 14116 14262 melpaBuild { 14117 14263 pname = "dracula-theme"; 14118 - version = "20160826.627"; 14264 + version = "20161119.1345"; 14119 14265 src = fetchFromGitHub { 14120 14266 owner = "dracula"; 14121 14267 repo = "emacs"; 14122 - rev = "83e60b91c526405506c3f6167af207371e2420c8"; 14123 - sha256 = "00wlspaya7g48fh34rbn27ixixxnm2qrc6gl135d97hawv86rmrb"; 14268 + rev = "c9f8a97eba74a82a65554c9b282e86125a22ecb2"; 14269 + sha256 = "12918nidcmqnhkqhhrnhhd2sihqld5dy1v06q4j9fkrcbp4j4l4l"; 14124 14270 }; 14125 14271 recipeFile = fetchurl { 14126 14272 url = "https://raw.githubusercontent.com/milkypostman/melpa/d63cb8906726f106e65f7d9895b49a38ffebf8d5/recipes/dracula-theme"; ··· 14157 14303 drag-stuff = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 14158 14304 melpaBuild { 14159 14305 pname = "drag-stuff"; 14160 - version = "20160520.1159"; 14306 + version = "20161107.2349"; 14161 14307 src = fetchFromGitHub { 14162 14308 owner = "rejeep"; 14163 14309 repo = "drag-stuff.el"; 14164 - rev = "324239532b4a8b45dce778ef62e843d3ee0161aa"; 14165 - sha256 = "0vcc1pfxsjbrslh4k6d14xv4k8pvkg09kikwf7ipis12l62df6i4"; 14310 + rev = "d49fe376d24f0f8ac5ade67b6d7fccc2487c81db"; 14311 + sha256 = "1jrr59iazih3imkl9ja1lbni9v3xv6b8gmqs015g2mxhlql35jka"; 14166 14312 }; 14167 14313 recipeFile = fetchurl { 14168 14314 url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/drag-stuff"; ··· 14324 14470 version = "20130120.1257"; 14325 14471 src = fetchsvn { 14326 14472 url = "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/"; 14327 - rev = "1768508"; 14473 + rev = "1770969"; 14328 14474 sha256 = "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq"; 14329 14475 }; 14330 14476 recipeFile = fetchurl { ··· 14425 14571 dumb-jump = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: 14426 14572 melpaBuild { 14427 14573 pname = "dumb-jump"; 14428 - version = "20161015.1230"; 14574 + version = "20161120.1027"; 14429 14575 src = fetchFromGitHub { 14430 14576 owner = "jacktasia"; 14431 14577 repo = "dumb-jump"; 14432 - rev = "a6d6e78eb346542d0ef88ade9ade2f583caceab2"; 14433 - sha256 = "1wkzizs50k2ahdqhcr9qgnhwgy0mkxmyysfd61k5iinwjz1z1xxd"; 14578 + rev = "358f2687d1adc536b5fde9b14e24ebeb1e9f458f"; 14579 + sha256 = "1g293b0yfhg1ncbnqyjm2ccm098jd9q4yb0xj85nz78ilf91ff19"; 14434 14580 }; 14435 14581 recipeFile = fetchurl { 14436 14582 url = "https://raw.githubusercontent.com/milkypostman/melpa/2a60e7c166c2d68e4f719d293014a22139593dde/recipes/dumb-jump"; ··· 14509 14655 dyalog-mode = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }: 14510 14656 melpaBuild { 14511 14657 pname = "dyalog-mode"; 14512 - version = "20161103.628"; 14658 + version = "20161108.348"; 14513 14659 src = fetchhg { 14514 14660 url = "https://bitbucket.com/harsman/dyalog-mode"; 14515 - rev = "18cd7ba257ca"; 14516 - sha256 = "0lf6na6yvdk5n9viy08cdwbgphlcxksynbkvi2f02saxdzdy368v"; 14661 + rev = "befb5c650dfd"; 14662 + sha256 = "154bm7l1ra3l9lj9l1x21qi7f57k46kg24hyalrbawjw3q8c5np2"; 14517 14663 }; 14518 14664 recipeFile = fetchurl { 14519 14665 url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/dyalog-mode"; ··· 14946 15092 license = lib.licenses.free; 14947 15093 }; 14948 15094 }) {}; 14949 - ebib = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib }: 15095 + ebib = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib, seq }: 14950 15096 melpaBuild { 14951 15097 pname = "ebib"; 14952 - version = "20161106.2351"; 15098 + version = "20161114.205"; 14953 15099 src = fetchFromGitHub { 14954 15100 owner = "joostkremers"; 14955 15101 repo = "ebib"; 14956 - rev = "4617ea9cc952ab63dddf8a38ce21ae32442f51f0"; 14957 - sha256 = "01f71sxbif5hmgfd9696cwp541a93138d00y58szl1my0wxk0j4g"; 15102 + rev = "e4e9e261f7420763b82f509e35cb6802f83cb15f"; 15103 + sha256 = "1kcbciayn8i3cmw8bxikpdrk9z3i66h1zgnbnbjm84xvxppins61"; 14958 15104 }; 14959 15105 recipeFile = fetchurl { 14960 15106 url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/ebib"; 14961 15107 sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; 14962 15108 name = "ebib"; 14963 15109 }; 14964 - packageRequires = [ dash emacs parsebib ]; 15110 + packageRequires = [ dash emacs parsebib seq ]; 14965 15111 meta = { 14966 15112 homepage = "https://melpa.org/#/ebib"; 14967 15113 license = lib.licenses.free; ··· 15219 15365 ede-php-autoload = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 15220 15366 melpaBuild { 15221 15367 pname = "ede-php-autoload"; 15222 - version = "20161018.436"; 15368 + version = "20161119.419"; 15223 15369 src = fetchFromGitHub { 15224 15370 owner = "stevenremot"; 15225 15371 repo = "ede-php-autoload"; 15226 - rev = "7cf21be8b6d39a9ce1d6d354a47f60d460cbaa1c"; 15227 - sha256 = "0rqpw5fl0fi1n0669gsmdjsnhrfhwys9lfgfymzjbv62q3dda6qy"; 15372 + rev = "c6896c648fbc90f4d083f511353d6b165836d0e8"; 15373 + sha256 = "0dfx0qiyd23jhxi0y1n4s1pk9906b91qnp25xbyiqdacs54l6d8a"; 15228 15374 }; 15229 15375 recipeFile = fetchurl { 15230 15376 url = "https://raw.githubusercontent.com/milkypostman/melpa/8ee9f7fd9cbc3397cd9af34b08b75c3d9d8bc551/recipes/ede-php-autoload"; ··· 15387 15533 editorconfig = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 15388 15534 melpaBuild { 15389 15535 pname = "editorconfig"; 15390 - version = "20161105.2212"; 15536 + version = "20161108.6"; 15391 15537 src = fetchFromGitHub { 15392 15538 owner = "editorconfig"; 15393 15539 repo = "editorconfig-emacs"; 15394 - rev = "0946f6672d95a943f1071e678aa91af6e614a143"; 15395 - sha256 = "1v5gf3jlb7pi08yjcglghsrwzvdms3r2cpgg2hzd2panwm623wz7"; 15540 + rev = "6006bdf8a524b57e54de09309e98439226ed9e33"; 15541 + sha256 = "0hc0av6s8qn3aym9bw541j9c25fxn0hds3f28aavdsj8c67d482z"; 15396 15542 }; 15397 15543 recipeFile = fetchurl { 15398 15544 url = "https://raw.githubusercontent.com/milkypostman/melpa/50d4f2ed288ef38153a7eab44c036e4f075b51d0/recipes/editorconfig"; ··· 15547 15693 src = fetchFromGitHub { 15548 15694 owner = "egisatoshi"; 15549 15695 repo = "egison3"; 15550 - rev = "80aaf63ffa357df2106a192ee04eef54a8dae2fd"; 15551 - sha256 = "0wnyyl70jssdwgcd9im5jwxnpn7l07d0v6dx9y8546d254xdwpwx"; 15696 + rev = "c886d70c85d57e93c6c73499bc7416c66fe28bfb"; 15697 + sha256 = "06bsq8vgalblz4wwlaq6visv3ip2dbg9q094iavxnv2536mkylvm"; 15552 15698 }; 15553 15699 recipeFile = fetchurl { 15554 15700 url = "https://raw.githubusercontent.com/milkypostman/melpa/f543dd136e2af6c36b12073ea75b3c4d4bc79769/recipes/egison-mode"; ··· 15568 15714 src = fetchFromGitHub { 15569 15715 owner = "emacs-china"; 15570 15716 repo = "EGO"; 15571 - rev = "4b97a2e213a960cf6902ad00879262c1b274e122"; 15572 - sha256 = "04y0c385w7m60wsknaxc00wb07hkdnlvncr7qgsh5hwh61ggfh6n"; 15717 + rev = "17364e05fc69cd3c9b554f9675d95bf0a3cf4104"; 15718 + sha256 = "1ikbw771j0a8y4wgx5whmgsfimw6a6bv3bc5qkl8r8ch5lph85z4"; 15573 15719 }; 15574 15720 recipeFile = fetchurl { 15575 15721 url = "https://raw.githubusercontent.com/milkypostman/melpa/0090a628a5d566a887cac0d24b080ee6bafe4612/recipes/ego"; ··· 15625 15771 ein = callPackage ({ cl-generic, fetchFromGitHub, fetchurl, lib, melpaBuild, request, websocket }: 15626 15772 melpaBuild { 15627 15773 pname = "ein"; 15628 - version = "20161030.1637"; 15774 + version = "20161116.1344"; 15629 15775 src = fetchFromGitHub { 15630 15776 owner = "millejoh"; 15631 15777 repo = "emacs-ipython-notebook"; 15632 - rev = "8e3764044c9bd44fbdab4e870c2fc9a36ce02449"; 15633 - sha256 = "0f5k9bx632xjwj3l03vs0k48xvxq4nbi71039fcjqs0bchg814nj"; 15778 + rev = "7d82b45f537cd18cbce858591d9c76a5ce6c291d"; 15779 + sha256 = "1ndnwpcyg8aqcidxc527gp90q6snls3490diijxcy7483k9z2awk"; 15634 15780 }; 15635 15781 recipeFile = fetchurl { 15636 15782 url = "https://raw.githubusercontent.com/milkypostman/melpa/215e163755fe391ce1f049622e7b9bf9a8aea95a/recipes/ein"; ··· 15667 15813 eink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 15668 15814 melpaBuild { 15669 15815 pname = "eink-theme"; 15670 - version = "20161021.452"; 15816 + version = "20161111.854"; 15671 15817 src = fetchFromGitHub { 15672 15818 owner = "maio"; 15673 15819 repo = "eink-emacs"; 15674 - rev = "b884e49afb7a89a3766bf8d9efb96bad239375f6"; 15675 - sha256 = "0mgdaw57av3wx9wr615p1abrd1mlbx4rn3a4xn5v77gv2g9xyfcr"; 15820 + rev = "de50a6296707d8db9ee0d3ffd001bae89d5e7e4a"; 15821 + sha256 = "0v3z48jnlbg3xwbv58kgi55b8q65gac66062yykcg3p7qcyx0az8"; 15676 15822 }; 15677 15823 recipeFile = fetchurl { 15678 15824 url = "https://raw.githubusercontent.com/milkypostman/melpa/a1349c3f93ab60983f77c28f97048fa258b612a6/recipes/eink-theme"; ··· 15688 15834 ejc-sql = callPackage ({ auto-complete, clomacs, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, spinner }: 15689 15835 melpaBuild { 15690 15836 pname = "ejc-sql"; 15691 - version = "20161019.20"; 15837 + version = "20161117.543"; 15692 15838 src = fetchFromGitHub { 15693 15839 owner = "kostafey"; 15694 15840 repo = "ejc-sql"; 15695 - rev = "bef894ead140c69f82b7eb706c60f7731c3b9b8a"; 15696 - sha256 = "0kj117fs9sl2w3bjnmqknhb7zjxiydaqqdackjzv7ypifjbk8plv"; 15841 + rev = "646f72944d9fb792cd21346d0234650eb5dc9c87"; 15842 + sha256 = "1jm9fsbyrx7l7bmv50zalxjwrazcmjpdrrqm0y3c56ckix9fpqfv"; 15697 15843 }; 15698 15844 recipeFile = fetchurl { 15699 15845 url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2cd74717269ef7f10362077a91546723a72104/recipes/ejc-sql"; ··· 15734 15880 src = fetchFromGitHub { 15735 15881 owner = "dimitri"; 15736 15882 repo = "el-get"; 15737 - rev = "4b767b8565c5090538b1d73500dd50f2102150cb"; 15738 - sha256 = "1ddfz4b0bphixg3maa4mrbjc82q94s08pz0990b4pgqgh4als7sc"; 15883 + rev = "417fbc84e2458954969d748b1dac504f126cdecc"; 15884 + sha256 = "175xgcd2lymgyzk2fgiws1zycwcaljhjzdinimhxziz6v7007sy5"; 15739 15885 }; 15740 15886 recipeFile = fetchurl { 15741 15887 url = "https://raw.githubusercontent.com/milkypostman/melpa/1c61197a2b616d6d3c6b652248cb166196846b44/recipes/el-get"; ··· 16081 16227 electric-spacing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 16082 16228 melpaBuild { 16083 16229 pname = "electric-spacing"; 16084 - version = "20151209.736"; 16230 + version = "20161113.916"; 16085 16231 src = fetchFromGitHub { 16086 16232 owner = "xwl"; 16087 16233 repo = "electric-spacing"; 16088 - rev = "78e4ccbb0a924a3062fa16c9b24823bb79bb1f3e"; 16089 - sha256 = "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn"; 16234 + rev = "7231d6e238420c32af0dec4ad82f7ca1d17f4344"; 16235 + sha256 = "1xy9ibkvkndqxpbsia43l0g53yjf2idf99rhdcsf9xqyaknchx2q"; 16090 16236 }; 16091 16237 recipeFile = fetchurl { 16092 16238 url = "https://raw.githubusercontent.com/milkypostman/melpa/a78c0044f8b7a0df1af1aba407be4d7865c98c59/recipes/electric-spacing"; ··· 16144 16290 elfeed = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 16145 16291 melpaBuild { 16146 16292 pname = "elfeed"; 16147 - version = "20161030.1731"; 16293 + version = "20161122.1713"; 16148 16294 src = fetchFromGitHub { 16149 16295 owner = "skeeto"; 16150 16296 repo = "elfeed"; 16151 - rev = "a3b2acd760385a800f04652f15dfd0e7f825dfef"; 16152 - sha256 = "0a9xvfnp3pwh0q1k05q8xnray53a1aihqbxnnrfdfxx0s8rah90i"; 16297 + rev = "d1855fb7d6d07addbf69bf3a8b4800406c711bee"; 16298 + sha256 = "08i4n6rbmykkl448ddzxn1y0pk0vblzbql30iyyykjixdc21y1fm"; 16153 16299 }; 16154 16300 recipeFile = fetchurl { 16155 16301 url = "https://raw.githubusercontent.com/milkypostman/melpa/407ae027fcec444622c2a822074b95996df9e6af/recipes/elfeed"; ··· 16218 16364 src = fetchFromGitHub { 16219 16365 owner = "skeeto"; 16220 16366 repo = "elfeed"; 16221 - rev = "a3b2acd760385a800f04652f15dfd0e7f825dfef"; 16222 - sha256 = "0a9xvfnp3pwh0q1k05q8xnray53a1aihqbxnnrfdfxx0s8rah90i"; 16367 + rev = "d1855fb7d6d07addbf69bf3a8b4800406c711bee"; 16368 + sha256 = "08i4n6rbmykkl448ddzxn1y0pk0vblzbql30iyyykjixdc21y1fm"; 16223 16369 }; 16224 16370 recipeFile = fetchurl { 16225 16371 url = "https://raw.githubusercontent.com/milkypostman/melpa/62459d16ee44d5fcf170c0ebc981ca2c7d4672f2/recipes/elfeed-web"; ··· 16319 16465 elisp-refs = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, list-utils, loop, melpaBuild, s }: 16320 16466 melpaBuild { 16321 16467 pname = "elisp-refs"; 16322 - version = "20161027.2208"; 16468 + version = "20161114.1550"; 16323 16469 src = fetchFromGitHub { 16324 16470 owner = "Wilfred"; 16325 16471 repo = "refs.el"; 16326 - rev = "f710313f4be05ff475c16ffda77f01026512ad34"; 16327 - sha256 = "0vdlcc4mfpda5pxwwfdqwnq3jhgv9mgj6739gnb00i192jg4605g"; 16472 + rev = "5d55d0ffc5aa0d12ebcedb027d0a307564238ecd"; 16473 + sha256 = "0x6vqldg0nmgx5kzijamygmba7hlhnniyf6k1s3mdy5w8ib6vd6a"; 16328 16474 }; 16329 16475 recipeFile = fetchurl { 16330 16476 url = "https://raw.githubusercontent.com/milkypostman/melpa/60891099e241ebd32d39bdcfe4953529a5a3263e/recipes/elisp-refs"; ··· 16424 16570 elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: 16425 16571 melpaBuild { 16426 16572 pname = "elm-mode"; 16427 - version = "20161031.51"; 16573 + version = "20161123.33"; 16428 16574 src = fetchFromGitHub { 16429 16575 owner = "jcollard"; 16430 16576 repo = "elm-mode"; 16431 - rev = "a842d54348846746ef249a87ac7961a9a787947f"; 16432 - sha256 = "1ycbc2dz8qmdxpac6yz4dxp531r50nhzdxaknm5iwz6d94pcfgni"; 16577 + rev = "529c20acb9efda756b69e267d73d33c66fa08293"; 16578 + sha256 = "08zl1v0k3dnn8g06l3xf1lp31fp60jpk6f3lkczi1l6ns36g11jx"; 16433 16579 }; 16434 16580 recipeFile = fetchurl { 16435 16581 url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1a4d786b137f61ed3a1dd4ec236d0db120e571/recipes/elm-mode"; ··· 17057 17203 license = lib.licenses.free; 17058 17204 }; 17059 17205 }) {}; 17060 - emamux = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 17206 + emamux = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 17061 17207 melpaBuild { 17062 17208 pname = "emamux"; 17063 - version = "20160602.653"; 17209 + version = "20161123.414"; 17064 17210 src = fetchFromGitHub { 17065 17211 owner = "syohex"; 17066 17212 repo = "emacs-emamux"; 17067 - rev = "4e75121767001a587d01a71e61688d147a7c50c1"; 17068 - sha256 = "0jpyrh2qmhgp6wdf5jp3lr9shpj0mvsnfric8hqp0b5qda9hi2v8"; 17213 + rev = "573dd1cf18584a1fd240efb16c7726b6fd790b73"; 17214 + sha256 = "19y69qw79miim9cz5ji54gwspjkcp9g2c1xr5s7jj2fiabnxax6b"; 17069 17215 }; 17070 17216 recipeFile = fetchurl { 17071 17217 url = "https://raw.githubusercontent.com/milkypostman/melpa/6de1ed3dfccb9f7e7b8586e8334af472a4988840/recipes/emamux"; 17072 17218 sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; 17073 17219 name = "emamux"; 17074 17220 }; 17075 - packageRequires = [ cl-lib emacs ]; 17221 + packageRequires = [ emacs ]; 17076 17222 meta = { 17077 17223 homepage = "https://melpa.org/#/emamux"; 17078 17224 license = lib.licenses.free; ··· 17183 17329 license = lib.licenses.free; 17184 17330 }; 17185 17331 }) {}; 17332 + emlib = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 17333 + melpaBuild { 17334 + pname = "emlib"; 17335 + version = "20161113.829"; 17336 + src = fetchFromGitHub { 17337 + owner = "narendraj9"; 17338 + repo = "emlib"; 17339 + rev = "818254e86fccb45c7b938d149a588ceae43c29d2"; 17340 + sha256 = "0zr26za7n0s07c1gz7jxscpdwspi2rkljzcjblvgg0zy7p0g09cg"; 17341 + }; 17342 + recipeFile = fetchurl { 17343 + url = "https://raw.githubusercontent.com/milkypostman/melpa/46b3738975c8082d9eb6da9fe733edb353aa7069/recipes/emlib"; 17344 + sha256 = "02l135v3pqpf6ngfq11h4rc843iwh3dgi4rr3gcc63pjl4ws2w2c"; 17345 + name = "emlib"; 17346 + }; 17347 + packageRequires = [ cl-lib dash ]; 17348 + meta = { 17349 + homepage = "https://melpa.org/#/emlib"; 17350 + license = lib.licenses.free; 17351 + }; 17352 + }) {}; 17186 17353 emmet-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 17187 17354 melpaBuild { 17188 17355 pname = "emmet-mode"; 17189 - version = "20160906.1919"; 17356 + version = "20161113.2158"; 17190 17357 src = fetchFromGitHub { 17191 17358 owner = "smihica"; 17192 17359 repo = "emmet-mode"; 17193 - rev = "607a23d208405838325ca5203a1900682dad00ac"; 17194 - sha256 = "04b0663hxq7hyha6ccdxwdal803p91ipwhrk385qlc5i2mnx81fq"; 17360 + rev = "5af39aaef59125fd80901f275c23c89493f9d133"; 17361 + sha256 = "1csfd8ixz9gk0hkakcs5qv4f3qxg605blav3a463ipw2a8alyava"; 17195 17362 }; 17196 17363 recipeFile = fetchurl { 17197 17364 url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/emmet-mode"; ··· 17206 17373 }) {}; 17207 17374 emms = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { 17208 17375 pname = "emms"; 17209 - version = "20160801.1349"; 17376 + version = "20161108.644"; 17210 17377 src = fetchgit { 17211 17378 url = "git://git.sv.gnu.org/emms.git"; 17212 - rev = "02c5183a484b12d529b0901a81604eb658bec8d3"; 17213 - sha256 = "02sl9nipa96bzn1adqsgp1nrb20iawscr8kajyhv0613r7igi177"; 17379 + rev = "cf6903c22b49b2e3efe338a9ccbd0df36b6d0cbf"; 17380 + sha256 = "05hqz1rlcl54fgnh40qy60ji60lycpgiqv6nnkzp29c7gc4sa40d"; 17214 17381 }; 17215 17382 recipeFile = fetchurl { 17216 17383 url = "https://raw.githubusercontent.com/milkypostman/melpa/205eeed002b0848809a4c5f8ad99d925b48799ec/recipes/emms"; ··· 17700 17867 ensime = callPackage ({ company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s, sbt-mode, scala-mode, yasnippet }: 17701 17868 melpaBuild { 17702 17869 pname = "ensime"; 17703 - version = "20161031.246"; 17870 + version = "20161110.1316"; 17704 17871 src = fetchFromGitHub { 17705 17872 owner = "ensime"; 17706 17873 repo = "ensime-emacs"; 17707 - rev = "0dedd95b8e9ad09be9521160a7893eb58514c992"; 17708 - sha256 = "1xsbw32fysl3pdxbnczdgczbrhl3qqghgk5mcbb1j4a7rnp4js3m"; 17874 + rev = "d46a4fda456f42f71e8a2ef91347f463f81cf2f6"; 17875 + sha256 = "0s2351irpi29ry29cvzix1603n41qp2smgfgcylq14d38xz9a0jc"; 17709 17876 }; 17710 17877 recipeFile = fetchurl { 17711 17878 url = "https://raw.githubusercontent.com/milkypostman/melpa/502faab70af713f50dd8952be4f7a5131075e78e/recipes/ensime"; ··· 18211 18378 ereader = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, xml-plus }: 18212 18379 melpaBuild { 18213 18380 pname = "ereader"; 18214 - version = "20161103.1834"; 18381 + version = "20161119.652"; 18215 18382 src = fetchFromGitHub { 18216 18383 owner = "bddean"; 18217 18384 repo = "emacs-ereader"; 18218 - rev = "af00d57441e6fe92d8f03d2557f4dec0a410e5e5"; 18219 - sha256 = "1rgh2p8sz4hcqavalm48dzp1gsnccmc8zd27rv1a4xhaaihw23cl"; 18385 + rev = "57fc9c3f1ab9cfb2d6b5f20731ff7f63ee3daaa4"; 18386 + sha256 = "0hd949g9al3lifbpy36z4v9ia61zbjvj05kpb3min642m1a5361i"; 18220 18387 }; 18221 18388 recipeFile = fetchurl { 18222 18389 url = "https://raw.githubusercontent.com/milkypostman/melpa/5a3feaacdfcddb862cd3101b33777d9c19dfd125/recipes/ereader"; ··· 18274 18441 ergoemacs-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, undo-tree }: 18275 18442 melpaBuild { 18276 18443 pname = "ergoemacs-mode"; 18277 - version = "20161025.1222"; 18444 + version = "20161122.2237"; 18278 18445 src = fetchFromGitHub { 18279 18446 owner = "ergoemacs"; 18280 18447 repo = "ergoemacs-mode"; 18281 - rev = "f12edbb42f512ebeabcfb0a56e89924c21ddc529"; 18282 - sha256 = "12zmq9bsfjiigp3fdnqa349dmc8n5mb2j1szlpmzj2f4i6vm9rk3"; 18448 + rev = "427d0e47afe66d0c870c026ba5b8a93bb0b76415"; 18449 + sha256 = "0g783js3hi7i3q23mca422w3zlxv2i5f1l838ddwxyzzdzyg5if5"; 18283 18450 }; 18284 18451 recipeFile = fetchurl { 18285 18452 url = "https://raw.githubusercontent.com/milkypostman/melpa/02920517987c7fc698de9952cbb09dfd41517c40/recipes/ergoemacs-mode"; ··· 18316 18483 erlang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 18317 18484 melpaBuild { 18318 18485 pname = "erlang"; 18319 - version = "20161024.359"; 18486 + version = "20161108.47"; 18320 18487 src = fetchFromGitHub { 18321 18488 owner = "erlang"; 18322 18489 repo = "otp"; 18323 - rev = "3e06b82f0f29d90bff0783e7f3d1dabb435782f5"; 18324 - sha256 = "1i6zjj4pl5cdvqxv2ghcm0dml3jdm82hk3yp4l20zs49i1j3f43p"; 18490 + rev = "8fade0888ff75fafb2abb512cfb97bcb5472fec1"; 18491 + sha256 = "07jksnfp4xwl1059pj2aphc5saqbcgsfixy7bhz3k70j9zv6dgad"; 18325 18492 }; 18326 18493 recipeFile = fetchurl { 18327 18494 url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang"; ··· 18690 18857 eshell-up = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 18691 18858 melpaBuild { 18692 18859 pname = "eshell-up"; 18693 - version = "20161019.1214"; 18860 + version = "20161120.1117"; 18694 18861 src = fetchFromGitHub { 18695 18862 owner = "peterwvj"; 18696 18863 repo = "eshell-up"; 18697 - rev = "1e6313bb62c573c0f07d3fc6dc910b7a48bc1b18"; 18698 - sha256 = "0ffs6iw0v2y2gggpr7hpzcclcdvfim98d3ln38bf1bnajfjg0fz7"; 18864 + rev = "e763b4c0bcd70252396d7825cb53bf00e60a547e"; 18865 + sha256 = "00ckk2x9k8ksjlw54sajcg13m6c9hp3m6n71awqbm9z17prnkzl1"; 18699 18866 }; 18700 18867 recipeFile = fetchurl { 18701 18868 url = "https://raw.githubusercontent.com/milkypostman/melpa/4d033b20d047db8ddd42bdfa2fcf190de559f706/recipes/eshell-up"; ··· 19313 19480 evil-colemak-basics = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 19314 19481 melpaBuild { 19315 19482 pname = "evil-colemak-basics"; 19316 - version = "20160625.959"; 19483 + version = "20161117.1319"; 19317 19484 src = fetchFromGitHub { 19318 19485 owner = "wbolster"; 19319 19486 repo = "evil-colemak-basics"; 19320 - rev = "69fd9db21bb2a281d5232d45555714b195825043"; 19321 - sha256 = "16g7322ib53cd8f12mqw25j77g0q8vivnc6q483i5kvaivnbqvd4"; 19487 + rev = "5e56117af85e89659e9565abefef24fab7b567e8"; 19488 + sha256 = "0r62rpgklsc24yj57w72jq9i1c54fr4ksy99siyvkginmcink7kz"; 19322 19489 }; 19323 19490 recipeFile = fetchurl { 19324 19491 url = "https://raw.githubusercontent.com/milkypostman/melpa/945417d19faf492fb678aee3ba692d14e7518d85/recipes/evil-colemak-basics"; ··· 19733 19900 evil-matchit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 19734 19901 melpaBuild { 19735 19902 pname = "evil-matchit"; 19736 - version = "20161023.1639"; 19903 + version = "20161121.418"; 19737 19904 src = fetchFromGitHub { 19738 19905 owner = "redguardtoo"; 19739 19906 repo = "evil-matchit"; 19740 - rev = "51d46747e39dc247ea4b72839421b85f53d487be"; 19741 - sha256 = "15fr19gv2rf8pvns7r0jmy1z2f08bjprqxz3hj1fzn9wgc42iwg7"; 19907 + rev = "8a56092b38755de9f314faa3b137805bd5ce5fef"; 19908 + sha256 = "1i0gfhc0pi67dl451i2n6sn20mxp7nr6py43zrahrjwakh5xqhfg"; 19742 19909 }; 19743 19910 recipeFile = fetchurl { 19744 19911 url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit"; ··· 19754 19921 evil-mc = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 19755 19922 melpaBuild { 19756 19923 pname = "evil-mc"; 19757 - version = "20161104.859"; 19924 + version = "20161122.812"; 19758 19925 src = fetchFromGitHub { 19759 19926 owner = "gabesoft"; 19760 19927 repo = "evil-mc"; 19761 - rev = "494cbf6fc0eba4cbe7b6dbd3c75add14e2aca63c"; 19762 - sha256 = "06ywfq7vwqhqf9a715wfbpvl5va7sj6dfavizi4xjzaysmg8sn29"; 19928 + rev = "6d260c2badf52dca81aa3589d16ce6684b5ecc3e"; 19929 + sha256 = "1k55xipsscs059rbsxidk7w1zlxlyslhwaag36i4i3plhh1zwl9f"; 19763 19930 }; 19764 19931 recipeFile = fetchurl { 19765 19932 url = "https://raw.githubusercontent.com/milkypostman/melpa/96770d778a03ab012fb82a3a0122983db6f9b0c4/recipes/evil-mc"; ··· 20321 20488 evil-visual-replace = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 20322 20489 melpaBuild { 20323 20490 pname = "evil-visual-replace"; 20324 - version = "20160923.2243"; 20491 + version = "20161122.1641"; 20325 20492 src = fetchFromGitHub { 20326 20493 owner = "troyp"; 20327 20494 repo = "evil-visual-replace"; 20328 - rev = "65293924a42c94bd6ea788caf5a33330eb78d7a5"; 20329 - sha256 = "1rhsrfd6mb3bm80yqzaangq8i2snlv2m8ia7mawnn7d4hvjk8z8z"; 20495 + rev = "f88c8aa9e3a0d7e415bec50dcdf4bc5bb8feee45"; 20496 + sha256 = "1rmdjlbh3ah1pcdsd6yzb15g15b10x0py1alfywvyc1p227lv4v8"; 20330 20497 }; 20331 20498 recipeFile = fetchurl { 20332 20499 url = "https://raw.githubusercontent.com/milkypostman/melpa/165aea6697a6041bb83303f3ec8068a537accd4a/recipes/evil-visual-replace"; ··· 20468 20635 expand-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 20469 20636 melpaBuild { 20470 20637 pname = "expand-region"; 20471 - version = "20161020.1412"; 20638 + version = "20161122.50"; 20472 20639 src = fetchFromGitHub { 20473 20640 owner = "magnars"; 20474 20641 repo = "expand-region.el"; 20475 - rev = "0bc14fc7fbbcca5da4fdd9695cfd7cbd36eb3b96"; 20476 - sha256 = "0h40dhc3kn8fq86xnwi5lz7ql8my8737y7wkqr897p15y90swr35"; 20642 + rev = "6dd45d90a59178191e71c10c438f89b495a6c4aa"; 20643 + sha256 = "1ac62z6a7xpj0ayc9v1is7avil6r5s8rlwx39ys922qw5y281q2w"; 20477 20644 }; 20478 20645 recipeFile = fetchurl { 20479 20646 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/expand-region"; ··· 20573 20740 eyebrowse = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 20574 20741 melpaBuild { 20575 20742 pname = "eyebrowse"; 20576 - version = "20161027.1213"; 20743 + version = "20161119.442"; 20577 20744 src = fetchFromGitHub { 20578 20745 owner = "wasamasa"; 20579 20746 repo = "eyebrowse"; 20580 - rev = "41344e2aa2a919eae62ecedf80dcd41456084bcc"; 20581 - sha256 = "1b9341qqzr43sq0mjb2rkc5r9a2fyzwh1dm2qh27rcsb3vg219h2"; 20747 + rev = "a009536514409fdf0a1745504a7d7e0e376cc2c9"; 20748 + sha256 = "0kw13w3q1q4gb3ql728bk9m0rymkp21rrjmy4hyx8im84xh093ls"; 20582 20749 }; 20583 20750 recipeFile = fetchurl { 20584 20751 url = "https://raw.githubusercontent.com/milkypostman/melpa/90d052bfc0b94cf177e33b2ffc01a45d254fc1b1/recipes/eyebrowse"; ··· 21024 21191 fcitx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 21025 21192 melpaBuild { 21026 21193 pname = "fcitx"; 21027 - version = "20161013.1040"; 21194 + version = "20161118.1128"; 21028 21195 src = fetchFromGitHub { 21029 21196 owner = "cute-jumper"; 21030 21197 repo = "fcitx.el"; 21031 - rev = "433176166c561a2de8d511a1cf6fec751bcb0c57"; 21032 - sha256 = "1nvr4jh3f0qs4lpsb1sw3ih4mi5pcgn8ryxlbnax11rdcdkm625r"; 21198 + rev = "830fa2e665d7bcba8f7e7de754937c1ae6e9b60b"; 21199 + sha256 = "0qds4sqj9hppi5dfsfbpvba86fwigjprr75900rb50bb06ql4dqh"; 21033 21200 }; 21034 21201 recipeFile = fetchurl { 21035 21202 url = "https://raw.githubusercontent.com/milkypostman/melpa/e8c40f09d9397b3ca32a7ed37203f490497dc984/recipes/fcitx"; ··· 21066 21233 feature-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 21067 21234 melpaBuild { 21068 21235 pname = "feature-mode"; 21069 - version = "20160805.2015"; 21236 + version = "20161123.532"; 21070 21237 src = fetchFromGitHub { 21071 21238 owner = "michaelklishin"; 21072 21239 repo = "cucumber.el"; 21073 - rev = "f0aaa806b52eec7ee8fe97883274ed49c28e8eb8"; 21074 - sha256 = "0ms1hmwc78vix91396ia317prw54vqjx8qv2qrcccwa8bphc0py5"; 21240 + rev = "aa06b88ad96bc556992f011b6aef9b78e99ae48b"; 21241 + sha256 = "1iybvdkszrqwz9knmfffmcknsdhnpc71961y0xb4xgad8i043n2y"; 21075 21242 }; 21076 21243 recipeFile = fetchurl { 21077 21244 url = "https://raw.githubusercontent.com/milkypostman/melpa/0a70991695f9ff305f12cfa45e0a597f4a782ba3/recipes/feature-mode"; ··· 21928 22095 license = lib.licenses.free; 21929 22096 }; 21930 22097 }) {}; 22098 + fluxus-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, osc }: 22099 + melpaBuild { 22100 + pname = "fluxus-mode"; 22101 + version = "20161112.1659"; 22102 + src = fetchFromGitHub { 22103 + owner = "defaultxr"; 22104 + repo = "fluxus-mode"; 22105 + rev = "512b104fbcd5f70dcdc7ae58c627340f036ae133"; 22106 + sha256 = "054wahxnx204y8bqmmq1824caidwvvnlr2l88ar4ax0l5bmhxdyg"; 22107 + }; 22108 + recipeFile = fetchurl { 22109 + url = "https://raw.githubusercontent.com/milkypostman/melpa/a3396e0da67153ad051b8551bf34630d32f974f4/recipes/fluxus-mode"; 22110 + sha256 = "1xn2aw9gxwkmr1miam63lrdx6n0qxsgph3rlaqy9cbs0vkb254an"; 22111 + name = "fluxus-mode"; 22112 + }; 22113 + packageRequires = [ emacs osc ]; 22114 + meta = { 22115 + homepage = "https://melpa.org/#/fluxus-mode"; 22116 + license = lib.licenses.free; 22117 + }; 22118 + }) {}; 21931 22119 flx = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 21932 22120 melpaBuild { 21933 22121 pname = "flx"; ··· 21994 22182 flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }: 21995 22183 melpaBuild { 21996 22184 pname = "flycheck"; 21997 - version = "20161106.149"; 22185 + version = "20161117.144"; 21998 22186 src = fetchFromGitHub { 21999 22187 owner = "flycheck"; 22000 22188 repo = "flycheck"; 22001 - rev = "f44a5f7d6f0da7f656b6167f566b72cdd7c62dbb"; 22002 - sha256 = "0nyp7aw0144klm5mkq21lalma25g0pqs1y2f7j7rv6phg4mmnk1x"; 22189 + rev = "a4dfb0eb5e5d59ab41646dfda06d551b15bfdf21"; 22190 + sha256 = "049r2ycy4gxzmxhfjyq9g00y2jm8byfzh2j214jig3pssx12amwr"; 22003 22191 }; 22004 22192 recipeFile = fetchurl { 22005 22193 url = "https://raw.githubusercontent.com/milkypostman/melpa/649f9c3576e81409ae396606798035173cc6669f/recipes/flycheck"; ··· 22183 22371 flycheck-credo = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 22184 22372 melpaBuild { 22185 22373 pname = "flycheck-credo"; 22186 - version = "20160902.800"; 22374 + version = "20161121.2201"; 22187 22375 src = fetchFromGitHub { 22188 22376 owner = "aaronjensen"; 22189 22377 repo = "flycheck-credo"; 22190 - rev = "cdf73c72b637ee585a90b1ff8100c81186472f3b"; 22191 - sha256 = "0a5j3zd9jn1s4as53mx4438pajzbm743xhn7aqjx9wdrdfy7gsp4"; 22378 + rev = "f773422c356c1c3b39fcece3cb7cc1257c7df517"; 22379 + sha256 = "0cq6lap4gndm801lj1q1wajpb03vz40hsdimr1n02p2k2dkrz8p3"; 22192 22380 }; 22193 22381 recipeFile = fetchurl { 22194 22382 url = "https://raw.githubusercontent.com/milkypostman/melpa/88dfffe034135cc46d661f8173e8b14e0fb7f240/recipes/flycheck-credo"; ··· 22306 22494 license = lib.licenses.free; 22307 22495 }; 22308 22496 }) {}; 22497 + flycheck-demjsonlint = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 22498 + melpaBuild { 22499 + pname = "flycheck-demjsonlint"; 22500 + version = "20161114.2318"; 22501 + src = fetchFromGitHub { 22502 + owner = "z4139jq"; 22503 + repo = "flycheck-demjsonlint"; 22504 + rev = "1c433150fdf628dda4c9fad938bf7c79610b4460"; 22505 + sha256 = "0kmvwmaxw64xjgchq8szk9mhbi6xp2jhv7qpgqndf4svia4pqws6"; 22506 + }; 22507 + recipeFile = fetchurl { 22508 + url = "https://raw.githubusercontent.com/milkypostman/melpa/b66df1afde83607408fb1b30e1260f22015bf448/recipes/flycheck-demjsonlint"; 22509 + sha256 = "0prwgi6v48ng89vvizb901iq4ysmrlh0g2b3797p1a6z2mps0k57"; 22510 + name = "flycheck-demjsonlint"; 22511 + }; 22512 + packageRequires = [ flycheck ]; 22513 + meta = { 22514 + homepage = "https://melpa.org/#/flycheck-demjsonlint"; 22515 + license = lib.licenses.free; 22516 + }; 22517 + }) {}; 22309 22518 flycheck-dialyzer = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 22310 22519 melpaBuild { 22311 22520 pname = "flycheck-dialyzer"; ··· 22393 22602 flycheck-flow = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 22394 22603 melpaBuild { 22395 22604 pname = "flycheck-flow"; 22396 - version = "20160905.50"; 22605 + version = "20161123.136"; 22397 22606 src = fetchFromGitHub { 22398 22607 owner = "lbolla"; 22399 22608 repo = "emacs-flycheck-flow"; 22400 - rev = "53c7ba2caed744408bbe01c24753dddc080361a7"; 22401 - sha256 = "1fp3xzq1i1z62i6qv2345la3qvniir5qvjvwhrfm7b9mx0n77alp"; 22609 + rev = "0748aa26a03437d36bf7083e6fc1af8f382dd1a3"; 22610 + sha256 = "1mmgahrq0v77i9w95jcg2n3aqqrvzd2s4w3b2mr70i23wq5y5wqy"; 22402 22611 }; 22403 22612 recipeFile = fetchurl { 22404 22613 url = "https://raw.githubusercontent.com/milkypostman/melpa/4d18fb21d8ef9b33aa84bc26f5918e636c5771e5/recipes/flycheck-flow"; ··· 22502 22711 src = fetchFromGitHub { 22503 22712 owner = "flycheck"; 22504 22713 repo = "flycheck-hdevtools"; 22505 - rev = "53829f0c57800615718cfce27ffa16d8ba286cee"; 22506 - sha256 = "1isx9v5xx35pglmhyhpmpg7axw0krmnl0n2qiikf499z7dd35wyn"; 22714 + rev = "eab1fc184854341a56154623a131cab6ff0ce18c"; 22715 + sha256 = "0prmrix9a95zr39ybajp7fha03wknxyhrf1kfxsms1brxsc8bqim"; 22507 22716 }; 22508 22717 recipeFile = fetchurl { 22509 22718 url = "https://raw.githubusercontent.com/milkypostman/melpa/9e210eb2405cc85dd1d03e9119d2249178950398/recipes/flycheck-hdevtools"; ··· 22687 22896 flycheck-package = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, package-lint }: 22688 22897 melpaBuild { 22689 22898 pname = "flycheck-package"; 22690 - version = "20161015.1803"; 22899 + version = "20161111.1451"; 22691 22900 src = fetchFromGitHub { 22692 22901 owner = "purcell"; 22693 22902 repo = "flycheck-package"; 22694 - rev = "cf561bf9896d3e7b6bdcdb7801de6cb9f548b573"; 22695 - sha256 = "124ahlxpkcb5mcndmg8k8rdxx0piis6372zllxk6ywmgxz9mlgy1"; 22903 + rev = "afe8a49343d90d08ee72ac6f993d424dcc39cc38"; 22904 + sha256 = "19pz8h01yacfqsyh5940pam6vigvavsqg6qd84994d7mmzl534qa"; 22696 22905 }; 22697 22906 recipeFile = fetchurl { 22698 22907 url = "https://raw.githubusercontent.com/milkypostman/melpa/d17ec69c9f192625e74dfadf03b11d0d7dc575e7/recipes/flycheck-package"; ··· 22747 22956 license = lib.licenses.free; 22748 22957 }; 22749 22958 }) {}; 22959 + flycheck-plantuml = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, plantuml-mode }: 22960 + melpaBuild { 22961 + pname = "flycheck-plantuml"; 22962 + version = "20161122.219"; 22963 + src = fetchFromGitHub { 22964 + owner = "alexmurray"; 22965 + repo = "flycheck-plantuml"; 22966 + rev = "f1628d589991c3d51965db0f14866b1202374eea"; 22967 + sha256 = "1j66y4qps1wjdagr36kgqgz1w8zcmwnpwcvgwn4gkif34n96s78l"; 22968 + }; 22969 + recipeFile = fetchurl { 22970 + url = "https://raw.githubusercontent.com/milkypostman/melpa/65f050860a0efda8cf472c2945b79a0a57651556/recipes/flycheck-plantuml"; 22971 + sha256 = "01l22isiym635471628b951n025ls3lm6gfhfp6f8n8w7v1sb986"; 22972 + name = "flycheck-plantuml"; 22973 + }; 22974 + packageRequires = [ emacs flycheck plantuml-mode ]; 22975 + meta = { 22976 + homepage = "https://melpa.org/#/flycheck-plantuml"; 22977 + license = lib.licenses.free; 22978 + }; 22979 + }) {}; 22750 22980 flycheck-pony = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 22751 22981 melpaBuild { 22752 22982 pname = "flycheck-pony"; ··· 22768 22998 license = lib.licenses.free; 22769 22999 }; 22770 23000 }) {}; 22771 - flycheck-pos-tip = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, pos-tip }: 23001 + flycheck-pos-tip = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, pos-tip }: 22772 23002 melpaBuild { 22773 23003 pname = "flycheck-pos-tip"; 22774 - version = "20160323.129"; 23004 + version = "20161112.912"; 22775 23005 src = fetchFromGitHub { 22776 23006 owner = "flycheck"; 22777 23007 repo = "flycheck-pos-tip"; 22778 - rev = "2a92f6e2f8cf6a1019358c69c14c7ca835d02955"; 22779 - sha256 = "017869kcd4cjyv0hx4pkpfln96cxp6ra4ps7rx6xwrxa24f0bhrz"; 23008 + rev = "88b5a6d7ce0f313cbd22d554ea248aab95357d33"; 23009 + sha256 = "0jfgq346b4nh9wry3mnf4sfbv3l78kgadklvbv0nxykvlpx9c1rv"; 22780 23010 }; 22781 23011 recipeFile = fetchurl { 22782 23012 url = "https://raw.githubusercontent.com/milkypostman/melpa/698843f75e17b9e6160487c0153f9d6b4af288f6/recipes/flycheck-pos-tip"; 22783 23013 sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; 22784 23014 name = "flycheck-pos-tip"; 22785 23015 }; 22786 - packageRequires = [ dash flycheck pos-tip ]; 23016 + packageRequires = [ emacs flycheck pos-tip ]; 22787 23017 meta = { 22788 23018 homepage = "https://melpa.org/#/flycheck-pos-tip"; 22789 23019 license = lib.licenses.free; ··· 22792 23022 flycheck-purescript = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, seq }: 22793 23023 melpaBuild { 22794 23024 pname = "flycheck-purescript"; 22795 - version = "20160613.1315"; 23025 + version = "20161121.907"; 22796 23026 src = fetchFromGitHub { 22797 23027 owner = "emacs-pe"; 22798 23028 repo = "flycheck-purescript"; 22799 - rev = "a7e911f6479c66832e52a619cd27cc26435887a4"; 22800 - sha256 = "0d56x6wmb61ldf30pgyvl0kyfvgkjibdyy9r2281qfavgr0qszls"; 23029 + rev = "30f0435d5e2715053c8c6170b2bce2ae462ac819"; 23030 + sha256 = "10is8l88827g7gs8qnmyif124agxj9smfav6l53hjv3i0q3m3h6f"; 22801 23031 }; 22802 23032 recipeFile = fetchurl { 22803 23033 url = "https://raw.githubusercontent.com/milkypostman/melpa/a315aad238fa223058a495e1ca8c71da6447024c/recipes/flycheck-purescript"; ··· 22873 23103 license = lib.licenses.free; 22874 23104 }; 22875 23105 }) {}; 23106 + flycheck-scala-sbt = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, sbt-mode }: 23107 + melpaBuild { 23108 + pname = "flycheck-scala-sbt"; 23109 + version = "20161122.1022"; 23110 + src = fetchFromGitHub { 23111 + owner = "rjmac"; 23112 + repo = "flycheck-scala-sbt"; 23113 + rev = "1e78ac4922a8073ba6ec78672404a2008233f9ca"; 23114 + sha256 = "0iqrr56zgk8yvjc6wvz34pjv1nki6zj8g9b8i0kha31y8pz4n2sy"; 23115 + }; 23116 + recipeFile = fetchurl { 23117 + url = "https://raw.githubusercontent.com/milkypostman/melpa/0afc1e5b31689a5ba52443e2878114d9ec0e7757/recipes/flycheck-scala-sbt"; 23118 + sha256 = "09d6nj7rc1ba4psnb2csnmrs1mh5xnwh7gq7g6kq4y4f27wr8zcg"; 23119 + name = "flycheck-scala-sbt"; 23120 + }; 23121 + packageRequires = [ emacs flycheck sbt-mode ]; 23122 + meta = { 23123 + homepage = "https://melpa.org/#/flycheck-scala-sbt"; 23124 + license = lib.licenses.free; 23125 + }; 23126 + }) {}; 22876 23127 flycheck-stack = callPackage ({ fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }: 22877 23128 melpaBuild { 22878 23129 pname = "flycheck-stack"; ··· 22957 23208 license = lib.licenses.free; 22958 23209 }; 22959 23210 }) {}; 23211 + flycheck-title = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 23212 + melpaBuild { 23213 + pname = "flycheck-title"; 23214 + version = "20161112.1716"; 23215 + src = fetchFromGitHub { 23216 + owner = "Wilfred"; 23217 + repo = "flycheck-title"; 23218 + rev = "524fe02e58ee2ff698c2a108306b2b79e23944a3"; 23219 + sha256 = "1yccgsa9lcm2wklrrbs5vk89zfln70k4jnvzx0lvcjsy0swq147j"; 23220 + }; 23221 + recipeFile = fetchurl { 23222 + url = "https://raw.githubusercontent.com/milkypostman/melpa/2996b70645cd6fd093e3b31b9586ce5acb036cf6/recipes/flycheck-title"; 23223 + sha256 = "1cxid9qmzy8pl8qkvr6kgvfqm05pjw8cxpz66x619hbkw2vr7sza"; 23224 + name = "flycheck-title"; 23225 + }; 23226 + packageRequires = [ emacs flycheck ]; 23227 + meta = { 23228 + homepage = "https://melpa.org/#/flycheck-title"; 23229 + license = lib.licenses.free; 23230 + }; 23231 + }) {}; 22960 23232 flycheck-ycmd = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, ycmd }: 22961 23233 melpaBuild { 22962 23234 pname = "flycheck-ycmd"; ··· 22964 23236 src = fetchFromGitHub { 22965 23237 owner = "abingham"; 22966 23238 repo = "emacs-ycmd"; 22967 - rev = "d116b167bf776dbeba6a822c0b3c19a2c97f68d4"; 22968 - sha256 = "192qiwpkc5a0bxsiqj6zyvlblvixq24m845dgpcsqzwpjcm7qq9l"; 23239 + rev = "f11500fbc6bf66ff27deaf6988f31b8a13860468"; 23240 + sha256 = "1rbc9wvpjliv0ah0zy181q9q05fi0ihl0ap0ghli56ri05s6fhp2"; 22969 23241 }; 22970 23242 recipeFile = fetchurl { 22971 23243 url = "https://raw.githubusercontent.com/milkypostman/melpa/332e5585963c04112a55894fe7151c380930b17c/recipes/flycheck-ycmd"; ··· 23800 24072 focus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 23801 24073 melpaBuild { 23802 24074 pname = "focus"; 23803 - version = "20161106.702"; 24075 + version = "20161113.1145"; 23804 24076 src = fetchFromGitHub { 23805 24077 owner = "larstvei"; 23806 24078 repo = "Focus"; 23807 - rev = "ffd97a5a3663103aa96945bb1d2f03481ab6229f"; 23808 - sha256 = "1f5q99mhhcb75v2c06sxbg7psqclnlqci7fjaa484a8hyback24r"; 24079 + rev = "75202c9445f52eab6fb82f00006f37cd20dae6b2"; 24080 + sha256 = "1v9y3dp7sd4rsm31myp3l1jxpwjw3madajb6yz9rw0yhdirfwgbg"; 23809 24081 }; 23810 24082 recipeFile = fetchurl { 23811 24083 url = "https://raw.githubusercontent.com/milkypostman/melpa/4e8f1217224514f9b048b7101c89e3b1a305821e/recipes/focus"; ··· 24154 24426 forth-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 24155 24427 melpaBuild { 24156 24428 pname = "forth-mode"; 24157 - version = "20161019.2157"; 24429 + version = "20161120.1244"; 24158 24430 src = fetchFromGitHub { 24159 24431 owner = "larsbrinkhoff"; 24160 24432 repo = "forth-mode"; 24161 - rev = "2813a7bf3dbcdf7780834b53385993620c7a9fd5"; 24162 - sha256 = "0akbznzqibcnzq59mhnpsx9hgxddg1656ns7c5lrn7pvmajw8vwm"; 24433 + rev = "312f3860aa84793bec30b3f5410b786ad3b45f2a"; 24434 + sha256 = "03b3z2qlv5rv5a47xpzlg5da1wc4hj24kpqh83j5wrpbddc8lans"; 24163 24435 }; 24164 24436 recipeFile = fetchurl { 24165 24437 url = "https://raw.githubusercontent.com/milkypostman/melpa/d1c8b5b9fe8f17905de801f5d7dea28ca73daa4e/recipes/forth-mode"; ··· 24493 24765 version = "20161007.2213"; 24494 24766 src = fetchgit { 24495 24767 url = "git://factorcode.org/git/factor.git"; 24496 - rev = "bbcd039c6cb4f73a2e0a262eb32a7d100f4aa40b"; 24497 - sha256 = "1rjfzw4l0cykfvj1hlzayzn63iyb818i7a591fcv4sbviqcg9c65"; 24768 + rev = "0590ebf914cad5794ca22e052a5df4c93d3fb924"; 24769 + sha256 = "0k77ls6rxr6nax39b5f1gzhj3rr4yzinp354dqqvz82yc473pnb0"; 24498 24770 }; 24499 24771 recipeFile = fetchurl { 24500 24772 url = "https://raw.githubusercontent.com/milkypostman/melpa/0c3633c23baa472560a489fc663a0302f082bcef/recipes/fuel"; ··· 24838 25110 geben = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 24839 25111 melpaBuild { 24840 25112 pname = "geben"; 24841 - version = "20160817.1834"; 25113 + version = "20161122.117"; 24842 25114 src = fetchFromGitHub { 24843 25115 owner = "ahungry"; 24844 25116 repo = "geben"; 24845 - rev = "7ed838f1c91f10a590a2236dddcd09aea2f5747f"; 24846 - sha256 = "0cpmywngrb0fp5bpfy54xfh3f96hgkv79w7chc6riadapm2yvxz7"; 25117 + rev = "2ce3a7ef135f570239820d37fd6e7a338a680c27"; 25118 + sha256 = "1l9qw6zglna3wvrvayiqfl65vn19i5hrv3mrk05yj3lvi6h4wh70"; 24847 25119 }; 24848 25120 recipeFile = fetchurl { 24849 25121 url = "https://raw.githubusercontent.com/milkypostman/melpa/6f8648609e160f7dcefe4a963e8b00475f2fff78/recipes/geben"; ··· 24901 25173 geiser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 24902 25174 melpaBuild { 24903 25175 pname = "geiser"; 24904 - version = "20161010.1358"; 25176 + version = "20161109.950"; 24905 25177 src = fetchFromGitHub { 24906 25178 owner = "jaor"; 24907 25179 repo = "geiser"; 24908 - rev = "16035b9fa475496f7f89a57fa81455057af749a0"; 24909 - sha256 = "1rrafizrhjkai0msryjiz4c5dcdyihf0i2wmgiy8br74rwbxpyl5"; 25180 + rev = "847ccd4f86714ba145f2b19af6ddab2441f5c6cb"; 25181 + sha256 = "1g2m5r68l69i9j3pmcaccdk2qaaf4jfynhfxa7191id6gvhk3np0"; 24910 25182 }; 24911 25183 recipeFile = fetchurl { 24912 25184 url = "https://raw.githubusercontent.com/milkypostman/melpa/b0fe32d24cedd5307b4cccfb08a7095d81d639a0/recipes/geiser"; ··· 24922 25194 general = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 24923 25195 melpaBuild { 24924 25196 pname = "general"; 24925 - version = "20161104.1437"; 25197 + version = "20161108.2042"; 24926 25198 src = fetchFromGitHub { 24927 25199 owner = "noctuid"; 24928 25200 repo = "general.el"; 24929 - rev = "e628ab784703410e1451616953fcde9878d00301"; 24930 - sha256 = "1al3m9wgqbq3lkqw81gy0h15d4jis392nfdpybf5s0bvxbpfm29l"; 25201 + rev = "e0473d2bdbdffd97c159cb610978a13d0b9dfa38"; 25202 + sha256 = "1x734lvxpppd3njydmagiw6a0khjc3mqmicv4bgw8l0yd5b2fqjk"; 24931 25203 }; 24932 25204 recipeFile = fetchurl { 24933 25205 url = "https://raw.githubusercontent.com/milkypostman/melpa/d86383b443622d78f6d8ff7b8ac74c8d72879d26/recipes/general"; ··· 24943 25215 general-close = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 24944 25216 melpaBuild { 24945 25217 pname = "general-close"; 24946 - version = "20161104.1235"; 25218 + version = "20161122.1306"; 24947 25219 src = fetchFromGitHub { 24948 25220 owner = "emacs-berlin"; 24949 25221 repo = "general-close"; 24950 - rev = "3e19cca8452e3461d7797d63511ccb77cfb0e4a7"; 24951 - sha256 = "17lmg5qlakwm09j32fpkvwcxfzrkx4l16iiw38lbrlm505qnzlh2"; 25222 + rev = "4bad5dadf32d99fb41214cac62a08b6f5c69b234"; 25223 + sha256 = "1b04ny938lvgkdza5ih17clmpxbwhwxliczq4kx0wq301djgnwp0"; 24952 25224 }; 24953 25225 recipeFile = fetchurl { 24954 25226 url = "https://raw.githubusercontent.com/milkypostman/melpa/641a48f5148df2a19476c9b3302934a604f5c283/recipes/general-close"; ··· 25069 25341 gh = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, logito, marshal, melpaBuild, pcache, s }: 25070 25342 melpaBuild { 25071 25343 pname = "gh"; 25072 - version = "20161102.2016"; 25344 + version = "20161119.2004"; 25073 25345 src = fetchFromGitHub { 25074 25346 owner = "sigma"; 25075 25347 repo = "gh.el"; 25076 - rev = "ed4c8a7b3c347c7c6680bd39c7f4ca632030eb74"; 25077 - sha256 = "0h5mkjipq9yw2djdq61kwp1g8bgkmqnkmgzzkg0vk1ix7crqbjif"; 25348 + rev = "a30668ac60e54199025d96a59a9f718dfe0130bb"; 25349 + sha256 = "17j66iqqnwlbaalcy45l0vy37rll59z7rd5vkckgfwlnzxn8k1pg"; 25078 25350 }; 25079 25351 recipeFile = fetchurl { 25080 25352 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gh"; ··· 25279 25551 gist = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, melpaBuild }: 25280 25552 melpaBuild { 25281 25553 pname = "gist"; 25282 - version = "20160118.1656"; 25554 + version = "20161118.2026"; 25283 25555 src = fetchFromGitHub { 25284 25556 owner = "defunkt"; 25285 25557 repo = "gist.el"; 25286 - rev = "9a5c382327eb9f1e11e04a1bdeeebd215ea5fd54"; 25287 - sha256 = "0gawx1fcfzvwql6awxy6vslvmmxlmggg3vlby8lqka9ywh7dbf4b"; 25558 + rev = "222ce5eff8f31ccf783fb9082734c3f6551e7c80"; 25559 + sha256 = "18wfx3n96x8dwl8fpfrkz3ad0aw6sy19hhk595df282bhz9h5995"; 25288 25560 }; 25289 25561 recipeFile = fetchurl { 25290 25562 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gist"; ··· 25405 25677 git-commit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }: 25406 25678 melpaBuild { 25407 25679 pname = "git-commit"; 25408 - version = "20161011.1738"; 25680 + version = "20161108.1335"; 25409 25681 src = fetchFromGitHub { 25410 25682 owner = "magit"; 25411 25683 repo = "magit"; 25412 - rev = "c8517573287b9e533fb7465ba0c045655b0ec167"; 25413 - sha256 = "12dhqwk1hdx3aghwfdc8nhd0zxlzm7mfcvxxqz20vq1jjbraz5iw"; 25684 + rev = "6e23f2de27a5de23ba36305c7f5e823db44541ec"; 25685 + sha256 = "0vn4ibfvbnqgb5hc9sd8ysmd80ky7i1q5vhqxgiffm94ir8ihn5m"; 25414 25686 }; 25415 25687 recipeFile = fetchurl { 25416 25688 url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit"; ··· 25636 25908 git-timemachine = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 25637 25909 melpaBuild { 25638 25910 pname = "git-timemachine"; 25639 - version = "20160607.1228"; 25911 + version = "20161115.1420"; 25640 25912 src = fetchFromGitHub { 25641 25913 owner = "pidu"; 25642 25914 repo = "git-timemachine"; 25643 - rev = "96a72dc0f86e420629760915db99533f4301e759"; 25644 - sha256 = "1718d20f87wypfsrxyihna7mqpy94fl44hhdw1l42v1iizk9157p"; 25915 + rev = "6e2754b02afc059d431de71724a7186f051d965a"; 25916 + sha256 = "198rqljshrjypl7a08z62lmw1q8fz38zg6k5h6jv7kz0as3md4pz"; 25645 25917 }; 25646 25918 recipeFile = fetchurl { 25647 25919 url = "https://raw.githubusercontent.com/milkypostman/melpa/41e95e41fc429b688f0852f58ec6ce80303b68ce/recipes/git-timemachine"; ··· 26077 26349 gnome-calendar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 26078 26350 melpaBuild { 26079 26351 pname = "gnome-calendar"; 26080 - version = "20140112.359"; 26352 + version = "20161110.456"; 26081 26353 src = fetchFromGitHub { 26082 26354 owner = "NicolasPetton"; 26083 26355 repo = "gnome-calendar.el"; 26084 - rev = "58c3a3c32aff9901c679bdf9091ed934897b84a0"; 26085 - sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc"; 26356 + rev = "489f9f15f7bb35696b1cc19db75b554ae8328df2"; 26357 + sha256 = "1aca65g4rfpsm4yk5k2bj6kbb2wrf6s14m8jgv1p94mqmzkj7rlq"; 26086 26358 }; 26087 26359 recipeFile = fetchurl { 26088 26360 url = "https://raw.githubusercontent.com/milkypostman/melpa/8e497668d65f0eabd15e39b7492adb395a5a8e75/recipes/gnome-calendar"; ··· 26140 26412 gnu-apl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 26141 26413 melpaBuild { 26142 26414 pname = "gnu-apl-mode"; 26143 - version = "20161003.332"; 26415 + version = "20161122.2133"; 26144 26416 src = fetchFromGitHub { 26145 26417 owner = "lokedhs"; 26146 26418 repo = "gnu-apl-mode"; 26147 - rev = "783dd54a2e44dd143a2b2e427b17fa431806af4e"; 26148 - sha256 = "08fh3h4ly7zjzcnsgmpbcd5kvpmsz1ihmhiil9c38cr8acysgpzd"; 26419 + rev = "3e22988086760f62eee7b6b2a2e3e23392234b74"; 26420 + sha256 = "12mc8cvi9b92hmybzbnp0pd22dgcysxc0wklngkcj6ssq6ybzzzr"; 26149 26421 }; 26150 26422 recipeFile = fetchurl { 26151 26423 url = "https://raw.githubusercontent.com/milkypostman/melpa/369a55301bba0c4f7ce27f6e141944a523beaa0f/recipes/gnu-apl-mode"; ··· 26305 26577 go = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 26306 26578 melpaBuild { 26307 26579 pname = "go"; 26308 - version = "20160430.1739"; 26580 + version = "20161110.1849"; 26309 26581 src = fetchFromGitHub { 26310 26582 owner = "eschulte"; 26311 26583 repo = "el-go"; 26312 - rev = "8d5e61b5e50bfb807bb45d4c979bd86a2ba67149"; 26313 - sha256 = "1i6x7larpqm5h4369pz07353lk0v6gyb5grk52xslmg8w14si52n"; 26584 + rev = "ff45fb44d9cb6579d8511d8b6156ed0b34d5ac97"; 26585 + sha256 = "14av8zcxp9r4ka0h9x73i6gzwbf231wqkin65va3agrzwaf8swz1"; 26314 26586 }; 26315 26587 recipeFile = fetchurl { 26316 26588 url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go"; ··· 26323 26595 license = lib.licenses.free; 26324 26596 }; 26325 26597 }) {}; 26326 - go-add-tags = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 26598 + go-add-tags = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 26327 26599 melpaBuild { 26328 26600 pname = "go-add-tags"; 26329 - version = "20161005.948"; 26601 + version = "20161123.427"; 26330 26602 src = fetchFromGitHub { 26331 26603 owner = "syohex"; 26332 26604 repo = "emacs-go-add-tags"; 26333 - rev = "c77bd5788347009d1dc14c0d5cbedd73d4544745"; 26334 - sha256 = "0ppps79749fprcbrwd1grlqaj36yi5a8vlvk040rqyhi9g3phr3c"; 26605 + rev = "54879945e46a0884c5f93d7fd6c866a9cdf401ac"; 26606 + sha256 = "1gr65skrd41pk46ilfsbxfdng4br6h9c6blf1q1wx6i9ylhs0ak5"; 26335 26607 }; 26336 26608 recipeFile = fetchurl { 26337 26609 url = "https://raw.githubusercontent.com/milkypostman/melpa/55d3b893bd68d3d2d86ecdbb4ed442edd256516a/recipes/go-add-tags"; 26338 26610 sha256 = "0nvas44rsvqzk2ay5bhzkbrnzql13vnxq9pk4lp4mvp86dda9qim"; 26339 26611 name = "go-add-tags"; 26340 26612 }; 26341 - packageRequires = [ cl-lib emacs s ]; 26613 + packageRequires = [ emacs s ]; 26342 26614 meta = { 26343 26615 homepage = "https://melpa.org/#/go-add-tags"; 26344 26616 license = lib.licenses.free; ··· 26351 26623 src = fetchFromGitHub { 26352 26624 owner = "nsf"; 26353 26625 repo = "gocode"; 26354 - rev = "82514c86ff1b37eb29aa979fe51238846857935d"; 26355 - sha256 = "04fcz539haxvxlsnlmvw9inwmgssh8msn37iwlfax7z1a81bqq54"; 26626 + rev = "5070dacabf2a80deeaf4ddb0be3761d06fce7be5"; 26627 + sha256 = "0w54cwjcyq7cr3g50kg4zy1xrkaqakb18qbdam11qvz6kix3syg1"; 26356 26628 }; 26357 26629 recipeFile = fetchurl { 26358 26630 url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/go-autocomplete"; ··· 26498 26770 src = fetchFromGitHub { 26499 26771 owner = "dominikh"; 26500 26772 repo = "go-mode.el"; 26501 - rev = "adea2e5149bb976f956d994a0a9e510167481e72"; 26502 - sha256 = "0i725646ds3r6lh6l0zixsixn7acx9xsjxh4a0bcvbgkdyyadhaa"; 26773 + rev = "259110bfd7acb62196b09487d0883429b444bf1b"; 26774 + sha256 = "02ikkx044l5iqzz1hxyjjlxvk58liddmgapx39g7yj976rp6844f"; 26503 26775 }; 26504 26776 recipeFile = fetchurl { 26505 26777 url = "https://raw.githubusercontent.com/milkypostman/melpa/0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5/recipes/go-guru"; ··· 26515 26787 go-impl = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: 26516 26788 melpaBuild { 26517 26789 pname = "go-impl"; 26518 - version = "20160626.156"; 26790 + version = "20161123.512"; 26519 26791 src = fetchFromGitHub { 26520 26792 owner = "syohex"; 26521 26793 repo = "emacs-go-impl"; 26522 - rev = "f1a8088bca73acf254b605cf421b4661b45ff2ba"; 26523 - sha256 = "0figyrv859i48s4pzm580hr0cgyzhyi26v0gzp6ws2686i20algf"; 26794 + rev = "f5dbee749009a1bd1933d8c2adb7ccda2c330374"; 26795 + sha256 = "1nb4adj32qxh4cvxlqvf9ypjymni4jbzswhnw7mzlbma4h2jkk8b"; 26524 26796 }; 26525 26797 recipeFile = fetchurl { 26526 26798 url = "https://raw.githubusercontent.com/milkypostman/melpa/aa1a0845cc1a6970018b397d13394aaa8147e5d0/recipes/go-impl"; ··· 26536 26808 go-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 26537 26809 melpaBuild { 26538 26810 pname = "go-mode"; 26539 - version = "20161022.1435"; 26811 + version = "20161110.1750"; 26540 26812 src = fetchFromGitHub { 26541 26813 owner = "dominikh"; 26542 26814 repo = "go-mode.el"; 26543 - rev = "adea2e5149bb976f956d994a0a9e510167481e72"; 26544 - sha256 = "0i725646ds3r6lh6l0zixsixn7acx9xsjxh4a0bcvbgkdyyadhaa"; 26815 + rev = "259110bfd7acb62196b09487d0883429b444bf1b"; 26816 + sha256 = "02ikkx044l5iqzz1hxyjjlxvk58liddmgapx39g7yj976rp6844f"; 26545 26817 }; 26546 26818 recipeFile = fetchurl { 26547 26819 url = "https://raw.githubusercontent.com/milkypostman/melpa/0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5/recipes/go-mode"; ··· 26557 26829 go-playground = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, gotest, lib, melpaBuild }: 26558 26830 melpaBuild { 26559 26831 pname = "go-playground"; 26560 - version = "20160426.1228"; 26832 + version = "20161122.804"; 26561 26833 src = fetchFromGitHub { 26562 26834 owner = "grafov"; 26563 26835 repo = "go-playground"; 26564 - rev = "08add53262501d9432767116125a5030d9609911"; 26565 - sha256 = "1i93im43ipdkm1p83d15kfi14h4gqxgqx31z6qn1fc121916rx66"; 26836 + rev = "b3b5c98dbc86f7ae6fc631c29f55807bfb8dea89"; 26837 + sha256 = "10habaq2f6rh7fdpa5mv76zfvmls7g0n4hq5ka27g2yb30qqhllr"; 26566 26838 }; 26567 26839 recipeFile = fetchurl { 26568 26840 url = "https://raw.githubusercontent.com/milkypostman/melpa/900aabb7bc2350698f8740d72a5fad69c9219c33/recipes/go-playground"; ··· 26624 26896 src = fetchFromGitHub { 26625 26897 owner = "dominikh"; 26626 26898 repo = "go-mode.el"; 26627 - rev = "adea2e5149bb976f956d994a0a9e510167481e72"; 26628 - sha256 = "0i725646ds3r6lh6l0zixsixn7acx9xsjxh4a0bcvbgkdyyadhaa"; 26899 + rev = "259110bfd7acb62196b09487d0883429b444bf1b"; 26900 + sha256 = "02ikkx044l5iqzz1hxyjjlxvk58liddmgapx39g7yj976rp6844f"; 26629 26901 }; 26630 26902 recipeFile = fetchurl { 26631 26903 url = "https://raw.githubusercontent.com/milkypostman/melpa/d806abe90da9a8951fdb0c31e2167bde13183c5c/recipes/go-rename"; ··· 26834 27106 src = fetchFromGitHub { 26835 27107 owner = "golang"; 26836 27108 repo = "lint"; 26837 - rev = "3390df4df2787994aea98de825b964ac7944b817"; 26838 - sha256 = "00kjfvbi29agwsilfapgccx4ynqrbj04whk6iflxky14zrmz044q"; 27109 + rev = "206c0f020eba0f7fbcfbc467a5eb808037df2ed6"; 27110 + sha256 = "11ygf8hswvc9rj6jp7zn8wyjlraw9qrl072grn2h4s1flblpxp53"; 26839 27111 }; 26840 27112 recipeFile = fetchurl { 26841 27113 url = "https://raw.githubusercontent.com/milkypostman/melpa/34f22d829257456abbc020c006b92da9c7a7860e/recipes/golint"; ··· 26897 27169 src = fetchFromGitHub { 26898 27170 owner = "google"; 26899 27171 repo = "styleguide"; 26900 - rev = "71ec7f1e524969c19ce33cfc72e8e023f2b98ee2"; 26901 - sha256 = "0y7pgd05wbaxlc946gmly5l4jyhvh6w6aznz5cxip4vpka8s8ab7"; 27172 + rev = "db0a26320f3e930c6ea7225ed53539b4fb31310c"; 27173 + sha256 = "0kwb4vszahr7iwl1znhklsjkmqckj011z6akj9pzz33iabcah6mf"; 26902 27174 }; 26903 27175 recipeFile = fetchurl { 26904 27176 url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/google-c-style"; ··· 26935 27207 google-maps = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 26936 27208 melpaBuild { 26937 27209 pname = "google-maps"; 26938 - version = "20130412.230"; 27210 + version = "20161120.1342"; 26939 27211 src = fetchFromGitHub { 26940 27212 owner = "jd"; 26941 27213 repo = "google-maps.el"; 26942 - rev = "90151ab59e693243ca8da660ce7b9ce361ea5126"; 26943 - sha256 = "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0"; 27214 + rev = "8b5f6012e28de0ae96d3162b21004308f5105c5f"; 27215 + sha256 = "18vmcda7p1ch7bvvq7abczarfz52nymc4j3ykd9d79vrxkzfzq98"; 26944 27216 }; 26945 27217 recipeFile = fetchurl { 26946 27218 url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/google-maps"; ··· 27146 27418 src = fetchFromGitHub { 27147 27419 owner = "vmware"; 27148 27420 repo = "govmomi"; 27149 - rev = "aac2f2f2927d6a95d507538f70f94a142cd83fd2"; 27150 - sha256 = "1vik0fh9hi81d8pai9sz9h3nrn7qkyhp289hd9p8cflkz7g9cd6h"; 27421 + rev = "3a056363adc4b1a0125f5bda9a0395010d805615"; 27422 + sha256 = "01czx49dkxg5wvb2aqk474dmsnr63cmhziim2v8hrv546gp31v46"; 27151 27423 }; 27152 27424 recipeFile = fetchurl { 27153 27425 url = "https://raw.githubusercontent.com/milkypostman/melpa/92d6391318021c63b06fe39b0ca38f667bb45ae9/recipes/govc"; ··· 27331 27603 graphene = callPackage ({ company, dash, exec-path-from-shell, fetchFromGitHub, fetchurl, flycheck, graphene-meta-theme, ido-ubiquitous, lib, melpaBuild, ppd-sr-speedbar, smartparens, smex, sr-speedbar, web-mode }: 27332 27604 melpaBuild { 27333 27605 pname = "graphene"; 27334 - version = "20161009.38"; 27606 + version = "20161120.938"; 27335 27607 src = fetchFromGitHub { 27336 27608 owner = "rdallasgray"; 27337 27609 repo = "graphene"; 27338 - rev = "47c5a194f81796eface2e2f062144c17ee3cfdb7"; 27339 - sha256 = "0xx3cnwbbil6d7y15d61wkp777w4j5rsdm7gwd5gpcr8910405n2"; 27610 + rev = "b25707ae82e286aefa5a66087b12c9cb3b7bf2ed"; 27611 + sha256 = "1h21fv8plxydydm509immp0kpkf24ba6j3wrbpvp5w4nkx49mlkl"; 27340 27612 }; 27341 27613 recipeFile = fetchurl { 27342 27614 url = "https://raw.githubusercontent.com/milkypostman/melpa/0206d6adcb7855c2174c3cd506b71c21def1209b/recipes/graphene"; ··· 27862 28134 gxref = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 27863 28135 melpaBuild { 27864 28136 pname = "gxref"; 27865 - version = "20161101.633"; 28137 + version = "20161116.2359"; 27866 28138 src = fetchFromGitHub { 27867 28139 owner = "dedi"; 27868 28140 repo = "gxref"; 27869 - rev = "24bc54ff2f8756609089f5f48f34d718db629381"; 27870 - sha256 = "184dnbg7sddck39qhnydzaa4sxxnz6mcicjb9n1632xlyg6q5wrl"; 28141 + rev = "5fc61367185ca5e2bd5a7a92c1317c60b7edf13f"; 28142 + sha256 = "0x8wz1wrdzdyvghbng1j0kd8gv0q70vkqzqzwhyhzvmsx2x2cs97"; 27871 28143 }; 27872 28144 recipeFile = fetchurl { 27873 28145 url = "https://raw.githubusercontent.com/milkypostman/melpa/429b9150d4054fcadab8c5ca3b688921eeb19b78/recipes/gxref"; ··· 28240 28512 haskell-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 28241 28513 melpaBuild { 28242 28514 pname = "haskell-mode"; 28243 - version = "20161101.751"; 28515 + version = "20161110.316"; 28244 28516 src = fetchFromGitHub { 28245 28517 owner = "haskell"; 28246 28518 repo = "haskell-mode"; 28247 - rev = "cc432999b49bf9bb8844375436381b21f0344ebd"; 28248 - sha256 = "1dgkz5drnkdqm8lbf9d6qh35xlakzizm61yq6qkifhyisxlkg1rm"; 28519 + rev = "023989e46d6449532f3ab7581ac56b31f87a9448"; 28520 + sha256 = "0wx5dlq9l0r79adfg8sadclk1i2ab3vs4925nwxdx11ccyxph55l"; 28249 28521 }; 28250 28522 recipeFile = fetchurl { 28251 28523 url = "https://raw.githubusercontent.com/milkypostman/melpa/7f18b4dcbad4192b0153a316cff6533272898f1a/recipes/haskell-mode"; ··· 28508 28780 helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: 28509 28781 melpaBuild { 28510 28782 pname = "helm"; 28511 - version = "20161106.2328"; 28783 + version = "20161123.409"; 28512 28784 src = fetchFromGitHub { 28513 28785 owner = "emacs-helm"; 28514 28786 repo = "helm"; 28515 - rev = "c8d2db8b89a2a94e3409c358afccd00e9a15e6a9"; 28516 - sha256 = "1f8c8fi986js225g1yxf31hyn4l5ygya25yl8fprcxyp507xwmzp"; 28787 + rev = "0941293fb7129c83f04c584474ad1d85a6595ba3"; 28788 + sha256 = "0f9cy590kxa8m03748byvn9fzp17gziw3zbwbshkrrznj3pzr4mc"; 28517 28789 }; 28518 28790 recipeFile = fetchurl { 28519 28791 url = "https://raw.githubusercontent.com/milkypostman/melpa/7e8bccffdf69479892d76b9336a4bec3f35e919d/recipes/helm"; ··· 28592 28864 helm-ag = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 28593 28865 melpaBuild { 28594 28866 pname = "helm-ag"; 28595 - version = "20161105.744"; 28867 + version = "20161122.1853"; 28596 28868 src = fetchFromGitHub { 28597 28869 owner = "syohex"; 28598 28870 repo = "emacs-helm-ag"; 28599 - rev = "34cddd7591e2b68bc91215da8f31036d83525909"; 28600 - sha256 = "0yr35rkfidly57fklacvh03yvpb50nyhj3cb0d1yg2xmm6civ5gn"; 28871 + rev = "1e882d3b409ae46aef98f01e6bcd0bea72a2c801"; 28872 + sha256 = "1pip5hp4phi8kyr7z2w9px6p45w0xzb96rdrb6yn66cl6kafwqli"; 28601 28873 }; 28602 28874 recipeFile = fetchurl { 28603 28875 url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-ag"; ··· 28694 28966 license = lib.licenses.free; 28695 28967 }; 28696 28968 }) {}; 28969 + helm-bbdb = callPackage ({ bbdb, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 28970 + melpaBuild { 28971 + pname = "helm-bbdb"; 28972 + version = "20161122.522"; 28973 + src = fetchFromGitHub { 28974 + owner = "emacs-helm"; 28975 + repo = "helm-bbdb"; 28976 + rev = "20513422102fea4c08a0433d728a7783bb4968c8"; 28977 + sha256 = "0ns537fimv774n1bq0r8k4qwdpapbw96linqyhx9mxp23zkhlg80"; 28978 + }; 28979 + recipeFile = fetchurl { 28980 + url = "https://raw.githubusercontent.com/milkypostman/melpa/7025c319fcabc64576c0c6554d0d572cef697693/recipes/helm-bbdb"; 28981 + sha256 = "1wlacbfs23shvyaq616r1p84h8321zz1k5nzir5qg8nr6lssi8vp"; 28982 + name = "helm-bbdb"; 28983 + }; 28984 + packageRequires = [ bbdb helm ]; 28985 + meta = { 28986 + homepage = "https://melpa.org/#/helm-bbdb"; 28987 + license = lib.licenses.free; 28988 + }; 28989 + }) {}; 28697 28990 helm-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, parsebib, s }: 28698 28991 melpaBuild { 28699 28992 pname = "helm-bibtex"; 28700 - version = "20161101.2345"; 28993 + version = "20161119.412"; 28701 28994 src = fetchFromGitHub { 28702 28995 owner = "tmalsburg"; 28703 28996 repo = "helm-bibtex"; 28704 - rev = "4dde1da1963c5ccbe8c4d304000011fd85f2e462"; 28705 - sha256 = "1nnj197hchbgz77lskymb7mjwjljd9m2gzyx6vl4yrsqwl4y3h6h"; 28997 + rev = "472a41231bcb1b2a610ebc0387e495b2d84538f2"; 28998 + sha256 = "0dh1b7hdvpr3l3vsqg5kaai07nqrdd5yvl4r7lxy1xa7ayl32xq3"; 28706 28999 }; 28707 29000 recipeFile = fetchurl { 28708 29001 url = "https://raw.githubusercontent.com/milkypostman/melpa/f4118a7721435240cf8489daa4dd39369208855b/recipes/helm-bibtex"; ··· 29033 29326 helm-company = callPackage ({ company, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 29034 29327 melpaBuild { 29035 29328 pname = "helm-company"; 29036 - version = "20161010.59"; 29329 + version = "20161121.2111"; 29037 29330 src = fetchFromGitHub { 29038 29331 owner = "manuel-uberti"; 29039 29332 repo = "helm-company"; 29040 - rev = "5202ddde359d8b3b8db242e998d0766d06db2be6"; 29041 - sha256 = "03hdnnqigg3q73mb9zbqav2d91iamkxgsbc5857jxxr04bq23ak9"; 29333 + rev = "59e93396309fe3cb60913332d384d2f4706694c3"; 29334 + sha256 = "0slp08dy9s40mqj6f64d8yw9si1a76mlhbmm3a7khf076b8ky02s"; 29042 29335 }; 29043 29336 recipeFile = fetchurl { 29044 29337 url = "https://raw.githubusercontent.com/milkypostman/melpa/78ff0a6cf493ff148406140f3e4902bfafd83e4a/recipes/helm-company"; ··· 29054 29347 helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 29055 29348 melpaBuild { 29056 29349 pname = "helm-core"; 29057 - version = "20161107.47"; 29350 + version = "20161113.908"; 29058 29351 src = fetchFromGitHub { 29059 29352 owner = "emacs-helm"; 29060 29353 repo = "helm"; 29061 - rev = "c8d2db8b89a2a94e3409c358afccd00e9a15e6a9"; 29062 - sha256 = "1f8c8fi986js225g1yxf31hyn4l5ygya25yl8fprcxyp507xwmzp"; 29354 + rev = "0941293fb7129c83f04c584474ad1d85a6595ba3"; 29355 + sha256 = "0f9cy590kxa8m03748byvn9fzp17gziw3zbwbshkrrznj3pzr4mc"; 29063 29356 }; 29064 29357 recipeFile = fetchurl { 29065 29358 url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core"; ··· 29579 29872 helm-git-grep = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: 29580 29873 melpaBuild { 29581 29874 pname = "helm-git-grep"; 29582 - version = "20161105.813"; 29875 + version = "20161111.2337"; 29583 29876 src = fetchFromGitHub { 29584 29877 owner = "yasuyk"; 29585 29878 repo = "helm-git-grep"; 29586 - rev = "b0bb524d6c69d1d43729d68dbd28b67a723a4b90"; 29587 - sha256 = "0n7xsrblnl9awvljczg4a6g00bczw47q69fnmqwk76ndigyhx8n0"; 29879 + rev = "6b5abd45030d0c505bd4db7cc2a949ab5fa6d3ca"; 29880 + sha256 = "0chjyvp98g0wviisnbw07cmv3fzfmzcw2ygbn4jh5frr9kpchkf5"; 29588 29881 }; 29589 29882 recipeFile = fetchurl { 29590 29883 url = "https://raw.githubusercontent.com/milkypostman/melpa/338d28c3fe201a7b2f15793be6d540f44819f4d8/recipes/helm-git-grep"; ··· 29667 29960 src = fetchFromGitHub { 29668 29961 owner = "yasuyk"; 29669 29962 repo = "helm-go-package"; 29670 - rev = "e86914b0469d390f908b44401a31b1825af0b10d"; 29671 - sha256 = "1vxfc6dh1dahxvzz5vchx5gj33f8dyz7gqa5j1xcrxs49bqca7ad"; 29963 + rev = "e42c563936c205ceedb930a687c11b4bb56447bc"; 29964 + sha256 = "1169q25paz7x3hia5px4vmn06zzss179q9179x95vx8vfr43ny08"; 29672 29965 }; 29673 29966 recipeFile = fetchurl { 29674 29967 url = "https://raw.githubusercontent.com/milkypostman/melpa/449d272b94c189176305ca17652d76adac087ce5/recipes/helm-go-package"; ··· 30041 30334 helm-ls-git = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 30042 30335 melpaBuild { 30043 30336 pname = "helm-ls-git"; 30044 - version = "20160901.822"; 30337 + version = "20161122.241"; 30045 30338 src = fetchFromGitHub { 30046 30339 owner = "emacs-helm"; 30047 30340 repo = "helm-ls-git"; 30048 - rev = "742eeb6c33253b2be581e30b5d70113cd87a581d"; 30049 - sha256 = "1dmmz6ghi21kmwprcv174pq5m198cmsphg297ll1bhqczk51j9h5"; 30341 + rev = "98ce7dc709cf1468a50de18e96c028baa7f4357d"; 30342 + sha256 = "1hlya6rc8iwmfjqk2grr80y3842x3763yl7siwp5jflpzryxhk97"; 30050 30343 }; 30051 30344 recipeFile = fetchurl { 30052 30345 url = "https://raw.githubusercontent.com/milkypostman/melpa/b487b4c0db9092bb7e32aad9265b79a9d18c8478/recipes/helm-ls-git"; ··· 30103 30396 helm-make = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }: 30104 30397 melpaBuild { 30105 30398 pname = "helm-make"; 30106 - version = "20160807.1756"; 30399 + version = "20161109.1107"; 30107 30400 src = fetchFromGitHub { 30108 30401 owner = "abo-abo"; 30109 30402 repo = "helm-make"; 30110 - rev = "f1bb61049c83b281f7d6fd0d13dfb262629ed5dc"; 30111 - sha256 = "1wrcjpd6lsf4sgqw61ql2y3dcb8v27ysnchyjwyppgmsqbkrz0a9"; 30403 + rev = "11744341b10b35200ebb6789de52ce1a79336ef4"; 30404 + sha256 = "1kzv11admqzdbswhahh28imkvjhwmp3pggpf5igpi019p8v3y91c"; 30112 30405 }; 30113 30406 recipeFile = fetchurl { 30114 30407 url = "https://raw.githubusercontent.com/milkypostman/melpa/0f25f066c60d4caff1fbf885bc944cac47515ec8/recipes/helm-make"; ··· 30271 30564 helm-org-rifle = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: 30272 30565 melpaBuild { 30273 30566 pname = "helm-org-rifle"; 30274 - version = "20161008.1645"; 30567 + version = "20161112.1505"; 30275 30568 src = fetchFromGitHub { 30276 30569 owner = "alphapapa"; 30277 30570 repo = "helm-org-rifle"; 30278 - rev = "671827a2b72ab6ee1f2736ea33a68b4bf5f93324"; 30279 - sha256 = "1z7jr7v67g9vxf7bv18vvmrdi09rvhjp8aw3malynp9iddz8hab6"; 30571 + rev = "4596ac225a90bc49d96a416d661f5da2a13b711d"; 30572 + sha256 = "0snynrrrkhm7c3g2iwr5m4lq49lxfrkf7il1rm2k56r5lbzw7mkm"; 30280 30573 }; 30281 30574 recipeFile = fetchurl { 30282 30575 url = "https://raw.githubusercontent.com/milkypostman/melpa/f39cc94dde5aaf0d6cfea5c98dd52cdb0bcb1615/recipes/helm-org-rifle"; ··· 30334 30627 helm-pages = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 30335 30628 melpaBuild { 30336 30629 pname = "helm-pages"; 30337 - version = "20160929.2141"; 30630 + version = "20161120.1826"; 30338 30631 src = fetchFromGitHub { 30339 30632 owner = "david-christiansen"; 30340 30633 repo = "helm-pages"; 30341 - rev = "002ee736e082f792aa3f66b040902c19b81d2b5e"; 30342 - sha256 = "1lbhdwpqzj5z8yi3qma9r7p7ar2diz2qyi56mvm5qmjmnq7nqpwr"; 30634 + rev = "51dcb9374d1df9feaae85e60cfb39b970554ecba"; 30635 + sha256 = "0znmj13nshzspysnzrn2x6k9fym21n9ywkpjibljy0s05m36nbs5"; 30343 30636 }; 30344 30637 recipeFile = fetchurl { 30345 30638 url = "https://raw.githubusercontent.com/milkypostman/melpa/7a33cb19b6e71240896bbe5da07ab25f2ee11f0b/recipes/helm-pages"; ··· 30586 30879 helm-rage = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: 30587 30880 melpaBuild { 30588 30881 pname = "helm-rage"; 30589 - version = "20161030.914"; 30882 + version = "20161117.700"; 30590 30883 src = fetchFromGitHub { 30591 30884 owner = "bomgar"; 30592 30885 repo = "helm-rage"; 30593 - rev = "07c268d162d11d8b4254a78a1bdaf881cdc560ee"; 30594 - sha256 = "1dzlawga65z0c49xzwpya09clcg013w7fm7mhqf70cniim5mcya8"; 30886 + rev = "06ee938ee8c7c9c98a3f627c5c36de7645f5f28d"; 30887 + sha256 = "1zzidm622w3fgk9f5daj6njfjmfl1yrpdx03xrhg4raibh8j53lm"; 30595 30888 }; 30596 30889 recipeFile = fetchurl { 30597 30890 url = "https://raw.githubusercontent.com/milkypostman/melpa/84f831fdc5a0e90c23ac11c79f193f4d3c1ebb04/recipes/helm-rage"; ··· 31087 31380 license = lib.licenses.free; 31088 31381 }; 31089 31382 }) {}; 31383 + helm-youtube = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, request }: 31384 + melpaBuild { 31385 + pname = "helm-youtube"; 31386 + version = "20161113.1848"; 31387 + src = fetchFromGitHub { 31388 + owner = "maximus12793"; 31389 + repo = "helm-youtube"; 31390 + rev = "7a944bc25f0f9e915011e9325caf46b46fcaa1b8"; 31391 + sha256 = "0948rq6i4ibwhmi6m2k23f83yvf56vwgri1sg2060d901zd86cxy"; 31392 + }; 31393 + recipeFile = fetchurl { 31394 + url = "https://raw.githubusercontent.com/milkypostman/melpa/7537f732091b96b6c1b96c0174895278eba6776a/recipes/helm-youtube"; 31395 + sha256 = "1qal5q83p06ghn482rflcfklr17mir582r0mvchxabb5ql60dy0b"; 31396 + name = "helm-youtube"; 31397 + }; 31398 + packageRequires = [ cl-lib helm request ]; 31399 + meta = { 31400 + homepage = "https://melpa.org/#/helm-youtube"; 31401 + license = lib.licenses.free; 31402 + }; 31403 + }) {}; 31090 31404 helm-zhihu-daily = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 31091 31405 melpaBuild { 31092 31406 pname = "helm-zhihu-daily"; ··· 31577 31891 license = lib.licenses.free; 31578 31892 }; 31579 31893 }) {}; 31580 - highlight-indent-guides = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 31894 + highlight-indent-guides = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 31581 31895 melpaBuild { 31582 31896 pname = "highlight-indent-guides"; 31583 - version = "20160708.1329"; 31897 + version = "20161118.1050"; 31584 31898 src = fetchFromGitHub { 31585 31899 owner = "DarthFennec"; 31586 31900 repo = "highlight-indent-guides"; 31587 - rev = "81a21cf1099cbbed89b321b9ec38682df6e33b4a"; 31588 - sha256 = "04vmb0596cvmv0g882nazjv2cylja6wb3k1if5d9ylg2ykqr3z2l"; 31901 + rev = "759ff84afba940b1a35c484b54da9478f8aa15fb"; 31902 + sha256 = "0rqn1yc1daxpax2qv42x72411ipj49y4s1j7abgkqh2g7fvrbdwa"; 31589 31903 }; 31590 31904 recipeFile = fetchurl { 31591 31905 url = "https://raw.githubusercontent.com/milkypostman/melpa/c8acca65a5c134d4405900a43b422c4f4e18b586/recipes/highlight-indent-guides"; 31592 31906 sha256 = "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm"; 31593 31907 name = "highlight-indent-guides"; 31594 31908 }; 31595 - packageRequires = []; 31909 + packageRequires = [ emacs ]; 31596 31910 meta = { 31597 31911 homepage = "https://melpa.org/#/highlight-indent-guides"; 31598 31912 license = lib.licenses.free; ··· 32176 32490 hledger-mode = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild, popup }: 32177 32491 melpaBuild { 32178 32492 pname = "hledger-mode"; 32179 - version = "20161031.709"; 32493 + version = "20161121.848"; 32180 32494 src = fetchFromGitHub { 32181 32495 owner = "narendraj9"; 32182 32496 repo = "hledger-mode"; 32183 - rev = "912d78a9e211f588fdb59a487d6fae3e13089023"; 32184 - sha256 = "0fnd2y0w07k0rz6k3ghmk9jkx2mzdymnizrbx4ykysqdwwwnj4lw"; 32497 + rev = "413e34e748b3bbd168dec8d38f673c41232c51e2"; 32498 + sha256 = "0hniidrs8dzaq11micc0l4sdp2zrv6ry0r34c5b3w32cnb33xp47"; 32185 32499 }; 32186 32500 recipeFile = fetchurl { 32187 32501 url = "https://raw.githubusercontent.com/milkypostman/melpa/c656975c61396d8d4ded0f13ab52b17ccc238408/recipes/hledger-mode"; ··· 32552 32866 http = callPackage ({ edit-indirect, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: 32553 32867 melpaBuild { 32554 32868 pname = "http"; 32555 - version = "20161025.1120"; 32869 + version = "20161122.819"; 32556 32870 src = fetchFromGitHub { 32557 32871 owner = "emacs-pe"; 32558 32872 repo = "http.el"; 32559 - rev = "3b8cac5d30bf8142cdb9839292f39643be326f5b"; 32560 - sha256 = "0842l2wbk1f86lxzjsicqwxlmw639w26pr3dfk9rnymwzpm267kg"; 32873 + rev = "e1e9f7fb5240ec17ff21988993ca8dcb873ea78f"; 32874 + sha256 = "0r7nbhnw5mxwqlmb0diylfmiyrb7vvdqaa5h9hb746vf7pwqgcz0"; 32561 32875 }; 32562 32876 recipeFile = fetchurl { 32563 32877 url = "https://raw.githubusercontent.com/milkypostman/melpa/c7c63aaf27240706d84e464881d40cfb7cbe9ee3/recipes/http"; ··· 32675 32989 hungry-delete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 32676 32990 melpaBuild { 32677 32991 pname = "hungry-delete"; 32678 - version = "20151203.1314"; 32992 + version = "20161120.2203"; 32679 32993 src = fetchFromGitHub { 32680 32994 owner = "nflath"; 32681 32995 repo = "hungry-delete"; 32682 - rev = "ed1694ca3bd1fe7d117b0176d417341915ad4f1f"; 32683 - sha256 = "1vy521ljn16a1lcmpj09mr9y0m15lfjhl6xk04sb7nisps3vljyl"; 32996 + rev = "8df35d81fbbd236147b8c746bd5f542bd75dbe63"; 32997 + sha256 = "0j97bfhrajki2a78pchrw5n6pcsk2gc2spk9s8fb0bmnqqpknmnf"; 32684 32998 }; 32685 32999 recipeFile = fetchurl { 32686 33000 url = "https://raw.githubusercontent.com/milkypostman/melpa/e33960d9b7e24f830ebe4e5a26a562422d52fe97/recipes/hungry-delete"; ··· 32780 33094 hydra = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 32781 33095 melpaBuild { 32782 33096 pname = "hydra"; 32783 - version = "20160913.216"; 33097 + version = "20161117.1028"; 32784 33098 src = fetchFromGitHub { 32785 33099 owner = "abo-abo"; 32786 33100 repo = "hydra"; 32787 - rev = "dd5f703d5257e5fbedf3e2a400a68f2e7663077c"; 32788 - sha256 = "1h4lyr0mflvmv53x1w9i2dln090q2a4nfdj5p7vzpvran8hxrrwd"; 33101 + rev = "a72d68a0f6492af6201fbdb88211cb2f7488f3be"; 33102 + sha256 = "00k9q0fv5ca4g397f39fiyjzp827b7biyx2gly69xxgir44j9jgb"; 32789 33103 }; 32790 33104 recipeFile = fetchurl { 32791 33105 url = "https://raw.githubusercontent.com/milkypostman/melpa/a4375d8ae519290fd5018626b075c226016f951d/recipes/hydra"; ··· 32947 33261 }) {}; 32948 33262 icicles = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 32949 33263 pname = "icicles"; 32950 - version = "20161012.1345"; 33264 + version = "20161118.1605"; 32951 33265 src = fetchurl { 32952 33266 url = "https://www.emacswiki.org/emacs/download/icicles.el"; 32953 33267 sha256 = "0x082kilmzq26f9pwwbq2bid98s9mjyfwljcwz2qlj8fbihwjn6l"; ··· 33488 33802 ido-yes-or-no = callPackage ({ fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: 33489 33803 melpaBuild { 33490 33804 pname = "ido-yes-or-no"; 33491 - version = "20160217.1617"; 33805 + version = "20161108.1551"; 33492 33806 src = fetchFromGitHub { 33493 33807 owner = "DarwinAwardWinner"; 33494 33808 repo = "ido-yes-or-no"; 33495 - rev = "9ddee9e878ad62d58c9f4b3a7685f22b8e36e420"; 33496 - sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq"; 33809 + rev = "c55383b1fce5879e87e7ca6809fc60534508e182"; 33810 + sha256 = "1p50ycsn1mcq5nqa16w10hm8v2pixibvandc91mj5l7s8zspanik"; 33497 33811 }; 33498 33812 recipeFile = fetchurl { 33499 33813 url = "https://raw.githubusercontent.com/milkypostman/melpa/e575f46b8597a34523df6b6a75da5a640f4c5a2e/recipes/ido-yes-or-no"; ··· 33983 34297 import-js = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 33984 34298 melpaBuild { 33985 34299 pname = "import-js"; 33986 - version = "20161026.1046"; 34300 + version = "20161114.1455"; 33987 34301 src = fetchFromGitHub { 33988 34302 owner = "galooshi"; 33989 34303 repo = "emacs-import-js"; 33990 - rev = "5726c33b8d8c43974d4b367348962025c6df56b9"; 33991 - sha256 = "1gamzw0ayfrnp4wcn41p294kg4l80xa01w8phhsqq9kpsxz8mcr0"; 34304 + rev = "231d3d5924adea2d0127aa50acbd2b6a4bab5d25"; 34305 + sha256 = "1zsjaz69gbfmsy0zr6byag31m9jv3nglhxhz56xzhaabsk218f74"; 33992 34306 }; 33993 34307 recipeFile = fetchurl { 33994 34308 url = "https://raw.githubusercontent.com/milkypostman/melpa/048344edd471a473c9e32945b021b3f26f1666e0/recipes/import-js"; ··· 34088 34402 inf-clojure = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 34089 34403 melpaBuild { 34090 34404 pname = "inf-clojure"; 34091 - version = "20161015.2329"; 34405 + version = "20161121.314"; 34092 34406 src = fetchFromGitHub { 34093 34407 owner = "clojure-emacs"; 34094 34408 repo = "inf-clojure"; 34095 - rev = "98b530af7c3098a2c30b9c38751c3e80c37acac4"; 34096 - sha256 = "006cmqqykr09krlhwhb2wbv0f466w4wdmc6xxvn39qiqmprwv9a2"; 34409 + rev = "117d8cb2564bca1248bd71eaec8b97ff1d94668d"; 34410 + sha256 = "0wdajff7p1d1ziac6immc11jx9c4ivkj6npnjx80cyjnacj7byn4"; 34097 34411 }; 34098 34412 recipeFile = fetchurl { 34099 34413 url = "https://raw.githubusercontent.com/milkypostman/melpa/5d6112e06d1efcb7cb5652b0bec8d282d7f67bd9/recipes/inf-clojure"; ··· 34525 34839 interleave = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 34526 34840 melpaBuild { 34527 34841 pname = "interleave"; 34528 - version = "20161101.256"; 34842 + version = "20161123.101"; 34529 34843 src = fetchFromGitHub { 34530 34844 owner = "rudolfochrist"; 34531 34845 repo = "interleave"; 34532 - rev = "f0707fd914d547e88594b3208a216ddff9664a97"; 34533 - sha256 = "0xk62r0fziyybr5ivvl6yyknfv98b60nw66swz65ld9w3ld8xlpp"; 34846 + rev = "36ed2533f3c9cc22a9b54c3e8814a4e2885d0177"; 34847 + sha256 = "03yajiq3ifn9kiwrdx6zxlvycgisxm96yhalk5baysbicp6nh31r"; 34534 34848 }; 34535 34849 recipeFile = fetchurl { 34536 34850 url = "https://raw.githubusercontent.com/milkypostman/melpa/6c43d4aaaf4fca17f2bc0ee90a21c51071886ae2/recipes/interleave"; ··· 34546 34860 intero = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }: 34547 34861 melpaBuild { 34548 34862 pname = "intero"; 34549 - version = "20161027.207"; 34863 + version = "20161123.613"; 34550 34864 src = fetchFromGitHub { 34551 34865 owner = "commercialhaskell"; 34552 34866 repo = "intero"; 34553 - rev = "fe0b045aadef5590eb33e03c1512430e5d52d639"; 34554 - sha256 = "18phlz8b2qwiy1mwqri02syxp7564ca0kmcdlw8m7wz6xqdr9vih"; 34867 + rev = "eaa1b303d63650732a7146e2fdb1a601d791c344"; 34868 + sha256 = "1rhhdaysj7vfslwmjqs92xyqm9vggsr9m50lxn6ndhan0xlvzcb9"; 34555 34869 }; 34556 34870 recipeFile = fetchurl { 34557 34871 url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero"; ··· 34714 35028 iplayer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 34715 35029 melpaBuild { 34716 35030 pname = "iplayer"; 34717 - version = "20150101.255"; 35031 + version = "20161120.1320"; 34718 35032 src = fetchFromGitHub { 34719 35033 owner = "csrhodes"; 34720 35034 repo = "iplayer-el"; 34721 - rev = "48b664e36e1a8e37eeb3eee80b91ff7126ed449a"; 34722 - sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6"; 35035 + rev = "b788fffa4b36bbd558047ffa6be51b1f0f462f23"; 35036 + sha256 = "0x82mxbc6f5azzg7c4zrxz1q763k8i3y1kfb79xfspb2i64dgg5g"; 34723 35037 }; 34724 35038 recipeFile = fetchurl { 34725 35039 url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a97667365f1c30f53a6aeeb7b909a78888eb1/recipes/iplayer"; ··· 34878 35192 }) {}; 34879 35193 isearch-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 34880 35194 pname = "isearch-plus"; 34881 - version = "20161106.1457"; 35195 + version = "20161115.1908"; 34882 35196 src = fetchurl { 34883 35197 url = "https://www.emacswiki.org/emacs/download/isearch+.el"; 34884 - sha256 = "0bg6cy0yksklb929xxrpb6qyzkfbix7d5sgl48hfr4am0y3qgqi0"; 35198 + sha256 = "17ldy140kn4zgji12x4qaijg06r858zjwbvxjwarrv1rl2cny59m"; 34885 35199 }; 34886 35200 recipeFile = fetchurl { 34887 35201 url = "https://raw.githubusercontent.com/milkypostman/melpa/8a847ee5f4c4206b48cb164c49e9e82a266a0730/recipes/isearch+"; ··· 34896 35210 }) {}; 34897 35211 isearch-prop = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 34898 35212 pname = "isearch-prop"; 34899 - version = "20160827.922"; 35213 + version = "20161117.1101"; 34900 35214 src = fetchurl { 34901 35215 url = "https://www.emacswiki.org/emacs/download/isearch-prop.el"; 34902 - sha256 = "065nbrc14iw4ppj6v7fp5iygi52rbd2iwm7z5kif292ffdn499zn"; 35216 + sha256 = "1i832162b6cjlygnzmi8yjjc37dxamz1mnhlli5pif9xwa5g824m"; 34903 35217 }; 34904 35218 recipeFile = fetchurl { 34905 35219 url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/isearch-prop"; ··· 35104 35418 ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 35105 35419 melpaBuild { 35106 35420 pname = "ivy"; 35107 - version = "20161030.27"; 35421 + version = "20161118.1213"; 35108 35422 src = fetchFromGitHub { 35109 35423 owner = "abo-abo"; 35110 35424 repo = "swiper"; 35111 - rev = "c8be3973a4841a3ee7d05e59666724965ecc8dd8"; 35112 - sha256 = "010hrxabaf9pj9dyj6x12sx6m9y8bk8nzdz1xsha2jq3fcglw2mc"; 35425 + rev = "7e02815e31eb2227b7ef5fe8015913f259ced7f0"; 35426 + sha256 = "1gf1liwggddsizldx9sa4qw44skq72qmmzx5h3582sxncqjjp8mk"; 35113 35427 }; 35114 35428 recipeFile = fetchurl { 35115 35429 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy"; ··· 35125 35439 ivy-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib, s, swiper }: 35126 35440 melpaBuild { 35127 35441 pname = "ivy-bibtex"; 35128 - version = "20161101.2345"; 35442 + version = "20161119.412"; 35129 35443 src = fetchFromGitHub { 35130 35444 owner = "tmalsburg"; 35131 35445 repo = "helm-bibtex"; 35132 - rev = "4dde1da1963c5ccbe8c4d304000011fd85f2e462"; 35133 - sha256 = "1nnj197hchbgz77lskymb7mjwjljd9m2gzyx6vl4yrsqwl4y3h6h"; 35446 + rev = "472a41231bcb1b2a610ebc0387e495b2d84538f2"; 35447 + sha256 = "0dh1b7hdvpr3l3vsqg5kaai07nqrdd5yvl4r7lxy1xa7ayl32xq3"; 35134 35448 }; 35135 35449 recipeFile = fetchurl { 35136 35450 url = "https://raw.githubusercontent.com/milkypostman/melpa/c23c09225c57a9b9abe0a0a770a9184ae2e58f7c/recipes/ivy-bibtex"; ··· 35192 35506 src = fetchFromGitHub { 35193 35507 owner = "abo-abo"; 35194 35508 repo = "swiper"; 35195 - rev = "c8be3973a4841a3ee7d05e59666724965ecc8dd8"; 35196 - sha256 = "010hrxabaf9pj9dyj6x12sx6m9y8bk8nzdz1xsha2jq3fcglw2mc"; 35509 + rev = "7e02815e31eb2227b7ef5fe8015913f259ced7f0"; 35510 + sha256 = "1gf1liwggddsizldx9sa4qw44skq72qmmzx5h3582sxncqjjp8mk"; 35197 35511 }; 35198 35512 recipeFile = fetchurl { 35199 35513 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy-hydra"; ··· 35396 35710 jade = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, seq, websocket }: 35397 35711 melpaBuild { 35398 35712 pname = "jade"; 35399 - version = "20161102.1441"; 35713 + version = "20161121.1422"; 35400 35714 src = fetchFromGitHub { 35401 35715 owner = "NicolasPetton"; 35402 35716 repo = "jade"; 35403 - rev = "87697c66f883f07ff3cf646ff182a7edb49b957a"; 35404 - sha256 = "0cb17p1g7zm1cnxzfb520v7v430x01df0s6g8xi05y197kd99lbj"; 35717 + rev = "1ec4939d81e410c081b709505d812775bb8338e8"; 35718 + sha256 = "12yqbkfr5yds9kysjs159h6xvlx0ppf7c95fwhd4nx63ycyidg2x"; 35405 35719 }; 35406 35720 recipeFile = fetchurl { 35407 35721 url = "https://raw.githubusercontent.com/milkypostman/melpa/b989c1bd83f20225314b6e903c5e1df972551c19/recipes/jade"; ··· 35729 36043 license = lib.licenses.free; 35730 36044 }; 35731 36045 }) {}; 35732 - jdee = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 36046 + jdee = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, memoize }: 35733 36047 melpaBuild { 35734 36048 pname = "jdee"; 35735 - version = "20161106.1043"; 36049 + version = "20161119.911"; 35736 36050 src = fetchFromGitHub { 35737 36051 owner = "jdee-emacs"; 35738 36052 repo = "jdee"; 35739 - rev = "28fd7e8045387c4abeecb73623afad366417de07"; 35740 - sha256 = "12qj3r7apylh0qccqsr6lqlfbrp6xz3hpqrk2gqd3b01j0hp4cwd"; 36053 + rev = "9ec9a5e6bcc22490ca06ddc05dd174fe03c6fa0d"; 36054 + sha256 = "0z6bp76q9r6h4bps340xw9vg8adm3gmdmaiya6d01ymaid7qfydn"; 35741 36055 }; 35742 36056 recipeFile = fetchurl { 35743 36057 url = "https://raw.githubusercontent.com/milkypostman/melpa/a6d2c98f3bf2075e33d95c7befe205df802e798d/recipes/jdee"; 35744 36058 sha256 = "15n76w0ygjmsa2bym59bkmbbh0kpqx6nacp4zz32hlg48kgz1dx4"; 35745 36059 name = "jdee"; 35746 36060 }; 35747 - packageRequires = [ emacs ]; 36061 + packageRequires = [ dash emacs flycheck memoize ]; 35748 36062 meta = { 35749 36063 homepage = "https://melpa.org/#/jdee"; 35750 36064 license = lib.licenses.free; ··· 36107 36421 js-comint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 36108 36422 melpaBuild { 36109 36423 pname = "js-comint"; 36110 - version = "20160907.1705"; 36424 + version = "20161117.1413"; 36111 36425 src = fetchFromGitHub { 36112 36426 owner = "redguardtoo"; 36113 36427 repo = "js-comint"; 36114 - rev = "2f293bde7ad99fa1f3c8eccf2c4d4782b90c515e"; 36115 - sha256 = "1maxypb349k5aw8q72k46zr4j3wmw2c81lghpb5j2jq70ndnpj4d"; 36428 + rev = "35660f93fb624c130c8795a742bad6ff9e2dd5bd"; 36429 + sha256 = "18j0a6c7ashsbc1vsfj686pjc23igcgpvnwjrkhj0mm9afg918rq"; 36116 36430 }; 36117 36431 recipeFile = fetchurl { 36118 36432 url = "https://raw.githubusercontent.com/milkypostman/melpa/bc9d20b95e369e5a73c85a4a9385d3a8f9edd4ca/recipes/js-comint"; ··· 36212 36526 js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 36213 36527 melpaBuild { 36214 36528 pname = "js2-mode"; 36215 - version = "20161025.1012"; 36529 + version = "20161117.1621"; 36216 36530 src = fetchFromGitHub { 36217 36531 owner = "mooz"; 36218 36532 repo = "js2-mode"; 36219 - rev = "94b27217cd8305029fdfdd2f4ef660622de8a582"; 36220 - sha256 = "0p8025p7n6frmdiycr5g8fg8hs2ygszpmx51c1xla2qjhn7wcf61"; 36533 + rev = "2a796499afd95a5b9f0eb2fb338102e917f30c93"; 36534 + sha256 = "07i41zblbb733wj7wgpdwqnw0ml0mkkh053prbk8g8ghwcrm65ld"; 36221 36535 }; 36222 36536 recipeFile = fetchurl { 36223 36537 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode"; ··· 37280 37594 src = fetchFromGitHub { 37281 37595 owner = "kivy"; 37282 37596 repo = "kivy"; 37283 - rev = "e66f76fedbe7b8c042bd57eec282b6e1a88cb492"; 37284 - sha256 = "04w9gsip1h8qhppmw4g42apwnqpnfx8rcxgjvlskln97fgpf083d"; 37597 + rev = "3de25e142921667a5df95ee886b38c868dab927c"; 37598 + sha256 = "1pkfi0gz7wm5xig6im25r6f12mw34n113nn9hbwpd0vsxyl6pv5p"; 37285 37599 }; 37286 37600 recipeFile = fetchurl { 37287 37601 url = "https://raw.githubusercontent.com/milkypostman/melpa/688e2a114073958c413e56e1d117d48db9d16fb8/recipes/kivy-mode"; ··· 37591 37905 labburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 37592 37906 melpaBuild { 37593 37907 pname = "labburn-theme"; 37594 - version = "20161103.932"; 37908 + version = "20161108.139"; 37595 37909 src = fetchFromGitHub { 37596 37910 owner = "ksjogo"; 37597 37911 repo = "labburn-theme"; 37598 - rev = "28ec20825e266723a5a42a630d865ae8fdfab3d4"; 37599 - sha256 = "0kc0l07c3zq48mpjkqj7sbpz3j3h5bx4z83r7954pj6s4za8cqmg"; 37912 + rev = "6c217731977a9bd66330e9cd1e2bddfda47118bd"; 37913 + sha256 = "0mqgjq6l7b7rcky86fd1mwxwnvn269b8gj6v0y72hhkk1cmrh17s"; 37600 37914 }; 37601 37915 recipeFile = fetchurl { 37602 37916 url = "https://raw.githubusercontent.com/milkypostman/melpa/b1bfc9870fbe61f58f107b72fd7f16efba22c902/recipes/labburn-theme"; ··· 37687 38001 packageRequires = [ cl-lib ]; 37688 38002 meta = { 37689 38003 homepage = "https://melpa.org/#/langtool"; 38004 + license = lib.licenses.free; 38005 + }; 38006 + }) {}; 38007 + language-detection = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 38008 + melpaBuild { 38009 + pname = "language-detection"; 38010 + version = "20161122.2344"; 38011 + src = fetchFromGitHub { 38012 + owner = "andreasjansson"; 38013 + repo = "language-detection.el"; 38014 + rev = "14302e31a319dceb6ec78cf3d7cc93d8402e2cab"; 38015 + sha256 = "1ci5ixj0cqcbsabh4gwhicimnmlcl3wl8nv69ydvi60yfwhgq5fh"; 38016 + }; 38017 + recipeFile = fetchurl { 38018 + url = "https://raw.githubusercontent.com/milkypostman/melpa/ed2b68d0a11e5db0e7f2f5cbb2eb93c298bcb765/recipes/language-detection"; 38019 + sha256 = "1c613dj6j05idqyjd6ix7llw04d0327aicac04cicrb006km3r51"; 38020 + name = "language-detection"; 38021 + }; 38022 + packageRequires = [ cl-lib emacs ]; 38023 + meta = { 38024 + homepage = "https://melpa.org/#/language-detection"; 37690 38025 license = lib.licenses.free; 37691 38026 }; 37692 38027 }) {}; ··· 38133 38468 leuven-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 38134 38469 melpaBuild { 38135 38470 pname = "leuven-theme"; 38136 - version = "20161030.1205"; 38471 + version = "20161119.1315"; 38137 38472 src = fetchFromGitHub { 38138 38473 owner = "fniessen"; 38139 38474 repo = "emacs-leuven-theme"; 38140 - rev = "db7181c9ffce2e5f3244344440895df4e08bbcc1"; 38141 - sha256 = "1nka98zp1xmk94vv1vxd5ymkpprs0mgss4zxny87jax8drmlbjbd"; 38475 + rev = "1d4e77898228dbed46971a3f483bbca6c526643c"; 38476 + sha256 = "0b1lwccpkzzd8gpqsbn9y4drdsgg0vp48z21mnlnkfza9hnmb1l5"; 38142 38477 }; 38143 38478 recipeFile = fetchurl { 38144 38479 url = "https://raw.githubusercontent.com/milkypostman/melpa/b09451f4eb2be820e94d3fecbf4ec7cecd2cabdc/recipes/leuven-theme"; ··· 38197 38532 src = fetchFromGitHub { 38198 38533 owner = "rvirding"; 38199 38534 repo = "lfe"; 38200 - rev = "82636b12d82b0e3be076b69bfc31bb3507ba3530"; 38201 - sha256 = "0bjx08s95xklq6qszg1p3gl62c4y3kacwvz61ywgchhxvxdwi450"; 38535 + rev = "1023ef8057335e627b7a2b20b2b144068aaab7c3"; 38536 + sha256 = "0041gwmkcjsk9c0j316hl1s588wxa7dkn8vm1fc2s9nsvhang8ab"; 38202 38537 }; 38203 38538 recipeFile = fetchurl { 38204 38539 url = "https://raw.githubusercontent.com/milkypostman/melpa/c44bdb00707c9ef90160e0a44f7148b480635132/recipes/lfe-mode"; ··· 38510 38845 lispy = callPackage ({ ace-window, emacs, fetchFromGitHub, fetchurl, hydra, iedit, lib, melpaBuild, swiper, zoutline }: 38511 38846 melpaBuild { 38512 38847 pname = "lispy"; 38513 - version = "20161026.1538"; 38848 + version = "20161121.56"; 38514 38849 src = fetchFromGitHub { 38515 38850 owner = "abo-abo"; 38516 38851 repo = "lispy"; 38517 - rev = "fa1aaf0be0102ad5bedcea1154a62746f6457379"; 38518 - sha256 = "16hcy02jx4f3m6ps8m6sxks18a9mzagn262wcvf8vq3q1iargwai"; 38852 + rev = "30e7745dd9a14a75c2eb1651c047304369e540e1"; 38853 + sha256 = "1i46w7m1pmvws6cgmaxwq3kajz6nirrz1bw7kq03ndx03nxc20d8"; 38519 38854 }; 38520 38855 recipeFile = fetchurl { 38521 38856 url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy"; ··· 38823 39158 live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 38824 39159 melpaBuild { 38825 39160 pname = "live-py-mode"; 38826 - version = "20160521.1130"; 39161 + version = "20161122.2243"; 38827 39162 src = fetchFromGitHub { 38828 39163 owner = "donkirkby"; 38829 39164 repo = "live-py-plugin"; 38830 - rev = "2670089597e586c82402767727c278e9c8edfca1"; 38831 - sha256 = "00bran2qvxqlp5081qqnwn48i48v95m3g5jgrxq0nvcgblxdv2ga"; 39165 + rev = "3fde06dde5d541b7be4536bdbebaa6cd1e01a5ad"; 39166 + sha256 = "1nmsvmkv6r0qny2l8s52hld11mv74kbksz0j4vqji624im1d659w"; 38832 39167 }; 38833 39168 recipeFile = fetchurl { 38834 39169 url = "https://raw.githubusercontent.com/milkypostman/melpa/c7615237e80b46b5c50cb51a3ed5b07d92566fb7/recipes/live-py-mode"; ··· 38910 39245 version = "20150910.644"; 38911 39246 src = fetchgit { 38912 39247 url = "http://llvm.org/git/llvm"; 38913 - rev = "3e6b5bc83fc2b89b0d3624c3ba5d36af162a225c"; 38914 - sha256 = "0h1flxwsd83hrgpjz4z4plarvcvmwagvqxfpz3k05hi75c5cpcds"; 39248 + rev = "e547b01b86f262d20c875cf3e2ecf7af0bea1e8d"; 39249 + sha256 = "1ldlla2bh1073c0hy9g6zrngmpf017jnq0sap4hcw1bg1dbcwyh9"; 38915 39250 }; 38916 39251 recipeFile = fetchurl { 38917 39252 url = "https://raw.githubusercontent.com/milkypostman/melpa/05b7a689463c1dd4d3d00b992b9863d10e93112d/recipes/llvm-mode"; ··· 38990 39325 loccur = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 38991 39326 melpaBuild { 38992 39327 pname = "loccur"; 38993 - version = "20160129.1222"; 39328 + version = "20161122.1107"; 38994 39329 src = fetchFromGitHub { 38995 39330 owner = "fourier"; 38996 39331 repo = "loccur"; 38997 - rev = "fb1fbc0ff5da7a8b117542ab8083d29cd79e12b2"; 38998 - sha256 = "1npz90zf91wqf35bqd3zmkh0b538i69w8ygc78x5w2x5005aqr0p"; 39332 + rev = "08aeadc69571bddf44f2708dd75f57c7e027d32f"; 39333 + sha256 = "0wlz3skimgxbfvrd0xjj17ymm24c86847hd90wik861a4ig3wby0"; 38999 39334 }; 39000 39335 recipeFile = fetchurl { 39001 39336 url = "https://raw.githubusercontent.com/milkypostman/melpa/72550b043794331e85bc4b124f6d8ab70d969eff/recipes/loccur"; ··· 39136 39471 logview = callPackage ({ datetime, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 39137 39472 melpaBuild { 39138 39473 pname = "logview"; 39139 - version = "20161007.1145"; 39474 + version = "20161108.1149"; 39140 39475 src = fetchFromGitHub { 39141 39476 owner = "doublep"; 39142 39477 repo = "logview"; 39143 - rev = "9b2f610a32557937e704b32e97f4b61abdec6845"; 39144 - sha256 = "0w1csjcgvl1jfhjpfj19hzrd6f055iaiq0qafpgjlyn6dd4sf9gj"; 39478 + rev = "4f1db3f2081e819dd35545497529a03466bd0397"; 39479 + sha256 = "0f96wxijls743qyqfgkdqil3p5nn0sm02rlz1nqkm6bd8k28rcg1"; 39145 39480 }; 39146 39481 recipeFile = fetchurl { 39147 39482 url = "https://raw.githubusercontent.com/milkypostman/melpa/1df3c11ed7738f32e6ae457647e62847701c8b19/recipes/logview"; ··· 39445 39780 macrostep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 39446 39781 melpaBuild { 39447 39782 pname = "macrostep"; 39448 - version = "20160925.505"; 39783 + version = "20161120.1306"; 39449 39784 src = fetchFromGitHub { 39450 39785 owner = "joddie"; 39451 39786 repo = "macrostep"; 39452 - rev = "e5376126947837958983364b8615c7dea6953eda"; 39453 - sha256 = "0hdn0gwfwp5ixqqcjsiz4sjq13xzkynnbz2rclg4ajl53mgknfbv"; 39787 + rev = "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267"; 39788 + sha256 = "1fm40mxdn289cyzgw992223dgrjmwxn4q8svyyxfaxjrpb38jhjz"; 39454 39789 }; 39455 39790 recipeFile = fetchurl { 39456 39791 url = "https://raw.githubusercontent.com/milkypostman/melpa/362b5cb71e81172bc654594c08a5d0b91262851a/recipes/macrostep"; ··· 39529 39864 magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }: 39530 39865 melpaBuild { 39531 39866 pname = "magit"; 39532 - version = "20161105.1602"; 39867 + version = "20161123.617"; 39533 39868 src = fetchFromGitHub { 39534 39869 owner = "magit"; 39535 39870 repo = "magit"; 39536 - rev = "c8517573287b9e533fb7465ba0c045655b0ec167"; 39537 - sha256 = "12dhqwk1hdx3aghwfdc8nhd0zxlzm7mfcvxxqz20vq1jjbraz5iw"; 39871 + rev = "74f9ef2e7c7de93aa6784b55064fee0a58239b97"; 39872 + sha256 = "0z8j9537kh4567knx942hc4fhqg3xnmryhlc6xyawd97k6acv60n"; 39538 39873 }; 39539 39874 recipeFile = fetchurl { 39540 39875 url = "https://raw.githubusercontent.com/milkypostman/melpa/68bb049b7c4424345f5c1aea82e950a5e47e9e47/recipes/magit"; ··· 39557 39892 magit-annex = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: 39558 39893 melpaBuild { 39559 39894 pname = "magit-annex"; 39560 - version = "20161106.1441"; 39895 + version = "20161115.1528"; 39561 39896 src = fetchFromGitHub { 39562 39897 owner = "magit"; 39563 39898 repo = "magit-annex"; 39564 - rev = "aff3aa6f46f561e1cfe4f240396559097a409fb1"; 39565 - sha256 = "1mvg5qk93b7ihy7jbk6ywwp2a00qz7wwz3rd2basxj01z6glfxk4"; 39899 + rev = "74e0343b4152ad5c0d4f77f9f15dd6f1b02de432"; 39900 + sha256 = "08mpnj9c43p528iy3hj8yljhzpkpjxkjiaiiss5n2jgyyc64hw9z"; 39566 39901 }; 39567 39902 recipeFile = fetchurl { 39568 39903 url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-annex"; ··· 39704 40039 magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 39705 40040 melpaBuild { 39706 40041 pname = "magit-popup"; 39707 - version = "20161009.1506"; 40042 + version = "20161123.504"; 39708 40043 src = fetchFromGitHub { 39709 40044 owner = "magit"; 39710 40045 repo = "magit"; 39711 - rev = "c8517573287b9e533fb7465ba0c045655b0ec167"; 39712 - sha256 = "12dhqwk1hdx3aghwfdc8nhd0zxlzm7mfcvxxqz20vq1jjbraz5iw"; 40046 + rev = "74f9ef2e7c7de93aa6784b55064fee0a58239b97"; 40047 + sha256 = "0z8j9537kh4567knx942hc4fhqg3xnmryhlc6xyawd97k6acv60n"; 39713 40048 }; 39714 40049 recipeFile = fetchurl { 39715 40050 url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-popup"; ··· 40124 40459 mandoku = callPackage ({ fetchFromGitHub, fetchurl, git, github-clone, lib, magit, melpaBuild, org }: 40125 40460 melpaBuild { 40126 40461 pname = "mandoku"; 40127 - version = "20161103.115"; 40462 + version = "20161121.1435"; 40128 40463 src = fetchFromGitHub { 40129 40464 owner = "mandoku"; 40130 40465 repo = "mandoku"; 40131 - rev = "9c32e47b80dce357278f520593eb670abb66879d"; 40132 - sha256 = "1p5i26bcsa9vp5hapy2pxkb55yhqyhpmsi9qyqhkh9bxaqa70baf"; 40466 + rev = "6a0e74bfff0f1d74d179ebdf7894eb6e15381bd4"; 40467 + sha256 = "03hbyf0bj3lywbl919khnmhqwwkj7bcnvlhnspa8psi5xl6m05zq"; 40133 40468 }; 40134 40469 recipeFile = fetchurl { 40135 40470 url = "https://raw.githubusercontent.com/milkypostman/melpa/1aac4ae2c908de2c44624fb22a3f5ccf0b7a4912/recipes/mandoku"; ··· 40313 40648 markdown-preview-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, websocket }: 40314 40649 melpaBuild { 40315 40650 pname = "markdown-preview-mode"; 40316 - version = "20161004.513"; 40651 + version = "20161122.1102"; 40317 40652 src = fetchFromGitHub { 40318 40653 owner = "ancane"; 40319 40654 repo = "markdown-preview-mode"; 40320 - rev = "a5de48c4dc2cb2c8703b3ca139863f59d91086c9"; 40321 - sha256 = "1x0rv26sq7x5pd1zyc8j3xwhmg8cbm8q4aibhrnrzf9gmc54jn0l"; 40655 + rev = "c9c9bfb4490b52ff1b6ef05d4e108a04b3bfed75"; 40656 + sha256 = "1zzy47m9hxjxvqc34p99r4gda1czvcracsmkfylj1rr2frilhvsx"; 40322 40657 }; 40323 40658 recipeFile = fetchurl { 40324 40659 url = "https://raw.githubusercontent.com/milkypostman/melpa/011d26360a109b074cdecbcb133269ec6452ab86/recipes/markdown-preview-mode"; ··· 40443 40778 src = fetchFromGitHub { 40444 40779 owner = "sigma"; 40445 40780 repo = "marshal.el"; 40446 - rev = "6332b3f567f3a09ebed8f7f01e99e503f096e2a4"; 40447 - sha256 = "1i0w27fbm9vyz8g3pv4ksmzmabflwzcb5705g5zb696kl20n6jxz"; 40781 + rev = "d5b6fdd97159b22d5a9dbc3b0db18a04089b3f2f"; 40782 + sha256 = "1pix1cz8zv3kgf103ml1y42a0l2hvakbykfpbyx81z4nw7n958lf"; 40448 40783 }; 40449 40784 recipeFile = fetchurl { 40450 40785 url = "https://raw.githubusercontent.com/milkypostman/melpa/203f2061c5c7d4aefab3175de5e0538f12158ee3/recipes/marshal"; ··· 40561 40896 license = lib.licenses.free; 40562 40897 }; 40563 40898 }) {}; 40899 + matrix-client = callPackage ({ fetchgit, fetchurl, json ? null, lib, melpaBuild, request }: 40900 + melpaBuild { 40901 + pname = "matrix-client"; 40902 + version = "20161004.1933"; 40903 + src = fetchgit { 40904 + url = "https://fort.kickass.systems/git/rrix/matrix-client.git"; 40905 + rev = "5bf61e088fba83754a9e9bbef8459c82bea3be1d"; 40906 + sha256 = "1p8wfxf8pxy9ic5sd6ci1197v3j0r6564k4sw5agqplyzap5g9v5"; 40907 + }; 40908 + recipeFile = fetchurl { 40909 + url = "https://raw.githubusercontent.com/milkypostman/melpa/adeaf97d285120d7b20f1f7a21cb89eb3c40b3b6/recipes/matrix-client"; 40910 + sha256 = "05q1ggiq4nldcklpv2hndg1nx8jxl6qgi5jjc3kz736x7syb0j34"; 40911 + name = "matrix-client"; 40912 + }; 40913 + packageRequires = [ json request ]; 40914 + meta = { 40915 + homepage = "https://melpa.org/#/matrix-client"; 40916 + license = lib.licenses.free; 40917 + }; 40918 + }) {}; 40564 40919 maude-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 40565 40920 melpaBuild { 40566 40921 pname = "maude-mode"; ··· 40813 41168 melancholy-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 40814 41169 melpaBuild { 40815 41170 pname = "melancholy-theme"; 40816 - version = "20160929.43"; 41171 + version = "20161110.120"; 40817 41172 src = fetchFromGitHub { 40818 41173 owner = "techquila"; 40819 41174 repo = "melancholy-theme"; 40820 - rev = "3477a88cdf4586203430e24a1a72bc95e5fab3f5"; 40821 - sha256 = "0kkx7iwj4bp9yknk6k6mw80bsh6d00kqjdsscr1p0srv9vqnrwba"; 41175 + rev = "bf15e39ed0579fa1cf1ceb5fb91876c2be115bfb"; 41176 + sha256 = "0wphlp2vq8clv0q9c5lrpbajzhn7pr4z6x661q6vd51z9azh3qp2"; 40822 41177 }; 40823 41178 recipeFile = fetchurl { 40824 41179 url = "https://raw.githubusercontent.com/milkypostman/melpa/8b8f708d1300d401697c099709718fcb70d5db1f/recipes/melancholy-theme"; ··· 40978 41333 merlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 40979 41334 melpaBuild { 40980 41335 pname = "merlin"; 40981 - version = "20161017.205"; 41336 + version = "20161103.821"; 40982 41337 src = fetchFromGitHub { 40983 41338 owner = "the-lambda-church"; 40984 41339 repo = "merlin"; 40985 - rev = "6480e585a0e9d036d11aaf28bcee97e8e9b77c2e"; 40986 - sha256 = "0p3hqxawp18q43ws6506cnndi49f3gxzmai0x2qch7h42dgh1cb8"; 41340 + rev = "69b1ec176603cfab6b60941c2dc8d75d64fac019"; 41341 + sha256 = "150iyy75wqwva096c8g1w2sc97nfdgbry6kpz4ngz6l7ij3vivpc"; 40987 41342 }; 40988 41343 recipeFile = fetchurl { 40989 41344 url = "https://raw.githubusercontent.com/milkypostman/melpa/b1b9bfd3164e62758dc0a3362d85c6627ed7cbf8/recipes/merlin"; ··· 41331 41686 mini-header-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 41332 41687 melpaBuild { 41333 41688 pname = "mini-header-line"; 41334 - version = "20160616.327"; 41689 + version = "20161108.137"; 41335 41690 src = fetchFromGitHub { 41336 41691 owner = "ksjogo"; 41337 41692 repo = "mini-header-line"; 41338 - rev = "1480c578a1f4c77365744d2487ae868a36d49d2a"; 41339 - sha256 = "0iadwh86025wnxg30q866zsb156rhf82x8b9ih229ln2v0ank6as"; 41693 + rev = "38e1f4711b57b07876aa5cdab5af741ace0aeb83"; 41694 + sha256 = "0v9s7fdy7r16m988880jxmlx7ypgwgav11fa4yixx4dximgbc2lc"; 41340 41695 }; 41341 41696 recipeFile = fetchurl { 41342 41697 url = "https://raw.githubusercontent.com/milkypostman/melpa/122db5436ff9061713c0d3d8f44c47494067843e/recipes/mini-header-line"; ··· 42092 42447 monokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 42093 42448 melpaBuild { 42094 42449 pname = "monokai-theme"; 42095 - version = "20160902.1417"; 42450 + version = "20161116.1128"; 42096 42451 src = fetchFromGitHub { 42097 42452 owner = "oneKelvinSmith"; 42098 42453 repo = "monokai-emacs"; 42099 - rev = "11fa06c8fd5d5734e635427565a7fc980908b877"; 42100 - sha256 = "1vkjgmwlnhfqs4dnp6lf0vpjss5pxcmdqy29yg62igsg1xjd7whw"; 42454 + rev = "586062ec38807b709b888adf3bd80ffb5388f86c"; 42455 + sha256 = "13qx220ayf678milahq4xrhlhiljfmbscxikq0dlfdv39157ynlc"; 42101 42456 }; 42102 42457 recipeFile = fetchurl { 42103 42458 url = "https://raw.githubusercontent.com/milkypostman/melpa/2bc9ce95a02fc4bcf7bc7547849c1c15d6db5089/recipes/monokai-theme"; ··· 42338 42693 mowedline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 42339 42694 melpaBuild { 42340 42695 pname = "mowedline"; 42341 - version = "20150601.1009"; 42696 + version = "20161121.1835"; 42342 42697 src = fetchFromGitHub { 42343 42698 owner = "retroj"; 42344 42699 repo = "mowedline"; 42345 - rev = "63056cb9b29c5d3b5ef9d22ace7633c87e1e4299"; 42346 - sha256 = "1f4ijffjpf9p1p5gvbv8yd9hiyqrdiyg4wmqrnr76yls7zbxdf1a"; 42700 + rev = "bde4de0a4e1404127b0a48897d8cd1d1cb8a263d"; 42701 + sha256 = "0wwl9f01b9sgs8n19a4i7h08xaf6zdljf2plbdpyy4gzi2iiqcc4"; 42347 42702 }; 42348 42703 recipeFile = fetchurl { 42349 42704 url = "https://raw.githubusercontent.com/milkypostman/melpa/86f7df6b8df3398ef476c0ed31722b03f16b2fec/recipes/mowedline"; ··· 42405 42760 src = fetchFromGitHub { 42406 42761 owner = "google"; 42407 42762 repo = "mozc"; 42408 - rev = "efc1eaa4361add1803ae5245c4f3dfdea106ba48"; 42409 - sha256 = "0ws529sh9xa583m8gk78gwqnz2704sz0dw9c0l9nfz0hk3h75ivk"; 42763 + rev = "b2a74bb1bab6cc3de8611b7679b4c79f45d8ddb3"; 42764 + sha256 = "08ygyinb5p9xiszmvdscnmmbiznxdz96v3rl0pw1vjmghl5v7j8w"; 42410 42765 }; 42411 42766 recipeFile = fetchurl { 42412 42767 url = "https://raw.githubusercontent.com/milkypostman/melpa/30fef77e1d7194ee3c3c1d4775c349a4a9f6af2c/recipes/mozc"; ··· 42569 42924 mtg-deck-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 42570 42925 melpaBuild { 42571 42926 pname = "mtg-deck-mode"; 42572 - version = "20161004.1742"; 42927 + version = "20161113.1359"; 42573 42928 src = fetchFromGitHub { 42574 42929 owner = "mattiasb"; 42575 42930 repo = "mtg-deck-mode"; 42576 - rev = "362fcac725b31570d01df6e9bad545ab636a7dc5"; 42577 - sha256 = "0fzh2sq9gki87yqar48jxa34zqqmyfjiifcmv3br97im25sjfq3p"; 42931 + rev = "14d117dce8e082eb26007abd01f0e4af3ce3b698"; 42932 + sha256 = "03lff20d10s5nzh6jddf8q31lm3c20zflwbklnbsrydm2w5j6d16"; 42578 42933 }; 42579 42934 recipeFile = fetchurl { 42580 42935 url = "https://raw.githubusercontent.com/milkypostman/melpa/425fa66cffe7bfda71de4ff2b49e951456bdeae1/recipes/mtg-deck-mode"; ··· 42856 43211 multitran = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 42857 43212 melpaBuild { 42858 43213 pname = "multitran"; 42859 - version = "20161017.1307"; 43214 + version = "20161122.1323"; 42860 43215 src = fetchFromGitHub { 42861 43216 owner = "zevlg"; 42862 43217 repo = "multitran.el"; 42863 - rev = "0a18683644b63aaf9a55a433c23ff4c83bceb915"; 42864 - sha256 = "1fgwpzfr6bhzsbw52gvw0g4qn2fzrr9cw0a3g85p8qqkhja0cfbx"; 43218 + rev = "c0ce2e1b3706263946f9240a47c3f65ed4fc0afa"; 43219 + sha256 = "1dd82jlc865achy70ldjwkjx45p11sjj0snvf85r1dj4aywci6i5"; 42865 43220 }; 42866 43221 recipeFile = fetchurl { 42867 43222 url = "https://raw.githubusercontent.com/milkypostman/melpa/d665759fa6491b77103920a75c18a561f6800c1c/recipes/multitran"; ··· 43126 43481 mysql-to-org = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 43127 43482 melpaBuild { 43128 43483 pname = "mysql-to-org"; 43129 - version = "20160901.2358"; 43484 + version = "20161119.1256"; 43130 43485 src = fetchFromGitHub { 43131 43486 owner = "mallt"; 43132 43487 repo = "mysql-to-org-mode"; 43133 - rev = "25e30a8f3582e64377c8df23531b17dcc14a84e2"; 43134 - sha256 = "0vjnah8nkhh01nq758c79rssscd3rwmfrcb02sq98mcqa0aaqk07"; 43488 + rev = "0f51b174a0ee6c9820baf9d79783923b270f3ffc"; 43489 + sha256 = "1gxp1a26sna0p3xq6by8bk4yphhh32bvll0sdm2p3wkpdaci7hyz"; 43135 43490 }; 43136 43491 recipeFile = fetchurl { 43137 43492 url = "https://raw.githubusercontent.com/milkypostman/melpa/ca23f61be1dc8b0ae2ec0ae38d4614cf9c855023/recipes/mysql-to-org"; ··· 43396 43751 nand2tetris = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 43397 43752 melpaBuild { 43398 43753 pname = "nand2tetris"; 43399 - version = "20161011.1748"; 43754 + version = "20161109.1637"; 43400 43755 src = fetchFromGitHub { 43401 43756 owner = "CestDiego"; 43402 43757 repo = "nand2tetris.el"; 43403 - rev = "9c5161c840f30f01647c188699dacba5e51b3b44"; 43404 - sha256 = "05ngqw29gzjs0zzs8nyldfcqkbnh9n7jkaxrsc40dfqikjhaj5xc"; 43758 + rev = "e1be652b7d46e653a85c564ed917b5b75ab4bc50"; 43759 + sha256 = "1xnb5y1ddy4s7kia6zfzd8s5q9m2zfd72344qizywla86rqk7lpb"; 43405 43760 }; 43406 43761 recipeFile = fetchurl { 43407 43762 url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/nand2tetris"; ··· 43417 43772 nand2tetris-assembler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nand2tetris }: 43418 43773 melpaBuild { 43419 43774 pname = "nand2tetris-assembler"; 43420 - version = "20161011.1748"; 43775 + version = "20161109.1637"; 43421 43776 src = fetchFromGitHub { 43422 43777 owner = "CestDiego"; 43423 43778 repo = "nand2tetris.el"; 43424 - rev = "9c5161c840f30f01647c188699dacba5e51b3b44"; 43425 - sha256 = "05ngqw29gzjs0zzs8nyldfcqkbnh9n7jkaxrsc40dfqikjhaj5xc"; 43779 + rev = "e1be652b7d46e653a85c564ed917b5b75ab4bc50"; 43780 + sha256 = "1xnb5y1ddy4s7kia6zfzd8s5q9m2zfd72344qizywla86rqk7lpb"; 43426 43781 }; 43427 43782 recipeFile = fetchurl { 43428 43783 url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/nand2tetris-assembler"; ··· 43543 43898 src = fetchFromGitHub { 43544 43899 owner = "tiago4orion"; 43545 43900 repo = "nash-mode.el"; 43546 - rev = "bb7ae728a16812a0ef506483b877f6221c92ca9c"; 43547 - sha256 = "1n4dxbd388ibghismc5d1nkvxwxdi4r415prsaa3qad8l9s4ivwh"; 43901 + rev = "2cd96535eb7d669a94306183e95ee37333872c1a"; 43902 + sha256 = "0wdkl56pgm6qlgqjs4kqjglnxzjsfjd0y4fiffhxc893gm0psrpg"; 43548 43903 }; 43549 43904 recipeFile = fetchurl { 43550 43905 url = "https://raw.githubusercontent.com/milkypostman/melpa/c8bd080c81b163a6ddcfffc710316b9711935b4a/recipes/nash-mode"; ··· 43732 44087 src = fetchFromGitHub { 43733 44088 owner = "rsdn"; 43734 44089 repo = "nemerle"; 43735 - rev = "2e74d2bcab9ea91078f0ffa040ad8d9372e0a305"; 43736 - sha256 = "1n6gma3g08wvs083frbb0a7nygy5f9cfidqkbqf1xxm806ancvdz"; 44090 + rev = "9339ad5534676dac089048f9955a77c282862b25"; 44091 + sha256 = "17wq5lsrps94qgxhmk2xgp6j8lr17g8c2liz39ffvvwawcr207k7"; 43737 44092 }; 43738 44093 recipeFile = fetchurl { 43739 44094 url = "https://raw.githubusercontent.com/milkypostman/melpa/8477d0cf950efcfd9a85618a5ca48bff590b22d7/recipes/nemerle"; ··· 43770 44125 neotree = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 43771 44126 melpaBuild { 43772 44127 pname = "neotree"; 43773 - version = "20161028.2314"; 44128 + version = "20161115.628"; 43774 44129 src = fetchFromGitHub { 43775 44130 owner = "jaypei"; 43776 44131 repo = "emacs-neotree"; 43777 - rev = "991e1b8cb7cc3a0bbb9aa8fb109800b46b6cf3b2"; 43778 - sha256 = "0v4l4y4zwp93dgvlca23f6y9kgkzvv7i3cmvb6s5jki5syb86r3m"; 44132 + rev = "5c7c66d6d0c14f45bbdfdf04610243c805a4c298"; 44133 + sha256 = "0wp55fpqqw0lz3n8ng0g5dydbipcxxvl679m65jla0ciqgj2fh8d"; 43779 44134 }; 43780 44135 recipeFile = fetchurl { 43781 44136 url = "https://raw.githubusercontent.com/milkypostman/melpa/9caf2e12762d334563496d2c75fae6c74cfe5c1c/recipes/neotree"; ··· 44026 44381 src = fetchFromGitHub { 44027 44382 owner = "martine"; 44028 44383 repo = "ninja"; 44029 - rev = "b7bac03427e4f13ec7681aa25d3a1111fab7a4c3"; 44030 - sha256 = "1sga2iqm3qf4qyvxm89maakkxg4dskwy0m5vfa54b95jr8616p5g"; 44384 + rev = "3082aa69b7be2a2a0607441a7a2615d78aa983d7"; 44385 + sha256 = "0i7qadg281mv6f0ccafmn7fbcg9civqv65gz8wal9v975mh5nzsw"; 44031 44386 }; 44032 44387 recipeFile = fetchurl { 44033 44388 url = "https://raw.githubusercontent.com/milkypostman/melpa/aed2f32a02cb38c49163d90b1b503362e2e4a480/recipes/ninja-mode"; ··· 44068 44423 src = fetchFromGitHub { 44069 44424 owner = "NixOS"; 44070 44425 repo = "nix"; 44071 - rev = "eec5409a69054cf21214c3f5846ec0310fcb8228"; 44072 - sha256 = "1478xf9mp6v539r6mgpm7lfqa21xa5vd1kwybm24bdnzlq7h5pws"; 44426 + rev = "7ee43df8622cc0589d54248fb44cebe1c1d991d2"; 44427 + sha256 = "10lzqqxd7nmzlma05ralfkzg3yk8j1qxvnnk12y466q8gbxk7fca"; 44073 44428 }; 44074 44429 recipeFile = fetchurl { 44075 44430 url = "https://raw.githubusercontent.com/milkypostman/melpa/f2b542189cfde5b9b1ebee4625684949b6704ded/recipes/nix-mode"; ··· 44190 44545 no-littering = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 44191 44546 melpaBuild { 44192 44547 pname = "no-littering"; 44193 - version = "20161008.1358"; 44548 + version = "20161120.1243"; 44194 44549 src = fetchFromGitHub { 44195 44550 owner = "tarsius"; 44196 44551 repo = "no-littering"; 44197 - rev = "c176eae5d97f627c946ad43c980a1300e3cbeb50"; 44198 - sha256 = "1fs50qll79w0kiyh4jr9kj08ara4s8mhfybx2x1s01xnd6yzjhk8"; 44552 + rev = "e1f11f07bcd2e2bae8b7217b0f6795d0cb0e6b8c"; 44553 + sha256 = "0dmkmvdm5ygm2dwwf7bgwhv9qv5l0h41a00s0l7ic9bclpx5yz50"; 44199 44554 }; 44200 44555 recipeFile = fetchurl { 44201 44556 url = "https://raw.githubusercontent.com/milkypostman/melpa/cf5d2152c91b7c5c38181b551db3287981657ce3/recipes/no-littering"; ··· 44232 44587 noctilux-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 44233 44588 melpaBuild { 44234 44589 pname = "noctilux-theme"; 44235 - version = "20161029.810"; 44590 + version = "20161113.642"; 44236 44591 src = fetchFromGitHub { 44237 44592 owner = "sjrmanning"; 44238 44593 repo = "noctilux-theme"; 44239 - rev = "8980a500eb2613771c873c78499a1f8a580fff9c"; 44240 - sha256 = "1qfwra5q6k3p5p2i35pzs3hcksvpg1f5nk4q4qrkqb8flypfasdc"; 44594 + rev = "a3265a1be7f4d73f44acce6d968ca6f7add1f2ca"; 44595 + sha256 = "12xx0v8d97kjvlkj0ii78vxxvzgmcfc4hzv4yvxymg50rsy0zzqi"; 44241 44596 }; 44242 44597 recipeFile = fetchurl { 44243 44598 url = "https://raw.githubusercontent.com/milkypostman/melpa/c0a18df34c105da8c5710643cd8027402bb07c95/recipes/noctilux-theme"; ··· 44334 44689 }) {}; 44335 44690 notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { 44336 44691 pname = "notmuch"; 44337 - version = "20161104.851"; 44692 + version = "20161117.425"; 44338 44693 src = fetchgit { 44339 44694 url = "git://git.notmuchmail.org/git/notmuch"; 44340 - rev = "343534d82dc8882b3f0e2a847ee9d10ba5392809"; 44341 - sha256 = "1gq6vj6ac5f2kxrmzh8szn5577znfaxmp9fw3zcfjdrdmw0775n4"; 44695 + rev = "518843747835903b77889da30ce8c4518a5c0574"; 44696 + sha256 = "1wc0wslpscx79cy1acjw5yl7nk0jj5gx1r6j13mc9pd5hrfh5rxh"; 44342 44697 }; 44343 44698 recipeFile = fetchurl { 44344 44699 url = "https://raw.githubusercontent.com/milkypostman/melpa/b19f21ed7485036e799ccd88edbf7896a379d759/recipes/notmuch"; ··· 44708 45063 ob-axiom = callPackage ({ axiom-environment, emacs, fetchhg, fetchurl, lib, melpaBuild }: 44709 45064 melpaBuild { 44710 45065 pname = "ob-axiom"; 44711 - version = "20160310.1353"; 45066 + version = "20161122.1222"; 44712 45067 src = fetchhg { 44713 45068 url = "https://bitbucket.com/pdo/axiom-environment"; 44714 - rev = "4d70a7ec2429"; 44715 - sha256 = "1dmixpwsl2qsiy6c0vspi1fwvgwisw84vhijhmbkfpzrqrp1lkwc"; 45069 + rev = "485778b352fd"; 45070 + sha256 = "010qb68d0vv6h3wqlmrav6qvazm8dcjgkqr9yn4j8s5x3c94a5cn"; 44716 45071 }; 44717 45072 recipeFile = fetchurl { 44718 45073 url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/ob-axiom"; ··· 45110 45465 src = fetchFromGitHub { 45111 45466 owner = "stakemori"; 45112 45467 repo = "ob-sagemath"; 45113 - rev = "450d510a5eb1fd644d0037e9f02271ca33639fb0"; 45114 - sha256 = "00i7jszlfh67xzvqnp137aaia68rkk4ri5v0fs32ym10pcj8l4dp"; 45468 + rev = "5715748b3448b1b1e4856387c5486c7b56c0699b"; 45469 + sha256 = "1jhzrlvwf02g0v4wybyry6n9dqcihv47n11m1rpmaxpg2z8551rb"; 45115 45470 }; 45116 45471 recipeFile = fetchurl { 45117 45472 url = "https://raw.githubusercontent.com/milkypostman/melpa/dc074af316a09906a26ad957a56e3dc272cd813b/recipes/ob-sagemath"; ··· 45745 46100 omtose-phellack-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 45746 46101 melpaBuild { 45747 46102 pname = "omtose-phellack-theme"; 45748 - version = "20160919.2240"; 46103 + version = "20161111.1320"; 45749 46104 src = fetchFromGitHub { 45750 46105 owner = "franksn"; 45751 46106 repo = "omtose-phellack-theme"; 45752 - rev = "ae389d81e84646e1bbb283f56849ef34b449e4b8"; 45753 - sha256 = "0wn0xzvc8c5dlh53fl2naa44512w04j6xjxrw17gjs0ysvbqg4ns"; 46107 + rev = "66f99633e199e65bd28641626435e8e59246529a"; 46108 + sha256 = "0imf2pcf93srm473nvaksw5pw5i4caqxb6aqfbq6xww8gdbqfazy"; 45754 46109 }; 45755 46110 recipeFile = fetchurl { 45756 46111 url = "https://raw.githubusercontent.com/milkypostman/melpa/478b1e07ed9010408c12598640ec8d154f9eb18d/recipes/omtose-phellack-theme"; ··· 46136 46491 license = lib.licenses.free; 46137 46492 }; 46138 46493 }) {}; 46494 + org-babel-eval-in-repl = callPackage ({ emacs, eval-in-repl, fetchFromGitHub, fetchurl, lib, melpaBuild }: 46495 + melpaBuild { 46496 + pname = "org-babel-eval-in-repl"; 46497 + version = "20161120.1243"; 46498 + src = fetchFromGitHub { 46499 + owner = "diadochos"; 46500 + repo = "org-babel-eval-in-repl"; 46501 + rev = "1e3189e2da14c1c2a2b793c6563597c1aa7d1122"; 46502 + sha256 = "0vf77wc1pq9dfqkrnagkxfg7klwyaichms492jsp0dh5warnw7hm"; 46503 + }; 46504 + recipeFile = fetchurl { 46505 + url = "https://raw.githubusercontent.com/milkypostman/melpa/042745d47c379778195ed798ca5e0130e4877271/recipes/org-babel-eval-in-repl"; 46506 + sha256 = "00x4idm9a5ddng74axm4xjnw7z89qv3yav8j8rw2z1jf5cgbgah6"; 46507 + name = "org-babel-eval-in-repl"; 46508 + }; 46509 + packageRequires = [ emacs eval-in-repl ]; 46510 + meta = { 46511 + homepage = "https://melpa.org/#/org-babel-eval-in-repl"; 46512 + license = lib.licenses.free; 46513 + }; 46514 + }) {}; 46139 46515 org-beautify-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 46140 46516 melpaBuild { 46141 46517 pname = "org-beautify-theme"; ··· 46160 46536 org-board = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 46161 46537 melpaBuild { 46162 46538 pname = "org-board"; 46163 - version = "20161025.1203"; 46539 + version = "20161120.1201"; 46164 46540 src = fetchFromGitHub { 46165 46541 owner = "scallywag"; 46166 46542 repo = "org-board"; 46167 - rev = "fcc653735faf1ab018273d7821981090f752c838"; 46168 - sha256 = "0x8mfka6m5452r5sj7m6ypvd91cqqgyxb00rx3v8y6wbpf2nsrc8"; 46543 + rev = "cdb62dd5bf1e316d2dcc6da9661231f6c8e3be72"; 46544 + sha256 = "0clpx15lcbjsml10z87zbbi3jwzm76f01f7ikgjj8y5xxj09nhh9"; 46169 46545 }; 46170 46546 recipeFile = fetchurl { 46171 46547 url = "https://raw.githubusercontent.com/milkypostman/melpa/d8063ee17586d9b1e7415f7b924239826b81ab08/recipes/org-board"; ··· 46496 46872 org-download = callPackage ({ async, fetchFromGitHub, fetchurl, lib, melpaBuild }: 46497 46873 melpaBuild { 46498 46874 pname = "org-download"; 46499 - version = "20160907.1021"; 46875 + version = "20161119.315"; 46500 46876 src = fetchFromGitHub { 46501 46877 owner = "abo-abo"; 46502 46878 repo = "org-download"; 46503 - rev = "115433394221da8071dedf7e3f056e37f097a272"; 46504 - sha256 = "1y2654ihc0py9nhl8178bmqvaqwx2wydyfqydd6vsis31hahxmnd"; 46879 + rev = "37d323034b09fe17029985aa556999acb2f9a0e5"; 46880 + sha256 = "0g77grkhy76nlxq4fblw3biiik5mpq7r444dmvwi8fslkyshfkgs"; 46505 46881 }; 46506 46882 recipeFile = fetchurl { 46507 46883 url = "https://raw.githubusercontent.com/milkypostman/melpa/edab283bc9ca736499207518b4c9f5e71e822bd9/recipes/org-download"; ··· 46622 46998 org-elisp-help = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 46623 46999 melpaBuild { 46624 47000 pname = "org-elisp-help"; 46625 - version = "20161105.719"; 47001 + version = "20161121.1655"; 46626 47002 src = fetchFromGitHub { 46627 47003 owner = "tarsius"; 46628 47004 repo = "org-elisp-help"; 46629 - rev = "23506883074b65943987d09f1c0ecd6dc1e4a443"; 46630 - sha256 = "1wqq6phpp73qj2ra9k0whrngfaia28wc772v24dsds4dnw3zxsq0"; 47005 + rev = "3e33ab1a2933dd7f2782ef91d667a37f12d633ab"; 47006 + sha256 = "088pbafz1x4z7qi70cjbrvfrcdrjp4zy0yl115klbidshqhxycmj"; 46631 47007 }; 46632 47008 recipeFile = fetchurl { 46633 47009 url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9bf5046a4c3be8a83004d506bd258a6f7ff15/recipes/org-elisp-help"; ··· 46684 47060 org-gcal = callPackage ({ alert, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, request-deferred }: 46685 47061 melpaBuild { 46686 47062 pname = "org-gcal"; 46687 - version = "20160805.2144"; 47063 + version = "20161115.357"; 46688 47064 src = fetchFromGitHub { 46689 47065 owner = "myuhe"; 46690 47066 repo = "org-gcal.el"; 46691 - rev = "4a5c9eb487b3206771bac0ef2016492af628fc3a"; 46692 - sha256 = "1lhy8cjzz2bkw2g0ihvh6yxaavg4g3zrvnzlqi9p2y0lcw1w65lr"; 47067 + rev = "5d3cfb2cfe3a9cd8b504d4712a60840d4df17fe6"; 47068 + sha256 = "0hjiza2p7br5wkz1xas2chlzb2d15c3fvv30232z0q5ax9w428m0"; 46693 47069 }; 46694 47070 recipeFile = fetchurl { 46695 47071 url = "https://raw.githubusercontent.com/milkypostman/melpa/1c2d5bd8d8f2616dae19b9232d9442fe423d6e5e/recipes/org-gcal"; ··· 46709 47085 src = fetchFromGitHub { 46710 47086 owner = "NicolasPetton"; 46711 47087 repo = "org-gnome.el"; 46712 - rev = "1012d47886cfd30eed25b73d9f18e475e0155f88"; 46713 - sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; 47088 + rev = "122e14cf6f8104150a65246a9a7c10e1d7939862"; 47089 + sha256 = "0jd5zwykc6fkkaj8qhg7wgmrjn47054x242b5s03w8ylyczqbcg3"; 46714 47090 }; 46715 47091 recipeFile = fetchurl { 46716 47092 url = "https://raw.githubusercontent.com/milkypostman/melpa/4f7ebd2d2312954d098fe4afd07c3d02b4df475d/recipes/org-gnome"; ··· 46807 47183 license = lib.licenses.free; 46808 47184 }; 46809 47185 }) {}; 46810 - org-jira = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 47186 + org-jira = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: 46811 47187 melpaBuild { 46812 47188 pname = "org-jira"; 46813 - version = "20160821.1939"; 47189 + version = "20161117.637"; 46814 47190 src = fetchFromGitHub { 46815 - owner = "baohaojun"; 47191 + owner = "ahungry"; 46816 47192 repo = "org-jira"; 46817 - rev = "da3c987fc078ea142632bf9f050adcac719f9a9d"; 46818 - sha256 = "0zkabdqjkazcl6y4yn5c1lrhw3qny8dm51mjf18pfcfvz8fmr13c"; 47193 + rev = "2977efc1c7d7de5a8c806277e08883aa80c40930"; 47194 + sha256 = "0w34j1rql98ca2fi77p4hx3kbkd13xqq9iym72d0qmphzh8xbqmb"; 46819 47195 }; 46820 47196 recipeFile = fetchurl { 46821 - url = "https://raw.githubusercontent.com/milkypostman/melpa/d83f6897d422f81eef83933c49d82fc5db1d1ae3/recipes/org-jira"; 46822 - sha256 = "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm"; 47197 + url = "https://raw.githubusercontent.com/milkypostman/melpa/730a585e5c9216a2428a134c09abcc20bc7c631d/recipes/org-jira"; 47198 + sha256 = "0dvh9k0i75jxyy3v01c4cfyws8ij6718hsivi2xyrgig7pwp16ib"; 46823 47199 name = "org-jira"; 46824 47200 }; 46825 - packageRequires = []; 47201 + packageRequires = [ cl-lib request ]; 46826 47202 meta = { 46827 47203 homepage = "https://melpa.org/#/org-jira"; 46828 47204 license = lib.licenses.free; ··· 46835 47211 src = fetchFromGitHub { 46836 47212 owner = "bastibe"; 46837 47213 repo = "org-journal"; 46838 - rev = "8f3de8d1e60a9d1fcdd9c63e5dbe3d461448c75b"; 46839 - sha256 = "0p79wqvsnvx94fkjkrapsalgs4drkj0dbybkbgxf1r8zi1040mm2"; 47214 + rev = "c5c8724ca987da77446161c0400d444ebd5bd983"; 47215 + sha256 = "17pjhs6x2qnqrag56f7rgnraydl6nbz6y21hj981zsjy3mv899hs"; 46840 47216 }; 46841 47217 recipeFile = fetchurl { 46842 47218 url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-journal"; ··· 46897 47273 version = "20140107.519"; 46898 47274 src = fetchgit { 46899 47275 url = "git://orgmode.org/org-mode.git"; 46900 - rev = "8dc2d7767811f7d754328da0398e49718bd797de"; 46901 - sha256 = "06xl5rrw2kx6dx604gm50jj5ccv9m9szgwa4pkk1nvigy52vsj0q"; 47276 + rev = "a43eaccfce3b25999d91349f2c00b209970693ab"; 47277 + sha256 = "1g9wm439gy56884lbbs9kycymsd46pziwqhr33522dw7nnxr27pi"; 46902 47278 }; 46903 47279 recipeFile = fetchurl { 46904 47280 url = "https://raw.githubusercontent.com/milkypostman/melpa/ee69e5e7b1617a29919d5fcece92414212fdf963/recipes/org-mac-iCal"; ··· 46917 47293 version = "20160808.220"; 46918 47294 src = fetchgit { 46919 47295 url = "git://orgmode.org/org-mode.git"; 46920 - rev = "8dc2d7767811f7d754328da0398e49718bd797de"; 46921 - sha256 = "06xl5rrw2kx6dx604gm50jj5ccv9m9szgwa4pkk1nvigy52vsj0q"; 47296 + rev = "a43eaccfce3b25999d91349f2c00b209970693ab"; 47297 + sha256 = "1g9wm439gy56884lbbs9kycymsd46pziwqhr33522dw7nnxr27pi"; 46922 47298 }; 46923 47299 recipeFile = fetchurl { 46924 47300 url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/org-mac-link"; ··· 47018 47394 org-page = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, git, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }: 47019 47395 melpaBuild { 47020 47396 pname = "org-page"; 47021 - version = "20160626.108"; 47397 + version = "20161121.2129"; 47022 47398 src = fetchFromGitHub { 47023 47399 owner = "kelvinh"; 47024 47400 repo = "org-page"; 47025 - rev = "870d47a63f36f2aabe5d0d261d9b534127dedd4b"; 47026 - sha256 = "13rsv2d96hndvkllfjgip7y6477pv4hkpi3asqszkbxian4y9rjd"; 47401 + rev = "bef1e2fbcb60e85b3d27887fb0c6c988a18a0b59"; 47402 + sha256 = "1yhy98rg7zqj91hkabkf00mzgzk9cb5mvp5mad09gfy9ijkkm6sg"; 47027 47403 }; 47028 47404 recipeFile = fetchurl { 47029 47405 url = "https://raw.githubusercontent.com/milkypostman/melpa/872f163d4da58760009001472e2240f00d4d2d89/recipes/org-page"; ··· 47089 47465 org-pomodoro = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 47090 47466 melpaBuild { 47091 47467 pname = "org-pomodoro"; 47092 - version = "20160725.349"; 47468 + version = "20161119.226"; 47093 47469 src = fetchFromGitHub { 47094 47470 owner = "lolownia"; 47095 47471 repo = "org-pomodoro"; 47096 - rev = "a6d867865f1a033fb5a09cca6643045d7ebac49c"; 47097 - sha256 = "0r5shgikm34d66i2hblyknbblpg92lb2zc9x4bcb28xkh7m9d0xv"; 47472 + rev = "4b1d650b8d0b607a616a8c792da428334fe635f7"; 47473 + sha256 = "0z613daq1r4l0bfn9h8h69dcpczhnsgc653v0753jahmcj0hrqx6"; 47098 47474 }; 47099 47475 recipeFile = fetchurl { 47100 47476 url = "https://raw.githubusercontent.com/milkypostman/melpa/e54e77c5619b56e9b488b3fe8761188b6b3b4198/recipes/org-pomodoro"; ··· 47263 47639 org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, ivy, key-chord, lib, melpaBuild, s }: 47264 47640 melpaBuild { 47265 47641 pname = "org-ref"; 47266 - version = "20161107.323"; 47642 + version = "20161117.630"; 47267 47643 src = fetchFromGitHub { 47268 47644 owner = "jkitchin"; 47269 47645 repo = "org-ref"; 47270 - rev = "40b1c4322903b30b9c44906093f3ad73f7fba142"; 47271 - sha256 = "02hm36hkcsyjp28idrsfz52imjaig9qlwsamfkww0fqf9j5vp0hs"; 47646 + rev = "72ee7410b218d39a3629f3e092e10ecb37e183db"; 47647 + sha256 = "14jf4qdi3lnm8k8cdl99bmy7zqh0brdrbz166hhlih7sn1lgsywa"; 47272 47648 }; 47273 47649 recipeFile = fetchurl { 47274 47650 url = "https://raw.githubusercontent.com/milkypostman/melpa/550e4dcef2f74fbd96474561c1cb6c4fd80091fe/recipes/org-ref"; ··· 47399 47775 org-tfl = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 47400 47776 melpaBuild { 47401 47777 pname = "org-tfl"; 47402 - version = "20160407.1440"; 47778 + version = "20161120.932"; 47403 47779 src = fetchFromGitHub { 47404 47780 owner = "storax"; 47405 47781 repo = "org-tfl"; 47406 - rev = "308251618e215eb78d5436e7412a0c14216fa890"; 47407 - sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94"; 47782 + rev = "f0405e3ad62b90ea43489bdd6312adbd77edb9f3"; 47783 + sha256 = "0cznw60ivaz42ass35sf9i62x7mf9in6z8kr8wc5i1mb7hafy2hk"; 47408 47784 }; 47409 47785 recipeFile = fetchurl { 47410 47786 url = "https://raw.githubusercontent.com/milkypostman/melpa/d9e97f2fee577c7e3fb42e4ca9d4f422c8907faf/recipes/org-tfl"; ··· 47483 47859 org-tracktable = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 47484 47860 melpaBuild { 47485 47861 pname = "org-tracktable"; 47486 - version = "20160621.1127"; 47862 + version = "20161118.529"; 47487 47863 src = fetchFromGitHub { 47488 47864 owner = "tty-tourist"; 47489 47865 repo = "org-tracktable"; 47490 - rev = "b39fc45a795446b3675dd4a7c809be7bf315901b"; 47491 - sha256 = "11q85blkrfs4db0mpgn7wqfrb3ydcw4v2ccy02ba0m5dsign4wbv"; 47866 + rev = "8e0e60a582a034bd66d5efb72d513140b7d4d90a"; 47867 + sha256 = "1aq7qv5jyc2x2a4iphnzmmsvak6dbi7nwdcf3m8nly8w75vrl5lj"; 47492 47868 }; 47493 47869 recipeFile = fetchurl { 47494 47870 url = "https://raw.githubusercontent.com/milkypostman/melpa/57263d996e321f842d0741898370390146606c63/recipes/org-tracktable"; ··· 47994 48370 osx-dictionary = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 47995 48371 melpaBuild { 47996 48372 pname = "osx-dictionary"; 47997 - version = "20160628.111"; 48373 + version = "20161115.2350"; 47998 48374 src = fetchFromGitHub { 47999 48375 owner = "xuchunyang"; 48000 48376 repo = "osx-dictionary.el"; 48001 - rev = "2701c76a641cb3ab3c33a330bf48adfb08e17061"; 48002 - sha256 = "10d6mhb541gz042q02ysdazc2vv9wh1m2a9i35akc15978dwd5yv"; 48377 + rev = "8bbe1c700830e004f34974900b840ec2be7c589c"; 48378 + sha256 = "0pv9j3nza71kd2i9a78w1y10r965b2wrnywjk1zgvab8q9rzwxdn"; 48003 48379 }; 48004 48380 recipeFile = fetchurl { 48005 48381 url = "https://raw.githubusercontent.com/milkypostman/melpa/ae4467ad646d663f0266f39a76f9764004903424/recipes/osx-dictionary"; ··· 48498 48874 ox-mediawiki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 48499 48875 melpaBuild { 48500 48876 pname = "ox-mediawiki"; 48501 - version = "20150923.902"; 48877 + version = "20161115.541"; 48502 48878 src = fetchFromGitHub { 48503 48879 owner = "tomalexander"; 48504 48880 repo = "orgmode-mediawiki"; 48505 - rev = "973ebfc673dfb4beeea3d3ce648c917b58dcf879"; 48506 - sha256 = "0c2m02g6csg5fqizj3zqcm88q7w17kgvgi7swcx4fzz6rixnpsji"; 48881 + rev = "9017740cbe5866e21d81838e540dec310cc0dec0"; 48882 + sha256 = "00c7l8skxjkphqpviwkgl28gqsj5cm63h64ffg09gkvp42mwjshz"; 48507 48883 }; 48508 48884 recipeFile = fetchurl { 48509 48885 url = "https://raw.githubusercontent.com/milkypostman/melpa/24244d146306ce965df382c8958c7574c74313f2/recipes/ox-mediawiki"; ··· 48603 48979 ox-reveal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 48604 48980 melpaBuild { 48605 48981 pname = "ox-reveal"; 48606 - version = "20160719.28"; 48982 + version = "20161027.226"; 48607 48983 src = fetchFromGitHub { 48608 48984 owner = "yjwen"; 48609 48985 repo = "org-reveal"; 48610 - rev = "6ee0e547ddf1596496e558d1b7ab78f315f980ec"; 48611 - sha256 = "0p71pvsgyri2pgvv208pp7fizqx40asy6m60si9mhlk8smdris72"; 48986 + rev = "001567cc12d50ba07612edd1718b86a12e8c2547"; 48987 + sha256 = "18rma8smjrskbjyna076zhvx79zs5r5vinb537h8mw13pfxd6cm8"; 48612 48988 }; 48613 48989 recipeFile = fetchurl { 48614 48990 url = "https://raw.githubusercontent.com/milkypostman/melpa/8bb4024eef5dc4cc3674bbbed9d92f074d533f35/recipes/ox-reveal"; ··· 48834 49210 package-filter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 48835 49211 melpaBuild { 48836 49212 pname = "package-filter"; 48837 - version = "20140105.1426"; 49213 + version = "20161121.2319"; 48838 49214 src = fetchFromGitHub { 48839 49215 owner = "milkypostman"; 48840 49216 repo = "package-filter"; 48841 - rev = "ba3be37e0ef3972b2d8db7c2f2cb68c460699f12"; 48842 - sha256 = "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6"; 49217 + rev = "c8e2531227c02c4c5e9d593f2cdb6a4ab4a6849b"; 49218 + sha256 = "001h92jchz6x6pm8bj90law0yzc5xd84f703z7fcwan4k0g1iwl7"; 48843 49219 }; 48844 49220 recipeFile = fetchurl { 48845 49221 url = "https://raw.githubusercontent.com/milkypostman/melpa/89312eaf69f3d7ac46647255c847fcb45415e78d/recipes/package-filter"; ··· 48855 49231 package-lint = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 48856 49232 melpaBuild { 48857 49233 pname = "package-lint"; 48858 - version = "20161106.718"; 49234 + version = "20161111.1451"; 48859 49235 src = fetchFromGitHub { 48860 49236 owner = "purcell"; 48861 49237 repo = "package-lint"; 48862 - rev = "46f12c815bc791b2889292d4b32eccad9e313d1d"; 48863 - sha256 = "0dvljayxc9dkrw5w0xj92859wvh0kmvq1jl8mgf7916nafxgl0pf"; 49238 + rev = "46562bac48a22fdc8492b76d63722c1dbcfe2e63"; 49239 + sha256 = "1l0rhdlzkvx1zzif8k3y1b8wxmi3yf08k7ynzzz5dgidxdvg1bd0"; 48864 49240 }; 48865 49241 recipeFile = fetchurl { 48866 49242 url = "https://raw.githubusercontent.com/milkypostman/melpa/9744d8521b4ac5aeb1f28229c0897af7260c6f78/recipes/package-lint"; ··· 48915 49291 license = lib.licenses.free; 48916 49292 }; 48917 49293 }) {}; 48918 - package-utils = callPackage ({ async, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }: 49294 + package-utils = callPackage ({ async, fetchFromGitHub, fetchurl, lib, melpaBuild }: 48919 49295 melpaBuild { 48920 49296 pname = "package-utils"; 48921 - version = "20160627.909"; 49297 + version = "20161115.108"; 48922 49298 src = fetchFromGitHub { 48923 49299 owner = "Silex"; 48924 49300 repo = "package-utils"; 48925 - rev = "f655efc89ea7675b6cc9990d46a9f48ca6d384b7"; 48926 - sha256 = "1q6hpfaj8hfybxmmh1v871arlv8dn77li9vgckcal4l6xf83nvpi"; 49301 + rev = "6f283b06ab87cce071fe71a9b22eb791d4da0289"; 49302 + sha256 = "0ihynkr446w065wd8psljdyrax53mcpv18l1k5kzlhp9hplykaqw"; 48927 49303 }; 48928 49304 recipeFile = fetchurl { 48929 49305 url = "https://raw.githubusercontent.com/milkypostman/melpa/a1bb884a0299408daa716eba42cb39f79622766c/recipes/package-utils"; 48930 49306 sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; 48931 49307 name = "package-utils"; 48932 49308 }; 48933 - packageRequires = [ async epl ]; 49309 + packageRequires = [ async ]; 48934 49310 meta = { 48935 49311 homepage = "https://melpa.org/#/package-utils"; 48936 49312 license = lib.licenses.free; ··· 48985 49361 src = fetchFromGitHub { 48986 49362 owner = "onurtemizkan"; 48987 49363 repo = "paganini"; 48988 - rev = "506e35c9cecfae0f9ccbb7da24d48b9d082a7901"; 48989 - sha256 = "16g4crpgskhgfzw8fx2j4ibvpdf8qi7brxbp2nhwijdag12i4wwn"; 49364 + rev = "44e3ae4c451f3b380956fea8aef8cca75279746b"; 49365 + sha256 = "0p5sml4djwr92s36nx4hd0pjwkfws4px01g0dzip34zabkm3dx4b"; 48990 49366 }; 48991 49367 recipeFile = fetchurl { 48992 49368 url = "https://raw.githubusercontent.com/milkypostman/melpa/d6fbb609b411df4fe6f66a7afe27eda7d297f140/recipes/paganini-theme"; ··· 49209 49585 paradox = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, let-alist, lib, melpaBuild, seq, spinner }: 49210 49586 melpaBuild { 49211 49587 pname = "paradox"; 49212 - version = "20161102.1351"; 49588 + version = "20161117.502"; 49213 49589 src = fetchFromGitHub { 49214 49590 owner = "Malabarba"; 49215 49591 repo = "paradox"; 49216 - rev = "b693226ad827409fc1d6243a5a949d1c87c53104"; 49217 - sha256 = "050ygdhlxd7785h262vg8pdv2w0sgq36jh0wsjv9q64qmrndrklf"; 49592 + rev = "17a6690d42a1e854ec270ed930c7494077570fc8"; 49593 + sha256 = "1vg5i4cxgn4a8cgx43i75w3cf0d8sb6ig6xxxdj3pvpzc81i53bc"; 49218 49594 }; 49219 49595 recipeFile = fetchurl { 49220 49596 url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/paradox"; ··· 49354 49730 parinfer = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 49355 49731 melpaBuild { 49356 49732 pname = "parinfer"; 49357 - version = "20161101.932"; 49733 + version = "20161119.2133"; 49358 49734 src = fetchFromGitHub { 49359 49735 owner = "DogLooksGood"; 49360 49736 repo = "parinfer-mode"; 49361 - rev = "fb9e9f94a8010d2167a03ea6b58a320b0925af10"; 49362 - sha256 = "0zwv0r8jzb27gnv0j4n9xxylzk42sg6w6ljvdkx9nm2qgrfq3nsv"; 49737 + rev = "01cf9c8a90ddb09e8e6e08c1346419989c8a0e52"; 49738 + sha256 = "0jqvhr4infzhcl60q8nagdz4z7rk1c29b0cv5x8bzx8wlnnbwh1b"; 49363 49739 }; 49364 49740 recipeFile = fetchurl { 49365 49741 url = "https://raw.githubusercontent.com/milkypostman/melpa/470ab2b5cceef23692523b4668b15a0775a0a5ba/recipes/parinfer"; ··· 49438 49814 pass = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store }: 49439 49815 melpaBuild { 49440 49816 pname = "pass"; 49441 - version = "20161014.255"; 49817 + version = "20161111.1320"; 49442 49818 src = fetchFromGitHub { 49443 49819 owner = "NicolasPetton"; 49444 49820 repo = "pass"; 49445 - rev = "beadbd50c60492248e950a7d61e22f2c3e5a2bd4"; 49446 - sha256 = "06wjq0nmxdjay0jrs5jc6j02xbqvhxbz2v529zych7llyvkbyf9r"; 49821 + rev = "b4c3bd9130044c4e106bac5ba73a50822865e258"; 49822 + sha256 = "0na895x91a37wmdpqp545qvjh34d0vfq4dyxji7casdrdhx3bg16"; 49447 49823 }; 49448 49824 recipeFile = fetchurl { 49449 49825 url = "https://raw.githubusercontent.com/milkypostman/melpa/428c2d53db69bed8938ec3486dfcf7fc048cd4e8/recipes/pass"; ··· 49814 50190 pcmpl-homebrew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 49815 50191 melpaBuild { 49816 50192 pname = "pcmpl-homebrew"; 49817 - version = "20160725.1939"; 50193 + version = "20161122.1843"; 49818 50194 src = fetchFromGitHub { 49819 50195 owner = "hiddenlotus"; 49820 50196 repo = "pcmpl-homebrew"; 49821 - rev = "c202e7ba1e17661b659292f5382831c9ce40939e"; 49822 - sha256 = "00mj94jmp5izh6fqnp2g35ksjcr0r7fzjf9xnhglk1yfllg668rj"; 50197 + rev = "eaa725fd86a6ea641f78893021d23a426d62e715"; 50198 + sha256 = "0yhy6k71sd00kxadladnkpmragpn1l7j3xl6p6385x1whh58vqph"; 49823 50199 }; 49824 50200 recipeFile = fetchurl { 49825 50201 url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/pcmpl-homebrew"; ··· 49877 50253 pcre2el = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 49878 50254 melpaBuild { 49879 50255 pname = "pcre2el"; 49880 - version = "20151213.234"; 50256 + version = "20161120.1303"; 49881 50257 src = fetchFromGitHub { 49882 50258 owner = "joddie"; 49883 50259 repo = "pcre2el"; 49884 - rev = "166a10472002010692dbc35f323ffb8110a294c5"; 49885 - sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i"; 50260 + rev = "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d"; 50261 + sha256 = "14br6ad138qx1z822wqssswqiihxiynz1k69p6mcdisr2q8yyi1z"; 49886 50262 }; 49887 50263 recipeFile = fetchurl { 49888 50264 url = "https://raw.githubusercontent.com/milkypostman/melpa/f04a25e467cc4c7d9a263330a7a1a53d67c6eb9b/recipes/pcre2el"; ··· 49940 50316 pdf-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, tablist }: 49941 50317 melpaBuild { 49942 50318 pname = "pdf-tools"; 49943 - version = "20161026.1557"; 50319 + version = "20161113.514"; 49944 50320 src = fetchFromGitHub { 49945 50321 owner = "politza"; 49946 50322 repo = "pdf-tools"; 49947 - rev = "9696abb82e427670b8283599365a234ddaa170b4"; 49948 - sha256 = "0jmpvwar5hks2qbqkfabqw16zj9iyl99c79h6vm2z7jypsmzc8mp"; 50323 + rev = "3c1cc818e7f32b918ac2ef3b48940f25d72e9e1e"; 50324 + sha256 = "06v3y0y9l32wqwpg80g9ii0miahvpxcx9jkhpykydvm0q0vb68ww"; 49949 50325 }; 49950 50326 recipeFile = fetchurl { 49951 50327 url = "https://raw.githubusercontent.com/milkypostman/melpa/8e3d53913f4e8a618e125fa9c1efb3787fbf002d/recipes/pdf-tools"; ··· 50107 50483 perlbrew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 50108 50484 melpaBuild { 50109 50485 pname = "perlbrew"; 50110 - version = "20130127.324"; 50486 + version = "20161108.2309"; 50111 50487 src = fetchFromGitHub { 50112 50488 owner = "kentaro"; 50113 50489 repo = "perlbrew.el"; 50114 - rev = "30e14a606a08948fde5eafda2cbe1cd4eb83b3f3"; 50115 - sha256 = "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26"; 50490 + rev = "3a3406c3307c92aa30f9400d430925c434a3b6f0"; 50491 + sha256 = "0kxz8ljc7w69ywp0bb15010sgrr13i1p05hcvhfr9c35l0n62r6p"; 50116 50492 }; 50117 50493 recipeFile = fetchurl { 50118 50494 url = "https://raw.githubusercontent.com/milkypostman/melpa/24bd9c2cd848f5003a244a7127e8fc5ef46bdca4/recipes/perlbrew"; ··· 50191 50567 persp-fr = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, persp-mode }: 50192 50568 melpaBuild { 50193 50569 pname = "persp-fr"; 50194 - version = "20161030.159"; 50570 + version = "20161108.1138"; 50195 50571 src = fetchFromGitHub { 50196 50572 owner = "rocher"; 50197 50573 repo = "persp-fr"; 50198 - rev = "00db4a17977b4e9c5c3212ce94fbc106f24d9d81"; 50199 - sha256 = "0m70wawbxm0kg641qj6sdsij5d2icmmad2p977c8qpcc8qh91gs7"; 50574 + rev = "0b2a021be802d5a39f1551c0ad1d8bceaa136afa"; 50575 + sha256 = "1m1k6i1h7smfmn68k29bq3w301bwf76l0r8qhq5drd51nk0vp0dc"; 50200 50576 }; 50201 50577 recipeFile = fetchurl { 50202 50578 url = "https://raw.githubusercontent.com/milkypostman/melpa/8e09213dddf003a1275eafb767431a507ecf7639/recipes/persp-fr"; ··· 50212 50588 persp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 50213 50589 melpaBuild { 50214 50590 pname = "persp-mode"; 50215 - version = "20161025.507"; 50591 + version = "20161119.505"; 50216 50592 src = fetchFromGitHub { 50217 50593 owner = "Bad-ptr"; 50218 50594 repo = "persp-mode.el"; 50219 - rev = "8200c8753513b14ebc1a8b40b917d7c0a6f5ac6a"; 50220 - sha256 = "13pcdy18pqanjhkacl5rbfmyw3y52d9ll0b6w0w4ffc2lhqpi7nd"; 50595 + rev = "2ab3c6b86527811794235309df6055b4a302aa76"; 50596 + sha256 = "11nzz7z9ck8g7xam75ljiw0qhk48zhbxzhfw5jzfz3ql04ws7bml"; 50221 50597 }; 50222 50598 recipeFile = fetchurl { 50223 50599 url = "https://raw.githubusercontent.com/milkypostman/melpa/caad63d14f770f07d09b6174b7b40c5ab06a1083/recipes/persp-mode"; ··· 51136 51512 plantuml-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 51137 51513 melpaBuild { 51138 51514 pname = "plantuml-mode"; 51139 - version = "20161018.1025"; 51515 + version = "20161111.205"; 51140 51516 src = fetchFromGitHub { 51141 51517 owner = "skuro"; 51142 51518 repo = "plantuml-mode"; 51143 - rev = "2b7d79688608a5f328b95610edcdd871278fbd29"; 51144 - sha256 = "1pmnz01k3n4jjkl1p31lcfh8j6g3zpr78p8f2wazdlgcl14g7pjz"; 51519 + rev = "87417ad75b215ababf153cba533575ac0273a5db"; 51520 + sha256 = "1jrck9wybpm2p2imjn0x6g3ybasiqkfzxc1halm3rq6xvc4zvrsm"; 51145 51521 }; 51146 51522 recipeFile = fetchurl { 51147 51523 url = "https://raw.githubusercontent.com/milkypostman/melpa/a658eb8085f2bf413c276af19c77597132cf569b/recipes/plantuml-mode"; ··· 51343 51719 version = "20160827.857"; 51344 51720 src = fetchgit { 51345 51721 url = "git://git.savannah.gnu.org/gettext.git"; 51346 - rev = "f837369264c119d0e96c9ba6e5960deba59eee73"; 51347 - sha256 = "12mxyg47hsgzzvqv19qlq9yhhryam62k7adll1i9n39xi6as13py"; 51722 + rev = "1d12aeb7334104f77070361492ff7cc8225503f5"; 51723 + sha256 = "15c1lij2c40xmqbq44xv6wvinjcq4j0l80rcc4yvdv8ik436phmg"; 51348 51724 }; 51349 51725 recipeFile = fetchurl { 51350 51726 url = "https://raw.githubusercontent.com/milkypostman/melpa/9317ccb52cdbaa2b273f8b2e8a598c9895b1cde1/recipes/po-mode"; ··· 51798 52174 pov-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 51799 52175 melpaBuild { 51800 52176 pname = "pov-mode"; 51801 - version = "20120825.716"; 52177 + version = "20161114.2343"; 51802 52178 src = fetchFromGitHub { 51803 52179 owner = "melmothx"; 51804 52180 repo = "pov-mode"; 51805 - rev = "e60e497f84a310814ccf97b056da77dd0f42394f"; 51806 - sha256 = "14silfng5rbdc8hnzswjmqk705pncjlk8iphjcxcm799h44pnlcr"; 52181 + rev = "9fc1db3aab7c27155674dd1a87ec62606035d074"; 52182 + sha256 = "1399fxivy15y2k4vp7vqqgsi8l1mzxc8aa2mf2x1hksgiyq60acp"; 51807 52183 }; 51808 52184 recipeFile = fetchurl { 51809 52185 url = "https://raw.githubusercontent.com/milkypostman/melpa/89d6b4a3d7a5f3cc93e9d13d4c174b5d7de7bad1/recipes/pov-mode"; ··· 51840 52216 powerline = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 51841 52217 melpaBuild { 51842 52218 pname = "powerline"; 51843 - version = "20160702.1931"; 52219 + version = "20161121.2320"; 51844 52220 src = fetchFromGitHub { 51845 52221 owner = "milkypostman"; 51846 52222 repo = "powerline"; 51847 - rev = "d3dcfc57a36111d8e0b037d90c6ffce85ce071b2"; 51848 - sha256 = "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar"; 52223 + rev = "67538e4dbc2f1d2f270142481eb0b0d24e8cde36"; 52224 + sha256 = "0jjv6wszsnrdi5l5qz4d50nj6p6zzyvqmn1j31zlhypbvi05isls"; 51849 52225 }; 51850 52226 recipeFile = fetchurl { 51851 52227 url = "https://raw.githubusercontent.com/milkypostman/melpa/f805053cd4dd9ed53ee0df17ad69429bc62325bb/recipes/powerline"; ··· 51920 52296 }) {}; 51921 52297 pp-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 51922 52298 pname = "pp-plus"; 51923 - version = "20160523.1439"; 52299 + version = "20161114.1346"; 51924 52300 src = fetchurl { 51925 52301 url = "https://www.emacswiki.org/emacs/download/pp+.el"; 51926 - sha256 = "0yvls8sw5rvka20xlqazl46crpkw91cy9qmj6p6y53sps1rj5wzp"; 52302 + sha256 = "1fc2ii689f92255817cv0aiz0h83z1iyrgxmywpayiv58r8j3k4f"; 51927 52303 }; 51928 52304 recipeFile = fetchurl { 51929 52305 url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/pp+"; ··· 52395 52771 projectile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: 52396 52772 melpaBuild { 52397 52773 pname = "projectile"; 52398 - version = "20161105.834"; 52774 + version = "20161122.728"; 52399 52775 src = fetchFromGitHub { 52400 52776 owner = "bbatsov"; 52401 52777 repo = "projectile"; 52402 - rev = "b573b0656f9fc4c1afa1275c3e3d9ca9badda7f6"; 52403 - sha256 = "1frirasi53apys8jhff6ywlbl8h77nd5z2z9ir3jjb9ysrsk7kmq"; 52778 + rev = "ab07ade902e0a432aa8396664bcc2c9ec7829958"; 52779 + sha256 = "08j07j4j9nz95g571y7fvv5943y6fv8zhk5n694j6vavvh5ip4v8"; 52404 52780 }; 52405 52781 recipeFile = fetchurl { 52406 52782 url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/projectile"; ··· 52455 52831 license = lib.licenses.free; 52456 52832 }; 52457 52833 }) {}; 52834 + projectile-git-autofetch = callPackage ({ alert, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: 52835 + melpaBuild { 52836 + pname = "projectile-git-autofetch"; 52837 + version = "20161109.1429"; 52838 + src = fetchFromGitHub { 52839 + owner = "andrmuel"; 52840 + repo = "projectile-git-autofetch"; 52841 + rev = "3d4eae6493607b9a0461c5161d195659c268184b"; 52842 + sha256 = "1db4jq4vn9mk8c9ma7yma7q00hwhwba25w2hy8jyagyb83lk2zgj"; 52843 + }; 52844 + recipeFile = fetchurl { 52845 + url = "https://raw.githubusercontent.com/milkypostman/melpa/7fdfdeb69fd78fc1bb2c62392f860a8c434f1762/recipes/projectile-git-autofetch"; 52846 + sha256 = "0m0raddsw5yvjrw2v6bdaswffmva8y9hxksdgf9axpvrd3rzlk9n"; 52847 + name = "projectile-git-autofetch"; 52848 + }; 52849 + packageRequires = [ alert projectile ]; 52850 + meta = { 52851 + homepage = "https://melpa.org/#/projectile-git-autofetch"; 52852 + license = lib.licenses.free; 52853 + }; 52854 + }) {}; 52458 52855 projectile-hanami = callPackage ({ emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild, projectile, rake }: 52459 52856 melpaBuild { 52460 52857 pname = "projectile-hanami"; ··· 52479 52876 projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }: 52480 52877 melpaBuild { 52481 52878 pname = "projectile-rails"; 52482 - version = "20161024.1043"; 52879 + version = "20161118.530"; 52483 52880 src = fetchFromGitHub { 52484 52881 owner = "asok"; 52485 52882 repo = "projectile-rails"; 52486 - rev = "168ab64262d5927520a838bb659ab38b4f001eee"; 52487 - sha256 = "1lkzl5svc2xff3ln2bcj9jxrvn8l00yyvd8nwjsad7ns44lfw5g2"; 52883 + rev = "0231a7bb4b70ef3ee0e6a30185e9791a028e718b"; 52884 + sha256 = "1vrhd7j4dk8pkm2vlh46hckfw63vpzrkylk3v5y2l4khg5ak66wb"; 52488 52885 }; 52489 52886 recipeFile = fetchurl { 52490 52887 url = "https://raw.githubusercontent.com/milkypostman/melpa/b16532bb8d08f7385bca4b83ab4e030d7b453524/recipes/projectile-rails"; ··· 52497 52894 license = lib.licenses.free; 52498 52895 }; 52499 52896 }) {}; 52897 + projectile-ripgrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, ripgrep }: 52898 + melpaBuild { 52899 + pname = "projectile-ripgrep"; 52900 + version = "20161119.59"; 52901 + src = fetchFromGitHub { 52902 + owner = "nlamirault"; 52903 + repo = "ripgrep.el"; 52904 + rev = "ddb7dcadf8980b9f458343aa853e4b6c3febaee0"; 52905 + sha256 = "0ln81fgvp8sk7f01icrjz8nyicd71kp7fg2rsh9hxjr948jx5ncd"; 52906 + }; 52907 + recipeFile = fetchurl { 52908 + url = "https://raw.githubusercontent.com/milkypostman/melpa/195f340855b403128645b59c8adce1b45e90cd18/recipes/projectile-ripgrep"; 52909 + sha256 = "1iczizyayql40wcljvpc1mvfvn9r28b1dkrkcmdxif732gd01jjg"; 52910 + name = "projectile-ripgrep"; 52911 + }; 52912 + packageRequires = [ projectile ripgrep ]; 52913 + meta = { 52914 + homepage = "https://melpa.org/#/projectile-ripgrep"; 52915 + license = lib.licenses.free; 52916 + }; 52917 + }) {}; 52500 52918 projectile-sift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, sift }: 52501 52919 melpaBuild { 52502 52920 pname = "projectile-sift"; ··· 52542 52960 projectile-variable = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: 52543 52961 melpaBuild { 52544 52962 pname = "projectile-variable"; 52545 - version = "20160910.1005"; 52963 + version = "20161109.625"; 52546 52964 src = fetchFromGitHub { 52547 52965 owner = "zonuexe"; 52548 52966 repo = "projectile-variable"; 52549 - rev = "810394eabf330325a86ec6f60c69e160eb837ac3"; 52550 - sha256 = "183azck3bi4qwpprcc07kvwm3piwqgql7ryy1czvmw3kbdmk1rpj"; 52967 + rev = "dedd0f1669d9498d59231912c4ee80a1080ac93b"; 52968 + sha256 = "1wmwy5iamc2g5grhshss0cmxjspz83kl8iclkv42c4vc1l1nsgfw"; 52551 52969 }; 52552 52970 recipeFile = fetchurl { 52553 52971 url = "https://raw.githubusercontent.com/milkypostman/melpa/ff603b43235f546cd47f72e675aee88d5f41e855/recipes/projectile-variable"; ··· 52735 53153 src = fetchFromGitHub { 52736 53154 owner = "google"; 52737 53155 repo = "protobuf"; 52738 - rev = "0d7199edc802299bdba39400c04f119c7db82667"; 52739 - sha256 = "11jvsdkbxlpdvli557d3rydn8hiyvrpxa0cc4k02yi2pf2hmqkdb"; 53156 + rev = "c9504715634948c9f8f306330449f296d926b74e"; 53157 + sha256 = "0pvxh58vvvgrlf6gjrhg016k7hys8wmraxd38k0kdjw4srisj319"; 52740 53158 }; 52741 53159 recipeFile = fetchurl { 52742 53160 url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode"; ··· 52794 53212 psession = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 52795 53213 melpaBuild { 52796 53214 pname = "psession"; 52797 - version = "20160514.2359"; 53215 + version = "20161119.2248"; 52798 53216 src = fetchFromGitHub { 52799 53217 owner = "thierryvolpiatto"; 52800 53218 repo = "psession"; 52801 - rev = "324c68a1f809f6c2a37c9e4753dd00796236ec56"; 52802 - sha256 = "1fpcb4qpd11mbv733iklnbjg7g4ka05mf5wpa2k6kr3fbvndkx37"; 53219 + rev = "33f9020e87732e14473c5fc4d986e572fd95c5f3"; 53220 + sha256 = "0ag57g4w44w90gh09w774jmwplpqn7h1lni1kwldwi7b7n3mhli7"; 52803 53221 }; 52804 53222 recipeFile = fetchurl { 52805 53223 url = "https://raw.githubusercontent.com/milkypostman/melpa/669342d2b3e6cb622f196571d776a98ec8f3b1d3/recipes/psession"; ··· 52966 53384 src = fetchFromGitHub { 52967 53385 owner = "voxpupuli"; 52968 53386 repo = "puppet-mode"; 52969 - rev = "efb67ed6e1c528d4fd76d7eb7e9cff2e0b819383"; 52970 - sha256 = "0r0j8fzpmd33jskyz577ry6w0ld0dbpwpwfkp3z97akjl97kgzp6"; 53387 + rev = "0a7177c8b0437f1e716da428053fa8d5113a2f51"; 53388 + sha256 = "1ma0yyf176nz3df5mxzim715g40g4v2snb51ljxax2rs1az04wxb"; 52971 53389 }; 52972 53390 recipeFile = fetchurl { 52973 53391 url = "https://raw.githubusercontent.com/milkypostman/melpa/1de94f0ab39ab18dfd0b050e337f502d894fb3ad/recipes/puppet-mode"; ··· 53399 53817 license = lib.licenses.free; 53400 53818 }; 53401 53819 }) {}; 53820 + pygen = callPackage ({ dash, elpy, fetchFromGitHub, fetchurl, lib, melpaBuild, python-mode }: 53821 + melpaBuild { 53822 + pname = "pygen"; 53823 + version = "20161120.2106"; 53824 + src = fetchFromGitHub { 53825 + owner = "JackCrawley"; 53826 + repo = "pygen"; 53827 + rev = "3a5d1d1a0640865b15be05cd1eeb33bb4793b622"; 53828 + sha256 = "0fzpvdwb7hhmfmjxzvap8413bc81lrx8r3ij3yasqaxyqw3a6vy1"; 53829 + }; 53830 + recipeFile = fetchurl { 53831 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e761724e52de6fa4d92950751953645dd439d340/recipes/pygen"; 53832 + sha256 = "1ivg7a1ghg0bvz3idz7dzy5yb0ln3b2j7dfizg2g0fi4iwvc4czz"; 53833 + name = "pygen"; 53834 + }; 53835 + packageRequires = [ dash elpy python-mode ]; 53836 + meta = { 53837 + homepage = "https://melpa.org/#/pygen"; 53838 + license = lib.licenses.free; 53839 + }; 53840 + }) {}; 53402 53841 pyimport = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 53403 53842 melpaBuild { 53404 53843 pname = "pyimport"; ··· 53448 53887 src = fetchFromGitHub { 53449 53888 owner = "PyCQA"; 53450 53889 repo = "pylint"; 53451 - rev = "21ecaa744484218be5c89c7108771465425542bc"; 53452 - sha256 = "1l41hyc17vlpfdnjp2bvkirfk12paabs1qwvc03x29ibylw86a23"; 53890 + rev = "23e59c80cfcba5878b7f634464a203017ab91187"; 53891 + sha256 = "1gylvfl2bd6f5n60g0l5z2ymaasgvcj1a5ar5fh46snsln5j83zl"; 53453 53892 }; 53454 53893 recipeFile = fetchurl { 53455 53894 url = "https://raw.githubusercontent.com/milkypostman/melpa/a073c91d6f4d31b82f6bfee785044c4e3ae96d3f/recipes/pylint"; ··· 53591 54030 python-mode = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: 53592 54031 melpaBuild { 53593 54032 pname = "python-mode"; 53594 - version = "20161105.1431"; 54033 + version = "20161120.952"; 53595 54034 src = fetchFromGitLab { 53596 54035 owner = "python-mode-devs"; 53597 54036 repo = "python-mode"; 53598 - rev = "fdd052ab2d70e0acf2dcb25a5a94cf52f4c4123d"; 53599 - sha256 = "1pdva6a7jdi8aw1q2k32n0kagkldjh8fkapjdmn65rs362nqj7iq"; 54037 + rev = "ef639cf5bfa8bbe6a4321eb58534768dcc7608ca"; 54038 + sha256 = "0ay3jbpp70r6a02rwk6bll0blzv7f61k081jlby5y1g1xd753p2g"; 53600 54039 }; 53601 54040 recipeFile = fetchurl { 53602 54041 url = "https://raw.githubusercontent.com/milkypostman/melpa/82861e1ab114451af5e1106d53195afd3605448a/recipes/python-mode"; ··· 53612 54051 python-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 53613 54052 melpaBuild { 53614 54053 pname = "python-test"; 53615 - version = "20161020.1139"; 54054 + version = "20161107.1048"; 53616 54055 src = fetchFromGitHub { 53617 54056 owner = "emacs-pe"; 53618 54057 repo = "python-test.el"; 53619 - rev = "6f1881dc2a79873713fdd854e1af8157035a4278"; 53620 - sha256 = "1zf3k6g6jddah9dfxv0vv388xfrw1pp785zk80gyczxx1912s7f5"; 54058 + rev = "f1d24e53c2a9a77812aa10f8cc6d5a5b49b57615"; 54059 + sha256 = "0al1s7fh2l0vhcsz261aaxsn3xkrp451zynym11ifhppf1wwlp04"; 53621 54060 }; 53622 54061 recipeFile = fetchurl { 53623 54062 url = "https://raw.githubusercontent.com/milkypostman/melpa/0ea68b3aa9c057e81a3e90a359a38ac16cb26c2f/recipes/python-test"; ··· 53948 54387 racer = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode, s }: 53949 54388 melpaBuild { 53950 54389 pname = "racer"; 53951 - version = "20161105.1637"; 54390 + version = "20161112.1728"; 53952 54391 src = fetchFromGitHub { 53953 54392 owner = "racer-rust"; 53954 54393 repo = "emacs-racer"; 53955 - rev = "4d5c6332d24ba302913606fde3feda6abaef2ea9"; 53956 - sha256 = "1qnkb9z23diyvkkhl2q00yvb8sybpvphlfchdyzsrhylixnkq83n"; 54394 + rev = "ca5b2f2922d9ab642ee353771091f4f8dd5add83"; 54395 + sha256 = "0j9yrb3xhx4wkk2hyk9ayzh4l1mrcvmwrg52a0dm9zpq4pr8p61s"; 53957 54396 }; 53958 54397 recipeFile = fetchurl { 53959 54398 url = "https://raw.githubusercontent.com/milkypostman/melpa/97b97037c19655a3ddffee9a86359961f26c155c/recipes/racer"; ··· 54053 54492 railscasts-reloaded-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 54054 54493 melpaBuild { 54055 54494 pname = "railscasts-reloaded-theme"; 54056 - version = "20161104.550"; 54495 + version = "20161115.2210"; 54057 54496 src = fetchFromGitHub { 54058 54497 owner = "thegeorgeous"; 54059 54498 repo = "railscasts-reloaded-theme"; 54060 - rev = "b33640716d0d9930b09e671d2c62c5839fbce210"; 54061 - sha256 = "17n1fd9hjqalxffhjfzr08psarcc7ahsi0ns6clx9mwaq3fycg5g"; 54499 + rev = "cce0e4ae6527e84e2ae3deb8b3c7770dda225853"; 54500 + sha256 = "1li86qpbjg8sm9q4sl8cffc0fni6mwx8180x8zlmsxdnhqic5nvd"; 54062 54501 }; 54063 54502 recipeFile = fetchurl { 54064 54503 url = "https://raw.githubusercontent.com/milkypostman/melpa/9817851bd06cbae30fb8f429401f1bbc0dc7be09/recipes/railscasts-reloaded-theme"; ··· 54158 54597 rake = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: 54159 54598 melpaBuild { 54160 54599 pname = "rake"; 54161 - version = "20160830.245"; 54600 + version = "20161114.605"; 54162 54601 src = fetchFromGitHub { 54163 54602 owner = "asok"; 54164 54603 repo = "rake"; 54165 - rev = "14ff370e867302d7f55d7cc02dd42ac82179af6a"; 54166 - sha256 = "0mk5zsm081sdz06mf1jvvbvhsqbl11jh17csyg5wqjyx6vs0bzla"; 54604 + rev = "e680f1a8f2591af7c80cad188340601b101b5ddc"; 54605 + sha256 = "1dk2clsnmjy3bfv6laxf8sslvdajjbwpk83ss8v9xm55dcxjvd7n"; 54167 54606 }; 54168 54607 recipeFile = fetchurl { 54169 54608 url = "https://raw.githubusercontent.com/milkypostman/melpa/bf0f84698dda02a5b84a244ee29a23a6faa9de68/recipes/rake"; ··· 54179 54618 rally-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: 54180 54619 melpaBuild { 54181 54620 pname = "rally-mode"; 54182 - version = "20160326.902"; 54621 + version = "20161113.1954"; 54183 54622 src = fetchFromGitHub { 54184 54623 owner = "seanleblanc"; 54185 54624 repo = "rally-mode"; 54186 - rev = "722b9a8e6d8a6aee5c4c4b16be0194f7bb4bfa5b"; 54187 - sha256 = "13pkp80cv1v3pjff1588cgyx18a31i668lwywll5dk4fxl4zdjvb"; 54625 + rev = "0f5e09a6abe2de7613f174b4f54863df93343134"; 54626 + sha256 = "1vrsv8ph1v853ii0i3q889xlwxnjdqz4bs3ipi502rjx6g7y5gdz"; 54188 54627 }; 54189 54628 recipeFile = fetchurl { 54190 54629 url = "https://raw.githubusercontent.com/milkypostman/melpa/0914825c6d5ad26d2a8035fc33ad98df42df3c53/recipes/rally-mode"; ··· 54326 54765 rbt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 54327 54766 melpaBuild { 54328 54767 pname = "rbt"; 54329 - version = "20160129.1051"; 54768 + version = "20161109.1506"; 54330 54769 src = fetchFromGitHub { 54331 54770 owner = "joeheyming"; 54332 54771 repo = "rbt.el"; 54333 - rev = "865c619f200afe877c56a44046f706361b676d0e"; 54334 - sha256 = "0q5giixk6pv82cf34a0mxmnzh2gdiyq6dzv4ypkkdpz6wsm2ffhx"; 54772 + rev = "402d7465f68706d051e8117b6f00ecdc18134f15"; 54773 + sha256 = "12kqw7cxv54agy7k8y550cixnv4zjpy8rhamwp36bf6nqch4ly2j"; 54335 54774 }; 54336 54775 recipeFile = fetchurl { 54337 54776 url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7241985be1e8a26a454b8136a537040b7ae801/recipes/rbt"; ··· 54960 55399 src = fetchFromGitHub { 54961 55400 owner = "RedPRL"; 54962 55401 repo = "sml-redprl"; 54963 - rev = "bd962668615abcc48b4797168e948dde62b3f197"; 54964 - sha256 = "1xz82h933dxl2bj90l24h50qji4h1ivmnf657yp89dbyc42fz7zf"; 55402 + rev = "d68a46821809251d04eea062916238131130b477"; 55403 + sha256 = "0a0p57x1gizbzp793l0k7mra5qv36ml8zzpva47l34lhywd914xn"; 54965 55404 }; 54966 55405 recipeFile = fetchurl { 54967 55406 url = "https://raw.githubusercontent.com/milkypostman/melpa/06e7371d703ffdc5b6ea555f2ed289e57e71e377/recipes/redprl"; ··· 55039 55478 refine = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, list-utils, loop, melpaBuild, s }: 55040 55479 melpaBuild { 55041 55480 pname = "refine"; 55042 - version = "20161104.804"; 55481 + version = "20161118.1715"; 55043 55482 src = fetchFromGitHub { 55044 55483 owner = "Wilfred"; 55045 55484 repo = "refine"; 55046 - rev = "a83ddbf79abb65f5cfc98d9b19815727e2395b91"; 55047 - sha256 = "1kciixx40pdd9vlzd54hxy43adk9bhcga23m2lim5q2fdj9qbyir"; 55485 + rev = "9ade146339e9883a65b109497574910d9e618aed"; 55486 + sha256 = "1ff79jyfk2aahxazsa9drsq4j4sl2n88b52ikk3dmsrl08bvvzvq"; 55048 55487 }; 55049 55488 recipeFile = fetchurl { 55050 55489 url = "https://raw.githubusercontent.com/milkypostman/melpa/b111879ea0685cda88c758b270304d9e913c1391/recipes/refine"; ··· 55120 55559 license = lib.licenses.free; 55121 55560 }; 55122 55561 }) {}; 55562 + region-convert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 55563 + melpaBuild { 55564 + pname = "region-convert"; 55565 + version = "20161118.1859"; 55566 + src = fetchFromGitHub { 55567 + owner = "zonuexe"; 55568 + repo = "right-click-context"; 55569 + rev = "10578576f6cb2945aed00fdcd585fc65cd2c5c31"; 55570 + sha256 = "07bhw6ll2ad5725rq6jlvp2v8aqhlrbsywjng5ypmcvds5dhgbsk"; 55571 + }; 55572 + recipeFile = fetchurl { 55573 + url = "https://raw.githubusercontent.com/milkypostman/melpa/ddcf4612cccb9a53425c5f0324206d70549d9d9e/recipes/region-convert"; 55574 + sha256 = "0daghvxc6gxgric1aa1gw036gbpbzilqz72gr1inqy92hz7xrxfm"; 55575 + name = "region-convert"; 55576 + }; 55577 + packageRequires = []; 55578 + meta = { 55579 + homepage = "https://melpa.org/#/region-convert"; 55580 + license = lib.licenses.free; 55581 + }; 55582 + }) {}; 55123 55583 region-state = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 55124 55584 melpaBuild { 55125 55585 pname = "region-state"; ··· 55206 55666 relative-line-numbers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 55207 55667 melpaBuild { 55208 55668 pname = "relative-line-numbers"; 55209 - version = "20151006.1446"; 55669 + version = "20161112.2151"; 55210 55670 src = fetchFromGitHub { 55211 55671 owner = "Fanael"; 55212 55672 repo = "relative-line-numbers"; 55213 - rev = "64157db08b0c2f5fada3209fc8d3e4b4c7429978"; 55214 - sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a"; 55673 + rev = "38b5f9065aec008d9ad94fe5597338463aa1aa63"; 55674 + sha256 = "00ixh7siyc8m7j6hfaxnnl3ynfhzkccpjfc89v8bp3z83m4v269w"; 55215 55675 }; 55216 55676 recipeFile = fetchurl { 55217 55677 url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2901c841d221bd782dae9059a070ae8130e1ae/recipes/relative-line-numbers"; ··· 55290 55750 repl-toggle = callPackage ({ fetchFromGitHub, fetchurl, fullframe, lib, melpaBuild }: 55291 55751 melpaBuild { 55292 55752 pname = "repl-toggle"; 55293 - version = "20160119.421"; 55753 + version = "20161120.200"; 55294 55754 src = fetchFromGitHub { 55295 55755 owner = "tomterl"; 55296 55756 repo = "repl-toggle"; 55297 - rev = "0249c2a72e6bf782c2c15b0cb1d925410543184f"; 55298 - sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b"; 55757 + rev = "bd2d28738368a047d5f407034f78839a7e514489"; 55758 + sha256 = "1h58a2darz4k1aj480xahhp29gh2cg41pymidymjx4wi2ygic4pr"; 55299 55759 }; 55300 55760 recipeFile = fetchurl { 55301 55761 url = "https://raw.githubusercontent.com/milkypostman/melpa/da4be8c67584ea0ae35c7c9ee33334db5061a538/recipes/repl-toggle"; ··· 55434 55894 request = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 55435 55895 melpaBuild { 55436 55896 pname = "request"; 55437 - version = "20160822.1659"; 55897 + version = "20161121.600"; 55438 55898 src = fetchFromGitHub { 55439 55899 owner = "tkf"; 55440 55900 repo = "emacs-request"; 55441 - rev = "12450136785fe6ff8df940f9c0601406a9fd8bc9"; 55442 - sha256 = "0kpb2fhj617kh7xzcls7i911pj61bmjfb7hr0vc1a2pgwpgrpd4y"; 55901 + rev = "4f5dd0aa8b788fe825461dbcccfd5a3fb2750f9b"; 55902 + sha256 = "1d3xz5hgb1cpaf1ijk05l1ffr99i621wa0192qiipc6fxxy0gpl6"; 55443 55903 }; 55444 55904 recipeFile = fetchurl { 55445 55905 url = "https://raw.githubusercontent.com/milkypostman/melpa/8d113615dde757a60ce91e156f0714a1394c4bfc/recipes/request"; ··· 55459 55919 src = fetchFromGitHub { 55460 55920 owner = "tkf"; 55461 55921 repo = "emacs-request"; 55462 - rev = "12450136785fe6ff8df940f9c0601406a9fd8bc9"; 55463 - sha256 = "0kpb2fhj617kh7xzcls7i911pj61bmjfb7hr0vc1a2pgwpgrpd4y"; 55922 + rev = "4f5dd0aa8b788fe825461dbcccfd5a3fb2750f9b"; 55923 + sha256 = "1d3xz5hgb1cpaf1ijk05l1ffr99i621wa0192qiipc6fxxy0gpl6"; 55464 55924 }; 55465 55925 recipeFile = fetchurl { 55466 55926 url = "https://raw.githubusercontent.com/milkypostman/melpa/8d113615dde757a60ce91e156f0714a1394c4bfc/recipes/request-deferred"; ··· 55539 55999 restart-emacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 55540 56000 melpaBuild { 55541 56001 pname = "restart-emacs"; 55542 - version = "20160530.622"; 56002 + version = "20161108.2239"; 55543 56003 src = fetchFromGitHub { 55544 56004 owner = "iqbalansari"; 55545 56005 repo = "restart-emacs"; 55546 - rev = "0dc6d689cd7fa080fe7c19431863bf7186f910e9"; 55547 - sha256 = "082izk2wmsdspyizfbvqw34rigvbfwq2963zf4iqlniqv05p88pd"; 56006 + rev = "dc28874f47fe47e6891803fd3a483f9577b65ee9"; 56007 + sha256 = "029y18bzk9ld2ig9666idsrig1wmnswavcj8rilxw5f8wkrh38wg"; 55548 56008 }; 55549 56009 recipeFile = fetchurl { 55550 56010 url = "https://raw.githubusercontent.com/milkypostman/melpa/b9faeb6d910d686cbcafe7d12e0bcf62a85689bd/recipes/restart-emacs"; ··· 55890 56350 ripgrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 55891 56351 melpaBuild { 55892 56352 pname = "ripgrep"; 55893 - version = "20161008.51"; 56353 + version = "20161116.211"; 55894 56354 src = fetchFromGitHub { 55895 56355 owner = "nlamirault"; 55896 56356 repo = "ripgrep.el"; 55897 - rev = "47f4451c497588de4a198f271f4121572e7db1af"; 55898 - sha256 = "0nrn60nr30a0dqvd1aiwm9mwlkcn21qz62ziq25n5ixjy1hv8p5j"; 56357 + rev = "ddb7dcadf8980b9f458343aa853e4b6c3febaee0"; 56358 + sha256 = "0ln81fgvp8sk7f01icrjz8nyicd71kp7fg2rsh9hxjr948jx5ncd"; 55899 56359 }; 55900 56360 recipeFile = fetchurl { 55901 56361 url = "https://raw.githubusercontent.com/milkypostman/melpa/e8d789818876e959a1a59690f1dd7d4efa6d608b/recipes/ripgrep"; ··· 55932 56392 rjsx-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: 55933 56393 melpaBuild { 55934 56394 pname = "rjsx-mode"; 55935 - version = "20161105.833"; 56395 + version = "20161115.456"; 55936 56396 src = fetchFromGitHub { 55937 56397 owner = "felipeochoa"; 55938 56398 repo = "rjsx-mode"; 55939 - rev = "66086b6557fcafacf9bfdd80140e7dde4daac266"; 55940 - sha256 = "1y9inxk3kr8cygi8rnj4dns7azq1ka1yvvj7wsm6hnmm1i3wk3lx"; 56399 + rev = "20c7bd0e704dfc1c391edf78765c8b0ec4f5b3c0"; 56400 + sha256 = "142zihjqgdq4bfy1hp0pz6k109ngii4kyc8xrdvd9yvzc0y5vp8a"; 55941 56401 }; 55942 56402 recipeFile = fetchurl { 55943 56403 url = "https://raw.githubusercontent.com/milkypostman/melpa/b83be7efdef2457e1320fe3dec46484fbd20263c/recipes/rjsx-mode"; ··· 56163 56623 rtags = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 56164 56624 melpaBuild { 56165 56625 pname = "rtags"; 56166 - version = "20161028.1136"; 56626 + version = "20161115.1841"; 56167 56627 src = fetchFromGitHub { 56168 56628 owner = "Andersbakken"; 56169 56629 repo = "rtags"; 56170 - rev = "129cc5dece4a22fb0d786d1309bcba523252e744"; 56171 - sha256 = "0xwiqcv1xgv9ma2k8zjv2v10h4sm2m5xng7k3g9n5fafrd7j0lwp"; 56630 + rev = "1360dac22af6b227a209aa9840336bab7f1b21e2"; 56631 + sha256 = "06cnvxfvwcli2rr6wgsncp30jxmpyq0zbp2yrbxhyl7q9g875s85"; 56172 56632 }; 56173 56633 recipeFile = fetchurl { 56174 56634 url = "https://raw.githubusercontent.com/milkypostman/melpa/ac3b84fe84a7f57d09f1a303d8947ef19aaf02fb/recipes/rtags"; ··· 56226 56686 ruby-additional = callPackage ({ emacs, fetchsvn, fetchurl, lib, melpaBuild, ruby-mode ? null }: 56227 56687 melpaBuild { 56228 56688 pname = "ruby-additional"; 56229 - version = "20160911.333"; 56689 + version = "20161115.2259"; 56230 56690 src = fetchsvn { 56231 56691 url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/"; 56232 - rev = "56665"; 56233 - sha256 = "12w256fbx4xmwn96s0f66mvlczkmqdbi6w622l1b2sr3zbfh6wg8"; 56692 + rev = "56884"; 56693 + sha256 = "0n4gnpms3vyvnag3sa034yisfcfy5gnwl2l46krfwy6qjm1nyzhf"; 56234 56694 }; 56235 56695 recipeFile = fetchurl { 56236 56696 url = "https://raw.githubusercontent.com/milkypostman/melpa/17cc8e84dd68f280c23f77510f58f21e7e7cbaae/recipes/ruby-additional"; ··· 56309 56769 version = "20150424.752"; 56310 56770 src = fetchsvn { 56311 56771 url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/"; 56312 - rev = "56665"; 56313 - sha256 = "12w256fbx4xmwn96s0f66mvlczkmqdbi6w622l1b2sr3zbfh6wg8"; 56772 + rev = "56884"; 56773 + sha256 = "0n4gnpms3vyvnag3sa034yisfcfy5gnwl2l46krfwy6qjm1nyzhf"; 56314 56774 }; 56315 56775 recipeFile = fetchurl { 56316 56776 url = "https://raw.githubusercontent.com/milkypostman/melpa/2d67431327845171f0e50d28e9276cbabecf6cb0/recipes/ruby-electric"; ··· 56729 57189 src = fetchFromGitHub { 56730 57190 owner = "adamrt"; 56731 57191 repo = "sane-term"; 56732 - rev = "034033141b2eb467e2d0b79c8ce1da1f8ff2f013"; 56733 - sha256 = "0nhs916h52hxbp479ma01p6i0zfap26n4fvyx83822pisbcd3krb"; 57192 + rev = "ef6fd08078f49f2bb3be60855d2d002bb6a5e0d2"; 57193 + sha256 = "0aazzq1yqn5mal75hxa6ifx2hnyv0lh800klqvzn26xd7i8xcfrd"; 56734 57194 }; 56735 57195 recipeFile = fetchurl { 56736 57196 url = "https://raw.githubusercontent.com/milkypostman/melpa/5df85d24ee7ed41aab983626df72641bb04dadd5/recipes/sane-term"; ··· 56872 57332 sbt-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 56873 57333 melpaBuild { 56874 57334 pname = "sbt-mode"; 56875 - version = "20161026.350"; 57335 + version = "20161117.1519"; 56876 57336 src = fetchFromGitHub { 56877 57337 owner = "ensime"; 56878 57338 repo = "emacs-sbt-mode"; 56879 - rev = "dbca1e2ae1b91ccb2bd10c4231fd01b47c0c6801"; 56880 - sha256 = "1216lmx6rwm61kcv7mfp6k1vgln4bbibx77swxr66d0a2qil8rv1"; 57339 + rev = "dd0c42a1eb739529cab2becb791badfd2c4148da"; 57340 + sha256 = "0ca9pd3si7gw7wsibryhhr9in6ymask2icv79qrdcpz4qhlhby52"; 56881 57341 }; 56882 57342 recipeFile = fetchurl { 56883 57343 url = "https://raw.githubusercontent.com/milkypostman/melpa/364abdc3829fc12e19f00b534565227dbc30baad/recipes/sbt-mode"; ··· 56897 57357 src = fetchFromGitHub { 56898 57358 owner = "openscad"; 56899 57359 repo = "openscad"; 56900 - rev = "54dd1b77ac33ade3efe7aa8c78f9915d850f12c3"; 56901 - sha256 = "12m86z76a157sfg3y4grizxii0747w3wxv1szlfnghqdkgc1qx69"; 57360 + rev = "dd2e9af171bd343af080b37add48a0edbf043a07"; 57361 + sha256 = "06q66m6i97i7a5qpxslgwighaqbn23gfhjjr4baxpi7cs04xyfbf"; 56902 57362 }; 56903 57363 recipeFile = fetchurl { 56904 57364 url = "https://raw.githubusercontent.com/milkypostman/melpa/2d27782b9ac8474fbd4f51535351207c9c84984c/recipes/scad-mode"; ··· 56935 57395 scala-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 56936 57396 melpaBuild { 56937 57397 pname = "scala-mode"; 56938 - version = "20160902.525"; 57398 + version = "20161122.2325"; 56939 57399 src = fetchFromGitHub { 56940 57400 owner = "ensime"; 56941 57401 repo = "emacs-scala-mode"; 56942 - rev = "387e93c70a3703e55f717d3285912ad12cfee947"; 56943 - sha256 = "0xwwarla3m9cr1mpnlhsknfvxw1xyf85cxjkzg42q12k7i0yad5w"; 57402 + rev = "4b492b9fa5f97521426f50c8dcfb6c0a251840ea"; 57403 + sha256 = "01d907ph36yzfxgchqvk102ld1mvlb84sjxhmmq5xrzj4zbb0khm"; 56944 57404 }; 56945 57405 recipeFile = fetchurl { 56946 57406 url = "https://raw.githubusercontent.com/milkypostman/melpa/564aa1637485192a97803af46b3a1f8e0d042c9a/recipes/scala-mode"; ··· 57519 57979 src = fetchFromGitHub { 57520 57980 owner = "kiyoka"; 57521 57981 repo = "sekka"; 57522 - rev = "2768b2c16dd15dcd35fcfd123c4d56f2ffd1b362"; 57523 - sha256 = "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7"; 57982 + rev = "8f256be87564653aeef702b3c09f235f0bcb6ae8"; 57983 + sha256 = "031aiypx1n8hq613zq4j6gh61ajzja2j60df9mwy50a0qma34awr"; 57524 57984 }; 57525 57985 recipeFile = fetchurl { 57526 57986 url = "https://raw.githubusercontent.com/milkypostman/melpa/350bbb5761b5ba69aeb4acf6d7cdf2256dba95a6/recipes/sekka"; ··· 57702 58162 seoul256-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 57703 58163 melpaBuild { 57704 58164 pname = "seoul256-theme"; 57705 - version = "20161025.2120"; 58165 + version = "20161121.1247"; 57706 58166 src = fetchFromGitHub { 57707 58167 owner = "anandpiyer"; 57708 58168 repo = "seoul256-emacs"; 57709 - rev = "2ae4dcbbc62a3befe63d6294b0132cf28076bf80"; 57710 - sha256 = "1cchzy8vclwi8fcic54i6hqklwd57l6j6604lii8a4gcr4mhixdx"; 58169 + rev = "4ec545214b137bd0062d53108b8a523250bda875"; 58170 + sha256 = "0hwvsxq7cba2bqanjmlln8cx63nhsq3rlg9p12lwbqrfppmlfj18"; 57711 58171 }; 57712 58172 recipeFile = fetchurl { 57713 58173 url = "https://raw.githubusercontent.com/milkypostman/melpa/664fc68d7b0eb92940fc188f5b9bee7ac7e0c674/recipes/seoul256-theme"; ··· 58198 58658 shen-elisp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 58199 58659 melpaBuild { 58200 58660 pname = "shen-elisp"; 58201 - version = "20161030.1115"; 58661 + version = "20161113.1611"; 58202 58662 src = fetchFromGitHub { 58203 58663 owner = "deech"; 58204 58664 repo = "shen-elisp"; 58205 - rev = "e7c3da5d817c90588ebc276bd8defa9d497baf69"; 58206 - sha256 = "00isccj80g0qdjd15bl2dnlxqvmz2p3nih6v9ljx3vs2jb43pibx"; 58665 + rev = "1828dbd81ced737a7b0bc6e3c8caf9380d5f8fdd"; 58666 + sha256 = "1paf9lyk552kl3lmfsfw9r45ab9s8iypvg20jwdw6y6p1fjcykmk"; 58207 58667 }; 58208 58668 recipeFile = fetchurl { 58209 58669 url = "https://raw.githubusercontent.com/milkypostman/melpa/ed9f0577c6828236582df1781e751b8b81746492/recipes/shen-elisp"; ··· 58862 59322 skewer-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, simple-httpd }: 58863 59323 melpaBuild { 58864 59324 pname = "skewer-mode"; 58865 - version = "20150914.1304"; 59325 + version = "20161122.905"; 58866 59326 src = fetchFromGitHub { 58867 59327 owner = "skeeto"; 58868 59328 repo = "skewer-mode"; 58869 - rev = "92e13cf9540128b2bbab28ac1a0a7a4c00771270"; 58870 - sha256 = "0dwc3qaqnzjsccvr3gapip4yr17fzgv4w33ydq8hjqn8rs9rqq6l"; 59329 + rev = "051068d58a724695bb067e268d317c8bfd222ba9"; 59330 + sha256 = "0pczkbmgf5slr05lrsg8q6a67hbmvl20yb9w86j205y8hq5zz4pb"; 58871 59331 }; 58872 59332 recipeFile = fetchurl { 58873 59333 url = "https://raw.githubusercontent.com/milkypostman/melpa/10fba4f7935c78c4fc5eee7dbb161173dea884ba/recipes/skewer-mode"; ··· 58946 59406 slack = callPackage ({ alert, circe, emojify, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2, request, websocket }: 58947 59407 melpaBuild { 58948 59408 pname = "slack"; 58949 - version = "20161104.633"; 59409 + version = "20161113.1832"; 58950 59410 src = fetchFromGitHub { 58951 59411 owner = "yuya373"; 58952 59412 repo = "emacs-slack"; 58953 - rev = "c87637c799b19e878d65f1a6906c93b74ad1e3cc"; 58954 - sha256 = "0qqp19dwz4vbz83pkhhc5xlwqhq482v2dpmqgq1i6lh42m1xkk5k"; 59413 + rev = "70e4c3450a489185220756ea8ccef8ab453ff07f"; 59414 + sha256 = "09591nsimwavdzbdz8kj374yy8gglcc5w7gpqvxq4fnrkfda6dgd"; 58955 59415 }; 58956 59416 recipeFile = fetchurl { 58957 59417 url = "https://raw.githubusercontent.com/milkypostman/melpa/f0258cc41de809b67811a5dde3d475c429df0695/recipes/slack"; ··· 59030 59490 slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }: 59031 59491 melpaBuild { 59032 59492 pname = "slime"; 59033 - version = "20161102.711"; 59493 + version = "20161109.640"; 59034 59494 src = fetchFromGitHub { 59035 59495 owner = "slime"; 59036 59496 repo = "slime"; 59037 - rev = "14f2502cae166ea5dfbab82a04f9fbae429a211b"; 59038 - sha256 = "17f40bam7v1p5ypw2vd6gbzgbmz9jswy7sqgs8xac46ijn4n62w3"; 59497 + rev = "786c032a95cc78d3e294abe1b12e09880381efe2"; 59498 + sha256 = "1sv3x7q5b8ablzv0wf7g8sg4vk4gjggylfh0zigx9bpxk0dvj5jj"; 59039 59499 }; 59040 59500 recipeFile = fetchurl { 59041 59501 url = "https://raw.githubusercontent.com/milkypostman/melpa/14c60acbfde13d5e9256cea83d4d0d33e037d4b9/recipes/slime"; ··· 59407 59867 }) {}; 59408 59868 smart-compile = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 59409 59869 pname = "smart-compile"; 59410 - version = "20150519.947"; 59870 + version = "20161118.403"; 59411 59871 src = fetchurl { 59412 59872 url = "https://www.emacswiki.org/emacs/download/smart-compile.el"; 59413 - sha256 = "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd"; 59873 + sha256 = "163s97h1a9pjz3pqyn2mhh4mf05b7yycp29k5wnk3c9zc71pafvp"; 59414 59874 }; 59415 59875 recipeFile = fetchurl { 59416 59876 url = "https://raw.githubusercontent.com/milkypostman/melpa/d2e6c3dd7b8e19193d070fd41c2be4bcd61f1022/recipes/smart-compile"; ··· 59698 60158 smartparens = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 59699 60159 melpaBuild { 59700 60160 pname = "smartparens"; 59701 - version = "20161105.1503"; 60161 + version = "20161121.358"; 59702 60162 src = fetchFromGitHub { 59703 60163 owner = "Fuco1"; 59704 60164 repo = "smartparens"; 59705 - rev = "5c680283c9af6d2726bbc107508cbe85a978b39f"; 59706 - sha256 = "0fwmjqgcj5q5g035zf4sf36r1ghgb8zb3xqx3a4xvb6bzmzrqa5f"; 60165 + rev = "b661715c377a02e8fb71209cd918f1188d1923d3"; 60166 + sha256 = "1g05h5fzwg63r6n85gphg4giz2cw6miqckdjbwcam098dk1igyby"; 59707 60167 }; 59708 60168 recipeFile = fetchurl { 59709 60169 url = "https://raw.githubusercontent.com/milkypostman/melpa/bd98f85461ef7134502d4f2aa8ce1bc764f3bda3/recipes/smartparens"; ··· 60054 60514 snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }: 60055 60515 melpaBuild { 60056 60516 pname = "snakemake-mode"; 60057 - version = "20161101.1909"; 60517 + version = "20161122.1546"; 60058 60518 src = fetchFromGitHub { 60059 60519 owner = "kyleam"; 60060 60520 repo = "snakemake-mode"; 60061 - rev = "9a474fd2c8c17c330d02ba2ee32b543c80d55e2e"; 60062 - sha256 = "0dig58in7hlr2mq1j0lrpszj9y1amgwgnq99znd2zjkw80cpvv7c"; 60521 + rev = "327c168febbde24c2b39cc10d26c9cfc9189e130"; 60522 + sha256 = "1jlv8sr2g3i335h7hp8y39b77wla9hac1b0bk2imalr14lz04vly"; 60063 60523 }; 60064 60524 recipeFile = fetchurl { 60065 60525 url = "https://raw.githubusercontent.com/milkypostman/melpa/c3a5b51fee1c9e6ce7e21555faa355d118d34b8d/recipes/snakemake-mode"; ··· 60544 61004 spaceline = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, s }: 60545 61005 melpaBuild { 60546 61006 pname = "spaceline"; 60547 - version = "20161018.1249"; 61007 + version = "20161115.613"; 60548 61008 src = fetchFromGitHub { 60549 61009 owner = "TheBB"; 60550 61010 repo = "spaceline"; 60551 - rev = "3da3396fea7f1dd178e8b807775ef92e46939be9"; 60552 - sha256 = "0y3d4s10yri78pkpwra0c7jnkq8hmps486kz8jldsyj84iw21anl"; 61011 + rev = "a0fbf0873d113c3f42a16c560329e43b7840f47e"; 61012 + sha256 = "0gsy0i6q4csnkdyv3hjqcap7xqjalzl167ccfligc28h07pw5zcp"; 60553 61013 }; 60554 61014 recipeFile = fetchurl { 60555 61015 url = "https://raw.githubusercontent.com/milkypostman/melpa/46e4c876aeeb0bb0d0e81dcbb8363a5db9c3ff61/recipes/spaceline"; ··· 61148 61608 }) {}; 61149 61609 sqlplus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 61150 61610 pname = "sqlplus"; 61151 - version = "20141009.739"; 61611 + version = "20161110.758"; 61152 61612 src = fetchurl { 61153 61613 url = "https://www.emacswiki.org/emacs/download/sqlplus.el"; 61154 - sha256 = "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d"; 61614 + sha256 = "04wqy4ss6499rpn0rnczmn39yi78xkqslblyq4xb700xzmzn7sg3"; 61155 61615 }; 61156 61616 recipeFile = fetchurl { 61157 61617 url = "https://raw.githubusercontent.com/milkypostman/melpa/41b1fc299cf8eeba1916a58ad8f50eb4560f0252/recipes/sqlplus"; ··· 61206 61666 srefactor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 61207 61667 melpaBuild { 61208 61668 pname = "srefactor"; 61209 - version = "20161008.238"; 61669 + version = "20161116.2201"; 61210 61670 src = fetchFromGitHub { 61211 61671 owner = "tuhdo"; 61212 61672 repo = "semantic-refactor"; 61213 - rev = "88e8ad5af2b9da89947aa75c9252163dbc917b35"; 61214 - sha256 = "0sqy1w1sda2n116xrfnblysjykg914ax9yqsj5vh40q9wdmyqjaw"; 61673 + rev = "f98172442c1a3da1a57f7d1f8d44ffedda4e3025"; 61674 + sha256 = "1dlzipvafjbnv8ih62ldfyv7yri0zz0gkfnhdlkv4l1482xdg5yn"; 61215 61675 }; 61216 61676 recipeFile = fetchurl { 61217 61677 url = "https://raw.githubusercontent.com/milkypostman/melpa/e23115ab231ab108678608f2ad0a864f896cd0f2/recipes/srefactor"; ··· 61290 61750 ssh-deploy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 61291 61751 melpaBuild { 61292 61752 pname = "ssh-deploy"; 61293 - version = "20161031.2219"; 61753 + version = "20161120.148"; 61294 61754 src = fetchFromGitHub { 61295 61755 owner = "cjohansson"; 61296 61756 repo = "emacs-ssh-deploy"; 61297 - rev = "e94c9e70ba64d231ff538db54acd4b5ecade3ed7"; 61298 - sha256 = "1igw97v0779gnk9ymk4inqmz92kkxdim5hkdhm52qk03kn7766zs"; 61757 + rev = "61a16be9fb34486b68e116dd57a4a0a057b8a3e5"; 61758 + sha256 = "1v01yl1jf93dsqn6myc2yj6z2cjr9pq2q3cawj5kn21qc53q33fd"; 61299 61759 }; 61300 61760 recipeFile = fetchurl { 61301 61761 url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4547f86e9a022468524b0d3818b24e1457797e/recipes/ssh-deploy"; ··· 62051 62511 license = lib.licenses.free; 62052 62512 }; 62053 62513 }) {}; 62514 + sudoku = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 62515 + melpaBuild { 62516 + pname = "sudoku"; 62517 + version = "20161110.2306"; 62518 + src = fetchFromGitHub { 62519 + owner = "zevlg"; 62520 + repo = "sudoku.el"; 62521 + rev = "77c11b5041b58fc943cf1668b44b40bae039cb5b"; 62522 + sha256 = "18nbs980y6cj6my208i80cb928rnkk5rn3zwc63prk5whjw4y77v"; 62523 + }; 62524 + recipeFile = fetchurl { 62525 + url = "https://raw.githubusercontent.com/milkypostman/melpa/f9861d5d4cf18466b17ac8e53f3874df5312d3f3/recipes/sudoku"; 62526 + sha256 = "14nbidjnsm9lwknmqgfr721b484z5156j723kr1wbfv70j8h9kys"; 62527 + name = "sudoku"; 62528 + }; 62529 + packageRequires = [ emacs ]; 62530 + meta = { 62531 + homepage = "https://melpa.org/#/sudoku"; 62532 + license = lib.licenses.free; 62533 + }; 62534 + }) {}; 62054 62535 suggest = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, loop, melpaBuild, s }: 62055 62536 melpaBuild { 62056 62537 pname = "suggest"; 62057 - version = "20161104.1314"; 62538 + version = "20161119.1334"; 62058 62539 src = fetchFromGitHub { 62059 62540 owner = "Wilfred"; 62060 62541 repo = "suggest.el"; 62061 - rev = "fd78622bf70cf70c344513587805538c259ea45d"; 62062 - sha256 = "1bjybkvydazanwvyp5hmlrpbcyhw8bmw808ym1gavb64qzsswp2l"; 62542 + rev = "99baeba41c06f8ac67570de679405d83a8962fb0"; 62543 + sha256 = "0piwn9bpfiiv8vgk9bhrvlh25kfh1sa1a7dqpp6dsrvg1swjqwj1"; 62063 62544 }; 62064 62545 recipeFile = fetchurl { 62065 62546 url = "https://raw.githubusercontent.com/milkypostman/melpa/b9fd27e812549587dc2ec26bb58974177ff263ff/recipes/suggest"; ··· 62219 62700 suscolors-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 62220 62701 melpaBuild { 62221 62702 pname = "suscolors-theme"; 62222 - version = "20160605.206"; 62703 + version = "20161109.1215"; 62223 62704 src = fetchFromGitHub { 62224 62705 owner = "TheSuspiciousWombat"; 62225 62706 repo = "suscolors-emacs"; 62226 - rev = "15931dac6ece2a42d7be78e4d448d25d55990d54"; 62227 - sha256 = "1av0ysw3l56sf8f0fg3mldx9ifw1rd74mw92cyvqvqx1k7na5pmz"; 62707 + rev = "8f5cdf8de5e58db838ef0e803b60b7d74fc2a889"; 62708 + sha256 = "1wc4l7zvb8zmh48cgrl7bkbyfj0sflzq28sc8jssghkcl2735cbg"; 62228 62709 }; 62229 62710 recipeFile = fetchurl { 62230 62711 url = "https://raw.githubusercontent.com/milkypostman/melpa/100c3244cfce8691240b11bc8a1d95ede3aae4fe/recipes/suscolors-theme"; ··· 62430 62911 src = fetchFromGitHub { 62431 62912 owner = "abo-abo"; 62432 62913 repo = "swiper"; 62433 - rev = "c8be3973a4841a3ee7d05e59666724965ecc8dd8"; 62434 - sha256 = "010hrxabaf9pj9dyj6x12sx6m9y8bk8nzdz1xsha2jq3fcglw2mc"; 62914 + rev = "7e02815e31eb2227b7ef5fe8015913f259ced7f0"; 62915 + sha256 = "1gf1liwggddsizldx9sa4qw44skq72qmmzx5h3582sxncqjjp8mk"; 62435 62916 }; 62436 62917 recipeFile = fetchurl { 62437 62918 url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper"; ··· 62552 63033 sx = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, let-alist, lib, markdown-mode, melpaBuild }: 62553 63034 melpaBuild { 62554 63035 pname = "sx"; 62555 - version = "20161104.1755"; 63036 + version = "20161109.1903"; 62556 63037 src = fetchFromGitHub { 62557 63038 owner = "vermiculus"; 62558 63039 repo = "sx.el"; 62559 - rev = "87dfd1e2ce093d53c0919dac7899bbf06bd96224"; 62560 - sha256 = "1ln75xg05waxahbaxlvb6vj7yi3svnni2247dzc9khi99dnwlbhf"; 63040 + rev = "cb338d7e314f4d29333f59a947ef27c9d22c6958"; 63041 + sha256 = "1sfvgk61cm0idmviadjsni9gy1kfjcdi455zynjc2181q0ax3qy9"; 62561 63042 }; 62562 63043 recipeFile = fetchurl { 62563 63044 url = "https://raw.githubusercontent.com/milkypostman/melpa/f16958a09820233fbe2abe403561fd9a012d0046/recipes/sx"; ··· 62779 63260 syslog-mode = callPackage ({ fetchFromGitHub, fetchurl, hide-lines, lib, melpaBuild }: 62780 63261 melpaBuild { 62781 63262 pname = "syslog-mode"; 62782 - version = "20161106.1611"; 63263 + version = "20161116.506"; 62783 63264 src = fetchFromGitHub { 62784 63265 owner = "vapniks"; 62785 63266 repo = "syslog-mode"; 62786 - rev = "d30f58d713fad72e8e8bfa92d6b2ed5300dbf022"; 62787 - sha256 = "011n5285c2gwc3i0cxnhk5g867d1jvga6ck92y787xjxm2k688kr"; 63267 + rev = "c2f0e4024efe07af7c8aa431c3dd3640c22f39ad"; 63268 + sha256 = "01f0qr0mvqj9dh9zzk9y70kivyrdvcn45gpzakqi7vnkvqap86lv"; 62788 63269 }; 62789 63270 recipeFile = fetchurl { 62790 63271 url = "https://raw.githubusercontent.com/milkypostman/melpa/478b307f885a06d9ced43758d8c117370152baae/recipes/syslog-mode"; ··· 63031 63512 tagedit = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 63032 63513 melpaBuild { 63033 63514 pname = "tagedit"; 63034 - version = "20160516.754"; 63515 + version = "20161121.55"; 63035 63516 src = fetchFromGitHub { 63036 63517 owner = "magnars"; 63037 63518 repo = "tagedit"; 63038 - rev = "0c72466783d7f85475df672284f93942e76c30ea"; 63039 - sha256 = "104n6dmiis6w2psm2rxah9hg5jwaqzna6973ijr5a5rxyp4rcsz7"; 63519 + rev = "b3a70101a0dcf85498c92b7fcfa7fdbac869746c"; 63520 + sha256 = "0xq9i3axlq9wgsr27nbhi5k9hxr1wahygkb73xkvxlgmvkmikcrw"; 63040 63521 }; 63041 63522 recipeFile = fetchurl { 63042 63523 url = "https://raw.githubusercontent.com/milkypostman/melpa/8968e2cd0bd49d54a5479b2467bd4f0a97d7a969/recipes/tagedit"; ··· 63345 63826 ten-hundred-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 63346 63827 melpaBuild { 63347 63828 pname = "ten-hundred-mode"; 63348 - version = "20160409.551"; 63829 + version = "20161028.1536"; 63349 63830 src = fetchFromGitHub { 63350 63831 owner = "aaron-em"; 63351 63832 repo = "ten-hundred-mode.el"; 63352 - rev = "fc1d7cdb72c21dc1953ed2e2ecf28233b8b3e305"; 63353 - sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx"; 63833 + rev = "bdcfda49b1819e82d61fe90947e50bb948cf7933"; 63834 + sha256 = "11nsh6dkd3i489lrqpd9xhr4c0ai51364rlrd6slm54720by9jql"; 63354 63835 }; 63355 63836 recipeFile = fetchurl { 63356 63837 url = "https://raw.githubusercontent.com/milkypostman/melpa/4a0534044ff9ce0740414bf5dc3b104bbdbdacce/recipes/ten-hundred-mode"; ··· 63366 63847 term-alert = callPackage ({ alert, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, term-cmd }: 63367 63848 melpaBuild { 63368 63849 pname = "term-alert"; 63369 - version = "20161022.428"; 63850 + version = "20161119.145"; 63370 63851 src = fetchFromGitHub { 63371 63852 owner = "CallumCameron"; 63372 63853 repo = "term-alert"; 63373 - rev = "8a0842a614aa005f97536142c14279abf0562690"; 63374 - sha256 = "11n8sna82gnnfpp4l0gbkqb16afvhydddm8kqa66ln620k8nlw1l"; 63854 + rev = "47af9e6fe483ef0d393098c145f499362a33292a"; 63855 + sha256 = "1nv8ma8x9xkgsl95z7yysy8q1lb3xr0pd8a5sb01nlx8ks3clad4"; 63375 63856 }; 63376 63857 recipeFile = fetchurl { 63377 63858 url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-alert"; ··· 63408 63889 term-manager = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 63409 63890 melpaBuild { 63410 63891 pname = "term-manager"; 63411 - version = "20161106.1419"; 63892 + version = "20161110.1707"; 63412 63893 src = fetchFromGitHub { 63413 63894 owner = "IvanMalison"; 63414 63895 repo = "term-manager"; 63415 - rev = "5272c03ddde3557838796c9b64139ef7c676091e"; 63416 - sha256 = "11b4zgx6sjnblbb08dclgrljnkg98w6dy5i9dqrwqgkmhhgsd387"; 63896 + rev = "f29bced3ecdf23d999f55573894b1ec1e2a94fc9"; 63897 + sha256 = "1nkahsnwvmg1fv3qsdc49k5xick6wji3j6qffwfnpw1prx2n2a45"; 63417 63898 }; 63418 63899 recipeFile = fetchurl { 63419 63900 url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2f7d8c8fcbb535432f8e70729d69a572e49a1a/recipes/term-manager"; ··· 63496 63977 src = fetchFromGitHub { 63497 63978 owner = "IvanMalison"; 63498 63979 repo = "term-manager"; 63499 - rev = "5272c03ddde3557838796c9b64139ef7c676091e"; 63500 - sha256 = "11b4zgx6sjnblbb08dclgrljnkg98w6dy5i9dqrwqgkmhhgsd387"; 63980 + rev = "f29bced3ecdf23d999f55573894b1ec1e2a94fc9"; 63981 + sha256 = "1nkahsnwvmg1fv3qsdc49k5xick6wji3j6qffwfnpw1prx2n2a45"; 63501 63982 }; 63502 63983 recipeFile = fetchurl { 63503 63984 url = "https://raw.githubusercontent.com/milkypostman/melpa/5260876280148fae28a459f07932cebb059b560e/recipes/term-projectile"; ··· 63559 64040 src = fetchFromGitHub { 63560 64041 owner = "ternjs"; 63561 64042 repo = "tern"; 63562 - rev = "0c5c1d2b2f4a7514a03d8e869e74f501965f011e"; 63563 - sha256 = "1nsn90zslnv6i6mdgjryznh520rzlknfbvmri5zpqnjnahmaif36"; 64043 + rev = "c020ba5433998de5b743ca06728fffaa99d002eb"; 64044 + sha256 = "07fvmlnc2ck72cyrwgibfbsqcg7knrbar488m1i6an0lqd98gbhm"; 63564 64045 }; 63565 64046 recipeFile = fetchurl { 63566 64047 url = "https://raw.githubusercontent.com/milkypostman/melpa/eaecd67af24050c72c5df73c3a12e717f95d5059/recipes/tern"; ··· 63580 64061 src = fetchFromGitHub { 63581 64062 owner = "ternjs"; 63582 64063 repo = "tern"; 63583 - rev = "0c5c1d2b2f4a7514a03d8e869e74f501965f011e"; 63584 - sha256 = "1nsn90zslnv6i6mdgjryznh520rzlknfbvmri5zpqnjnahmaif36"; 64064 + rev = "c020ba5433998de5b743ca06728fffaa99d002eb"; 64065 + sha256 = "07fvmlnc2ck72cyrwgibfbsqcg7knrbar488m1i6an0lqd98gbhm"; 63585 64066 }; 63586 64067 recipeFile = fetchurl { 63587 64068 url = "https://raw.githubusercontent.com/milkypostman/melpa/eaecd67af24050c72c5df73c3a12e717f95d5059/recipes/tern-auto-complete"; ··· 63681 64162 test-kitchen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 63682 64163 melpaBuild { 63683 64164 pname = "test-kitchen"; 63684 - version = "20161021.844"; 64165 + version = "20161115.1418"; 63685 64166 src = fetchFromGitHub { 63686 64167 owner = "jjasghar"; 63687 64168 repo = "test-kitchen-el"; 63688 - rev = "139bddc527d0165db14d52973635f2e8c4ff2212"; 63689 - sha256 = "0x9yggqb4ibi6yzr50a09h6yi28f2b81ykx3wq0bi99mqy3qn9jb"; 64169 + rev = "9213e55e0334c2a3bb31f8cebf9b40022ca12db8"; 64170 + sha256 = "11nnc6s3ryfdrlvkf9rfya9m66l4x1d0zm4p9w1gf0vnyb5x7mfq"; 63690 64171 }; 63691 64172 recipeFile = fetchurl { 63692 64173 url = "https://raw.githubusercontent.com/milkypostman/melpa/420d18c76f593338fb28807fcbe3b884be5b1634/recipes/test-kitchen"; ··· 63790 64271 src = fetchFromGitHub { 63791 64272 owner = "novakboskov"; 63792 64273 repo = "textx-mode"; 63793 - rev = "1f9ae651508176b4cb1ae9a03aec06049f333c61"; 63794 - sha256 = "00hdnfa27rb9inqq4dn51v8jrbsl4scql0cngp6fxdaf93j1p5gk"; 64274 + rev = "74b701ec2d31b228a8e1e9c993edd00f5c324dca"; 64275 + sha256 = "1i4bd17kymdc9w2xd83549f0dva2asnvqcppgsg3svyab8x1aa7z"; 63795 64276 }; 63796 64277 recipeFile = fetchurl { 63797 64278 url = "https://raw.githubusercontent.com/milkypostman/melpa/dada0378af342e0798c418032a8dcc7dfd80d600/recipes/textx-mode"; ··· 63924 64405 }) {}; 63925 64406 thingatpt-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 63926 64407 pname = "thingatpt-plus"; 63927 - version = "20161104.1310"; 64408 + version = "20161121.1523"; 63928 64409 src = fetchurl { 63929 64410 url = "https://www.emacswiki.org/emacs/download/thingatpt+.el"; 63930 - sha256 = "0n738nry3iska0121xzwvnlmvzpvmzds7xg3fxh4vk3z3czpb5rq"; 64411 + sha256 = "0xxd6qi6xw9zn0yykyl1ys8ckpfngxkbswy00s6hf7gd9jbknkm3"; 63931 64412 }; 63932 64413 recipeFile = fetchurl { 63933 64414 url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/thingatpt+"; ··· 64010 64491 src = fetchFromGitHub { 64011 64492 owner = "apache"; 64012 64493 repo = "thrift"; 64013 - rev = "74c99ba38b02288daf05229cdf34e60261d2d01e"; 64014 - sha256 = "0l0ffczgpsvp6znlnnc89nxcmw6yzmxn4dbsr0px3pqz1mffgyp1"; 64494 + rev = "84d6af4cf903571319e0ebddd7beb12bc93fb752"; 64495 + sha256 = "1809p5fi1si0l4qfw99d3rkcd1jsfyrvrqwf7xxvwxwjca3zqdxi"; 64015 64496 }; 64016 64497 recipeFile = fetchurl { 64017 64498 url = "https://raw.githubusercontent.com/milkypostman/melpa/857ab7e3a5c290265d88ebacb9685b3faee586e5/recipes/thrift"; ··· 64067 64548 tide = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, typescript-mode }: 64068 64549 melpaBuild { 64069 64550 pname = "tide"; 64070 - version = "20161103.1005"; 64551 + version = "20161123.255"; 64071 64552 src = fetchFromGitHub { 64072 64553 owner = "ananthakumaran"; 64073 64554 repo = "tide"; 64074 - rev = "74c8be8c72cb7fdbdcbfda430d4d283bc32e16dc"; 64075 - sha256 = "1p6nc2rjggvf3jfsffk9danm4ah9lxhj2z61p267pb2mjs0ywkvf"; 64555 + rev = "9e5baa6ced305f440f67bcc803e24f0a03ec2b0a"; 64556 + sha256 = "1xbj704y91300g6nbr01abf9xsfrpc3qykpz5jm35ra54hnvj11c"; 64076 64557 }; 64077 64558 recipeFile = fetchurl { 64078 64559 url = "https://raw.githubusercontent.com/milkypostman/melpa/a21e063011ebbb03ac70bdcf0a379f9e383bdfab/recipes/tide"; ··· 64604 65085 license = lib.licenses.free; 64605 65086 }; 64606 65087 }) {}; 64607 - toml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 65088 + toml-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 64608 65089 melpaBuild { 64609 65090 pname = "toml-mode"; 64610 - version = "20160910.1810"; 65091 + version = "20161107.1000"; 64611 65092 src = fetchFromGitHub { 64612 65093 owner = "dryman"; 64613 65094 repo = "toml-mode.el"; 64614 - rev = "0bbf0618fde844cd2e12765c8ca566df09066445"; 64615 - sha256 = "129yws71h5wy2y4z2ayl9kys22xa4hhxkybb7hhp2b3y8wq0717z"; 65095 + rev = "f6c61817b00f9c4a3cab1bae9c309e0fc45cdd06"; 65096 + sha256 = "05b4ksay85c8y5ncax0qsvnmplwsfiw24z16a58gkarjz938hb57"; 64616 65097 }; 64617 65098 recipeFile = fetchurl { 64618 65099 url = "https://raw.githubusercontent.com/milkypostman/melpa/f8157d7d11f1e1848f0ba384249b4b8c6354830b/recipes/toml-mode"; 64619 65100 sha256 = "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l"; 64620 65101 name = "toml-mode"; 64621 65102 }; 64622 - packageRequires = []; 65103 + packageRequires = [ cl-lib emacs ]; 64623 65104 meta = { 64624 65105 homepage = "https://melpa.org/#/toml-mode"; 64625 65106 license = lib.licenses.free; ··· 64799 65280 src = fetchFromGitHub { 64800 65281 owner = "jorgenschaefer"; 64801 65282 repo = "circe"; 64802 - rev = "8a42bf93e38b6437f1da5bf4d0f6de8ad9a85fef"; 64803 - sha256 = "1rrc440hqxl7fi8f437clz169n6vacqfs5pmc7ni5m65k9kqm1fa"; 65283 + rev = "e549f0a7f8c6a39cc3129581b85682e3977d2bdd"; 65284 + sha256 = "16c45hb216b3r214p8v7zzlpz26s39lc9fmjl6ll3jwvqpq19kb1"; 64804 65285 }; 64805 65286 recipeFile = fetchurl { 64806 65287 url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/tracking"; ··· 65459 65940 typescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 65460 65941 melpaBuild { 65461 65942 pname = "typescript-mode"; 65462 - version = "20160923.9"; 65943 + version = "20161123.6"; 65463 65944 src = fetchFromGitHub { 65464 65945 owner = "ananthakumaran"; 65465 65946 repo = "typescript.el"; 65466 - rev = "588d5f3d63b77f40951630d01fd3ecb0f3672c5b"; 65467 - sha256 = "1gq4vza69ffqhjls905agsshk0mj2gfg6cmhia0d75lf6r8h6nzf"; 65947 + rev = "d5c4fb27c896e37d6adaa61f55b275ba9efa7b98"; 65948 + sha256 = "09kg5axl0aazfglzp0zm5wj3rrqkvdhiwlafliw2icrspygnk7ra"; 65468 65949 }; 65469 65950 recipeFile = fetchurl { 65470 65951 url = "https://raw.githubusercontent.com/milkypostman/melpa/d3f534a1e2cee4ad2e32e32802c5080207417b3d/recipes/typescript-mode"; ··· 65602 66083 }) {}; 65603 66084 ucs-cmds = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 65604 66085 pname = "ucs-cmds"; 65605 - version = "20151231.1616"; 66086 + version = "20161118.1423"; 65606 66087 src = fetchurl { 65607 66088 url = "https://www.emacswiki.org/emacs/download/ucs-cmds.el"; 65608 - sha256 = "0qy211rxrmzhwl9qfrcmfnwayysvb5rghjginbvx3wf2s6hrbpya"; 66089 + sha256 = "08yfz2mhhfqmx2icwpwizcaqkzngddhgp4ya3ga77fziyb6xjrdv"; 65609 66090 }; 65610 66091 recipeFile = fetchurl { 65611 66092 url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/ucs-cmds"; ··· 65744 66225 undercover = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, shut-up }: 65745 66226 melpaBuild { 65746 66227 pname = "undercover"; 65747 - version = "20161016.2358"; 66228 + version = "20161114.819"; 65748 66229 src = fetchFromGitHub { 65749 66230 owner = "sviridov"; 65750 66231 repo = "undercover.el"; 65751 - rev = "6026118ea2030fa69688dfff294843a865ddf3a3"; 65752 - sha256 = "0slml92b2i3cphjmqm738rbwk0brsxg22a8wpz6cdgm62hhxr1zd"; 66232 + rev = "465e339749f924606df71e250ae10d1f910f71a9"; 66233 + sha256 = "0p75m1v9hvdlmlpg9zk09q9zyxf1ld6njfqir6hx83lidgvs5wsm"; 65753 66234 }; 65754 66235 recipeFile = fetchurl { 65755 66236 url = "https://raw.githubusercontent.com/milkypostman/melpa/d58ad9eb863494f609114e3c6af8c14c891b83a5/recipes/undercover"; ··· 66259 66740 src = fetchFromGitHub { 66260 66741 owner = "diml"; 66261 66742 repo = "utop"; 66262 - rev = "a7e716dd7e9778268337f2f9142f7d658f985511"; 66263 - sha256 = "0x2ag7amkqq8bgiz5ma31fpcwfpzx0qqs7cr6ia8rxzwiwnyb06k"; 66743 + rev = "f2015062fa5f8ff5a39d3f2db9475862f433b2d0"; 66744 + sha256 = "1l00rhh9l4b9ww5sx1vm87qnydcr59ka4w2n2faifglnsv3awzn6"; 66264 66745 }; 66265 66746 recipeFile = fetchurl { 66266 66747 url = "https://raw.githubusercontent.com/milkypostman/melpa/30489fe52b4031184e54f994770aa3291257bc9d/recipes/utop"; ··· 66549 67030 vc-osc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 66550 67031 melpaBuild { 66551 67032 pname = "vc-osc"; 66552 - version = "20120910.211"; 67033 + version = "20161119.1155"; 66553 67034 src = fetchFromGitHub { 66554 67035 owner = "aspiers"; 66555 67036 repo = "vc-osc"; 66556 - rev = "fb01a35107be50ebb126c3573e0374e5e7d78331"; 66557 - sha256 = "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4"; 67037 + rev = "8c09a0d5f69237285101554261b77d76b546a24b"; 67038 + sha256 = "153zwhljkjl0dajd1l6p5icva0bnpa2rj8byjblb3xv8rq7p1fzc"; 66558 67039 }; 66559 67040 recipeFile = fetchurl { 66560 67041 url = "https://raw.githubusercontent.com/milkypostman/melpa/70a1fa5fdfdfa9ec5607524be62eb44fe82e91b0/recipes/vc-osc"; ··· 67032 67513 visual-fill-column = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 67033 67514 melpaBuild { 67034 67515 pname = "visual-fill-column"; 67035 - version = "20160804.1452"; 67516 + version = "20161109.337"; 67036 67517 src = fetchFromGitHub { 67037 67518 owner = "joostkremers"; 67038 67519 repo = "visual-fill-column"; 67039 - rev = "d3f64e72062cdb74e698bbda8c44d47eb3133099"; 67040 - sha256 = "0g6x97d8l11zgcfqdbm5p2bxb9x4c9c7hlypbr6vl6zy1dqixaiw"; 67520 + rev = "159dcee48e7311ee816686d62e7ce36619127462"; 67521 + sha256 = "0bij20a8f9pd4307m2qslcx8p3j59hkr14sm18aw0bric65him8b"; 67041 67522 }; 67042 67523 recipeFile = fetchurl { 67043 67524 url = "https://raw.githubusercontent.com/milkypostman/melpa/c7628c805840c4687686d0b9dc5007342864721e/recipes/visual-fill-column"; ··· 67402 67883 wanderlust = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, semi }: 67403 67884 melpaBuild { 67404 67885 pname = "wanderlust"; 67405 - version = "20161029.2147"; 67886 + version = "20161114.1527"; 67406 67887 src = fetchFromGitHub { 67407 67888 owner = "wanderlust"; 67408 67889 repo = "wanderlust"; 67409 - rev = "8cd89d439515331a96facdcf3eb3eb424819c2e8"; 67410 - sha256 = "107p0yrfp4lpm1clzls78f8ylmr6fpjjz467pf0vyygnd5xhxf4r"; 67890 + rev = "68f000149a82a4c4ef46989e261c7541ce8bf778"; 67891 + sha256 = "0k5dcaswpr0pdps3hls14hn91r2nw6024npdn599gj67naajccfr"; 67411 67892 }; 67412 67893 recipeFile = fetchurl { 67413 67894 url = "https://raw.githubusercontent.com/milkypostman/melpa/426172b72026d1adeb1bf3fcc6b0407875047333/recipes/wanderlust"; ··· 67591 68072 web-beautify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 67592 68073 melpaBuild { 67593 68074 pname = "web-beautify"; 67594 - version = "20160410.1005"; 68075 + version = "20161115.1447"; 67595 68076 src = fetchFromGitHub { 67596 68077 owner = "yasuyk"; 67597 68078 repo = "web-beautify"; 67598 - rev = "9c6a09969c04cb07f5f56ac6f6c3abba5f06c871"; 67599 - sha256 = "0vzd0bmm53a0bhdbyvrqgswy453pnsfcnr71piwwhw4dp2zx32hd"; 68079 + rev = "e1b45321d8c11b404b12c8e55afe55eaa7c84ee9"; 68080 + sha256 = "03b5pj58m00lkazyvvasa4qndrkh2kjzv2y7qhxljfg5mngyg3zg"; 67600 68081 }; 67601 68082 recipeFile = fetchurl { 67602 68083 url = "https://raw.githubusercontent.com/milkypostman/melpa/0d528d3e20b1656dff40860cac0e0fa9dc1a3e87/recipes/web-beautify"; ··· 67633 68114 web-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 67634 68115 melpaBuild { 67635 68116 pname = "web-mode"; 67636 - version = "20161106.132"; 68117 + version = "20161119.924"; 67637 68118 src = fetchFromGitHub { 67638 68119 owner = "fxbois"; 67639 68120 repo = "web-mode"; 67640 - rev = "bae44d506af5d4f548f1b992229e369890f2a8a4"; 67641 - sha256 = "1ygsvcsf3pddcwyaw0m19z5j8is982ypxmz96qs2h0krfq9l6vl9"; 68121 + rev = "de14f795f0256642eb03fbaf3182896619203c66"; 68122 + sha256 = "09qfc1q4954p5fxgcrkgd9rhff3f2cq1sgs6ydznqmsah5nvfcr0"; 67642 68123 }; 67643 68124 recipeFile = fetchurl { 67644 68125 url = "https://raw.githubusercontent.com/milkypostman/melpa/6f0565555eaa356141422c5175d6cca4e9eb5c00/recipes/web-mode"; ··· 67651 68132 license = lib.licenses.free; 67652 68133 }; 67653 68134 }) {}; 68135 + web-mode-edit-element = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web-mode }: 68136 + melpaBuild { 68137 + pname = "web-mode-edit-element"; 68138 + version = "20161114.954"; 68139 + src = fetchFromGitHub { 68140 + owner = "jtkDvlp"; 68141 + repo = "web-mode-edit-element"; 68142 + rev = "8b8ac07aa8c920dafd94c96a51effb0d6c0ed1ce"; 68143 + sha256 = "0aj1ibmnrbaxrkwjf1fac2qzazrj39pql3prcibnchc2bmp191aa"; 68144 + }; 68145 + recipeFile = fetchurl { 68146 + url = "https://raw.githubusercontent.com/milkypostman/melpa/2658e8a80455ad5ae1ceb69deddab89ebc6b6871/recipes/web-mode-edit-element"; 68147 + sha256 = "09m2jzsb3zz1wr396jrhcwskfm1m0a4hvxlxhq5p1w5fzfcdb8md"; 68148 + name = "web-mode-edit-element"; 68149 + }; 68150 + packageRequires = [ emacs web-mode ]; 68151 + meta = { 68152 + homepage = "https://melpa.org/#/web-mode-edit-element"; 68153 + license = lib.licenses.free; 68154 + }; 68155 + }) {}; 67654 68156 web-server = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 67655 68157 melpaBuild { 67656 68158 pname = "web-server"; ··· 67700 68202 src = fetchFromGitHub { 67701 68203 owner = "etu"; 67702 68204 repo = "webpaste.el"; 67703 - rev = "c57cd53b6036e8f9d128ffb1d80cdd898d52c2e8"; 67704 - sha256 = "1sjczh4z4fd6mlpqvd8qbkyc1pphkx1s7d953msqqfy1lvwd2v6j"; 68205 + rev = "6e34759f77b94318f079e178f7551fb16317b661"; 68206 + sha256 = "1lw4jf4jnch5c57vv5dyiwgkmqmxisbm1wx269p6nkkvb9y49qm7"; 67705 68207 }; 67706 68208 recipeFile = fetchurl { 67707 68209 url = "https://raw.githubusercontent.com/milkypostman/melpa/13847d91c1780783e516943adee8a3530c757e17/recipes/webpaste"; ··· 67717 68219 websocket = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 67718 68220 melpaBuild { 67719 68221 pname = "websocket"; 67720 - version = "20161022.2054"; 68222 + version = "20161113.1736"; 67721 68223 src = fetchFromGitHub { 67722 68224 owner = "ahyatt"; 67723 68225 repo = "emacs-websocket"; 67724 - rev = "f7d3fb5409aed9f5cdb745f0e61a0c43c097588c"; 67725 - sha256 = "1dl6yirbrqhsci3wvigvcghx645slh7bb2q3hb66rcdp5j5m41zf"; 68226 + rev = "fbd9e2263d2d7168aae31d4f8bde38f511e9d2ec"; 68227 + sha256 = "04kg6njw5frp9xafjyqff57m0a2r15r7c57mnb6dw6lgazxlscgb"; 67726 68228 }; 67727 68229 recipeFile = fetchurl { 67728 68230 url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/websocket"; ··· 67948 68450 which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 67949 68451 melpaBuild { 67950 68452 pname = "which-key"; 67951 - version = "20161106.950"; 68453 + version = "20161121.2003"; 67952 68454 src = fetchFromGitHub { 67953 68455 owner = "justbur"; 67954 68456 repo = "emacs-which-key"; 67955 - rev = "17f4b0069273f9c9877dc079e5cf49ed9cb4d278"; 67956 - sha256 = "1h673yjl0hp6p244pkk6hmazgfrj2sbz9cvd1r6rnrp1lpn8z1dl"; 68457 + rev = "b5a9d7d1ce028ce904cb8479a10440ad6c839221"; 68458 + sha256 = "184if1gyxnvrqjd3i59kjg5sndaa0fq50l267qgbxv807w9akha3"; 67957 68459 }; 67958 68460 recipeFile = fetchurl { 67959 68461 url = "https://raw.githubusercontent.com/milkypostman/melpa/315865a3df97c0694f648633d44b8b34df1ac76d/recipes/which-key"; ··· 68050 68552 license = lib.licenses.free; 68051 68553 }; 68052 68554 }) {}; 68555 + whizzml-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 68556 + melpaBuild { 68557 + pname = "whizzml-mode"; 68558 + version = "20161115.1720"; 68559 + src = fetchFromGitHub { 68560 + owner = "whizzml"; 68561 + repo = "whizzml-mode"; 68562 + rev = "b5804004fb35c603468054cf179f4dd6936c8882"; 68563 + sha256 = "0x0cxwifqb8pv6j55iwxy7hdk0cvjz0zygayi494y4nhabcyp3kf"; 68564 + }; 68565 + recipeFile = fetchurl { 68566 + url = "https://raw.githubusercontent.com/milkypostman/melpa/11f26b15c326c3b8541bac510579b32493916042/recipes/whizzml-mode"; 68567 + sha256 = "0gas9xfpz5v9fbhjxhd4msihwz9w4a05l5icsaclxvh06f92wcyk"; 68568 + name = "whizzml-mode"; 68569 + }; 68570 + packageRequires = [ emacs ]; 68571 + meta = { 68572 + homepage = "https://melpa.org/#/whizzml-mode"; 68573 + license = lib.licenses.free; 68574 + }; 68575 + }) {}; 68053 68576 whole-line-or-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 68054 68577 melpaBuild { 68055 68578 pname = "whole-line-or-region"; ··· 68485 69008 version = "20160419.1232"; 68486 69009 src = fetchhg { 68487 69010 url = "https://bitbucket.com/ArneBab/wisp"; 68488 - rev = "9f38303df3b7"; 68489 - sha256 = "10bcyzaj4ramas2vwjnsl9pk82gnnvfrwdxn6g217xbjjjlylwds"; 69011 + rev = "d9ebfc6c8722"; 69012 + sha256 = "038glxpcl6d9js0kaxaqmfz6xlz50z28nny9biarx1mhjvy70lwp"; 68490 69013 }; 68491 69014 recipeFile = fetchurl { 68492 69015 url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/wisp-mode"; ··· 68523 69046 with-editor = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 68524 69047 melpaBuild { 68525 69048 pname = "with-editor"; 68526 - version = "20161009.917"; 69049 + version = "20161109.403"; 68527 69050 src = fetchFromGitHub { 68528 69051 owner = "magit"; 68529 69052 repo = "with-editor"; 68530 - rev = "b2d9d6b38cbb3993d4c100b098fc7efc9274b9b4"; 68531 - sha256 = "1l42a5d7hdpa1nyvhqzas9smbgkrscylj58av7gsky6kndps89dk"; 69053 + rev = "7b6ac3acf02fcfe118685011d46bb8f6b5cc493c"; 69054 + sha256 = "0vvr6agl2db16wppgg8rcd3q9sq5c8xcc518hmxq9drdhgn1az1s"; 68532 69055 }; 68533 69056 recipeFile = fetchurl { 68534 69057 url = "https://raw.githubusercontent.com/milkypostman/melpa/8c52c840dc35f3fd17ec660e113ddbb53aa99076/recipes/with-editor"; ··· 68712 69235 worf = callPackage ({ ace-link, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, swiper, zoutline }: 68713 69236 melpaBuild { 68714 69237 pname = "worf"; 68715 - version = "20161107.535"; 69238 + version = "20161122.954"; 68716 69239 src = fetchFromGitHub { 68717 69240 owner = "abo-abo"; 68718 69241 repo = "worf"; 68719 - rev = "997b7e02ab4684166162eb1bdf4b711e18017952"; 68720 - sha256 = "0nhh10rhn17a4iscl2y3c1v7axvc154s7j1cfpidjk9xc52vwz9d"; 69242 + rev = "7f4b1367ba8d86f7c2d8a47f7dd9ac87c4104620"; 69243 + sha256 = "0n0gdvhzaqkacj44ia5mnx9xcq213apmwxbkm0xhlmmirz6l336h"; 68721 69244 }; 68722 69245 recipeFile = fetchurl { 68723 69246 url = "https://raw.githubusercontent.com/milkypostman/melpa/f00f8765e35c21dd1a4b5c01c239ed4d15170ab7/recipes/worf"; ··· 69048 69571 xah-elisp-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 69049 69572 melpaBuild { 69050 69573 pname = "xah-elisp-mode"; 69051 - version = "20161105.1325"; 69574 + version = "20161116.1343"; 69052 69575 src = fetchFromGitHub { 69053 69576 owner = "xahlee"; 69054 69577 repo = "xah-elisp-mode"; 69055 - rev = "79e004ee10d7f1d67200140f18e8a720be177273"; 69056 - sha256 = "17f5n23sp31manf58mvvyrixygza6plc0sl6n5k7lqfnlcas27d8"; 69578 + rev = "4b58d598a48f7d8203c1673ceaa05e2fa4f83b68"; 69579 + sha256 = "0b0i2vxmzr79f6va19nn6ls1gl2hv4nk8w8w6hmghcsbdi4npmg3"; 69057 69580 }; 69058 69581 recipeFile = fetchurl { 69059 69582 url = "https://raw.githubusercontent.com/milkypostman/melpa/f2e996dd5b0061371662490e0b21d3c5bb506550/recipes/xah-elisp-mode"; ··· 69069 69592 xah-find = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 69070 69593 melpaBuild { 69071 69594 pname = "xah-find"; 69072 - version = "20160721.2030"; 69595 + version = "20161116.1515"; 69073 69596 src = fetchFromGitHub { 69074 69597 owner = "xahlee"; 69075 69598 repo = "xah-find"; 69076 - rev = "fce0404fb46d9ead40f4ba02e684a48310bfb8ea"; 69077 - sha256 = "1d4116c1xviljr7qznab865fy8y0rq3pgwwybxq9wybbj14r74ms"; 69599 + rev = "44a8ccf067e86bf9db7c7e73016b23ddcb212254"; 69600 + sha256 = "02zx485l9ilfblz2ma5wqb97prbnvph9a7ija66sac2aklw19i8w"; 69078 69601 }; 69079 69602 recipeFile = fetchurl { 69080 69603 url = "https://raw.githubusercontent.com/milkypostman/melpa/1d94ffd9c3380cd56770f253e43d566a95083e37/recipes/xah-find"; ··· 69090 69613 xah-fly-keys = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 69091 69614 melpaBuild { 69092 69615 pname = "xah-fly-keys"; 69093 - version = "20161102.1328"; 69616 + version = "20161122.358"; 69094 69617 src = fetchFromGitHub { 69095 69618 owner = "xahlee"; 69096 69619 repo = "xah-fly-keys"; 69097 - rev = "40b0818411a77d496418f30a55f5ad4616350f35"; 69098 - sha256 = "1p0kc5viia17l4mls9ql2486cpnj2l2rp6nxlxij8ilw901q18d7"; 69620 + rev = "cff6ab06055d59d858f85946ada505eec854b1aa"; 69621 + sha256 = "01d4lag4jcfvaafkk18ijcq91nbc1r7gdpn95gficjy0l6kf9dbg"; 69099 69622 }; 69100 69623 recipeFile = fetchurl { 69101 69624 url = "https://raw.githubusercontent.com/milkypostman/melpa/fc1683be70d1388efa3ce00adc40510e595aef2b/recipes/xah-fly-keys"; ··· 69451 69974 src = fetchFromGitHub { 69452 69975 owner = "NicolasPetton"; 69453 69976 repo = "xref-js2"; 69454 - rev = "7e2bc6a8dad08a493d11d3554f6374584846b9e6"; 69455 - sha256 = "1mmd27miv32sl8cj7qhy09yfh7v1zgw7rv4fdwk96msvd4qfdkqd"; 69977 + rev = "031def02271fdbe2e0ab30515c7291a239fea4e6"; 69978 + sha256 = "1i3gsv7npf6lg7hakky6yxn96aqjdlridj74l0vhj55j2w7ia6f8"; 69456 69979 }; 69457 69980 recipeFile = fetchurl { 69458 69981 url = "https://raw.githubusercontent.com/milkypostman/melpa/b5dab444ead98210b4ab3a6f9a61d013aed6d5b7/recipes/xref-js2"; ··· 69489 70012 xterm-color = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 69490 70013 melpaBuild { 69491 70014 pname = "xterm-color"; 69492 - version = "20161104.1949"; 70015 + version = "20161110.1630"; 69493 70016 src = fetchFromGitHub { 69494 70017 owner = "atomontage"; 69495 70018 repo = "xterm-color"; 69496 - rev = "77e058710b20cb222647151e70416ef597929518"; 69497 - sha256 = "179nkk5hi6ylckjgxi536r78fvzv39kdnlbcdi0sscfn44q1ng6k"; 70019 + rev = "34318edd4a552f194affb9858fce241747d0c79c"; 70020 + sha256 = "0kv843wl0j1zwpcxmzbbpci6yrjvyhamwxbv7568yv5hzscm0sh7"; 69498 70021 }; 69499 70022 recipeFile = fetchurl { 69500 70023 url = "https://raw.githubusercontent.com/milkypostman/melpa/b34a42f1bf5641871da8ce2b688325023262b643/recipes/xterm-color"; ··· 69927 70450 yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 69928 70451 melpaBuild { 69929 70452 pname = "yasnippet"; 69930 - version = "20161026.1601"; 70453 + version = "20161110.1226"; 69931 70454 src = fetchFromGitHub { 69932 70455 owner = "joaotavora"; 69933 70456 repo = "yasnippet"; 69934 - rev = "e6b865127783f498b61fa99ad0f5413200ac09d0"; 69935 - sha256 = "0djj2gi0s0jyxpqgfk2818xnj5ykwhzy5k9yi65klsw2nanhh8y9"; 70457 + rev = "8412d71e44576c6e9f182109219a8a71cf9d4311"; 70458 + sha256 = "0x4lbg6psffpw0s4nji6iyp3iqdip5l6m2hkcg4y5va048hr4hbf"; 69936 70459 }; 69937 70460 recipeFile = fetchurl { 69938 70461 url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1927dc3351d3522de1baccdc4ce200ba52bd6e/recipes/yasnippet"; ··· 69945 70468 license = lib.licenses.free; 69946 70469 }; 69947 70470 }) {}; 69948 - yatemplate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: 70471 + yatemplate = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: 69949 70472 melpaBuild { 69950 70473 pname = "yatemplate"; 69951 - version = "20160719.1228"; 70474 + version = "20161108.1305"; 69952 70475 src = fetchFromGitHub { 69953 70476 owner = "mineo"; 69954 70477 repo = "yatemplate"; 69955 - rev = "da42cb16c4534eb31c5946bf7f5a5710ef57256d"; 69956 - sha256 = "09ag32gbmidp12w3pay5iid6b75zwdm317hsz2kdvslik18j7r66"; 70478 + rev = "b58d17e176f77ded83860d33f4f43fcb5f7d2c9c"; 70479 + sha256 = "13as073yw6wphcs7w62zicqgva0lh4xx4f1c9sph8ip1wydkr9pg"; 69957 70480 }; 69958 70481 recipeFile = fetchurl { 69959 70482 url = "https://raw.githubusercontent.com/milkypostman/melpa/8ba3cdb74f121cbf36b6d9d5a434c363905ce526/recipes/yatemplate"; 69960 70483 sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; 69961 70484 name = "yatemplate"; 69962 70485 }; 69963 - packageRequires = [ yasnippet ]; 70486 + packageRequires = [ emacs yasnippet ]; 69964 70487 meta = { 69965 70488 homepage = "https://melpa.org/#/yatemplate"; 69966 70489 license = lib.licenses.free; ··· 70008 70531 license = lib.licenses.free; 70009 70532 }; 70010 70533 }) {}; 70011 - ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, request, request-deferred, s }: 70534 + ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, request, request-deferred, s }: 70012 70535 melpaBuild { 70013 70536 pname = "ycmd"; 70014 - version = "20161106.705"; 70537 + version = "20161121.5"; 70015 70538 src = fetchFromGitHub { 70016 70539 owner = "abingham"; 70017 70540 repo = "emacs-ycmd"; 70018 - rev = "d116b167bf776dbeba6a822c0b3c19a2c97f68d4"; 70019 - sha256 = "192qiwpkc5a0bxsiqj6zyvlblvixq24m845dgpcsqzwpjcm7qq9l"; 70541 + rev = "f11500fbc6bf66ff27deaf6988f31b8a13860468"; 70542 + sha256 = "1rbc9wvpjliv0ah0zy181q9q05fi0ihl0ap0ghli56ri05s6fhp2"; 70020 70543 }; 70021 70544 recipeFile = fetchurl { 70022 70545 url = "https://raw.githubusercontent.com/milkypostman/melpa/4b25378540c64d0214797348579671bf2b8cc696/recipes/ycmd"; ··· 70029 70552 deferred 70030 70553 emacs 70031 70554 let-alist 70555 + pkg-info 70032 70556 request 70033 70557 request-deferred 70034 70558 s ··· 70062 70586 yoshi-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 70063 70587 melpaBuild { 70064 70588 pname = "yoshi-theme"; 70065 - version = "20161006.1632"; 70589 + version = "20161115.1258"; 70066 70590 src = fetchFromGitHub { 70067 70591 owner = "ryuslash"; 70068 70592 repo = "yoshi-theme"; 70069 - rev = "09ce91530896f6443b5b45409bd67b5a449651c9"; 70070 - sha256 = "19kfjaqd1p1v777zgr76zpyc33i8rn7v7f5wq59cnnnswi01m8m9"; 70593 + rev = "278dba2c6846c6898ced9948505775ef71812586"; 70594 + sha256 = "03fibd99wihg811c72cn6q8w89pdivjn3305lyhzlbs69ylafz0f"; 70071 70595 }; 70072 70596 recipeFile = fetchurl { 70073 70597 url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a549e31c4097ee24b4bff12ec5d20d3beac68/recipes/yoshi-theme"; ··· 70125 70649 zeal-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 70126 70650 melpaBuild { 70127 70651 pname = "zeal-at-point"; 70128 - version = "20161027.2344"; 70652 + version = "20161114.1811"; 70129 70653 src = fetchFromGitHub { 70130 70654 owner = "jinzhu"; 70131 70655 repo = "zeal-at-point"; 70132 - rev = "2ca9f1070197bd6af7807bca6a1f2099c7b3ed1c"; 70133 - sha256 = "1l7kzmhkjnfy32l0kw3xnqs3dipmsad2ckcx7plvfwfh75yrddq9"; 70656 + rev = "bc71e4ecb154e140fa688add55d26d01b5a52dea"; 70657 + sha256 = "15ymggp3j7bxwp5q4ng8g2hnym8psgjyvx5baxh4d0yc54jiq1gx"; 70134 70658 }; 70135 70659 recipeFile = fetchurl { 70136 70660 url = "https://raw.githubusercontent.com/milkypostman/melpa/4bcb472b6b18b75acd9c68e1fc7ecce4c2a40d8f/recipes/zeal-at-point"; ··· 70249 70773 zerodark-theme = callPackage ({ all-the-icons, fetchFromGitHub, fetchurl, flycheck, lib, magit, melpaBuild, powerline }: 70250 70774 melpaBuild { 70251 70775 pname = "zerodark-theme"; 70252 - version = "20161106.1246"; 70776 + version = "20161108.858"; 70253 70777 src = fetchFromGitHub { 70254 70778 owner = "NicolasPetton"; 70255 70779 repo = "zerodark-theme"; 70256 - rev = "62773d94e975cafeca26b93679aaa04adfc36882"; 70257 - sha256 = "0ayxrz3n1ca4kgby09crrwdxii4py5v5icnclys6wmnigvmb4jsw"; 70780 + rev = "32873003d1c120f7f4fe1438df9a4c1c08785996"; 70781 + sha256 = "0g6yknx9gdpk8ccqcjzq4rglrrlpi8npm7klfrv3xiz48sb6igaj"; 70258 70782 }; 70259 70783 recipeFile = fetchurl { 70260 70784 url = "https://raw.githubusercontent.com/milkypostman/melpa/72ef967a9bea2e100ae17aad1a88db95820f4f6a/recipes/zerodark-theme"; ··· 70493 71017 license = lib.licenses.free; 70494 71018 }; 70495 71019 }) {}; 70496 - zoom-window = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 71020 + zoom-window = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 70497 71021 melpaBuild { 70498 71022 pname = "zoom-window"; 70499 - version = "20160918.2110"; 71023 + version = "20161123.405"; 70500 71024 src = fetchFromGitHub { 70501 71025 owner = "syohex"; 70502 71026 repo = "emacs-zoom-window"; 70503 - rev = "1c39773c69b9833382c26101c6ff60bfa218cc09"; 70504 - sha256 = "08yw2ibn5zc40f8l3bnpp87w3nf5zzlzhi0f61a6px4ix2mqlsv4"; 71027 + rev = "eefe36d26e04a9f89aad27671d1f06e9d4736ac6"; 71028 + sha256 = "08splg49ncgfsap3ivpc974wmg22ikshwv33l0i6advjjv9cskhm"; 70505 71029 }; 70506 71030 recipeFile = fetchurl { 70507 71031 url = "https://raw.githubusercontent.com/milkypostman/melpa/8a55cc66cc0deb1c24023f638b8e920c9d975859/recipes/zoom-window"; 70508 71032 sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; 70509 71033 name = "zoom-window"; 70510 71034 }; 70511 - packageRequires = [ cl-lib emacs ]; 71035 + packageRequires = [ emacs ]; 70512 71036 meta = { 70513 71037 homepage = "https://melpa.org/#/zoom-window"; 70514 71038 license = lib.licenses.free;
+452 -253
pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
··· 1052 1052 amd-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, js2-mode, js2-refactor, lib, makey, melpaBuild, projectile, s, seq }: 1053 1053 melpaBuild { 1054 1054 pname = "amd-mode"; 1055 - version = "2.5"; 1055 + version = "2.7"; 1056 1056 src = fetchFromGitHub { 1057 1057 owner = "NicolasPetton"; 1058 1058 repo = "amd-mode.el"; 1059 - rev = "c610c1a85728d161d28854d7373fc13b3dec311b"; 1060 - sha256 = "1ghs3gh410c9w2v17zb93wk184lwl5izpkzrm0qn37qz8i87jqcr"; 1059 + rev = "a50cbdd53bc0e1ed0f96a425bd29f5b706161c18"; 1060 + sha256 = "12wxjgvxhnmn27dl2p5m90nxmfkk64w1fn4zmxn2a4fpvb7y579s"; 1061 1061 }; 1062 1062 recipeFile = fetchurl { 1063 1063 url = "https://raw.githubusercontent.com/milkypostman/melpa/e4d6e9935e4935c9de769c7bf1c1b6dd256e10da/recipes/amd-mode"; ··· 1292 1292 ansible-vault = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 1293 1293 melpaBuild { 1294 1294 pname = "ansible-vault"; 1295 - version = "0.3.2"; 1295 + version = "0.3.3"; 1296 1296 src = fetchFromGitHub { 1297 1297 owner = "zellio"; 1298 1298 repo = "ansible-vault-mode"; 1299 - rev = "57fd8017ab93cc6a1f9bbc795d494a069557a1cb"; 1300 - sha256 = "04sdgg98z9gydgx8sf4nfmkwazm799gyvywssfa0mkcvza2z7s21"; 1299 + rev = "f4d9b3a77490071b8c59caa473bb54df86e90362"; 1300 + sha256 = "0f6dmj3b57sy6xl6d50982lnsin0lzyjwk0q1blpz0h2imadr8qm"; 1301 1301 }; 1302 1302 recipeFile = fetchurl { 1303 1303 url = "https://raw.githubusercontent.com/milkypostman/melpa/2bff0da29a9b883e53a3d211c5577a3e0bc263a0/recipes/ansible-vault"; ··· 1627 1627 atomic-chrome = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, websocket }: 1628 1628 melpaBuild { 1629 1629 pname = "atomic-chrome"; 1630 - version = "1.0.1"; 1630 + version = "2.0.0"; 1631 1631 src = fetchFromGitHub { 1632 1632 owner = "alpha22jp"; 1633 1633 repo = "atomic-chrome"; 1634 - rev = "439b669b10b671f5795fd5557abfbc30e0d6fbb4"; 1635 - sha256 = "1bwng9qdys5wx0x9rn4nak92qpspfsb04xrl0p3szl5izz427cb6"; 1634 + rev = "38ce9127285e1ff45f0f39b9da36a682103bdb96"; 1635 + sha256 = "01zwpdmq13iy3hsgijnqsg0yahjxngfbrnn1dd2x1bzpmr8hpxnz"; 1636 1636 }; 1637 1637 recipeFile = fetchurl { 1638 1638 url = "https://raw.githubusercontent.com/milkypostman/melpa/35785773942a5510e2317ded5bdf872ffe434e8c/recipes/atomic-chrome"; ··· 2557 2557 bog = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 2558 2558 melpaBuild { 2559 2559 pname = "bog"; 2560 - version = "1.2.0"; 2560 + version = "1.3.0"; 2561 2561 src = fetchFromGitHub { 2562 2562 owner = "kyleam"; 2563 2563 repo = "bog"; 2564 - rev = "ee403848c65c6141888344144958bc979596f5d4"; 2565 - sha256 = "0414kdwgvmz0bmbaaz7zxf83rdjzmzcvvk5b332c679hk0b9kxg7"; 2564 + rev = "cf7817de3f37ce2404ee637a655f1a511b829585"; 2565 + sha256 = "0h166w8bg864ppwg64m0vhg649mmkclld85zcd0lmbqa9wfml5j5"; 2566 2566 }; 2567 2567 recipeFile = fetchurl { 2568 2568 url = "https://raw.githubusercontent.com/milkypostman/melpa/19fd0bf2f8e52c79120c492a6dcabdd51b465d35/recipes/bog"; ··· 3807 3807 clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 3808 3808 melpaBuild { 3809 3809 pname = "clojure-mode"; 3810 - version = "5.5.2"; 3810 + version = "5.6.0"; 3811 3811 src = fetchFromGitHub { 3812 3812 owner = "clojure-emacs"; 3813 3813 repo = "clojure-mode"; 3814 - rev = "464c9de6734cb4b426137674041d695c2a7c7ef9"; 3815 - sha256 = "0xg85x5lrh1d8vlnkzrxpdrcqsqngjy6xp7p509wnhx7k8j85vpm"; 3814 + rev = "2ee4ca6c3a156afac4565ef250b6a3b99e0e8d3d"; 3815 + sha256 = "1n77d6mn2z7v6w52kx6y4d6sqpbx21mnx0s37kkj0zwwj3b9rk2y"; 3816 3816 }; 3817 3817 recipeFile = fetchurl { 3818 3818 url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode"; ··· 3828 3828 clojure-mode-extra-font-locking = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: 3829 3829 melpaBuild { 3830 3830 pname = "clojure-mode-extra-font-locking"; 3831 - version = "5.5.2"; 3831 + version = "5.6.0"; 3832 3832 src = fetchFromGitHub { 3833 3833 owner = "clojure-emacs"; 3834 3834 repo = "clojure-mode"; 3835 - rev = "464c9de6734cb4b426137674041d695c2a7c7ef9"; 3836 - sha256 = "0xg85x5lrh1d8vlnkzrxpdrcqsqngjy6xp7p509wnhx7k8j85vpm"; 3835 + rev = "2ee4ca6c3a156afac4565ef250b6a3b99e0e8d3d"; 3836 + sha256 = "1n77d6mn2z7v6w52kx6y4d6sqpbx21mnx0s37kkj0zwwj3b9rk2y"; 3837 3837 }; 3838 3838 recipeFile = fetchurl { 3839 3839 url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode-extra-font-locking"; ··· 3933 3933 cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 3934 3934 melpaBuild { 3935 3935 pname = "cmake-mode"; 3936 - version = "3.7.0pre3"; 3936 + version = "3.7.0"; 3937 3937 src = fetchFromGitHub { 3938 3938 owner = "Kitware"; 3939 3939 repo = "CMake"; 3940 - rev = "adf5f253ec029aec4ee7aadb95c6f908030fb98b"; 3941 - sha256 = "1dbpxhs3ss91b9q4cvx8fl60zf7w8jad4cbm5cqpzhi6jfac5gxn"; 3940 + rev = "5cfc2e926af645840c6a0464451af18f08528879"; 3941 + sha256 = "13kxazjv6vsxsiyyr7qk0gnw4q55z0pa5icz0b4swvm96c4kywg3"; 3942 3942 }; 3943 3943 recipeFile = fetchurl { 3944 3944 url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode"; ··· 4080 4080 color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 4081 4081 melpaBuild { 4082 4082 pname = "color-theme-sanityinc-tomorrow"; 4083 - version = "1.16"; 4083 + version = "1.17"; 4084 4084 src = fetchFromGitHub { 4085 4085 owner = "purcell"; 4086 4086 repo = "color-theme-sanityinc-tomorrow"; 4087 - rev = "55db9979397bd66446eb1927e08c5a22df9f0eea"; 4088 - sha256 = "0w99ypq048xldl1mrgc7qr4n2770dm48aknhp7q0176l43nvxnqf"; 4087 + rev = "81d8990085960824f700520d08027e6aca58feaa"; 4088 + sha256 = "1x3aq6hadp158vh8mf9hmj5rikq0qz7a1frv7vbl39xr3wcnjj23"; 4089 4089 }; 4090 4090 recipeFile = fetchurl { 4091 4091 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-tomorrow"; ··· 4185 4185 company = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 4186 4186 melpaBuild { 4187 4187 pname = "company"; 4188 - version = "0.9.0"; 4188 + version = "0.9.2"; 4189 4189 src = fetchFromGitHub { 4190 4190 owner = "company-mode"; 4191 4191 repo = "company-mode"; 4192 - rev = "212c8fc3101781a2f1c55ca61772eb75a2046e87"; 4193 - sha256 = "04ffjwhk9y6slmxgmir08ilppy3q86qzhqg7v9kp0fzkwaap5fyf"; 4192 + rev = "c9912e9ba7ef441677c1a9de7e14f78cb2da5e0e"; 4193 + sha256 = "1jc9mnqj38lnn3yxkcixlwgqkxb7lsyzqybakk74mh3l3gr9cv8k"; 4194 4194 }; 4195 4195 recipeFile = fetchurl { 4196 4196 url = "https://raw.githubusercontent.com/milkypostman/melpa/96e7b4184497d0d0db532947f2801398b72432e4/recipes/company"; ··· 4227 4227 company-ansible = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 4228 4228 melpaBuild { 4229 4229 pname = "company-ansible"; 4230 - version = "0.3.0"; 4230 + version = "0.4.0"; 4231 4231 src = fetchFromGitHub { 4232 4232 owner = "krzysztof-magosa"; 4233 4233 repo = "company-ansible"; 4234 - rev = "9f22c09009734bd281fcbb89d8903a04b8a72b74"; 4235 - sha256 = "0z6ix3sihzzkk4jgi1qg5ma9wczzdl55kc0y93jnfn69yk3l0ikn"; 4234 + rev = "2e3264670c861ecbe862f7618241367ab497b5ff"; 4235 + sha256 = "0a0pb3amsxj6m8ka12ny1w9qjy3dg7vsxdsy1wg3qzanj2pdsk4l"; 4236 4236 }; 4237 4237 recipeFile = fetchurl { 4238 4238 url = "https://raw.githubusercontent.com/milkypostman/melpa/7b44cd4bd9f9a7c942ca3f3bd88b2ce61ffff130/recipes/company-ansible"; ··· 4353 4353 company-emoji = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: 4354 4354 melpaBuild { 4355 4355 pname = "company-emoji"; 4356 - version = "2.4.0"; 4356 + version = "2.4.1"; 4357 4357 src = fetchFromGitHub { 4358 4358 owner = "dunn"; 4359 4359 repo = "company-emoji"; 4360 - rev = "3dad255d6928e28e7a700d8cbac060f87d43d25e"; 4361 - sha256 = "1g4dxps5s93ivs0ca6blia8spchdykny12c1gygm6jh9m6k7kfvh"; 4360 + rev = "b971ab0a66126f0d1410254ba1e21f17c2270101"; 4361 + sha256 = "1c9r1j7xpq6c27y6akfarrcg87idww3c10rkhm26m1vprqk73vr3"; 4362 4362 }; 4363 4363 recipeFile = fetchurl { 4364 4364 url = "https://raw.githubusercontent.com/milkypostman/melpa/5733dccdffe97911a30352fbcda2900c33d79810/recipes/company-emoji"; ··· 4671 4671 license = lib.licenses.free; 4672 4672 }; 4673 4673 }) {}; 4674 - company-ycmd = callPackage ({ company, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, s, ycmd }: 4674 + company-ycmd = callPackage ({ company, dash, deferred, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s, ycmd }: 4675 4675 melpaBuild { 4676 4676 pname = "company-ycmd"; 4677 - version = "0.9"; 4677 + version = "1.0"; 4678 4678 src = fetchFromGitHub { 4679 4679 owner = "abingham"; 4680 4680 repo = "emacs-ycmd"; 4681 - rev = "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c"; 4682 - sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; 4681 + rev = "be21ca7f807e70812b6fc0e0a4ea83b41723d815"; 4682 + sha256 = "1q30k8rhk3plknkk544h2dk48yqmxwh4xp3rq1lz8isc3580qwxx"; 4683 4683 }; 4684 4684 recipeFile = fetchurl { 4685 4685 url = "https://raw.githubusercontent.com/milkypostman/melpa/1138c8cc239183a2435ce8c1a6df5163e5fed2ea/recipes/company-ycmd"; 4686 4686 sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk"; 4687 4687 name = "company-ycmd"; 4688 4688 }; 4689 - packageRequires = [ company deferred s ycmd ]; 4689 + packageRequires = [ company dash deferred f let-alist s ycmd ]; 4690 4690 meta = { 4691 4691 homepage = "https://melpa.org/#/company-ycmd"; 4692 4692 license = lib.licenses.free; ··· 4923 4923 license = lib.licenses.free; 4924 4924 }; 4925 4925 }) {}; 4926 + counsel-bbdb = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: 4927 + melpaBuild { 4928 + pname = "counsel-bbdb"; 4929 + version = "0.0.1"; 4930 + src = fetchFromGitHub { 4931 + owner = "redguardtoo"; 4932 + repo = "counsel-bbdb"; 4933 + rev = "297d0c7e6e1eaafcd5e188724fea8e8f26b95555"; 4934 + sha256 = "14gw4d855v2nvqh06vs9rzs816pn1hp4rhfikb0wzg1ay6gdrwi7"; 4935 + }; 4936 + recipeFile = fetchurl { 4937 + url = "https://raw.githubusercontent.com/milkypostman/melpa/0ed9bcdb1f25a6dd743c1dac2bb6cda73a5a5dc2/recipes/counsel-bbdb"; 4938 + sha256 = "14d9mk44skpmyj0zkqwz97j80r630j7s5hfrrhlsafdpl5aafjxp"; 4939 + name = "counsel-bbdb"; 4940 + }; 4941 + packageRequires = [ emacs ivy ]; 4942 + meta = { 4943 + homepage = "https://melpa.org/#/counsel-bbdb"; 4944 + license = lib.licenses.free; 4945 + }; 4946 + }) {}; 4926 4947 counsel-dash = callPackage ({ counsel, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, helm-dash, lib, melpaBuild }: 4927 4948 melpaBuild { 4928 4949 pname = "counsel-dash"; ··· 5323 5344 d-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 5324 5345 melpaBuild { 5325 5346 pname = "d-mode"; 5326 - version = "2.0.8"; 5347 + version = "2.0.9"; 5327 5348 src = fetchFromGitHub { 5328 5349 owner = "Emacs-D-Mode-Maintainers"; 5329 5350 repo = "Emacs-D-Mode"; 5330 - rev = "71ab5eb661851dd4bfa8a589b1001991ee6c3f31"; 5331 - sha256 = "0kbncsaxj93jd79sd6dkap29fz8z100wi1nk0njd568glm8q4k5g"; 5351 + rev = "98af62e67026fee1dda9155e1a463917fc83802e"; 5352 + sha256 = "0fzplvi1sm8k2sabfdvrd7j2xypwqh0g9v1mxa75dajdmcd85zpj"; 5332 5353 }; 5333 5354 recipeFile = fetchurl { 5334 5355 url = "https://raw.githubusercontent.com/milkypostman/melpa/3c13e9ccc358743de660b1f0e89d6bb709c42bff/recipes/d-mode"; ··· 5446 5467 license = lib.licenses.free; 5447 5468 }; 5448 5469 }) {}; 5470 + dashboard = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, page-break-lines }: 5471 + melpaBuild { 5472 + pname = "dashboard"; 5473 + version = "1.0.1"; 5474 + src = fetchFromGitHub { 5475 + owner = "rakanalh"; 5476 + repo = "emacs-dashboard"; 5477 + rev = "7db073f60a2505bf49e9b94cfedd235f1e01e471"; 5478 + sha256 = "1cryijlb79r4dlkmb0nwaamfi18cw0bfr2c1js7vvp5lqs8sb87w"; 5479 + }; 5480 + recipeFile = fetchurl { 5481 + url = "https://raw.githubusercontent.com/milkypostman/melpa/b047625aebdbf7b5d644b55afbdccfc6c4ac14a8/recipes/dashboard"; 5482 + sha256 = "04lp8ylfnbdj65s8z0m5kyj4rwxcsdwinlkpj00j1my0m74y5i0p"; 5483 + name = "dashboard"; 5484 + }; 5485 + packageRequires = [ emacs page-break-lines ]; 5486 + meta = { 5487 + homepage = "https://melpa.org/#/dashboard"; 5488 + license = lib.licenses.free; 5489 + }; 5490 + }) {}; 5449 5491 date-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 5450 5492 melpaBuild { 5451 5493 pname = "date-at-point"; ··· 5990 6032 license = lib.licenses.free; 5991 6033 }; 5992 6034 }) {}; 5993 - dired-k = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 6035 + dired-k = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 5994 6036 melpaBuild { 5995 6037 pname = "dired-k"; 5996 - version = "0.18"; 6038 + version = "0.19"; 5997 6039 src = fetchFromGitHub { 5998 6040 owner = "syohex"; 5999 6041 repo = "emacs-dired-k"; 6000 - rev = "57f263b42ea83c6a1cf391fcccffd0f36d213f35"; 6001 - sha256 = "1w2grc91m71k9mr4n423vbnakkqg6vc10bham869xs3yr8fs7nay"; 6042 + rev = "3f0b9315f87b0f930d51089e311d41282d5f8b15"; 6043 + sha256 = "09xh097v3fd0mjxqlmbfwjlr1v4a99mj4rvwdb6kqgajmlhgi9hx"; 6002 6044 }; 6003 6045 recipeFile = fetchurl { 6004 6046 url = "https://raw.githubusercontent.com/milkypostman/melpa/7f8a828b2fbfa11c4b74192d9d0cfa0ad34b3da7/recipes/dired-k"; 6005 6047 sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; 6006 6048 name = "dired-k"; 6007 6049 }; 6008 - packageRequires = [ cl-lib emacs ]; 6050 + packageRequires = [ emacs ]; 6009 6051 meta = { 6010 6052 homepage = "https://melpa.org/#/dired-k"; 6011 6053 license = lib.licenses.free; ··· 6462 6504 drag-stuff = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 6463 6505 melpaBuild { 6464 6506 pname = "drag-stuff"; 6465 - version = "0.2.0"; 6507 + version = "0.3.0"; 6466 6508 src = fetchFromGitHub { 6467 6509 owner = "rejeep"; 6468 6510 repo = "drag-stuff.el"; 6469 - rev = "07332b9f4725ad11d123e0fc5593c0c1c37db381"; 6470 - sha256 = "131ww26pb97q2gyjhfrsf7nw2pi5b1kba0cgl97qc017sfhg92v6"; 6511 + rev = "d49fe376d24f0f8ac5ade67b6d7fccc2487c81db"; 6512 + sha256 = "1jrr59iazih3imkl9ja1lbni9v3xv6b8gmqs015g2mxhlql35jka"; 6471 6513 }; 6472 6514 recipeFile = fetchurl { 6473 6515 url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/drag-stuff"; ··· 6588 6630 dyalog-mode = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }: 6589 6631 melpaBuild { 6590 6632 pname = "dyalog-mode"; 6591 - version = "0.3"; 6633 + version = "0.7"; 6592 6634 src = fetchhg { 6593 6635 url = "https://bitbucket.com/harsman/dyalog-mode"; 6594 - rev = "18cd7ba257ca"; 6595 - sha256 = "0lf6na6yvdk5n9viy08cdwbgphlcxksynbkvi2f02saxdzdy368v"; 6636 + rev = "befb5c650dfd"; 6637 + sha256 = "154bm7l1ra3l9lj9l1x21qi7f57k46kg24hyalrbawjw3q8c5np2"; 6596 6638 }; 6597 6639 recipeFile = fetchurl { 6598 6640 url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/dyalog-mode"; ··· 7175 7217 egison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 7176 7218 melpaBuild { 7177 7219 pname = "egison-mode"; 7178 - version = "3.6.1"; 7220 + version = "3.6.3"; 7179 7221 src = fetchFromGitHub { 7180 7222 owner = "egisatoshi"; 7181 7223 repo = "egison3"; 7182 - rev = "80aaf63ffa357df2106a192ee04eef54a8dae2fd"; 7183 - sha256 = "0wnyyl70jssdwgcd9im5jwxnpn7l07d0v6dx9y8546d254xdwpwx"; 7224 + rev = "4cf38946096c185ac794d594a791da23675297aa"; 7225 + sha256 = "0k6qh99jbzirgsa3qkhcxsivncbvk5wr4yag2s9c2y9akipxivrq"; 7184 7226 }; 7185 7227 recipeFile = fetchurl { 7186 7228 url = "https://raw.githubusercontent.com/milkypostman/melpa/f543dd136e2af6c36b12073ea75b3c4d4bc79769/recipes/egison-mode"; ··· 7593 7635 elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: 7594 7636 melpaBuild { 7595 7637 pname = "elm-mode"; 7596 - version = "0.19.9"; 7638 + version = "0.20.2"; 7597 7639 src = fetchFromGitHub { 7598 7640 owner = "jcollard"; 7599 7641 repo = "elm-mode"; 7600 - rev = "a842d54348846746ef249a87ac7961a9a787947f"; 7601 - sha256 = "1ycbc2dz8qmdxpac6yz4dxp531r50nhzdxaknm5iwz6d94pcfgni"; 7642 + rev = "529c20acb9efda756b69e267d73d33c66fa08293"; 7643 + sha256 = "08zl1v0k3dnn8g06l3xf1lp31fp60jpk6f3lkczi1l6ns36g11jx"; 7602 7644 }; 7603 7645 recipeFile = fetchurl { 7604 7646 url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1a4d786b137f61ed3a1dd4ec236d0db120e571/recipes/elm-mode"; ··· 8016 8058 license = lib.licenses.free; 8017 8059 }; 8018 8060 }) {}; 8019 - emamux = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 8061 + emamux = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 8020 8062 melpaBuild { 8021 8063 pname = "emamux"; 8022 - version = "0.13"; 8064 + version = "0.14"; 8023 8065 src = fetchFromGitHub { 8024 8066 owner = "syohex"; 8025 8067 repo = "emacs-emamux"; 8026 - rev = "53177ca59ed2824cc0837677af5a13a580691a71"; 8027 - sha256 = "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67"; 8068 + rev = "573dd1cf18584a1fd240efb16c7726b6fd790b73"; 8069 + sha256 = "19y69qw79miim9cz5ji54gwspjkcp9g2c1xr5s7jj2fiabnxax6b"; 8028 8070 }; 8029 8071 recipeFile = fetchurl { 8030 8072 url = "https://raw.githubusercontent.com/milkypostman/melpa/6de1ed3dfccb9f7e7b8586e8334af472a4988840/recipes/emamux"; 8031 8073 sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; 8032 8074 name = "emamux"; 8033 8075 }; 8034 - packageRequires = [ cl-lib emacs ]; 8076 + packageRequires = [ emacs ]; 8035 8077 meta = { 8036 8078 homepage = "https://melpa.org/#/emamux"; 8037 8079 license = lib.licenses.free; ··· 8643 8685 erlang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 8644 8686 melpaBuild { 8645 8687 pname = "erlang"; 8646 - version = "19.1.5"; 8688 + version = "19.1.6"; 8647 8689 src = fetchFromGitHub { 8648 8690 owner = "erlang"; 8649 8691 repo = "otp"; 8650 - rev = "926391fbb8761d5833b3a6f5c9e523fcda373c6d"; 8651 - sha256 = "1bbwnpam05rcsivmrh13mkcyb04a08d1fyb4y5w0y0gdpbzn7jq9"; 8692 + rev = "2b41d8f318b7e5ec139d42fd2f01a132699be839"; 8693 + sha256 = "120dqi8h2fwqfmh9g2nmkf153zlglzw9kkddz57xqvqq5arcs72y"; 8652 8694 }; 8653 8695 recipeFile = fetchurl { 8654 8696 url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang"; ··· 9208 9250 evil-colemak-basics = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 9209 9251 melpaBuild { 9210 9252 pname = "evil-colemak-basics"; 9211 - version = "1.0.0"; 9253 + version = "2.0.0"; 9212 9254 src = fetchFromGitHub { 9213 9255 owner = "wbolster"; 9214 9256 repo = "evil-colemak-basics"; 9215 - rev = "4be54df939035daa039e323a95c052f7c99b6f51"; 9216 - sha256 = "1n7nw5mzpwzp8r791qsis2f2ak5f0m2d129r0wmbyx9zykx5rm7v"; 9257 + rev = "f976bda20098c43be1418c36520a57467c8c6c13"; 9258 + sha256 = "18f1k4z7lkh237sz4p1xz4sxzs41ywmvd6dj7k9b6d9dscv3yxws"; 9217 9259 }; 9218 9260 recipeFile = fetchurl { 9219 9261 url = "https://raw.githubusercontent.com/milkypostman/melpa/945417d19faf492fb678aee3ba692d14e7518d85/recipes/evil-colemak-basics"; ··· 9376 9418 evil-matchit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 9377 9419 melpaBuild { 9378 9420 pname = "evil-matchit"; 9379 - version = "2.1.6"; 9421 + version = "2.1.7"; 9380 9422 src = fetchFromGitHub { 9381 9423 owner = "redguardtoo"; 9382 9424 repo = "evil-matchit"; 9383 - rev = "51d46747e39dc247ea4b72839421b85f53d487be"; 9384 - sha256 = "15fr19gv2rf8pvns7r0jmy1z2f08bjprqxz3hj1fzn9wgc42iwg7"; 9425 + rev = "4846518b5999892ceaf3ef143cc734685bca325f"; 9426 + sha256 = "0009443f7a1k2746qr7p06jv4ksq0w3sf22pjbm0jrnhaw0p66cx"; 9385 9427 }; 9386 9428 recipeFile = fetchurl { 9387 9429 url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit"; ··· 9397 9439 evil-mc = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 9398 9440 melpaBuild { 9399 9441 pname = "evil-mc"; 9400 - version = "0.0.2"; 9442 + version = "0.0.3"; 9401 9443 src = fetchFromGitHub { 9402 9444 owner = "gabesoft"; 9403 9445 repo = "evil-mc"; 9404 - rev = "ccda120de2fea505147a85232c9500285edd98e8"; 9405 - sha256 = "199wcxjqyr9grvw0kahzhkh8kcg53baxhahizrknwav8mpmrvj9z"; 9446 + rev = "be2259b8cedd62011b25ddbcc1774bbbe9a66c61"; 9447 + sha256 = "0p435ykkq41nksd40qczlhz6kvs2zpkxch661wy0w93wffwnq3b9"; 9406 9448 }; 9407 9449 recipeFile = fetchurl { 9408 9450 url = "https://raw.githubusercontent.com/milkypostman/melpa/96770d778a03ab012fb82a3a0122983db6f9b0c4/recipes/evil-mc"; ··· 9880 9922 eyebrowse = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 9881 9923 melpaBuild { 9882 9924 pname = "eyebrowse"; 9883 - version = "0.7.1"; 9925 + version = "0.7.2"; 9884 9926 src = fetchFromGitHub { 9885 9927 owner = "wasamasa"; 9886 9928 repo = "eyebrowse"; 9887 - rev = "41344e2aa2a919eae62ecedf80dcd41456084bcc"; 9888 - sha256 = "1b9341qqzr43sq0mjb2rkc5r9a2fyzwh1dm2qh27rcsb3vg219h2"; 9929 + rev = "a009536514409fdf0a1745504a7d7e0e376cc2c9"; 9930 + sha256 = "0kw13w3q1q4gb3ql728bk9m0rymkp21rrjmy4hyx8im84xh093ls"; 9889 9931 }; 9890 9932 recipeFile = fetchurl { 9891 9933 url = "https://raw.githubusercontent.com/milkypostman/melpa/90d052bfc0b94cf177e33b2ffc01a45d254fc1b1/recipes/eyebrowse"; ··· 10787 10829 license = lib.licenses.free; 10788 10830 }; 10789 10831 }) {}; 10790 - flycheck-pos-tip = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, pos-tip }: 10832 + flycheck-pos-tip = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, pos-tip }: 10791 10833 melpaBuild { 10792 10834 pname = "flycheck-pos-tip"; 10793 - version = "0.1"; 10835 + version = "0.3"; 10794 10836 src = fetchFromGitHub { 10795 10837 owner = "flycheck"; 10796 10838 repo = "flycheck-pos-tip"; 10797 - rev = "0c2b31b615fa294f329f3cc387b464525ce3392d"; 10798 - sha256 = "0v23yc8znzjp44lrpfzqb4hc3psad14hsnvqcp8f1yyhgvdx35n8"; 10839 + rev = "3f1d5297fdff44a14ee624160eefdc678e2bd0bd"; 10840 + sha256 = "0qxx3xdgk5l793yg5ffbi5qhrxrf6akwdz93n2vibpkdjkvzyh2y"; 10799 10841 }; 10800 10842 recipeFile = fetchurl { 10801 10843 url = "https://raw.githubusercontent.com/milkypostman/melpa/698843f75e17b9e6160487c0153f9d6b4af288f6/recipes/flycheck-pos-tip"; 10802 10844 sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; 10803 10845 name = "flycheck-pos-tip"; 10804 10846 }; 10805 - packageRequires = [ dash flycheck pos-tip ]; 10847 + packageRequires = [ emacs flycheck pos-tip ]; 10806 10848 meta = { 10807 10849 homepage = "https://melpa.org/#/flycheck-pos-tip"; 10808 10850 license = lib.licenses.free; ··· 10892 10934 license = lib.licenses.free; 10893 10935 }; 10894 10936 }) {}; 10895 - flycheck-ycmd = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, ycmd }: 10937 + flycheck-ycmd = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, ycmd }: 10896 10938 melpaBuild { 10897 10939 pname = "flycheck-ycmd"; 10898 - version = "0.9"; 10940 + version = "1.0"; 10899 10941 src = fetchFromGitHub { 10900 10942 owner = "abingham"; 10901 10943 repo = "emacs-ycmd"; 10902 - rev = "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c"; 10903 - sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; 10944 + rev = "be21ca7f807e70812b6fc0e0a4ea83b41723d815"; 10945 + sha256 = "1q30k8rhk3plknkk544h2dk48yqmxwh4xp3rq1lz8isc3580qwxx"; 10904 10946 }; 10905 10947 recipeFile = fetchurl { 10906 10948 url = "https://raw.githubusercontent.com/milkypostman/melpa/332e5585963c04112a55894fe7151c380930b17c/recipes/flycheck-ycmd"; 10907 10949 sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv"; 10908 10950 name = "flycheck-ycmd"; 10909 10951 }; 10910 - packageRequires = [ dash emacs flycheck ycmd ]; 10952 + packageRequires = [ dash emacs flycheck let-alist ycmd ]; 10911 10953 meta = { 10912 10954 homepage = "https://melpa.org/#/flycheck-ycmd"; 10913 10955 license = lib.licenses.free; ··· 11273 11315 flyspell-correct = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 11274 11316 melpaBuild { 11275 11317 pname = "flyspell-correct"; 11276 - version = "0.3"; 11318 + version = "0.4"; 11277 11319 src = fetchFromGitHub { 11278 11320 owner = "d12frosted"; 11279 11321 repo = "flyspell-correct"; 11280 - rev = "d50f3661ad545b30acac4c8819eda2238ff375fc"; 11281 - sha256 = "1j39vsmcz2qwab4yld7asvf4wm3249728fdyf7myiqg5bnivd8ig"; 11322 + rev = "7e7f94a36699c7e7bba728df722e13a7b4af4b73"; 11323 + sha256 = "16lbhbgyrpp9ig9li1v31bs9i5z8dchjb1vrkcih020p3g9vwi27"; 11282 11324 }; 11283 11325 recipeFile = fetchurl { 11284 11326 url = "https://raw.githubusercontent.com/milkypostman/melpa/fa06fbe3bc40ae5e3f6d10dee93a9d49e9288ba5/recipes/flyspell-correct"; ··· 11294 11336 flyspell-correct-helm = callPackage ({ fetchFromGitHub, fetchurl, flyspell-correct, helm, lib, melpaBuild }: 11295 11337 melpaBuild { 11296 11338 pname = "flyspell-correct-helm"; 11297 - version = "0.3"; 11339 + version = "0.4"; 11298 11340 src = fetchFromGitHub { 11299 11341 owner = "d12frosted"; 11300 11342 repo = "flyspell-correct"; 11301 - rev = "d50f3661ad545b30acac4c8819eda2238ff375fc"; 11302 - sha256 = "1j39vsmcz2qwab4yld7asvf4wm3249728fdyf7myiqg5bnivd8ig"; 11343 + rev = "7e7f94a36699c7e7bba728df722e13a7b4af4b73"; 11344 + sha256 = "16lbhbgyrpp9ig9li1v31bs9i5z8dchjb1vrkcih020p3g9vwi27"; 11303 11345 }; 11304 11346 recipeFile = fetchurl { 11305 11347 url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-helm"; ··· 11315 11357 flyspell-correct-ivy = callPackage ({ fetchFromGitHub, fetchurl, flyspell-correct, ivy, lib, melpaBuild }: 11316 11358 melpaBuild { 11317 11359 pname = "flyspell-correct-ivy"; 11318 - version = "0.3"; 11360 + version = "0.4"; 11319 11361 src = fetchFromGitHub { 11320 11362 owner = "d12frosted"; 11321 11363 repo = "flyspell-correct"; 11322 - rev = "d50f3661ad545b30acac4c8819eda2238ff375fc"; 11323 - sha256 = "1j39vsmcz2qwab4yld7asvf4wm3249728fdyf7myiqg5bnivd8ig"; 11364 + rev = "7e7f94a36699c7e7bba728df722e13a7b4af4b73"; 11365 + sha256 = "16lbhbgyrpp9ig9li1v31bs9i5z8dchjb1vrkcih020p3g9vwi27"; 11324 11366 }; 11325 11367 recipeFile = fetchurl { 11326 11368 url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-ivy"; ··· 11336 11378 flyspell-correct-popup = callPackage ({ fetchFromGitHub, fetchurl, flyspell-correct, lib, melpaBuild, popup }: 11337 11379 melpaBuild { 11338 11380 pname = "flyspell-correct-popup"; 11339 - version = "0.3"; 11381 + version = "0.4"; 11340 11382 src = fetchFromGitHub { 11341 11383 owner = "d12frosted"; 11342 11384 repo = "flyspell-correct"; 11343 - rev = "d50f3661ad545b30acac4c8819eda2238ff375fc"; 11344 - sha256 = "1j39vsmcz2qwab4yld7asvf4wm3249728fdyf7myiqg5bnivd8ig"; 11385 + rev = "7e7f94a36699c7e7bba728df722e13a7b4af4b73"; 11386 + sha256 = "16lbhbgyrpp9ig9li1v31bs9i5z8dchjb1vrkcih020p3g9vwi27"; 11345 11387 }; 11346 11388 recipeFile = fetchurl { 11347 11389 url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-popup"; ··· 11420 11462 focus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 11421 11463 melpaBuild { 11422 11464 pname = "focus"; 11423 - version = "0.1.0"; 11465 + version = "0.1.1"; 11424 11466 src = fetchFromGitHub { 11425 11467 owner = "larstvei"; 11426 11468 repo = "Focus"; 11427 - rev = "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9"; 11428 - sha256 = "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc"; 11469 + rev = "75202c9445f52eab6fb82f00006f37cd20dae6b2"; 11470 + sha256 = "1v9y3dp7sd4rsm31myp3l1jxpwjw3madajb6yz9rw0yhdirfwgbg"; 11429 11471 }; 11430 11472 recipeFile = fetchurl { 11431 11473 url = "https://raw.githubusercontent.com/milkypostman/melpa/4e8f1217224514f9b048b7101c89e3b1a305821e/recipes/focus"; ··· 12788 12830 license = lib.licenses.free; 12789 12831 }; 12790 12832 }) {}; 12791 - gnome-calendar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 12792 - melpaBuild { 12793 - pname = "gnome-calendar"; 12794 - version = "0.2"; 12795 - src = fetchFromGitHub { 12796 - owner = "NicolasPetton"; 12797 - repo = "gnome-calendar.el"; 12798 - rev = "58c3a3c32aff9901c679bdf9091ed934897b84a0"; 12799 - sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc"; 12800 - }; 12801 - recipeFile = fetchurl { 12802 - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e497668d65f0eabd15e39b7492adb395a5a8e75/recipes/gnome-calendar"; 12803 - sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6"; 12804 - name = "gnome-calendar"; 12805 - }; 12806 - packageRequires = []; 12807 - meta = { 12808 - homepage = "https://melpa.org/#/gnome-calendar"; 12809 - license = lib.licenses.free; 12810 - }; 12811 - }) {}; 12812 12833 gntp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 12813 12834 melpaBuild { 12814 12835 pname = "gntp"; ··· 12893 12914 license = lib.licenses.free; 12894 12915 }; 12895 12916 }) {}; 12896 - go-add-tags = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 12917 + go-add-tags = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 12897 12918 melpaBuild { 12898 12919 pname = "go-add-tags"; 12899 - version = "0.3"; 12920 + version = "0.4"; 12900 12921 src = fetchFromGitHub { 12901 12922 owner = "syohex"; 12902 12923 repo = "emacs-go-add-tags"; 12903 - rev = "facff8dbb65fb56874d63a63edfd072eceed7904"; 12904 - sha256 = "14bflgc9s9hslwisf4id0pc3asr5qvppwn1w14vvij3plal4mfhi"; 12924 + rev = "54879945e46a0884c5f93d7fd6c866a9cdf401ac"; 12925 + sha256 = "1gr65skrd41pk46ilfsbxfdng4br6h9c6blf1q1wx6i9ylhs0ak5"; 12905 12926 }; 12906 12927 recipeFile = fetchurl { 12907 12928 url = "https://raw.githubusercontent.com/milkypostman/melpa/55d3b893bd68d3d2d86ecdbb4ed442edd256516a/recipes/go-add-tags"; 12908 12929 sha256 = "0nvas44rsvqzk2ay5bhzkbrnzql13vnxq9pk4lp4mvp86dda9qim"; 12909 12930 name = "go-add-tags"; 12910 12931 }; 12911 - packageRequires = [ cl-lib emacs s ]; 12932 + packageRequires = [ emacs s ]; 12912 12933 meta = { 12913 12934 homepage = "https://melpa.org/#/go-add-tags"; 12914 12935 license = lib.licenses.free; ··· 13001 13022 go-impl = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: 13002 13023 melpaBuild { 13003 13024 pname = "go-impl"; 13004 - version = "0.12"; 13025 + version = "0.13"; 13005 13026 src = fetchFromGitHub { 13006 13027 owner = "syohex"; 13007 13028 repo = "emacs-go-impl"; 13008 - rev = "d4cd57e5d1769ffe3a8078572f0be73737184099"; 13009 - sha256 = "059y2gkvvjhjbaw31zlylr0zmbafcjif01zjq13hvvghjqd6r89b"; 13029 + rev = "1827d2efe1f6023cf3954c0056aaa531124c41c1"; 13030 + sha256 = "1rcqrsvw74lrzs03bg9zslmkf5ka4a3h06b5hhdgiv4iimapz5sq"; 13010 13031 }; 13011 13032 recipeFile = fetchurl { 13012 13033 url = "https://raw.githubusercontent.com/milkypostman/melpa/aa1a0845cc1a6970018b397d13394aaa8147e5d0/recipes/go-impl"; ··· 13253 13274 govc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json-mode, lib, magit-popup, melpaBuild, s }: 13254 13275 melpaBuild { 13255 13276 pname = "govc"; 13256 - version = "0.11.2"; 13277 + version = "0.11.4"; 13257 13278 src = fetchFromGitHub { 13258 13279 owner = "vmware"; 13259 13280 repo = "govmomi"; 13260 - rev = "cd80b8e8a7075484941720e24faa3c9a98cfa2cc"; 13261 - sha256 = "0l6vlh8sszsxjs49xsiwfbzcbc55fmiry96g3h1p358nfrg20017"; 13281 + rev = "b9bcc6f44098b110772a4c947f0a233f207955c5"; 13282 + sha256 = "1x62skbqgjskrbsxqn1b377z1y0vp2ivf9k2f0g595lg2zfcycjf"; 13262 13283 }; 13263 13284 recipeFile = fetchurl { 13264 13285 url = "https://raw.githubusercontent.com/milkypostman/melpa/92d6391318021c63b06fe39b0ca38f667bb45ae9/recipes/govc"; ··· 13400 13421 graphene = callPackage ({ company, dash, exec-path-from-shell, fetchFromGitHub, fetchurl, flycheck, graphene-meta-theme, ido-ubiquitous, lib, melpaBuild, ppd-sr-speedbar, smartparens, smex, sr-speedbar, web-mode }: 13401 13422 melpaBuild { 13402 13423 pname = "graphene"; 13403 - version = "0.9.6"; 13424 + version = "0.9.7"; 13404 13425 src = fetchFromGitHub { 13405 13426 owner = "rdallasgray"; 13406 13427 repo = "graphene"; 13407 - rev = "47c5a194f81796eface2e2f062144c17ee3cfdb7"; 13408 - sha256 = "0xx3cnwbbil6d7y15d61wkp777w4j5rsdm7gwd5gpcr8910405n2"; 13428 + rev = "b25707ae82e286aefa5a66087b12c9cb3b7bf2ed"; 13429 + sha256 = "1h21fv8plxydydm509immp0kpkf24ba6j3wrbpvp5w4nkx49mlkl"; 13409 13430 }; 13410 13431 recipeFile = fetchurl { 13411 13432 url = "https://raw.githubusercontent.com/milkypostman/melpa/0206d6adcb7855c2174c3cd506b71c21def1209b/recipes/graphene"; ··· 14080 14101 helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: 14081 14102 melpaBuild { 14082 14103 pname = "helm"; 14083 - version = "2.3.1"; 14104 + version = "2.3.2"; 14084 14105 src = fetchFromGitHub { 14085 14106 owner = "emacs-helm"; 14086 14107 repo = "helm"; 14087 - rev = "b8193725f2c3ab20f2907171374ee762e397739d"; 14088 - sha256 = "13hwwihiy05dszhwb2zxzjqsgf7589zdirdmfxqsw0l224p0hcdd"; 14108 + rev = "5ed5d1e2a8561f306333c817e52ae0b4c73680e9"; 14109 + sha256 = "1hsn2r8sw40rzc2w8vq4sr2xjm3xh2lg6j4dn068nyzszh932chi"; 14089 14110 }; 14090 14111 recipeFile = fetchurl { 14091 14112 url = "https://raw.githubusercontent.com/milkypostman/melpa/7e8bccffdf69479892d76b9336a4bec3f35e919d/recipes/helm"; ··· 14182 14203 license = lib.licenses.free; 14183 14204 }; 14184 14205 }) {}; 14206 + helm-bbdb = callPackage ({ bbdb, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 14207 + melpaBuild { 14208 + pname = "helm-bbdb"; 14209 + version = "1.0"; 14210 + src = fetchFromGitHub { 14211 + owner = "emacs-helm"; 14212 + repo = "helm-bbdb"; 14213 + rev = "7be6ce17303422e9bc3ff1a7cb54361fcbcafc84"; 14214 + sha256 = "1ccj9gqr407mfrvp71571w3l82v96zdr956qsdbxfdda7bm3s0j7"; 14215 + }; 14216 + recipeFile = fetchurl { 14217 + url = "https://raw.githubusercontent.com/milkypostman/melpa/7025c319fcabc64576c0c6554d0d572cef697693/recipes/helm-bbdb"; 14218 + sha256 = "1wlacbfs23shvyaq616r1p84h8321zz1k5nzir5qg8nr6lssi8vp"; 14219 + name = "helm-bbdb"; 14220 + }; 14221 + packageRequires = [ bbdb helm ]; 14222 + meta = { 14223 + homepage = "https://melpa.org/#/helm-bbdb"; 14224 + license = lib.licenses.free; 14225 + }; 14226 + }) {}; 14185 14227 helm-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, parsebib, s }: 14186 14228 melpaBuild { 14187 14229 pname = "helm-bibtex"; ··· 14311 14353 helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 14312 14354 melpaBuild { 14313 14355 pname = "helm-core"; 14314 - version = "2.3.1"; 14356 + version = "2.3.2"; 14315 14357 src = fetchFromGitHub { 14316 14358 owner = "emacs-helm"; 14317 14359 repo = "helm"; 14318 - rev = "b8193725f2c3ab20f2907171374ee762e397739d"; 14319 - sha256 = "13hwwihiy05dszhwb2zxzjqsgf7589zdirdmfxqsw0l224p0hcdd"; 14360 + rev = "5ed5d1e2a8561f306333c817e52ae0b4c73680e9"; 14361 + sha256 = "1hsn2r8sw40rzc2w8vq4sr2xjm3xh2lg6j4dn068nyzszh932chi"; 14320 14362 }; 14321 14363 recipeFile = fetchurl { 14322 14364 url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core"; ··· 14689 14731 helm-ls-git = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 14690 14732 melpaBuild { 14691 14733 pname = "helm-ls-git"; 14692 - version = "1.8.0"; 14734 + version = "1.9.0"; 14693 14735 src = fetchFromGitHub { 14694 14736 owner = "emacs-helm"; 14695 14737 repo = "helm-ls-git"; 14696 - rev = "c5e43f4083af3949c5d5afdfbbf26d01881cb0e2"; 14697 - sha256 = "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf"; 14738 + rev = "742eeb6c33253b2be581e30b5d70113cd87a581d"; 14739 + sha256 = "1dmmz6ghi21kmwprcv174pq5m198cmsphg297ll1bhqczk51j9h5"; 14698 14740 }; 14699 14741 recipeFile = fetchurl { 14700 14742 url = "https://raw.githubusercontent.com/milkypostman/melpa/b487b4c0db9092bb7e32aad9265b79a9d18c8478/recipes/helm-ls-git"; ··· 14857 14899 helm-org-rifle = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: 14858 14900 melpaBuild { 14859 14901 pname = "helm-org-rifle"; 14860 - version = "1.2.0"; 14902 + version = "1.3.0"; 14861 14903 src = fetchFromGitHub { 14862 14904 owner = "alphapapa"; 14863 14905 repo = "helm-org-rifle"; 14864 - rev = "c3913b6e1d19e957c0b5a2d0243388e224a42a8a"; 14865 - sha256 = "02yjnag9wr9dk93z41f0i5mqij9bz57fxkv4nddabyc18k7zfrhj"; 14906 + rev = "c8ad1d86dd375f1be433b95e2bc40876f663663f"; 14907 + sha256 = "1ia960sqkbc5bqljjb0arw54q90x36lhp0230s75xcg6m47bxpw3"; 14866 14908 }; 14867 14909 recipeFile = fetchurl { 14868 14910 url = "https://raw.githubusercontent.com/milkypostman/melpa/f39cc94dde5aaf0d6cfea5c98dd52cdb0bcb1615/recipes/helm-org-rifle"; ··· 15862 15904 license = lib.licenses.free; 15863 15905 }; 15864 15906 }) {}; 15907 + hungry-delete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 15908 + melpaBuild { 15909 + pname = "hungry-delete"; 15910 + version = "1.1.4"; 15911 + src = fetchFromGitHub { 15912 + owner = "nflath"; 15913 + repo = "hungry-delete"; 15914 + rev = "8df35d81fbbd236147b8c746bd5f542bd75dbe63"; 15915 + sha256 = "0j97bfhrajki2a78pchrw5n6pcsk2gc2spk9s8fb0bmnqqpknmnf"; 15916 + }; 15917 + recipeFile = fetchurl { 15918 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e33960d9b7e24f830ebe4e5a26a562422d52fe97/recipes/hungry-delete"; 15919 + sha256 = "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz"; 15920 + name = "hungry-delete"; 15921 + }; 15922 + packageRequires = []; 15923 + meta = { 15924 + homepage = "https://melpa.org/#/hungry-delete"; 15925 + license = lib.licenses.free; 15926 + }; 15927 + }) {}; 15865 15928 hyai = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 15866 15929 melpaBuild { 15867 15930 pname = "hyai"; ··· 16558 16621 import-js = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 16559 16622 melpaBuild { 16560 16623 pname = "import-js"; 16561 - version = "0.1.0"; 16624 + version = "0.7.0"; 16562 16625 src = fetchFromGitHub { 16563 16626 owner = "galooshi"; 16564 16627 repo = "emacs-import-js"; 16565 - rev = "5726c33b8d8c43974d4b367348962025c6df56b9"; 16566 - sha256 = "1gamzw0ayfrnp4wcn41p294kg4l80xa01w8phhsqq9kpsxz8mcr0"; 16628 + rev = "231d3d5924adea2d0127aa50acbd2b6a4bab5d25"; 16629 + sha256 = "1zsjaz69gbfmsy0zr6byag31m9jv3nglhxhz56xzhaabsk218f74"; 16567 16630 }; 16568 16631 recipeFile = fetchurl { 16569 16632 url = "https://raw.githubusercontent.com/milkypostman/melpa/048344edd471a473c9e32945b021b3f26f1666e0/recipes/import-js"; ··· 17206 17269 jade = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, seq, websocket }: 17207 17270 melpaBuild { 17208 17271 pname = "jade"; 17209 - version = "0.24"; 17272 + version = "0.25"; 17210 17273 src = fetchFromGitHub { 17211 17274 owner = "NicolasPetton"; 17212 17275 repo = "jade"; 17213 - rev = "c669a9b28dc09806c30864659f6ac924045a083d"; 17214 - sha256 = "0fykdci5vi84xrnghaqfs79zsi8x6kv77wx5xw6yphjksdqrp2f3"; 17276 + rev = "1ec4939d81e410c081b709505d812775bb8338e8"; 17277 + sha256 = "12yqbkfr5yds9kysjs159h6xvlx0ppf7c95fwhd4nx63ycyidg2x"; 17215 17278 }; 17216 17279 recipeFile = fetchurl { 17217 17280 url = "https://raw.githubusercontent.com/milkypostman/melpa/b989c1bd83f20225314b6e903c5e1df972551c19/recipes/jade"; ··· 18382 18445 lfe-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 18383 18446 melpaBuild { 18384 18447 pname = "lfe-mode"; 18385 - version = "1.2.0"; 18448 + version = "1.2.1"; 18386 18449 src = fetchFromGitHub { 18387 18450 owner = "rvirding"; 18388 18451 repo = "lfe"; 18389 - rev = "e035006a486278c5ad8b8b04d14d5ef3dede64f7"; 18390 - sha256 = "16wpjry4yg3ap87kzzy387j1hxm0y7mcnh2v4a25snxcsz2cz7qv"; 18452 + rev = "9a8bea502793f5467df77cfea14ea2de07bc26bc"; 18453 + sha256 = "0izym69gnz32c4y49s0amavxzjgm1pqlks7xchr5zdz7wqs7wb25"; 18391 18454 }; 18392 18455 recipeFile = fetchurl { 18393 18456 url = "https://raw.githubusercontent.com/milkypostman/melpa/c44bdb00707c9ef90160e0a44f7148b480635132/recipes/lfe-mode"; ··· 18809 18872 logview = callPackage ({ datetime, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 18810 18873 melpaBuild { 18811 18874 pname = "logview"; 18812 - version = "0.5.2"; 18875 + version = "0.5.3"; 18813 18876 src = fetchFromGitHub { 18814 18877 owner = "doublep"; 18815 18878 repo = "logview"; 18816 - rev = "9b2f610a32557937e704b32e97f4b61abdec6845"; 18817 - sha256 = "0w1csjcgvl1jfhjpfj19hzrd6f055iaiq0qafpgjlyn6dd4sf9gj"; 18879 + rev = "4f1db3f2081e819dd35545497529a03466bd0397"; 18880 + sha256 = "0f96wxijls743qyqfgkdqil3p5nn0sm02rlz1nqkm6bd8k28rcg1"; 18818 18881 }; 18819 18882 recipeFile = fetchurl { 18820 18883 url = "https://raw.githubusercontent.com/milkypostman/melpa/1df3c11ed7738f32e6ae457647e62847701c8b19/recipes/logview"; ··· 19005 19068 magit-annex = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: 19006 19069 melpaBuild { 19007 19070 pname = "magit-annex"; 19008 - version = "1.2.0"; 19071 + version = "1.3.0"; 19009 19072 src = fetchFromGitHub { 19010 19073 owner = "magit"; 19011 19074 repo = "magit-annex"; 19012 - rev = "b5d4389aa63ab4a03776120d2bd89229aa7d5238"; 19013 - sha256 = "19w8143c4spa856xyzx8fylndbj4s9nwn27f6v1ckqxvm5l0pph0"; 19075 + rev = "74e0343b4152ad5c0d4f77f9f15dd6f1b02de432"; 19076 + sha256 = "08mpnj9c43p528iy3hj8yljhzpkpjxkjiaiiss5n2jgyyc64hw9z"; 19014 19077 }; 19015 19078 recipeFile = fetchurl { 19016 19079 url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-annex"; ··· 19803 19866 merlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 19804 19867 melpaBuild { 19805 19868 pname = "merlin"; 19806 - version = "2.5.1"; 19869 + version = "2.5.2"; 19807 19870 src = fetchFromGitHub { 19808 19871 owner = "the-lambda-church"; 19809 19872 repo = "merlin"; 19810 - rev = "6480e585a0e9d036d11aaf28bcee97e8e9b77c2e"; 19811 - sha256 = "0p3hqxawp18q43ws6506cnndi49f3gxzmai0x2qch7h42dgh1cb8"; 19873 + rev = "69b1ec176603cfab6b60941c2dc8d75d64fac019"; 19874 + sha256 = "150iyy75wqwva096c8g1w2sc97nfdgbry6kpz4ngz6l7ij3vivpc"; 19812 19875 }; 19813 19876 recipeFile = fetchurl { 19814 19877 url = "https://raw.githubusercontent.com/milkypostman/melpa/b1b9bfd3164e62758dc0a3362d85c6627ed7cbf8/recipes/merlin"; ··· 20306 20369 monokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 20307 20370 melpaBuild { 20308 20371 pname = "monokai-theme"; 20309 - version = "2.2.1"; 20372 + version = "3.0.0"; 20310 20373 src = fetchFromGitHub { 20311 20374 owner = "oneKelvinSmith"; 20312 20375 repo = "monokai-emacs"; 20313 - rev = "53f0ba96f0417885e7d3955d8750de6763f99444"; 20314 - sha256 = "1azyrvhvyrd5n7djyh324famzab9w5c81bm3nv04p93gd92mm6zh"; 20376 + rev = "586062ec38807b709b888adf3bd80ffb5388f86c"; 20377 + sha256 = "13qx220ayf678milahq4xrhlhiljfmbscxikq0dlfdv39157ynlc"; 20315 20378 }; 20316 20379 recipeFile = fetchurl { 20317 20380 url = "https://raw.githubusercontent.com/milkypostman/melpa/2bc9ce95a02fc4bcf7bc7547849c1c15d6db5089/recipes/monokai-theme"; ··· 20432 20495 mowedline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 20433 20496 melpaBuild { 20434 20497 pname = "mowedline"; 20435 - version = "2.0.0"; 20498 + version = "3.0.0"; 20436 20499 src = fetchFromGitHub { 20437 20500 owner = "retroj"; 20438 20501 repo = "mowedline"; 20439 - rev = "c941d44c994e29f0c5f6c4532950eaceec0a6376"; 20440 - sha256 = "1wrdcxdlcvrhvarz71a09168bp1rd154ihs5v55dgh1sm7pv34la"; 20502 + rev = "9645c431e921317721ba8dea9ce713d235f94726"; 20503 + sha256 = "14kpj1fh3p8asnxwb0jl3b6r32b7zplxyl5hvbgkal687b1gx50w"; 20441 20504 }; 20442 20505 recipeFile = fetchurl { 20443 20506 url = "https://raw.githubusercontent.com/milkypostman/melpa/86f7df6b8df3398ef476c0ed31722b03f16b2fec/recipes/mowedline"; ··· 21062 21125 ninja-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 21063 21126 melpaBuild { 21064 21127 pname = "ninja-mode"; 21065 - version = "1.7.1"; 21128 + version = "1.7.2"; 21066 21129 src = fetchFromGitHub { 21067 21130 owner = "martine"; 21068 21131 repo = "ninja"; 21069 - rev = "b49b0fc01bb052b6ac856b1e72be9391e962398e"; 21070 - sha256 = "14jh2cg1isip8b8lls3hdj99vpqjyjqlv27r2kpq6095b78p64d9"; 21132 + rev = "717b7b4a31db6027207588c0fb89c3ead384747b"; 21133 + sha256 = "1pc4sr50wknwai33lqm92bm811yzvpyrvry9419p7wp3r6p3nmhw"; 21071 21134 }; 21072 21135 recipeFile = fetchurl { 21073 21136 url = "https://raw.githubusercontent.com/milkypostman/melpa/aed2f32a02cb38c49163d90b1b503362e2e4a480/recipes/ninja-mode"; ··· 21227 21290 }) {}; 21228 21291 notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { 21229 21292 pname = "notmuch"; 21230 - version = "0.23.1"; 21293 + version = "0.23.2"; 21231 21294 src = fetchgit { 21232 21295 url = "git://git.notmuchmail.org/git/notmuch"; 21233 - rev = "ad517e9195a29b26955999c6e11fc37c73dbc01e"; 21234 - sha256 = "0g1xybi4ndhvmnxgzxbp3x8kwg69jp3idf8x1asljcfsm6qhvr5i"; 21296 + rev = "c9ec90ae7f22d817aa0ddb5e1a0ae80715071b5e"; 21297 + sha256 = "1bhyi64qir93sd8d1c2gawc2p7d9mqfq7cn7p5hvh8bv2w3hkq14"; 21235 21298 }; 21236 21299 recipeFile = fetchurl { 21237 21300 url = "https://raw.githubusercontent.com/milkypostman/melpa/b19f21ed7485036e799ccd88edbf7896a379d759/recipes/notmuch"; ··· 21946 22009 license = lib.licenses.free; 21947 22010 }; 21948 22011 }) {}; 22012 + org-babel-eval-in-repl = callPackage ({ emacs, eval-in-repl, fetchFromGitHub, fetchurl, lib, melpaBuild }: 22013 + melpaBuild { 22014 + pname = "org-babel-eval-in-repl"; 22015 + version = "1.0"; 22016 + src = fetchFromGitHub { 22017 + owner = "diadochos"; 22018 + repo = "org-babel-eval-in-repl"; 22019 + rev = "1e3189e2da14c1c2a2b793c6563597c1aa7d1122"; 22020 + sha256 = "0vf77wc1pq9dfqkrnagkxfg7klwyaichms492jsp0dh5warnw7hm"; 22021 + }; 22022 + recipeFile = fetchurl { 22023 + url = "https://raw.githubusercontent.com/milkypostman/melpa/042745d47c379778195ed798ca5e0130e4877271/recipes/org-babel-eval-in-repl"; 22024 + sha256 = "00x4idm9a5ddng74axm4xjnw7z89qv3yav8j8rw2z1jf5cgbgah6"; 22025 + name = "org-babel-eval-in-repl"; 22026 + }; 22027 + packageRequires = [ emacs eval-in-repl ]; 22028 + meta = { 22029 + homepage = "https://melpa.org/#/org-babel-eval-in-repl"; 22030 + license = lib.licenses.free; 22031 + }; 22032 + }) {}; 21949 22033 org-beautify-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 21950 22034 melpaBuild { 21951 22035 pname = "org-beautify-theme"; ··· 22075 22159 org-elisp-help = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 22076 22160 melpaBuild { 22077 22161 pname = "org-elisp-help"; 22078 - version = "0.2.0"; 22162 + version = "1.0.0"; 22079 22163 src = fetchFromGitHub { 22080 22164 owner = "tarsius"; 22081 22165 repo = "org-elisp-help"; 22082 - rev = "23506883074b65943987d09f1c0ecd6dc1e4a443"; 22083 - sha256 = "1wqq6phpp73qj2ra9k0whrngfaia28wc772v24dsds4dnw3zxsq0"; 22166 + rev = "3e33ab1a2933dd7f2782ef91d667a37f12d633ab"; 22167 + sha256 = "088pbafz1x4z7qi70cjbrvfrcdrjp4zy0yl115klbidshqhxycmj"; 22084 22168 }; 22085 22169 recipeFile = fetchurl { 22086 22170 url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9bf5046a4c3be8a83004d506bd258a6f7ff15/recipes/org-elisp-help"; ··· 22156 22240 license = lib.licenses.free; 22157 22241 }; 22158 22242 }) {}; 22243 + org-jira = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: 22244 + melpaBuild { 22245 + pname = "org-jira"; 22246 + version = "1.0.1"; 22247 + src = fetchFromGitHub { 22248 + owner = "ahungry"; 22249 + repo = "org-jira"; 22250 + rev = "3fc4dd52a5235fa97b0fca06b08ae443ccc43242"; 22251 + sha256 = "017k8hw2wy4fzdrkjniaqyz4mfsm60qqxrxhd1s49dfs54kch0hq"; 22252 + }; 22253 + recipeFile = fetchurl { 22254 + url = "https://raw.githubusercontent.com/milkypostman/melpa/730a585e5c9216a2428a134c09abcc20bc7c631d/recipes/org-jira"; 22255 + sha256 = "0dvh9k0i75jxyy3v01c4cfyws8ij6718hsivi2xyrgig7pwp16ib"; 22256 + name = "org-jira"; 22257 + }; 22258 + packageRequires = [ cl-lib request ]; 22259 + meta = { 22260 + homepage = "https://melpa.org/#/org-jira"; 22261 + license = lib.licenses.free; 22262 + }; 22263 + }) {}; 22159 22264 org-journal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 22160 22265 melpaBuild { 22161 22266 pname = "org-journal"; ··· 22525 22630 org-tfl = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 22526 22631 melpaBuild { 22527 22632 pname = "org-tfl"; 22528 - version = "0.3.3"; 22633 + version = "0.3.4"; 22529 22634 src = fetchFromGitHub { 22530 22635 owner = "storax"; 22531 22636 repo = "org-tfl"; 22532 - rev = "308251618e215eb78d5436e7412a0c14216fa890"; 22533 - sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94"; 22637 + rev = "f0405e3ad62b90ea43489bdd6312adbd77edb9f3"; 22638 + sha256 = "0cznw60ivaz42ass35sf9i62x7mf9in6z8kr8wc5i1mb7hafy2hk"; 22534 22639 }; 22535 22640 recipeFile = fetchurl { 22536 22641 url = "https://raw.githubusercontent.com/milkypostman/melpa/d9e97f2fee577c7e3fb42e4ca9d4f422c8907faf/recipes/org-tfl"; ··· 22889 22994 osx-dictionary = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 22890 22995 melpaBuild { 22891 22996 pname = "osx-dictionary"; 22892 - version = "0.2.2"; 22997 + version = "0.3"; 22893 22998 src = fetchFromGitHub { 22894 22999 owner = "xuchunyang"; 22895 23000 repo = "osx-dictionary.el"; 22896 - rev = "d80d2f1f2637601330837959d9d2f7e0be95df85"; 22897 - sha256 = "1s2nahkqmij148z3ijz1l6a43m5pvq9gjza9z6x24936qny05r2w"; 23001 + rev = "8bbe1c700830e004f34974900b840ec2be7c589c"; 23002 + sha256 = "0pv9j3nza71kd2i9a78w1y10r965b2wrnywjk1zgvab8q9rzwxdn"; 22898 23003 }; 22899 23004 recipeFile = fetchurl { 22900 23005 url = "https://raw.githubusercontent.com/milkypostman/melpa/ae4467ad646d663f0266f39a76f9764004903424/recipes/osx-dictionary"; ··· 23243 23348 license = lib.licenses.free; 23244 23349 }; 23245 23350 }) {}; 23246 - package-utils = callPackage ({ async, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }: 23351 + package-utils = callPackage ({ async, fetchFromGitHub, fetchurl, lib, melpaBuild }: 23247 23352 melpaBuild { 23248 23353 pname = "package-utils"; 23249 - version = "0.4.1"; 23354 + version = "0.4.2"; 23250 23355 src = fetchFromGitHub { 23251 23356 owner = "Silex"; 23252 23357 repo = "package-utils"; 23253 - rev = "f655efc89ea7675b6cc9990d46a9f48ca6d384b7"; 23254 - sha256 = "1q6hpfaj8hfybxmmh1v871arlv8dn77li9vgckcal4l6xf83nvpi"; 23358 + rev = "e37d38b3c94ac39443f0e449f4112b654b6a8fd1"; 23359 + sha256 = "1spdffw1pi4sp70w46v1njmzgjldcn9cir74imr23fw4n00hb4fa"; 23255 23360 }; 23256 23361 recipeFile = fetchurl { 23257 23362 url = "https://raw.githubusercontent.com/milkypostman/melpa/a1bb884a0299408daa716eba42cb39f79622766c/recipes/package-utils"; 23258 23363 sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; 23259 23364 name = "package-utils"; 23260 23365 }; 23261 - packageRequires = [ async epl ]; 23366 + packageRequires = [ async ]; 23262 23367 meta = { 23263 23368 homepage = "https://melpa.org/#/package-utils"; 23264 23369 license = lib.licenses.free; ··· 23414 23519 paradox = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, let-alist, lib, melpaBuild, seq, spinner }: 23415 23520 melpaBuild { 23416 23521 pname = "paradox"; 23417 - version = "2.5"; 23522 + version = "2.5.1"; 23418 23523 src = fetchFromGitHub { 23419 23524 owner = "Malabarba"; 23420 23525 repo = "paradox"; 23421 - rev = "e9053ef6a7c9a433f2e5e612ba507459ded2840b"; 23422 - sha256 = "00jm904qnj9d6286gfixbcd5awwza5pv9vkisfpz6j7705bjvmap"; 23526 + rev = "17a6690d42a1e854ec270ed930c7494077570fc8"; 23527 + sha256 = "1vg5i4cxgn4a8cgx43i75w3cf0d8sb6ig6xxxdj3pvpzc81i53bc"; 23423 23528 }; 23424 23529 recipeFile = fetchurl { 23425 23530 url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/paradox"; ··· 23580 23685 pass = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store }: 23581 23686 melpaBuild { 23582 23687 pname = "pass"; 23583 - version = "1.5"; 23688 + version = "1.6"; 23584 23689 src = fetchFromGitHub { 23585 23690 owner = "NicolasPetton"; 23586 23691 repo = "pass"; 23587 - rev = "d89a0f82b9c606d59d6f3440825c1c0bb14b1455"; 23588 - sha256 = "15mk90dbwq5qbb7yv1gliq156lhc3ha576nkly4n7jl44v2f3c23"; 23692 + rev = "b4c3bd9130044c4e106bac5ba73a50822865e258"; 23693 + sha256 = "0na895x91a37wmdpqp545qvjh34d0vfq4dyxji7casdrdhx3bg16"; 23589 23694 }; 23590 23695 recipeFile = fetchurl { 23591 23696 url = "https://raw.githubusercontent.com/milkypostman/melpa/428c2d53db69bed8938ec3486dfcf7fc048cd4e8/recipes/pass"; ··· 23914 24019 persp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 23915 24020 melpaBuild { 23916 24021 pname = "persp-mode"; 23917 - version = "2.9.2"; 24022 + version = "2.9.4"; 23918 24023 src = fetchFromGitHub { 23919 24024 owner = "Bad-ptr"; 23920 24025 repo = "persp-mode.el"; 23921 - rev = "6fd464a3f5038b34751ec3d07913575906f38ab1"; 23922 - sha256 = "0v6abr2x4xnv6qi8az3ki330z7v5vc4b0ibxqzwlq9mzqlqhnpsl"; 24026 + rev = "8200c8753513b14ebc1a8b40b917d7c0a6f5ac6a"; 24027 + sha256 = "13pcdy18pqanjhkacl5rbfmyw3y52d9ll0b6w0w4ffc2lhqpi7nd"; 23923 24028 }; 23924 24029 recipeFile = fetchurl { 23925 24030 url = "https://raw.githubusercontent.com/milkypostman/melpa/caad63d14f770f07d09b6174b7b40c5ab06a1083/recipes/persp-mode"; ··· 24292 24397 plantuml-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 24293 24398 melpaBuild { 24294 24399 pname = "plantuml-mode"; 24295 - version = "1.1.0"; 24400 + version = "1.2.2"; 24296 24401 src = fetchFromGitHub { 24297 24402 owner = "skuro"; 24298 24403 repo = "plantuml-mode"; 24299 - rev = "2b7d79688608a5f328b95610edcdd871278fbd29"; 24300 - sha256 = "1pmnz01k3n4jjkl1p31lcfh8j6g3zpr78p8f2wazdlgcl14g7pjz"; 24404 + rev = "87417ad75b215ababf153cba533575ac0273a5db"; 24405 + sha256 = "1jrck9wybpm2p2imjn0x6g3ybasiqkfzxc1halm3rq6xvc4zvrsm"; 24301 24406 }; 24302 24407 recipeFile = fetchurl { 24303 24408 url = "https://raw.githubusercontent.com/milkypostman/melpa/a658eb8085f2bf413c276af19c77597132cf569b/recipes/plantuml-mode"; ··· 24874 24979 license = lib.licenses.free; 24875 24980 }; 24876 24981 }) {}; 24982 + projectile-git-autofetch = callPackage ({ alert, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: 24983 + melpaBuild { 24984 + pname = "projectile-git-autofetch"; 24985 + version = "0.1.0"; 24986 + src = fetchFromGitHub { 24987 + owner = "andrmuel"; 24988 + repo = "projectile-git-autofetch"; 24989 + rev = "9692ed2a3935ee7b56e59af8b986e532839597dd"; 24990 + sha256 = "0vg0d8alxzzzkk8s564wzbb71laj48gkpbpk3qnwj5hfk14jzaqv"; 24991 + }; 24992 + recipeFile = fetchurl { 24993 + url = "https://raw.githubusercontent.com/milkypostman/melpa/7fdfdeb69fd78fc1bb2c62392f860a8c434f1762/recipes/projectile-git-autofetch"; 24994 + sha256 = "0m0raddsw5yvjrw2v6bdaswffmva8y9hxksdgf9axpvrd3rzlk9n"; 24995 + name = "projectile-git-autofetch"; 24996 + }; 24997 + packageRequires = [ alert projectile ]; 24998 + meta = { 24999 + homepage = "https://melpa.org/#/projectile-git-autofetch"; 25000 + license = lib.licenses.free; 25001 + }; 25002 + }) {}; 24877 25003 projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }: 24878 25004 melpaBuild { 24879 25005 pname = "projectile-rails"; 24880 - version = "0.11.0"; 25006 + version = "0.12.0"; 24881 25007 src = fetchFromGitHub { 24882 25008 owner = "asok"; 24883 25009 repo = "projectile-rails"; 24884 - rev = "c3a54723005d015d5d4364e4c74617dfd10ee294"; 24885 - sha256 = "1gywkxm9qk7y5za6fzjizxlc1lvwwa4mhadcyf1pxpq2119yhqy0"; 25010 + rev = "960e9f9a978386529eab9a56663c8d79654c4cce"; 25011 + sha256 = "1xmlkvrkcrwn6jnl9mxgdyclrwxsr1b7rlikmpw1qhdrwpg86vh5"; 24886 25012 }; 24887 25013 recipeFile = fetchurl { 24888 25014 url = "https://raw.githubusercontent.com/milkypostman/melpa/b16532bb8d08f7385bca4b83ab4e030d7b453524/recipes/projectile-rails"; ··· 24892 25018 packageRequires = [ emacs f inf-ruby inflections projectile rake ]; 24893 25019 meta = { 24894 25020 homepage = "https://melpa.org/#/projectile-rails"; 25021 + license = lib.licenses.free; 25022 + }; 25023 + }) {}; 25024 + projectile-ripgrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 25025 + melpaBuild { 25026 + pname = "projectile-ripgrep"; 25027 + version = "0.3.0"; 25028 + src = fetchFromGitHub { 25029 + owner = "nlamirault"; 25030 + repo = "ripgrep.el"; 25031 + rev = "1d579c5dc820b9a2c58261d362ffb95a02a8a752"; 25032 + sha256 = "0ayq3h0mfqyn695r3qp31yamsyy6hcgj9fxsmlrsm615axvmki9g"; 25033 + }; 25034 + recipeFile = fetchurl { 25035 + url = "https://raw.githubusercontent.com/milkypostman/melpa/195f340855b403128645b59c8adce1b45e90cd18/recipes/projectile-ripgrep"; 25036 + sha256 = "1iczizyayql40wcljvpc1mvfvn9r28b1dkrkcmdxif732gd01jjg"; 25037 + name = "projectile-ripgrep"; 25038 + }; 25039 + packageRequires = []; 25040 + meta = { 25041 + homepage = "https://melpa.org/#/projectile-ripgrep"; 24895 25042 license = lib.licenses.free; 24896 25043 }; 24897 25044 }) {}; ··· 25591 25738 railscasts-reloaded-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 25592 25739 melpaBuild { 25593 25740 pname = "railscasts-reloaded-theme"; 25594 - version = "1.1.0"; 25741 + version = "1.2.0"; 25595 25742 src = fetchFromGitHub { 25596 25743 owner = "thegeorgeous"; 25597 25744 repo = "railscasts-reloaded-theme"; 25598 - rev = "c2b6f408606c3f89ddbd19325bdbfc9a9d3d2168"; 25599 - sha256 = "1lkm0shfa7d47qmpjg1q4awazvf6ci68d98zy04r018s31isavxr"; 25745 + rev = "cce0e4ae6527e84e2ae3deb8b3c7770dda225853"; 25746 + sha256 = "1li86qpbjg8sm9q4sl8cffc0fni6mwx8180x8zlmsxdnhqic5nvd"; 25600 25747 }; 25601 25748 recipeFile = fetchurl { 25602 25749 url = "https://raw.githubusercontent.com/milkypostman/melpa/9817851bd06cbae30fb8f429401f1bbc0dc7be09/recipes/railscasts-reloaded-theme"; ··· 25675 25822 rake = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: 25676 25823 melpaBuild { 25677 25824 pname = "rake"; 25678 - version = "0.4.0"; 25825 + version = "0.4.1"; 25679 25826 src = fetchFromGitHub { 25680 25827 owner = "asok"; 25681 25828 repo = "rake"; 25682 - rev = "a9e65cb23d3dc700f5b41ff365153ef6a259d4f0"; 25683 - sha256 = "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq"; 25829 + rev = "e680f1a8f2591af7c80cad188340601b101b5ddc"; 25830 + sha256 = "1dk2clsnmjy3bfv6laxf8sslvdajjbwpk83ss8v9xm55dcxjvd7n"; 25684 25831 }; 25685 25832 recipeFile = fetchurl { 25686 25833 url = "https://raw.githubusercontent.com/milkypostman/melpa/bf0f84698dda02a5b84a244ee29a23a6faa9de68/recipes/rake"; ··· 26008 26155 license = lib.licenses.free; 26009 26156 }; 26010 26157 }) {}; 26158 + region-convert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 26159 + melpaBuild { 26160 + pname = "region-convert"; 26161 + version = "0.0.1"; 26162 + src = fetchFromGitHub { 26163 + owner = "zonuexe"; 26164 + repo = "right-click-context"; 26165 + rev = "31d370fce60d8cda04e1b9e4fe0e5d268fd37fe5"; 26166 + sha256 = "0bbfgz2n00dgqbij6c4kmlp3rnmf7jcjq56cmjck4nd81lkwk6j7"; 26167 + }; 26168 + recipeFile = fetchurl { 26169 + url = "https://raw.githubusercontent.com/milkypostman/melpa/ddcf4612cccb9a53425c5f0324206d70549d9d9e/recipes/region-convert"; 26170 + sha256 = "0daghvxc6gxgric1aa1gw036gbpbzilqz72gr1inqy92hz7xrxfm"; 26171 + name = "region-convert"; 26172 + }; 26173 + packageRequires = []; 26174 + meta = { 26175 + homepage = "https://melpa.org/#/region-convert"; 26176 + license = lib.licenses.free; 26177 + }; 26178 + }) {}; 26011 26179 relative-line-numbers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 26012 26180 melpaBuild { 26013 26181 pname = "relative-line-numbers"; 26014 - version = "0.3.2"; 26182 + version = "0.3.3"; 26015 26183 src = fetchFromGitHub { 26016 26184 owner = "Fanael"; 26017 26185 repo = "relative-line-numbers"; 26018 - rev = "64157db08b0c2f5fada3209fc8d3e4b4c7429978"; 26019 - sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a"; 26186 + rev = "38b5f9065aec008d9ad94fe5597338463aa1aa63"; 26187 + sha256 = "00ixh7siyc8m7j6hfaxnnl3ynfhzkccpjfc89v8bp3z83m4v269w"; 26020 26188 }; 26021 26189 recipeFile = fetchurl { 26022 26190 url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2901c841d221bd782dae9059a070ae8130e1ae/recipes/relative-line-numbers"; ··· 26389 26557 ripgrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 26390 26558 melpaBuild { 26391 26559 pname = "ripgrep"; 26392 - version = "0.2.0"; 26560 + version = "0.3.0"; 26393 26561 src = fetchFromGitHub { 26394 26562 owner = "nlamirault"; 26395 26563 repo = "ripgrep.el"; 26396 - rev = "77e8aa61b5b893c037d87117943a164514c6145f"; 26397 - sha256 = "1xs8h2g02jdb05c07bk9qfvxvfchgzhccj5yhkxbnpxqmxpcskdc"; 26564 + rev = "1d579c5dc820b9a2c58261d362ffb95a02a8a752"; 26565 + sha256 = "0ayq3h0mfqyn695r3qp31yamsyy6hcgj9fxsmlrsm615axvmki9g"; 26398 26566 }; 26399 26567 recipeFile = fetchurl { 26400 26568 url = "https://raw.githubusercontent.com/milkypostman/melpa/e8d789818876e959a1a59690f1dd7d4efa6d608b/recipes/ripgrep"; ··· 26536 26704 rtags = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 26537 26705 melpaBuild { 26538 26706 pname = "rtags"; 26539 - version = "2.5"; 26707 + version = "2.6"; 26540 26708 src = fetchFromGitHub { 26541 26709 owner = "Andersbakken"; 26542 26710 repo = "rtags"; 26543 - rev = "129cc5dece4a22fb0d786d1309bcba523252e744"; 26544 - sha256 = "0xwiqcv1xgv9ma2k8zjv2v10h4sm2m5xng7k3g9n5fafrd7j0lwp"; 26711 + rev = "95ffd54ca9554f5df5ac4f65c49eb595c5aeb3c9"; 26712 + sha256 = "02ygv4bag4z1msaqzc6fqgmbz6lg7laihnq6zp76n35inqa9a4w8"; 26545 26713 }; 26546 26714 recipeFile = fetchurl { 26547 26715 url = "https://raw.githubusercontent.com/milkypostman/melpa/ac3b84fe84a7f57d09f1a303d8947ef19aaf02fb/recipes/rtags"; ··· 26897 27065 src = fetchFromGitHub { 26898 27066 owner = "ensime"; 26899 27067 repo = "emacs-scala-mode"; 26900 - rev = "387e93c70a3703e55f717d3285912ad12cfee947"; 26901 - sha256 = "0xwwarla3m9cr1mpnlhsknfvxw1xyf85cxjkzg42q12k7i0yad5w"; 27068 + rev = "4b492b9fa5f97521426f50c8dcfb6c0a251840ea"; 27069 + sha256 = "01d907ph36yzfxgchqvk102ld1mvlb84sjxhmmq5xrzj4zbb0khm"; 26902 27070 }; 26903 27071 recipeFile = fetchurl { 26904 27072 url = "https://raw.githubusercontent.com/milkypostman/melpa/564aa1637485192a97803af46b3a1f8e0d042c9a/recipes/scala-mode"; ··· 28151 28319 snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }: 28152 28320 melpaBuild { 28153 28321 pname = "snakemake-mode"; 28154 - version = "0.5.1"; 28322 + version = "1.1.0"; 28155 28323 src = fetchFromGitHub { 28156 28324 owner = "kyleam"; 28157 28325 repo = "snakemake-mode"; 28158 - rev = "3f02d1af5548d15a410ee745b9e7ebc09266a1ab"; 28159 - sha256 = "12s3ykb2flnbl6kvjn0yy11y0g5nq2k5arpgf7pqwj4wgx0fl8nb"; 28326 + rev = "327c168febbde24c2b39cc10d26c9cfc9189e130"; 28327 + sha256 = "1jlv8sr2g3i335h7hp8y39b77wla9hac1b0bk2imalr14lz04vly"; 28160 28328 }; 28161 28329 recipeFile = fetchurl { 28162 28330 url = "https://raw.githubusercontent.com/milkypostman/melpa/c3a5b51fee1c9e6ce7e21555faa355d118d34b8d/recipes/snakemake-mode"; ··· 29554 29722 ten-hundred-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 29555 29723 melpaBuild { 29556 29724 pname = "ten-hundred-mode"; 29557 - version = "1.0"; 29725 + version = "1.0.1"; 29558 29726 src = fetchFromGitHub { 29559 29727 owner = "aaron-em"; 29560 29728 repo = "ten-hundred-mode.el"; 29561 - rev = "fc1d7cdb72c21dc1953ed2e2ecf28233b8b3e305"; 29562 - sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx"; 29729 + rev = "bdcfda49b1819e82d61fe90947e50bb948cf7933"; 29730 + sha256 = "11nsh6dkd3i489lrqpd9xhr4c0ai51364rlrd6slm54720by9jql"; 29563 29731 }; 29564 29732 recipeFile = fetchurl { 29565 29733 url = "https://raw.githubusercontent.com/milkypostman/melpa/4a0534044ff9ce0740414bf5dc3b104bbdbdacce/recipes/ten-hundred-mode"; ··· 29575 29743 term-alert = callPackage ({ alert, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, term-cmd }: 29576 29744 melpaBuild { 29577 29745 pname = "term-alert"; 29578 - version = "1.1"; 29746 + version = "1.2"; 29579 29747 src = fetchFromGitHub { 29580 29748 owner = "CallumCameron"; 29581 29749 repo = "term-alert"; 29582 - rev = "3e8b39ed4d960933ffdf0308f9bf0d5ce63648e9"; 29583 - sha256 = "195jghl1c8ncl15nix275r4x61zlii90pnwgx4m9q2bnbwsz3ycm"; 29750 + rev = "47af9e6fe483ef0d393098c145f499362a33292a"; 29751 + sha256 = "1nv8ma8x9xkgsl95z7yysy8q1lb3xr0pd8a5sb01nlx8ks3clad4"; 29584 29752 }; 29585 29753 recipeFile = fetchurl { 29586 29754 url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-alert"; ··· 31008 31176 visual-fill-column = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 31009 31177 melpaBuild { 31010 31178 pname = "visual-fill-column"; 31011 - version = "1.9"; 31179 + version = "1.10"; 31012 31180 src = fetchFromGitHub { 31013 31181 owner = "joostkremers"; 31014 31182 repo = "visual-fill-column"; 31015 - rev = "73da507c8f4af7a755f9b209bbb3b0343ca2517c"; 31016 - sha256 = "0hks82hdx7rfx3lwsz0zq5k9j6vpwbpgj9d6i7xhd6cwb9q95ycv"; 31183 + rev = "159dcee48e7311ee816686d62e7ce36619127462"; 31184 + sha256 = "0bij20a8f9pd4307m2qslcx8p3j59hkr14sm18aw0bric65him8b"; 31017 31185 }; 31018 31186 recipeFile = fetchurl { 31019 31187 url = "https://raw.githubusercontent.com/milkypostman/melpa/c7628c805840c4687686d0b9dc5007342864721e/recipes/visual-fill-column"; ··· 31260 31428 web-beautify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 31261 31429 melpaBuild { 31262 31430 pname = "web-beautify"; 31263 - version = "0.3.1"; 31431 + version = "0.3.2"; 31264 31432 src = fetchFromGitHub { 31265 31433 owner = "yasuyk"; 31266 31434 repo = "web-beautify"; 31267 - rev = "0fac5fa09cee9d45237d6d74e2760fb24c929f8a"; 31268 - sha256 = "0zpvs9yc2gxfmm0x0majhzxc0b0vmm6p6pxh92h8iq3pmr0di8yj"; 31435 + rev = "aa95055224c24f38736716809fec487cd817c38d"; 31436 + sha256 = "0vms7zz3ym53wf1zdrkbf2ky2xjr1v134ngsd0jr8azyi8siw84d"; 31269 31437 }; 31270 31438 recipeFile = fetchurl { 31271 31439 url = "https://raw.githubusercontent.com/milkypostman/melpa/0d528d3e20b1656dff40860cac0e0fa9dc1a3e87/recipes/web-beautify"; ··· 31320 31488 license = lib.licenses.free; 31321 31489 }; 31322 31490 }) {}; 31491 + web-mode-edit-element = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web-mode }: 31492 + melpaBuild { 31493 + pname = "web-mode-edit-element"; 31494 + version = "2.1"; 31495 + src = fetchFromGitHub { 31496 + owner = "jtkDvlp"; 31497 + repo = "web-mode-edit-element"; 31498 + rev = "8b8ac07aa8c920dafd94c96a51effb0d6c0ed1ce"; 31499 + sha256 = "0aj1ibmnrbaxrkwjf1fac2qzazrj39pql3prcibnchc2bmp191aa"; 31500 + }; 31501 + recipeFile = fetchurl { 31502 + url = "https://raw.githubusercontent.com/milkypostman/melpa/2658e8a80455ad5ae1ceb69deddab89ebc6b6871/recipes/web-mode-edit-element"; 31503 + sha256 = "09m2jzsb3zz1wr396jrhcwskfm1m0a4hvxlxhq5p1w5fzfcdb8md"; 31504 + name = "web-mode-edit-element"; 31505 + }; 31506 + packageRequires = [ emacs web-mode ]; 31507 + meta = { 31508 + homepage = "https://melpa.org/#/web-mode-edit-element"; 31509 + license = lib.licenses.free; 31510 + }; 31511 + }) {}; 31323 31512 webpaste = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: 31324 31513 melpaBuild { 31325 31514 pname = "webpaste"; ··· 31746 31935 version = "0.9.1"; 31747 31936 src = fetchhg { 31748 31937 url = "https://bitbucket.com/ArneBab/wisp"; 31749 - rev = "9f38303df3b7"; 31750 - sha256 = "10bcyzaj4ramas2vwjnsl9pk82gnnvfrwdxn6g217xbjjjlylwds"; 31938 + rev = "d9ebfc6c8722"; 31939 + sha256 = "038glxpcl6d9js0kaxaqmfz6xlz50z28nny9biarx1mhjvy70lwp"; 31751 31940 }; 31752 31941 recipeFile = fetchurl { 31753 31942 url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/wisp-mode"; ··· 32369 32558 license = lib.licenses.free; 32370 32559 }; 32371 32560 }) {}; 32372 - ycmd = callPackage ({ dash, deferred, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: 32561 + ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, request, request-deferred, s }: 32373 32562 melpaBuild { 32374 32563 pname = "ycmd"; 32375 - version = "0.9"; 32564 + version = "1.0"; 32376 32565 src = fetchFromGitHub { 32377 32566 owner = "abingham"; 32378 32567 repo = "emacs-ycmd"; 32379 - rev = "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c"; 32380 - sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; 32568 + rev = "be21ca7f807e70812b6fc0e0a4ea83b41723d815"; 32569 + sha256 = "1q30k8rhk3plknkk544h2dk48yqmxwh4xp3rq1lz8isc3580qwxx"; 32381 32570 }; 32382 32571 recipeFile = fetchurl { 32383 32572 url = "https://raw.githubusercontent.com/milkypostman/melpa/4b25378540c64d0214797348579671bf2b8cc696/recipes/ycmd"; 32384 32573 sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna"; 32385 32574 name = "ycmd"; 32386 32575 }; 32387 - packageRequires = [ dash deferred emacs f popup ]; 32576 + packageRequires = [ 32577 + cl-lib 32578 + dash 32579 + deferred 32580 + emacs 32581 + let-alist 32582 + pkg-info 32583 + request 32584 + request-deferred 32585 + s 32586 + ]; 32388 32587 meta = { 32389 32588 homepage = "https://melpa.org/#/ycmd"; 32390 32589 license = lib.licenses.free; ··· 32537 32736 license = lib.licenses.free; 32538 32737 }; 32539 32738 }) {}; 32540 - zoom-window = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 32739 + zoom-window = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 32541 32740 melpaBuild { 32542 32741 pname = "zoom-window"; 32543 - version = "0.4"; 32742 + version = "0.5"; 32544 32743 src = fetchFromGitHub { 32545 32744 owner = "syohex"; 32546 32745 repo = "emacs-zoom-window"; 32547 - rev = "f0eb12e389d8d2d13b5911907ef872e18230e00e"; 32548 - sha256 = "13393bd5lqpbv7m3p6ihg0ghx1w4w6mrnybx4m8hcfvcn17dr3hw"; 32746 + rev = "eefe36d26e04a9f89aad27671d1f06e9d4736ac6"; 32747 + sha256 = "08splg49ncgfsap3ivpc974wmg22ikshwv33l0i6advjjv9cskhm"; 32549 32748 }; 32550 32749 recipeFile = fetchurl { 32551 32750 url = "https://raw.githubusercontent.com/milkypostman/melpa/8a55cc66cc0deb1c24023f638b8e920c9d975859/recipes/zoom-window"; 32552 32751 sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; 32553 32752 name = "zoom-window"; 32554 32753 }; 32555 - packageRequires = [ cl-lib emacs ]; 32754 + packageRequires = [ emacs ]; 32556 32755 meta = { 32557 32756 homepage = "https://melpa.org/#/zoom-window"; 32558 32757 license = lib.licenses.free;
+6 -6
pkgs/applications/editors/emacs-modes/org-generated.nix
··· 1 1 { callPackage }: { 2 2 org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 3 3 pname = "org"; 4 - version = "20161102"; 4 + version = "20161118"; 5 5 src = fetchurl { 6 - url = "http://orgmode.org/elpa/org-20161102.tar"; 7 - sha256 = "1mj100pnxskgrfmabj0vdmsijmr7v5ir7c18aypv92nh3fnmiz0f"; 6 + url = "http://orgmode.org/elpa/org-20161118.tar"; 7 + sha256 = "1lk2j93zcaamj2m2720nxsza7j35054kg72w35w9z1bbiqmv2haj"; 8 8 }; 9 9 packageRequires = []; 10 10 meta = { ··· 14 14 }) {}; 15 15 org-plus-contrib = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 16 16 pname = "org-plus-contrib"; 17 - version = "20161102"; 17 + version = "20161118"; 18 18 src = fetchurl { 19 - url = "http://orgmode.org/elpa/org-plus-contrib-20161102.tar"; 20 - sha256 = "124rizp50jaqshcmrr7x2132x5sy7q81nfb37482j9wzrc9l7b95"; 19 + url = "http://orgmode.org/elpa/org-plus-contrib-20161118.tar"; 20 + sha256 = "1la8qw18akqc4p7p0qi675xm3r149vwazzjc2gkik97p12ip83z7"; 21 21 }; 22 22 packageRequires = []; 23 23 meta = {
+10 -10
pkgs/applications/editors/idea/default.nix
··· 120 120 { 121 121 clion = buildClion rec { 122 122 name = "clion-${version}"; 123 - version = "2016.2.3"; 123 + version = "2016.3"; 124 124 description = "C/C++ IDE. New. Intelligent. Cross-platform"; 125 125 license = stdenv.lib.licenses.unfree; 126 126 src = fetchurl { 127 127 url = "https://download.jetbrains.com/cpp/CLion-${version}.tar.gz"; 128 - sha256 = "1gcglxmffq815r97wyy2wx1jsv467qyys8c0m5dv3yjdxknccbqd"; 128 + sha256 = "16nszamr0bxg8aghyrg4wzxbp9158kjzhr957ljpbipz0rlixf31"; 129 129 }; 130 130 wmClass = "jetbrains-clion"; 131 131 }; ··· 240 240 241 241 pycharm-community = buildPycharm rec { 242 242 name = "pycharm-community-${version}"; 243 - version = "2016.2.3"; 243 + version = "2016.3"; 244 244 description = "PyCharm Community Edition"; 245 245 license = stdenv.lib.licenses.asl20; 246 246 src = fetchurl { 247 247 url = "https://download.jetbrains.com/python/${name}.tar.gz"; 248 - sha256 = "0nph0dp0a2y6vrbc1a2d5iy1fzhm4wbkp6kpdk6mcfpnz5ppz84f"; 248 + sha256 = "1pi822ihzy58jszdy7y2pyni6pki9ih8s9xdbwlbwg9vck1iqprs"; 249 249 }; 250 250 wmClass = "jetbrains-pycharm-ce"; 251 251 }; 252 252 253 253 pycharm-professional = buildPycharm rec { 254 254 name = "pycharm-professional-${version}"; 255 - version = "2016.2.3"; 255 + version = "2016.3"; 256 256 description = "PyCharm Professional Edition"; 257 257 license = stdenv.lib.licenses.unfree; 258 258 src = fetchurl { 259 259 url = "https://download.jetbrains.com/python/${name}.tar.gz"; 260 - sha256 = "0pjgdwpkbf6fgrhml97inmsjavz1n9l4ns1pnhv3mssnribg3vm1"; 260 + sha256 = "1b4ib77wzg0y12si8zqrfwbhv4kvmy9nm5dsrdr3k7f89dqg3279"; 261 261 }; 262 262 wmClass = "jetbrains-pycharm"; 263 263 }; 264 264 265 265 phpstorm = buildPhpStorm rec { 266 266 name = "phpstorm-${version}"; 267 - version = "2016.2.2"; 267 + version = "2016.3"; 268 268 description = "Professional IDE for Web and PHP developers"; 269 269 license = stdenv.lib.licenses.unfree; 270 270 src = fetchurl { 271 271 url = "https://download.jetbrains.com/webide/PhpStorm-${version}.tar.gz"; 272 - sha256 = "0np0ypqga1xx9zq0qwpxiw9xdkr7k0jcdv1w790aafjar7a5qbyz"; 272 + sha256 = "0hzjhwij2x3b5fqwyd69h24ld13bpc2bf9wdcd1jy758waf0d91y"; 273 273 }; 274 274 wmClass = "jetbrains-phpstorm"; 275 275 }; ··· 288 288 289 289 webstorm = buildWebStorm rec { 290 290 name = "webstorm-${version}"; 291 - version = "2016.3"; 291 + version = "2016.3.1"; 292 292 description = "Professional IDE for Web and JavaScript development"; 293 293 license = stdenv.lib.licenses.unfree; 294 294 src = fetchurl { 295 295 url = "https://download.jetbrains.com/webstorm/WebStorm-${version}.tar.gz"; 296 - sha256 = "12jv8x7rq0cpvrbrb2l2x1p7is8511fx6ia79z5v3fnwxf17i3w5"; 296 + sha256 = "10za4d6w9yns7kclbviizslq2y7zas9rkmvs3xwrfw1rdw2b69af"; 297 297 }; 298 298 wmClass = "jetbrains-webstorm"; 299 299 };
+3 -3
pkgs/applications/graphics/graphicsmagick/default.nix
··· 15 15 patches = [ 16 16 ./disable-popen.patch 17 17 (fetchpatch { 18 - url = "https://sources.debian.net/data/main/g/graphicsmagick/1.3.25-4/debian/patches/CVE-2016-7996_CVE-2016-7997.patch"; 18 + url = "https://sources.debian.net/data/main/g/graphicsmagick/1.3.25-5/debian/patches/CVE-2016-7996_CVE-2016-7997.patch"; 19 19 sha256 = "0xsby2z8n7cnnln7szjznq7iaabq323wymvdjra59yb41aix74r2"; 20 20 }) 21 21 (fetchpatch { 22 - url = "https://sources.debian.net/data/main/g/graphicsmagick/1.3.25-4/debian/patches/CVE-2016-7800_part1.patch"; 22 + url = "https://sources.debian.net/data/main/g/graphicsmagick/1.3.25-5/debian/patches/CVE-2016-7800_part1.patch"; 23 23 sha256 = "02s0x9bkbnm5wrd0d2x9ld4d9z5xqpfk310lyylyr5zlnhqxmwgn"; 24 24 }) 25 25 (fetchpatch { 26 - url = "https://sources.debian.net/data/main/g/graphicsmagick/1.3.25-4/debian/patches/CVE-2016-7800_part2.patch"; 26 + url = "https://sources.debian.net/data/main/g/graphicsmagick/1.3.25-5/debian/patches/CVE-2016-7800_part2.patch"; 27 27 sha256 = "1h4xv3i1aq5avsd584rwa5sa7ca8f7w9ggmh7j2llqq5kymwsv5f"; 28 28 }) 29 29 (fetchpatch {
+5 -6
pkgs/applications/graphics/krita/default.nix
··· 1 - { stdenv, lib, fetchgit, cmake, extra-cmake-modules, makeQtWrapper 1 + { stdenv, lib, fetchurl, cmake, extra-cmake-modules, makeQtWrapper 2 2 , karchive, kconfig, kwidgetsaddons, kcompletion, kcoreaddons 3 3 , kguiaddons, ki18n, kitemmodels, kitemviews, kwindowsystem 4 4 , kio, kcrash ··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 name = "krita-${version}"; 11 - version = "3.0"; 11 + version = "3.0.1.1"; 12 12 13 - src = fetchgit { 14 - url = "http://phabricator.kde.org/diffusion/KRITA/krita.git"; 15 - rev = "refs/tags/v${version}"; 16 - sha256 = "0aas86667ncp8jz00c8qk7bm26g76l65cysh06wxr8kxbvqynrdn"; 13 + src = fetchurl { 14 + url = "http://download.kde.org/stable/krita/${version}/${name}.tar.gz"; 15 + sha256 = "0v58p9am2gsrgn5nhynvdg1a7v8d9kcsswb1962r8ijszm3fav5k"; 17 16 }; 18 17 19 18 nativeBuildInputs = [ cmake extra-cmake-modules makeQtWrapper ];
+3 -3
pkgs/applications/graphics/yed/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "yEd-${version}"; 5 - version = "3.16.1"; 5 + version = "3.16.2.1"; 6 6 7 7 src = requireFile { 8 8 name = "${name}.zip"; 9 9 url = "https://www.yworks.com/en/products/yfiles/yed/"; 10 - sha256 = "0h7ykcpvsikjfap51hpcz6z814riiwyps585j2i1yv9dmsbqdi7j"; 10 + sha256 = "019qfmdifqsrc9h4g3zbn7ivdc0dzlp3isa5ixdkgdhfsdm79b27"; 11 11 }; 12 12 13 13 nativeBuildInputs = [ unzip makeWrapper ]; ··· 23 23 24 24 meta = with stdenv.lib; { 25 25 license = licenses.unfree; 26 - homepage = http://www.yworks.com/en/products/yfiles/yed/; 26 + homepage = "http://www.yworks.com/en/products/yfiles/yed/"; 27 27 description = "A powerful desktop application that can be used to quickly and effectively generate high-quality diagrams"; 28 28 platforms = jre.meta.platforms; 29 29 maintainers = with maintainers; [ abbradar ];
+2 -2
pkgs/applications/misc/gnuradio/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 name = "gnuradio-${version}"; 26 - version = "3.7.9.2"; 26 + version = "3.7.10.1"; 27 27 28 28 src = fetchurl { 29 29 url = "http://gnuradio.org/releases/gnuradio/${name}.tar.gz"; 30 - sha256 = "0qdmakvgq3jxnnqpcn3k4q07vj8ycrbyzv32h76k71cv13w2yrki"; 30 + sha256 = "0ds9mcw8hgm03f82jvp3j4mm02ha6zvsl77lp13jzqmbqifbdmv3"; 31 31 }; 32 32 33 33 buildInputs = [
+6 -5
pkgs/applications/misc/octoprint/default.nix
··· 16 16 17 17 sockjs-tornado = pythonPackages.buildPythonPackage rec { 18 18 name = "sockjs-tornado-${version}"; 19 - version = "1.0.2"; 19 + version = "1.0.3"; 20 20 21 21 src = fetchurl { 22 22 url = "mirror://pypi/s/sockjs-tornado/${name}.tar.gz"; 23 - sha256 = "15lcy40h2cm0l8aknbrk48p2sni5wzybsqjx1hxwpk9lfa1xryyv"; 23 + sha256 = "16cff40nniqsyvda1pb2j3b4zwmrw7y2g1vqq78lp20xpmhnwwkd"; 24 24 }; 25 25 26 26 # This is needed for compatibility with OctoPrint ··· 28 28 29 29 meta = with stdenv.lib; { 30 30 description = "SockJS python server implementation on top of Tornado framework"; 31 - homepage = http://github.com/mrjoes/sockjs-tornado/; 31 + homepage = "http://github.com/mrjoes/sockjs-tornado/"; 32 32 license = licenses.mit; 33 33 platforms = platforms.all; 34 34 maintainers = with maintainers; [ abbradar ]; ··· 37 37 38 38 in pythonPackages.buildPythonApplication rec { 39 39 name = "OctoPrint-${version}"; 40 - version = "1.2.15"; 40 + version = "1.2.17"; 41 41 42 42 src = fetchFromGitHub { 43 43 owner = "foosel"; 44 44 repo = "OctoPrint"; 45 45 rev = version; 46 - sha256 = "0qfragp7n8m7l5l30s5fz1x7xzini2sdh2y3m1ahs7ay8zp4xk56"; 46 + sha256 = "1di2f5npwsfckx5p2fl23bl5zi75i0aksd9qy4sa3zmw672337fh"; 47 47 }; 48 48 49 49 # We need old Tornado ··· 67 67 -e 's,Flask-Principal>=[^"]*,Flask-Principal,g' \ 68 68 -e 's,markdown>=[^"]*,markdown,g' \ 69 69 -e 's,Flask-Assets>=[^"]*,Flask-Assets,g' \ 70 + -e 's,Flask-Login>=[^"]*,Flask-Login,g' \ 70 71 -e 's,rsa>=[^"]*,rsa,g' \ 71 72 -e 's,PyYAML>=[^"]*,PyYAML,g' \ 72 73 setup.py
+24 -17
pkgs/applications/misc/octoprint/m33-fio-one-library.patch
··· 1 - From 62b4fabd1d4ee7a584a565d48c7eaec6e80fe0bd Mon Sep 17 00:00:00 2001 1 + From c84b2130dab0d26be35294d023ed8f4be404c3c1 Mon Sep 17 00:00:00 2001 2 2 From: Nikolay Amiantov <ab@fmap.me> 3 - Date: Fri, 12 Aug 2016 23:41:22 +0300 3 + Date: Wed, 23 Nov 2016 00:40:48 +0300 4 4 Subject: [PATCH] Build and use one version of preprocessor library 5 5 6 6 --- 7 - octoprint_m33fio/__init__.py | 66 +----------------------------------------- 8 - shared library source/Makefile | 59 +++---------------------------------- 9 - 2 files changed, 5 insertions(+), 120 deletions(-) 7 + octoprint_m33fio/__init__.py | 67 ++---------------------------------------- 8 + shared library source/Makefile | 62 +++----------------------------------- 9 + 2 files changed, 6 insertions(+), 123 deletions(-) 10 10 11 11 diff --git a/octoprint_m33fio/__init__.py b/octoprint_m33fio/__init__.py 12 - index da539f5..b0a17ad 100755 12 + index f9f84c4..b365024 100755 13 13 --- a/octoprint_m33fio/__init__.py 14 14 +++ b/octoprint_m33fio/__init__.py 15 - @@ -979,71 +979,7 @@ class M33FioPlugin( 15 + @@ -1061,71 +1061,8 @@ class M33FioPlugin( 16 16 # Check if using shared library or checking if it is usable 17 17 if self._settings.get_boolean(["UseSharedLibrary"]) or isUsable : 18 18 ··· 81 81 - 82 82 - # Set shared library 83 83 - self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace('\\', '/') + "/static/libraries/preprocessor_x86-64.dylib") 84 - + self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace('\\', '/') + "/static/libraries/libpreprocessor.so") 84 + + # Set shared library 85 + + self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace('\\', '/') + "/static/libraries/libpreprocessor.so") 85 86 86 87 # Check if shared library was set 87 88 if self.sharedLibrary : 88 89 diff --git a/shared library source/Makefile b/shared library source/Makefile 89 - index a43d657..0b254aa 100755 90 + index 887899b..4c74f5c 100755 90 91 --- a/shared library source/Makefile 91 92 +++ b/shared library source/Makefile 92 - @@ -1,62 +1,11 @@ 93 - # Target platform options: LINUX32, LINUX64, WINDOWS32, WINDOWS64, PI, PI2, ARM7, OSX32, OSX64 93 + @@ -1,68 +1,14 @@ 94 + -# Target platform options: LINUX32, LINUX64, WINDOWS32, WINDOWS64, PI, PI2, ARM7, OSX32, OSX64 94 95 -LIBRARY_NAME = preprocessor 96 + -TARGET_PLATFORM = LINUX64 95 97 +LIBRARY_NAME = libpreprocessor 96 - TARGET_PLATFORM = LINUX64 97 98 VER = .1 98 99 99 100 -ifeq ($(TARGET_PLATFORM), LINUX32) ··· 122 123 - 123 124 -ifeq ($(TARGET_PLATFORM), PI) 124 125 - PROG = $(LIBRARY_NAME)_arm1176jzf-s.so 125 - - CC = ~/tools/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf/bin/arm-linux-gnueabihf-g++ 126 + - CC = /opt/arm-toolchain/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf/bin/arm-linux-gnueabihf-g++ 126 127 - CFLAGS = -fPIC -mcpu=arm1176jzf-s -mfpu=vfp -mfloat-abi=hard -static-libgcc -O3 -Wl,-soname,$(PROG)$(VER) -static-libstdc++ 127 128 -endif 128 129 - 129 130 -ifeq ($(TARGET_PLATFORM), PI2) 130 131 - PROG = $(LIBRARY_NAME)_arm_cortex-a7.so 131 - - CC = ~/tools/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf/bin/arm-linux-gnueabihf-g++ 132 + - CC = /opt/arm-toolchain/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf/bin/arm-linux-gnueabihf-g++ 132 133 - CFLAGS = -fPIC -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard -static-libgcc -O3 -Wl,-soname,$(PROG)$(VER) -static-libstdc++ 133 134 -endif 134 135 - 135 136 -ifeq ($(TARGET_PLATFORM), ARM7) 136 137 - PROG = $(LIBRARY_NAME)_arm7.so 137 - - CC = ~/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin/arm-linux-gnueabihf-g++ 138 + - CC = /opt/arm-toolchain/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin/arm-linux-gnueabihf-g++ 138 139 - CFLAGS = -fPIC -mcpu=generic-armv7-a -mfpu=vfp -mfloat-abi=hard -static-libgcc -O3 -Wl,-soname,$(PROG)$(VER) -static-libstdc++ 139 140 -endif 140 141 - ··· 151 152 - CFLAGS = -fPIC -m64 -stdlib=libc++ -O3 -Wl,-install_name,$(PROG)$(VER) 152 153 -endif 153 154 +PROG = $(LIBRARY_NAME).so 154 - +CC = g++ 155 155 +CFLAGS = -fPIC -O3 -Wl,-soname,$(PROG)$(VER) 156 156 157 157 SRCS = preprocessor.cpp gcode.cpp vector.cpp 158 158 CFLAGS += -Wall -std=c++11 -fvisibility=hidden -shared 159 + 160 + all: 161 + - $(CC) $(CFLAGS) -o ../octoprint_m33fio/static/libraries/$(PROG) $(SRCS) 162 + + $(CXX) $(CFLAGS) -o ../octoprint_m33fio/static/libraries/$(PROG) $(SRCS) 163 + 164 + clean: 165 + rm -f ../octoprint_m33fio/static/libraries/$(PROG) 159 166 -- 160 - 2.9.2 167 + 2.10.2 161 168
+2 -2
pkgs/applications/misc/octoprint/plugins.nix
··· 12 12 13 13 m33-fio = buildPlugin rec { 14 14 name = "M33-Fio-${version}"; 15 - version = "1.7"; 15 + version = "1.11"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "donovan6000"; 19 19 repo = "M33-Fio"; 20 20 rev = "V${version}"; 21 - sha256 = "14sqvgrpf3zvgycjj7f3m7m2flx06zq4h0yhq4g18av0zbsrv7yp"; 21 + sha256 = "11nbsi93clrqlnmaj73ak87hkqyghybccqz5jzhn2dhp0263adhl"; 22 22 }; 23 23 24 24 patches = [
+3 -3
pkgs/applications/misc/rxvt_unicode-plugins/urxvt-tabbedex/default.nix
··· 1 1 { stdenv, fetchFromGitHub, perl }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "urxvt-tabbedex-2016-08-09"; 4 + name = "urxvt-tabbedex-2016-08-17"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "mina86"; 8 8 repo = "urxvt-tabbedex"; 9 - rev = "ac220eb3984e151ba14dce08f446bc7bc8ca29a2"; 10 - sha256 = "1b5mff5137jb5ysklsmfp5ql3m4g1z3bdhk0nwhz2hgwz40ap6k8"; 9 + rev = "089d0cb724eeb62fa8a5dfcb00ced7761e794149"; 10 + sha256 = "0a5jrb7ryafj55fgi8fhpy3gmb1xh5j7pbn8p5j5k6s2fnh0g0hq"; 11 11 }; 12 12 13 13 nativeBuildInputs = [ perl ];
+2 -2
pkgs/applications/networking/browsers/qutebrowser/default.nix
··· 7 7 let 8 8 pdfjs = stdenv.mkDerivation rec { 9 9 name = "pdfjs-${version}"; 10 - version = "1.4.20"; 10 + version = "1.5.188"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/mozilla/pdf.js/releases/download/v${version}/${name}-dist.zip"; 14 - sha256 = "1ca1fzyc5qnan6gavcd8bnfqriqqvgdsf4m8ka4nayf50k64xxj9"; 14 + sha256 = "1y3yaqfgjj96qzvbm5200x68j5hy1qs7l2mqm3kbbj2b58z9f1qv"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ unzip ];
+4 -4
pkgs/applications/networking/browsers/vivaldi/default.nix
··· 10 10 }: 11 11 12 12 let 13 - version = "1.4"; 14 - build = "589.38-1"; 13 + version = "1.5"; 14 + build = "658.44-1"; 15 15 fullVersion = "stable_${version}.${build}"; 16 16 17 17 info = if stdenv.is64bit then { 18 18 arch = "amd64"; 19 - sha256 = "08qdpl5dkb2snpqlk3rsqlyl9rfas9v6bbcw2p4kzazhinak5hv3"; 19 + sha256 = "02zb9pw8h7gm0hlhk95bn8fz14x68ax2jz8g7bgzppyryq8xlg6l"; 20 20 } else { 21 21 arch = "i386"; 22 - sha256 = "0wpaglc1aaam5bqxgvf5zwcbr0xll8yj63l19q792l51j1vkv56q"; 22 + sha256 = "1cwpmdsv4rrr13d1x017rms7cjp5zh3vpz3b44ar49ip6zj6j0a8"; 23 23 }; 24 24 25 25 in stdenv.mkDerivation rec {
+7 -6
pkgs/applications/networking/browsers/w3m/default.nix
··· 1 - { stdenv, fetchgit, fetchpatch 1 + { stdenv, fetchFromGitHub, fetchpatch 2 2 , ncurses, boehmgc, gettext, zlib 3 3 , sslSupport ? true, openssl ? null 4 4 , graphicsSupport ? true, imlib2 ? null ··· 15 15 with stdenv.lib; 16 16 17 17 stdenv.mkDerivation rec { 18 - name = "w3m-0.5.3-2015-12-20"; 18 + name = "w3m-v0.5.3+git20161120"; 19 19 20 - src = fetchgit { 21 - url = "git://anonscm.debian.org/collab-maint/w3m.git"; 22 - rev = "e0b6e022810271bd0efcd655006389ee3879e94d"; 23 - sha256 = "1vahm3719hb0m20nc8k88165z35f8b15qasa0whhk78r12bls1q6"; 20 + src = fetchFromGitHub { 21 + owner = "tats"; 22 + repo = "w3m"; 23 + rev = "v0.5.3+git20161120"; 24 + sha256 = "06n5a9jdyihkd4xdjmyci32dpqp1k2l5awia5g9ng0bn256bacdc"; 24 25 }; 25 26 26 27 NIX_LDFLAGS = optionalString stdenv.isSunOS "-lsocket -lnsl";
+36
pkgs/applications/networking/cluster/cni/default.nix
··· 1 + { stdenv, fetchFromGitHub, go }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "cni-${version}"; 5 + version = "0.3.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "containernetworking"; 9 + repo = "cni"; 10 + rev = "v${version}"; 11 + sha256 = "1nvixvf5slnsdrfpfs2km64x680wf83jbyp7il12bcim37q2az7m"; 12 + }; 13 + 14 + buildInputs = [ go ]; 15 + 16 + outputs = ["out" "plugins"]; 17 + 18 + buildPhase = '' 19 + patchShebangs build 20 + ./build 21 + ''; 22 + 23 + installPhase = '' 24 + mkdir -p $out/bin $plugins 25 + mv bin/cnitool $out/bin 26 + mv bin/* $plugins/ 27 + ''; 28 + 29 + meta = with stdenv.lib; { 30 + description = "Container Network Interface - networking for Linux containers"; 31 + license = licenses.asl20; 32 + homepage = https://github.com/containernetworking/cni; 33 + maintainers = with maintainers; [offline]; 34 + platforms = [ "x86_64-linux" ]; 35 + }; 36 + }
-3
pkgs/applications/networking/cluster/kubernetes/default.nix
··· 48 48 ''; 49 49 50 50 preFixup = '' 51 - wrapProgram "$out/bin/kube-proxy" --prefix PATH : "${iptables}/bin" 52 - wrapProgram "$out/bin/kubelet" --prefix PATH : "${coreutils}/bin" 53 - 54 51 # Remove references to go compiler 55 52 while read file; do 56 53 cat $file | sed "s,${go},$(echo "${go}" | sed "s,$NIX_STORE/[^-]*,$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,"),g" > $file.tmp
+43 -41
pkgs/applications/networking/cluster/mesos/default.nix
··· 2 2 , automake115x, libtool, unzip, gnutar, jdk, maven, python, wrapPython 3 3 , setuptools, boto, pythonProtobuf, apr, subversion, gzip, systemd 4 4 , leveldb, glog, perf, utillinux, libnl, iproute, openssl, libevent 5 + , ethtool, coreutils 5 6 , bash 6 7 }: 7 8 ··· 10 11 soext = if stdenv.system == "x86_64-darwin" then "dylib" else "so"; 11 12 12 13 in stdenv.mkDerivation rec { 13 - version = "0.28.2"; 14 + version = "1.0.1"; 14 15 name = "mesos-${version}"; 15 16 16 17 enableParallelBuilding = true; ··· 18 19 19 20 src = fetchurl { 20 21 url = "mirror://apache/mesos/${version}/${name}.tar.gz"; 21 - sha256 = "0wh4h11w5qvqa66fiz0qbm9q48d3jz48mw6mm22bcy9q9wmzrxcn"; 22 + sha256 = "1hdh2wh11ck98ycfrxfzgivgk2pjl3638vkyw14xj7faj9qxjlz0"; 22 23 }; 23 24 24 25 patches = [ ··· 29 30 ./rb51324.patch 30 31 ./rb51325.patch 31 32 32 - ./maven_repo.patch 33 + # see https://github.com/cstrahan/mesos/tree/nixos-${version} 34 + ./nixos.patch 33 35 ]; 34 36 35 37 buildInputs = [ ··· 45 47 ]; 46 48 47 49 preConfigure = '' 48 - substituteInPlace src/Makefile.am --subst-var-by mavenRepo ${mavenRepo} 50 + substituteInPlace 3rdparty/stout/include/stout/os/posix/fork.hpp \ 51 + --subst-var-by sh ${bash}/bin/bash 49 52 50 - substituteInPlace 3rdparty/libprocess/include/process/subprocess.hpp \ 51 - --replace '"sh"' '"${bash}/bin/bash"' 52 - 53 - substituteInPlace 3rdparty/libprocess/3rdparty/stout/include/stout/posix/os.hpp \ 54 - --replace '"sh"' '"${bash}/bin/bash"' 55 - 56 - substituteInPlace 3rdparty/libprocess/3rdparty/stout/include/stout/os/posix/shell.hpp \ 57 - --replace '"sh"' '"${bash}/bin/bash"' 58 - 59 - substituteInPlace 3rdparty/libprocess/3rdparty/stout/include/stout/os/posix/fork.hpp \ 60 - --replace '"sh"' '"${bash}/bin/bash"' 53 + substituteInPlace 3rdparty/stout/include/stout/os/posix/shell.hpp \ 54 + --subst-var-by sh ${bash}/bin/bash 61 55 62 - substituteInPlace src/cli/mesos-scp \ 63 - --replace "'scp " "'${openssh}/bin/scp " 56 + substituteInPlace src/Makefile.am \ 57 + --subst-var-by mavenRepo ${mavenRepo} 64 58 65 - substituteInPlace src/launcher/executor.cpp \ 66 - --replace '"sh"' '"${bash}/bin/bash"' 59 + substituteInPlace src/cli/mesos-scp \ 60 + --subst-var-by scp ${openssh}/bin/scp 67 61 68 62 substituteInPlace src/launcher/fetcher.cpp \ 69 - --replace '"gzip' '"${gzip}/bin/gzip' \ 70 - --replace '"tar' '"${gnutar}/bin/tar' \ 71 - --replace '"unzip' '"${unzip}/bin/unzip' 63 + --subst-var-by gzip ${gzip}/bin/gzip \ 64 + --subst-var-by tar ${gnutar}/bin/tar \ 65 + --subst-var-by unzip ${unzip}/bin/unzip 72 66 73 67 substituteInPlace src/python/cli/src/mesos/cli.py \ 74 - --replace "['mesos-resolve'" "['$out/bin/mesos-resolve'" 68 + --subst-var-by mesos-resolve $out/bin/mesos-resolve 75 69 76 - substituteInPlace src/slave/containerizer/mesos/launch.cpp \ 77 - --replace '"sh"' '"${bash}/bin/bash"' 70 + substituteInPlace src/slave/containerizer/mesos/isolators/posix/disk.cpp \ 71 + --subst-var-by du ${coreutils}/bin/du \ 72 + --subst-var-by cp ${coreutils}/bin/cp 78 73 79 - '' + lib.optionalString stdenv.isLinux '' 74 + substituteInPlace src/slave/containerizer/mesos/provisioner/backends/copy.cpp \ 75 + --subst-var-by cp ${coreutils}/bin/cp 80 76 81 - substituteInPlace configure.ac \ 82 - --replace /usr/include/libnl3 ${libnl.dev}/include/libnl3 77 + substituteInPlace src/uri/fetchers/copy.cpp \ 78 + --subst-var-by cp ${coreutils}/bin/cp 83 79 84 - substituteInPlace src/linux/perf.cpp \ 85 - --replace '"perf ' '"${perf}/bin/perf ' 80 + substituteInPlace src/uri/fetchers/curl.cpp \ 81 + --subst-var-by curl ${curl}/bin/curl 86 82 87 - substituteInPlace src/linux/systemd.cpp \ 88 - --replace 'os::realpath("/sbin/init")' '"${systemd}/lib/systemd/systemd"' 83 + substituteInPlace src/uri/fetchers/docker.cpp \ 84 + --subst-var-by curl ${curl}/bin/curl 85 + 86 + '' + lib.optionalString stdenv.isLinux '' 87 + 88 + substituteInPlace src/linux/perf.cpp \ 89 + --subst-var-by perf ${perf}/bin/perf 89 90 90 91 substituteInPlace src/slave/containerizer/mesos/isolators/filesystem/shared.cpp \ 91 - --replace '"mount ' '"${utillinux}/bin/mount ' \ 92 + --subst-var-by mount ${utillinux}/bin/mount 92 93 93 94 substituteInPlace src/slave/containerizer/mesos/isolators/namespaces/pid.cpp \ 94 - --replace '"mount ' '"${utillinux}/bin/mount ' \ 95 + --subst-var-by mount ${utillinux}/bin/mount 95 96 96 97 substituteInPlace src/slave/containerizer/mesos/isolators/network/port_mapping.cpp \ 97 - --replace '"tc ' '"${iproute}/bin/tc ' \ 98 - --replace '"ip ' '"${iproute}/bin/ip ' \ 99 - --replace '"mount ' '"${utillinux}/bin/mount ' \ 100 - --replace '/bin/sh' "${stdenv.shell}" 98 + --subst-var-by tc ${iproute}/bin/tc \ 99 + --subst-var-by ip ${iproute}/bin/ip \ 100 + --subst-var-by mount ${utillinux}/bin/mount \ 101 + --subst-var-by sh ${stdenv.shell} \ 102 + --subst-var-by ethtool ${ethtool}/sbin/ethtool 101 103 ''; 102 104 103 105 configureFlags = [ ··· 113 115 "--with-ssl=${openssl.dev}" 114 116 "--enable-libevent" 115 117 "--with-libevent=${libevent.dev}" 118 + "--with-protobuf=${pythonProtobuf.protobuf}" 119 + "PROTOBUF_JAR=${mavenRepo}/com/google/protobuf/protobuf-java/2.6.1/protobuf-java-2.6.1.jar" 116 120 ] ++ lib.optionals stdenv.isLinux [ 117 121 "--with-network-isolator" 122 + "--with-nl=${libnl.dev}" 118 123 ]; 119 124 120 125 postInstall = '' ··· 180 185 description = "A cluster manager that provides efficient resource isolation and sharing across distributed applications, or frameworks"; 181 186 maintainers = with maintainers; [ cstrahan kevincox offline rushmorem ]; 182 187 platforms = platforms.linux; 183 - # Marked as broken due to needing an update for security issues. 184 - # See: https://github.com/NixOS/nixpkgs/issues/18856 185 - broken = true; 186 188 }; 187 189 }
+1190 -1133
pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh
··· 9 9 curl --fail --location --insecure --retry 3 --max-redirs 20 "$url" --output "$out/$repoPath" 10 10 } 11 11 12 - fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar 13 - fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.jar 14 - fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.jar 15 - fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.jar 16 - fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.jar 17 - fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar 18 - fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar 19 - fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar 20 - fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.jar 21 - fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar 22 - fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar 23 - fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar 24 - fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar 25 - fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar 26 - fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.jar 27 - fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar 28 - fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar 29 - fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar 30 - fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar 31 - fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar 32 - fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar 33 - fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar 34 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar 35 - fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar 36 - fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar.sha1 37 - fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom 38 - fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom.sha1 39 - fetchArtifact asm/asm/3.2/asm-3.2.pom 40 - fetchArtifact asm/asm/3.2/asm-3.2.pom.sha1 41 - fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar 42 - fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar.sha1 43 - fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom 44 - fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom.sha1 45 - fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar 46 - fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar.sha1 47 - fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom 48 - fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom.sha1 49 - fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom 50 - fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom.sha1 51 - fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar 52 - fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar.sha1 53 - fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom 54 - fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom.sha1 55 - fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom 56 - fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom.sha1 57 - fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom 58 - fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom.sha1 59 - fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom 60 - fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom.sha1 61 - fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar 62 - fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar.sha1 63 - fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom 64 - fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom.sha1 65 - fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar 66 - fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar.sha1 67 - fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom 68 - fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom.sha1 69 - fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom 70 - fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom.sha1 71 - fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar 72 - fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1 73 - fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom 74 - fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1 75 - fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar 76 - fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom 77 - fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1 78 - fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.jar 79 - fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.pom 80 - fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.pom.sha1 81 - fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar 82 - fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar.sha1 83 - fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom 84 - fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom.sha1 85 - fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom 86 - fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom.sha1 87 - fetchArtifact com/google/google/1/google-1.pom 88 - fetchArtifact com/google/google/1/google-1.pom.sha1 89 - fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar 90 - fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar.sha1 91 - fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom 92 - fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom.sha1 93 - fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom 94 - fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom.sha1 95 - fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar 96 - fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar.sha1 97 - fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom 98 - fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom.sha1 99 - fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar 100 - fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar.sha1 101 - fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom 102 - fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom.sha1 103 - fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom 104 - fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom.sha1 105 - fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar 106 - fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar.sha1 107 - fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom 108 - fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom.sha1 109 - fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.jar 110 - fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.jar.sha1 111 - fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom 112 - fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom.sha1 113 - fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar 114 - fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1 115 - fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom 116 - fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1 117 - fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar 118 - fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar.sha1 119 - fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom 120 - fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom.sha1 121 - fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar 122 - fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar.sha1 123 - fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom 124 - fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom.sha1 125 - fetchArtifact commons-collections/commons-collections/2.0/commons-collections-2.0.pom 126 - fetchArtifact commons-collections/commons-collections/2.0/commons-collections-2.0.pom.sha1 127 - fetchArtifact commons-collections/commons-collections/2.1/commons-collections-2.1.pom 128 - fetchArtifact commons-collections/commons-collections/2.1/commons-collections-2.1.pom.sha1 129 - fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar 130 - fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar.sha1 131 - fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom 132 - fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom.sha1 133 - fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar 134 - fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar.sha1 135 - fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom 136 - fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom.sha1 137 - fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar 138 - fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar.sha1 139 - fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom 140 - fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom.sha1 141 - fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar 142 - fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar.sha1 143 - fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom 144 - fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom.sha1 145 - fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar 146 - fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar.sha1 147 - fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom 148 - fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom.sha1 149 - fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar 150 - fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar.sha1 151 - fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom 152 - fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom.sha1 153 - fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar 154 - fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar.sha1 155 - fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.pom 156 - fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 157 - fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.jar 158 - fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.jar.sha1 159 - fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom 160 - fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom.sha1 161 - fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar 162 - fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar.sha1 163 - fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom 164 - fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1 165 - fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar 166 - fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar.sha1 167 - fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom 168 - fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom.sha1 169 - fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.jar 170 - fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.jar.sha1 171 - fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.pom 172 - fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.pom.sha1 173 - fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.jar 174 - fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.jar.sha1 175 - fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.pom 176 - fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 177 - fetchArtifact commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom 178 - fetchArtifact commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom.sha1 179 - fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar 180 - fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar.sha1 181 - fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom 182 - fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 183 - fetchArtifact commons-logging/commons-logging/1.0/commons-logging-1.0.pom 184 - fetchArtifact commons-logging/commons-logging/1.0/commons-logging-1.0.pom.sha1 185 - fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar 186 - fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar.sha1 187 - fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom 188 - fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom.sha1 189 - fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom 190 - fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom.sha1 191 - fetchArtifact commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom 192 - fetchArtifact commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom.sha1 193 - fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar 194 - fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar.sha1 195 - fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom 196 - fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.sha1 197 - fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar 198 - fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar.sha1 199 - fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom 200 - fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.sha1 201 - fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar 202 - fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar.sha1 203 - fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.pom 204 - fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.pom.sha1 205 - fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar 206 - fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar.sha1 207 - fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom 208 - fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom.sha1 209 - fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom 210 - fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom.sha1 211 - fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom 212 - fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom.sha1 213 - fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar 214 - fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar.sha1 215 - fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom 216 - fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom.sha1 217 - fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar 218 - fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar.sha1 219 - fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom 220 - fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom.sha1 221 - fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom 222 - fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom.sha1 223 - fetchArtifact junit/junit/4.10/junit-4.10.pom 224 - fetchArtifact junit/junit/4.10/junit-4.10.pom.sha1 225 - fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom 226 - fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom.sha1 227 - fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar 228 - fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar.sha1 229 - fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom 230 - fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom.sha1 231 - fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom 232 - fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom.sha1 12 + fetchArtifact org/apache/apache/11/apache-11.pom 13 + fetchArtifact org/apache/apache/11/apache-11.pom.sha1 233 14 fetchArtifact org/apache/apache/10/apache-10.pom 234 15 fetchArtifact org/apache/apache/10/apache-10.pom.sha1 235 - fetchArtifact org/apache/apache/11/apache-11.pom 236 - fetchArtifact org/apache/apache/11/apache-11.pom.sha1 16 + fetchArtifact org/apache/apache/7/apache-7.pom 17 + fetchArtifact org/apache/apache/7/apache-7.pom.sha1 18 + fetchArtifact org/apache/apache/9/apache-9.pom 19 + fetchArtifact org/apache/apache/9/apache-9.pom.sha1 237 20 fetchArtifact org/apache/apache/13/apache-13.pom 238 21 fetchArtifact org/apache/apache/13/apache-13.pom.sha1 239 - fetchArtifact org/apache/apache/2/apache-2.pom 240 - fetchArtifact org/apache/apache/2/apache-2.pom.sha1 241 22 fetchArtifact org/apache/apache/3/apache-3.pom 242 23 fetchArtifact org/apache/apache/3/apache-3.pom.sha1 24 + fetchArtifact org/apache/apache/6/apache-6.pom 25 + fetchArtifact org/apache/apache/6/apache-6.pom.sha1 243 26 fetchArtifact org/apache/apache/4/apache-4.pom 244 27 fetchArtifact org/apache/apache/4/apache-4.pom.sha1 28 + fetchArtifact org/apache/apache/2/apache-2.pom 29 + fetchArtifact org/apache/apache/2/apache-2.pom.sha1 245 30 fetchArtifact org/apache/apache/5/apache-5.pom 246 31 fetchArtifact org/apache/apache/5/apache-5.pom.sha1 247 - fetchArtifact org/apache/apache/6/apache-6.pom 248 - fetchArtifact org/apache/apache/6/apache-6.pom.sha1 249 - fetchArtifact org/apache/apache/7/apache-7.pom 250 - fetchArtifact org/apache/apache/7/apache-7.pom.sha1 251 - fetchArtifact org/apache/apache/9/apache-9.pom 252 - fetchArtifact org/apache/apache/9/apache-9.pom.sha1 253 - fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar 254 - fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar.sha1 255 - fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom 256 - fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom.sha1 257 - fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom 258 - fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 259 - fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom 260 - fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 261 - fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom 262 - fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom.sha1 263 - fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom 264 - fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom.sha1 265 - fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom 266 - fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom.sha1 267 - fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar 268 - fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar.sha1 269 - fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom 270 - fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom.sha1 271 - fetchArtifact org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom 272 - fetchArtifact org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom.sha1 273 - fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom 274 - fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom.sha1 275 - fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar 276 - fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar.sha1 277 - fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom 278 - fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom.sha1 279 - fetchArtifact org/apache/httpcomponents/project/4.0/project-4.0.pom 280 - fetchArtifact org/apache/httpcomponents/project/4.0/project-4.0.pom.sha1 281 - fetchArtifact org/apache/httpcomponents/project/4.1/project-4.1.pom 282 - fetchArtifact org/apache/httpcomponents/project/4.1/project-4.1.pom.sha1 283 - fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom 284 - fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom.sha1 285 - fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom 286 - fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1 287 - fetchArtifact org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom 288 - fetchArtifact org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 289 - fetchArtifact org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom 290 - fetchArtifact org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom.sha1 291 - fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom 292 - fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom.sha1 293 - fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar 294 - fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar.sha1 295 - fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom 296 - fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom.sha1 297 - fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar 298 - fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar.sha1 299 - fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom 300 - fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom.sha1 301 - fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar 302 - fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar.sha1 303 - fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom 304 - fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom.sha1 305 - fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom 306 - fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom.sha1 307 - fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar 308 - fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar.sha1 309 - fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom 310 - fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom.sha1 311 - fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom 312 - fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom.sha1 313 - fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar 314 - fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar.sha1 315 - fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom 316 - fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom.sha1 317 - fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar 318 - fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar.sha1 319 - fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom 320 - fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom.sha1 321 - fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar 322 - fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar.sha1 323 - fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom 324 - fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom.sha1 325 - fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar 326 - fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar.sha1 327 - fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom 328 - fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom.sha1 329 - fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar 330 - fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar.sha1 331 - fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom 332 - fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom.sha1 333 - fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom 334 - fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom.sha1 335 - fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom 336 - fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom.sha1 337 - fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar 338 - fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar.sha1 339 - fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom 340 - fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom.sha1 341 - fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar 342 - fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar.sha1 343 - fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom 344 - fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom.sha1 345 - fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar 346 - fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar.sha1 347 - fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom 348 - fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom.sha1 349 - fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar 350 - fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar.sha1 351 - fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom 352 - fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom.sha1 353 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom 354 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom.sha1 355 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar 356 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1 357 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom 358 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1 359 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar 360 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 361 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom 362 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 363 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar 364 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar.sha1 365 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom 366 - fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom.sha1 367 - fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar 368 - fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar.sha1 369 - fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom 370 - fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom.sha1 371 - fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.jar 372 - fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.jar.sha1 373 - fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom 374 - fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom.sha1 375 - fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom 376 - fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom.sha1 377 - fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom 378 - fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom.sha1 379 - fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom 380 - fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom.sha1 381 - fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom 382 - fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom.sha1 383 - fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom 384 - fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom.sha1 385 - fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom 386 - fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom.sha1 387 - fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom 388 - fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1 389 - fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom 390 - fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom.sha1 391 - fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom 392 - fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1 393 - fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom 394 - fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom.sha1 395 - fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom 396 - fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom.sha1 397 - fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom 398 - fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1 399 - fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom 400 - fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom.sha1 401 - fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom 402 - fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1 403 - fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar 404 - fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar.sha1 405 - fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom 406 - fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom.sha1 407 - fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar 408 - fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar.sha1 409 - fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom 410 - fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom.sha1 411 - fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar 412 - fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar.sha1 413 - fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.pom 414 - fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.pom.sha1 415 - fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar 416 - fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar.sha1 417 - fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom 418 - fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom.sha1 419 - fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom 420 - fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom.sha1 421 - fetchArtifact org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom 422 - fetchArtifact org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom.sha1 423 - fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar 424 - fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom 425 - fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom.sha1 426 - fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom 427 - fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom.sha1 428 - fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar 429 - fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom 430 - fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1 431 - fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom 432 - fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom.sha1 433 - fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom 434 - fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom.sha1 435 - fetchArtifact org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom 436 - fetchArtifact org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom.sha1 437 - fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom 438 - fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1 439 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom 440 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom.sha1 441 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom 442 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom.sha1 443 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar 444 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom 445 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1 446 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom 447 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom.sha1 448 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar 449 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom 450 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1 451 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom 452 - fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom.sha1 453 - fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom 454 - fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom.sha1 455 - fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom 456 - fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom.sha1 457 - fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar 458 - fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom 459 - fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1 460 - fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar 461 - fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom 462 - fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1 463 - fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom 464 - fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom.sha1 465 - fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom 466 - fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1 467 - fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar 468 - fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom 469 - fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1 470 - fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar 471 - fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom 472 - fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1 473 - fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom 474 - fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom.sha1 475 - fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom 476 - fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom.sha1 477 - fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar 478 - fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom 479 - fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1 480 - fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom 481 - fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom.sha1 482 - fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar 483 - fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom 484 - fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1 485 - fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom 486 - fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom.sha1 487 - fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom 488 - fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom.sha1 489 - fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom 490 - fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1 491 - fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom 492 - fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom.sha1 493 - fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom 494 - fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1 495 - fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar 496 - fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom 497 - fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1 498 - fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar 499 - fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom 500 - fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1 501 - fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom 502 - fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom.sha1 503 - fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom 504 - fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 505 - fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom 506 - fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 507 - fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom 508 - fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom.sha1 509 - fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom 510 - fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 32 + fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom 33 + fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom.sha1 34 + fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar 35 + fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar.sha1 36 + fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom 37 + fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom.sha1 38 + fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom 39 + fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom.sha1 40 + fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom 41 + fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom.sha1 42 + fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom 43 + fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom.sha1 44 + fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom 45 + fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom.sha1 46 + fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar 47 + fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar.sha1 48 + fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom 49 + fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom.sha1 50 + fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar 51 + fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar.sha1 52 + fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom 53 + fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom.sha1 54 + fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar 55 + fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar.sha1 56 + fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom 57 + fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.sha1 58 + fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar 59 + fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.sha1 60 + fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom 61 + fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom.sha1 62 + fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar 63 + fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar.sha1 64 + fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom 65 + fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom.sha1 66 + fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar 67 + fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar.sha1 68 + fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom 69 + fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom.sha1 70 + fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar 71 + fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar.sha1 72 + fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom 73 + fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom.sha1 74 + fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar 75 + fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar.sha1 76 + fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom 77 + fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom.sha1 78 + fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar 79 + fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar.sha1 80 + fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom 81 + fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom.sha1 82 + fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar 83 + fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar.sha1 84 + fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom 85 + fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom.sha1 86 + fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar 87 + fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar.sha1 88 + fetchArtifact org/apache/maven/maven-parent/21/maven-parent-21.pom 89 + fetchArtifact org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1 511 90 fetchArtifact org/apache/maven/maven-parent/16/maven-parent-16.pom 512 91 fetchArtifact org/apache/maven/maven-parent/16/maven-parent-16.pom.sha1 513 92 fetchArtifact org/apache/maven/maven-parent/19/maven-parent-19.pom 514 93 fetchArtifact org/apache/maven/maven-parent/19/maven-parent-19.pom.sha1 515 - fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom 516 - fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom.sha1 517 - fetchArtifact org/apache/maven/maven-parent/21/maven-parent-21.pom 518 - fetchArtifact org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1 519 94 fetchArtifact org/apache/maven/maven-parent/23/maven-parent-23.pom 520 95 fetchArtifact org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 521 96 fetchArtifact org/apache/maven/maven-parent/5/maven-parent-5.pom 522 97 fetchArtifact org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1 523 - fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom 524 - fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom.sha1 98 + fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom 99 + fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom.sha1 525 100 fetchArtifact org/apache/maven/maven-parent/7/maven-parent-7.pom 526 101 fetchArtifact org/apache/maven/maven-parent/7/maven-parent-7.pom.sha1 102 + fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom 103 + fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom.sha1 527 104 fetchArtifact org/apache/maven/maven-parent/8/maven-parent-8.pom 528 105 fetchArtifact org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1 106 + fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom 107 + fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom.sha1 108 + fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom 109 + fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 110 + fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom 111 + fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 112 + fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom 113 + fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 529 114 fetchArtifact org/apache/maven/maven-parent/9/maven-parent-9.pom 530 115 fetchArtifact org/apache/maven/maven-parent/9/maven-parent-9.pom.sha1 531 - fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom 532 - fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom.sha1 533 - fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar 116 + fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom 117 + fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom.sha1 118 + fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom 119 + fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom.sha1 120 + fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar 121 + fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar.sha1 122 + fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom 123 + fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom.sha1 124 + fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar 125 + fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar.sha1 126 + fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom 127 + fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom.sha1 128 + fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar 129 + fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar.sha1 534 130 fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom 535 131 fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom.sha1 536 - fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom 537 - fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom.sha1 538 - fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar 132 + fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar 133 + fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar.sha1 134 + fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom 135 + fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom.sha1 136 + fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom 137 + fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom.sha1 539 138 fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom 540 139 fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom.sha1 541 - fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom 542 - fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom.sha1 140 + fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar 141 + fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar.sha1 142 + fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom 143 + fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1 144 + fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar 145 + fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar.sha1 543 146 fetchArtifact org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom 544 147 fetchArtifact org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom.sha1 545 - fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom 546 - fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1 547 - fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar 548 - fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom 549 - fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1 550 - fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar 551 - fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom 552 - fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1 553 - fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom 554 - fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom.sha1 555 - fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar 556 - fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom 557 - fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1 558 - fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar 559 - fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom 560 - fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1 561 - fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom 562 - fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom.sha1 563 - fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar 564 - fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom 565 - fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1 566 - fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom 567 - fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom.sha1 568 - fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar 569 - fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom 570 - fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1 571 - fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom 572 - fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom.sha1 573 - fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom 574 - fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom.sha1 575 - fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom 576 - fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom.sha1 577 - fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar 148 + fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom 149 + fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom.sha1 150 + fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom 151 + fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1 152 + fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom 153 + fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom.sha1 154 + fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom 155 + fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom.sha1 156 + fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom 157 + fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom.sha1 158 + fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom 159 + fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1 160 + fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom 161 + fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom.sha1 162 + fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom 163 + fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1 164 + fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom 165 + fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom.sha1 166 + fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom 167 + fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom.sha1 168 + fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom 169 + fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom.sha1 170 + fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom 171 + fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1 172 + fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar 173 + fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar.sha1 174 + fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom 175 + fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom.sha1 176 + fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom 177 + fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1 178 + fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar 179 + fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar.sha1 180 + fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom 181 + fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom.sha1 182 + fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.jar 183 + fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.jar.sha1 184 + fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom 185 + fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1 186 + fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom 187 + fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom.sha1 188 + fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom 189 + fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom.sha1 190 + fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom 191 + fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom.sha1 192 + fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom 193 + fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1 194 + fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar 195 + fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar.sha1 196 + fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom 197 + fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom.sha1 198 + fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom 199 + fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1 200 + fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar 201 + fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar.sha1 202 + fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom 203 + fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom.sha1 204 + fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom 205 + fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom.sha1 206 + fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.jar 207 + fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.jar.sha1 208 + fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom 209 + fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom.sha1 210 + fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom 211 + fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1 212 + fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar 213 + fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar.sha1 214 + fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom 215 + fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom.sha1 216 + fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom 217 + fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1 218 + fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar 219 + fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar.sha1 220 + fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom 221 + fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom.sha1 222 + fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar 223 + fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar.sha1 224 + fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom 225 + fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom.sha1 226 + fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom 227 + fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom.sha1 228 + fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom 229 + fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom.sha1 578 230 fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom 579 231 fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom.sha1 580 - fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom 581 - fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom.sha1 582 - fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar 232 + fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar 233 + fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar.sha1 234 + fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom 235 + fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom.sha1 583 236 fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom 584 237 fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom.sha1 585 - fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom 586 - fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom.sha1 238 + fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar 239 + fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar.sha1 240 + fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom 241 + fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom.sha1 587 242 fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom 588 243 fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom.sha1 589 - fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom 590 - fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom.sha1 591 - fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar 592 - fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom 593 - fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1 594 - fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom 595 - fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom.sha1 596 - fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar 597 - fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom 598 - fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1 599 - fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom 600 - fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom.sha1 601 - fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom 602 - fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom.sha1 603 - fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom 604 - fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom.sha1 605 - fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom 606 - fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom.sha1 607 - fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar 244 + fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.jar 245 + fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.jar.sha1 246 + fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom 247 + fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom.sha1 248 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom 249 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1 250 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar 251 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar.sha1 252 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom 253 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom.sha1 254 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom 255 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1 256 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar 257 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar.sha1 258 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom 259 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom.sha1 260 + fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom 261 + fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom.sha1 262 + fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.jar 263 + fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.jar.sha1 264 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom 265 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom.sha1 266 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom 267 + fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom.sha1 608 268 fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom 609 269 fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom.sha1 610 - fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom 611 - fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom.sha1 612 - fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar 270 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar 271 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar.sha1 272 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom 273 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom.sha1 613 274 fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom 614 275 fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom.sha1 615 - fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom 616 - fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom.sha1 276 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar 277 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar.sha1 278 + fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom 279 + fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom.sha1 280 + fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar 281 + fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar.sha1 282 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom 283 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom.sha1 617 284 fetchArtifact org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom 618 285 fetchArtifact org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom.sha1 619 - fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom 620 - fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom.sha1 621 - fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom 622 - fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom.sha1 623 - fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar 624 - fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom 625 - fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1 626 - fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom 627 - fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom.sha1 628 - fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar 629 - fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom 630 - fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1 631 - fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom 632 - fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom.sha1 633 - fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom 634 - fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom.sha1 635 - fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom 636 - fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom.sha1 637 - fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom 638 - fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1 639 - fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar 640 - fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom 641 - fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom.sha1 642 - fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom 643 - fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar 644 - fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom.sha1 645 - fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar 646 - fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.sha1 647 - fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom 648 - fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.sha1 649 - fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar 650 - fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar.sha1 651 - fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom 652 - fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom.sha1 653 - fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar 654 - fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar.sha1 655 - fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom 656 - fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom.sha1 657 - fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar 658 - fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar.sha1 659 - fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom 660 - fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom.sha1 661 - fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar 662 - fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar.sha1 663 - fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom 664 - fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom.sha1 665 - fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar 666 - fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar.sha1 667 - fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom 668 - fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom.sha1 669 - fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom 670 - fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom.sha1 671 - fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom 672 - fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom.sha1 673 - fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom 674 - fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom.sha1 675 - fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom 676 - fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom.sha1 677 - fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar 678 - fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar.sha1 679 - fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom 680 - fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom.sha1 681 - fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar 682 - fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar.sha1 683 - fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom 684 - fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom.sha1 685 - fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar 686 - fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar.sha1 687 - fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom 688 - fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom.sha1 689 - fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar 690 - fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar.sha1 691 - fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom 692 - fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom.sha1 693 - fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar 694 - fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar.sha1 695 - fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom 696 - fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom.sha1 697 - fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar 698 - fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar.sha1 699 - fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom 700 - fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom.sha1 701 - fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom 702 - fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1 703 - fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom 704 - fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom.sha1 705 - fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom 706 - fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom.sha1 286 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom 287 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom.sha1 288 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom 289 + fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom.sha1 290 + fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom 291 + fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom.sha1 292 + fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar 293 + fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar.sha1 294 + fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom 295 + fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom.sha1 296 + fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom 297 + fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom.sha1 298 + fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom 299 + fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1 300 + fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar 301 + fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar.sha1 302 + fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom 303 + fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1 304 + fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar 305 + fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar.sha1 306 + fetchArtifact org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom 307 + fetchArtifact org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom.sha1 308 + fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom 309 + fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom.sha1 310 + fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom 311 + fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom.sha1 312 + fetchArtifact org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom 313 + fetchArtifact org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom.sha1 314 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom 315 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1 316 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar 317 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar.sha1 318 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom 319 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom.sha1 320 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom 321 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1 322 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar 323 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar.sha1 324 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom 325 + fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom.sha1 326 + fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom 327 + fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom.sha1 328 + fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.jar 329 + fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.jar.sha1 330 + fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom 331 + fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1 332 + fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar 333 + fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar.sha1 334 + fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom 335 + fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom.sha1 336 + fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom 337 + fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1 338 + fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar 339 + fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar.sha1 340 + fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom 341 + fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1 342 + fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.jar 343 + fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.jar.sha1 344 + fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom 345 + fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1 346 + fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar 347 + fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar.sha1 348 + fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom 349 + fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom.sha1 350 + fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom 351 + fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1 352 + fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar 353 + fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar.sha1 354 + fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom 355 + fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1 707 356 fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar 708 357 fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar.sha1 709 - fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom 710 - fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1 711 - fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar 712 - fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar.sha1 713 - fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom 714 - fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom.sha1 715 358 fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom 716 359 fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom.sha1 717 - fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar 718 - fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 360 + fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom 361 + fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom.sha1 362 + fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar 363 + fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar.sha1 719 364 fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom 720 365 fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 721 - fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar 722 - fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar.sha1 366 + fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar 367 + fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 368 + fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom 369 + fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1 370 + fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom 371 + fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom.sha1 372 + fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom 373 + fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom.sha1 723 374 fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.pom 724 375 fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.pom.sha1 725 - fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar 726 - fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar.sha1 376 + fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar 377 + fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar.sha1 727 378 fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom 728 379 fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom.sha1 729 - fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar 730 - fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar.sha1 731 - fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom 732 - fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom.sha1 733 - fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar 734 - fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar.sha1 380 + fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar 381 + fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar.sha1 382 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom 383 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1 384 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar 385 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1 386 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom 387 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 388 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar 389 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 390 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom 391 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom.sha1 392 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar 393 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar.sha1 394 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom 395 + fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom.sha1 396 + fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom 397 + fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1 398 + fetchArtifact org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom 399 + fetchArtifact org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 400 + fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom 401 + fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom.sha1 402 + fetchArtifact org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom 403 + fetchArtifact org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom.sha1 404 + fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom 405 + fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom.sha1 406 + fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom 407 + fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom.sha1 408 + fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar 409 + fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar.sha1 410 + fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom 411 + fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom.sha1 412 + fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom 413 + fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom.sha1 414 + fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar 415 + fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar.sha1 416 + fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom 417 + fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom.sha1 418 + fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar 419 + fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar.sha1 420 + fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom 421 + fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom.sha1 422 + fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar 423 + fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar.sha1 424 + fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom 425 + fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom.sha1 426 + fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar 427 + fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar.sha1 428 + fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom 429 + fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom.sha1 430 + fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom 431 + fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom.sha1 432 + fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom 433 + fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom.sha1 434 + fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar 435 + fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar.sha1 436 + fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom 437 + fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom.sha1 438 + fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar 439 + fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar.sha1 440 + fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom 441 + fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom.sha1 442 + fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar 443 + fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar.sha1 444 + fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom 445 + fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom.sha1 446 + fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar 447 + fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar.sha1 448 + fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom 449 + fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom.sha1 450 + fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar 451 + fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar.sha1 452 + fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom 453 + fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom.sha1 454 + fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar 455 + fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar.sha1 456 + fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom 457 + fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom.sha1 458 + fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar 459 + fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar.sha1 460 + fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom 461 + fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom.sha1 462 + fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom 463 + fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom.sha1 464 + fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar 465 + fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar.sha1 466 + fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom 467 + fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom.sha1 468 + fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom 469 + fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom.sha1 470 + fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom 471 + fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom.sha1 472 + fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom 473 + fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom.sha1 474 + fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.jar 475 + fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.jar.sha1 476 + fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom 477 + fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom.sha1 478 + fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar 479 + fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar.sha1 480 + fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom 481 + fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1 482 + fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar 483 + fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar.sha1 484 + fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom 485 + fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom.sha1 486 + fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom 487 + fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1 488 + fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar 489 + fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar.sha1 490 + fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom 491 + fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1 492 + fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar 493 + fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar.sha1 494 + fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom 495 + fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom.sha1 496 + fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom 497 + fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1 498 + fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar 499 + fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar.sha1 500 + fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom 501 + fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1 502 + fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar 503 + fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar.sha1 504 + fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom 505 + fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom.sha1 506 + fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom 507 + fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1 508 + fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar 509 + fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar.sha1 735 510 fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom 736 511 fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom.sha1 737 - fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar 738 - fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar.sha1 512 + fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar 513 + fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar.sha1 514 + fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom 515 + fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom.sha1 516 + fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom 517 + fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom.sha1 518 + fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom 519 + fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom.sha1 520 + fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom 521 + fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom.sha1 522 + fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom 523 + fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1 524 + fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom 525 + fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 526 + fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom 527 + fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom.sha1 528 + fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom 529 + fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 530 + fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom 531 + fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom.sha1 532 + fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom 533 + fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom.sha1 739 534 fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.pom 740 535 fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.pom.sha1 741 - fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar 742 - fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar.sha1 536 + fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar 537 + fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar.sha1 743 538 fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom 744 539 fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom.sha1 540 + fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar 541 + fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar.sha1 542 + fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom 543 + fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom.sha1 745 544 fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar 746 545 fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar.sha1 747 - fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom 748 - fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom.sha1 749 - fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar 750 - fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar.sha1 751 - fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom 752 - fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom.sha1 753 - fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar 754 - fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar.sha1 755 - fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom 756 - fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom.sha1 546 + fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom 547 + fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom.sha1 548 + fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar 549 + fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar.sha1 550 + fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom 551 + fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom.sha1 552 + fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar 553 + fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar.sha1 554 + fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom 555 + fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom.sha1 556 + fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar 557 + fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar.sha1 558 + fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom 559 + fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom.sha1 757 560 fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar 758 561 fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar.sha1 759 - fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom 760 - fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom.sha1 761 - fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar 762 - fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar.sha1 763 - fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom 764 - fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom.sha1 765 - fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar 766 - fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar.sha1 767 - fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom 768 - fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom.sha1 562 + fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom 563 + fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom.sha1 564 + fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar 565 + fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar.sha1 566 + fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom 567 + fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom.sha1 769 568 fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar 770 569 fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar.sha1 771 - fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom 772 - fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom.sha1 773 - fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar 774 - fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar.sha1 775 - fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom 776 - fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom.sha1 777 - fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar 778 - fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar.sha1 779 - fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom 780 - fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom.sha1 781 - fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom 782 - fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom.sha1 783 - fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom 784 - fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom.sha1 785 - fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom 786 - fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom.sha1 787 - fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom 788 - fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 789 - fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom 790 - fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom.sha1 791 - fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom 792 - fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1 793 - fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom 794 - fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 795 - fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom 796 - fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom.sha1 797 - fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom 798 - fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom.sha1 799 - fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom 800 - fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom.sha1 801 - fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar 802 - fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar.sha1 570 + fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom 571 + fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom.sha1 572 + fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar 573 + fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar.sha1 574 + fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom 575 + fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom.sha1 576 + fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar 577 + fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar.sha1 803 578 fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom 804 579 fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom.sha1 805 - fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar 806 - fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar.sha1 807 - fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom 808 - fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom.sha1 809 - fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom 810 - fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom.sha1 811 - fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar 812 - fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar.sha1 813 - fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom 814 - fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom.sha1 815 - fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar 816 - fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar.sha1 817 - fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom 818 - fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom.sha1 819 - fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom 820 - fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.sha1 580 + fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar 581 + fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar.sha1 582 + fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom 583 + fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom.sha1 584 + fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar 585 + fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar.sha1 586 + fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom 587 + fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom.sha1 588 + fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar 589 + fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar.sha1 590 + fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom 591 + fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom.sha1 592 + fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar 593 + fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar.sha1 594 + fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom 595 + fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom.sha1 596 + fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar 597 + fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar.sha1 598 + fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.pom 599 + fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.pom.sha1 600 + fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar 601 + fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar.sha1 602 + fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom 603 + fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom.sha1 604 + fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar 605 + fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar.sha1 606 + fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom 607 + fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom.sha1 608 + fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar 609 + fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar.sha1 610 + fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom 611 + fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom.sha1 612 + fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar 613 + fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar.sha1 614 + fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom 615 + fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom.sha1 616 + fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom 617 + fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom.sha1 821 618 fetchArtifact org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom 822 619 fetchArtifact org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom.sha1 823 - fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom 824 - fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom.sha1 620 + fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom 621 + fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.sha1 622 + fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom 623 + fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom.sha1 624 + fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar 625 + fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar.sha1 626 + fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom 627 + fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom.sha1 628 + fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar 629 + fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar.sha1 630 + fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom 631 + fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom.sha1 632 + fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar 633 + fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar.sha1 825 634 fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom 826 635 fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom.sha1 827 - fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom 828 - fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom.sha1 829 - fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom 830 - fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom.sha1 831 - fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom 832 - fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom.sha1 833 - fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar 834 - fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar.sha1 835 - fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom 836 - fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom.sha1 837 - fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar 838 - fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar.sha1 839 - fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom 840 - fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom.sha1 841 - fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar 842 - fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar.sha1 636 + fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar 637 + fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar.sha1 638 + fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom 639 + fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1 640 + fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar 641 + fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar.sha1 642 + fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom 643 + fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1 644 + fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar 645 + fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar.sha1 646 + fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom 647 + fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1 648 + fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar 649 + fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar.sha1 650 + fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom 651 + fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom.sha1 652 + fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar 653 + fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar.sha1 654 + fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom 655 + fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom.sha1 656 + fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar 657 + fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar.sha1 658 + fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom 659 + fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom.sha1 660 + fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar 661 + fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar.sha1 662 + fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom 663 + fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom.sha1 664 + fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom 665 + fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom.sha1 666 + fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar 667 + fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar.sha1 668 + fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom 669 + fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom.sha1 670 + fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom 671 + fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom.sha1 672 + fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom 673 + fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom.sha1 674 + fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom 675 + fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom.sha1 676 + fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom 677 + fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 678 + fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom 679 + fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 680 + fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar 681 + fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar.sha1 682 + fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom 683 + fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom.sha1 684 + fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar 685 + fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar.sha1 686 + fetchArtifact org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom 687 + fetchArtifact org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom.sha1 688 + fetchArtifact org/apache/httpcomponents/project/4.1/project-4.1.pom 689 + fetchArtifact org/apache/httpcomponents/project/4.1/project-4.1.pom.sha1 690 + fetchArtifact org/apache/httpcomponents/project/4.0/project-4.0.pom 691 + fetchArtifact org/apache/httpcomponents/project/4.0/project-4.0.pom.sha1 692 + fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom 693 + fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom.sha1 694 + fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar 695 + fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar.sha1 696 + fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom 697 + fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom.sha1 843 698 fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom 844 699 fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom.sha1 700 + fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar 701 + fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar.sha1 702 + fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom 703 + fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom.sha1 845 704 fetchArtifact org/apache/struts/struts-master/4/struts-master-4.pom 846 705 fetchArtifact org/apache/struts/struts-master/4/struts-master-4.pom.sha1 847 - fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom 848 - fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom.sha1 706 + fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom 707 + fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom.sha1 849 708 fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar 850 709 fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar.sha1 851 - fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom 852 - fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom.sha1 853 - fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar 854 - fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar.sha1 855 710 fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom 856 711 fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom.sha1 857 - fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar 858 - fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar.sha1 859 - fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom 860 - fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom.sha1 861 - fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom 862 - fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom.sha1 863 - fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar 864 - fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar.sha1 865 - fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom 866 - fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom.sha1 867 - fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar 868 - fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar.sha1 869 - fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom 870 - fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom.sha1 871 - fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom 872 - fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom.sha1 712 + fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar 713 + fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar.sha1 873 714 fetchArtifact org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom 874 715 fetchArtifact org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom.sha1 875 - fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom 876 - fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom.sha1 877 - fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar 878 - fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar.sha1 879 - fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom 880 - fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom.sha1 881 - fetchArtifact org/codehaus/codehaus-parent/4/codehaus-parent-4.pom 882 - fetchArtifact org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 883 - fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.jar 884 - fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.jar.sha1 716 + fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom 717 + fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom.sha1 885 718 fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.pom 886 719 fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.pom.sha1 720 + fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.jar 721 + fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.jar.sha1 887 722 fetchArtifact org/codehaus/mojo/mojo-parent/30/mojo-parent-30.pom 888 723 fetchArtifact org/codehaus/mojo/mojo-parent/30/mojo-parent-30.pom.sha1 889 - fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom 890 - fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1 724 + fetchArtifact org/codehaus/codehaus-parent/4/codehaus-parent-4.pom 725 + fetchArtifact org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 726 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom 727 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom.sha1 728 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar 729 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar.sha1 730 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom 731 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom.sha1 732 + fetchArtifact org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom 733 + fetchArtifact org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom.sha1 734 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom 735 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1 736 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.jar 737 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.jar.sha1 738 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom 739 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom.sha1 740 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom 741 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom.sha1 742 + fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom 743 + fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom.sha1 744 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom 745 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1 746 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom 747 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1 748 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom 749 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom.sha1 750 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar 751 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar.sha1 752 + fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom 753 + fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1 754 + fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar 755 + fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1 756 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom 757 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom.sha1 758 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom 759 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom.sha1 760 + fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom 761 + fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1 762 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom 763 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1 764 + fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom 765 + fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom.sha1 766 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom 767 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom.sha1 768 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar 769 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar.sha1 770 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom 771 + fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom.sha1 772 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom 773 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom.sha1 774 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom 775 + fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom.sha1 776 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom 777 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom.sha1 778 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar 779 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar.sha1 780 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom 781 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom.sha1 782 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom 783 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom.sha1 784 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom 785 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom.sha1 786 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar 787 + fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar.sha1 788 + fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom 789 + fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom.sha1 790 + fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom 791 + fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom.sha1 891 792 fetchArtifact org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom 892 793 fetchArtifact org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.sha1 893 - fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom 894 - fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom.sha1 895 794 fetchArtifact org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom 896 795 fetchArtifact org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1 897 - fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom 898 - fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom.sha1 899 - fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom 900 - fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1 901 - fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom 902 - fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom.sha1 903 796 fetchArtifact org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom 904 797 fetchArtifact org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom.sha1 798 + fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom 799 + fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1 800 + fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom 801 + fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom.sha1 905 802 fetchArtifact org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom 906 803 fetchArtifact org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom.sha1 907 - fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom 908 - fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom.sha1 909 804 fetchArtifact org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom 910 805 fetchArtifact org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom.sha1 911 - fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom 912 - fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1 913 - fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom 914 - fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom.sha1 915 806 fetchArtifact org/codehaus/plexus/plexus/3.1/plexus-3.1.pom 916 807 fetchArtifact org/codehaus/plexus/plexus/3.1/plexus-3.1.pom.sha1 917 - fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom 918 - fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1 808 + fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom 809 + fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom.sha1 810 + fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom 811 + fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1 812 + fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom 813 + fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom.sha1 814 + fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom 815 + fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1 816 + fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom 817 + fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom.sha1 818 + fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom 819 + fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom.sha1 919 820 fetchArtifact org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom 920 821 fetchArtifact org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom.sha1 921 822 fetchArtifact org/codehaus/plexus/plexus/3.3/plexus-3.3.pom 922 823 fetchArtifact org/codehaus/plexus/plexus/3.3/plexus-3.3.pom.sha1 923 - fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar 924 - fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar.sha1 824 + fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom 825 + fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1 826 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom 827 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom.sha1 828 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar 829 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar.sha1 830 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom 831 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1 832 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar 833 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar.sha1 834 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom 835 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom.sha1 836 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom 837 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1 838 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar 839 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar.sha1 840 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom 841 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom.sha1 842 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom 843 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom.sha1 844 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom 845 + fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom.sha1 846 + fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom 847 + fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1 848 + fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom 849 + fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom.sha1 850 + fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom 851 + fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom.sha1 852 + fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom 853 + fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1 854 + fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom 855 + fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom.sha1 856 + fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom 857 + fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom.sha1 858 + fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom 859 + fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom.sha1 860 + fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom 861 + fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1 862 + fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar 863 + fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1 864 + fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom 865 + fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom.sha1 866 + fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar 867 + fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar.sha1 925 868 fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom 926 869 fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom.sha1 927 - fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar 928 - fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar.sha1 929 - fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom 930 - fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom.sha1 931 - fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar 932 - fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar.sha1 933 - fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom 934 - fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom.sha1 935 - fetchArtifact org/codehaus/plexus/plexus-archiver/2.0.1/plexus-archiver-2.0.1.pom 936 - fetchArtifact org/codehaus/plexus/plexus-archiver/2.0.1/plexus-archiver-2.0.1.pom.sha1 937 - fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar 938 - fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar.sha1 870 + fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar 871 + fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar.sha1 939 872 fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom 940 873 fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom.sha1 941 - fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar 942 - fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar.sha1 874 + fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar 875 + fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar.sha1 876 + fetchArtifact org/codehaus/plexus/plexus-archiver/2.0.1/plexus-archiver-2.0.1.pom 877 + fetchArtifact org/codehaus/plexus/plexus-archiver/2.0.1/plexus-archiver-2.0.1.pom.sha1 878 + fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom 879 + fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom.sha1 880 + fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar 881 + fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar.sha1 882 + fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom 883 + fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom.sha1 884 + fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar 885 + fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar.sha1 943 886 fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom 944 887 fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom.sha1 945 - fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom 946 - fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom.sha1 947 - fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom 948 - fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom.sha1 949 - fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom 950 - fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1 951 - fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom 952 - fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom.sha1 953 - fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom 954 - fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1 955 - fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom 956 - fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom.sha1 957 - fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar 958 - fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar.sha1 959 - fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom 960 - fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom.sha1 961 - fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar 962 - fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar.sha1 963 - fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom 964 - fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom.sha1 965 - fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar 966 - fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar.sha1 967 - fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom 968 - fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom.sha1 969 - fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom 970 - fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom.sha1 971 - fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom 972 - fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom.sha1 973 - fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar 974 - fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar.sha1 975 - fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom 976 - fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom.sha1 977 - fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom 978 - fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom.sha1 979 - fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom 980 - fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom.sha1 981 - fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom 982 - fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom.sha1 888 + fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar 889 + fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar.sha1 890 + fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom 891 + fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom.sha1 983 892 fetchArtifact org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom 984 893 fetchArtifact org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom.sha1 985 894 fetchArtifact org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom 986 895 fetchArtifact org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom.sha1 987 - fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom 988 - fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom.sha1 989 - fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom 990 - fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1 991 - fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom 992 - fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom.sha1 993 896 fetchArtifact org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom 994 897 fetchArtifact org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom.sha1 995 - fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom 996 - fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom.sha1 898 + fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom 899 + fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom.sha1 997 900 fetchArtifact org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom 998 901 fetchArtifact org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom.sha1 999 - fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom 1000 - fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom.sha1 902 + fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom 903 + fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1 904 + fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom 905 + fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom.sha1 906 + fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom 907 + fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom.sha1 1001 908 fetchArtifact org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom 1002 909 fetchArtifact org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom.sha1 1003 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom 1004 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom.sha1 1005 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom 1006 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom.sha1 1007 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom 1008 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1 1009 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom 1010 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom.sha1 1011 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar 1012 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom 1013 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1 1014 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar 1015 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom 1016 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom.sha1 1017 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom 1018 - fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom.sha1 1019 - fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom 1020 - fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1 1021 - fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom 1022 - fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom.sha1 1023 - fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom 1024 - fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom.sha1 1025 - fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom 1026 - fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom.sha1 1027 - fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom 1028 - fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1 1029 - fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom 1030 - fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom.sha1 1031 - fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom 1032 - fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom.sha1 1033 - fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar 1034 - fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar.sha1 1035 - fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom 1036 - fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom.sha1 1037 - fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom 1038 - fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom.sha1 1039 - fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar 1040 - fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1 1041 - fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom 1042 - fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1 1043 - fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar 1044 - fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar.sha1 1045 - fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom 1046 - fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom.sha1 1047 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom 1048 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1 910 + fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom 911 + fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom.sha1 912 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom 913 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1 1049 914 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.jar 1050 915 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.jar.sha1 1051 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom 1052 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1 916 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom 917 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom.sha1 1053 918 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar 1054 919 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar.sha1 1055 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom 1056 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom.sha1 920 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom 921 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom.sha1 922 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar 923 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar.sha1 924 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom 925 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1 1057 926 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar 1058 927 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar.sha1 1059 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom 1060 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1 1061 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar 1062 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar.sha1 1063 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom 1064 - fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom.sha1 928 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom 929 + fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1 930 + fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom 931 + fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom.sha1 932 + fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar 933 + fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar.sha1 934 + fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom 935 + fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom.sha1 936 + fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar 937 + fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar.sha1 938 + fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom 939 + fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom.sha1 940 + fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar 941 + fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar.sha1 942 + fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom 943 + fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom.sha1 944 + fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar 945 + fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar.sha1 946 + fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom 947 + fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom.sha1 948 + fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom 949 + fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom.sha1 950 + fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar 951 + fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar.sha1 952 + fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom 953 + fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom.sha1 954 + fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar 955 + fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar.sha1 956 + fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom 957 + fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom.sha1 958 + fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom 959 + fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom.sha1 960 + fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar 961 + fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar.sha1 962 + fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom 963 + fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom.sha1 964 + fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom 965 + fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom.sha1 966 + fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar 967 + fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar.sha1 968 + fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom 969 + fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom.sha1 1065 970 fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.jar 1066 971 fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.jar.sha1 1067 - fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom 1068 - fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom.sha1 1069 - fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar 1070 - fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar.sha1 1071 - fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom 1072 - fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom.sha1 1073 - fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom 1074 - fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom.sha1 1075 - fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar 1076 - fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar.sha1 1077 - fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom 1078 - fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom.sha1 1079 - fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar 1080 - fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar.sha1 1081 972 fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom 1082 973 fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom.sha1 1083 - fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar 1084 - fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar.sha1 1085 - fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom 1086 - fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom.sha1 1087 - fetchArtifact org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom 1088 - fetchArtifact org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom.sha1 1089 - fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom 1090 - fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom.sha1 1091 - fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom 1092 - fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom.sha1 1093 - fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom 1094 - fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom.sha1 1095 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom 1096 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom.sha1 1097 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom 1098 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom.sha1 1099 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom 1100 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1 1101 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom 1102 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom.sha1 1103 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom 1104 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom.sha1 1105 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom 1106 - fetchArtifact org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom.sha1 1107 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar 1108 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar.sha1 1109 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom 1110 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom.sha1 1111 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar 1112 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar.sha1 1113 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom 1114 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom.sha1 1115 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom 1116 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1 1117 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom 1118 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom.sha1 1119 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom 1120 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1 1121 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom 1122 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom.sha1 1123 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom 1124 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom.sha1 1125 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.jar 1126 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.jar.sha1 1127 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom 1128 - fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1 1129 - fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom 1130 - fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1 1131 - fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar 1132 - fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1 1133 - fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom 1134 - fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1 1135 - fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom 1136 - fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom.sha1 1137 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom 1138 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom.sha1 1139 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar 1140 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar.sha1 1141 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom 1142 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom.sha1 1143 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom 1144 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom.sha1 1145 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar 1146 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar.sha1 1147 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom 1148 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom.sha1 1149 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar 1150 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar.sha1 1151 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom 1152 - fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom.sha1 1153 - fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar 1154 - fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar.sha1 1155 - fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom 1156 - fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom.sha1 1157 - fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar 1158 - fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar.sha1 1159 - fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom 1160 - fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom.sha1 1161 - fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom 1162 - fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom.sha1 1163 - fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar 1164 - fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar.sha1 1165 - fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom 1166 - fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom.sha1 1167 - fetchArtifact org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom 1168 - fetchArtifact org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom.sha1 1169 - fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar 1170 - fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar.sha1 1171 - fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.pom 1172 - fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.pom.sha1 1173 - fetchArtifact org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom 1174 - fetchArtifact org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom.sha1 1175 - fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar 1176 - fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar.sha1 1177 - fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom 1178 - fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom.sha1 1179 - fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar 1180 - fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar.sha1 1181 - fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom 1182 - fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom.sha1 1183 - fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar 1184 - fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar.sha1 1185 - fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom 1186 - fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom.sha1 1187 - fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom 1188 - fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom.sha1 1189 - fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom 1190 - fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.sha1 1191 - fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar 1192 - fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar.sha1 1193 - fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom 1194 - fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom.sha1 1195 - fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom 1196 - fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom.sha1 1197 - fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar 1198 - fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar.sha1 1199 - fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom 1200 - fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom.sha1 1201 - fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar 1202 - fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar.sha1 1203 - fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom 1204 - fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom.sha1 1205 - fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom 1206 - fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1 1207 - fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom 1208 - fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1 1209 - fetchArtifact org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom 1210 - fetchArtifact org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom.sha1 1211 - fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom 1212 - fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1 1213 - fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar 1214 - fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar.sha1 1215 - fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom 1216 - fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1 974 + fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar 975 + fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar.sha1 976 + fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom 977 + fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom.sha1 978 + fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom 979 + fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom.sha1 980 + fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar 981 + fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar.sha1 982 + fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom 983 + fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom.sha1 984 + fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom 985 + fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1 986 + fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar 987 + fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar.sha1 988 + fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom 989 + fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1 990 + fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom 991 + fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom.sha1 992 + fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom 993 + fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom.sha1 994 + fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom 995 + fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom.sha1 996 + fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom 997 + fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom.sha1 998 + fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar 999 + fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar.sha1 1000 + fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom 1001 + fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom.sha1 1002 + fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom 1003 + fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom.sha1 1004 + fetchArtifact org/sonatype/spice/spice-parent/16/spice-parent-16.pom 1005 + fetchArtifact org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1 1006 + fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom 1007 + fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 1008 + fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom 1009 + fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 1010 + fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom 1011 + fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1 1012 + fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom 1013 + fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 1014 + fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom 1015 + fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 1217 1016 fetchArtifact org/sonatype/forge/forge-parent/10/forge-parent-10.pom 1218 1017 fetchArtifact org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 1219 - fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom 1220 - fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 1221 1018 fetchArtifact org/sonatype/forge/forge-parent/4/forge-parent-4.pom 1222 1019 fetchArtifact org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1 1223 - fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom 1224 - fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 1225 1020 fetchArtifact org/sonatype/forge/forge-parent/6/forge-parent-6.pom 1226 1021 fetchArtifact org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1 1227 - fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom 1228 - fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom.sha1 1229 - fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom 1230 - fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 1231 - fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar 1232 - fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar.sha1 1233 1022 fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom 1234 1023 fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom.sha1 1235 - fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar 1236 - fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar.sha1 1237 - fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom 1238 - fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1 1024 + fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar 1025 + fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar.sha1 1026 + fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom 1027 + fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1 1239 1028 fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar 1240 1029 fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar.sha1 1241 - fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom 1242 - fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1 1243 - fetchArtifact org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom 1244 - fetchArtifact org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom.sha1 1030 + fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom 1031 + fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1 1032 + fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar 1033 + fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar.sha1 1034 + fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom 1035 + fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom.sha1 1036 + fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom 1037 + fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 1038 + fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom 1039 + fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1 1040 + fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar 1041 + fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar.sha1 1245 1042 fetchArtifact org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom 1246 1043 fetchArtifact org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom.sha1 1247 - fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar 1248 - fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1 1249 - fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom 1250 - fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1 1044 + fetchArtifact org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom 1045 + fetchArtifact org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom.sha1 1251 1046 fetchArtifact org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom 1252 1047 fetchArtifact org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom.sha1 1253 - fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar 1254 - fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1 1255 - fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom 1256 - fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom.sha1 1257 - fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom 1258 - fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1 1259 1048 fetchArtifact org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom 1260 1049 fetchArtifact org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom.sha1 1261 - fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom 1262 - fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 1263 - fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom 1264 - fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1 1265 - fetchArtifact org/sonatype/spice/spice-parent/16/spice-parent-16.pom 1266 - fetchArtifact org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1 1267 - fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom 1268 - fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 1269 - fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar 1270 - fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar.sha1 1050 + fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom 1051 + fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom.sha1 1052 + fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar 1053 + fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1 1054 + fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom 1055 + fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1 1056 + fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar 1057 + fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1 1058 + fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom 1059 + fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1 1060 + fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar 1061 + fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar.sha1 1062 + fetchArtifact org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom 1063 + fetchArtifact org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom.sha1 1064 + fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom 1065 + fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1 1066 + fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar 1067 + fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar.sha1 1068 + fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom 1069 + fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1 1070 + fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar 1071 + fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar.sha1 1072 + fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom 1073 + fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1 1074 + fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar 1075 + fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar.sha1 1076 + fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.pom 1077 + fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.pom.sha1 1078 + fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar 1079 + fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar.sha1 1080 + fetchArtifact org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom 1081 + fetchArtifact org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom.sha1 1082 + fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom 1083 + fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom.sha1 1084 + fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar 1085 + fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar.sha1 1086 + fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom 1087 + fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom.sha1 1088 + fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom 1089 + fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom.sha1 1090 + fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar 1091 + fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar.sha1 1092 + fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom 1093 + fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom.sha1 1094 + fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom 1095 + fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom.sha1 1096 + fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom 1097 + fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.sha1 1098 + fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom 1099 + fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom.sha1 1100 + fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar 1101 + fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar.sha1 1102 + fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom 1103 + fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom.sha1 1104 + fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar 1105 + fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar.sha1 1106 + fetchArtifact org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom 1107 + fetchArtifact org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom.sha1 1108 + fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom 1109 + fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom.sha1 1110 + fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar 1111 + fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar.sha1 1112 + fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom 1113 + fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom.sha1 1114 + fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom 1115 + fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom.sha1 1116 + fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar 1117 + fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar.sha1 1118 + fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom 1119 + fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom.sha1 1120 + fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar 1121 + fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar.sha1 1122 + fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom 1123 + fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom.sha1 1124 + fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar 1125 + fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar.sha1 1271 1126 fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.pom 1272 1127 fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.pom.sha1 1273 - fetchArtifact oro/oro/2.0.8/oro-2.0.8.jar 1274 - fetchArtifact oro/oro/2.0.8/oro-2.0.8.jar.sha1 1128 + fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar 1129 + fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar.sha1 1130 + fetchArtifact com/google/protobuf/protobuf-java/2.6.1/protobuf-java-2.6.1.pom 1131 + fetchArtifact com/google/protobuf/protobuf-java/2.6.1/protobuf-java-2.6.1.pom.sha1 1132 + fetchArtifact com/google/protobuf/protobuf-java/2.6.1/protobuf-java-2.6.1.jar 1133 + fetchArtifact com/google/protobuf/protobuf-java/2.6.1/protobuf-java-2.6.1.jar.sha1 1134 + fetchArtifact com/google/google/1/google-1.pom 1135 + fetchArtifact com/google/google/1/google-1.pom.sha1 1136 + fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom 1137 + fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom.sha1 1138 + fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar 1139 + fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar.sha1 1140 + fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom 1141 + fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom.sha1 1142 + fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom 1143 + fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom.sha1 1144 + fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar 1145 + fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar.sha1 1146 + fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom 1147 + fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom.sha1 1148 + fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom 1149 + fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom.sha1 1150 + fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar 1151 + fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar.sha1 1152 + fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.pom 1153 + fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.pom.sha1 1154 + fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar 1155 + fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar.sha1 1156 + fetchArtifact junit/junit/4.10/junit-4.10.pom 1157 + fetchArtifact junit/junit/4.10/junit-4.10.pom.sha1 1158 + fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom 1159 + fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom.sha1 1160 + fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar 1161 + fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar.sha1 1162 + fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom 1163 + fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom.sha1 1164 + fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom 1165 + fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1 1166 + fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar 1167 + fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar.sha1 1168 + fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.pom 1169 + fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.pom.sha1 1170 + fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.jar 1171 + fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.jar.sha1 1172 + fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom 1173 + fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1 1174 + fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar 1175 + fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1 1176 + fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom 1177 + fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom.sha1 1178 + fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom 1179 + fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom.sha1 1180 + fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar 1181 + fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar.sha1 1182 + fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom 1183 + fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom.sha1 1184 + fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar 1185 + fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar.sha1 1186 + fetchArtifact commons-collections/commons-collections/2.0/commons-collections-2.0.pom 1187 + fetchArtifact commons-collections/commons-collections/2.0/commons-collections-2.0.pom.sha1 1188 + fetchArtifact commons-collections/commons-collections/2.1/commons-collections-2.1.pom 1189 + fetchArtifact commons-collections/commons-collections/2.1/commons-collections-2.1.pom.sha1 1190 + fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom 1191 + fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom.sha1 1192 + fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar 1193 + fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar.sha1 1194 + fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom 1195 + fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom.sha1 1196 + fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar 1197 + fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar.sha1 1198 + fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom 1199 + fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1 1200 + fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar 1201 + fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar.sha1 1202 + fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.pom 1203 + fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.pom.sha1 1204 + fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.jar 1205 + fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.jar.sha1 1206 + fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.pom 1207 + fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 1208 + fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.jar 1209 + fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.jar.sha1 1275 1210 fetchArtifact oro/oro/2.0.8/oro-2.0.8.pom 1276 1211 fetchArtifact oro/oro/2.0.8/oro-2.0.8.pom.sha1 1277 - fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar 1278 - fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar.sha1 1279 - fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom 1280 - fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom.sha1 1281 - fetchArtifact velocity/velocity/1.5/velocity-1.5.jar 1282 - fetchArtifact velocity/velocity/1.5/velocity-1.5.jar.sha1 1212 + fetchArtifact oro/oro/2.0.8/oro-2.0.8.jar 1213 + fetchArtifact oro/oro/2.0.8/oro-2.0.8.jar.sha1 1283 1214 fetchArtifact velocity/velocity/1.5/velocity-1.5.pom 1284 1215 fetchArtifact velocity/velocity/1.5/velocity-1.5.pom.sha1 1216 + fetchArtifact velocity/velocity/1.5/velocity-1.5.jar 1217 + fetchArtifact velocity/velocity/1.5/velocity-1.5.jar.sha1 1218 + fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom 1219 + fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom.sha1 1285 1220 fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar 1286 1221 fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar.sha1 1287 - fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom 1288 - fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom.sha1 1222 + fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom 1223 + fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom.sha1 1224 + fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar 1225 + fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar.sha1 1226 + fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom 1227 + fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.sha1 1289 1228 fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar 1290 1229 fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar.sha1 1291 - fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom 1292 - fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.sha1 1293 - fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar 1294 - fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar.sha1 1295 - fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom 1296 - fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom.sha1 1297 1230 fetchArtifact xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom 1298 1231 fetchArtifact xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom.sha1 1232 + fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom 1233 + fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom.sha1 1234 + fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar 1235 + fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar.sha1 1236 + fetchArtifact commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom 1237 + fetchArtifact commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom.sha1 1238 + fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom 1239 + fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom.sha1 1240 + fetchArtifact commons-logging/commons-logging/1.0/commons-logging-1.0.pom 1241 + fetchArtifact commons-logging/commons-logging/1.0/commons-logging-1.0.pom.sha1 1242 + fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom 1243 + fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 1244 + fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar 1245 + fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar.sha1 1246 + fetchArtifact commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom 1247 + fetchArtifact commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom.sha1 1248 + fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom 1249 + fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom.sha1 1250 + fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar 1251 + fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar.sha1 1252 + fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom 1253 + fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom.sha1 1254 + fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar 1255 + fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar.sha1 1256 + fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom 1257 + fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom.sha1 1258 + fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar 1259 + fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar.sha1 1260 + fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom 1261 + fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom.sha1 1262 + fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom 1263 + fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom.sha1 1264 + fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar 1265 + fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar.sha1 1266 + fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom 1267 + fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom.sha1 1268 + fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom 1269 + fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom.sha1 1270 + fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar 1271 + fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar.sha1 1272 + fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom 1273 + fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom.sha1 1274 + fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar 1275 + fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar.sha1 1276 + fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom 1277 + fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom.sha1 1278 + fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom 1279 + fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom.sha1 1280 + fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar 1281 + fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar.sha1 1282 + fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom 1283 + fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom.sha1 1284 + fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom 1285 + fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom.sha1 1286 + fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom 1287 + fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom.sha1 1288 + fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.jar 1289 + fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.jar.sha1 1290 + fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom 1291 + fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.sha1 1292 + fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar 1293 + fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar.sha1 1294 + fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom 1295 + fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.sha1 1296 + fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar 1297 + fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar.sha1 1298 + fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom 1299 + fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom.sha1 1300 + fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar 1301 + fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar.sha1 1302 + fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom 1303 + fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom.sha1 1304 + fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar 1305 + fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar.sha1 1306 + fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom 1307 + fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom.sha1 1308 + fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar 1309 + fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar.sha1 1310 + fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom 1311 + fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom.sha1 1312 + fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.jar 1313 + fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.jar.sha1 1314 + fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.pom 1315 + fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 1316 + fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar 1317 + fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar.sha1 1318 + fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom 1319 + fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom.sha1 1320 + fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar 1321 + fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar.sha1 1322 + fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom 1323 + fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom.sha1 1324 + fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar 1325 + fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar.sha1 1326 + fetchArtifact asm/asm/3.2/asm-3.2.pom 1327 + fetchArtifact asm/asm/3.2/asm-3.2.pom.sha1 1328 + fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom 1329 + fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom.sha1 1330 + fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom 1331 + fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom.sha1 1332 + fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom 1333 + fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom.sha1 1334 + fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar 1335 + fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar.sha1 1336 + fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom 1337 + fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom.sha1 1338 + fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom 1339 + fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom.sha1 1340 + fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar 1341 + fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar.sha1 1342 + fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom 1343 + fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom.sha1 1344 + fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom 1345 + fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom.sha1 1346 + fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar 1347 + fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar.sha1 1348 + fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom 1349 + fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom.sha1 1350 + fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar 1351 + fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar.sha1 1352 + fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom 1353 + fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1 1354 + fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar 1355 + fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1 1299 1356 1300 1357 stopNest
+1 -1
pkgs/applications/networking/cluster/mesos/mesos-deps.nix
··· 6 6 7 7 outputHashAlgo = "sha256"; 8 8 outputHashMode = "recursive"; 9 - outputHash = "12c6z5yvp60v57f6nijifp14i56bb5614hac1qg528s9liaf8vml"; 9 + outputHash = "066ikswavq3l37x1s3pfdncyj77pvpa0kj14ax5dqb9njmsg0s11"; 10 10 11 11 buildInputs = [ curl ]; 12 12
+463
pkgs/applications/networking/cluster/mesos/nixos.patch
··· 1 + diff --git a/3rdparty/stout/include/stout/os/posix/fork.hpp b/3rdparty/stout/include/stout/os/posix/fork.hpp 2 + index a29967d..290b98b 100644 3 + --- a/3rdparty/stout/include/stout/os/posix/fork.hpp 4 + +++ b/3rdparty/stout/include/stout/os/posix/fork.hpp 5 + @@ -369,7 +369,7 @@ private: 6 + if (exec.isSome()) { 7 + // Execute the command (via '/bin/sh -c command'). 8 + const char* command = exec.get().command.c_str(); 9 + - execlp("sh", "sh", "-c", command, (char*) nullptr); 10 + + execlp("@sh@", "sh", "-c", command, (char*) nullptr); 11 + EXIT(EXIT_FAILURE) 12 + << "Failed to execute '" << command << "': " << os::strerror(errno); 13 + } else if (wait.isSome()) { 14 + diff --git a/3rdparty/stout/include/stout/os/posix/shell.hpp b/3rdparty/stout/include/stout/os/posix/shell.hpp 15 + index 1d73ae5..9bf89b5 100644 16 + --- a/3rdparty/stout/include/stout/os/posix/shell.hpp 17 + +++ b/3rdparty/stout/include/stout/os/posix/shell.hpp 18 + @@ -37,7 +37,7 @@ namespace Shell { 19 + // received by the callee, usually the command name and `arg1` is the 20 + // second command argument received by the callee. 21 + 22 + -constexpr const char* name = "sh"; 23 + +constexpr const char* name = "@sh@"; 24 + constexpr const char* arg0 = "sh"; 25 + constexpr const char* arg1 = "-c"; 26 + 27 + diff --git a/src/Makefile.am b/src/Makefile.am 28 + index 28dd151..36fc6ec 100644 29 + --- a/src/Makefile.am 30 + +++ b/src/Makefile.am 31 + @@ -1528,7 +1528,8 @@ if HAS_JAVA 32 + 33 + $(MESOS_JAR): $(MESOS_JAR_SOURCE) $(MESOS_JAR_GENERATED) java/mesos.pom 34 + @echo "Building mesos-$(PACKAGE_VERSION).jar ..." 35 + - @cd $(abs_top_builddir)/src/java && $(MVN) -B -f mesos.pom clean package 36 + + @cd $(abs_top_builddir)/src/java && $(MVN) -B -f mesos.pom -Dmaven.repo.local=@mavenRepo@ clean package 37 + + 38 + 39 + # Convenience library for JNI bindings. 40 + # TODO(Charles Reiss): We really should be building the Java library 41 + diff --git a/src/cli/mesos-scp b/src/cli/mesos-scp 42 + index a71ab07..feed8c4 100755 43 + --- a/src/cli/mesos-scp 44 + +++ b/src/cli/mesos-scp 45 + @@ -19,7 +19,7 @@ if sys.version_info < (2,6,0): 46 + 47 + 48 + def scp(host, src, dst): 49 + - cmd = 'scp -pr %s %s' % (src, host + ':' + dst) 50 + + cmd = '@scp@ -pr %s %s' % (src, host + ':' + dst) 51 + try: 52 + process = subprocess.Popen( 53 + cmd, 54 + diff --git a/src/launcher/fetcher.cpp b/src/launcher/fetcher.cpp 55 + index 4456c28..e22c8fc 100644 56 + --- a/src/launcher/fetcher.cpp 57 + +++ b/src/launcher/fetcher.cpp 58 + @@ -68,13 +68,13 @@ static Try<bool> extract( 59 + strings::endsWith(sourcePath, ".tar.bz2") || 60 + strings::endsWith(sourcePath, ".txz") || 61 + strings::endsWith(sourcePath, ".tar.xz")) { 62 + - command = "tar -C '" + destinationDirectory + "' -xf"; 63 + + command = "@tar@ -C '" + destinationDirectory + "' -xf"; 64 + } else if (strings::endsWith(sourcePath, ".gz")) { 65 + string pathWithoutExtension = sourcePath.substr(0, sourcePath.length() - 3); 66 + string filename = Path(pathWithoutExtension).basename(); 67 + - command = "gzip -dc > '" + destinationDirectory + "/" + filename + "' <"; 68 + + command = "@gzip@ -dc > '" + destinationDirectory + "/" + filename + "' <"; 69 + } else if (strings::endsWith(sourcePath, ".zip")) { 70 + - command = "unzip -o -d '" + destinationDirectory + "'"; 71 + + command = "@unzip@ -o -d '" + destinationDirectory + "'"; 72 + } else { 73 + return false; 74 + } 75 + @@ -162,7 +162,7 @@ static Try<string> copyFile( 76 + const string& sourcePath, 77 + const string& destinationPath) 78 + { 79 + - const string command = "cp '" + sourcePath + "' '" + destinationPath + "'"; 80 + + const string command = "@cp@ '" + sourcePath + "' '" + destinationPath + "'"; 81 + 82 + LOG(INFO) << "Copying resource with command:" << command; 83 + 84 + diff --git a/src/linux/perf.cpp b/src/linux/perf.cpp 85 + index ea823b3..170f54d 100644 86 + --- a/src/linux/perf.cpp 87 + +++ b/src/linux/perf.cpp 88 + @@ -125,7 +125,7 @@ private: 89 + // NOTE: The watchdog process places perf in its own process group 90 + // and will kill the perf process when the parent dies. 91 + Try<Subprocess> _perf = subprocess( 92 + - "perf", 93 + + "@perf@", 94 + argv, 95 + Subprocess::PIPE(), 96 + Subprocess::PIPE(), 97 + @@ -319,7 +319,7 @@ bool valid(const set<string>& events) 98 + ostringstream command; 99 + 100 + // Log everything to stderr which is then redirected to /dev/null. 101 + - command << "perf stat --log-fd 2"; 102 + + command << "@perf@ stat --log-fd 2"; 103 + foreach (const string& event, events) { 104 + command << " --event " << event; 105 + } 106 + diff --git a/src/linux/systemd.cpp b/src/linux/systemd.cpp 107 + index 619aa27..c1cbfe4 100644 108 + --- a/src/linux/systemd.cpp 109 + +++ b/src/linux/systemd.cpp 110 + @@ -196,12 +196,19 @@ bool exists() 111 + // This is static as the init system should not change while we are running. 112 + static const bool exists = []() -> bool { 113 + // (1) Test whether `/sbin/init` links to systemd. 114 + - const Result<string> realpath = os::realpath("/sbin/init"); 115 + - if (realpath.isError() || realpath.isNone()) { 116 + - LOG(WARNING) << "Failed to test /sbin/init for systemd environment: " 117 + - << realpath.error(); 118 + - 119 + - return false; 120 + + // cstrahan: first assume we're on NixOS, then try non-NixOS 121 + + Result<string> realpath = os::realpath("/run/current-system/systemd/lib/systemd/systemd"); 122 + + Result<string> realpathNixOS = realpath; 123 + + if (realpathNixOS.isError() || realpathNixOS.isNone()) { 124 + + Result<string> realpathNonNixOS = realpath = os::realpath("/sbin/init"); 125 + + if (realpathNonNixOS.isError() || realpathNonNixOS.isNone()) { 126 + + LOG(WARNING) << "Failed to test /run/current-system/systemd/lib/systemd/systemd for systemd environment: " 127 + + << realpathNixOS.error(); 128 + + LOG(WARNING) << "Failed to test /sbin/init for systemd environment: " 129 + + << realpathNonNixOS.error(); 130 + + 131 + + return false; 132 + + } 133 + } 134 + 135 + CHECK_SOME(realpath); 136 + diff --git a/src/python/cli/src/mesos/cli.py b/src/python/cli/src/mesos/cli.py 137 + index f342992..354abf4 100644 138 + --- a/src/python/cli/src/mesos/cli.py 139 + +++ b/src/python/cli/src/mesos/cli.py 140 + @@ -40,7 +40,7 @@ def resolve(master): 141 + import subprocess 142 + 143 + process = subprocess.Popen( 144 + - ['mesos-resolve', master], 145 + + ['@mesos-resolve@', master], 146 + stdin=None, 147 + stdout=subprocess.PIPE, 148 + stderr=subprocess.PIPE, 149 + diff --git a/src/slave/containerizer/mesos/isolators/filesystem/shared.cpp b/src/slave/containerizer/mesos/isolators/filesystem/shared.cpp 150 + index 51d1518..783adb5 100644 151 + --- a/src/slave/containerizer/mesos/isolators/filesystem/shared.cpp 152 + +++ b/src/slave/containerizer/mesos/isolators/filesystem/shared.cpp 153 + @@ -204,7 +204,7 @@ Future<Option<ContainerLaunchInfo>> SharedFilesystemIsolatorProcess::prepare( 154 + } 155 + 156 + launchInfo.add_pre_exec_commands()->set_value( 157 + - "mount -n --bind " + hostPath + " " + volume.container_path()); 158 + + "@mount@ -n --bind " + hostPath + " " + volume.container_path()); 159 + } 160 + 161 + return launchInfo; 162 + diff --git a/src/slave/containerizer/mesos/isolators/namespaces/pid.cpp b/src/slave/containerizer/mesos/isolators/namespaces/pid.cpp 163 + index b41e266..e07c163 100644 164 + --- a/src/slave/containerizer/mesos/isolators/namespaces/pid.cpp 165 + +++ b/src/slave/containerizer/mesos/isolators/namespaces/pid.cpp 166 + @@ -163,7 +163,7 @@ Future<Option<ContainerLaunchInfo>> NamespacesPidIsolatorProcess::prepare( 167 + // containers cannot see the namespace bind mount of other 168 + // containers. 169 + launchInfo.add_pre_exec_commands()->set_value( 170 + - "mount -n --bind " + string(PID_NS_BIND_MOUNT_MASK_DIR) + 171 + + "@mount@ -n --bind " + string(PID_NS_BIND_MOUNT_MASK_DIR) + 172 + " " + string(PID_NS_BIND_MOUNT_ROOT)); 173 + 174 + // Mount /proc for the container's pid namespace to show the 175 + @@ -176,9 +176,9 @@ Future<Option<ContainerLaunchInfo>> NamespacesPidIsolatorProcess::prepare( 176 + // -n flag so the mount is not added to the mtab where it will not 177 + // be correctly removed with the namespace terminates. 178 + launchInfo.add_pre_exec_commands()->set_value( 179 + - "mount none /proc --make-private -o rec"); 180 + + "@mount@ none /proc --make-private -o rec"); 181 + launchInfo.add_pre_exec_commands()->set_value( 182 + - "mount -n -t proc proc /proc -o nosuid,noexec,nodev"); 183 + + "@mount@ -n -t proc proc /proc -o nosuid,noexec,nodev"); 184 + 185 + return launchInfo; 186 + } 187 + diff --git a/src/slave/containerizer/mesos/isolators/network/port_mapping.cpp b/src/slave/containerizer/mesos/isolators/network/port_mapping.cpp 188 + index 79ee960..d55a353 100644 189 + --- a/src/slave/containerizer/mesos/isolators/network/port_mapping.cpp 190 + +++ b/src/slave/containerizer/mesos/isolators/network/port_mapping.cpp 191 + @@ -1392,19 +1392,19 @@ Try<Isolator*> PortMappingIsolatorProcess::create(const Flags& flags) 192 + // Check the availability of a few Linux commands that we will use. 193 + // We use the blocking os::shell here because 'create' will only be 194 + // invoked during initialization. 195 + - Try<string> checkCommandTc = os::shell("tc filter show"); 196 + + Try<string> checkCommandTc = os::shell("@tc@ filter show"); 197 + if (checkCommandTc.isError()) { 198 + return Error("Check command 'tc' failed: " + checkCommandTc.error()); 199 + } 200 + 201 + // NOTE: loopback device always exists. 202 + - Try<string> checkCommandEthtool = os::shell("ethtool -k lo"); 203 + + Try<string> checkCommandEthtool = os::shell("@ethtool@ -k lo"); 204 + if (checkCommandEthtool.isError()) { 205 + return Error("Check command 'ethtool' failed: " 206 + + checkCommandEthtool.error()); 207 + } 208 + 209 + - Try<string> checkCommandIp = os::shell("ip link show"); 210 + + Try<string> checkCommandIp = os::shell("@ip@ link show"); 211 + if (checkCommandIp.isError()) { 212 + return Error("Check command 'ip' failed: " + checkCommandIp.error()); 213 + } 214 + @@ -1924,9 +1924,9 @@ Try<Isolator*> PortMappingIsolatorProcess::create(const Flags& flags) 215 + // visible. It's OK to use the blocking os::shell here because 216 + // 'create' will only be invoked during initialization. 217 + Try<string> mount = os::shell( 218 + - "mount --bind %s %s && " 219 + - "mount --make-slave %s && " 220 + - "mount --make-shared %s", 221 + + "@mount@ --bind %s %s && " 222 + + "@mount@ --make-slave %s && " 223 + + "@mount@ --make-shared %s", 224 + bindMountRoot->c_str(), 225 + bindMountRoot->c_str(), 226 + bindMountRoot->c_str(), 227 + @@ -1943,8 +1943,8 @@ Try<Isolator*> PortMappingIsolatorProcess::create(const Flags& flags) 228 + // shared mount yet (possibly due to slave crash while preparing 229 + // the work directory mount). It's safe to re-do the following. 230 + Try<string> mount = os::shell( 231 + - "mount --make-slave %s && " 232 + - "mount --make-shared %s", 233 + + "@mount@ --make-slave %s && " 234 + + "@mount@ --make-shared %s", 235 + bindMountRoot->c_str(), 236 + bindMountRoot->c_str()); 237 + 238 + @@ -1963,8 +1963,8 @@ Try<Isolator*> PortMappingIsolatorProcess::create(const Flags& flags) 239 + // so that they are in different peer groups. 240 + if (entry.shared() == bindMountEntry->shared()) { 241 + Try<string> mount = os::shell( 242 + - "mount --make-slave %s && " 243 + - "mount --make-shared %s", 244 + + "@mount@ --make-slave %s && " 245 + + "@mount@ --make-shared %s", 246 + bindMountRoot->c_str(), 247 + bindMountRoot->c_str()); 248 + 249 + @@ -3916,13 +3916,13 @@ string PortMappingIsolatorProcess::scripts(Info* info) 250 + { 251 + ostringstream script; 252 + 253 + - script << "#!/bin/sh\n"; 254 + + script << "#!@sh@\n"; 255 + script << "set -xe\n"; 256 + 257 + // Mark the mount point PORT_MAPPING_BIND_MOUNT_ROOT() as slave 258 + // mount so that changes in the container will not be propagated to 259 + // the host. 260 + - script << "mount --make-rslave " << bindMountRoot << "\n"; 261 + + script << "@mount@ --make-rslave " << bindMountRoot << "\n"; 262 + 263 + // Disable IPv6 when IPv6 module is loaded as IPv6 packets won't be 264 + // forwarded anyway. 265 + @@ -3930,7 +3930,7 @@ string PortMappingIsolatorProcess::scripts(Info* info) 266 + << " echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6\n"; 267 + 268 + // Configure lo and eth0. 269 + - script << "ip link set " << lo << " address " << hostMAC 270 + + script << "@ip@ link set " << lo << " address " << hostMAC 271 + << " mtu " << hostEth0MTU << " up\n"; 272 + 273 + // NOTE: This is mostly a kernel issue: in veth_xmit() the kernel 274 + @@ -3939,12 +3939,12 @@ string PortMappingIsolatorProcess::scripts(Info* info) 275 + // when we receive a packet with a bad checksum. Disabling rx 276 + // checksum offloading ensures the TCP layer will checksum and drop 277 + // it. 278 + - script << "ethtool -K " << eth0 << " rx off\n"; 279 + - script << "ip link set " << eth0 << " address " << hostMAC << " up\n"; 280 + - script << "ip addr add " << hostIPNetwork << " dev " << eth0 << "\n"; 281 + + script << "@ethtool@ -K " << eth0 << " rx off\n"; 282 + + script << "@ip@ link set " << eth0 << " address " << hostMAC << " up\n"; 283 + + script << "@ip@ addr add " << hostIPNetwork << " dev " << eth0 << "\n"; 284 + 285 + // Set up the default gateway to match that of eth0. 286 + - script << "ip route add default via " << hostDefaultGateway << "\n"; 287 + + script << "@ip@ route add default via " << hostDefaultGateway << "\n"; 288 + 289 + // Restrict the ephemeral ports that can be used by the container. 290 + script << "echo " << info->ephemeralPorts.lower() << " " 291 + @@ -3973,19 +3973,19 @@ string PortMappingIsolatorProcess::scripts(Info* info) 292 + } 293 + 294 + // Set up filters on lo and eth0. 295 + - script << "tc qdisc add dev " << lo << " ingress\n"; 296 + - script << "tc qdisc add dev " << eth0 << " ingress\n"; 297 + + script << "@tc@ qdisc add dev " << lo << " ingress\n"; 298 + + script << "@tc@ qdisc add dev " << eth0 << " ingress\n"; 299 + 300 + // Allow talking between containers and from container to host. 301 + // TODO(chzhcn): Consider merging the following two filters. 302 + - script << "tc filter add dev " << lo << " parent " << ingress::HANDLE 303 + + script << "@tc@ filter add dev " << lo << " parent " << ingress::HANDLE 304 + << " protocol ip" 305 + << " prio " << Priority(IP_FILTER_PRIORITY, NORMAL).get() << " u32" 306 + << " flowid ffff:0" 307 + << " match ip dst " << hostIPNetwork.address() 308 + << " action mirred egress redirect dev " << eth0 << "\n"; 309 + 310 + - script << "tc filter add dev " << lo << " parent " << ingress::HANDLE 311 + + script << "@tc@ filter add dev " << lo << " parent " << ingress::HANDLE 312 + << " protocol ip" 313 + << " prio " << Priority(IP_FILTER_PRIORITY, NORMAL).get() << " u32" 314 + << " flowid ffff:0" 315 + @@ -3996,7 +3996,7 @@ string PortMappingIsolatorProcess::scripts(Info* info) 316 + foreach (const PortRange& range, 317 + getPortRanges(info->nonEphemeralPorts + info->ephemeralPorts)) { 318 + // Local traffic inside a container will not be redirected to eth0. 319 + - script << "tc filter add dev " << lo << " parent " << ingress::HANDLE 320 + + script << "@tc@ filter add dev " << lo << " parent " << ingress::HANDLE 321 + << " protocol ip" 322 + << " prio " << Priority(IP_FILTER_PRIORITY, HIGH).get() << " u32" 323 + << " flowid ffff:0" 324 + @@ -4005,7 +4005,7 @@ string PortMappingIsolatorProcess::scripts(Info* info) 325 + 326 + // Traffic going to host loopback IP and ports assigned to this 327 + // container will be redirected to lo. 328 + - script << "tc filter add dev " << eth0 << " parent " << ingress::HANDLE 329 + + script << "@tc@ filter add dev " << eth0 << " parent " << ingress::HANDLE 330 + << " protocol ip" 331 + << " prio " << Priority(IP_FILTER_PRIORITY, NORMAL).get() << " u32" 332 + << " flowid ffff:0" 333 + @@ -4017,14 +4017,14 @@ string PortMappingIsolatorProcess::scripts(Info* info) 334 + } 335 + 336 + // Do not forward the ICMP packet if the destination IP is self. 337 + - script << "tc filter add dev " << lo << " parent " << ingress::HANDLE 338 + + script << "@tc@ filter add dev " << lo << " parent " << ingress::HANDLE 339 + << " protocol ip" 340 + << " prio " << Priority(ICMP_FILTER_PRIORITY, NORMAL).get() << " u32" 341 + << " flowid ffff:0" 342 + << " match ip protocol 1 0xff" 343 + << " match ip dst " << hostIPNetwork.address() << "\n"; 344 + 345 + - script << "tc filter add dev " << lo << " parent " << ingress::HANDLE 346 + + script << "@tc@ filter add dev " << lo << " parent " << ingress::HANDLE 347 + << " protocol ip" 348 + << " prio " << Priority(ICMP_FILTER_PRIORITY, NORMAL).get() << " u32" 349 + << " flowid ffff:0" 350 + @@ -4033,9 +4033,9 @@ string PortMappingIsolatorProcess::scripts(Info* info) 351 + << net::IPNetwork::LOOPBACK_V4().address() << "\n"; 352 + 353 + // Display the filters created on eth0 and lo. 354 + - script << "tc filter show dev " << eth0 355 + + script << "@tc@ filter show dev " << eth0 356 + << " parent " << ingress::HANDLE << "\n"; 357 + - script << "tc filter show dev " << lo 358 + + script << "@tc@ filter show dev " << lo 359 + << " parent " << ingress::HANDLE << "\n"; 360 + 361 + // If throughput limit for container egress traffic exists, use HTB 362 + @@ -4047,9 +4047,9 @@ string PortMappingIsolatorProcess::scripts(Info* info) 363 + // throughput. TBF requires other parameters such as 'burst' that 364 + // HTB already has default values for. 365 + if (egressRateLimitPerContainer.isSome()) { 366 + - script << "tc qdisc add dev " << eth0 << " root handle " 367 + + script << "@tc@ qdisc add dev " << eth0 << " root handle " 368 + << CONTAINER_TX_HTB_HANDLE << " htb default 1\n"; 369 + - script << "tc class add dev " << eth0 << " parent " 370 + + script << "@tc@ class add dev " << eth0 << " parent " 371 + << CONTAINER_TX_HTB_HANDLE << " classid " 372 + << CONTAINER_TX_HTB_CLASS_ID << " htb rate " 373 + << egressRateLimitPerContainer.get().bytes() * 8 << "bit\n"; 374 + @@ -4060,12 +4060,12 @@ string PortMappingIsolatorProcess::scripts(Info* info) 375 + // fq_codel, which has a larger buffer and better control on 376 + // buffer bloat. 377 + // TODO(cwang): Verity that fq_codel qdisc is available. 378 + - script << "tc qdisc add dev " << eth0 379 + + script << "@tC@ qdisc add dev " << eth0 380 + << " parent " << CONTAINER_TX_HTB_CLASS_ID << " fq_codel\n"; 381 + 382 + // Display the htb qdisc and class created on eth0. 383 + - script << "tc qdisc show dev " << eth0 << "\n"; 384 + - script << "tc class show dev " << eth0 << "\n"; 385 + + script << "@tc@ qdisc show dev " << eth0 << "\n"; 386 + + script << "@tc@ class show dev " << eth0 << "\n"; 387 + } 388 + 389 + return script.str(); 390 + diff --git a/src/slave/containerizer/mesos/isolators/posix/disk.cpp b/src/slave/containerizer/mesos/isolators/posix/disk.cpp 391 + index 3dfe7ad..4288666 100644 392 + --- a/src/slave/containerizer/mesos/isolators/posix/disk.cpp 393 + +++ b/src/slave/containerizer/mesos/isolators/posix/disk.cpp 394 + @@ -492,7 +492,7 @@ private: 395 + // NOTE: The monitor watchdog will watch the parent process and kill 396 + // the 'du' process in case that the parent die. 397 + Try<Subprocess> s = subprocess( 398 + - "du", 399 + + "@du@", 400 + command, 401 + Subprocess::PATH("/dev/null"), 402 + Subprocess::PIPE(), 403 + diff --git a/src/slave/containerizer/mesos/provisioner/backends/copy.cpp b/src/slave/containerizer/mesos/provisioner/backends/copy.cpp 404 + index b9f6d7a..0fcf455 100644 405 + --- a/src/slave/containerizer/mesos/provisioner/backends/copy.cpp 406 + +++ b/src/slave/containerizer/mesos/provisioner/backends/copy.cpp 407 + @@ -141,7 +141,7 @@ Future<Nothing> CopyBackendProcess::_provision( 408 + #endif // __APPLE__ || __FreeBSD__ 409 + 410 + Try<Subprocess> s = subprocess( 411 + - "cp", 412 + + "@cp@", 413 + args, 414 + Subprocess::PATH("/dev/null"), 415 + Subprocess::PATH("/dev/null"), 416 + diff --git a/src/uri/fetchers/copy.cpp b/src/uri/fetchers/copy.cpp 417 + index f095ad6..ee0c2a7 100644 418 + --- a/src/uri/fetchers/copy.cpp 419 + +++ b/src/uri/fetchers/copy.cpp 420 + @@ -88,7 +88,7 @@ Future<Nothing> CopyFetcherPlugin::fetch( 421 + const vector<string> argv = {"cp", "-a", uri.path(), directory}; 422 + 423 + Try<Subprocess> s = subprocess( 424 + - "cp", 425 + + "@cp@", 426 + argv, 427 + Subprocess::PATH("/dev/null"), 428 + Subprocess::PIPE(), 429 + diff --git a/src/uri/fetchers/curl.cpp b/src/uri/fetchers/curl.cpp 430 + index cc3f9ee..691d2d9 100644 431 + --- a/src/uri/fetchers/curl.cpp 432 + +++ b/src/uri/fetchers/curl.cpp 433 + @@ -98,7 +98,7 @@ Future<Nothing> CurlFetcherPlugin::fetch( 434 + }; 435 + 436 + Try<Subprocess> s = subprocess( 437 + - "curl", 438 + + "@curl@", 439 + argv, 440 + Subprocess::PATH("/dev/null"), 441 + Subprocess::PIPE(), 442 + diff --git a/src/uri/fetchers/docker.cpp b/src/uri/fetchers/docker.cpp 443 + index 211be6f..d7e3771 100644 444 + --- a/src/uri/fetchers/docker.cpp 445 + +++ b/src/uri/fetchers/docker.cpp 446 + @@ -113,7 +113,7 @@ static Future<http::Response> curl( 447 + 448 + // TODO(jieyu): Kill the process if discard is called. 449 + Try<Subprocess> s = subprocess( 450 + - "curl", 451 + + "@curl@", 452 + argv, 453 + Subprocess::PATH("/dev/null"), 454 + Subprocess::PIPE(), 455 + @@ -212,7 +212,7 @@ static Future<int> download( 456 + 457 + // TODO(jieyu): Kill the process if discard is called. 458 + Try<Subprocess> s = subprocess( 459 + - "curl", 460 + + "@curl@", 461 + argv, 462 + Subprocess::PATH("/dev/null"), 463 + Subprocess::PIPE(),
+10 -11
pkgs/applications/networking/cluster/mesos/rb51324.patch
··· 1 - diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/os/ls.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/os/ls.hpp 2 - index f8da9ef74a885cc39424b3e50cebca905d88ca44..25e2bec6415f2382291cf8da5c0a8c44cf882d27 100644 3 - --- a/3rdparty/libprocess/3rdparty/stout/include/stout/os/ls.hpp 4 - +++ b/3rdparty/libprocess/3rdparty/stout/include/stout/os/ls.hpp 5 - @@ -18,6 +18,8 @@ 1 + diff --git a/3rdparty/stout/include/stout/os/ls.hpp b/3rdparty/stout/include/stout/os/ls.hpp 2 + index f8da9ef..6d549d3 100644 3 + --- a/3rdparty/stout/include/stout/os/ls.hpp 4 + +++ b/3rdparty/stout/include/stout/os/ls.hpp 5 + @@ -18,6 +18,7 @@ 6 6 #else 7 7 #include <dirent.h> 8 8 #endif // __WINDOWS__ 9 9 + 10 - +#include <errno.h> 11 10 #include <stdlib.h> 12 11 13 12 #include <list> 14 - @@ -26,8 +28,6 @@ 13 + @@ -26,8 +27,6 @@ 15 14 #include <stout/error.hpp> 16 15 #include <stout/try.hpp> 17 16 ··· 20 19 21 20 namespace os { 22 21 23 - @@ -36,36 +36,32 @@ inline Try<std::list<std::string>> ls(const std::string& directory) 22 + @@ -36,36 +35,32 @@ inline Try<std::list<std::string>> ls(const std::string& directory) 24 23 DIR* dir = opendir(directory.c_str()); 25 24 26 - if (dir == NULL) { 25 + if (dir == nullptr) { 27 26 - // Preserve `opendir` error. 28 27 return ErrnoError("Failed to opendir '" + directory + "'"); 29 28 } 30 29 31 30 - dirent* temp = (dirent*) malloc(os::dirent_size(dir)); 32 31 - 33 - - if (temp == NULL) { 32 + - if (temp == nullptr) { 34 33 - // Preserve `malloc` error. 35 34 - ErrnoError error("Failed to allocate directory entries"); 36 35 - closedir(dir); ··· 41 40 struct dirent* entry; 42 41 - int error; 43 42 44 - - while ((error = readdir_r(dir, temp, &entry)) == 0 && entry != NULL) { 43 + - while ((error = readdir_r(dir, temp, &entry)) == 0 && entry != nullptr) { 45 44 + // Zero `errno` before starting to call `readdir`. This is necessary 46 45 + // to allow us to determine when `readdir` returns an error. 47 46 + errno = 0;
+37 -36
pkgs/applications/networking/cluster/mesos/rb51325.patch
··· 1 - diff -Naur a/3rdparty/libprocess/3rdparty/stout/include/Makefile.am b/3rdparty/libprocess/3rdparty/stout/include/Makefile.am 2 - --- a/3rdparty/libprocess/3rdparty/stout/include/Makefile.am 2016-09-02 15:20:04.834457344 +0200 3 - +++ b/3rdparty/libprocess/3rdparty/stout/include/Makefile.am 2016-09-02 15:21:00.190983981 +0200 4 - @@ -62,7 +62,6 @@ 5 - stout/os/chroot.hpp \ 6 - stout/os/close.hpp \ 7 - stout/os/constants.hpp \ 8 - - stout/os/direntsize.hpp \ 9 - stout/os/environment.hpp \ 10 - stout/os/exists.hpp \ 11 - stout/os/fcntl.hpp \ 12 - @@ -101,7 +100,6 @@ 13 - stout/os/posix/bootid.hpp \ 14 - stout/os/posix/chown.hpp \ 15 - stout/os/posix/chroot.hpp \ 16 - - stout/os/posix/direntsize.hpp \ 17 - stout/os/posix/exists.hpp \ 18 - stout/os/posix/fcntl.hpp \ 19 - stout/os/posix/fork.hpp \ 20 - @@ -118,7 +116,6 @@ 21 - stout/os/raw/environment.hpp \ 22 - stout/os/windows/bootid.hpp \ 23 - stout/os/windows/chroot.hpp \ 24 - - stout/os/windows/direntsize.hpp \ 25 - stout/os/windows/exists.hpp \ 26 - stout/os/windows/fcntl.hpp \ 27 - stout/os/windows/fork.hpp \ 28 - diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/os/direntsize.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/os/direntsize.hpp 1 + diff --git a/3rdparty/stout/include/Makefile.am b/3rdparty/stout/include/Makefile.am 2 + index 1f2ee85..b0b08d8 100644 3 + --- a/3rdparty/stout/include/Makefile.am 4 + +++ b/3rdparty/stout/include/Makefile.am 5 + @@ -64,7 +64,6 @@ nobase_include_HEADERS = \ 6 + stout/os/chroot.hpp \ 7 + stout/os/close.hpp \ 8 + stout/os/constants.hpp \ 9 + - stout/os/direntsize.hpp \ 10 + stout/os/environment.hpp \ 11 + stout/os/exists.hpp \ 12 + stout/os/fcntl.hpp \ 13 + @@ -108,7 +107,6 @@ nobase_include_HEADERS = \ 14 + stout/os/posix/chown.hpp \ 15 + stout/os/posix/chroot.hpp \ 16 + stout/os/posix/close.hpp \ 17 + - stout/os/posix/direntsize.hpp \ 18 + stout/os/posix/exists.hpp \ 19 + stout/os/posix/fcntl.hpp \ 20 + stout/os/posix/fork.hpp \ 21 + @@ -134,7 +132,6 @@ nobase_include_HEADERS = \ 22 + stout/os/windows/bootid.hpp \ 23 + stout/os/windows/chroot.hpp \ 24 + stout/os/windows/close.hpp \ 25 + - stout/os/windows/direntsize.hpp \ 26 + stout/os/windows/exists.hpp \ 27 + stout/os/windows/fcntl.hpp \ 28 + stout/os/windows/fork.hpp \ 29 + diff --git a/3rdparty/stout/include/stout/os/direntsize.hpp b/3rdparty/stout/include/stout/os/direntsize.hpp 29 30 deleted file mode 100644 30 - index 819f99a89862491e99873bdedc603317b91266b0..0000000000000000000000000000000000000000 31 - --- a/3rdparty/libprocess/3rdparty/stout/include/stout/os/direntsize.hpp 31 + index 819f99a..0000000 32 + --- a/3rdparty/stout/include/stout/os/direntsize.hpp 32 33 +++ /dev/null 33 34 @@ -1,26 +0,0 @@ 34 35 -// Licensed under the Apache License, Version 2.0 (the "License"); ··· 57 58 - 58 59 - 59 60 -#endif // __STOUT_OS_DIRENTSIZE_HPP__ 60 - diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/os/posix/direntsize.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/os/posix/direntsize.hpp 61 + diff --git a/3rdparty/stout/include/stout/os/posix/direntsize.hpp b/3rdparty/stout/include/stout/os/posix/direntsize.hpp 61 62 deleted file mode 100644 62 - index 9d8f72eb607a288e77f92b39b91542ff5eb2fa21..0000000000000000000000000000000000000000 63 - --- a/3rdparty/libprocess/3rdparty/stout/include/stout/os/posix/direntsize.hpp 63 + index 9d8f72e..0000000 64 + --- a/3rdparty/stout/include/stout/os/posix/direntsize.hpp 64 65 +++ /dev/null 65 66 @@ -1,42 +0,0 @@ 66 67 -// Licensed under the Apache License, Version 2.0 (the "License"); ··· 105 106 -} // namespace os { 106 107 - 107 108 -#endif // __STOUT_OS_POSIX_DIRENTSIZE_HPP__ 108 - diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/os/windows/direntsize.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/os/windows/direntsize.hpp 109 + diff --git a/3rdparty/stout/include/stout/os/windows/direntsize.hpp b/3rdparty/stout/include/stout/os/windows/direntsize.hpp 109 110 deleted file mode 100644 110 - index 7c8c7a06f478b3a80341a874494cff21f71fc397..0000000000000000000000000000000000000000 111 - --- a/3rdparty/libprocess/3rdparty/stout/include/stout/os/windows/direntsize.hpp 111 + index 7c8c7a0..0000000 112 + --- a/3rdparty/stout/include/stout/os/windows/direntsize.hpp 112 113 +++ /dev/null 113 114 @@ -1,43 +0,0 @@ 114 115 -// Licensed under the Apache License, Version 2.0 (the "License");
+1 -1
pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-latex/default.nix
··· 23 23 }; 24 24 25 25 meta = with stdenv.lib; { 26 - homepage = http://sourceforge.net/projects/pidgin-latex/; 26 + homepage = "http://sourceforge.net/projects/pidgin-latex/"; 27 27 description = "LaTeX rendering plugin for Pidgin IM"; 28 28 license = licenses.gpl2; 29 29 platforms = platforms.linux;
+55 -58
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, fetchgit, qtbase, qtimageformats 1 + { stdenv, lib, fetchFromGitHub, fetchgit, pkgconfig, gyp, cmake 2 + , qtbase, qtimageformats, qtwayland 2 3 , breakpad, ffmpeg, openalSoft, openssl, zlib, libexif, lzma, libopus 3 4 , gtk2, glib, cairo, pango, gdk_pixbuf, atk, libappindicator-gtk2 4 - , libwebp, libunity, dee, libdbusmenu-glib, libva 5 + , libwebp, libunity, dee, libdbusmenu-glib, libva-full, wayland 6 + , xcbutilrenderutil, icu, libSM, libICE, libproxy 5 7 6 - , pkgconfig, libxcb, xcbutilwm, xcbutilimage, xcbutilkeysyms 7 - , libxkbcommon, libpng, libjpeg, freetype, harfbuzz, pcre16 8 - , xproto, libX11, inputproto, sqlite, dbus 8 + , libxcb, xcbutilwm, xcbutilimage, xcbutilkeysyms, libxkbcommon 9 + , libpng, libjpeg, freetype, harfbuzz, pcre16, xproto, libX11 10 + , inputproto, sqlite, dbus 9 11 }: 10 12 11 13 let 12 14 system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; 13 - packagedQt = "5.6.0"; 15 + packagedQt = "5.6.2"; 14 16 # Hacky: split "1.2.3-4" into "1.2.3" and "4" 15 17 systemQt = (builtins.parseDrvName qtbase.version).name; 18 + qtLibs = [ qtbase qtimageformats qtwayland ]; 16 19 17 20 in stdenv.mkDerivation rec { 18 21 name = "telegram-desktop-${version}"; 19 - version = "0.10.1"; 22 + version = "0.10.19"; 20 23 qtVersion = lib.replaceStrings ["."] ["_"] packagedQt; 21 24 22 25 src = fetchFromGitHub { 23 26 owner = "telegramdesktop"; 24 27 repo = "tdesktop"; 25 28 rev = "v${version}"; 26 - sha256 = "08isxwif6zllglkpd9i7ypxm2s4bibzqris48607bafr88ylksdk"; 29 + sha256 = "1p07kxfmcd90sx9bq046x03h1h807vs0pn64lfghr6m6ln8z44s3"; 27 30 }; 28 31 29 32 tgaur = fetchgit { 30 33 url = "https://aur.archlinux.org/telegram-desktop.git"; 31 - rev = "9ce7be9efed501f988bb099956fa63729f2c25ea"; 32 - sha256 = "1wp6lqscpm2byizchm0bj48dg9bga02r9r69ns10zxk0gk0qvvdn"; 34 + rev = "99bb0519f14e23fafb6884fe296d34b6f8bed5c3"; 35 + sha256 = "0z5m3binbl06kk34plmfblhqz6hlnkbnjb93sam0c6c995k3sz82"; 33 36 }; 34 37 35 38 buildInputs = [ 36 39 breakpad ffmpeg openalSoft openssl zlib libexif lzma libopus 37 40 gtk2 glib libappindicator-gtk2 libunity cairo pango gdk_pixbuf atk 38 - dee libdbusmenu-glib libva 41 + dee libdbusmenu-glib libva-full xcbutilrenderutil icu libproxy 42 + libSM libICE 39 43 # Qt dependencies 40 44 libxcb xcbutilwm xcbutilimage xcbutilkeysyms libxkbcommon 41 45 libpng libjpeg freetype harfbuzz pcre16 xproto libX11 42 - inputproto sqlite dbus libwebp 46 + inputproto sqlite dbus libwebp wayland 43 47 ]; 44 48 45 - nativeBuildInputs = [ pkgconfig ]; 49 + nativeBuildInputs = [ pkgconfig gyp cmake ]; 46 50 47 - enableParallelBuilding = true; 51 + patches = [ "${tgaur}/aur-fixes.diff" ]; 48 52 49 - qmakeFlags = [ 50 - "CONFIG+=release" 51 - "DEFINES+=TDESKTOP_DISABLE_AUTOUPDATE" 52 - "DEFINES+=TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME" 53 - "INCLUDEPATH+=${breakpad}/include/breakpad" 54 - "QT_TDESKTOP_VERSION=${systemQt}" 55 - ]; 53 + enableParallelBuilding = true; 56 54 57 - qtSrcs = [ qtbase.src qtimageformats.src ]; 55 + qtSrcs = builtins.map (x: x.src) qtLibs; 56 + qtNames = builtins.map (x: (builtins.parseDrvName x.name).name) (lib.tail qtLibs); 58 57 qtPatches = qtbase.patches; 59 58 60 59 buildCommand = '' ··· 62 61 cd "$sourceRoot" 63 62 64 63 patchPhase 65 - sed -i 'Telegram/Telegram.pro' \ 66 - -e 's,CUSTOM_API_ID,,g' \ 64 + 65 + sed -i Telegram/gyp/Telegram.gyp \ 66 + -e 's,/usr/include/breakpad,${breakpad}/include/breakpad,g' 67 + 68 + sed -i Telegram/gyp/telegram_linux.gypi \ 67 69 -e 's,/usr,/does-not-exist,g' \ 68 - -e 's, -flto,,g' \ 69 - -e 's,LIBS += .*libbreakpad_client.a,LIBS += ${breakpad}/lib/libbreakpad_client.a,' \ 70 - -e 's, -static-libstdc++,,g' \ 71 - -e '/LIBS += .*libxkbcommon.a/d' 70 + -e 's,-flto,,g' 71 + 72 + sed -i Telegram/gyp/qt.gypi \ 73 + -e 's,${packagedQt},${systemQt},g' 72 74 73 - export qmakeFlags="$qmakeFlags QT_TDESKTOP_PATH=$PWD/../qt" 75 + gypFlagsArray=( 76 + "-Dlinux_path_qt=$PWD/../qt" 77 + "-Dlinux_lib_ssl=-lssl" 78 + "-Dlinux_lib_crypto=-lcrypto" 79 + "-Dlinux_lib_icu=-licuuc -licutu -licui18n" 80 + ) 74 81 75 82 export QMAKE=$PWD/../qt/bin/qmake 76 83 ( mkdir -p ../Libraries ··· 79 86 tar -xaf $i 80 87 done 81 88 cd qtbase-* 82 - # This patch is outdated but the fixes doesn't feel very important 89 + # This patch is often outdated but the fixes doesn't feel very important 83 90 patch -p1 < ../../$sourceRoot/Telegram/Patches/qtbase_${qtVersion}.diff || true 84 91 for i in $qtPatches; do 85 92 patch -p1 < $i ··· 89 96 90 97 export configureFlags="-prefix "$PWD/../qt" -release -opensource -confirm-license -system-zlib \ 91 98 -system-libpng -system-libjpeg -system-freetype -system-harfbuzz -system-pcre -system-xcb \ 92 - -system-xkbcommon-x11 -no-opengl -static -nomake examples -nomake tests \ 93 - -openssl-linked -dbus-linked -system-sqlite -verbose -no-gtkstyle \ 99 + -system-xkbcommon-x11 -no-eglfs -no-gtkstyle -static -nomake examples -nomake tests \ 100 + -no-directfb -system-proxies -openssl-linked -dbus-linked -system-sqlite -verbose \ 94 101 ${lib.optionalString (!system-x86_64) "-no-sse2"} -no-sse3 -no-ssse3 \ 95 102 -no-sse4.1 -no-sse4.2 -no-avx -no-avx2 -no-mips_dsp -no-mips_dspr2" 96 103 export dontAddPrefix=1 ··· 101 108 buildPhase 102 109 make install 103 110 ) 104 - 105 - ( cd qtimageformats-* 106 - $QMAKE 107 - buildPhase 108 - make install 109 - ) 111 + for i in $qtNames; do 112 + ( cd $i-* 113 + $QMAKE 114 + buildPhase 115 + make install 116 + ) 117 + done 110 118 ) 111 119 112 - ( mkdir -p Linux/obj/codegen_style/Debug 113 - cd Linux/obj/codegen_style/Debug 114 - $QMAKE $qmakeFlags ../../../../Telegram/build/qmake/codegen_style/codegen_style.pro 115 - buildPhase 116 - ) 117 - ( mkdir -p Linux/obj/codegen_numbers/Debug 118 - cd Linux/obj/codegen_numbers/Debug 119 - $QMAKE $qmakeFlags ../../../../Telegram/build/qmake/codegen_numbers/codegen_numbers.pro 120 - buildPhase 121 - ) 122 - ( mkdir -p Linux/DebugIntermediateLang 123 - cd Linux/DebugIntermediateLang 124 - $QMAKE $qmakeFlags ../../Telegram/MetaLang.pro 125 - buildPhase 120 + ( cd Telegram/gyp 121 + gyp "''${gypFlagsArray[@]}" --depth=. --generator-output=../.. -Goutput_dir=out Telegram.gyp --format=cmake 126 122 ) 127 123 128 - ( mkdir -p Linux/ReleaseIntermediate 129 - cd Linux/ReleaseIntermediate 130 - $QMAKE $qmakeFlags ../../Telegram/Telegram.pro 131 - pattern="^PRE_TARGETDEPS +=" 132 - grep "$pattern" "../../Telegram/Telegram.pro" | sed "s/$pattern//g" | xargs make 124 + ( cd out/Release 125 + export ASM=$(type -p gcc) 126 + cmake . 127 + # For some reason, it can't find stdafx.h -- we need to build dependencies till it fails and then retry. 128 + buildPhase || true 129 + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -include stdafx.h" 133 130 buildPhase 134 131 ) 135 132 136 - install -Dm755 Linux/Release/Telegram $out/bin/telegram-desktop 133 + install -Dm755 out/Release/Telegram $out/bin/telegram-desktop 137 134 mkdir -p $out/share/applications $out/share/kde4/services 138 135 sed "s,/usr/bin,$out/bin,g" $tgaur/telegramdesktop.desktop > $out/share/applications/telegramdesktop.desktop 139 136 sed "s,/usr/bin,$out/bin,g" $tgaur/tg.protocol > $out/share/kde4/services/tg.protocol
+1 -4
pkgs/applications/networking/mailreaders/notmuch-addrlookup/default.nix
··· 11 11 sha256 = "0mz0llf1ggl1k46brgrqj3i8qlg1ycmkc5a3a0kg8fg4s1c1m6xk"; 12 12 }; 13 13 14 - 15 14 buildInputs = [ pkgconfig glib notmuch ]; 16 15 17 16 installPhase = '' ··· 19 18 cp notmuch-addrlookup "$out/bin" 20 19 ''; 21 20 22 - 23 - 24 21 meta = with stdenv.lib; { 25 22 description = "Address lookup tool for Notmuch in C"; 26 23 homepage = https://github.com/aperezdc/notmuch-addrlookup-c; 27 - maintainers = with maintainers; [ mog ]; 24 + maintainers = with maintainers; [ mog garbas ]; 28 25 platforms = platforms.linux; 29 26 license = licenses.mit; 30 27 };
+57 -37
pkgs/applications/networking/mailreaders/notmuch/default.nix
··· 1 - { fetchurl, stdenv, bash, emacs, fixDarwinDylibNames 2 - , gdb, glib, gmime, gnupg 3 - , pkgconfig, talloc, xapian 4 - , sphinx, python 1 + { fetchurl, stdenv, fixDarwinDylibNames, gdb 2 + , pkgconfig, gnupg 3 + , xapian, gmime, talloc, zlib 4 + , doxygen, perl 5 + , pythonPackages 6 + , bash-completion 7 + , emacs 8 + , ruby 9 + , which, dtach, openssl, bash 5 10 }: 6 11 7 12 stdenv.mkDerivation rec { 8 - version = "0.22"; 13 + version = "0.23.2"; 9 14 name = "notmuch-${version}"; 10 15 11 16 passthru = { ··· 15 20 16 21 src = fetchurl { 17 22 url = "http://notmuchmail.org/releases/${name}.tar.gz"; 18 - sha256 = "16mrrw6xpsgip4dy8rfx0zncij5h41fsg2aah6x6z83bjbpihhfn"; 23 + sha256 = "1g4p5hsrqqbqk6s2w756als60wppvjgpyq104smy3w9vshl7bzgd"; 19 24 }; 20 25 21 - buildInputs = [ bash emacs glib gmime gnupg pkgconfig talloc xapian sphinx python ] 26 + buildInputs = [ 27 + pkgconfig gnupg # undefined dependencies 28 + xapian gmime talloc zlib # dependencies described in INSTALL 29 + doxygen perl # (optional) api docs 30 + pythonPackages.sphinx pythonPackages.python # (optional) documentation -> doc/INSTALL 31 + bash-completion # (optional) dependency to install bash completion 32 + emacs # (optional) to byte compile emacs code 33 + ruby # (optional) ruby bindings 34 + which dtach openssl bash # test dependencies 35 + ] 22 36 ++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames 23 37 ++ stdenv.lib.optional (!stdenv.isDarwin) gdb; 24 38 39 + doCheck = !stdenv.isDarwin; 40 + checkTarget = "test"; 41 + 25 42 patchPhase = '' 43 + # XXX: disabling few tests since i have no idea how to make them pass for now 44 + rm -f test/T010-help-test.sh \ 45 + test/T350-crypto.sh \ 46 + test/T355-smime.sh 47 + 26 48 find test -type f -exec \ 27 49 sed -i \ 28 - "1s_#!/usr/bin/env bash_#!${bash}/bin/bash_" \ 50 + -e "1s|#!/usr/bin/env bash|#!${bash}/bin/bash|" \ 51 + -e "s|gpg |${gnupg}/bin/gpg2 |" \ 52 + -e "s| gpg| ${gnupg}/bin/gpg2|" \ 53 + -e "s|gpgsm |${gnupg}/bin/gpgsm |" \ 54 + -e "s| gpgsm| ${gnupg}/bin/gpgsm|" \ 55 + -e "s|crypto.gpg_path=gpg|crypto.gpg_path=${gnupg}/bin/gpg2|" \ 29 56 "{}" ";" 30 57 31 58 for src in \ ··· 38 65 done 39 66 ''; 40 67 41 - postInstall = '' 42 - make install-man 43 - ''; 44 - 45 - preFixup = if stdenv.isDarwin then 46 - '' 47 - set -e 68 + preFixup = stdenv.lib.optionalString stdenv.isDarwin '' 69 + set -e 48 70 49 - die() { 50 - >&2 echo "$@" 51 - exit 1 52 - } 71 + die() { 72 + >&2 echo "$@" 73 + exit 1 74 + } 53 75 54 - prg="$out/bin/notmuch" 55 - lib="$(find "$out/lib" -name 'libnotmuch.?.dylib')" 76 + prg="$out/bin/notmuch" 77 + lib="$(find "$out/lib" -name 'libnotmuch.?.dylib')" 56 78 57 - [[ -s "$prg" ]] || die "couldn't find notmuch binary" 58 - [[ -s "$lib" ]] || die "couldn't find libnotmuch" 79 + [[ -s "$prg" ]] || die "couldn't find notmuch binary" 80 + [[ -s "$lib" ]] || die "couldn't find libnotmuch" 59 81 60 - badname="$(otool -L "$prg" | awk '$1 ~ /libtalloc/ { print $1 }')" 61 - goodname="$(find "${talloc}/lib" -name 'libtalloc.?.?.?.dylib')" 82 + badname="$(otool -L "$prg" | awk '$1 ~ /libtalloc/ { print $1 }')" 83 + goodname="$(find "${talloc}/lib" -name 'libtalloc.?.?.?.dylib')" 62 84 63 - [[ -n "$badname" ]] || die "couldn't find libtalloc reference in binary" 64 - [[ -n "$goodname" ]] || die "couldn't find libtalloc in nix store" 85 + [[ -n "$badname" ]] || die "couldn't find libtalloc reference in binary" 86 + [[ -n "$goodname" ]] || die "couldn't find libtalloc in nix store" 65 87 66 - echo "fixing libtalloc link in $lib" 67 - install_name_tool -change "$badname" "$goodname" "$lib" 88 + echo "fixing libtalloc link in $lib" 89 + install_name_tool -change "$badname" "$goodname" "$lib" 68 90 69 - echo "fixing libtalloc link in $prg" 70 - install_name_tool -change "$badname" "$goodname" "$prg" 71 - '' 72 - else 73 - ""; 91 + echo "fixing libtalloc link in $prg" 92 + install_name_tool -change "$badname" "$goodname" "$prg" 93 + ''; 74 94 75 - # XXX: emacs tests broken 76 - doCheck = false; 77 - checkTarget = "test"; 95 + postInstall = '' 96 + make install-man 97 + ''; 78 98 79 99 meta = { 80 100 description = "Mail indexer";
+2 -2
pkgs/applications/networking/syncthing/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, go, pkgs }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.14.11"; 4 + version = "0.14.12"; 5 5 name = "syncthing-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "syncthing"; 9 9 repo = "syncthing"; 10 10 rev = "v${version}"; 11 - sha256 = "12b8284mya5z1q7ighbzk8rqxj0kcv5n0l39dygikfcbl1krr6sg"; 11 + sha256 = "09w0i9rmdi9fjsphib2x6gs6yn5d1a41nh1pm4k9ks31am9zdwsm"; 12 12 }; 13 13 14 14 buildInputs = [ go ];
+138
pkgs/applications/science/math/mathematica/10.nix
··· 1 + { stdenv 2 + , coreutils 3 + , patchelf 4 + , requireFile 5 + , alsaLib 6 + , fontconfig 7 + , freetype 8 + , gcc 9 + , glib 10 + , libpng 11 + , ncurses 12 + , opencv 13 + , openssl 14 + , unixODBC 15 + , xorg 16 + , zlib 17 + , libxml2 18 + , libuuid 19 + }: 20 + 21 + let 22 + platform = 23 + if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux" then 24 + "Linux" 25 + else 26 + throw "Mathematica requires i686-linux or x86_64 linux"; 27 + in 28 + stdenv.mkDerivation rec { 29 + version = "10.0.2"; 30 + 31 + name = "mathematica-${version}"; 32 + 33 + src = requireFile rec { 34 + name = "Mathematica_${version}_LINUX.sh"; 35 + message = '' 36 + This nix expression requires that ${name} is 37 + already part of the store. Find the file on your Mathematica CD 38 + and add it to the nix store with nix-store --add-fixed sha256 <FILE>. 39 + ''; 40 + sha256 = "1d2yaiaikzcacjamlw64g3xkk81m3pb4vz4an12cv8nb7kb20x9l"; 41 + }; 42 + 43 + buildInputs = [ 44 + coreutils 45 + patchelf 46 + alsaLib 47 + coreutils 48 + fontconfig 49 + freetype 50 + gcc.cc 51 + gcc.libc 52 + glib 53 + ncurses 54 + opencv 55 + openssl 56 + unixODBC 57 + libxml2 58 + libuuid 59 + ] ++ (with xorg; [ 60 + libX11 61 + libXext 62 + libXtst 63 + libXi 64 + libXmu 65 + libXrender 66 + libxcb 67 + libXcursor 68 + libXfixes 69 + libXrandr 70 + libICE 71 + libSM 72 + ]); 73 + 74 + ldpath = stdenv.lib.makeLibraryPath buildInputs 75 + + stdenv.lib.optionalString (stdenv.system == "x86_64-linux") 76 + (":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs); 77 + 78 + phases = "unpackPhase installPhase fixupPhase"; 79 + 80 + unpackPhase = '' 81 + echo "=== Extracting makeself archive ===" 82 + # find offset from file 83 + offset=$(${stdenv.shell} -c "$(grep -axm1 -e 'offset=.*' $src); echo \$offset" $src) 84 + dd if="$src" ibs=$offset skip=1 | tar -xf - 85 + cd Unix 86 + ''; 87 + 88 + installPhase = '' 89 + cd Installer 90 + # don't restrict PATH, that has already been done 91 + sed -i -e 's/^PATH=/# PATH=/' MathInstaller 92 + 93 + echo "=== Running MathInstaller ===" 94 + ./MathInstaller -auto -createdir=y -execdir=$out/bin -targetdir=$out/libexec/Mathematica -platforms=${platform} -silent 95 + ''; 96 + 97 + preFixup = '' 98 + echo "=== PatchElfing away ===" 99 + # This code should be a bit forgiving of errors, unfortunately 100 + set +e 101 + find $out/libexec/Mathematica/SystemFiles -type f -perm -0100 | while read f; do 102 + type=$(readelf -h "$f" 2>/dev/null | grep 'Type:' | sed -e 's/ *Type: *\([A-Z]*\) (.*/\1/') 103 + if [ -z "$type" ]; then 104 + : 105 + elif [ "$type" == "EXEC" ]; then 106 + echo "patching $f executable <<" 107 + patchelf --shrink-rpath "$f" 108 + patchelf \ 109 + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 110 + --set-rpath "$(patchelf --print-rpath "$f"):${ldpath}" \ 111 + "$f" \ 112 + && patchelf --shrink-rpath "$f" \ 113 + || echo unable to patch ... ignoring 1>&2 114 + elif [ "$type" == "DYN" ]; then 115 + echo "patching $f library <<" 116 + patchelf \ 117 + --set-rpath "$(patchelf --print-rpath "$f"):${ldpath}" \ 118 + "$f" \ 119 + && patchelf --shrink-rpath "$f" \ 120 + || echo unable to patch ... ignoring 1>&2 121 + else 122 + echo "not patching $f <<: unknown elf type" 123 + fi 124 + done 125 + ''; 126 + 127 + # all binaries are already stripped 128 + dontStrip = true; 129 + 130 + # we did this in prefixup already 131 + dontPatchELF = true; 132 + 133 + meta = { 134 + description = "Wolfram Mathematica computational software system"; 135 + homepage = "http://www.wolfram.com/mathematica/"; 136 + license = stdenv.lib.licenses.unfree; 137 + }; 138 + }
+4 -3
pkgs/applications/science/math/mathematica/default.nix
··· 26 26 throw "Mathematica requires i686-linux or x86_64 linux"; 27 27 in 28 28 stdenv.mkDerivation rec { 29 - version = "10.0.2"; 29 + version = "11.0.1"; 30 30 31 31 name = "mathematica-${version}"; 32 32 ··· 37 37 already part of the store. Find the file on your Mathematica CD 38 38 and add it to the nix store with nix-store --add-fixed sha256 <FILE>. 39 39 ''; 40 - sha256 = "1d2yaiaikzcacjamlw64g3xkk81m3pb4vz4an12cv8nb7kb20x9l"; 40 + sha256 = "1qqwz8gbw74rnnyirpbdanwx3d25s4x0i4zc7bs6kp959x66cdkw"; 41 41 }; 42 42 43 43 buildInputs = [ ··· 89 89 cd Installer 90 90 # don't restrict PATH, that has already been done 91 91 sed -i -e 's/^PATH=/# PATH=/' MathInstaller 92 + sed -i -e 's/\/bin\/bash/\/bin\/sh/' MathInstaller 92 93 93 94 echo "=== Running MathInstaller ===" 94 - ./MathInstaller -auto -createdir=y -execdir=$out/bin -targetdir=$out/libexec/Mathematica -platforms=${platform} -silent 95 + ./MathInstaller -auto -createdir=y -execdir=$out/bin -targetdir=$out/libexec/Mathematica -silent 95 96 ''; 96 97 97 98 preFixup = ''
+2
pkgs/applications/version-management/git-and-tools/default.nix
··· 45 45 46 46 git-annex-remote-b2 = callPackage ./git-annex-remote-b2 { }; 47 47 48 + git-annex-remote-rclone = callPackage ./git-annex-remote-rclone { }; 49 + 48 50 # support for bugzilla 49 51 git-bz = callPackage ./git-bz { }; 50 52
+32
pkgs/applications/version-management/git-and-tools/git-annex-remote-rclone/default.nix
··· 1 + { stdenv, fetchFromGitHub, rclone, makeWrapper }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "git-annex-remote-rclone-${version}"; 5 + version = "0.4"; 6 + rev = "v${version}"; 7 + 8 + src = fetchFromGitHub { 9 + inherit rev; 10 + owner = "DanielDent"; 11 + repo = "git-annex-remote-rclone"; 12 + sha256 = "1myk307hqm8dlxhkmwr347rdd28niv5h0gyrxm30y77zlly30ddk"; 13 + }; 14 + 15 + nativeBuildInputs = [ makeWrapper ]; 16 + 17 + phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; 18 + 19 + installPhase = '' 20 + mkdir -p $out/bin 21 + cp git-annex-remote-rclone $out/bin 22 + wrapProgram "$out/bin/git-annex-remote-rclone" \ 23 + --prefix PATH ":" "${stdenv.lib.makeBinPath [ rclone ]}" 24 + ''; 25 + 26 + meta = with stdenv.lib; { 27 + homepage = https://github.com/DanielDent/git-annex-remote-rclone; 28 + description = "Use rclone supported cloud storage providers with git-annex"; 29 + license = licenses.gpl3; 30 + maintainers = [ maintainers.montag451 ]; 31 + }; 32 + }
+3 -3
pkgs/applications/video/avidemux/default.nix
··· 14 14 }: 15 15 16 16 let 17 - version = "2.6.12"; 17 + version = "2.6.15"; 18 18 19 19 src = fetchurl { 20 20 url = "mirror://sourceforge/avidemux/avidemux/${version}/avidemux_${version}.tar.gz"; 21 - sha256 = "0nz52yih8sff53inndkh2dba759xjzsh4b8xjww419lcpk0qp6kn"; 21 + sha256 = "0mr2nll81ki9d1s68klhm19jmr15450wjaws1p0b0y2qqwyrprdh"; 22 22 }; 23 23 24 24 common = { ··· 43 43 ; 44 44 45 45 meta = { 46 - homepage = http://fixounet.free.fr/avidemux/; 46 + homepage = "http://fixounet.free.fr/avidemux/"; 47 47 description = "Free video editor designed for simple video editing tasks"; 48 48 maintainers = with stdenv.lib.maintainers; [ viric abbradar ]; 49 49 platforms = with stdenv.lib.platforms; linux;
+12 -12
pkgs/applications/video/avidemux/dynamic_install_dir.patch
··· 1 - diff -ru3 avidemux_2.6.12.old/avidemux_core/ADM_core/src/ADM_fileio.cpp avidemux_2.6.12/avidemux_core/ADM_core/src/ADM_fileio.cpp 2 - --- avidemux_2.6.12.old/avidemux_core/ADM_core/src/ADM_fileio.cpp 2016-03-25 15:26:00.368213627 +0300 3 - +++ avidemux_2.6.12/avidemux_core/ADM_core/src/ADM_fileio.cpp 2016-03-26 02:32:56.163550537 +0300 4 - @@ -393,7 +393,7 @@ 5 - 6 - return ADM_getRelativePath(buffer, base1, base2, base3); 7 - #else 8 - - return ADM_getRelativePath(ADM_INSTALL_DIR, base1, base2, base3); 9 - + return ADM_getRelativePath(getenv("ADM_ROOT_DIR"), base1, base2, base3); 10 - #endif 11 - } 12 - 1 + diff -ru3 avidemux_2.6.15-old/avidemux_core/ADM_core/src/ADM_folder_linux.cpp avidemux_2.6.15/avidemux_core/ADM_core/src/ADM_folder_linux.cpp 2 + --- avidemux_2.6.15-old/avidemux_core/ADM_core/src/ADM_folder_linux.cpp 2016-11-23 02:13:41.406566362 +0300 3 + +++ avidemux_2.6.15/avidemux_core/ADM_core/src/ADM_folder_linux.cpp 2016-11-23 02:14:33.433566147 +0300 4 + @@ -92,7 +92,7 @@ 5 + 6 + char *ADM_getInstallRelativePath(const char *base1, const char *base2, const char *base3) 7 + { 8 + - return ADM_getRelativePath(ADM_INSTALL_DIR, base1, base2, base3); 9 + + return ADM_getRelativePath(getenv("ADM_ROOT_DIR"), base1, base2, base3); 10 + } 11 + const std::string ADM_getI8NDir(const std::string &flavor) 12 + {
+7 -2
pkgs/applications/video/mpv/default.nix
··· 79 79 }; 80 80 in stdenv.mkDerivation rec { 81 81 name = "mpv-${version}"; 82 - version = "0.21.0"; 82 + version = "0.22.0"; 83 83 84 84 src = fetchFromGitHub { 85 85 owner = "mpv-player"; 86 86 repo = "mpv"; 87 87 rev = "v${version}"; 88 - sha256 = "1v1qfppysi0qn40q9z7cx9gs7pcrz2hn1g44iynygvgj29h1gify"; 88 + sha256 = "0mv8fs2zxp6pvpi5xdrpvvqcaa5f0c83jdfi0pfqnwbpkz1kb9s6"; 89 89 }; 90 90 91 91 patchPhase = '' ··· 160 160 --prefix PATH : "${youtube-dl}/bin" \ 161 161 '' + optionalString vapoursynthSupport '' 162 162 --prefix PYTHONPATH : "$(toPythonPath ${vapoursynth}):$PYTHONPATH" 163 + '' + '' 164 + 165 + cp TOOLS/umpv $out/bin 166 + wrapProgram $out/bin/umpv \ 167 + --set MPV "$out/bin/mpv" 163 168 ''; 164 169 165 170 meta = with stdenv.lib; {
+2 -2
pkgs/applications/video/quvi/library.nix
··· 1 - {stdenv, fetchurl, pkgconfig, lua5, curl, quvi_scripts, libproxy, libgcrypt}: 1 + { stdenv, fetchurl, pkgconfig, lua5, curl, quvi_scripts, libproxy, libgcrypt, glib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "libquvi-${version}"; ··· 9 9 sha256 = "1cl1kbgxl1jnx2nwx4z90l0lap09lnnj1fg7hxsxk3m6aj4y4grd"; 10 10 }; 11 11 12 - buildInputs = [ pkgconfig lua5 curl quvi_scripts libproxy libgcrypt ]; 12 + buildInputs = [ pkgconfig lua5 curl quvi_scripts libproxy libgcrypt glib ]; 13 13 14 14 meta = { 15 15 description = "Web video downloader";
+7 -2
pkgs/applications/virtualization/qemu/default.nix
··· 1 1 { stdenv, fetchurl, fetchpatch, python2, zlib, pkgconfig, glib 2 2 , ncurses, perl, pixman, vde2, alsaLib, texinfo, libuuid, flex 3 - , bison, lzo, snappy, libaio, gnutls, nettle 3 + , bison, lzo, snappy, libaio, gnutls, nettle, curl 4 4 , makeWrapper 5 5 , attr, libcap, libcap_ng 6 6 , CoreServices, Cocoa, rez, setfile ··· 32 32 buildInputs = 33 33 [ python2 zlib pkgconfig glib ncurses perl pixman 34 34 vde2 texinfo libuuid flex bison makeWrapper lzo snappy 35 - gnutls nettle 35 + gnutls nettle curl 36 36 ] 37 37 ++ optionals stdenv.isDarwin [ CoreServices Cocoa rez setfile ] 38 38 ++ optionals seccompSupport [ libseccomp ] ··· 122 122 name = "qemu-CVE-2016-8668.patch"; 123 123 url = "http://git.qemu.org/?p=qemu.git;a=patch;h=8caed3d564672e8bc6d2e4c6a35228afd01f4723"; 124 124 sha256 = "19sq6fh7nh8wrk52skky4vwm80029lhm093g11f539krmzjgipik"; 125 + }) 126 + (fetchpatch { 127 + name = "qemu-CVE-2016-7907.patch"; 128 + url = "http://git.qemu.org/?p=qemu.git;a=patch;h=070c4b92b8cd5390889716677a0b92444d6e087a"; 129 + sha256 = "0in89697r6kwkf302v3cg16390q7qs33n2b4kba26m4x65632dxm"; 125 130 }) 126 131 127 132 # FIXME: Fix for CVE-2016-9101 not yet ready: https://lists.gnu.org/archive/html/qemu-devel/2016-10/msg03024.html
+5 -4
pkgs/applications/window-managers/windowmaker/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "windowmaker-${version}"; 7 - version = "0.95.6"; 7 + version = "0.95.7"; 8 8 srcName = "WindowMaker-${version}"; 9 9 10 10 src = fetchurl { 11 11 url = "http://windowmaker.org/pub/source/release/${srcName}.tar.gz"; 12 - sha256 = "1i3dw1yagsa3rs9x2na2ynqlgmbahayws0kz4vl00fla6550nns3"; 12 + sha256 = "1acph0nq6fsb452sl7j7a7kcc87zqqaw7qms1p8ijar19dn4hbc4"; 13 13 }; 14 14 15 - buildInputs = [ pkgconfig 16 - libX11 libXext libXft libXmu libXinerama libXrandr libXpm 15 + nativeBuildInputs = [ pkgconfig ]; 16 + 17 + buildInputs = [ libX11 libXext libXft libXmu libXinerama libXrandr libXpm 17 18 imagemagick libpng libjpeg libexif libtiff libungif libwebp ]; 18 19 19 20 configureFlags = [
+1 -1
pkgs/applications/window-managers/xmonad-log-applet/default.nix
··· 33 33 patches = [ ./fix-paths.patch ]; 34 34 35 35 meta = with stdenv.lib; { 36 - homepage = http://github.com/alexkay/xmonad-log-applet; 36 + homepage = "http://github.com/alexkay/xmonad-log-applet"; 37 37 license = licenses.bsd3; 38 38 description = "An applet that will display XMonad log information (${desktopSupport} version)"; 39 39 platforms = platforms.linux;
+2 -2
pkgs/build-support/docker/default.nix
··· 247 247 echo "Adding contents..." 248 248 for item in $contents; do 249 249 echo "Adding $item" 250 - rsync -a $item/ layer/ 250 + rsync -ak $item/ layer/ 251 251 done 252 252 else 253 253 echo "No contents to add to layer." ··· 310 310 echo "Adding contents..." 311 311 for item in ${toString contents}; do 312 312 echo "Adding $item..." 313 - rsync -a $item/ layer/ 313 + rsync -ak $item/ layer/ 314 314 done 315 315 ''; 316 316
+7 -3
pkgs/data/fonts/xits-math/default.nix
··· 1 - { stdenv, fetchFromGitHub }: 1 + { stdenv, fetchFromGitHub, python2Packages, fontforge }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "xits-math-${version}"; ··· 11 11 sha256 = "08nn676c41a7gmmhrzi8mm0g74z8aiaafjk48pqcwxvjj9av7xjg"; 12 12 }; 13 13 14 - phases = [ "unpackPhase" "installPhase" ]; 14 + nativeBuildInputs = [ fontforge ] ++ (with python2Packages; [ python fonttools ]); 15 + 16 + postPatch = '' 17 + rm *.otf 18 + ''; 15 19 16 20 installPhase = '' 17 21 mkdir -p $out/share/fonts/opentype ··· 19 23 ''; 20 24 21 25 meta = with stdenv.lib; { 22 - homepage = https://github.com/khaledhosny/xits-math; 26 + homepage = "https://github.com/khaledhosny/xits-math"; 23 27 description = "OpenType implementation of STIX fonts with math support"; 24 28 license = licenses.ofl; 25 29 platforms = platforms.all;
+1 -1
pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix
··· 40 40 homepage = https://wiki.gnome.org/action/show/Apps/Calculator; 41 41 description = "Application that solves mathematical equations and is suitable as a default application in a Desktop environment"; 42 42 maintainers = gnome3.maintainers; 43 - license = licenses.gpl2; 43 + license = licenses.gpl3; 44 44 platforms = platforms.linux; 45 45 }; 46 46 }
+1 -1
pkgs/desktops/gnome-3/3.22/core/gnome-calculator/default.nix
··· 20 20 homepage = https://wiki.gnome.org/action/show/Apps/Calculator; 21 21 description = "Application that solves mathematical equations and is suitable as a default application in a Desktop environment"; 22 22 maintainers = gnome3.maintainers; 23 - license = licenses.gpl2; 23 + license = licenses.gpl3; 24 24 platforms = platforms.linux; 25 25 }; 26 26 }
+1 -1
pkgs/desktops/gnome-3/3.22/games/gnome-mines/default.nix
··· 13 13 homepage = https://wiki.gnome.org/Apps/Mines; 14 14 description = "Clear hidden mines from a minefield"; 15 15 maintainers = gnome3.maintainers; 16 - license = licenses.gpl2; 16 + license = licenses.gpl3; 17 17 platforms = platforms.linux; 18 18 }; 19 19 }
+3 -3
pkgs/development/compilers/ats2/default.nix
··· 3 3 , withContrib ? true }: 4 4 5 5 let 6 - versionPkg = "0.2.11" ; 6 + versionPkg = "0.2.12" ; 7 7 8 8 contrib = fetchurl { 9 9 url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-contrib-${versionPkg}.tgz" ; 10 - sha256 = "0kc4nx1904745c1rkj9yfbayidw7rks1mwq0lxmvsgghn98dxwjn" ; 10 + sha256 = "16jzabmwq5yz72dzlkc2hmvf2lan83gayn21gbl65jgpwdsbh170" ; 11 11 }; 12 12 13 13 postInstallContrib = stdenv.lib.optionalString withContrib ··· 31 31 32 32 src = fetchurl { 33 33 url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz"; 34 - sha256 = "140xy129fr11bdf4bj6qya9mf0fhnv2x7ksb9j46pf2yzrsrks8g"; 34 + sha256 = "0m8gmm1pnklixxw76yjjqqqixm2cyp91rnq4sj1k29qp4k9zxpl4"; 35 35 }; 36 36 37 37 buildInputs = [ gmp ];
+15 -15
pkgs/development/compilers/ats2/installed-lib-directory-version.patch
··· 1 1 Change the name of the library directory to match the version of the package. 2 2 3 - diff -Naur ATS2-Postiats-0.2.11/configure postiats-new/configure 4 - --- ATS2-Postiats-0.2.11/configure 2016-10-13 12:03:20.000000000 -0400 3 + diff -Naur ATS2-Postiats-0.2.12/configure postiats-new/configure 4 + --- ATS2-Postiats-0.2.12/configure 2016-10-13 12:03:20.000000000 -0400 5 5 +++ postiats-new/configure 2016-10-23 20:17:29.912579618 -0400 6 6 @@ -1,6 +1,6 @@ 7 7 #! /bin/sh 8 8 # Guess values for system-dependent variables and create Makefiles. 9 9 -# Generated by GNU Autoconf 2.69 for ATS2/Postiats 0.2.10. 10 - +# Generated by GNU Autoconf 2.69 for ATS2/Postiats 0.2.11. 10 + +# Generated by GNU Autoconf 2.69 for ATS2/Postiats 0.2.12. 11 11 # 12 12 # Report bugs to <gmpostiats@gmail.com>. 13 13 # ··· 17 17 PACKAGE_TARNAME='ats2-postiats' 18 18 -PACKAGE_VERSION='0.2.10' 19 19 -PACKAGE_STRING='ATS2/Postiats 0.2.10' 20 - +PACKAGE_VERSION='0.2.11' 21 - +PACKAGE_STRING='ATS2/Postiats 0.2.11' 20 + +PACKAGE_VERSION='0.2.12' 21 + +PACKAGE_STRING='ATS2/Postiats 0.2.12' 22 22 PACKAGE_BUGREPORT='gmpostiats@gmail.com' 23 23 PACKAGE_URL='' 24 24 ··· 27 27 # This message is too long to be a string in the A/UX 3.1 sh. 28 28 cat <<_ACEOF 29 29 -\`configure' configures ATS2/Postiats 0.2.10 to adapt to many kinds of systems. 30 - +\`configure' configures ATS2/Postiats 0.2.11 to adapt to many kinds of systems. 30 + +\`configure' configures ATS2/Postiats 0.2.12 to adapt to many kinds of systems. 31 31 32 32 Usage: $0 [OPTION]... [VAR=VALUE]... 33 33 ··· 36 36 if test -n "$ac_init_help"; then 37 37 case $ac_init_help in 38 38 - short | recursive ) echo "Configuration of ATS2/Postiats 0.2.10:";; 39 - + short | recursive ) echo "Configuration of ATS2/Postiats 0.2.11:";; 39 + + short | recursive ) echo "Configuration of ATS2/Postiats 0.2.12:";; 40 40 esac 41 41 cat <<\_ACEOF 42 42 ··· 45 45 if $ac_init_version; then 46 46 cat <<\_ACEOF 47 47 -ATS2/Postiats configure 0.2.10 48 - +ATS2/Postiats configure 0.2.11 48 + +ATS2/Postiats configure 0.2.12 49 49 generated by GNU Autoconf 2.69 50 50 51 51 Copyright (C) 2012 Free Software Foundation, Inc. ··· 54 54 running configure, to aid debugging if configure makes a mistake. 55 55 56 56 -It was created by ATS2/Postiats $as_me 0.2.10, which was 57 - +It was created by ATS2/Postiats $as_me 0.2.11, which was 57 + +It was created by ATS2/Postiats $as_me 0.2.12, which was 58 58 generated by GNU Autoconf 2.69. Invocation command line was 59 59 60 60 $ $0 $@ ··· 63 63 # values after options handling. 64 64 ac_log=" 65 65 -This file was extended by ATS2/Postiats $as_me 0.2.10, which was 66 - +This file was extended by ATS2/Postiats $as_me 0.2.11, which was 66 + +This file was extended by ATS2/Postiats $as_me 0.2.12, which was 67 67 generated by GNU Autoconf 2.69. Invocation command line was 68 68 69 69 CONFIG_FILES = $CONFIG_FILES ··· 72 72 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" 73 73 ac_cs_version="\\ 74 74 -ATS2/Postiats config.status 0.2.10 75 - +ATS2/Postiats config.status 0.2.11 75 + +ATS2/Postiats config.status 0.2.12 76 76 configured by $0, generated by GNU Autoconf 2.69, 77 77 with options \\"\$ac_cs_config\\" 78 78 79 - diff -Naur ATS2-Postiats-0.2.11/src/CBOOT/config.h postiats-new/src/CBOOT/config.h 80 - --- ATS2-Postiats-0.2.11/src/CBOOT/config.h 2016-10-13 12:03:20.000000000 -0400 79 + diff -Naur ATS2-Postiats-0.2.12/src/CBOOT/config.h postiats-new/src/CBOOT/config.h 80 + --- ATS2-Postiats-0.2.12/src/CBOOT/config.h 2016-10-13 12:03:20.000000000 -0400 81 81 +++ postiats-new/src/CBOOT/config.h 2016-10-23 20:16:34.613836556 -0400 82 82 @@ -44,7 +44,7 @@ 83 83 #define PACKAGE_NAME "ATS2/Postiats" 84 84 85 85 /* Define to the full name and version of this package. */ 86 86 -#define PACKAGE_STRING "ATS2/Postiats 0.2.10" 87 - +#define PACKAGE_STRING "ATS2/Postiats 0.2.11" 87 + +#define PACKAGE_STRING "ATS2/Postiats 0.2.12" 88 88 89 89 /* Define to the one symbol short name of this package. */ 90 90 #define PACKAGE_TARNAME "ats2-postiats" ··· 93 93 94 94 /* Define to the version of this package. */ 95 95 -#define PACKAGE_VERSION "0.2.10" 96 - +#define PACKAGE_VERSION "0.2.11" 96 + +#define PACKAGE_VERSION "0.2.12" 97 97 98 98 /* The size of `void*', as computed by sizeof. */ 99 99 #define SIZEOF_VOIDP 8
+5 -5
pkgs/development/compilers/yosys/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "yosys-${version}"; 5 - version = "2016.08.18"; 5 + version = "2016.11.25"; 6 6 7 7 srcs = [ 8 8 (fetchFromGitHub { 9 9 owner = "cliffordwolf"; 10 10 repo = "yosys"; 11 - rev = "9b8e06bee177f53c34a9dd6dd907a822f21659be"; 12 - sha256 = "0x5c1bcayahn7pbgycxkxr6lkv9m0jpwfdlmyp2m9yzm2lpyw7dg"; 11 + rev = "5c2c78e2dd12a860f830dafd73fbed8edf1a3823"; 12 + sha256 = "1cvfkg0hllp7k2g52mxczd8d0ad7inlpkg27rrbyani2kg0066bk"; 13 13 name = "yosys"; 14 14 }) 15 15 (fetchFromBitbucket { 16 16 owner = "alanmi"; 17 17 repo = "abc"; 18 - rev = "a2e5bc66a68a"; 19 - sha256 = "09yvhj53af91nc54gmy7cbp7yljfcyj68a87494r5xvdfnsj11gy"; 18 + rev = "238674cd44f2"; 19 + sha256 = "18xk7lqai05am11zymixilgam4jvz5f2jwy9cgillz035man2yzw"; 20 20 name = "yosys-abc"; 21 21 }) 22 22 ];
+9 -1
pkgs/development/haskell-modules/configuration-common.nix
··· 144 144 groupoids = dontHaddock super.groupoids; 145 145 hamlet = dontHaddock super.hamlet; 146 146 HaXml = dontHaddock super.HaXml; 147 - HDBC-odbc = dontHaddock super.HDBC-odbc; 148 147 hoodle-core = dontHaddock super.hoodle-core; 149 148 hsc3-db = dontHaddock super.hsc3-db; 150 149 http-client-conduit = dontHaddock super.http-client-conduit; ··· 1066 1065 1067 1066 # https://github.com/roelvandijk/terminal-progress-bar/issues/13 1068 1067 terminal-progress-bar = doJailbreak super.terminal-progress-bar; 1068 + 1069 + # https://github.com/hdbc/hdbc-odbc/pull/29 1070 + HDBC-odbc = overrideCabal super.HDBC-odbc (old: { 1071 + postPatch = old.postPatch or "" + '' 1072 + sed -e '/data BoundValue =/ { s/$/{/ ; n; n ; s/{ bvVal/ bvVal/ }' \ 1073 + -e 's/-- | This is rather/-- This is rather/' \ 1074 + -i Database/HDBC/ODBC/Statement.hsc 1075 + ''; 1076 + }); 1069 1077 1070 1078 # https://github.com/vshabanov/HsOpenSSL/issues/11 1071 1079 HsOpenSSL = doJailbreak super.HsOpenSSL;
+21 -19
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 37 37 - ghcjs-base-0 38 38 39 39 default-package-overrides: 40 - # LTS Haskell 7.9 40 + # LTS Haskell 7.10 41 41 - abstract-deque ==0.3 42 42 - abstract-par ==0.3.3 43 43 - AC-Vector ==2.3.2 ··· 155 155 - asn1-encoding ==0.9.4 156 156 - asn1-parse ==0.9.4 157 157 - asn1-types ==0.3.2 158 - - async ==2.1.0 158 + - async ==2.1.1 159 159 - async-dejafu ==0.1.3.0 160 160 - atndapi ==0.1.1.0 161 161 - atom-conduit ==0.3.1.2 ··· 286 286 - cereal-conduit ==0.7.3 287 287 - cereal-text ==0.1.0.2 288 288 - cereal-vector ==0.2.0.1 289 - - cgi ==3001.3.0.1 289 + - cgi ==3001.3.0.2 290 290 - ChannelT ==0.0.0.2 291 291 - charset ==0.3.7.1 292 292 - charsetdetect-ae ==1.1.0.1 ··· 314 314 - clash-systemverilog ==0.6.10 315 315 - clash-verilog ==0.6.10 316 316 - clash-vhdl ==0.6.16 317 - - classy-prelude ==1.0.0.2 318 - - classy-prelude-conduit ==1.0.0 319 - - classy-prelude-yesod ==1.0.0 317 + - classy-prelude ==1.0.1 318 + - classy-prelude-conduit ==1.0.1 319 + - classy-prelude-yesod ==1.0.1 320 320 - clay ==0.11 321 321 - clckwrks ==0.23.19.2 322 322 - clckwrks-cli ==0.2.16 ··· 330 330 - clumpiness ==0.17.0.0 331 331 - ClustalParser ==1.1.4 332 332 - clustering ==0.2.1 333 - - cmark ==0.5.3.1 333 + - cmark ==0.5.4 334 334 - cmark-highlight ==0.2.0.0 335 335 - cmark-lucid ==0.1.0.0 336 336 - cmdargs ==0.10.14 ··· 351 351 - concurrent-output ==1.7.7 352 352 - concurrent-supply ==0.1.8 353 353 - conduit ==1.2.8 354 - - conduit-combinators ==1.0.8.1 354 + - conduit-combinators ==1.0.8.2 355 355 - conduit-extra ==1.1.15 356 356 - conduit-iconv ==0.1.1.1 357 357 - conduit-parse ==0.1.2.0 ··· 853 853 - hjsonpointer ==1.0.0.2 854 854 - hjsonschema ==1.1.0.1 855 855 - hledger ==1.0.1 856 - - hledger-interest ==1.5 856 + - hledger-interest ==1.5.1 857 857 - hledger-lib ==1.0.1 858 858 - hlibgit2 ==0.18.0.15 859 859 - hlibsass ==0.1.5.0 ··· 941 941 - http-common ==0.8.2.0 942 942 - http-conduit ==2.1.11 943 943 - http-date ==0.0.6.1 944 - - http-link-header ==1.0.2 944 + - http-link-header ==1.0.3 945 945 - http-media ==0.6.4 946 946 - http-reverse-proxy ==0.4.3.2 947 947 - http-streams ==0.8.4.0 ··· 998 998 - intero ==0.1.19 999 999 - interpolate ==0.1.0 1000 1000 - interpolatedstring-perl6 ==1.0.0 1001 - - IntervalMap ==0.5.1.1 1001 + - IntervalMap ==0.5.2.0 1002 1002 - intervals ==0.7.2 1003 1003 - invariant ==0.4 1004 1004 - io-choice ==0.0.6 ··· 1118 1118 - makefile ==0.1.0.5 1119 1119 - managed ==1.0.5 1120 1120 - mandrill ==0.5.2.3 1121 - - markdown ==0.1.15 1121 + - markdown ==0.1.16 1122 1122 - markdown-unlit ==0.4.0 1123 1123 - markup ==3.1.0 1124 1124 - math-functions ==0.2.0.2 ··· 1152 1152 - missing-foreign ==0.1.1 1153 1153 - MissingH ==1.4.0.1 1154 1154 - mmap ==0.5.9 1155 - - mmorph ==1.0.6 1155 + - mmorph ==1.0.9 1156 1156 - mockery ==0.3.4 1157 1157 - modify-fasta ==0.8.2.1 1158 1158 - moesocks ==1.0.0.41 ··· 1266 1266 - openpgp-asciiarmor ==0.1 1267 1267 - opensource ==0.1.0.0 1268 1268 - openssl-streams ==1.2.1.0 1269 - - operational ==0.2.3.4 1269 + - operational ==0.2.3.5 1270 1270 - operational-class ==0.3.0.0 1271 1271 - opml-conduit ==0.5.0.1 1272 1272 - optional-args ==1.0.1 ··· 1508 1508 - sampling ==0.2.0 1509 1509 - sandi ==0.4.0 1510 1510 - sandman ==0.2.0.1 1511 + - say ==0.1.0.0 1511 1512 - sbv ==5.12 1512 1513 - scalpel ==0.3.1 1513 1514 - scanner ==0.2 ··· 1558 1559 - SHA ==1.6.4.2 1559 1560 - shake ==0.15.10 1560 1561 - shake-language-c ==0.10.0 1561 - - shakespeare ==2.0.11.1 1562 + - shakespeare ==2.0.11.2 1562 1563 - shell-conduit ==4.5.2 1563 1564 - shelly ==1.6.8.1 1564 1565 - shortcut-links ==0.4.2.0 ··· 1615 1616 - spool ==0.1 1616 1617 - spoon ==0.3.1 1617 1618 - sql-words ==0.1.4.1 1618 - - sqlite-simple ==0.4.9.0 1619 + - sqlite-simple ==0.4.10.0 1619 1620 - srcloc ==0.5.1.0 1620 1621 - stache ==0.1.8 1621 1622 - stack-run-auto ==0.1.1.4 ··· 1710 1711 - terminal-progress-bar ==0.0.1.4 1711 1712 - terminal-size ==0.3.2.1 1712 1713 - terminfo ==0.4.0.2 1713 - - test-fixture ==0.4.1.0 1714 + - test-fixture ==0.4.2.0 1714 1715 - test-framework ==0.8.1.1 1715 1716 - test-framework-hunit ==0.3.0.2 1716 1717 - test-framework-quickcheck2 ==0.3.0.3 1717 1718 - test-framework-smallcheck ==0.2 1718 1719 - test-framework-th ==0.2.4 1719 - - test-simple ==0.1.8 1720 + - test-simple ==0.1.9 1720 1721 - testing-feat ==0.4.0.3 1721 1722 - texmath ==0.8.6.7 1722 1723 - text ==1.2.2.1 ··· 1743 1744 - th-printf ==0.3.1 1744 1745 - th-reify-compat ==0.0.1.1 1745 1746 - th-reify-many ==0.1.6 1747 + - th-to-exp ==0.0.1.0 1746 1748 - th-utilities ==0.2.0.1 1747 1749 - these ==0.7.2 1748 1750 - threads ==0.5.1.4 ··· 1973 1975 - yesod-eventsource ==1.4.0.1 1974 1976 - yesod-fay ==0.8.0 1975 1977 - yesod-fb ==0.3.4 1976 - - yesod-form ==1.4.8 1978 + - yesod-form ==1.4.9 1977 1979 - yesod-form-richtext ==0.1.0.0 1978 1980 - yesod-gitrepo ==0.2.1.0 1979 1981 - yesod-gitrev ==0.1.0.0
+359 -486
pkgs/development/haskell-modules/hackage-packages.nix
··· 9697 9697 ({ mkDerivation, base, Cabal, containers, deepseq, QuickCheck }: 9698 9698 mkDerivation { 9699 9699 pname = "IntervalMap"; 9700 - version = "0.5.1.1"; 9701 - sha256 = "5a3324a4a98f2b15f871db98e2b2fe4a0f65d9de776314b955f30d4c1eda32ab"; 9700 + version = "0.5.2.0"; 9701 + sha256 = "031a491ae40c333a3227d147aae9ace42f2f4b535fcbbb991c6b4f35a1531684"; 9702 9702 libraryHaskellDepends = [ base containers deepseq ]; 9703 9703 testHaskellDepends = [ base Cabal containers deepseq QuickCheck ]; 9704 9704 homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; ··· 24408 24408 24409 24409 "amby" = callPackage 24410 24410 ({ mkDerivation, base, Chart, Chart-cairo, Chart-diagrams, colour 24411 - , data-default, data-default-class, either, exceptions, microlens 24412 - , mtl, pretty-display, process, safe, scientific, statistics 24413 - , vector 24411 + , data-default, data-default-class, doctest, either, exceptions 24412 + , lens, mtl, mwc-random, pretty-display, process, safe, scientific 24413 + , statistics, tasty, tasty-hunit, vector, vector-algorithms 24414 24414 }: 24415 24415 mkDerivation { 24416 24416 pname = "amby"; 24417 - version = "0.2.1"; 24418 - sha256 = "2430c8d5657af53a4bcc6d7856882375f0ffbcb7c360a2b8fd23cda6e2d33ffa"; 24419 - revision = "1"; 24420 - editedCabalFile = "0cf317eee0251e20650218b1f54fa76513536336ad033385510b9641837ad7be"; 24421 - isLibrary = true; 24422 - isExecutable = true; 24417 + version = "0.3.1"; 24418 + sha256 = "c13b92e077e577df6e34da03bd267f9e9c29a0f3345e6935915aabf8a3b3fda5"; 24423 24419 libraryHaskellDepends = [ 24424 24420 base Chart Chart-cairo Chart-diagrams colour data-default 24425 - data-default-class either exceptions microlens mtl pretty-display 24426 - process safe scientific statistics vector 24421 + data-default-class either exceptions lens mtl mwc-random 24422 + pretty-display process safe scientific statistics vector 24423 + vector-algorithms 24427 24424 ]; 24428 - executableHaskellDepends = [ base ]; 24429 - testHaskellDepends = [ base ]; 24425 + testHaskellDepends = [ base doctest tasty tasty-hunit vector ]; 24430 24426 homepage = "https://github.com/jsermeno/amby#readme"; 24431 24427 description = "Statistical data visualization"; 24432 24428 license = stdenv.lib.licenses.bsd3; ··· 24520 24516 }: 24521 24517 mkDerivation { 24522 24518 pname = "amqp-worker"; 24523 - version = "0.2.1"; 24524 - sha256 = "f3b89e4286f84b4d1029d4750184831b2fcb5f194446fb1b1d938824abcf08a4"; 24519 + version = "0.2.2"; 24520 + sha256 = "4d45b13eb6d58763f7da1d058ebca6163e37775c25898869811c684719d975e4"; 24525 24521 libraryHaskellDepends = [ 24526 24522 aeson amqp base bytestring data-default exceptions monad-control 24527 24523 mtl resource-pool split text transformers-base ··· 27009 27005 }: 27010 27006 mkDerivation { 27011 27007 pname = "async"; 27012 - version = "2.1.0"; 27013 - sha256 = "93c37611f9c68b5cdc8cd9960ae77a7fbc25da83cae90137ef1378d857f22c2f"; 27014 - libraryHaskellDepends = [ base stm ]; 27015 - testHaskellDepends = [ 27016 - base HUnit test-framework test-framework-hunit 27017 - ]; 27018 - homepage = "https://github.com/simonmar/async"; 27019 - description = "Run IO operations asynchronously and wait for their results"; 27020 - license = stdenv.lib.licenses.bsd3; 27021 - }) {}; 27022 - 27023 - "async_2_1_1" = callPackage 27024 - ({ mkDerivation, base, HUnit, stm, test-framework 27025 - , test-framework-hunit 27026 - }: 27027 - mkDerivation { 27028 - pname = "async"; 27029 27008 version = "2.1.1"; 27030 27009 sha256 = "24134b36921f9874abb73be90886b4c23a67a9b4990f2d8e32d08dbfa5f74f90"; 27031 27010 libraryHaskellDepends = [ base stm ]; ··· 27035 27014 homepage = "https://github.com/simonmar/async"; 27036 27015 description = "Run IO operations asynchronously and wait for their results"; 27037 27016 license = stdenv.lib.licenses.bsd3; 27038 - hydraPlatforms = stdenv.lib.platforms.none; 27039 27017 }) {}; 27040 27018 27041 27019 "async-ajax" = callPackage ··· 30383 30361 ({ mkDerivation, attoparsec, base, bytestring, time }: 30384 30362 mkDerivation { 30385 30363 pname = "bgmax"; 30386 - version = "0.2.0.0"; 30387 - sha256 = "439458c5caab3657ce8ba8dc075097a905b4cb83f07c4a6846a248f9432ff7b8"; 30364 + version = "0.2.0.1"; 30365 + sha256 = "2e8abcb38c557c256d871f5df7566d02e74741bec24d86d2a65c97d6c1dc3b40"; 30388 30366 libraryHaskellDepends = [ attoparsec base bytestring time ]; 30389 30367 homepage = "http://github.com/jonpetterbergman/bgmax"; 30390 30368 description = "Parse BgMax-files"; ··· 37542 37520 }: 37543 37521 mkDerivation { 37544 37522 pname = "casadi-bindings"; 37545 - version = "3.1.0.1"; 37546 - sha256 = "d1ea0a6ebb07b3bdc7ac50ccf3300888b0c4d48d53640593e2748e3e1433ead4"; 37523 + version = "3.1.0.2"; 37524 + sha256 = "c137dece9554219a980a74f0aaa3d44c13f83b6312c8802f4766702250514a95"; 37547 37525 libraryHaskellDepends = [ 37548 37526 base binary casadi-bindings-core casadi-bindings-internal cereal 37549 37527 containers linear spatial-math vector vector-binary-instances ··· 38793 38771 }: 38794 38772 mkDerivation { 38795 38773 pname = "cgi"; 38796 - version = "3001.3.0.1"; 38797 - sha256 = "96859110c72904089d8b3ac5fe493ac6f47aeafd1b30ffd1efce649442cc4752"; 38798 - libraryHaskellDepends = [ 38799 - base bytestring containers exceptions mtl multipart network 38800 - network-uri parsec time xhtml 38801 - ]; 38802 - testHaskellDepends = [ base doctest QuickCheck ]; 38803 - homepage = "https://github.com/cheecheeo/haskell-cgi"; 38804 - description = "A library for writing CGI programs"; 38805 - license = stdenv.lib.licenses.bsd3; 38806 - }) {}; 38807 - 38808 - "cgi_3001_3_0_2" = callPackage 38809 - ({ mkDerivation, base, bytestring, containers, doctest, exceptions 38810 - , mtl, multipart, network, network-uri, parsec, QuickCheck, time 38811 - , xhtml 38812 - }: 38813 - mkDerivation { 38814 - pname = "cgi"; 38815 38774 version = "3001.3.0.2"; 38816 38775 sha256 = "92111387216c4941271a833a1214d61ad21aaf3337ae48ea6d99d4a035bd77c1"; 38817 38776 libraryHaskellDepends = [ ··· 38822 38781 homepage = "https://github.com/cheecheeo/haskell-cgi"; 38823 38782 description = "A library for writing CGI programs"; 38824 38783 license = stdenv.lib.licenses.bsd3; 38825 - hydraPlatforms = stdenv.lib.platforms.none; 38826 38784 }) {}; 38827 38785 38828 38786 "cgi-undecidable" = callPackage ··· 40398 40356 , chunked-data, containers, deepseq, dlist, exceptions, ghc-prim 40399 40357 , hashable, hspec, lifted-async, lifted-base, monad-unlift 40400 40358 , mono-traversable, mono-traversable-instances, mtl 40401 - , mutable-containers, primitive, QuickCheck, safe-exceptions 40402 - , semigroups, stm, text, time, time-locale-compat, transformers 40403 - , transformers-base, unordered-containers, vector, vector-instances 40404 - }: 40405 - mkDerivation { 40406 - pname = "classy-prelude"; 40407 - version = "1.0.0.2"; 40408 - sha256 = "a4fa52c6b571df5cc98c1cebf97b41085104a17b2e23c2221cd2061ec7a9c262"; 40409 - libraryHaskellDepends = [ 40410 - async base basic-prelude bifunctors bytestring chunked-data 40411 - containers deepseq dlist exceptions ghc-prim hashable lifted-async 40412 - lifted-base monad-unlift mono-traversable 40413 - mono-traversable-instances mtl mutable-containers primitive 40414 - safe-exceptions semigroups stm text time time-locale-compat 40415 - transformers transformers-base unordered-containers vector 40416 - vector-instances 40417 - ]; 40418 - testHaskellDepends = [ 40419 - base containers hspec QuickCheck transformers unordered-containers 40420 - ]; 40421 - homepage = "https://github.com/snoyberg/mono-traversable"; 40422 - description = "A typeclass-based Prelude"; 40423 - license = stdenv.lib.licenses.mit; 40424 - hydraPlatforms = stdenv.lib.platforms.none; 40425 - }) {}; 40426 - 40427 - "classy-prelude_1_0_1" = callPackage 40428 - ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring 40429 - , chunked-data, containers, deepseq, dlist, exceptions, ghc-prim 40430 - , hashable, hspec, lifted-async, lifted-base, monad-unlift 40431 - , mono-traversable, mono-traversable-instances, mtl 40432 40359 , mutable-containers, primitive, QuickCheck, safe-exceptions, say 40433 40360 , semigroups, stm, stm-chans, text, time, time-locale-compat 40434 40361 , transformers, transformers-base, unordered-containers, vector ··· 40463 40390 }: 40464 40391 mkDerivation { 40465 40392 pname = "classy-prelude-conduit"; 40466 - version = "1.0.0"; 40467 - sha256 = "248b3a30c6da08400039b5a9485039319e059c52927edf2a1dbcd6a9089da22e"; 40468 - libraryHaskellDepends = [ 40469 - base bytestring classy-prelude conduit conduit-combinators 40470 - monad-control resourcet transformers void 40471 - ]; 40472 - testHaskellDepends = [ 40473 - base bytestring conduit hspec QuickCheck transformers 40474 - ]; 40475 - homepage = "https://github.com/snoyberg/mono-traversable"; 40476 - description = "classy-prelude together with conduit functions"; 40477 - license = stdenv.lib.licenses.mit; 40478 - hydraPlatforms = stdenv.lib.platforms.none; 40479 - }) {}; 40480 - 40481 - "classy-prelude-conduit_1_0_1" = callPackage 40482 - ({ mkDerivation, base, bytestring, classy-prelude, conduit 40483 - , conduit-combinators, hspec, monad-control, QuickCheck, resourcet 40484 - , transformers, void 40485 - }: 40486 - mkDerivation { 40487 - pname = "classy-prelude-conduit"; 40488 40393 version = "1.0.1"; 40489 40394 sha256 = "1307d30366f8827f9226db01895db0b5aa0712aa07abb41754c992ac1fc0006c"; 40490 40395 libraryHaskellDepends = [ ··· 40501 40406 }) {}; 40502 40407 40503 40408 "classy-prelude-yesod" = callPackage 40504 - ({ mkDerivation, aeson, base, classy-prelude 40505 - , classy-prelude-conduit, data-default, http-conduit, http-types 40506 - , persistent, yesod, yesod-newsfeed, yesod-static 40507 - }: 40508 - mkDerivation { 40509 - pname = "classy-prelude-yesod"; 40510 - version = "1.0.0"; 40511 - sha256 = "12ac3f4b72302cf18a7ebd5a836eb8cfe22729cbcd1f0a723db047c2b80a9ce2"; 40512 - libraryHaskellDepends = [ 40513 - aeson base classy-prelude classy-prelude-conduit data-default 40514 - http-conduit http-types persistent yesod yesod-newsfeed 40515 - yesod-static 40516 - ]; 40517 - homepage = "https://github.com/snoyberg/mono-traversable"; 40518 - description = "Provide a classy prelude including common Yesod functionality"; 40519 - license = stdenv.lib.licenses.mit; 40520 - hydraPlatforms = stdenv.lib.platforms.none; 40521 - }) {}; 40522 - 40523 - "classy-prelude-yesod_1_0_1" = callPackage 40524 40409 ({ mkDerivation, aeson, base, classy-prelude 40525 40410 , classy-prelude-conduit, data-default, http-conduit, http-types 40526 40411 , persistent, yesod, yesod-newsfeed, yesod-static ··· 41392 41277 ({ mkDerivation, base, bytestring, HUnit, text }: 41393 41278 mkDerivation { 41394 41279 pname = "cmark"; 41395 - version = "0.5.3.1"; 41396 - sha256 = "4ae12da7e712d10a662a8323e7bc513daa1abf3ad4d055054b5f19b1122ca124"; 41397 - libraryHaskellDepends = [ base bytestring text ]; 41398 - testHaskellDepends = [ base HUnit text ]; 41399 - homepage = "https://github.com/jgm/commonmark-hs"; 41400 - description = "Fast, accurate CommonMark (Markdown) parser and renderer"; 41401 - license = stdenv.lib.licenses.bsd3; 41402 - }) {}; 41403 - 41404 - "cmark_0_5_4" = callPackage 41405 - ({ mkDerivation, base, bytestring, HUnit, text }: 41406 - mkDerivation { 41407 - pname = "cmark"; 41408 41280 version = "0.5.4"; 41409 41281 sha256 = "06f62f52870103be29c92eabfed84be96b4b38a12c3c0b96dffe61b3a0dfa807"; 41410 41282 libraryHaskellDepends = [ base bytestring text ]; ··· 41412 41284 homepage = "https://github.com/jgm/cmark-hs"; 41413 41285 description = "Fast, accurate CommonMark (Markdown) parser and renderer"; 41414 41286 license = stdenv.lib.licenses.bsd3; 41415 - hydraPlatforms = stdenv.lib.platforms.none; 41416 41287 }) {}; 41417 41288 41418 41289 "cmark-highlight" = callPackage ··· 43147 43018 hydraPlatforms = stdenv.lib.platforms.none; 43148 43019 }) {}; 43149 43020 43021 + "concrete-haskell" = callPackage 43022 + ({ mkDerivation, base, bytestring, hashable, QuickCheck, text 43023 + , thrift, unordered-containers, vector 43024 + }: 43025 + mkDerivation { 43026 + pname = "concrete-haskell"; 43027 + version = "0.1.0.0"; 43028 + sha256 = "68312cbefd0aa617b253c5e4d89dbdd71a394c74dfee9eb20426222fff017e40"; 43029 + libraryHaskellDepends = [ 43030 + base bytestring hashable QuickCheck text thrift 43031 + unordered-containers vector 43032 + ]; 43033 + homepage = "https://github.com/hltcoe"; 43034 + description = "Library for the Concrete data format"; 43035 + license = "GPL"; 43036 + }) {}; 43037 + 43150 43038 "concrete-relaxng-parser" = callPackage 43151 43039 ({ mkDerivation, base, cmdargs, containers, hxt, hxt-charproperties 43152 43040 , hxt-curl, hxt-relaxng, hxt-tagsoup ··· 43587 43475 }: 43588 43476 mkDerivation { 43589 43477 pname = "conduit-combinators"; 43590 - version = "1.0.8.1"; 43591 - sha256 = "cf347790f173dce64ebf7ef1b364686fee2d890bfa38caa9145494a5909a7637"; 43592 - libraryHaskellDepends = [ 43593 - base base16-bytestring base64-bytestring bytestring chunked-data 43594 - conduit conduit-extra filepath monad-control mono-traversable 43595 - mwc-random primitive resourcet text transformers transformers-base 43596 - unix unix-compat vector void 43597 - ]; 43598 - testHaskellDepends = [ 43599 - base base16-bytestring base64-bytestring bytestring chunked-data 43600 - conduit containers directory filepath hspec mono-traversable mtl 43601 - mwc-random QuickCheck safe silently text transformers vector 43602 - ]; 43603 - homepage = "https://github.com/snoyberg/mono-traversable"; 43604 - description = "Commonly used conduit functions, for both chunked and unchunked data"; 43605 - license = stdenv.lib.licenses.mit; 43606 - }) {}; 43607 - 43608 - "conduit-combinators_1_0_8_2" = callPackage 43609 - ({ mkDerivation, base, base16-bytestring, base64-bytestring 43610 - , bytestring, chunked-data, conduit, conduit-extra, containers 43611 - , directory, filepath, hspec, monad-control, mono-traversable, mtl 43612 - , mwc-random, primitive, QuickCheck, resourcet, safe, silently 43613 - , text, transformers, transformers-base, unix, unix-compat, vector 43614 - , void 43615 - }: 43616 - mkDerivation { 43617 - pname = "conduit-combinators"; 43618 43478 version = "1.0.8.2"; 43619 43479 sha256 = "561cd11eef07fd400528e79186c1c57e43583d19e47b4f45216e154687cf5382"; 43620 43480 libraryHaskellDepends = [ ··· 43631 43491 homepage = "https://github.com/snoyberg/mono-traversable"; 43632 43492 description = "Commonly used conduit functions, for both chunked and unchunked data"; 43633 43493 license = stdenv.lib.licenses.mit; 43634 - hydraPlatforms = stdenv.lib.platforms.none; 43635 43494 }) {}; 43636 43495 43637 43496 "conduit-connection" = callPackage ··· 43859 43718 hydraPlatforms = stdenv.lib.platforms.none; 43860 43719 }) {}; 43861 43720 43721 + "config-ini" = callPackage 43722 + ({ mkDerivation, base, directory, ini, megaparsec, QuickCheck, text 43723 + , transformers, unordered-containers 43724 + }: 43725 + mkDerivation { 43726 + pname = "config-ini"; 43727 + version = "0.1.1.0"; 43728 + sha256 = "ef88423e53604474a4e1b2bfb0f0824efed740af25f2b1841577838bc96d10ac"; 43729 + revision = "1"; 43730 + editedCabalFile = "8665338f86052e9963fe0472b0c1e30c865e14f8450d16bc35519bf5e07f2032"; 43731 + libraryHaskellDepends = [ 43732 + base megaparsec text transformers unordered-containers 43733 + ]; 43734 + testHaskellDepends = [ 43735 + base directory ini QuickCheck text unordered-containers 43736 + ]; 43737 + homepage = "https://github.com/aisamanra/config-ini"; 43738 + description = "A library for simple INI-based configuration files"; 43739 + license = stdenv.lib.licenses.bsd3; 43740 + }) {}; 43741 + 43862 43742 "config-manager" = callPackage 43863 43743 ({ mkDerivation, base, directory, filepath, HUnit, parsec 43864 43744 , temporary, test-framework, test-framework-hunit, text, time ··· 46546 46426 license = stdenv.lib.licenses.mit; 46547 46427 }) {}; 46548 46428 46429 + "cron_0_4_2" = callPackage 46430 + ({ mkDerivation, attoparsec, base, generics-sop, mtl, mtl-compat 46431 + , old-locale, quickcheck-instances, semigroups, tasty, tasty-hunit 46432 + , tasty-quickcheck, text, time, transformers-compat 46433 + }: 46434 + mkDerivation { 46435 + pname = "cron"; 46436 + version = "0.4.2"; 46437 + sha256 = "31f186b9237c802260a7c1468e9b81006c086df1d6ad3d0d6ef51d9d2e8d07d3"; 46438 + revision = "1"; 46439 + editedCabalFile = "5f6737e07b84d324ea03dc18096622a49b649c5eb372ef64e504695d442b0bde"; 46440 + libraryHaskellDepends = [ 46441 + attoparsec base mtl mtl-compat old-locale semigroups text time 46442 + ]; 46443 + testHaskellDepends = [ 46444 + attoparsec base generics-sop quickcheck-instances semigroups tasty 46445 + tasty-hunit tasty-quickcheck text time transformers-compat 46446 + ]; 46447 + homepage = "http://github.com/michaelxavier/cron"; 46448 + description = "Cron datatypes and Attoparsec parser"; 46449 + license = stdenv.lib.licenses.mit; 46450 + hydraPlatforms = stdenv.lib.platforms.none; 46451 + }) {}; 46452 + 46549 46453 "cron-compat" = callPackage 46550 46454 ({ mkDerivation, attoparsec, base, cron, derive, hspec 46551 46455 , hspec-expectations, mtl, mtl-compat, old-locale, QuickCheck, text ··· 47169 47073 }: 47170 47074 mkDerivation { 47171 47075 pname = "cryptonite-openssl"; 47172 - version = "0.2"; 47173 - sha256 = "bbf6787c33edb287359fc48802512ab2d5c95b02bd6c1a759d7f9bc157703fcb"; 47174 - libraryHaskellDepends = [ base bytestring memory ]; 47076 + version = "0.3"; 47077 + sha256 = "43c8f8b4259f103be4408734f604c55a0053e60d302890174ba4773828bdee26"; 47078 + libraryHaskellDepends = [ base bytestring cryptonite memory ]; 47175 47079 librarySystemDepends = [ openssl ]; 47176 47080 testHaskellDepends = [ 47177 47081 base bytestring cryptonite tasty tasty-hunit tasty-kat ··· 49334 49238 license = stdenv.lib.licenses.bsd3; 49335 49239 }) {}; 49336 49240 49241 + "data-has" = callPackage 49242 + ({ mkDerivation, base }: 49243 + mkDerivation { 49244 + pname = "data-has"; 49245 + version = "0.1.0.0"; 49246 + sha256 = "8b5b4a68965b8c31ef10cc2ae37e7c4d09ae44ee0790002adb8ccf1ad6a48ab2"; 49247 + libraryHaskellDepends = [ base ]; 49248 + homepage = "https://github.com/winterland1989/data-has"; 49249 + description = "Simple extensible product"; 49250 + license = stdenv.lib.licenses.bsd3; 49251 + }) {}; 49252 + 49337 49253 "data-hash" = callPackage 49338 49254 ({ mkDerivation, array, base, containers, QuickCheck 49339 49255 , test-framework, test-framework-quickcheck2 ··· 52353 52269 pname = "diagrams-boolean"; 52354 52270 version = "0.1.0"; 52355 52271 sha256 = "c0b174cc23e6dc461e6ec6a68797a9552933e7d800e3e66ce85ef1ccf151b69e"; 52272 + revision = "2"; 52273 + editedCabalFile = "49fa3d3493471de57b921c41b986c3537a9cd30cf1f42eb7170a13293c70d596"; 52356 52274 libraryHaskellDepends = [ base cubicbezier diagrams-lib ]; 52357 - description = "boolean operations on Diagrams paths"; 52275 + description = "deprecated, part of diagrams-contrib since 1.4"; 52358 52276 license = stdenv.lib.licenses.bsd3; 52359 52277 hydraPlatforms = stdenv.lib.platforms.none; 52360 52278 }) {}; ··· 53870 53788 hydraPlatforms = stdenv.lib.platforms.none; 53871 53789 }) {}; 53872 53790 53873 - "directory_1_2_7_0" = callPackage 53791 + "directory_1_2_7_1" = callPackage 53874 53792 ({ mkDerivation, base, filepath, time, unix }: 53875 53793 mkDerivation { 53876 53794 pname = "directory"; 53877 - version = "1.2.7.0"; 53878 - sha256 = "4ae59ebd9969f300e579c2b62fb072954a297b2f53fcd5d58bab363535ce7040"; 53795 + version = "1.2.7.1"; 53796 + sha256 = "cf3c0984238ac5bb67706b03f86f823feb50d46092ed6ec6e523b89a1d0836cf"; 53879 53797 libraryHaskellDepends = [ base filepath time unix ]; 53880 53798 testHaskellDepends = [ base filepath time unix ]; 53881 53799 description = "Platform-agnostic library for filesystem operations"; ··· 55275 55193 }) {}; 55276 55194 55277 55195 "dom-parser" = callPackage 55278 - ({ mkDerivation, base, data-default, hspec, lens, mtl, semigroups 55279 - , shakespeare, text, transformers, xml-conduit 55196 + ({ mkDerivation, base, data-default, hspec, lens, mtl, open-union 55197 + , semigroups, shakespeare, text, transformers, type-fun 55198 + , xml-conduit, xml-lens 55280 55199 }: 55281 55200 mkDerivation { 55282 55201 pname = "dom-parser"; 55283 - version = "0.0.1"; 55284 - sha256 = "5ade4315c5e59bfbaf1e078a1171c6f3109d4f3bd3c394d7ef923140e253f86b"; 55285 - revision = "1"; 55286 - editedCabalFile = "1157c5f603c43f5a4bd0ea7f45da822b989db065324bbecb2e14659473eb766f"; 55202 + version = "0.1.1"; 55203 + sha256 = "e001c486adb3b2c6c6ab18e70205dc759ea018b6db084f8668bb424b623e4e03"; 55287 55204 libraryHaskellDepends = [ 55288 - base lens mtl semigroups shakespeare text transformers xml-conduit 55205 + base lens mtl open-union semigroups shakespeare text transformers 55206 + type-fun xml-conduit xml-lens 55289 55207 ]; 55290 55208 testHaskellDepends = [ 55291 - base data-default hspec shakespeare text xml-conduit 55209 + base data-default hspec lens semigroups shakespeare text 55210 + xml-conduit 55292 55211 ]; 55293 - homepage = "https://github.com/s9gf4ult/dom-parser"; 55294 - description = "Simple monad for parsing DOM"; 55295 - license = stdenv.lib.licenses.bsd3; 55212 + description = "Simple monadic DOM parser"; 55213 + license = stdenv.lib.licenses.mit; 55296 55214 }) {}; 55297 55215 55298 55216 "dom-selector" = callPackage ··· 55891 55809 homepage = "https://github.com/yamadapc/haskell-drawille"; 55892 55810 description = "A port of asciimoo's drawille to haskell"; 55893 55811 license = stdenv.lib.licenses.gpl3; 55812 + }) {}; 55813 + 55814 + "drawille_0_1_2_0" = callPackage 55815 + ({ mkDerivation, base, containers, hspec, QuickCheck }: 55816 + mkDerivation { 55817 + pname = "drawille"; 55818 + version = "0.1.2.0"; 55819 + sha256 = "b8188ee87a06c168974c9655188450eb86c331c556decb31cf084efa846237df"; 55820 + libraryHaskellDepends = [ base containers ]; 55821 + testHaskellDepends = [ base containers hspec QuickCheck ]; 55822 + homepage = "https://github.com/yamadapc/haskell-drawille#readme"; 55823 + description = "A port of asciimoo's drawille to haskell"; 55824 + license = stdenv.lib.licenses.gpl3; 55825 + hydraPlatforms = stdenv.lib.platforms.none; 55894 55826 }) {}; 55895 55827 55896 55828 "dresdner-verkehrsbetriebe" = callPackage ··· 57768 57700 ({ mkDerivation, base, tasty, tasty-quickcheck }: 57769 57701 mkDerivation { 57770 57702 pname = "electrum-mnemonic"; 57771 - version = "0.1.2"; 57772 - sha256 = "638a29ecaf2e3fb9123e01c959c4299bbcc487dadb3743821123d6280e775cd3"; 57703 + version = "0.1.3"; 57704 + sha256 = "c05e2ddd4b18a0f8202e523032ed8cacd3cd57549c533154fb0bbc604b27aaf6"; 57773 57705 libraryHaskellDepends = [ base ]; 57774 57706 testHaskellDepends = [ base tasty tasty-quickcheck ]; 57775 57707 description = "easy to remember mnemonic for a high-entropy value"; ··· 61906 61838 pname = "feed"; 61907 61839 version = "0.3.11.1"; 61908 61840 sha256 = "ed04d0fc120a4b1b47c7675d395afbb419506431bc6f8e0f2c382c73a4afc983"; 61909 - revision = "3"; 61910 - editedCabalFile = "0baffc9bcab66296a904d211d4254f625811dc28eda4f1be0692cc2b219a6bdd"; 61841 + revision = "4"; 61842 + editedCabalFile = "ecce0a16a0d695b1c8ed80af4ea59e33c767ad9c6bdac5898e7cae20bd5da8c6"; 61911 61843 libraryHaskellDepends = [ 61912 61844 base old-locale old-time time time-locale-compat utf8-string xml 61913 61845 ]; ··· 83810 83742 }: 83811 83743 mkDerivation { 83812 83744 pname = "hasql-class"; 83813 - version = "0.0.0.1"; 83814 - sha256 = "90db8a197d6755401f0431fa9586aa3f1744d411fe714ec8bfd2b51f5540c9de"; 83745 + version = "0.0.1.0"; 83746 + sha256 = "f46dc9cd83ba0f121f8c67c10cf25d199218b4d303aed008084655fdb60aa681"; 83815 83747 libraryHaskellDepends = [ 83816 83748 base bytestring contravariant data-default-class generics-eot hasql 83817 83749 text time vector ··· 84655 84587 }) {}; 84656 84588 84657 84589 "hbro" = callPackage 84658 - ({ mkDerivation, base, bytestring, classy-prelude, cond, containers 84659 - , data-default-class, directory, dyre, errors, exceptions 84660 - , fast-logger, filepath, glib, gtk3, lens, lifted-async 84661 - , lifted-base, monad-control, monad-logger, mtl, network-uri 84662 - , optparse-applicative, pango, parsec, process, random, resourcet 84663 - , safe, semigroups, stm-chans, text, time, transformers 84664 - , transformers-base, unix, uuid, webkitgtk3, zeromq4-haskell 84590 + ({ mkDerivation, base, bytestring, chunked-data, cond, containers 84591 + , data-default-class, directory, dyre, errors, fast-logger 84592 + , filepath, glib, gtk3, lens, lifted-async, lifted-base 84593 + , monad-control, monad-logger, monadIO, mono-traversable, mtl 84594 + , network-uri, optparse-applicative, pango, parsec, process, random 84595 + , resourcet, safe, safe-exceptions, semigroups, stm-chans, text 84596 + , time, transformers, transformers-base, unix, uuid, webkitgtk3 84597 + , zeromq4-haskell 84665 84598 }: 84666 84599 mkDerivation { 84667 84600 pname = "hbro"; 84668 - version = "1.5.0.0"; 84669 - sha256 = "8f66263f288dba0e90cce6d6b9d2682b71acc46c2790128cba78b984c7990d6f"; 84601 + version = "1.6.0.0"; 84602 + sha256 = "0572d35613f0b6e199f563375fb71991fe46ebfa7881bcee591a2054629febce"; 84670 84603 isLibrary = true; 84671 84604 isExecutable = true; 84672 84605 libraryHaskellDepends = [ 84673 - base bytestring classy-prelude cond containers data-default-class 84674 - directory dyre errors exceptions fast-logger filepath glib gtk3 84675 - lens lifted-async lifted-base monad-control monad-logger mtl 84676 - network-uri optparse-applicative pango parsec process random 84677 - resourcet safe semigroups stm-chans text time transformers 84678 - transformers-base unix uuid webkitgtk3 zeromq4-haskell 84606 + base bytestring chunked-data cond containers data-default-class 84607 + directory dyre errors fast-logger filepath glib gtk3 lens 84608 + lifted-async lifted-base monad-control monad-logger monadIO 84609 + mono-traversable mtl network-uri optparse-applicative pango parsec 84610 + process random resourcet safe safe-exceptions semigroups stm-chans 84611 + text time transformers transformers-base unix uuid webkitgtk3 84612 + zeromq4-haskell 84679 84613 ]; 84680 84614 executableHaskellDepends = [ base ]; 84681 84615 homepage = "https://github.com/k0ral/hbro"; ··· 84686 84620 84687 84621 "hbro-contrib" = callPackage 84688 84622 ({ mkDerivation, aeson, aeson-pretty, base, bytestring 84689 - , classy-prelude, containers, directory, glib, gtk3, hbro, lens 84690 - , monad-control, mtl, network-uri, pango, parsec, process 84691 - , resourcet, safe, text, time, transformers-base, unix, webkitgtk3 84623 + , chunked-data, containers, directory, filepath, glib, gtk3, hbro 84624 + , lens, monad-control, mono-traversable, mtl, network-uri, pango 84625 + , parsec, process, resourcet, safe, safe-exceptions, text, time 84626 + , transformers-base, unix, webkitgtk3 84692 84627 }: 84693 84628 mkDerivation { 84694 84629 pname = "hbro-contrib"; 84695 - version = "1.5.0.0"; 84696 - sha256 = "0331c2024f52cfbefba781095e8309fd20cd32082a9a8887c3fcb4f52fc76fbc"; 84630 + version = "1.6.0.0"; 84631 + sha256 = "7ca63236aa588f4ac538ffb17840fca1039c36eefb2f56317b1614170c9b1603"; 84697 84632 libraryHaskellDepends = [ 84698 - aeson aeson-pretty base bytestring classy-prelude containers 84699 - directory glib gtk3 hbro lens monad-control mtl network-uri pango 84700 - parsec process resourcet safe text time transformers-base unix 84701 - webkitgtk3 84633 + aeson aeson-pretty base bytestring chunked-data containers 84634 + directory filepath glib gtk3 hbro lens monad-control 84635 + mono-traversable mtl network-uri pango parsec process resourcet 84636 + safe safe-exceptions text time transformers-base unix webkitgtk3 84702 84637 ]; 84703 84638 homepage = "https://github.com/k0ral/hbro-contrib"; 84704 84639 description = "Third-party extensions to hbro"; ··· 86351 86286 }: 86352 86287 mkDerivation { 86353 86288 pname = "heterocephalus"; 86354 - version = "1.0.0"; 86355 - sha256 = "152db4b8297ed5eafb9c9f974806b39f790325b337d48e0a5724227360106b1b"; 86289 + version = "1.0.0.1"; 86290 + sha256 = "f25a727b6df685596b78d1a82c60da8433b3afb8a3c0766ece241700578fa5b7"; 86356 86291 libraryHaskellDepends = [ 86357 86292 base blaze-html blaze-markup containers parsec shakespeare 86358 86293 template-haskell text 86359 86294 ]; 86360 86295 testHaskellDepends = [ base doctest Glob ]; 86361 86296 homepage = "https://github.com/arowM/heterocephalus#readme"; 86362 - description = "A flexible and type safe template engine for Haskell"; 86297 + description = "A type safe template engine for collaborating with front end development tools"; 86363 86298 license = stdenv.lib.licenses.mit; 86364 86299 }) {}; 86365 86300 ··· 88613 88548 }: 88614 88549 mkDerivation { 88615 88550 pname = "hledger-interest"; 88616 - version = "1.5"; 88617 - sha256 = "77fb04190160de91eb791f2326691133e1be26c0984fabf30581ba1f0af3fab1"; 88618 - isLibrary = false; 88619 - isExecutable = true; 88620 - executableHaskellDepends = [ 88621 - base Cabal Decimal hledger-lib mtl text time 88622 - ]; 88623 - homepage = "http://github.com/peti/hledger-interest"; 88624 - description = "computes interest for a given account"; 88625 - license = stdenv.lib.licenses.bsd3; 88626 - maintainers = with stdenv.lib.maintainers; [ peti ]; 88627 - }) {}; 88628 - 88629 - "hledger-interest_1_5_1" = callPackage 88630 - ({ mkDerivation, base, Cabal, Decimal, hledger-lib, mtl, text, time 88631 - }: 88632 - mkDerivation { 88633 - pname = "hledger-interest"; 88634 88551 version = "1.5.1"; 88635 88552 sha256 = "0a02354f4e8d53e75817e05b140c4760220ac4e414fbf9772abe4f20a9f90da6"; 88636 88553 isLibrary = false; ··· 88641 88558 homepage = "http://github.com/peti/hledger-interest"; 88642 88559 description = "computes interest for a given account"; 88643 88560 license = stdenv.lib.licenses.bsd3; 88644 - hydraPlatforms = stdenv.lib.platforms.none; 88645 88561 maintainers = with stdenv.lib.maintainers; [ peti ]; 88646 88562 }) {}; 88647 88563 ··· 88702 88618 pname = "hledger-ui"; 88703 88619 version = "1.0.5"; 88704 88620 sha256 = "ba859b4c1f8199413c30ddc0db2a7e11206d79ae235e6d9005de6d6cc1b98875"; 88621 + revision = "1"; 88622 + editedCabalFile = "3189cd365d74e481da18730d14c0ac538f435a331cfe76d519e37214f94adf54"; 88705 88623 isLibrary = false; 88706 88624 isExecutable = true; 88707 88625 executableHaskellDepends = [ ··· 91485 91403 pname = "hpqtypes"; 91486 91404 version = "1.5.1.1"; 91487 91405 sha256 = "b99c214d7cc83573f5bf295837b42a13a4057dc9cab701b25798086f0d54795a"; 91406 + revision = "1"; 91407 + editedCabalFile = "6915ef5e4cd5c22aee26cf85b2d6b86947ada1b0c39d39b6cadcc6bf572e454c"; 91488 91408 libraryHaskellDepends = [ 91489 91409 aeson base bytestring containers data-default-class exceptions 91490 91410 lifted-base monad-control mtl resource-pool text text-show time ··· 96594 96514 "http-link-header" = callPackage 96595 96515 ({ mkDerivation, attoparsec, base, bytestring 96596 96516 , bytestring-conversion, errors, hspec, hspec-attoparsec 96597 - , network-uri, QuickCheck, text 96598 - }: 96599 - mkDerivation { 96600 - pname = "http-link-header"; 96601 - version = "1.0.2"; 96602 - sha256 = "618b33aa9518cfae4d63e3d79689642bde5eecfa33c83ea1d1e3aa33420f8685"; 96603 - libraryHaskellDepends = [ 96604 - attoparsec base bytestring bytestring-conversion errors network-uri 96605 - text 96606 - ]; 96607 - testHaskellDepends = [ 96608 - base hspec hspec-attoparsec QuickCheck text 96609 - ]; 96610 - homepage = "https://github.com/myfreeweb/http-link-header"; 96611 - description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; 96612 - license = stdenv.lib.licenses.publicDomain; 96613 - }) {}; 96614 - 96615 - "http-link-header_1_0_3" = callPackage 96616 - ({ mkDerivation, attoparsec, base, bytestring 96617 - , bytestring-conversion, errors, hspec, hspec-attoparsec 96618 96517 , http-api-data, network-uri, QuickCheck, text 96619 96518 }: 96620 96519 mkDerivation { ··· 96631 96530 homepage = "https://github.com/myfreeweb/http-link-header"; 96632 96531 description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; 96633 96532 license = stdenv.lib.licenses.publicDomain; 96634 - hydraPlatforms = stdenv.lib.platforms.none; 96635 96533 }) {}; 96636 96534 96637 96535 "http-listen" = callPackage ··· 104352 104250 license = stdenv.lib.licenses.asl20; 104353 104251 }) {}; 104354 104252 104355 - "jose_0_5_0_0" = callPackage 104253 + "jose_0_5_0_1" = callPackage 104356 104254 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 104357 104255 , byteable, bytestring, containers, cryptonite, hspec, lens, memory 104358 104256 , monad-time, mtl, network-uri, QuickCheck, quickcheck-instances ··· 104361 104259 }: 104362 104260 mkDerivation { 104363 104261 pname = "jose"; 104364 - version = "0.5.0.0"; 104365 - sha256 = "cb2da4049b288be97e1a7530fbf0ff86cf98a3277b13cd84ba352519741b36ce"; 104262 + version = "0.5.0.1"; 104263 + sha256 = "be03e97bad8c492bc6e268d917b0c0ea18f12a971a94be8e8c28af636d52c84f"; 104366 104264 isLibrary = true; 104367 104265 isExecutable = true; 104368 104266 libraryHaskellDepends = [ ··· 109120 109018 hydraPlatforms = stdenv.lib.platforms.none; 109121 109019 }) {}; 109122 109020 109021 + "latex-function-tables" = callPackage 109022 + ({ mkDerivation, base, bifunctors, HaTeX, lens, mtl, process 109023 + , semigroups, template-haskell, th-printf 109024 + }: 109025 + mkDerivation { 109026 + pname = "latex-function-tables"; 109027 + version = "0.1.0.0"; 109028 + sha256 = "7145b64e438624e8c5a3590c67f113df5010f8f28feb33aaa95602ef75939af4"; 109029 + isLibrary = true; 109030 + isExecutable = true; 109031 + libraryHaskellDepends = [ 109032 + base bifunctors HaTeX lens mtl semigroups template-haskell 109033 + th-printf 109034 + ]; 109035 + executableHaskellDepends = [ base HaTeX process template-haskell ]; 109036 + testHaskellDepends = [ base ]; 109037 + homepage = "https://github.com/githubuser/nfm2017#readme"; 109038 + description = "Function table specifications in latex"; 109039 + license = stdenv.lib.licenses.bsd3; 109040 + }) {}; 109041 + 109123 109042 "lattices" = callPackage 109124 109043 ({ mkDerivation, base, containers, deepseq, hashable, QuickCheck 109125 109044 , semigroups, tagged, tasty, tasty-quickcheck, transformers ··· 111597 111516 }: 111598 111517 mkDerivation { 111599 111518 pname = "linearmap-category"; 111600 - version = "0.1.0.1"; 111601 - sha256 = "ff237dba6477c1ef1328c36785563422fbf3aae1acd31cf5aca139d8a0b4adbd"; 111519 + version = "0.2.0.0"; 111520 + sha256 = "99e027c01da96c907a94b8bd57a7e36597d57b4786aa4835b1b66e921bad21d3"; 111602 111521 revision = "1"; 111603 - editedCabalFile = "c917ace1221a02587e65c9224c1b39fd6999b9c6f712138312def89981bcd3d4"; 111522 + editedCabalFile = "2da156de9e6cffcbd1b9910c4d177250d27a18bf77bdae54bf8560c26b1b89b7"; 111604 111523 libraryHaskellDepends = [ 111605 111524 base constrained-categories containers free-vector-spaces ieee754 111606 111525 lens linear semigroups vector vector-space ··· 113262 113181 113263 113182 "log" = callPackage 113264 113183 ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring 113265 - , bloodhound, bytestring, cond, deepseq, exceptions, hpqtypes 113184 + , bloodhound, bytestring, deepseq, exceptions, hpqtypes 113266 113185 , http-client, http-types, lifted-base, monad-control, monad-time 113267 113186 , mtl, old-locale, process, random, semigroups, split, stm, tasty 113268 113187 , tasty-hunit, text, text-show, time, transformers ··· 113270 113189 }: 113271 113190 mkDerivation { 113272 113191 pname = "log"; 113273 - version = "0.5.5"; 113274 - sha256 = "9a1b6443e83b249bb20feed413f47fe8b33b1d36b3e6982cae70cdcf158137fc"; 113192 + version = "0.6"; 113193 + sha256 = "7b059a5130d7a7ec87109bdb118223ba281135ccdbc68551ff4123da4181176a"; 113275 113194 libraryHaskellDepends = [ 113276 113195 aeson aeson-pretty base base64-bytestring bloodhound bytestring 113277 - cond deepseq exceptions hpqtypes http-client lifted-base 113278 - monad-control monad-time mtl old-locale semigroups split stm text 113279 - text-show time transformers transformers-base unordered-containers 113280 - vector 113196 + deepseq exceptions hpqtypes http-client lifted-base monad-control 113197 + monad-time mtl old-locale semigroups split stm text text-show time 113198 + transformers transformers-base unordered-containers vector 113281 113199 ]; 113282 113200 testHaskellDepends = [ 113283 113201 aeson base bloodhound bytestring exceptions http-client http-types ··· 115835 115753 }: 115836 115754 mkDerivation { 115837 115755 pname = "markdown"; 115838 - version = "0.1.15"; 115839 - sha256 = "5bf44c4a0df5a9c43dc7fcac86cbbd586c703e1a5f8ba6a77ea8f8207152e628"; 115840 - libraryHaskellDepends = [ 115841 - attoparsec base blaze-html blaze-markup conduit conduit-extra 115842 - containers data-default text transformers xml-conduit xml-types 115843 - xss-sanitize 115844 - ]; 115845 - testHaskellDepends = [ 115846 - base blaze-html conduit conduit-extra containers directory filepath 115847 - hspec text transformers 115848 - ]; 115849 - homepage = "https://github.com/snoyberg/markdown"; 115850 - description = "Convert Markdown to HTML, with XSS protection"; 115851 - license = stdenv.lib.licenses.bsd3; 115852 - }) {}; 115853 - 115854 - "markdown_0_1_16" = callPackage 115855 - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup 115856 - , conduit, conduit-extra, containers, data-default, directory 115857 - , filepath, hspec, text, transformers, xml-conduit, xml-types 115858 - , xss-sanitize 115859 - }: 115860 - mkDerivation { 115861 - pname = "markdown"; 115862 115756 version = "0.1.16"; 115863 115757 sha256 = "08b0b352e208316ddc99c6f161704c8ecaf248c2e51f506900e344c93757ed85"; 115864 115758 libraryHaskellDepends = [ ··· 115873 115767 homepage = "https://github.com/snoyberg/markdown"; 115874 115768 description = "Convert Markdown to HTML, with XSS protection"; 115875 115769 license = stdenv.lib.licenses.bsd3; 115876 - hydraPlatforms = stdenv.lib.platforms.none; 115877 115770 }) {}; 115878 115771 115879 115772 "markdown-kate" = callPackage ··· 118753 118646 ({ mkDerivation, base, mtl, transformers, transformers-compat }: 118754 118647 mkDerivation { 118755 118648 pname = "mmorph"; 118756 - version = "1.0.6"; 118757 - sha256 = "14c391b111af4cc10917a9340897ae2a5718f5b0b7e6bc13f379445c58fe0dc5"; 118758 - libraryHaskellDepends = [ 118759 - base mtl transformers transformers-compat 118760 - ]; 118761 - description = "Monad morphisms"; 118762 - license = stdenv.lib.licenses.bsd3; 118763 - }) {}; 118764 - 118765 - "mmorph_1_0_9" = callPackage 118766 - ({ mkDerivation, base, mtl, transformers, transformers-compat }: 118767 - mkDerivation { 118768 - pname = "mmorph"; 118769 118649 version = "1.0.9"; 118770 118650 sha256 = "e1f27d3881b254e2a87ffb21f33e332404abb180361f9d29092a85e321554563"; 118771 118651 libraryHaskellDepends = [ ··· 118773 118653 ]; 118774 118654 description = "Monad morphisms"; 118775 118655 license = stdenv.lib.licenses.bsd3; 118776 - hydraPlatforms = stdenv.lib.platforms.none; 118777 118656 }) {}; 118778 118657 118779 118658 "mmtl" = callPackage ··· 120366 120245 hydraPlatforms = stdenv.lib.platforms.none; 120367 120246 }) {}; 120368 120247 120248 + "money" = callPackage 120249 + ({ mkDerivation, base, doctest }: 120250 + mkDerivation { 120251 + pname = "money"; 120252 + version = "0.1.0"; 120253 + sha256 = "b3d078e6bf2201dfe7d524776fb7c3cee47b4f4d06d493c6f9bb9d3fb2407f9c"; 120254 + libraryHaskellDepends = [ base ]; 120255 + testHaskellDepends = [ base doctest ]; 120256 + homepage = "https://github.com/jpvillaisaza/money"; 120257 + description = "Money"; 120258 + license = stdenv.lib.licenses.mit; 120259 + }) {}; 120260 + 120369 120261 "mongoDB" = callPackage 120370 120262 ({ mkDerivation, array, base, base16-bytestring, base64-bytestring 120371 120263 , binary, bson, bytestring, containers, cryptohash ··· 122772 122664 }: 122773 122665 mkDerivation { 122774 122666 pname = "mysql-haskell"; 122775 - version = "0.7.0.0"; 122776 - sha256 = "c4ab3b07780ab7ba3df4ec5c9575d717456433ea7af5ab0af4aae346af22ceda"; 122667 + version = "0.7.1.0"; 122668 + sha256 = "0d0107914bc3f869eac868e1ad66a1ceba97cd68e2f5b9a595eecab24840edeb"; 122777 122669 libraryHaskellDepends = [ 122778 122670 base binary binary-ieee754 binary-parsers blaze-textual bytestring 122779 122671 bytestring-lexing cryptonite io-streams memory monad-loops network ··· 125322 125214 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 125323 125215 mkDerivation { 125324 125216 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 125325 - version = "0.2.4.2"; 125326 - sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 125327 - revision = "1"; 125328 - sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 125217 + version = "0.2.5.0"; 125218 + sha256 = "160e9f29ddc659a39c96de3971de7086528f608e372912a3f4e5b5f11a94590b"; 125329 125219 libraryHaskellDepends = [ 125330 125220 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 125331 125221 ]; ··· 126748 126638 }) {}; 126749 126639 126750 126640 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126751 - sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126641 + ({ mkDerivation, array, base, containers, mtl, process, random }: 126752 126642 mkDerivation { 126753 126643 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126754 - version = "0.3.3"; 126755 - sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126756 - sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126757 - testHaskellDepends = [ base containers ]; 126644 + version = "0.6.1"; 126645 + sha256 = "0db47df8588a5ffd6a925cf4d21c3e313aac9ec8ced2461dfddbfafb38ba1053"; 126646 + libraryHaskellDepends = [ 126647 + array base containers mtl process random 126648 + ]; 126649 + testHaskellDepends = [ array base containers ]; 126758 126650 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126759 126651 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126760 126652 license = "GPL"; ··· 127013 126905 license = stdenv.lib.licenses.bsd3; 127014 126906 }) {}; 127015 126907 126908 + "oeis_0_3_8" = callPackage 126909 + sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126910 + , test-framework, test-framework-hunit 126911 + }: 126912 + mkDerivation { 126913 + sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126914 + version = "0.3.8"; 126915 + sha256 = "4be72f80596045a51e56f8d810b5a044689f117b38a614bd9645e97dd3e39c93"; 126916 + sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126917 + testHaskellDepends = [ 126918 + base HUnit test-framework test-framework-hunit 126919 + ]; 126920 + sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 126921 + license = stdenv.lib.licenses.bsd3; 126922 + hydraPlatforms = stdenv.lib.platforms.none; 126923 + }) {}; 126924 + 127016 126925 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 127017 126926 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 127018 126927 mkDerivation { ··· 127640 127549 }) {}; 127641 127550 127642 127551 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 127643 - ({ mkDerivation, base }: 127552 + ({ mkDerivation, base, type-fun }: 127644 127553 mkDerivation { 127645 127554 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 127646 - version = "0.1.0.1"; 127647 - sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 127555 + version = "0.2.0.0"; 127556 + sha256 = "e9835d4e736afcedda90ff1e21ab6446266c1aa925b453ebf2292561dab48bbe"; 127648 127557 isLibrary = true; 127649 127558 isExecutable = true; 127650 - libraryHaskellDepends = [ base ]; 127651 - executableHaskellDepends = [ base ]; 127652 - sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 127559 + libraryHaskellDepends = [ base type-fun ]; 127560 + executableHaskellDepends = [ base type-fun ]; 127561 + homepage = "https://github.com/bfopa/open-union"; 127653 127562 sha256 = "e6ec85c65c76c30a9cf0dce266e2dc62fa7047dcb0628410085a44c417f3769f"; 127654 127563 license = stdenv.lib.licenses.mit; 127655 127564 hydraPlatforms = stdenv.lib.platforms.none; ··· 128258 128167 ({ mkDerivation, base, mtl, random }: 128259 128168 mkDerivation { 128260 128169 pname = "operational"; 128261 - version = "0.2.3.4"; 128262 - sha256 = "51cc8751432201f4cbef15a187ee668bca13d774eb0ef28c8e3d36f633866810"; 128263 - revision = "2"; 128264 - editedCabalFile = "8cff8abd98ae819678745b9d6071c51acaa281f386a13c166ef3c27161e372f1"; 128170 + version = "0.2.3.5"; 128171 + sha256 = "91d479063ae7ed3d0a6ae911bdee550fbf31cf341910f9778046b484c55b4af4"; 128265 128172 isLibrary = true; 128266 128173 isExecutable = true; 128267 128174 libraryHaskellDepends = [ base mtl ]; 128268 - executableHaskellDepends = [ base random ]; 128175 + executableHaskellDepends = [ base mtl random ]; 128269 128176 homepage = "http://wiki.haskell.org/Operational"; 128270 128177 description = "Implementation of difficult monads made easy with operational semantics"; 128271 128178 license = stdenv.lib.licenses.bsd3; ··· 129673 129580 ({ mkDerivation, base, bytestring, containers, data-accessor 129674 129581 , data-accessor-template, data-accessor-transformers, data-default 129675 129582 , directory, filepath, hspec, mtl, pandoc, pandoc-types, process 129676 - , roman-numerals, syb, template-haskell, yaml 129583 + , roman-numerals, syb, template-haskell, utility-ht, yaml 129677 129584 }: 129678 129585 mkDerivation { 129679 129586 pname = "pandoc-crossref"; 129680 - version = "0.2.3.0"; 129681 - sha256 = "b6b4200023da4835cf50a2c9a247a837282ccf16e1684336b5a15d17b9ad085e"; 129682 - revision = "1"; 129683 - editedCabalFile = "d2e8585033cbfcb5d232c01e6df4f9ba073d1249613847c238d433b011015693"; 129587 + version = "0.2.4.1"; 129588 + sha256 = "2aa2266ac3916677c18bd9a88b99f32622c22c983abaed3598020913ca3912ed"; 129684 129589 isLibrary = true; 129685 129590 isExecutable = true; 129686 129591 libraryHaskellDepends = [ 129687 129592 base bytestring containers data-accessor data-accessor-template 129688 129593 data-accessor-transformers data-default mtl pandoc pandoc-types 129689 - roman-numerals syb template-haskell yaml 129594 + roman-numerals syb template-haskell utility-ht yaml 129690 129595 ]; 129691 129596 executableHaskellDepends = [ 129692 129597 base bytestring containers data-default mtl pandoc pandoc-types ··· 129696 129601 base bytestring containers data-accessor data-accessor-template 129697 129602 data-accessor-transformers data-default directory filepath hspec 129698 129603 mtl pandoc pandoc-types process roman-numerals syb template-haskell 129699 - yaml 129604 + utility-ht yaml 129700 129605 ]; 129701 129606 description = "Pandoc filter for cross-references"; 129702 129607 license = stdenv.lib.licenses.gpl2; ··· 133343 133248 ({ mkDerivation, base, process, unix }: 133344 133249 mkDerivation { 133345 133250 pname = "pid1"; 133346 - version = "0.1.0.0"; 133347 - sha256 = "2b8e4bcdb1ce5c1dd5734d4406edd899e72e0afbe83758ff77590508a39d6cd2"; 133251 + version = "0.1.0.1"; 133252 + sha256 = "163b6dc85426558ad1a897675bf7f560389addf172c8e5858f817342ee7345c8"; 133253 + revision = "1"; 133254 + editedCabalFile = "f3213f1c04a1daa726ee2f6ceda69d843b80f4726759ef2fe2e23c4f34342746"; 133348 133255 isLibrary = true; 133349 133256 isExecutable = true; 133350 133257 libraryHaskellDepends = [ base process unix ]; ··· 134721 134628 134722 134629 "playlists" = callPackage 134723 134630 ({ mkDerivation, attoparsec, base, bytestring, doctest, filepath 134724 - , hlint, hspec, optparse-applicative, text, word8 134631 + , hspec, optparse-applicative, text, word8 134725 134632 }: 134726 134633 mkDerivation { 134727 134634 pname = "playlists"; 134728 - version = "0.3.0.0"; 134729 - sha256 = "8bb2141f2e996d7d4ab376e53fd00c0abfdfc05b00abc53b8c44573720e089bc"; 134635 + version = "0.4.0.0"; 134636 + sha256 = "38a4cb8370ced24a7ac198f16b509799993e9798ccfb9fc3448ee8e14bd71688"; 134730 134637 isLibrary = true; 134731 134638 isExecutable = true; 134732 134639 libraryHaskellDepends = [ ··· 134735 134642 executableHaskellDepends = [ 134736 134643 base bytestring optparse-applicative text 134737 134644 ]; 134738 - testHaskellDepends = [ base bytestring doctest hlint hspec ]; 134645 + testHaskellDepends = [ 134646 + base bytestring doctest filepath hspec text 134647 + ]; 134739 134648 homepage = "https://github.com/pjones/playlists"; 134740 134649 description = "Library and executable for working with playlist files"; 134741 134650 license = stdenv.lib.licenses.bsd3; 134742 134651 hydraPlatforms = stdenv.lib.platforms.none; 134652 + }) {}; 134653 + 134654 + "playlists-http" = callPackage 134655 + ({ mkDerivation, attoparsec, base, bytestring, either, exceptions 134656 + , http-client, mtl, playlists, text 134657 + }: 134658 + mkDerivation { 134659 + pname = "playlists-http"; 134660 + version = "0.1.0.0"; 134661 + sha256 = "9f3360bd4adcf45c0bd85eecc717c8093f8d8c71adcf8cff5d961c6cea1c15e3"; 134662 + libraryHaskellDepends = [ 134663 + attoparsec base bytestring either exceptions http-client mtl 134664 + playlists text 134665 + ]; 134666 + homepage = "https://github.com/pjones/playlists-http"; 134667 + description = "Library to glue together playlists and http-client"; 134668 + license = stdenv.lib.licenses.bsd3; 134743 134669 }) {}; 134744 134670 134745 134671 "plist" = callPackage ··· 135369 135295 ({ mkDerivation, base, containers, hspec, lens, mtl }: 135370 135296 mkDerivation { 135371 135297 pname = "polar-shader"; 135372 - version = "0.2.0.0"; 135373 - sha256 = "a251680f9d717394cb91e758d51ab8a69889be619325aff378d80b21742867f5"; 135298 + version = "0.3.0.0"; 135299 + sha256 = "426c5bb67fdb5be0e648678fa9d03800e714d5f89123b93d72fb8c7b7c01af24"; 135374 135300 libraryHaskellDepends = [ base containers lens mtl ]; 135375 135301 testHaskellDepends = [ base containers hspec ]; 135376 - description = "High-level shader compiler for Polar Game Engine"; 135302 + description = "High-level shader compiler framework"; 135377 135303 license = stdenv.lib.licenses.asl20; 135378 135304 hydraPlatforms = stdenv.lib.platforms.none; 135379 135305 }) {}; ··· 138442 138368 }: 138443 138369 mkDerivation { 138444 138370 pname = "propellor"; 138445 - version = "3.2.2"; 138446 - sha256 = "255082b7c52f4892e2e7aa4b5f68ffe0da897025b59e3cbcd6b8e3f3f20354fe"; 138371 + version = "3.2.3"; 138372 + sha256 = "078b51c15e4dbce6f55cd26eeb82ed6307e3c47661ab6518f421a1c95e60a11a"; 138447 138373 isLibrary = true; 138448 138374 isExecutable = true; 138449 138375 libraryHaskellDepends = [ ··· 145773 145699 pname = "rest-core"; 145774 145700 version = "0.39"; 145775 145701 sha256 = "d760d0547fc1a99cd949dde08b7945fb93af24f4e55d45ecf410c352d5005404"; 145776 - revision = "2"; 145777 - editedCabalFile = "62fec3ffbc0dfaf26d82ad0689dfe74384f2e565ec0c2bff897cd4c71be74583"; 145702 + revision = "3"; 145703 + editedCabalFile = "3b6cf8a675a2bf1f3e22fcf1a39e1658ce112e21b918ad28ace73cdf5dc70aa2"; 145778 145704 libraryHaskellDepends = [ 145779 145705 aeson aeson-utils base base-compat bytestring case-insensitive 145780 145706 errors fclabels hxt hxt-pickle-utils json-schema mtl mtl-compat ··· 145854 145780 pname = "rest-gen"; 145855 145781 version = "0.20.0.0"; 145856 145782 sha256 = "81a9486136f91773371858f9d3e248b80458e7d55aab11f17cc158c3ce68d542"; 145857 - revision = "1"; 145858 - editedCabalFile = "32caced8ad0a5273fc9c13ae65f75a37b790ad430d3923febf567616f5eb8e95"; 145783 + revision = "2"; 145784 + editedCabalFile = "9eb0c067b4a15b128d75c240694fc31504664107c88b9b80f925ef669eac632a"; 145859 145785 libraryHaskellDepends = [ 145860 145786 aeson base base-compat blaze-html Cabal code-builder directory 145861 145787 fclabels filepath hashable haskell-src-exts HStringTemplate hxt ··· 147263 147189 license = stdenv.lib.licenses.bsd3; 147264 147190 }) {}; 147265 147191 147192 + "rotating-log_0_4_2" = callPackage 147193 + ({ mkDerivation, base, bytestring, directory, filepath, old-locale 147194 + , time, time-locale-compat 147195 + }: 147196 + mkDerivation { 147197 + pname = "rotating-log"; 147198 + version = "0.4.2"; 147199 + sha256 = "6ef0ae7ecb9e30387b4088edc173fbb90b8c8b7514f9f7b8b6d92f7d95f754ec"; 147200 + libraryHaskellDepends = [ 147201 + base bytestring directory filepath old-locale time 147202 + time-locale-compat 147203 + ]; 147204 + testHaskellDepends = [ 147205 + base bytestring directory filepath time time-locale-compat 147206 + ]; 147207 + homepage = "http://github.com/Soostone/rotating-log"; 147208 + description = "Size-limited, concurrent, automatically-rotating log writer"; 147209 + license = stdenv.lib.licenses.bsd3; 147210 + hydraPlatforms = stdenv.lib.platforms.none; 147211 + }) {}; 147212 + 147266 147213 "roundRobin" = callPackage 147267 147214 ({ mkDerivation, base, QuickCheck, semigroups, tasty 147268 147215 , tasty-quickcheck ··· 150730 150677 ({ mkDerivation, base, containers, doctest, smallcheck }: 150731 150678 mkDerivation { 150732 150679 pname = "semiring-num"; 150733 - version = "0.5.3.1"; 150734 - sha256 = "f61b090bad8407b1ba50a136a5f14fdac92e4eb69f1aa0ce2d67f318ab33df20"; 150680 + version = "0.5.4.0"; 150681 + sha256 = "f96f42f4cb9bc0c34f4cc0e41178ad23c60fd4f5ff6f1059df5d352df54564e5"; 150735 150682 libraryHaskellDepends = [ base containers ]; 150736 150683 testHaskellDepends = [ base containers doctest smallcheck ]; 150737 150684 homepage = "https://github.com/oisdk/semiring-num"; ··· 152426 152373 }: 152427 152374 mkDerivation { 152428 152375 pname = "servant-snap"; 152429 - version = "0.7.0.2"; 152430 - sha256 = "0461cc7635c72f2c75770f029811a1c1e72f3245bc4be2fd1beaaee1cd84759b"; 152376 + version = "0.7.0.3"; 152377 + sha256 = "8b3892b6572677b74d1351b8dd9f274a0428c0bcdd2a0ab599ce96edfe7c2a8b"; 152431 152378 isLibrary = true; 152432 152379 isExecutable = true; 152433 152380 libraryHaskellDepends = [ ··· 153441 153388 }: 153442 153389 mkDerivation { 153443 153390 pname = "shakespeare"; 153444 - version = "2.0.11.1"; 153445 - sha256 = "bc3d6c5bb3cbef9a0aa67bbf5f08b20cf77bc9e29d8e7da5a3768016a0361d5e"; 153446 - libraryHaskellDepends = [ 153447 - aeson base blaze-html blaze-markup bytestring containers directory 153448 - exceptions ghc-prim parsec process scientific template-haskell text 153449 - time transformers unordered-containers vector 153450 - ]; 153451 - testHaskellDepends = [ 153452 - aeson base blaze-html blaze-markup bytestring containers directory 153453 - exceptions ghc-prim hspec HUnit parsec process template-haskell 153454 - text time transformers 153455 - ]; 153456 - homepage = "http://www.yesodweb.com/book/shakespearean-templates"; 153457 - description = "A toolkit for making compile-time interpolated templates"; 153458 - license = stdenv.lib.licenses.mit; 153459 - maintainers = with stdenv.lib.maintainers; [ psibi ]; 153460 - }) {}; 153461 - 153462 - "shakespeare_2_0_11_2" = callPackage 153463 - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring 153464 - , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec 153465 - , process, scientific, template-haskell, text, time, transformers 153466 - , unordered-containers, vector 153467 - }: 153468 - mkDerivation { 153469 - pname = "shakespeare"; 153470 153391 version = "2.0.11.2"; 153471 153392 sha256 = "536327335c60f144aa372e4e0f163097bb0b435e28438bf7c54f1f22271f71d4"; 153472 153393 libraryHaskellDepends = [ ··· 153482 153403 homepage = "http://www.yesodweb.com/book/shakespearean-templates"; 153483 153404 description = "A toolkit for making compile-time interpolated templates"; 153484 153405 license = stdenv.lib.licenses.mit; 153485 - hydraPlatforms = stdenv.lib.platforms.none; 153486 153406 maintainers = with stdenv.lib.maintainers; [ psibi ]; 153487 153407 }) {}; 153488 153408 ··· 157509 157429 }: 157510 157430 mkDerivation { 157511 157431 pname = "snaplet-sqlite-simple-jwt-auth"; 157512 - version = "0.1.1.0"; 157513 - sha256 = "64afbefedfc6eda854c4b34e8bd8e69be84d2042aa81cfe0305d53ddf1b62fd2"; 157432 + version = "0.2.0.0"; 157433 + sha256 = "fc58870fc0cee74f9d4138c909937350faa7d1924a1da8e0f76b4a5ccdf31203"; 157514 157434 libraryHaskellDepends = [ 157515 157435 aeson attoparsec base bcrypt bytestring clientsession containers 157516 157436 directory either errors jwt lens mtl snap snap-core ··· 159354 159274 }: 159355 159275 mkDerivation { 159356 159276 pname = "sproxy2"; 159357 - version = "1.90.0"; 159358 - sha256 = "6df57f02d8002e4f80cf0531adef08b6dc112b51861c2d5dec38afefa5582ef7"; 159277 + version = "1.90.1"; 159278 + sha256 = "5feb5f23458155f317808992af1de5cb1e86ee6d89a0ce0371efe3dfd130926b"; 159359 159279 isLibrary = false; 159360 159280 isExecutable = true; 159361 159281 executableHaskellDepends = [ ··· 159535 159455 }: 159536 159456 mkDerivation { 159537 159457 pname = "sqlite-simple"; 159538 - version = "0.4.9.0"; 159539 - sha256 = "81dfe4a1dd69d2f0334d3be10ba1d6ce91a9ba0602e69170dfbecb84b11f60a3"; 159540 - libraryHaskellDepends = [ 159541 - attoparsec base blaze-builder blaze-textual bytestring containers 159542 - direct-sqlite text time transformers 159543 - ]; 159544 - testHaskellDepends = [ 159545 - base base16-bytestring bytestring direct-sqlite HUnit text time 159546 - ]; 159547 - homepage = "http://github.com/nurpax/sqlite-simple"; 159548 - description = "Mid-Level SQLite client library"; 159549 - license = stdenv.lib.licenses.bsd3; 159550 - }) {}; 159551 - 159552 - "sqlite-simple_0_4_10_0" = callPackage 159553 - ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder 159554 - , blaze-textual, bytestring, containers, direct-sqlite, HUnit, text 159555 - , time, transformers 159556 - }: 159557 - mkDerivation { 159558 - pname = "sqlite-simple"; 159559 159458 version = "0.4.10.0"; 159560 159459 sha256 = "634a7c5728da62899b5b72c372e0da7571a7d26a1162f9490e44d79a2ff04df2"; 159561 159460 libraryHaskellDepends = [ ··· 159568 159467 homepage = "http://github.com/nurpax/sqlite-simple"; 159569 159468 description = "Mid-Level SQLite client library"; 159570 159469 license = stdenv.lib.licenses.bsd3; 159571 - hydraPlatforms = stdenv.lib.platforms.none; 159572 159470 }) {}; 159573 159471 159574 159472 "sqlite-simple-errors" = callPackage ··· 164451 164349 ({ mkDerivation, base }: 164452 164350 mkDerivation { 164453 164351 pname = "system-info"; 164454 - version = "0.1.0.2"; 164455 - sha256 = "31c047baaa70679f3ffab275de83a6bf2de7e144a8a2d9ec49f36cf0c6c19a5c"; 164352 + version = "0.1.0.3"; 164353 + sha256 = "9d31bad4a6ea7abdb6bef5e929388a58d200982964042cc4aa991c81066dc8b8"; 164456 164354 libraryHaskellDepends = [ base ]; 164457 164355 testHaskellDepends = [ base ]; 164458 164356 homepage = "https://github.com/ChaosGroup/system-info"; ··· 167029 166927 167030 166928 "test-fixture" = callPackage 167031 166929 ({ mkDerivation, base, data-default, hspec, hspec-discover, mtl 167032 - , template-haskell, transformers 167033 - }: 167034 - mkDerivation { 167035 - pname = "test-fixture"; 167036 - version = "0.4.1.0"; 167037 - sha256 = "bddd2b518151218d9848b46f233c70719711a45fd7357ecc3a5eb1d551d437a4"; 167038 - libraryHaskellDepends = [ base data-default mtl template-haskell ]; 167039 - testHaskellDepends = [ 167040 - base hspec hspec-discover mtl transformers 167041 - ]; 167042 - homepage = "http://github.com/cjdev/test-fixture#readme"; 167043 - description = "Test monadic side-effects"; 167044 - license = stdenv.lib.licenses.bsd3; 167045 - }) {}; 167046 - 167047 - "test-fixture_0_4_2_0" = callPackage 167048 - ({ mkDerivation, base, data-default, hspec, hspec-discover, mtl 167049 166930 , template-haskell, th-to-exp, transformers 167050 166931 }: 167051 166932 mkDerivation { ··· 167060 166941 homepage = "http://github.com/cjdev/test-fixture#readme"; 167061 166942 description = "Test monadic side-effects"; 167062 166943 license = stdenv.lib.licenses.bsd3; 167063 - hydraPlatforms = stdenv.lib.platforms.none; 167064 166944 }) {}; 167065 166945 167066 166946 "test-framework" = callPackage ··· 167414 167294 }: 167415 167295 mkDerivation { 167416 167296 pname = "test-simple"; 167417 - version = "0.1.8"; 167418 - sha256 = "8e8bacb6299e82d1f3f3643144e24ce574b99b2f052bd630930a4c2e62267895"; 167419 - libraryHaskellDepends = [ 167420 - base mtl QuickCheck state-plus template-haskell 167421 - ]; 167422 - testHaskellDepends = [ 167423 - base executable-path mtl process QuickCheck 167424 - ]; 167425 - description = "Simple Perl inspired testing"; 167426 - license = stdenv.lib.licenses.bsd3; 167427 - }) {}; 167428 - 167429 - "test-simple_0_1_9" = callPackage 167430 - ({ mkDerivation, base, executable-path, mtl, process, QuickCheck 167431 - , state-plus, template-haskell 167432 - }: 167433 - mkDerivation { 167434 - pname = "test-simple"; 167435 167297 version = "0.1.9"; 167436 167298 sha256 = "eaee79bf997272fe0c97a0cfb80347c760ca5de8ffb0d639ddbf00ba6f6ef51d"; 167437 167299 libraryHaskellDepends = [ ··· 167442 167304 ]; 167443 167305 description = "Simple Perl inspired testing"; 167444 167306 license = stdenv.lib.licenses.bsd3; 167445 - hydraPlatforms = stdenv.lib.platforms.none; 167446 167307 }) {}; 167447 167308 167448 167309 "testPkg" = callPackage ··· 174044 173905 license = stdenv.lib.licenses.bsd3; 174045 173906 }) {}; 174046 173907 173908 + "ua-parser_0_7_2" = callPackage 173909 + ({ mkDerivation, aeson, base, bytestring, data-default, file-embed 173910 + , filepath, HUnit, pcre-light, tasty, tasty-hunit, tasty-quickcheck 173911 + , text, yaml 173912 + }: 173913 + mkDerivation { 173914 + pname = "ua-parser"; 173915 + version = "0.7.2"; 173916 + sha256 = "469afe9d9c7d7de7405b316a388639858b515840f74ba0b4c48985559922df55"; 173917 + libraryHaskellDepends = [ 173918 + aeson base bytestring data-default file-embed pcre-light text yaml 173919 + ]; 173920 + testHaskellDepends = [ 173921 + aeson base bytestring data-default file-embed filepath HUnit 173922 + pcre-light tasty tasty-hunit tasty-quickcheck text yaml 173923 + ]; 173924 + description = "A library for parsing User-Agent strings, official Haskell port of ua-parser"; 173925 + license = stdenv.lib.licenses.bsd3; 173926 + hydraPlatforms = stdenv.lib.platforms.none; 173927 + }) {}; 173928 + 174047 173929 "uacpid" = callPackage 174048 173930 ({ mkDerivation, base, containers, directory, filepath, hslogger 174049 173931 , mtl, network, process, regex-compat, time, time-locale-compat ··· 183818 183700 hydraPlatforms = stdenv.lib.platforms.none; 183819 183701 }) {}; 183820 183702 183703 + "xml-isogen" = callPackage 183704 + ({ mkDerivation, base, dom-parser, lens, mtl, QuickCheck 183705 + , semigroups, template-haskell, text, xml-conduit-writer 183706 + }: 183707 + mkDerivation { 183708 + pname = "xml-isogen"; 183709 + version = "0.1.0"; 183710 + sha256 = "ae66671939e101c38154f04f603b00ed31451477a55d183ae299316315005eae"; 183711 + libraryHaskellDepends = [ 183712 + base dom-parser lens mtl QuickCheck semigroups template-haskell 183713 + text xml-conduit-writer 183714 + ]; 183715 + description = "Generate XML-isomorphic types"; 183716 + license = stdenv.lib.licenses.mit; 183717 + }) {}; 183718 + 183821 183719 "xml-lens" = callPackage 183822 183720 ({ mkDerivation, base, case-insensitive, containers, lens, text 183823 183721 , xml-conduit ··· 185387 185285 }: 185388 185286 mkDerivation { 185389 185287 pname = "yeshql"; 185390 - version = "0.3.0.2"; 185391 - sha256 = "644a83935a015b792d879dfa301bbb18beeea8515c2acd8d516a2cf6697fcbb7"; 185288 + version = "0.3.0.3"; 185289 + sha256 = "b405093850400d551cc9d443cedcd28e7b0ff4b9e724ee00d4b21c4852d80f0b"; 185392 185290 libraryHaskellDepends = [ 185393 185291 base containers filepath HDBC parsec template-haskell 185394 185292 ]; ··· 186225 186123 }: 186226 186124 mkDerivation { 186227 186125 pname = "yesod-form"; 186228 - version = "1.4.8"; 186229 - sha256 = "c6f2f83dd361569f830c95671b70c7510b485840d20b9ade6c747de127088f0b"; 186230 - libraryHaskellDepends = [ 186231 - aeson attoparsec base blaze-builder blaze-html blaze-markup 186232 - byteable bytestring containers data-default email-validate 186233 - network-uri persistent resourcet semigroups shakespeare 186234 - template-haskell text time transformers wai xss-sanitize yesod-core 186235 - yesod-persistent 186236 - ]; 186237 - testHaskellDepends = [ base hspec text time ]; 186238 - homepage = "http://www.yesodweb.com/"; 186239 - description = "Form handling support for Yesod Web Framework"; 186240 - license = stdenv.lib.licenses.mit; 186241 - }) {}; 186242 - 186243 - "yesod-form_1_4_9" = callPackage 186244 - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html 186245 - , blaze-markup, byteable, bytestring, containers, data-default 186246 - , email-validate, hspec, network-uri, persistent, resourcet 186247 - , semigroups, shakespeare, template-haskell, text, time 186248 - , transformers, wai, xss-sanitize, yesod-core, yesod-persistent 186249 - }: 186250 - mkDerivation { 186251 - pname = "yesod-form"; 186252 186126 version = "1.4.9"; 186253 186127 sha256 = "bd53f12d97a89e93b15fc6b06e63fbe041301635508f933203596f349a74110d"; 186254 186128 libraryHaskellDepends = [ ··· 186262 186136 homepage = "http://www.yesodweb.com/"; 186263 186137 description = "Form handling support for Yesod Web Framework"; 186264 186138 license = stdenv.lib.licenses.mit; 186265 - hydraPlatforms = stdenv.lib.platforms.none; 186266 186139 }) {}; 186267 186140 186268 186141 "yesod-form-json" = callPackage
+6 -8
pkgs/development/haskell-modules/hoogle.nix
··· 23 23 # This will build mmorph and monadControl, and have the hoogle installation 24 24 # refer to their documentation via symlink so they are not garbage collected. 25 25 26 - { lib, stdenv, hoogle, writeText 27 - , ghc, packages ? [ ghc.ghc ] 26 + { lib, stdenv, hoogle, writeText, ghc 27 + , packages 28 28 }: 29 29 30 30 let ··· 51 51 else writeText "ghcjs-prologue.txt" '' 52 52 This index includes documentation for many Haskell modules. 53 53 ''; 54 + 55 + docPackages = lib.closePropagation packages; 56 + 54 57 in 55 58 stdenv.mkDerivation { 56 59 name = "hoogle-local-0.1"; ··· 58 61 59 62 phases = [ "buildPhase" ]; 60 63 61 - docPackages = (lib.closePropagation packages); 64 + inherit docPackages; 62 65 63 66 buildPhase = '' 64 - if [ -z "$docPackages" ]; then 65 - echo "ERROR: The packages attribute has not been set" 66 - exit 1 67 - fi 68 - 69 67 mkdir -p $out/share/doc/hoogle 70 68 71 69 echo importing builtin packages
+2 -2
pkgs/development/interpreters/luajit/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "luajit-${version}"; 5 - version = "2.1.0-beta1"; 5 + version = "2.1.0-beta2"; 6 6 luaversion = "5.1"; 7 7 8 8 src = fetchurl { 9 9 url = "http://luajit.org/download/LuaJIT-${version}.tar.gz"; 10 - sha256 = "06170d38387c59d1292001a166e7f5524f5c5deafa8705a49a46fa42905668dd"; 10 + sha256 = "0iyghj1xjlmd9ywa4flf9yszynf3jhbp0yqb9b49k7ab0g528fbi"; 11 11 }; 12 12 13 13 enableParallelBuilding = true;
+1 -1
pkgs/development/libraries/SDL_ttf/default.nix
··· 25 25 description = "SDL TrueType library"; 26 26 license = licenses.zlib; 27 27 platforms = platforms.all; 28 - homepage = https://www.libsdl.org/projects/SDL_ttf/release-1.2.html; 28 + homepage = "https://www.libsdl.org/projects/SDL_ttf/release-1.2.html"; 29 29 maintainers = with maintainers; [ abbradar ]; 30 30 }; 31 31 }
+4 -4
pkgs/development/libraries/cppzmq/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "cppzmq-${version}"; 5 - version = "2016-07-18"; 5 + version = "2016-11-16"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "zeromq"; 9 9 repo = "cppzmq"; 10 - rev = "92d2af6def80a01b76d5e73f073c439ad00ab757"; 11 - sha256 = "0lnwh314hh5ifad2sa2nz1g1ld1jc4vplm7clyvx304sjjvbvl27"; 10 + rev = "8b52a6ffacce27bac9b81c852b81539a77b0a6e5"; 11 + sha256 = "12accjyjzfw1wqzbj1qn6q99bj5ba05flsvbanyzflr3b4971s4p"; 12 12 }; 13 13 14 14 installPhase = '' ··· 16 16 ''; 17 17 18 18 meta = with stdenv.lib; { 19 - homepage = https://github.com/zeromq/cppzmq; 19 + homepage = "https://github.com/zeromq/cppzmq"; 20 20 license = licenses.bsd2; 21 21 description = "C++ binding for 0MQ"; 22 22 maintainers = with maintainers; [ abbradar ];
+2 -2
pkgs/development/libraries/double-conversion/default.nix
··· 1 1 { stdenv, fetchFromGitHub, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.0.1"; 5 4 name = "double-conversion-${version}"; 5 + version = "2.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "google"; ··· 19 19 20 20 meta = with stdenv.lib; { 21 21 description = "Binary-decimal and decimal-binary routines for IEEE doubles"; 22 - homepage = https://github.com/google/double-conversion; 22 + homepage = "https://github.com/google/double-conversion"; 23 23 license = licenses.bsd3; 24 24 platforms = platforms.unix; 25 25 maintainers = with maintainers; [ abbradar ];
+3 -3
pkgs/development/libraries/folly/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "folly-${version}"; 6 - version = "2016.08.08.00"; 6 + version = "2016.11.21.00"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "facebook"; 10 10 repo = "folly"; 11 11 rev = "v${version}"; 12 - sha256 = "0f9xdi8w2mbn6gxjfvpzh8i22ca8p11a2ss6qkw31yhdgd3s9087"; 12 + sha256 = "1f7j73avj00mmzz8wyh9rl1k9i0cvk77d0nf9c80vzr2zfk9f31x"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ autoreconfHook python pkgconfig ]; ··· 26 26 27 27 meta = with stdenv.lib; { 28 28 description = "An open-source C++ library developed and used at Facebook"; 29 - homepage = https://github.com/facebook/folly; 29 + homepage = "https://github.com/facebook/folly"; 30 30 license = licenses.asl20; 31 31 # 32bit is not supported: https://github.com/facebook/folly/issues/103 32 32 platforms = [ "x86_64-linux" ];
+6 -3
pkgs/development/libraries/giblib/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "giblib-1.2.4"; 5 - 5 + 6 6 src = fetchurl { 7 7 url = "http://linuxbrit.co.uk/downloads/${name}.tar.gz"; 8 8 sha256 = "1b4bmbmj52glq0s898lppkpzxlprq9aav49r06j2wx4dv3212rhp"; 9 9 }; 10 - 11 - buildInputs = [xlibsWrapper imlib2]; 10 + 11 + buildInputs = [ xlibsWrapper ]; 12 + propagatedBuildInputs = [ imlib2 ]; 12 13 13 14 meta = { 14 15 homepage = http://linuxbrit.co.uk/giblib/; 16 + description = "wrapper library for imlib2, and other stuff"; 15 17 platforms = stdenv.lib.platforms.unix; 18 + license = stdenv.lib.licenses.mit; 16 19 }; 17 20 }
+18 -6
pkgs/development/libraries/imlib2/default.nix
··· 1 - { stdenv, fetchurl, xlibsWrapper, libjpeg, libtiff, giflib, libpng, bzip2, pkgconfig }: 1 + { stdenv, fetchurl, libjpeg, libtiff, giflib, libpng, bzip2, pkgconfig 2 + , freetype 3 + , x11Support ? true, xlibsWrapper ? null }: 4 + 5 + with stdenv.lib; 2 6 3 7 stdenv.mkDerivation rec { 4 8 name = "imlib2-1.4.9"; ··· 8 12 sha256 = "08809xxk2555yj6glixzw9a0x3x8cx55imd89kj3r0h152bn8a3x"; 9 13 }; 10 14 11 - buildInputs = [ xlibsWrapper libjpeg libtiff giflib libpng bzip2 ]; 15 + buildInputs = [ libjpeg libtiff giflib libpng bzip2 freetype ] 16 + ++ optional x11Support xlibsWrapper; 12 17 13 18 nativeBuildInputs = [ pkgconfig ]; 14 19 ··· 21 26 22 27 # Do not build amd64 assembly code on Darwin, because it fails to compile 23 28 # with unknow directive errors 24 - configureFlags = if stdenv.isDarwin then [ "--enable-amd64=no" ] else null; 29 + configureFlags = optional stdenv.isDarwin "--enable-amd64=no" 30 + ++ optional (!x11Support) "--without-x"; 31 + 32 + outputs = [ "out" "bin" "dev" ]; 33 + 34 + postInstall = '' 35 + moveToOutput bin/imlib2-config "$dev" 36 + ''; 25 37 26 38 meta = { 27 39 description = "Image manipulation library"; ··· 34 46 easily, without sacrificing speed. 35 47 ''; 36 48 37 - license = stdenv.lib.licenses.free; 38 - platforms = stdenv.lib.platforms.unix; 39 - maintainers = with stdenv.lib.maintainers; [ spwhitt ]; 49 + license = licenses.free; 50 + platforms = platforms.unix; 51 + maintainers = with maintainers; [ spwhitt ]; 40 52 }; 41 53 }
+5 -8
pkgs/development/libraries/libaacs/default.nix
··· 7 7 # http://vlc-bluray.whoknowsmy.name/ 8 8 # https://wiki.archlinux.org/index.php/BluRay 9 9 10 - let baseName = "libaacs"; 11 - version = "0.8.1"; 12 - in 13 - 14 - stdenv.mkDerivation { 15 - name = "${baseName}-${version}"; 10 + stdenv.mkDerivation rec { 11 + name = "libaacs-${version}"; 12 + version = "0.8.1"; 16 13 17 14 src = fetchurl { 18 - url = "http://get.videolan.org/${baseName}/${version}/${baseName}-${version}.tar.bz2"; 15 + url = "http://get.videolan.org/libaacs/${version}/${name}.tar.bz2"; 19 16 sha256 = "1s5v075hnbs57995r6lljm79wgrip3gnyf55a0y7bja75jh49hwm"; 20 17 }; 21 18 ··· 24 21 nativeBuildInputs = [ yacc flex ]; 25 22 26 23 meta = with stdenv.lib; { 27 - homepage = https://www.videolan.org/developers/libaacs.html; 24 + homepage = "https://www.videolan.org/developers/libaacs.html"; 28 25 description = "Library to access AACS protected Blu-Ray disks"; 29 26 license = licenses.lgpl21; 30 27 maintainers = with maintainers; [ abbradar ];
+2 -2
pkgs/development/libraries/libarchive/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 name = "libarchive-${version}"; 13 - version = "3.2.1"; 13 + version = "3.2.2"; 14 14 15 15 src = fetchurl { 16 16 url = "${meta.homepage}/downloads/${name}.tar.gz"; 17 - sha256 = "1lngng84k1kkljl74q0cdqc3s82vn2kimfm02dgm4d6m7x71mvkj"; 17 + sha256 = "03q6y428rg723c9fj1vidzjw46w1vf8z0h95lkvz1l9jw571j739"; 18 18 }; 19 19 20 20 outputs = [ "out" "lib" "dev" ];
+5 -9
pkgs/development/libraries/libbdplus/default.nix
··· 7 7 # http://vlc-bluray.whoknowsmy.name/ 8 8 # https://wiki.archlinux.org/index.php/BluRay 9 9 10 - 11 - let baseName = "libbdplus"; 12 - version = "0.1.2"; 13 - in 14 - 15 - stdenv.mkDerivation { 16 - name = "${baseName}-${version}"; 10 + stdenv.mkDerivation rec { 11 + name = "libbdplus-${version}"; 12 + version = "0.1.2"; 17 13 18 14 src = fetchurl { 19 - url = "http://get.videolan.org/${baseName}/${version}/${baseName}-${version}.tar.bz2"; 15 + url = "http://get.videolan.org/libbdplus/${version}/${name}.tar.bz2"; 20 16 sha256 = "02n87lysqn4kg2qk7d1ffrp96c44zkdlxdj0n16hbgrlrpiwlcd6"; 21 17 }; 22 18 ··· 25 21 nativeBuildInputs = [ ]; 26 22 27 23 meta = with stdenv.lib; { 28 - homepage = http://www.videolan.org/developers/libbdplus.html; 24 + homepage = "http://www.videolan.org/developers/libbdplus.html"; 29 25 description = "Library to access BD+ protected Blu-Ray disks"; 30 26 license = licenses.lgpl21; 31 27 maintainers = with maintainers; [ abbradar ];
+3 -4
pkgs/development/libraries/libbluray/default.nix
··· 18 18 # https://wiki.archlinux.org/index.php/BluRay 19 19 20 20 stdenv.mkDerivation rec { 21 - baseName = "libbluray"; 21 + name = "libbluray-${version}"; 22 22 version = "0.9.2"; 23 - name = "${baseName}-${version}"; 24 23 25 24 src = fetchurl { 26 - url = "http://get.videolan.org/${baseName}/${version}/${name}.tar.bz2"; 25 + url = "http://get.videolan.org/libbluray/${version}/${name}.tar.bz2"; 27 26 sha256 = "1sp71j4agcsg17g6b85cqz78pn5vknl5pl39rvr6mkib5ps99jgg"; 28 27 }; 29 28 ··· 55 54 patches = stdenv.lib.optional withJava ./BDJ-JARFILE-path.patch; 56 55 57 56 meta = with stdenv.lib; { 58 - homepage = http://www.videolan.org/developers/libbluray.html; 57 + homepage = "http://www.videolan.org/developers/libbluray.html"; 59 58 description = "Library to access Blu-Ray disks for video playback"; 60 59 license = licenses.lgpl21; 61 60 maintainers = [ maintainers.abbradar ];
+3 -3
pkgs/development/libraries/libburn/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "libburn-${version}"; 5 - version = "1.4.4"; 5 + version = "1.4.6"; 6 6 7 7 src = fetchurl { 8 8 url = "http://files.libburnia-project.org/releases/${name}.tar.gz"; 9 - sha256 = "053x1sj6r5pj5396g007v6l0s7942cy2mh5fd3caqx0jdw6h9xqv"; 9 + sha256 = "0wbh49s3az3sfpai09z1zdgynq7wnwrk31v5589033274nmzldlx"; 10 10 }; 11 11 12 12 meta = with stdenv.lib; { 13 - homepage = http://libburnia-project.org/; 13 + homepage = "http://libburnia-project.org/"; 14 14 description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)"; 15 15 license = licenses.gpl2Plus; 16 16 maintainers = with maintainers; [ abbradar vrthra ];
+1 -2
pkgs/development/libraries/libevent/default.nix
··· 1 - { stdenv, fetchurl, autoreconfHook, openssl, findutils }: 1 + { stdenv, fetchurl, openssl, findutils }: 2 2 3 3 let version = "2.0.22"; in 4 4 stdenv.mkDerivation { ··· 12 12 outputs = [ "out" "dev" ]; 13 13 outputBin = "dev"; 14 14 15 - nativeBuildInputs = [ autoreconfHook ]; 16 15 buildInputs = [ openssl ] ++ stdenv.lib.optional stdenv.isCygwin findutils; 17 16 18 17 meta = with stdenv.lib; {
+3 -3
pkgs/development/libraries/libisofs/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "libisofs-${version}"; 5 - version = "1.4.4"; 5 + version = "1.4.6"; 6 6 7 7 src = fetchurl { 8 8 url = "http://files.libburnia-project.org/releases/${name}.tar.gz"; 9 - sha256 = "1zdx56k847c80ds5yf40hh0a26lkqrc0v11r589dqlm6xvzg0614"; 9 + sha256 = "02m5g6lbmmkh2xc5xzq5zaf3ma6v31gls66aj886b3cq9qw0paql"; 10 10 }; 11 11 12 12 buildInputs = [ attr zlib ]; 13 13 propagatedBuildInputs = [ acl ]; 14 14 15 15 meta = with stdenv.lib; { 16 - homepage = http://libburnia-project.org/; 16 + homepage = "http://libburnia-project.org/"; 17 17 description = "A library to create an ISO-9660 filesystem with extensions like RockRidge or Joliet"; 18 18 license = licenses.gpl2Plus; 19 19 maintainers = with maintainers; [ abbradar vrthra ];
+4 -4
pkgs/development/libraries/libproxy/default.nix
··· 1 - { stdenv, fetchFromGitHub, pkgconfig, cmake, zlib, glib }: 1 + { stdenv, lib, fetchFromGitHub, pkgconfig, cmake 2 + , dbus, networkmanager, spidermonkey_1_8_5 }: 2 3 3 4 stdenv.mkDerivation rec { 4 5 name = "libproxy-${version}"; ··· 14 15 outputs = [ "out" "dev" ]; # to deal with propagatedBuildInputs 15 16 16 17 nativeBuildInputs = [ pkgconfig cmake ]; 17 - propagatedBuildInputs = [ zlib ] 18 - # now some optional deps, but many more are possible 19 - ++ [ glib ]; 18 + 19 + buildInputs = [ dbus networkmanager spidermonkey_1_8_5 ]; 20 20 21 21 meta = with stdenv.lib; { 22 22 platforms = platforms.linux;
+3 -47
pkgs/development/libraries/libtiff/default.nix
··· 1 1 { stdenv, fetchurl, fetchpatch, pkgconfig, zlib, libjpeg, xz }: 2 2 3 3 let 4 - version = "4.0.6"; 5 - debversion = "3"; 4 + version = "4.0.7"; 6 5 in 7 6 stdenv.mkDerivation rec { 8 7 name = "libtiff-${version}"; 9 8 10 9 src = fetchurl { 11 10 url = "http://download.osgeo.org/libtiff/tiff-${version}.tar.gz"; 12 - sha256 = "136nf1rj9dp5jgv1p7z4dk0xy3wki1w0vfjbk82f645m0w4samsd"; 11 + sha256 = "06ghqhr4db1ssq0acyyz49gr8k41gzw6pqb6mbn5r7jqp77s4hwz"; 13 12 }; 14 13 15 14 outputs = [ "bin" "dev" "out" "doc" ]; ··· 20 19 21 20 enableParallelBuilding = true; 22 21 23 - patches = let p = "https://sources.debian.net/data/main/t/tiff/${version}-${debversion}/debian/patches"; in [ 24 - (fetchurl { 25 - url = "${p}/01-CVE-2015-8665_and_CVE-2015-8683.patch"; 26 - sha256 = "0qiiqpbbsf01b59x01z38cg14pmg1ggcsqm9n1gsld6rr5wm3ryz"; 27 - }) 28 - (fetchurl { 29 - url = "${p}/02-fix_potential_out-of-bound_writes_in_decode_functions.patch"; 30 - sha256 = "1ph057w302i2s94rhdw6ksyvpsmg1nlanvc0251x01s23gkdbakv"; 31 - }) 32 - (fetchurl { 33 - url = "${p}/03-fix_potential_out-of-bound_write_in_NeXTDecode.patch"; 34 - sha256 = "1nhjg2gdvyzi4wa2g7nwmzm7nssz9dpdfkwms1rp8i1034qdlgc6"; 35 - }) 36 - (fetchurl { 37 - url = "${p}/04-CVE-2016-5314_CVE-2016-5316_CVE-2016-5320_CVE-2016-5875.patch"; 38 - sha256 = "0n47yk9wcvc9j72yvm5bhpaqq0yfz8jnq9zxbnzx5id9gdxmrkn3"; 39 - }) 40 - (fetchurl { 41 - url = "${p}/05-CVE-2016-6223.patch"; 42 - sha256 = "0r80hil9k6scdjppgyljhm0s2z6c8cm259f0ic0xvxidfaim6g2r"; 43 - }) 44 - (fetchurl { 45 - url = "${p}/06-CVE-2016-5321.patch"; 46 - sha256 = "1aacymlqv6cam8i4nbma9v05r3v3xjpagns7q0ii268h0mhzq6qg"; 47 - }) 48 - (fetchurl { 49 - url = "${p}/07-CVE-2016-5323.patch"; 50 - sha256 = "1xr5hy2fxa71j3fcc1l998pxyblv207ygzyhibwb1lia5zjgblch"; 51 - }) 52 - (fetchurl { 53 - url = "${p}/08-CVE-2016-3623_CVE-2016-3624.patch"; 54 - sha256 = "1xnvwjvgyxi387h1sdiyp4360a3176jmipb7ghm8vwiz7cisdn9z"; 55 - }) 56 - (fetchurl { 57 - url = "${p}/09-CVE-2016-5652.patch"; 58 - sha256 = "1yqfq32gzh21ab2jfqkq13gaz0nin0492l06adzsyhr5brvdhnx8"; 59 - }) 60 - (fetchurl { 61 - url = "${p}/10-CVE-2016-3658.patch"; 62 - sha256 = "01kb8rfk30fgjf1hy0m088yhjfld1yyh4bk3gkg8jx3dl9bd076d"; 63 - }) 64 - ]; 65 - 66 22 doCheck = true; 67 23 68 24 meta = with stdenv.lib; { 69 25 description = "Library and utilities for working with the TIFF image file format"; 70 - homepage = http://www.remotesensing.org/libtiff/; 26 + homepage = http://download.osgeo.org/libtiff; 71 27 license = licenses.libtiff; 72 28 platforms = platforms.unix; 73 29 };
+3 -3
pkgs/development/libraries/libvdpau-va-gl/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "libvdpau-va-gl-${version}"; 6 - version = "0.4.0"; 6 + version = "0.4.2"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "i-rinat"; 10 10 repo = "libvdpau-va-gl"; 11 11 rev = "v${version}"; 12 - sha256 = "1y511jxs0df1fqzjcvb6zln7nbmchv1g6z3lw0z9nsf64ziycj8k"; 12 + sha256 = "0asndybfv8xb0fx73sjjw5kydqrahqkm6n04lh589pbf18s5qlld"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake pkgconfig ]; 16 16 buildInputs = [ libX11 libpthreadstubs libXau libXdmcp libXext libvdpau glib libva ffmpeg mesa_glu ]; 17 17 18 18 meta = with stdenv.lib; { 19 - homepage = https://github.com/i-rinat/libvdpau-va-gl; 19 + homepage = "https://github.com/i-rinat/libvdpau-va-gl"; 20 20 description = "VDPAU driver with OpenGL/VAAPI backend"; 21 21 license = licenses.lgpl3; 22 22 platforms = platforms.linux;
+1 -1
pkgs/development/libraries/libxls/default.nix
··· 14 14 15 15 meta = with stdenv.lib; { 16 16 description = "Extract Cell Data From Excel xls files"; 17 - homepage = http://sourceforge.net/projects/libxls/; 17 + homepage = "http://sourceforge.net/projects/libxls/"; 18 18 license = licenses.bsd2; 19 19 platforms = platforms.unix; 20 20 maintainers = with maintainers; [ abbradar ];
+1 -1
pkgs/development/libraries/opencv/3.x.nix
··· 95 95 (opencvFlag "CUDA" enableCuda) 96 96 (opencvFlag "CUBLAS" enableCuda) 97 97 ] ++ lib.optionals enableContrib [ "-DOPENCV_EXTRA_MODULES_PATH=${contribSrc}/modules" ] 98 - ++ lib.optionals enableCuda [ "-DCUDA_FAST_MATH=ON" ]; 98 + ++ lib.optionals enableCuda [ "-DCUDA_FAST_MATH=ON" ]; 99 99 100 100 enableParallelBuilding = true; 101 101
+4 -2
pkgs/development/libraries/opendkim/default.nix
··· 2 2 , perl, makeWrapper }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "opendkim-2.10.3"; 5 + name = "opendkim-${version}"; 6 + version = "2.10.3"; 7 + 6 8 src = fetchurl { 7 9 url = "mirror://sourceforge/opendkim/files/${name}.tar.gz"; 8 10 sha256 = "06v8bqhh604sz9rh5bvw278issrwjgc4h1wx2pz9a84lpxbvm823"; ··· 21 23 22 24 meta = with stdenv.lib; { 23 25 description = "C library for producing DKIM-aware applications and an open source milter for providing DKIM service"; 24 - homepage = http://www.opendkim.org/; 26 + homepage = "http://www.opendkim.org/"; 25 27 maintainers = with maintainers; [ abbradar ]; 26 28 license = licenses.bsd3; 27 29 platforms = platforms.unix;
+1 -1
pkgs/development/libraries/qpdf/default.nix
··· 26 26 enableParallelBuilding = true; 27 27 28 28 meta = with stdenv.lib; { 29 - homepage = http://qpdf.sourceforge.net/; 29 + homepage = "http://qpdf.sourceforge.net/"; 30 30 description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files"; 31 31 license = licenses.artistic2; 32 32 maintainers = with maintainers; [ abbradar ];
+2 -2
pkgs/development/libraries/qt-5/5.6/fetch.sh
··· 1 - WGET_ARGS=( http://download.qt.io/official_releases/qt/5.6/5.6.1-1/submodules/ \ 2 - http://download.qt.io/community_releases/5.6/5.6.1/ \ 1 + WGET_ARGS=( http://download.qt.io/official_releases/qt/5.6/5.6.2/submodules/ \ 2 + http://download.qt.io/community_releases/5.6/5.6.2/ \ 3 3 -A '*.tar.xz' )
-1
pkgs/development/libraries/qt-5/5.6/qtbase/default.nix
··· 115 115 -widgets 116 116 -opengl desktop 117 117 -qml-debug 118 - -nis 119 118 -iconv 120 119 -icu 121 120 -pch
+135 -143
pkgs/development/libraries/qt-5/5.6/srcs.nix
··· 1 - # DO NOT EDIT! This file is generated automatically by manifest.sh 1 + # DO NOT EDIT! This file is generated automatically by fetch-kde-qt.sh 2 2 { fetchurl, mirror }: 3 3 4 4 { 5 - qtwebkit = { 6 - version = "5.6.1"; 7 - src = fetchurl { 8 - url = "${mirror}/community_releases/5.6/5.6.1/qtwebkit-opensource-src-5.6.1.tar.xz"; 9 - sha256 = "1akjqvjavl0vn8a8hnmvqc26mf4ljvwjdm07x6dmmdnjzajvzkzm"; 10 - name = "qtwebkit-opensource-src-5.6.1.tar.xz"; 11 - }; 12 - }; 13 5 qt3d = { 14 - version = "5.6.1-1"; 6 + version = "5.6.2"; 15 7 src = fetchurl { 16 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qt3d-opensource-src-5.6.1-1.tar.xz"; 17 - sha256 = "1nxpcjsarcp40m4y18kyy9a5md56wnafll03j8c6q19rba9bcwbf"; 18 - name = "qt3d-opensource-src-5.6.1-1.tar.xz"; 8 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qt3d-opensource-src-5.6.2.tar.xz"; 9 + sha256 = "0hg91j3brsbh75why6j0527z5myk1r9s7q9z45q6qp0gdvdqc5x2"; 10 + name = "qt3d-opensource-src-5.6.2.tar.xz"; 19 11 }; 20 12 }; 21 13 qtactiveqt = { 22 - version = "5.6.1-1"; 14 + version = "5.6.2"; 23 15 src = fetchurl { 24 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtactiveqt-opensource-src-5.6.1-1.tar.xz"; 25 - sha256 = "00bj9c0x3ax34gpibaap3wpchkv4wapsydiz01fb0xzs1fy94nbf"; 26 - name = "qtactiveqt-opensource-src-5.6.1-1.tar.xz"; 16 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtactiveqt-opensource-src-5.6.2.tar.xz"; 17 + sha256 = "1a3mai3d0l2a8gyjkjng1r7y9y27yppxc5rdzxsgc4kq58rflghw"; 18 + name = "qtactiveqt-opensource-src-5.6.2.tar.xz"; 27 19 }; 28 20 }; 29 21 qtandroidextras = { 30 - version = "5.6.1-1"; 22 + version = "5.6.2"; 31 23 src = fetchurl { 32 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtandroidextras-opensource-src-5.6.1-1.tar.xz"; 33 - sha256 = "0xhm4053y9hqnz5y3y4rwycniq0mb1al1rds3jx636211y039xhk"; 34 - name = "qtandroidextras-opensource-src-5.6.1-1.tar.xz"; 24 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtandroidextras-opensource-src-5.6.2.tar.xz"; 25 + sha256 = "164mkmzswqwjzhs9cwdq361yb60bx6is37740jglrjxgss1phmhr"; 26 + name = "qtandroidextras-opensource-src-5.6.2.tar.xz"; 35 27 }; 36 28 }; 37 29 qtbase = { 38 - version = "5.6.1-1"; 30 + version = "5.6.2"; 39 31 src = fetchurl { 40 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtbase-opensource-src-5.6.1-1.tar.xz"; 41 - sha256 = "0fbwprlhqmdyhh2wb9122fcpq7pbil530iak482b9sy5gqs7i5ij"; 42 - name = "qtbase-opensource-src-5.6.1-1.tar.xz"; 32 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtbase-opensource-src-5.6.2.tar.xz"; 33 + sha256 = "11z73qgzbyj1cwjdkng94cz46wam8frsw0bs705gx0nrqn9swvig"; 34 + name = "qtbase-opensource-src-5.6.2.tar.xz"; 43 35 }; 44 36 }; 45 37 qtcanvas3d = { 46 - version = "5.6.1-1"; 38 + version = "5.6.2"; 47 39 src = fetchurl { 48 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtcanvas3d-opensource-src-5.6.1-1.tar.xz"; 49 - sha256 = "13127xws6xfkkk1x617bgdzl96l66nd0v82dibdnxnpfa702rl44"; 50 - name = "qtcanvas3d-opensource-src-5.6.1-1.tar.xz"; 40 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtcanvas3d-opensource-src-5.6.2.tar.xz"; 41 + sha256 = "1bd01ag2p1445ffckyyi3sxi4vssflp95kmbrj99dy83dc04sn6p"; 42 + name = "qtcanvas3d-opensource-src-5.6.2.tar.xz"; 51 43 }; 52 44 }; 53 45 qtconnectivity = { 54 - version = "5.6.1-1"; 46 + version = "5.6.2"; 55 47 src = fetchurl { 56 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtconnectivity-opensource-src-5.6.1-1.tar.xz"; 57 - sha256 = "0sr6sxp0q45pacs25knr28139xdrphcjgrwlksdhdpsryfw19mzi"; 58 - name = "qtconnectivity-opensource-src-5.6.1-1.tar.xz"; 48 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtconnectivity-opensource-src-5.6.2.tar.xz"; 49 + sha256 = "1ygdmd7fh2fhhyv58zxl1lglr85iajs9gv6c0pv64gbhw0ijjrqv"; 50 + name = "qtconnectivity-opensource-src-5.6.2.tar.xz"; 59 51 }; 60 52 }; 61 53 qtdeclarative = { 62 - version = "5.6.1-1"; 54 + version = "5.6.2"; 63 55 src = fetchurl { 64 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtdeclarative-opensource-src-5.6.1-1.tar.xz"; 65 - sha256 = "094gx5mzqzcga97y7ihf052b6i5iv512lh7m0702m5q94nsn1pqw"; 66 - name = "qtdeclarative-opensource-src-5.6.1-1.tar.xz"; 67 - }; 68 - }; 69 - qtdeclarative-render2d = { 70 - version = "5.6.1-1"; 71 - src = fetchurl { 72 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtdeclarative-render2d-opensource-src-5.6.1-1.tar.xz"; 73 - sha256 = "0kqmb3792rg9fx12m64x87ahcrh0g9krg77mv0ssx3g4gvsgcibc"; 74 - name = "qtdeclarative-render2d-opensource-src-5.6.1-1.tar.xz"; 56 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtdeclarative-opensource-src-5.6.2.tar.xz"; 57 + sha256 = "1nh989jp2gdp5bxa62n3g1whs2pzrl44sh4ca6x9icrnpj3ak1h0"; 58 + name = "qtdeclarative-opensource-src-5.6.2.tar.xz"; 75 59 }; 76 60 }; 77 61 qtdoc = { 78 - version = "5.6.1-1"; 62 + version = "5.6.2"; 79 63 src = fetchurl { 80 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtdoc-opensource-src-5.6.1-1.tar.xz"; 81 - sha256 = "1yf3g3h72ndrp88h8g21mzgqdz2ixwkvpav03i3jnrgy2pf7nssp"; 82 - name = "qtdoc-opensource-src-5.6.1-1.tar.xz"; 64 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtdoc-opensource-src-5.6.2.tar.xz"; 65 + sha256 = "0s78c5bpj4lcx63x2y5a6scxv6sszvs4dlj4qy86jkwmm7m1wsgn"; 66 + name = "qtdoc-opensource-src-5.6.2.tar.xz"; 83 67 }; 84 68 }; 85 69 qtenginio = { 86 - version = "1.6.1"; 70 + version = "1.6.2"; 87 71 src = fetchurl { 88 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtenginio-opensource-src-1.6.1.tar.xz"; 89 - sha256 = "17hsrhzy9zdvpbzja45aac6jr7jzzjl206vma96b9w73rbgxa50f"; 90 - name = "qtenginio-opensource-src-1.6.1.tar.xz"; 72 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtenginio-opensource-src-1.6.2.tar.xz"; 73 + sha256 = "1hywpl1x9lbpqqjdw5wwwhx0gg0j7y260iqaz47anxaa466w7zwh"; 74 + name = "qtenginio-opensource-src-1.6.2.tar.xz"; 91 75 }; 92 76 }; 93 77 qtgraphicaleffects = { 94 - version = "5.6.1-1"; 78 + version = "5.6.2"; 95 79 src = fetchurl { 96 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtgraphicaleffects-opensource-src-5.6.1-1.tar.xz"; 97 - sha256 = "0560800fa9sd6dw1vk0ia9vq8ywdrwch2cpsi1vmh4iyxgwfr71b"; 98 - name = "qtgraphicaleffects-opensource-src-5.6.1-1.tar.xz"; 80 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtgraphicaleffects-opensource-src-5.6.2.tar.xz"; 81 + sha256 = "0pp71gqfgbl5ra15jp8kr4p3sl9gs7cv4x6vjv9i5a3j5jn0z7qy"; 82 + name = "qtgraphicaleffects-opensource-src-5.6.2.tar.xz"; 99 83 }; 100 84 }; 101 85 qtimageformats = { 102 - version = "5.6.1-1"; 86 + version = "5.6.2"; 103 87 src = fetchurl { 104 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtimageformats-opensource-src-5.6.1-1.tar.xz"; 105 - sha256 = "1p98acvsm3azka2by1ph4gdb31qbnndrr5k5wns4xk2d760y8ifc"; 106 - name = "qtimageformats-opensource-src-5.6.1-1.tar.xz"; 88 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtimageformats-opensource-src-5.6.2.tar.xz"; 89 + sha256 = "1r27s5dy9c016ia5xgpbs7nfvmmrnd051dmsrv5r7hyscaz57cag"; 90 + name = "qtimageformats-opensource-src-5.6.2.tar.xz"; 107 91 }; 108 92 }; 109 93 qtlocation = { 110 - version = "5.6.1-1"; 94 + version = "5.6.2"; 111 95 src = fetchurl { 112 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtlocation-opensource-src-5.6.1-1.tar.xz"; 113 - sha256 = "0my4pbcxa58yzvdh65l5qx99ln03chjr5c3ml5v37wfk7nx23k69"; 114 - name = "qtlocation-opensource-src-5.6.1-1.tar.xz"; 96 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtlocation-opensource-src-5.6.2.tar.xz"; 97 + sha256 = "0fnj51f6fll1z1xsfp3g73al70hsg993gh1k7aa0y8nhdqh9b2bs"; 98 + name = "qtlocation-opensource-src-5.6.2.tar.xz"; 115 99 }; 116 100 }; 117 101 qtmacextras = { 118 - version = "5.6.1-1"; 102 + version = "5.6.2"; 119 103 src = fetchurl { 120 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtmacextras-opensource-src-5.6.1-1.tar.xz"; 121 - sha256 = "07j26d5g7av4c6alggg5hssqpvdh555zmn1cpr8xrhx1hpbdnaas"; 122 - name = "qtmacextras-opensource-src-5.6.1-1.tar.xz"; 104 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtmacextras-opensource-src-5.6.2.tar.xz"; 105 + sha256 = "05chq7dqgvlfzpqf1y9inxp0kx6hfzwbc5kswpp6gsnsyfln6ll5"; 106 + name = "qtmacextras-opensource-src-5.6.2.tar.xz"; 123 107 }; 124 108 }; 125 109 qtmultimedia = { 126 - version = "5.6.1-1"; 110 + version = "5.6.2"; 127 111 src = fetchurl { 128 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtmultimedia-opensource-src-5.6.1-1.tar.xz"; 129 - sha256 = "0paffx0614ivjbf87lr9klpbqik6r1pzbc14l41np6d9jv3dqa2f"; 130 - name = "qtmultimedia-opensource-src-5.6.1-1.tar.xz"; 112 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtmultimedia-opensource-src-5.6.2.tar.xz"; 113 + sha256 = "1bwcpc1s6yjvgpqbn22k4mdfjy9lhs89bbzwlgj5psy0qskp16nb"; 114 + name = "qtmultimedia-opensource-src-5.6.2.tar.xz"; 131 115 }; 132 116 }; 133 - qtquickcontrols2 = { 134 - version = "5.6.1-1"; 117 + qtquickcontrols = { 118 + version = "5.6.2"; 135 119 src = fetchurl { 136 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtquickcontrols2-opensource-src-5.6.1-1.tar.xz"; 137 - sha256 = "0wfa2xcqsvx3zihd5nb9f9qhq0xn14c03sw1qdymzfsryqwmk4ac"; 138 - name = "qtquickcontrols2-opensource-src-5.6.1-1.tar.xz"; 120 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtquickcontrols-opensource-src-5.6.2.tar.xz"; 121 + sha256 = "0b0h8svlzvq23kcmam7ng697bzcq4x3haymmn7gj40p15clz5l2y"; 122 + name = "qtquickcontrols-opensource-src-5.6.2.tar.xz"; 139 123 }; 140 124 }; 141 - qtquickcontrols = { 142 - version = "5.6.1-1"; 125 + qtquickcontrols2 = { 126 + version = "5.6.2"; 143 127 src = fetchurl { 144 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtquickcontrols-opensource-src-5.6.1-1.tar.xz"; 145 - sha256 = "0cjzf844r7wi32ssc9vbw1a2m9hnr8c0i1p7yyljy962ifplf401"; 146 - name = "qtquickcontrols-opensource-src-5.6.1-1.tar.xz"; 128 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtquickcontrols2-opensource-src-5.6.2.tar.xz"; 129 + sha256 = "1hgydll95by0rvfpv3sprxq0hkdrpacynaaq2jzaw0a7m881gp09"; 130 + name = "qtquickcontrols2-opensource-src-5.6.2.tar.xz"; 147 131 }; 148 132 }; 149 133 qtscript = { 150 - version = "5.6.1-1"; 134 + version = "5.6.2"; 151 135 src = fetchurl { 152 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtscript-opensource-src-5.6.1-1.tar.xz"; 153 - sha256 = "1gini9483flqa9q4a4bl81bh7g5s408bycqykqhgbklmfd29y5lx"; 154 - name = "qtscript-opensource-src-5.6.1-1.tar.xz"; 136 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtscript-opensource-src-5.6.2.tar.xz"; 137 + sha256 = "03hi2j64l0mgs8p0w1jaz53zsa4lfpbgskydaxxiiqnaf6rgcvp0"; 138 + name = "qtscript-opensource-src-5.6.2.tar.xz"; 155 139 }; 156 140 }; 157 141 qtsensors = { 158 - version = "5.6.1-1"; 142 + version = "5.6.2"; 159 143 src = fetchurl { 160 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtsensors-opensource-src-5.6.1-1.tar.xz"; 161 - sha256 = "0kcrvf6vzn6g2v2m70f9r3raalzmfp48rwjlqhss3w84jfz3y04r"; 162 - name = "qtsensors-opensource-src-5.6.1-1.tar.xz"; 144 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtsensors-opensource-src-5.6.2.tar.xz"; 145 + sha256 = "09rl0njijl3cgh6l3pfij2rhnsg10axkl37llkbz1wmlma0r1057"; 146 + name = "qtsensors-opensource-src-5.6.2.tar.xz"; 163 147 }; 164 148 }; 165 149 qtserialbus = { 166 - version = "5.6.1-1"; 150 + version = "5.6.2"; 167 151 src = fetchurl { 168 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtserialbus-opensource-src-5.6.1-1.tar.xz"; 169 - sha256 = "0li4g70s5vfb517ag0d6405ymsknvvny1c8x66w7qs8a8mnk1jq5"; 170 - name = "qtserialbus-opensource-src-5.6.1-1.tar.xz"; 152 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtserialbus-opensource-src-5.6.2.tar.xz"; 153 + sha256 = "09pqr9f6kl3wq4858vksbzxnrrnqxblivmayjf126lwi2q4n14mk"; 154 + name = "qtserialbus-opensource-src-5.6.2.tar.xz"; 171 155 }; 172 156 }; 173 157 qtserialport = { 174 - version = "5.6.1-1"; 158 + version = "5.6.2"; 175 159 src = fetchurl { 176 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtserialport-opensource-src-5.6.1-1.tar.xz"; 177 - sha256 = "135cbgghxk0c6dblmyyrw6znfb9m8sac9hhyc2dm6vq7vzy8id52"; 178 - name = "qtserialport-opensource-src-5.6.1-1.tar.xz"; 160 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtserialport-opensource-src-5.6.2.tar.xz"; 161 + sha256 = "0xpkjkn6w0g3p7hmm12b2c96f7q98rmk2dcn321x4arcmldjhxmg"; 162 + name = "qtserialport-opensource-src-5.6.2.tar.xz"; 179 163 }; 180 164 }; 181 165 qtsvg = { 182 - version = "5.6.1-1"; 166 + version = "5.6.2"; 183 167 src = fetchurl { 184 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtsvg-opensource-src-5.6.1-1.tar.xz"; 185 - sha256 = "1w0jvhgaiddafcms2nv8wl1klg07lncmjwm1zhdw3l6rxi9071sw"; 186 - name = "qtsvg-opensource-src-5.6.1-1.tar.xz"; 168 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtsvg-opensource-src-5.6.2.tar.xz"; 169 + sha256 = "0kmwr3fphs7ddgxmqzy53f8p2hbp1gfmjdaig5vswc8vcszn38zp"; 170 + name = "qtsvg-opensource-src-5.6.2.tar.xz"; 187 171 }; 188 172 }; 189 173 qttools = { 190 - version = "5.6.1-1"; 174 + version = "5.6.2"; 191 175 src = fetchurl { 192 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qttools-opensource-src-5.6.1-1.tar.xz"; 193 - sha256 = "0haic027a2d7p7k8xz83fbvci4a4dln34360rlwgy7hlyy5m4nip"; 194 - name = "qttools-opensource-src-5.6.1-1.tar.xz"; 176 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qttools-opensource-src-5.6.2.tar.xz"; 177 + sha256 = "1dz1i5wwhgb9li095mnmc33mwpbd8nf7sdrc2x3pl9c6hwqv8ayv"; 178 + name = "qttools-opensource-src-5.6.2.tar.xz"; 195 179 }; 196 180 }; 197 181 qttranslations = { 198 - version = "5.6.1-1"; 182 + version = "5.6.2"; 199 183 src = fetchurl { 200 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qttranslations-opensource-src-5.6.1-1.tar.xz"; 201 - sha256 = "03sdzci4pgq6lmxwn25v8x0z5x8g7zgpq2as56dqgj7vp6cvhn8m"; 202 - name = "qttranslations-opensource-src-5.6.1-1.tar.xz"; 184 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qttranslations-opensource-src-5.6.2.tar.xz"; 185 + sha256 = "08d4xyk7njkdbd3m48dzmvdm8ma3s4x8h4jm1ip20wqngi23nybx"; 186 + name = "qttranslations-opensource-src-5.6.2.tar.xz"; 203 187 }; 204 188 }; 205 189 qtwayland = { 206 - version = "5.6.1-1"; 190 + version = "5.6.2"; 207 191 src = fetchurl { 208 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtwayland-opensource-src-5.6.1-1.tar.xz"; 209 - sha256 = "1fnvgpi49ilds3ah9iizxj9qhhb5rnwqd9h03bhkwf0ydywv52c4"; 210 - name = "qtwayland-opensource-src-5.6.1-1.tar.xz"; 192 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtwayland-opensource-src-5.6.2.tar.xz"; 193 + sha256 = "11kciqnqfyzjfnx1m666g35v98jdazsg083h9fv2g5kiyjck2p03"; 194 + name = "qtwayland-opensource-src-5.6.2.tar.xz"; 211 195 }; 212 196 }; 213 197 qtwebchannel = { 214 - version = "5.6.1-1"; 198 + version = "5.6.2"; 215 199 src = fetchurl { 216 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtwebchannel-opensource-src-5.6.1-1.tar.xz"; 217 - sha256 = "10kys3ppjkj60fs1s335fdcpdsbxsjn6ibvm6zph9gqbncabd2l7"; 218 - name = "qtwebchannel-opensource-src-5.6.1-1.tar.xz"; 200 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtwebchannel-opensource-src-5.6.2.tar.xz"; 201 + sha256 = "0lhskzqcijz9x6h8p80ff5dd6ni7zqm23nzljdqbggaibzpzs3kh"; 202 + name = "qtwebchannel-opensource-src-5.6.2.tar.xz"; 219 203 }; 220 204 }; 221 205 qtwebengine = { 222 - version = "5.6.1-1"; 206 + version = "5.6.2"; 207 + src = fetchurl { 208 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtwebengine-opensource-src-5.6.2.tar.xz"; 209 + sha256 = "0h4pyc7r2fx8qsiw3663jd1hg1fid5yv7wil06njpcm8w541c2ig"; 210 + name = "qtwebengine-opensource-src-5.6.2.tar.xz"; 211 + }; 212 + }; 213 + qtwebkit = { 214 + version = "5.6.2"; 223 215 src = fetchurl { 224 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtwebengine-opensource-src-5.6.1-1.tar.xz"; 225 - sha256 = "0k708a34zwkj6hwx3vv5kdvnv3lfgb0iad44zaim5gdpgcir03n8"; 226 - name = "qtwebengine-opensource-src-5.6.1-1.tar.xz"; 216 + url = "${mirror}/community_releases/5.6/5.6.2/qtwebkit-opensource-src-5.6.2.tar.xz"; 217 + sha256 = "0rirszy092pmdvy4vzqkk4p9wwxv8qx4zkp84rxkd5ah3j5np2jj"; 218 + name = "qtwebkit-opensource-src-5.6.2.tar.xz"; 227 219 }; 228 220 }; 229 221 qtwebsockets = { 230 - version = "5.6.1-1"; 222 + version = "5.6.2"; 231 223 src = fetchurl { 232 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtwebsockets-opensource-src-5.6.1-1.tar.xz"; 233 - sha256 = "1fz0x8570zxc00a22skd848svma3p2g3xyxj14jq10559jihqqil"; 234 - name = "qtwebsockets-opensource-src-5.6.1-1.tar.xz"; 224 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtwebsockets-opensource-src-5.6.2.tar.xz"; 225 + sha256 = "0ddsnnp3sn423ryqqa1060cqlbdcp7ncj3zhabifaswfzyxx9n9w"; 226 + name = "qtwebsockets-opensource-src-5.6.2.tar.xz"; 235 227 }; 236 228 }; 237 229 qtwebview = { 238 - version = "5.6.1-1"; 230 + version = "5.6.2"; 239 231 src = fetchurl { 240 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtwebview-opensource-src-5.6.1-1.tar.xz"; 241 - sha256 = "19954snfw073flxn0qk5ayxyzk5x6hwhpg4kn4nrl1zygsw3y49l"; 242 - name = "qtwebview-opensource-src-5.6.1-1.tar.xz"; 232 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtwebview-opensource-src-5.6.2.tar.xz"; 233 + sha256 = "1mjix4w71x1w86ykcdhsl7gg7xv9dn2pw6yiaxrp6pxvvk73cyjs"; 234 + name = "qtwebview-opensource-src-5.6.2.tar.xz"; 243 235 }; 244 236 }; 245 237 qtwinextras = { 246 - version = "5.6.1-1"; 238 + version = "5.6.2"; 247 239 src = fetchurl { 248 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtwinextras-opensource-src-5.6.1-1.tar.xz"; 249 - sha256 = "03zkwqrix2nfqkwfn8lsrpgahzx1hv6p1qbvhkqymzakkzjjncgg"; 250 - name = "qtwinextras-opensource-src-5.6.1-1.tar.xz"; 240 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtwinextras-opensource-src-5.6.2.tar.xz"; 241 + sha256 = "1s375b1bf8cqs73mg8chwvj0npr01hpyrwv75srqnxkp61avi1gr"; 242 + name = "qtwinextras-opensource-src-5.6.2.tar.xz"; 251 243 }; 252 244 }; 253 245 qtx11extras = { 254 - version = "5.6.1-1"; 246 + version = "5.6.2"; 255 247 src = fetchurl { 256 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtx11extras-opensource-src-5.6.1-1.tar.xz"; 257 - sha256 = "0yj5yg2dqkrwbgbicmk2rpqsagmi8dsffkrprpsj0fmkx4awhv5y"; 258 - name = "qtx11extras-opensource-src-5.6.1-1.tar.xz"; 248 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtx11extras-opensource-src-5.6.2.tar.xz"; 249 + sha256 = "1v8cnhas3rynqz7b8wryry2qhblrnmnd3v39gdki1hzfz8fdxzvi"; 250 + name = "qtx11extras-opensource-src-5.6.2.tar.xz"; 259 251 }; 260 252 }; 261 253 qtxmlpatterns = { 262 - version = "5.6.1-1"; 254 + version = "5.6.2"; 263 255 src = fetchurl { 264 - url = "${mirror}/official_releases/qt/5.6/5.6.1-1/submodules/qtxmlpatterns-opensource-src-5.6.1-1.tar.xz"; 265 - sha256 = "1966rrk7f6c55k57j33rffdjs77kk4mawrnnl8yv1ckcirxc3np1"; 266 - name = "qtxmlpatterns-opensource-src-5.6.1-1.tar.xz"; 256 + url = "${mirror}/official_releases/qt/5.6/5.6.2/submodules/qtxmlpatterns-opensource-src-5.6.2.tar.xz"; 257 + sha256 = "1k428wj8iffm6rrbvwbw0hksr99xqsxww8iahbk8r38qpzpg6vbw"; 258 + name = "qtxmlpatterns-opensource-src-5.6.2.tar.xz"; 267 259 }; 268 260 }; 269 261 }
+2 -2
pkgs/development/libraries/science/math/ipopt/default.nix
··· 1 1 { stdenv, fetchurl, unzip, openblas, gfortran }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "3.12.6"; 5 4 name = "ipopt-${version}"; 5 + version = "3.12.6"; 6 6 7 7 src = fetchurl { 8 8 url = "http://www.coin-or.org/download/source/Ipopt/Ipopt-${version}.zip"; ··· 24 24 25 25 meta = with stdenv.lib; { 26 26 description = "A software package for large-scale nonlinear optimization"; 27 - homepage = https://projects.coin-or.org/Ipopt; 27 + homepage = "https://projects.coin-or.org/Ipopt"; 28 28 license = licenses.epl10; 29 29 platforms = platforms.unix; 30 30 maintainers = with maintainers; [ abbradar ];
+1 -1
pkgs/development/libraries/vc/0.7.nix
··· 1 1 { stdenv, fetchFromGitHub, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.7.5"; 5 4 name = "Vc-${version}"; 5 + version = "0.7.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "VcDevel";
+2 -2
pkgs/development/libraries/vc/default.nix
··· 1 1 { stdenv, fetchFromGitHub, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.2.0"; 5 4 name = "Vc-${version}"; 5 + version = "1.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "VcDevel"; 9 9 repo = "Vc"; 10 10 rev = version; 11 - sha256 = "0qlfvcxv3nmf5drz5bc9kynaljr513pbn7snwgvghm150skmkpfl"; 11 + sha256 = "18vi92xxg0ly0fw4v06fwls11rahmg5z8xf65jxxrbgf37vc1wxi"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+1 -1
pkgs/development/libraries/vcg/default.nix
··· 18 18 ''; 19 19 20 20 meta = with stdenv.lib; { 21 - homepage = http://vcg.isti.cnr.it/vcglib/install.html; 21 + homepage = "http://vcg.isti.cnr.it/vcglib/install.html"; 22 22 description = "C++ library for manipulation, processing and displaying with OpenGL of triangle and tetrahedral meshes"; 23 23 license = licenses.gpl3; 24 24 platforms = platforms.linux;
+2 -2
pkgs/development/libraries/wolfssl/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "wolfssl-${version}"; 5 - version = "3.9.8"; 5 + version = "3.9.10b"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "wolfSSL"; 9 9 repo = "wolfssl"; 10 10 rev = "v${version}"; 11 - sha256 = "0b1a9rmzpzjblj0gsrzas2aljivd0gfimcsj8gjl80ng25zgmaxr"; 11 + sha256 = "1hx543kxi4fpxww0y2c05kaav99zmnxm81rq7v7d87qzmvw2g4gx"; 12 12 }; 13 13 14 14 outputs = [ "out" "dev" "doc" "lib" ];
+2 -2
pkgs/development/libraries/xlslib/default.nix
··· 1 1 { stdenv, fetchurl, autoreconfHook, unzip }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.5.0"; 5 4 name = "xlslib-${version}"; 5 + version = "2.5.0"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/xlslib/xlslib-package-${version}.zip"; ··· 17 17 18 18 meta = with stdenv.lib; { 19 19 description = "C++/C library to construct Excel .xls files in code"; 20 - homepage = http://sourceforge.net/projects/xlslib/; 20 + homepage = "http://sourceforge.net/projects/xlslib/"; 21 21 license = licenses.bsd2; 22 22 platforms = platforms.linux; 23 23 maintainers = with maintainers; [ abbradar ];
+29
pkgs/development/ocaml-modules/ocplib-simplex/default.nix
··· 1 + { stdenv, fetchFromGitHub, autoreconfHook, ocaml, findlib }: 2 + 3 + let 4 + pname = "ocplib-simplex"; 5 + version = "0.3"; 6 + in 7 + 8 + stdenv.mkDerivation { 9 + name = "ocaml${ocaml.version}-${pname}-${version}"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "OCamlPro-Iguernlala"; 13 + repo = pname; 14 + rev = version; 15 + sha256 = "1fmz38w2cj9fny4adqqyil59dvndqkr59s7wk2gqs47r72b6sisa"; 16 + }; 17 + 18 + buildInputs = [ autoreconfHook ocaml findlib ]; 19 + 20 + createFindlibDestdir = true; 21 + 22 + meta = { 23 + description = "An OCaml library implementing a simplex algorithm, in a functional style, for solving systems of linear inequalities"; 24 + homepage = https://github.com/OCamlPro-Iguernlala/ocplib-simplex; 25 + inherit (ocaml.meta) platforms; 26 + license = stdenv.lib.licenses.lgpl21; 27 + maintainers = [ stdenv.lib.maintainers.vbgl ]; 28 + }; 29 + }
-1
pkgs/development/python-modules/blivet/default.nix
··· 28 28 }' blivet/formats/__init__.py 29 29 sed -i -e 's|"lsof"|"${lsof}/bin/lsof"|' blivet/formats/fs.py 30 30 sed -i -r -e 's|"(u?mount)"|"${utillinux}/bin/\1"|' blivet/util.py 31 - sed -i -e '/pvscan/s/, *"--cache"//' blivet/devicelibs/lvm.py 32 31 ''; 33 32 34 33 propagatedBuildInputs = [
+36
pkgs/development/python-modules/magic-wormhole/default.nix
··· 1 + { stdenv, fetchurl, nettools, glibcLocales, pythonPackages }: 2 + 3 + pythonPackages.buildPythonApplication rec { 4 + name = "magic-wormhole-${version}"; 5 + version = "0.8.1"; 6 + 7 + src = fetchurl { 8 + url = "mirror://pypi/m/magic-wormhole/${name}.tar.gz"; 9 + sha256 = "1yh5nbhh9z1am2pqnb5qqyq1zjl1m7z6jnkmvry2q14qwspw9had"; 10 + }; 11 + 12 + buildInputs = [ nettools glibcLocales ]; 13 + propagatedBuildInputs = with pythonPackages; [ autobahn cffi click hkdf pynacl spake2 tqdm ]; 14 + 15 + patchPhase = '' 16 + sed -i -e "s|'ifconfig'|'${nettools}/bin/ifconfig'|" src/wormhole/ipaddrs.py 17 + sed -i -e "s|if (os.path.dirname(os.path.abspath(wormhole))|if not os.path.abspath(wormhole).startswith('/nix/store') and (os.path.dirname(os.path.abspath(wormhole))|" src/wormhole/test/test_scripts.py 18 + # XXX: disable one test due to warning: 19 + # setlocale: LC_ALL: cannot change locale (en_US.UTF-8) 20 + sed -i -e "s|def test_text_subprocess|def skip_test_text_subprocess|" src/wormhole/test/test_scripts.py 21 + ''; 22 + 23 + checkPhase = '' 24 + export PATH="$PATH:$out/bin" 25 + export LANG="en_US.UTF-8" 26 + export LC_ALL="en_US.UTF-8" 27 + ${pythonPackages.python.interpreter} -m wormhole.test.run_trial wormhole 28 + ''; 29 + 30 + meta = with stdenv.lib; { 31 + description = "Securely transfer data between computers"; 32 + homepage = "https://github.com/warner/magic-wormhole"; 33 + license = licenses.mit; 34 + maintainers = with maintainers; [ asymmetric ]; 35 + }; 36 + }
+18
pkgs/development/python-modules/pycryptodome/default.nix
··· 1 + { stdenv, fetchurl, python, buildPythonPackage, gmp }: 2 + 3 + buildPythonPackage rec { 4 + version = "3.4.3"; 5 + name = "pycryptodome-${version}"; 6 + namePrefix = ""; 7 + 8 + src = fetchurl { 9 + url = "mirror://pypi/p/pycryptodome/${name}.tar.gz"; 10 + sha256 = "1x2kk2va77lqys2dd7gwh35m4vrp052zz5hvv1zqxzksg2srf5jb"; 11 + }; 12 + 13 + meta = { 14 + homepage = "https://www.pycryptodome.org/"; 15 + description = "Python Cryptography Toolkit"; 16 + platforms = stdenv.lib.platforms.unix; 17 + }; 18 + }
+1 -1
pkgs/development/tools/analysis/swarm/default.nix
··· 22 22 23 23 meta = with stdenv.lib; { 24 24 description = "Verification script generator for Spin"; 25 - homepage = http://spinroot.com/; 25 + homepage = "http://spinroot.com/"; 26 26 license = licenses.free; 27 27 platforms = platforms.linux; 28 28 maintainers = with maintainers; [ abbradar ];
+2 -2
pkgs/development/tools/build-managers/gradle/default.nix
··· 52 52 }; 53 53 54 54 gradle_latest = gradleGen rec { 55 - name = "gradle-3.2"; 55 + name = "gradle-3.2.1"; 56 56 nativeVersion = "0.11"; 57 57 58 58 src = fetchurl { 59 59 url = "http://services.gradle.org/distributions/${name}-bin.zip"; 60 - sha256 = "0d9911011hg0rsqs7r4fz1xjrx0h43qji8s7f0vw0v926xlb68ak"; 60 + sha256 = "1286wqycc7xnrkn6n37r5g19ajv6igqhavdh9pjxqmry9mjs6hwq"; 61 61 }; 62 62 }; 63 63
+3 -3
pkgs/development/tools/icestorm/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "icestorm-${version}"; 5 - version = "2016.08.18"; 5 + version = "2016.11.01"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cliffordwolf"; 9 9 repo = "icestorm"; 10 - rev = "12b2295c9087d94b75e374bb205ae4d76cf17e2f"; 11 - sha256 = "1mmzlqvap6w8n4qzv3idvy51arkgn03692ssplwncy3akjrbsd2b"; 10 + rev = "01b9822638d60e048c295d005257daa4c147761f"; 11 + sha256 = "088wnf55m9ii98w8j7qc99spq95y19xw4fnnw9mxi7cfkxxggsls"; 12 12 }; 13 13 14 14 buildInputs = [ python3 libftdi ];
+1 -1
pkgs/development/tools/misc/trv/default.nix
··· 25 25 createFindlibDestdir = true; 26 26 dontStrip = true; 27 27 28 - installFlags = "SEMVER=${version} PREFIX=$out"; 28 + installFlags = "SEMVER=${version} PREFIX=$(out)"; 29 29 30 30 meta = with stdenv.lib; { 31 31 homepage = https://github.com/afiniate/trv;
+3 -3
pkgs/development/tools/misc/uhd/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 name = "uhd-${version}"; 12 - version = "3.9.3"; 12 + version = "3.10.1"; 13 13 14 14 # UHD seems to use three different version number styles: x.y.z, xxx_yyy_zzz 15 15 # and xxx.yyy.zzz. Hrmpf... ··· 17 17 src = fetchFromGitHub { 18 18 owner = "EttusResearch"; 19 19 repo = "uhd"; 20 - rev = "release_003_009_003"; 21 - sha256 = "0nbm8nrjd0l8jj1wq0kkgd8pifzysdyc7pvraq16m0dc01mr638h"; 20 + rev = "release_003_010_001_000"; 21 + sha256 = "1wypn1cspwx331ah7awajjhnpyjykiif0h1l4fb3lahxvsnkwi51"; 22 22 }; 23 23 24 24 enableParallelBuilding = true;
+34
pkgs/development/tools/rust/bindgen/default.nix
··· 1 + { stdenv, fetchFromGitHub, rustPlatform, llvmPackages }: 2 + 3 + with rustPlatform; 4 + 5 + # Future work: Automatically communicate NIX_CFLAGS_COMPILE to bindgen's tests and the bindgen executable itself. 6 + 7 + buildRustPackage rec { 8 + name = "rust-bindgen-${version}"; 9 + version = "0.19.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "Yamakaky"; 13 + repo = "rust-bindgen"; 14 + rev = "${version}"; 15 + sha256 = "0pv1vcgp455hys8hb0yj4vrh2k01zysayswkasxq4hca8s2p7qj9"; 16 + }; 17 + 18 + buildInputs = [ llvmPackages.clang-unwrapped ]; 19 + 20 + configurePhase = '' 21 + export LIBCLANG_PATH="${llvmPackages.clang-unwrapped}/lib" 22 + ''; 23 + 24 + depsSha256 = "0rlmdiqjg9ha9yzhcy33abvhrck6sphczc2gbab9zhfa95gxprv8"; 25 + 26 + doCheck = false; # A test fails because it can't find standard headers in NixOS 27 + 28 + meta = with stdenv.lib; { 29 + description = "C binding generator"; 30 + homepage = https://github.com/Yamakaky/rust-bindgen; 31 + license = with licenses; [ bsd3 ]; 32 + maintainers = [ maintainers.ralith ]; 33 + }; 34 + }
+22 -27
pkgs/games/crawl/crawl_purify.patch
··· 1 - diff -ru3 crawl-ref-0.18.1-src-old/crawl-ref/source/Makefile crawl-ref-0.18.1-src/crawl-ref/source/Makefile 2 - --- crawl-ref-0.18.1-src-old/crawl-ref/source/Makefile 1970-01-01 03:00:01.000000000 +0300 3 - +++ crawl-ref-0.18.1-src/crawl-ref/source/Makefile 2016-09-04 17:25:54.310929928 +0300 1 + diff -ru3 crawl-ref-0.19.1-src-old/crawl-ref/source/Makefile crawl-ref-0.19.1-src/crawl-ref/source/Makefile 2 + --- crawl-ref-0.19.1-src-old/crawl-ref/source/Makefile 1970-01-01 03:00:01.000000000 +0300 3 + +++ crawl-ref-0.19.1-src/crawl-ref/source/Makefile 2016-11-23 15:37:15.303077886 +0300 4 4 @@ -285,7 +285,7 @@ 5 5 LIBZ := contrib/install/$(ARCH)/lib/libz.a 6 6 ··· 10 10 else 11 11 # This is totally wrong, works only with some old-style setups, and 12 12 # on some architectures of Debian/new FHS multiarch -- excluding, for 13 - @@ -957,9 +957,9 @@ 14 - SYS_PROPORTIONAL_FONT = $(shell { name=$(OUR_PROPORTIONAL_FONT);\ 15 - {\ 16 - fc-list | sed 's/: .*//' | grep -Fi "/$$name";\ 17 - - for dir in /usr/share/fonts /usr/local/share/fonts /usr/*/lib/X11/fonts;\ 18 - + for dir in ${dejavu_fonts}/share/fonts;\ 19 - do [ -d $$dir ] && echo $$dir; done;\ 20 - - } | xargs -I% find % -type f -iname $$name -print | head -n1; } 2>/dev/null) 21 - + } | xargs -I% find -L % -type f -iname $$name -print | head -n1; } 2>/dev/null) 22 - ifneq (,$(SYS_PROPORTIONAL_FONT)) 23 - ifeq (,$(COPY_FONTS)) 24 - DEFINES += -DPROPORTIONAL_FONT=\"$(SYS_PROPORTIONAL_FONT)\" 25 - @@ -982,9 +982,9 @@ 26 - SYS_MONOSPACED_FONT = $(shell { name=$(OUR_MONOSPACED_FONT);\ 27 - {\ 28 - fc-list | sed 's/: .*//' | grep -Fi "/$$name";\ 29 - - for dir in /usr/share/fonts /usr/local/share/fonts /usr/*/lib/X11/fonts;\ 30 - + for dir in ${dejavu_fonts}/share/fonts;\ 31 - do [ -d $$dir ] && echo $$dir; done;\ 32 - - } | xargs -I% find % -type f -iname $$name -print | head -n1; } 2>/dev/null) 33 - + } | xargs -I% find -L % -type f -iname $$name -print | head -n1; } 2>/dev/null) 34 - ifneq (,$(SYS_MONOSPACED_FONT)) 35 - ifeq (,$(COPY_FONTS)) 36 - DEFINES += -DMONOSPACED_FONT=\"$(SYS_MONOSPACED_FONT)\" 13 + diff -ru3 crawl-ref-0.19.1-src-old/crawl-ref/source/util/find_font crawl-ref-0.19.1-src/crawl-ref/source/util/find_font 14 + --- crawl-ref-0.19.1-src-old/crawl-ref/source/util/find_font 1970-01-01 03:00:01.000000000 +0300 15 + +++ crawl-ref-0.19.1-src/crawl-ref/source/util/find_font 2016-11-23 15:39:04.044031141 +0300 16 + @@ -1,6 +1,6 @@ 17 + #! /bin/sh 18 + 19 + -FONTDIRS="/usr/share/fonts /usr/local/share/fonts /usr/*/lib/X11/fonts" 20 + +FONTDIRS="${fontsPath}/share/fonts" 21 + 22 + name=$1 23 + [ "$name" ] || { echo "Usage: $0 <fontname.ttf>" >&2; exit 100; } 24 + @@ -11,6 +11,6 @@ 25 + for dir in $FONTDIRS; do 26 + [ -d "$dir" ] && echo "$dir" 27 + done 28 + - } | xargs -I% find % \( -type f -o -type l \) -iname "$name" -print \ 29 + + } | xargs -I% find -L % \( -type f -o -type l \) -iname "$name" -print \ 30 + | head -n1 31 + } 2>/dev/null
+13 -12
pkgs/games/crawl/default.nix
··· 1 - { stdenv, fetchFromGitHub, which, sqlite, lua5_1, perl, zlib, pkgconfig, ncurses 2 - , dejavu_fonts, libpng, SDL2, SDL2_image, mesa, freetype, pngcrush 1 + { stdenv, lib, fetchFromGitHub, which, sqlite, lua5_1, perl, zlib, pkgconfig, ncurses 2 + , dejavu_fonts, libpng, SDL2, SDL2_image, mesa, freetype, pngcrush, advancecomp 3 3 , tileMode ? false 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 - name = "crawl-${version}" + (if tileMode then "-tiles" else ""); 8 - version = "0.18.1"; 7 + name = "crawl-${version}${lib.optionalString tileMode "-tiles"}"; 8 + version = "0.19.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "crawl-ref"; 12 12 repo = "crawl-ref"; 13 13 rev = version; 14 - sha256 = "1cg5mxhx0lfhadls6n8avcpkjx08nqf1y085li97zqxl3gjaj64j"; 14 + sha256 = "02iklz5q5h7h27gw86ws8wk5gz1fg86jclkar05nd7zxxgiwsk96"; 15 15 }; 16 16 17 17 patches = [ ./crawl_purify.patch ]; 18 18 19 - nativeBuildInputs = [ pkgconfig which perl pngcrush ]; 19 + nativeBuildInputs = [ pkgconfig which perl pngcrush advancecomp ]; 20 20 21 21 # Still unstable with luajit 22 22 buildInputs = [ lua5_1 zlib sqlite ncurses ] 23 - ++ stdenv.lib.optionals tileMode 24 - [ libpng SDL2 SDL2_image freetype mesa ]; 23 + ++ lib.optionals tileMode [ libpng SDL2 SDL2_image freetype mesa ]; 25 24 26 25 preBuild = '' 27 26 cd crawl-ref/source ··· 33 32 rm -rf contrib 34 33 ''; 35 34 35 + fontsPath = lib.optionalString tileMode dejavu_fonts; 36 + 36 37 makeFlags = [ "prefix=$(out)" "FORCE_CC=gcc" "FORCE_CXX=g++" "HOSTCXX=g++" 37 - "SAVEDIR=~/.crawl" "sqlite=${sqlite.dev}" ] 38 - ++ stdenv.lib.optionals tileMode [ "TILES=y" "dejavu_fonts=${dejavu_fonts}" ]; 38 + "SAVEDIR=~/.crawl" "sqlite=${sqlite.dev}" 39 + ] ++ lib.optional tileMode "TILES=y"; 39 40 40 - postInstall = if tileMode then "mv $out/bin/crawl $out/bin/crawl-tiles" else ""; 41 + postInstall = lib.optionalString tileMode "mv $out/bin/crawl $out/bin/crawl-tiles"; 41 42 42 43 enableParallelBuilding = true; 43 44 44 45 meta = with stdenv.lib; { 45 46 description = "Open-source, single-player, role-playing roguelike game"; 46 - homepage = http://crawl.develz.org/; 47 + homepage = "http://crawl.develz.org/"; 47 48 longDescription = '' 48 49 Open-source, single-player, role-playing roguelike game of exploration and 49 50 treasure-hunting in dungeons filled with dangerous and unfriendly monsters
+2 -5
pkgs/games/dwarf-fortress/default.nix
··· 7 7 self = rec { 8 8 dwarf-fortress-original = callPackage ./game.nix { }; 9 9 10 - dfhack = callPackage_i686 ./dfhack { 11 - inherit (pkgsi686Linux.perlPackages) XMLLibXML XMLLibXSLT; 12 - protobuf = with pkgsi686Linux; protobuf.override { 13 - stdenv = overrideInStdenv stdenv [ useOldCXXAbi ]; 14 - }; 10 + dfhack = callPackage ./dfhack { 11 + inherit (pkgs.perlPackages) XMLLibXML XMLLibXSLT; 15 12 }; 16 13 17 14 dwarf-fortress-unfuck = callPackage ./unfuck.nix { };
+22 -12
pkgs/games/dwarf-fortress/dfhack/default.nix
··· 1 1 { stdenv, fetchgit, cmake, writeScriptBin 2 2 , perl, XMLLibXML, XMLLibXSLT 3 3 , zlib 4 - , jsoncpp, protobuf, tinyxml 5 4 }: 6 5 7 6 let 8 - dfVersion = "0.43.03"; 9 - version = "${dfVersion}-r1"; 7 + dfVersion = "0.43.05"; 8 + # version = "${dfVersion}-r1"; 9 + # rev = "refs/tags/${version}"; 10 + version = "${dfVersion}-alpha2"; 11 + rev = "13eb5e702beb6d8e40c0e17be64cda9a8d9d1efb"; 12 + sha256 = "18i8qfhhfnfrpa519akwagn73q2zns1pry2sdfag63vffxh60zr5"; 10 13 11 - rev = "refs/tags/${version}"; 12 14 # revision of library/xml submodule 13 - xmlRev = "98cc1e01886aaea161d651cf97229ad08e9782b0"; 15 + xmlRev = "84f6e968a9ec5515f9dbef96b445e3fc83f83e8b"; 16 + 17 + arch = 18 + if stdenv.system == "x86_64-linux" then "64" 19 + else if stdenv.system == "i686-linux" then "32" 20 + else throw "Unsupported architecture"; 14 21 15 22 fakegit = writeScriptBin "git" '' 16 23 #! ${stdenv.shell} ··· 35 42 # Beware of submodules 36 43 src = fetchgit { 37 44 url = "https://github.com/DFHack/dfhack"; 38 - inherit rev; 39 - sha256 = "0m5kqpaz0ypji4c32w0hhbsicvgvnjh56pqvq7af6pqqnyg1nzcx"; 45 + inherit rev sha256; 40 46 }; 41 47 42 - patches = [ ./use-system-libraries.patch ]; 48 + patches = [ ./skip-ruby.patch ]; 43 49 44 50 nativeBuildInputs = [ cmake perl XMLLibXML XMLLibXSLT fakegit ]; 45 - # we can't use native Lua; upstream uses private headers 46 - buildInputs = [ zlib jsoncpp protobuf tinyxml ]; 51 + # We don't use system libraries because dfhack needs old C++ ABI. 52 + buildInputs = [ zlib ]; 53 + 54 + preBuild = '' 55 + export LD_LIBRARY_PATH="$PWD/depends/protobuf:$LD_LIBRARY_PATH" 56 + ''; 47 57 48 - cmakeFlags = [ "-DEXTERNAL_TINYXML=ON" ]; 58 + cmakeFlags = [ "-DDFHACK_BUILD_ARCH=${arch}" ]; 49 59 50 60 enableParallelBuilding = true; 51 61 ··· 55 65 description = "Memory hacking library for Dwarf Fortress and a set of tools that use it"; 56 66 homepage = "https://github.com/DFHack/dfhack/"; 57 67 license = licenses.zlib; 58 - platforms = [ "i686-linux" ]; 68 + platforms = [ "x86_64-linux" "i686-linux" ]; 59 69 maintainers = with maintainers; [ robbinch a1russell abbradar ]; 60 70 }; 61 71 }
+16
pkgs/games/dwarf-fortress/dfhack/skip-ruby.patch
··· 1 + diff -ru3 dfhack-ae59b4f/plugins/ruby/CMakeLists.txt dfhack-ae59b4f-new/plugins/ruby/CMakeLists.txt 2 + --- dfhack-ae59b4f/plugins/ruby/CMakeLists.txt 1970-01-01 03:00:01.000000000 +0300 3 + +++ dfhack-ae59b4f-new/plugins/ruby/CMakeLists.txt 2016-11-23 15:29:09.907286546 +0300 4 + @@ -1,3 +1,4 @@ 5 + +IF(FALSE) 6 + IF (APPLE) 7 + SET(RUBYLIB ${CMAKE_CURRENT_SOURCE_DIR}/osx${DFHACK_BUILD_ARCH}/libruby.dylib) 8 + SET(RUBYLIB_INSTALL_NAME "libruby.dylib") 9 + @@ -48,6 +49,7 @@ 10 + "482c1c418f4ee1a5f04203eee1cda0ef") 11 + ENDIF() 12 + ENDIF() 13 + +ENDIF() 14 + 15 + IF (APPLE OR UNIX) 16 + SET(RUBYAUTOGEN ruby-autogen-gcc.rb)
-94
pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch
··· 1 - diff --git a/CMakeLists.txt b/CMakeLists.txt 2 - index 956edfc..fb0e6bc 100644 3 - --- a/CMakeLists.txt 4 - +++ b/CMakeLists.txt 5 - @@ -160,8 +160,6 @@ ELSEIF(MSVC) 6 - SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /Od") 7 - ENDIF() 8 - 9 - -# use shared libraries for protobuf 10 - -ADD_DEFINITIONS(-DPROTOBUF_USE_DLLS) 11 - ADD_DEFINITIONS(-DLUA_BUILD_AS_DLL) 12 - 13 - if(APPLE) 14 - @@ -182,10 +180,8 @@ else() 15 - set(ZLIB_ROOT /usr/lib/i386-linux-gnu) 16 - endif() 17 - find_package(ZLIB REQUIRED) 18 - -include_directories(depends/protobuf) 19 - include_directories(depends/lua/include) 20 - include_directories(depends/md5) 21 - -include_directories(depends/jsoncpp) 22 - 23 - # Support linking against external tinyxml 24 - # If we find an external tinyxml, set the DFHACK_TINYXML variable to "tinyxml" 25 - diff --git a/depends/CMakeLists.txt b/depends/CMakeLists.txt 26 - index d8442b1..b47dc2a 100644 27 - --- a/depends/CMakeLists.txt 28 - +++ b/depends/CMakeLists.txt 29 - @@ -1,7 +1,6 @@ 30 - #list depends here. 31 - add_subdirectory(lua) 32 - add_subdirectory(md5) 33 - -add_subdirectory(protobuf) 34 - 35 - # Don't build tinyxml if it's being externally linked against. 36 - if(NOT TinyXML_FOUND) 37 - @@ -9,7 +8,6 @@ if(NOT TinyXML_FOUND) 38 - endif() 39 - 40 - add_subdirectory(tthread) 41 - -add_subdirectory(jsoncpp) 42 - # build clsocket static and only as a dependency. Setting those options here overrides its own default settings. 43 - OPTION(CLSOCKET_SHARED "Build clsocket lib as shared." OFF) 44 - OPTION(CLSOCKET_DEP_ONLY "Build for use inside other CMake projects as dependency." ON) 45 - diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt 46 - index d3e3480..5d4b572 100644 47 - --- a/library/CMakeLists.txt 48 - +++ b/library/CMakeLists.txt 49 - @@ -223,10 +223,10 @@ LIST(APPEND PROJECT_SOURCES ${PROJECT_PROTO_SRCS}) 50 - 51 - ADD_CUSTOM_COMMAND( 52 - OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} 53 - - COMMAND protoc-bin -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ 54 - + COMMAND protoc -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ 55 - --cpp_out=dllexport_decl=DFHACK_EXPORT:${CMAKE_CURRENT_SOURCE_DIR}/proto/ 56 - ${PROJECT_PROTOS} 57 - - DEPENDS protoc-bin ${PROJECT_PROTOS} 58 - + DEPENDS ${PROJECT_PROTOS} 59 - ) 60 - 61 - # Merge headers into sources 62 - diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt 63 - index c24b940..afeb888 100644 64 - --- a/plugins/CMakeLists.txt 65 - +++ b/plugins/CMakeLists.txt 66 - @@ -47,11 +47,11 @@ STRING(REPLACE ".proto" ".pb.h" PROJECT_PROTO_HDRS "${PROJECT_PROTOS}") 67 - 68 - ADD_CUSTOM_COMMAND( 69 - OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} 70 - - COMMAND protoc-bin -I=${dfhack_SOURCE_DIR}/library/proto/ 71 - + COMMAND protoc -I=${dfhack_SOURCE_DIR}/library/proto/ 72 - -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ 73 - --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ 74 - ${PROJECT_PROTOS} 75 - - DEPENDS protoc-bin ${PROJECT_PROTOS} 76 - + DEPENDS ${PROJECT_PROTOS} 77 - ) 78 - add_custom_target(generate_proto DEPENDS ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS}) 79 - 80 - diff --git a/plugins/stockpiles/CMakeLists.txt b/plugins/stockpiles/CMakeLists.txt 81 - index 713c3d6..dd2d4cb 100644 82 - --- a/plugins/stockpiles/CMakeLists.txt 83 - +++ b/plugins/stockpiles/CMakeLists.txt 84 - @@ -33,8 +33,8 @@ LIST(APPEND PROJECT_SRCS ${PROJECT_HDRS}) 85 - #Generate sources from our proto files and store them in the source tree 86 - ADD_CUSTOM_COMMAND( 87 - OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} 88 - -COMMAND protoc-bin -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS} 89 - -DEPENDS protoc-bin ${PROJECT_PROTOS} 90 - +COMMAND protoc -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS} 91 - +DEPENDS ${PROJECT_PROTOS} 92 - ) 93 - 94 - IF(WIN32)
+4 -4
pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
··· 26 26 rm $out/bin/dwarftherapist 27 27 ''; 28 28 29 - meta = { 29 + meta = with stdenv.lib; { 30 30 description = "Tool to manage dwarves in in a running game of Dwarf Fortress"; 31 - maintainers = with stdenv.lib.maintainers; [ the-kenny abbradar ]; 32 - license = stdenv.lib.licenses.mit; 33 - platforms = stdenv.lib.platforms.linux; 31 + maintainers = with maintainers; [ the-kenny abbradar ]; 32 + license = licenses.mit; 33 + platforms = platforms.linux; 34 34 homepage = "https://github.com/splintermind/Dwarf-Therapist"; 35 35 }; 36 36 }
+2 -2
pkgs/games/dwarf-fortress/themes/cla.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "cla-theme-${version}"; 8 - version = "43.04-v23"; 8 + version = "43.05-v23"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "DFgraphics"; 12 12 repo = "CLA"; 13 13 rev = version; 14 - sha256 = "0a88jkcli9iq0prg5w0xh1cyms0b7dnc9rdahn7wy7fyakyp7s27"; 14 + sha256 = "1i74lyz7mpfrvh5g7rajxldhw7zddc2kp8f6bgfr3hl5l8ym5ci9"; 15 15 }; 16 16 17 17 installPhase = ''
+2 -2
pkgs/games/dwarf-fortress/themes/phoebus.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "phoebus-theme-${version}"; 8 - version = "43.03"; 8 + version = "43.05c"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "DFgraphics"; 12 12 repo = "Phoebus"; 13 13 rev = version; 14 - sha256 = "1mga5w3mks3bm6qch7azffr51g3q26za7hnas4qmxfs3m56bjav7"; 14 + sha256 = "0wiz9rd5ypibgh8854h5n2xwksfxylaziyjpbp3p1rkm3r7kr4fd"; 15 15 }; 16 16 17 17 installPhase = ''
+4 -1
pkgs/games/dwarf-fortress/unfuck.nix
··· 30 30 31 31 enableParallelBuilding = true; 32 32 33 + # Breaks dfhack because of inlining. 34 + hardeningDisable = [ "fortify" ]; 35 + 33 36 passthru.dfVersion = "0.43.05"; 34 37 35 38 meta = with stdenv.lib; { 36 39 description = "Unfucked multimedia layer for Dwarf Fortress"; 37 - homepage = https://github.com/svenstaro/dwarf_fortress_unfuck; 40 + homepage = "https://github.com/svenstaro/dwarf_fortress_unfuck"; 38 41 license = licenses.free; 39 42 platforms = platforms.linux; 40 43 maintainers = with maintainers; [ abbradar ];
+3 -8
pkgs/games/dwarf-fortress/wrapper/default.nix
··· 17 17 18 18 env = buildEnv { 19 19 name = "dwarf-fortress-env-${dwarf-fortress-original.dfVersion}"; 20 + 20 21 paths = pkgs; 22 + pathsToLink = [ "/" "/hack" ]; 21 23 ignoreCollisions = true; 24 + 22 25 postBuild = lib.optionalString enableDFHack '' 23 - # #4621 24 - if [ -L "$out/hack" ]; then 25 - rm $out/hack 26 - mkdir $out/hack 27 - for i in ${dfhack}/hack/*; do 28 - ln -s $i $out/hack 29 - done 30 - fi 31 26 rm $out/hack/symbols.xml 32 27 substitute ${dfhack}/hack/symbols.xml $out/hack/symbols.xml \ 33 28 --replace $(cat ${dwarf-fortress-original}/hash.md5.orig) \
+1 -1
pkgs/games/dwarf-fortress/wrapper/dfhack.in
··· 8 8 9 9 cd "$DF_DIR" 10 10 LD_LIBRARY_PATH="$env_dir/hack/libs:$env_dir/hack:$LD_LIBRARY_PATH" \ 11 - LD_PRELOAD=$env_dir/hack/libdfhack.so exec $env_dir/libs/Dwarf_Fortress "$@" 11 + LD_PRELOAD="$env_dir/hack/libdfhack.so:$LD_PRELOAD" exec $env_dir/libs/Dwarf_Fortress "$@"
+2 -2
pkgs/games/gnuchess/default.nix
··· 3 3 s = # Generated upstream information 4 4 rec { 5 5 baseName="gnuchess"; 6 - version="6.2.3"; 6 + version="6.2.4"; 7 7 name="${baseName}-${version}"; 8 8 url="mirror://gnu/chess/${name}.tar.gz"; 9 - sha256="10hvnfhj9bkpz80x20jgxyqvgvrcgfdp8sfcbcrf1dgjn9v936bq"; 9 + sha256="1vw2w3jwnmn44d5vsw47f8y70xvxcsz9m5msq9fgqlzjch15qhiw"; 10 10 }; 11 11 buildInputs = [ 12 12 flex
+4 -4
pkgs/games/quake3/ioquake/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "ioquake3-git-${version}"; 7 - version = "2016-08-11"; 7 + version = "2016-11-02"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "ioquake"; 11 11 repo = "ioq3"; 12 - rev = "1cf0b21cda562bade9152958f1525e5ac281ab9c"; 13 - sha256 = "104yrgi9dnfb493pm9wvk2kn80nazcr1nllb5vd7di66jnvcjks0"; 12 + rev = "1c1e1f61f180596c925a4ac0eddba4806d1369cd"; 13 + sha256 = "1sx78hzvcbc05g2ikxcmnm6lq7bhgd86dzxnfzqpibcvgrlgsmy1"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ which pkgconfig ]; ··· 29 29 ''; 30 30 31 31 meta = { 32 - homepage = http://ioquake3.org/; 32 + homepage = "http://ioquake3.org/"; 33 33 description = "First person shooter engine based on the Quake 3: Arena and Quake 3: Team Arena"; 34 34 license = lib.licenses.gpl2; 35 35 platforms = lib.platforms.linux;
+1 -1
pkgs/games/scorched3d/default.nix
··· 25 25 NIX_LDFLAGS = [ "-lopenal" ]; 26 26 27 27 meta = with stdenv.lib; { 28 - homepage = http://scorched3d.co.uk/; 28 + homepage = "http://scorched3d.co.uk/"; 29 29 description = "3D Clone of the classic Scorched Earth"; 30 30 license = licenses.gpl2Plus; 31 31 platforms = platforms.linux; # maybe more
+1 -1
pkgs/games/the-powder-toy/default.nix
··· 31 31 32 32 meta = with stdenv.lib; { 33 33 description = "A free 2D physics sandbox game"; 34 - homepage = http://powdertoy.co.uk/; 34 + homepage = "http://powdertoy.co.uk/"; 35 35 platforms = platforms.unix; 36 36 license = licenses.gpl3; 37 37 maintainers = with maintainers; [ abbradar ];
+1 -1
pkgs/games/wesnoth/default.nix
··· 33 33 adventures. 34 34 ''; 35 35 36 - homepage = http://www.wesnoth.org/; 36 + homepage = "http://www.wesnoth.org/"; 37 37 license = licenses.gpl2; 38 38 maintainers = with maintainers; [ kkallio abbradar ]; 39 39 platforms = platforms.linux;
+3 -3
pkgs/games/wesnoth/dev.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "wesnoth"; 8 - version = "1.13.5"; 8 + version = "1.13.6"; 9 9 10 10 name = "${pname}-${version}"; 11 11 12 12 src = fetchurl { 13 13 url = "mirror://sourceforge/sourceforge/${pname}/${name}.tar.bz2"; 14 - sha256 = "15hvf06r7086plwmagh89plcxal2zql8k4mg0yf1zgwjvdz284dx"; 14 + sha256 = "0z4k2r4ss46ik9fx5clffpd7vfr0l4l6d0j1war676dwz0z1j2m1"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ cmake pkgconfig ]; ··· 33 33 adventures. 34 34 ''; 35 35 36 - homepage = http://www.wesnoth.org/; 36 + homepage = "http://www.wesnoth.org/"; 37 37 license = licenses.gpl2; 38 38 maintainers = with maintainers; [ abbradar ]; 39 39 platforms = platforms.linux;
+1 -1
pkgs/misc/drivers/m33-linux/default.nix
··· 16 16 ''; 17 17 18 18 meta = with stdenv.lib; { 19 - homepage = https://github.com/donovan6000/M3D-Linux; 19 + homepage = "https://github.com/donovan6000/M3D-Linux"; 20 20 description = "A Linux program that can communicate with the Micro 3D printer"; 21 21 license = licenses.gpl2; 22 22 platforms = platforms.linux;
+4 -4
pkgs/misc/themes/greybird/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 name = "${pname}-${version}"; 5 5 pname = "Greybird"; 6 - version = "2016-09-13"; 6 + version = "2016-11-15"; 7 7 8 8 src = fetchFromGitHub { 9 - repo = "${pname}"; 10 9 owner = "shimmerproject"; 11 - rev = "1942afc8732f904a1139fd41d7afd74263b87887"; 12 - sha256 = "0qawc7rx5s3mnk5awvlbp6k5m9aj5krb1lasmgl2cb9fk09khf2v"; 10 + repo = "${pname}"; 11 + rev = "0a0853fa1de7545392f32aff33d95a8a1f6dca9e"; 12 + sha256 = "0i9yvd265783pqij6rjh7pllw0l28v975mrahykcwvn9chq8rrqf"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ autoreconfHook sass glib libxml2 gdk_pixbuf librsvg ];
+24 -4
pkgs/misc/vim-plugins/default.nix
··· 2 2 { fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip 3 3 , which, fetchgit, llvmPackages 4 4 , xkb_switch, rustracerd, fzf 5 - , python3 5 + , python3, boost, icu 6 6 , Cocoa ? null 7 7 }: 8 8 ··· 304 304 }; 305 305 306 306 ctrlp-cmatcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation 307 - name = "ctrlp-cmatcher-2016-09-22"; 307 + name = "ctrlp-cmatcher-2015-10-15"; 308 308 src = fetchgit { 309 309 url = "git://github.com/JazzCore/ctrlp-cmatcher"; 310 310 rev = "6c36334f106b6fd981d23e724e9a618734cab43a"; 311 311 sha256 = "1573kd6xf3n8sxlz2j4zadai4rnc7k3s9c54648yfzickwn57d8q"; 312 312 }; 313 313 dependencies = []; 314 - 315 314 buildInputs = [ python ]; 316 - 317 315 buildPhase = '' 318 316 patchShebangs . 319 317 ./install.sh ··· 2112 2110 }; 2113 2111 dependencies = []; 2114 2112 2113 + }; 2114 + 2115 + cpsm = buildVimPluginFrom2Nix { # created by nix#NixDerivation 2116 + name = "cpsm-2016-09-21"; 2117 + src = fetchgit { 2118 + url = "git://github.com/nixprime/cpsm"; 2119 + rev = "565ab53a66fa52c46d80adf6981b07f4bdffcb1d"; 2120 + sha256 = "125gcnqrg2276sp715q924cxwjxwsv3j4m0n1zj17w9srnpn4r1k"; 2121 + }; 2122 + dependencies = []; 2123 + buildInputs = [ 2124 + python3 2125 + stdenv 2126 + cmake 2127 + boost 2128 + icu 2129 + ]; 2130 + buildPhase = '' 2131 + patchShebangs . 2132 + export PY3=ON 2133 + ./install.sh 2134 + ''; 2115 2135 }; 2116 2136 }
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 171 171 "github:jiangmiao/auto-pairs" 172 172 "github:editorconfig/editorconfig-vim" 173 173 "github:heavenshell/vim-jsdoc" 174 + "github:nixprime/cpsm"
+12
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/cpsm
··· 1 + buildInputs = [ 2 + python3 3 + stdenv 4 + cmake 5 + boost 6 + icu 7 + ]; 8 + buildPhase = '' 9 + patchShebangs . 10 + export PY3=ON 11 + ./install.sh 12 + '';
+5
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/ctrlp-cmatcher
··· 1 + buildInputs = [ python ]; 2 + buildPhase = '' 3 + patchShebangs . 4 + ./install.sh 5 + '';
+2
pkgs/os-specific/linux/gradm/default.nix
··· 12 12 sha256 = "0y5565rhil5ciprwz7nx4s4ah7dsxx7zrkg42dbq0mcg8m316xrb"; 13 13 }; 14 14 15 + patches = [ ./gradm_nix_store.patch ]; 16 + 15 17 nativeBuildInputs = [ bison flex ]; 16 18 buildInputs = [ pam ]; 17 19
+31
pkgs/os-specific/linux/gradm/gradm_nix_store.patch
··· 1 + diff -ruN a/gradm_adm.c b/gradm_adm.c 2 + --- a/gradm_adm.c 2016-08-13 18:56:45.000000000 +0200 3 + +++ b/gradm_adm.c 2016-11-26 02:47:05.829718770 +0100 4 + @@ -166,6 +166,8 @@ 5 + ADD_OBJ("/usr/libx32", "rx"); 6 + ADD_OBJ("/lib64", "rx"); 7 + ADD_OBJ("/usr/lib64", "rx"); 8 + + ADD_OBJ("/nix/store", "h"); 9 + + ADD_OBJ("/nix/store/*/lib", "rx"); 10 + ADD_OBJ(gradm_name, "x"); 11 + ADD_OBJ(grpam_path, "x"); 12 + 13 + @@ -286,6 +288,8 @@ 14 + ADD_OBJ("/usr/lib32", "rx"); 15 + ADD_OBJ("/lib64", "rx"); 16 + ADD_OBJ("/usr/lib64", "rx"); 17 + + ADD_OBJ("/nix/store", "h"); 18 + + ADD_OBJ("/nix/store/*/lib", "rx"); 19 + ADD_OBJ("/tmp", ""); 20 + ADD_OBJ("/tmp/krb5cc_pam*", "rwcd"); 21 + ADD_OBJ(grpam_path, "x"); 22 + @@ -369,6 +373,9 @@ 23 + ADD_OBJ("/lib", "rx"); 24 + ADD_OBJ("/lib32", "rx"); 25 + ADD_OBJ("/lib64", "rx"); 26 + + ADD_OBJ("/nix/store", "h"); 27 + + ADD_OBJ("/nix/store/*/bin", "rx"); 28 + + ADD_OBJ("/nix/store/*/lib", "rx"); 29 + ADD_OBJ("/usr", "rx"); 30 + ADD_OBJ("/proc", "r"); 31 + ADD_OBJ("/boot", "h");
+2
pkgs/os-specific/linux/kernel/common-config.nix
··· 27 27 MODULE_COMPRESS_XZ y 28 28 ''} 29 29 30 + KERNEL_XZ y 31 + 30 32 # Debugging. 31 33 DEBUG_KERNEL y 32 34 TIMER_STATS y
+2 -2
pkgs/os-specific/linux/kernel/patches.nix
··· 87 87 88 88 grsecurity_testing = grsecPatch 89 89 { kver = "4.8.10"; 90 - grrev = "201611210813"; 91 - sha256 = "1an1fqzmh133hr6r9y4y9b5qkaf8xwlfgymg97ygbwqdygjvp81b"; 90 + grrev = "201611232213"; 91 + sha256 = "13v3h6cjd5qz57rf242kpxhz5rk094lg5kyf86a852fk58apk6b6"; 92 92 }; 93 93 94 94 # This patch relaxes grsec constraints on the location of usermode helpers,
+1 -1
pkgs/os-specific/linux/mkinitcpio-nfs-utils/default.nix
··· 17 17 ''; 18 18 19 19 meta = with stdenv.lib; { 20 - homepage = https://archlinux.org/; 20 + homepage = "https://archlinux.org/"; 21 21 description = "ipconfig and nfsmount tools for root on NFS, ported from klibc"; 22 22 license = licenses.gpl2; 23 23 platforms = platforms.linux;
+3 -3
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 12 12 13 13 let 14 14 15 - versionNumber = "367.57"; 15 + versionNumber = "375.20"; 16 16 17 17 # Policy: use the highest stable version as the default (on our master). 18 18 inherit (stdenv.lib) makeLibraryPath; ··· 30 30 if stdenv.system == "i686-linux" then 31 31 fetchurl { 32 32 url = "http://download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; 33 - sha256 = "1fw87nvbf8dmy7clwmm7jwp842c78mkz9bcb060wbihsywkfkm23"; 33 + sha256 = "0da3mgfmkhs576wfkdmk8pbmvsksalkwz8a75vnhk0385fnd6yfc"; 34 34 } 35 35 else if stdenv.system == "x86_64-linux" then 36 36 fetchurl { 37 37 url = "http://download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}.run"; 38 - sha256 = "0lc87bgr29l9idhy2a4bsplkwx9r0dz9kjhcc5xq2xqkkyr5sqd1"; 38 + sha256 = "02v20xns8w4flpllibc684g5yghi5dy28avsarccjyn5knhl03ni"; 39 39 } 40 40 else throw "nvidia-x11 does not support platform ${stdenv.system}"; 41 41
+1 -1
pkgs/os-specific/linux/pam_pgsql/default.nix
··· 1 1 { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, postgresql, libgcrypt, pam }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.7.3.2"; 5 4 name = "pam_pgsql-${version}"; 5 + version = "0.7.3.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pam-pgsql";
+2 -2
pkgs/servers/http/nginx/mainline.nix
··· 1 1 { callPackage, ... }@args: 2 2 3 3 callPackage ./generic.nix (args // { 4 - version = "1.11.5"; 5 - sha256 = "1xmn5m1wjx1n11lwwlcg71836acb43gwq9ngk088jpx78liqlgr2"; 4 + version = "1.11.6"; 5 + sha256 = "1gc5phrzm2hbpvryaya6rlvasa00vjips4hv5q1rqbcfa6xsnlri"; 6 6 })
+1 -1
pkgs/servers/mail/dovecot/plugins/antispam/default.nix
··· 25 25 enableParallelBuilding = true; 26 26 27 27 meta = with stdenv.lib; { 28 - homepage = http://wiki2.dovecot.org/Plugins/Antispam; 28 + homepage = "http://wiki2.dovecot.org/Plugins/Antispam"; 29 29 description = "An antispam plugin for the Dovecot IMAP server"; 30 30 license = licenses.gpl2; 31 31 maintainers = with maintainers; [ abbradar ];
+2 -2
pkgs/servers/matrix-synapse/default.nix
··· 11 11 }; 12 12 in pythonPackages.buildPythonApplication rec { 13 13 name = "matrix-synapse-${version}"; 14 - version = "0.18.0"; 14 + version = "0.18.4"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "matrix-org"; 18 18 repo = "synapse"; 19 19 rev = "v${version}"; 20 - sha256 = "1wvamw5crncz5ic6waq7v1bw54zg93af1lmw4y45w3r0vzyfxp68"; 20 + sha256 = "0hcag9a4wd6a9q0ln5l949xr1bhmk1zrnf9vf3qi3lzxgi0rbm98"; 21 21 }; 22 22 23 23 patches = [ ./matrix-synapse.patch ];
+33 -20
pkgs/servers/sql/postgresql/default.nix
··· 1 - { lib, stdenv, fetchurl, zlib, readline, libossp_uuid, openssl }: 1 + { lib, stdenv, glibc, fetchurl, zlib, readline, libossp_uuid, openssl, makeWrapper }: 2 2 3 3 let 4 4 5 - common = { version, sha256, psqlSchema } @ args: stdenv.mkDerivation (rec { 5 + common = { version, sha256, psqlSchema } @ args: 6 + let atLeast = lib.versionAtLeast version; in stdenv.mkDerivation (rec { 6 7 name = "postgresql-${version}"; 7 8 8 9 src = fetchurl { ··· 14 15 setOutputFlags = false; # $out retains configureFlags :-/ 15 16 16 17 buildInputs = 17 - [ zlib readline openssl ] 18 + [ zlib readline openssl makeWrapper ] 18 19 ++ lib.optionals (!stdenv.isDarwin) [ libossp_uuid ]; 19 20 20 21 enableParallelBuilding = true; ··· 30 31 ++ lib.optional (!stdenv.isDarwin) "--with-ossp-uuid"; 31 32 32 33 patches = 33 - [ (if lib.versionAtLeast version "9.4" then ./disable-resolve_symlinks-94.patch else ./disable-resolve_symlinks.patch) 34 - ./less-is-more.patch 35 - ./hardcode-pgxs-path.patch 34 + [ (if atLeast "9.4" then ./disable-resolve_symlinks-94.patch else ./disable-resolve_symlinks.patch) 35 + (if atLeast "9.6" then ./less-is-more-96.patch else ./less-is-more.patch) 36 + (if atLeast "9.6" then ./hardcode-pgxs-path-96.patch else ./hardcode-pgxs-path.patch) 36 37 ./specify_pkglibdir_at_runtime.patch 37 38 ]; 38 39 ··· 41 42 LC_ALL = "C"; 42 43 43 44 postConfigure = 44 - '' 45 - # Hardcode the path to pgxs so pg_config returns the path in $out 46 - substituteInPlace "src/bin/pg_config/pg_config.c" --replace HARDCODED_PGXS_PATH $out/lib 47 - ''; 45 + let path = if atLeast "9.6" then "src/common/config_info.c" else "src/bin/pg_config/pg_config.c"; in 46 + '' 47 + # Hardcode the path to pgxs so pg_config returns the path in $out 48 + substituteInPlace "${path}" --replace HARDCODED_PGXS_PATH $out/lib 49 + ''; 48 50 49 51 postInstall = 50 52 '' ··· 56 58 substituteInPlace "$out/lib/pgxs/src/Makefile.global" --replace ${stdenv.cc}/bin/ld ld 57 59 ''; 58 60 61 + postFixup = lib.optionalString (!stdenv.isDarwin) 62 + '' 63 + # initdb needs access to "locale" command from glibc. 64 + wrapProgram $out/bin/initdb --prefix PATH ":" ${glibc.bin}/bin 65 + ''; 66 + 59 67 disallowedReferences = [ stdenv.cc ]; 60 68 61 69 passthru = { ··· 75 83 in { 76 84 77 85 postgresql91 = common { 78 - version = "9.1.23"; 86 + version = "9.1.24"; 79 87 psqlSchema = "9.1"; 80 - sha256 = "1mgnfm65fspkq62skfy48rjkprnxcfhydw0x3ipp4sdkngl72x3z"; 88 + sha256 = "1lz5ibvgz6cxprxlnd7a8iwv387idr7k53bdsvy4bw9ayglq83fy"; 81 89 }; 82 90 83 91 postgresql92 = common { 84 - version = "9.2.18"; 92 + version = "9.2.19"; 85 93 psqlSchema = "9.2"; 86 - sha256 = "1x1mxbwqvgj9s4y8pb4vv6fmmr36z5zl3b2ggb84ckdfhvakganp"; 94 + sha256 = "1bfvx1h1baxp40y4xi88974p43vazz13mwc0h8scq3sr9wxdfa8x"; 87 95 }; 88 96 89 97 postgresql93 = common { 90 - version = "9.3.14"; 98 + version = "9.3.15"; 91 99 psqlSchema = "9.3"; 92 - sha256 = "1783kl0abf9az90mvs08pdh63d33cv2njc1q515zz89bqkqj4hsw"; 100 + sha256 = "0kswvs4rzcmjz12hhyi61w5x2wh4dxskar8v7rgajfm98qabmz59"; 93 101 }; 94 102 95 103 postgresql94 = common { 96 - version = "9.4.9"; 104 + version = "9.4.10"; 97 105 psqlSchema = "9.4"; 98 - sha256 = "1jg1l6vrfwhfyqrx07bgcpqxb5zcp8zwm8qd2vcj0k11j0pac861"; 106 + sha256 = "1kvfhalf3rs59887b5qa14zp85zcnsc6pislrs0wd08rxn5nfqbh"; 99 107 }; 100 108 101 109 postgresql95 = common { 102 - version = "9.5.4"; 110 + version = "9.5.5"; 103 111 psqlSchema = "9.5"; 104 - sha256 = "1l3fqxlpxgl6nrcd4h6lpi2hsiv56yg83n3xrn704rmdch8mfpng"; 112 + sha256 = "157kf6mdazmxfmd11f0akya2xcz6sfgprn7yqc26dpklps855ih2"; 105 113 }; 106 114 115 + postgresql96 = common { 116 + version = "9.6.1"; 117 + psqlSchema = "9.6"; 118 + sha256 = "1k8zwnabsl8f7vlp3azm4lrklkb9jkaxmihqf0mc27ql9451w475"; 119 + }; 107 120 108 121 }
+14
pkgs/servers/sql/postgresql/hardcode-pgxs-path-96.patch
··· 1 + diff -Naur postgresql-9.6.1-orig/src/common/config_info.c postgresql-9.6.1/src/common/config_info.c 2 + --- postgresql-9.6.1-orig/src/common/config_info.c 2016-11-22 21:39:29.231929261 +0100 3 + +++ postgresql-9.6.1/src/common/config_info.c 2016-11-22 23:36:53.685163543 +0100 4 + @@ -118,7 +118,10 @@ 5 + i++; 6 + 7 + configdata[i].name = pstrdup("PGXS"); 8 + + strlcpy(path, "HARDCODED_PGXS_PATH", sizeof(path)); 9 + +/* commented out to be able to point to nix $out path 10 + get_pkglib_path(my_exec_path, path); 11 + +*/ 12 + strlcat(path, "/pgxs/src/makefiles/pgxs.mk", sizeof(path)); 13 + cleanup_path(path); 14 + configdata[i].setting = pstrdup(path);
+12
pkgs/servers/sql/postgresql/less-is-more-96.patch
··· 1 + diff -Naur postgresql-9.6.1-orig/src/include/fe_utils/print.h postgresql-9.6.1/src/include/fe_utils/print.h 2 + --- postgresql-9.6.1-orig/src/include/fe_utils/print.h 2016-11-22 21:39:29.148932827 +0100 3 + +++ postgresql-9.6.1/src/include/fe_utils/print.h 2016-11-22 21:39:36.283626258 +0100 4 + @@ -18,7 +18,7 @@ 5 + 6 + /* This is not a particularly great place for this ... */ 7 + #ifndef __CYGWIN__ 8 + -#define DEFAULT_PAGER "more" 9 + +#define DEFAULT_PAGER "less" 10 + #else 11 + #define DEFAULT_PAGER "less" 12 + #endif
+2 -2
pkgs/servers/uwsgi/default.nix
··· 42 42 43 43 stdenv.mkDerivation rec { 44 44 name = "uwsgi-${version}"; 45 - version = "2.0.13.1"; 45 + version = "2.0.14"; 46 46 47 47 src = fetchurl { 48 48 url = "http://projects.unbit.it/downloads/${name}.tar.gz"; 49 - sha256 = "0zwdljaljzshrdcqsrr2l2ak2zcmsps4glac2lrg0xmb28phrjif"; 49 + sha256 = "11r829j4fyk7y068arqmwbc9dj6lc0n3l6bn6pr5z0vdjbpx3cr1"; 50 50 }; 51 51 52 52 nativeBuildInputs = [ python3 pkgconfig ];
+2 -2
pkgs/tools/X11/virtualgl/lib.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "virtualgl-lib-${version}"; 5 - version = "2.5"; 5 + version = "2.5.1"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/virtualgl/VirtualGL-${version}.tar.gz"; 9 - sha256 = "1mnpljmx8nxnmpbx4ja430b3y535wkz185qknsxmk27yz4dbmm8l"; 9 + sha256 = "0n9ngwji9k0hqy81ridndf7z4lwq5dzmqw66r6vxfz15aw0jwd6s"; 10 10 }; 11 11 12 12 cmakeFlags = [ "-DVGL_SYSTEMFLTK=1" "-DTJPEG_LIBRARY=${libjpeg_turbo.out}/lib/libturbojpeg.so" ];
+34 -23
pkgs/tools/X11/xcape/default.nix
··· 1 - {stdenv, fetchurl, fetchgit, libX11, xproto, libXtst, xextproto, pkgconfig 2 - , inputproto, libXi}: 1 + { stdenv, fetchFromGitHub, pkgconfig, libX11, libXtst, xextproto, 2 + libXi }: 3 + 3 4 let 4 - s = rec { 5 - baseName = "xcape"; 6 - version = "git-2015-03-01"; 7 - name = "${baseName}-${version}"; 8 - }; 9 - buildInputs = [ 10 - libX11 libXtst xproto xextproto pkgconfig inputproto libXi 11 - ]; 5 + baseName = "xcape"; 6 + version = "1.2"; 12 7 in 13 - stdenv.mkDerivation { 14 - inherit (s) name version; 15 - inherit buildInputs; 16 - src = fetchgit { 17 - url = https://github.com/alols/xcape; 18 - rev = "f3802fc086ce9d961d644a5d29ad5b650db56215"; 19 - sha256 = "0d79riwzmjr621ss3yhxqn2q8chn3f9rvk2nnjckz5yxbifvfg9s"; 8 + 9 + stdenv.mkDerivation rec { 10 + name = "${baseName}-${version}"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "alols"; 14 + repo = baseName; 15 + rev = "v${version}"; 16 + sha256 = "09a05cxgrip6nqy1qmwblamp2bhknqnqmxn7i2a1rgxa0nba95dm"; 20 17 }; 21 - preConfigure = '' 22 - makeFlags="$makeFlags PREFIX=$out" 23 - ''; 18 + 19 + nativeBuildInputs = [ pkgconfig ]; 20 + 21 + buildInputs = [ libX11 libXtst xextproto libXi ]; 22 + 23 + makeFlags = [ "PREFIX=$(out)" "MANDIR=/share/man/man1" ]; 24 + 25 + postInstall = "install -D --target-directory $out/share/doc README.md"; 26 + 24 27 meta = { 25 - inherit (s) version; 26 - description = ''A tool to have Escape and Control on a single key''; 28 + description = "Utility to configure modifier keys to act as other keys"; 29 + longDescription = '' 30 + xcape allows you to use a modifier key as another key when 31 + pressed and released on its own. Note that it is slightly 32 + slower than pressing the original key, because the pressed event 33 + does not occur until the key is released. The default behaviour 34 + is to generate the Escape key when Left Control is pressed and 35 + released on its own. 36 + ''; 37 + homepage = "https://github.com/alols/xcape"; 27 38 license = stdenv.lib.licenses.gpl3 ; 28 - maintainers = [stdenv.lib.maintainers.raskin]; 29 39 platforms = stdenv.lib.platforms.linux; 40 + maintainers = [ stdenv.lib.maintainers.raskin ]; 30 41 }; 31 42 }
+1 -1
pkgs/tools/compression/lbzip2/default.nix
··· 9 9 }; 10 10 11 11 meta = with stdenv.lib; { 12 - homepage = http://lbzip2.org/; 12 + homepage = "http://lbzip2.org/"; 13 13 description = "Parallel bzip2 compression utility"; 14 14 license = licenses.gpl3; 15 15 maintainers = with maintainers; [ abbradar ];
-1
pkgs/tools/filesystems/nixpart/0.4/blivet.nix
··· 28 28 }' blivet/formats/__init__.py 29 29 sed -i -e 's|"lsof"|"${lsof}/bin/lsof"|' blivet/formats/fs.py 30 30 sed -i -r -e 's|"(u?mount)"|"${utillinux.bin}/bin/\1"|' blivet/util.py 31 - sed -i '/pvscan/s/, *"--cache"//' blivet/devicelibs/lvm.py 32 31 '' + stdenv.lib.optionalString useNixUdev '' 33 32 sed -i -e '/find_library/,/find_library/ { 34 33 c libudev = "${systemd.lib}/lib/libudev.so.1"
+2 -2
pkgs/tools/filesystems/snapraid/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "snapraid-${version}"; 5 - version = "10.0"; 5 + version = "11.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/amadvance/snapraid/releases/download/v${version}/snapraid-${version}.tar.gz"; 9 - sha256 = "1mhs0gl285a5y2bw6k04lrnyg1pp2am7dfcsvg0w4vr5h2ag3p7p"; 9 + sha256 = "0wapbi8ph7qcyh1jwyrn2r5slzsznlxvg137r4l02xgaaf42p9rh"; 10 10 }; 11 11 12 12 doCheck = true;
+2
pkgs/tools/graphics/graphviz/2.0.nix
··· 26 26 "--with-jpeglibdir=${libjpeg.out}/lib" 27 27 "--with-expatincludedir=${expat.dev}/include" 28 28 "--with-expatlibdir=${expat.out}/lib" 29 + "--with-ltdl-include=${libtool}/include" 30 + "--with-ltdl-lib=${libtool.lib}/lib" 29 31 ] 30 32 ++ stdenv.lib.optional (xlibsWrapper == null) "--without-x"; 31 33
+2
pkgs/tools/graphics/graphviz/2.32.nix
··· 26 26 "--with-jpeglibdir=${libjpeg.out}/lib" 27 27 "--with-expatincludedir=${expat.dev}/include" 28 28 "--with-expatlibdir=${expat.out}/lib" 29 + "--with-ltdl-include=${libtool}/include" 30 + "--with-ltdl-lib=${libtool.lib}/lib" 29 31 "--with-cgraph=no" 30 32 "--with-sparse=no" 31 33 ]
+3 -31
pkgs/tools/misc/debootstrap/default.nix
··· 1 1 { stdenv, fetchurl, dpkg, gettext, gawk, perl, wget, coreutils, fakeroot }: 2 2 3 - let 4 3 # USAGE like this: debootstrap sid /tmp/target-chroot-directory 5 4 # There is also cdebootstrap now. Is that easier to maintain? 6 - makedev = stdenv.mkDerivation { 7 - name = "makedev-for-debootstrap"; 8 - src = fetchurl { 9 - url = mirror://debian/pool/main/m/makedev/makedev_2.3.1.orig.tar.gz; 10 - sha256 = "1yhxlj2mhn1nqkx1f0sn0bl898nf28arxxa4lgp7hdrb5cpp36c5"; 11 - }; 12 - patches = [ 13 - (fetchurl { 14 - url = "mirror://debian/pool/main/m/makedev/makedev_2.3.1-93.diff.gz"; 15 - sha256 = "08328779mc0b20xkj76ilpf9c8bw6zkz5xiw5l2kwm690dxp9nvw"; 16 - }) 17 - ]; 18 - # TODO install man 19 - installPhase = '' 20 - mkdir -p $out/sbin 21 - ls -l 22 - t=$out/sbin/MAKEDEV 23 - cp MAKEDEV $t 24 - chmod +x $t 25 - ''; 26 - }; 27 - in stdenv.mkDerivation rec { 5 + stdenv.mkDerivation rec { 28 6 name = "debootstrap-${version}"; 29 - version = "1.0.80"; 7 + version = "1.0.87"; 30 8 31 9 src = fetchurl { 32 10 # git clone git://git.debian.org/d-i/debootstrap.git 33 11 # I'd like to use the source. However it's lacking the lanny script ? (still true?) 34 12 url = "mirror://debian/pool/main/d/debootstrap/debootstrap_${version}.tar.gz"; 35 - sha256 = "06gigscd2327wsvc7n7w2m8xmaixvp4kyqhayn00qrgd9i9w34x6"; 13 + sha256 = "1amk3wghx4f7zfp7d8r0hgqn5gvph50qa6nvh32q2j8aihdr7374"; 36 14 }; 37 15 38 16 buildInputs = [ dpkg gettext gawk perl ]; ··· 72 50 d=$out/share/debootstrap 73 51 mkdir -p $out/{share/debootstrap,bin} 74 52 75 - ${fakeroot}/bin/fakeroot -- make devices.tar.gz MAKEDEV=${makedev}/sbin/MAKEDEV 76 - 77 53 cp -r . $d 78 54 79 55 cat >> $out/bin/debootstrap << EOF ··· 89 65 mkdir -p $out/man/man8 90 66 mv debootstrap.8 $out/man/man8 91 67 ''; 92 - 93 - passthru = { 94 - inherit makedev; 95 - }; 96 68 97 69 meta = { 98 70 description = "Tool to create a Debian system in a chroot";
+3 -3
pkgs/tools/misc/grub4dos/default.nix
··· 6 6 else abort "Unknown architecture"; 7 7 in stdenv.mkDerivation rec { 8 8 name = "grub4dos-${version}"; 9 - version = "0.4.6a-2016-08-06"; 9 + version = "0.4.6a-2016-11-09"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "chenall"; 13 13 repo = "grub4dos"; 14 - rev = "99d6ddbe7611f942d2708d77a620d6aa94a284d1"; 15 - sha256 = "0gnllk0qkx6d0azf7v9cr0b23gp577avksz0f4dl3v3ldgi0dksq"; 14 + rev = "4cdcd3c1aa4907e7775aa8816ca9cf0175b78bcd"; 15 + sha256 = "17y5wsiqcb2qk1vr8n1wlhcsj668735hj8l759n8aiydw408bl55"; 16 16 }; 17 17 18 18 nativeBuildInputs = [ nasm ];
+2 -2
pkgs/tools/misc/less/default.nix
··· 1 1 { stdenv, fetchurl, ncurses, lessSecure ? false }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "less-483"; 4 + name = "less-481"; 5 5 6 6 src = fetchurl { 7 7 url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz"; 8 - sha256 = "07z43kwbmba2wh3q1gps09l72p8izfagygmqq1izi50s2h51mfvy"; 8 + sha256 = "19fxj0h10y5bhr3a1xa7kqvnwl44db3sdypz8jxl1q79yln8z8rz"; 9 9 }; 10 10 11 11 configureFlags = [ "--sysconfdir=/etc" ] # Look for ‘sysless’ in /etc.
+1 -1
pkgs/tools/misc/ltunify/default.nix
··· 13 13 14 14 meta = with stdenv.lib; { 15 15 description = "Tool for working with Logitech Unifying receivers and devices"; 16 - homepage = https://lekensteyn.nl/logitech-unifying.html; 16 + homepage = "https://lekensteyn.nl/logitech-unifying.html"; 17 17 license = licenses.gpl3Plus; 18 18 platforms = platforms.linux; 19 19 maintainers = [ maintainers.abbradar ];
-24
pkgs/tools/misc/magic-wormhole/default.nix
··· 1 - { stdenv, fetchurl, pythonPackages }: 2 - 3 - with stdenv.lib; 4 - 5 - pythonPackages.buildPythonApplication rec { 6 - name = "magic-wormhole-${version}"; 7 - version = "0.8.1"; 8 - 9 - src = fetchurl { 10 - url = "mirror://pypi/m/magic-wormhole/${name}.tar.gz"; 11 - sha256 = "1yh5nbhh9z1am2pqnb5qqyq1zjl1m7z6jnkmvry2q14qwspw9had"; 12 - }; 13 - checkPhase = '' 14 - ${pythonPackages.python.interpreter} -m wormhole.test.run_trial wormhole 15 - ''; 16 - 17 - propagatedBuildInputs = with pythonPackages; [ autobahn cffi click hkdf pynacl spake2 tqdm ]; 18 - meta = { 19 - description = "Securely transfer data between computers"; 20 - homepage = "https://github.com/warner/magic-wormhole"; 21 - license = licenses.mit; 22 - maintainers = with maintainers; [ asymmetric ]; 23 - }; 24 - }
+22 -28
pkgs/tools/misc/tlp/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, perl, makeWrapper, systemd, iw, rfkill, hdparm, ethtool, inetutils 2 - , kmod, pciutils, smartmontools, x86_energy_perf_policy, gawk, gnugrep, coreutils 1 + { stdenv, lib, fetchFromGitHub, perl, makeWrapper, file, systemd, iw, rfkill 2 + , hdparm, ethtool, inetutils , kmod, pciutils, smartmontools 3 + , x86_energy_perf_policy, gawk, gnugrep, coreutils, utillinux 3 4 , enableRDW ? false, networkmanager 4 5 }: 5 6 6 7 let 7 8 paths = lib.makeBinPath 8 9 ([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools 9 - x86_energy_perf_policy gawk gnugrep coreutils 10 + x86_energy_perf_policy gawk gnugrep coreutils utillinux 10 11 ] 11 12 ++ lib.optional enableRDW networkmanager 12 13 ); 13 14 14 15 in stdenv.mkDerivation rec { 15 16 name = "tlp-${version}"; 16 - version = "0.8"; 17 + version = "0.9"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "linrunner"; 20 21 repo = "TLP"; 21 22 rev = "${version}"; 22 - sha256 = "19fvk0xz6i2ryf41akk4jg1c4sb4rcyxdl9fr0w4lja7g76d5zww"; 23 + sha256 = "1gwi0h9klhdvqfqvmn297l1vyhj4g9dqvf50lcbswry02mvnd2vn"; 23 24 }; 24 25 25 26 makeFlags = [ "DESTDIR=$(out)" 26 - "TLP_LIBDIR=/lib" 27 - "TLP_SBIN=/bin" 28 - "TLP_BIN=/bin" 27 + "TLP_SBIN=$(out)/bin" 28 + "TLP_BIN=$(out)/bin" 29 + "TLP_TLIB=$(out)/share/tlp-pm" 30 + "TLP_PLIB=$(out)/lib/pm-utils" 31 + "TLP_ULIB=$(out)/lib/udev" 32 + "TLP_NMDSP=$(out)/etc/NetworkManager/dispatcher.d" 33 + "TLP_SHCPL=$(out)/share/bash-completion/completions" 34 + "TLP_MAN=$(out)/share/man" 35 + 29 36 "TLP_NO_INIT=1" 30 37 "TLP_NO_PMUTILS=1" 31 38 ]; 32 39 33 - nativeBuildInputs = [ makeWrapper ]; 40 + nativeBuildInputs = [ makeWrapper file ]; 34 41 35 42 buildInputs = [ perl ]; 36 43 37 - installTargets = [ "install-tlp" ] ++ stdenv.lib.optional enableRDW "install-rdw"; 44 + installTargets = [ "install-tlp" "install-man" ] ++ stdenv.lib.optional enableRDW "install-rdw"; 38 45 39 46 postInstall = '' 40 - for i in $out/bin/* $out/lib/udev/tlp-*; do 41 - sed -i "s,/usr/lib/,$out/lib/,g" "$i" 42 - if [[ "$(basename "$i")" = tlp-*list ]]; then 47 + cp -r $out/$out/* $out 48 + rm -rf $out/$(echo "$NIX_STORE" | cut -d "/" -f2) 49 + 50 + for i in $out/bin/* $out/lib/udev/tlp-* ${lib.optionalString enableRDW "$out/etc/NetworkManager/dispatcher.d/*"}; do 51 + if file "$i" | grep -q Perl; then 43 52 # Perl script; use wrapProgram 44 53 wrapProgram "$i" \ 45 54 --prefix PATH : "${paths}" ··· 47 56 # Bash script 48 57 sed -i '2iexport PATH=${paths}:$PATH' "$i" 49 58 fi 50 - done 51 - 52 - for i in $out/lib/udev/rules.d/*; do 53 - sed -i "s,RUN+=\",\\0$out,g; s,/usr/sbin,/bin,g" "$i" 54 - done 55 - 56 - for i in man/*; do 57 - install -D $i $out/share/man/man''${i##*.}/$(basename $i) 58 - done 59 - '' + lib.optionalString enableRDW '' 60 - for i in $out/etc/NetworkManager/dispatcher.d/*; do 61 - sed -i \ 62 - -e "s,/usr/lib/,$out/lib/,g" \ 63 - -e '2iexport PATH=${paths}:$PATH' \ 64 - "$i" 65 59 done 66 60 ''; 67 61
+3 -3
pkgs/tools/misc/tmux/default.nix
··· 3 3 let 4 4 5 5 bashCompletion = fetchFromGitHub { 6 - owner = "przepompownia"; 6 + owner = "imomaliev"; 7 7 repo = "tmux-bash-completion"; 8 - rev = "678a27616b70c649c6701cae9cd8c92b58cc051b"; 9 - sha256 = "1d2myrh4xiay9brsxafb02pi922760sdkyyy5xjm4sfh4iimc4zf"; 8 + rev = "fcda450d452f07d36d2f9f27e7e863ba5241200d"; 9 + sha256 = "092jpkhggjqspmknw7h3icm0154rg21mkhbc71j5bxfmfjdxmya8"; 10 10 }; 11 11 12 12 in
+3 -3
pkgs/tools/networking/aria2/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "aria2-${version}"; 8 - version = "1.28.0"; 8 + version = "1.29.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aria2"; 12 12 repo = "aria2"; 13 13 rev = "release-${version}"; 14 - sha256 = "196prs98sxwwxiszw2m1kbcra7n7fxf758y5dcj2jkddrr37hdkw"; 14 + sha256 = "1ivxz2ld4cl9z29kdicban9dir6s0si2jqn4g11gz587x7pagbim"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ pkgconfig autoreconfHook ]; ··· 26 26 meta = with stdenv.lib; { 27 27 homepage = https://aria2.github.io; 28 28 description = "A lightweight, multi-protocol, multi-source, command-line download utility"; 29 - maintainers = with maintainers; [ koral jgeerds ]; 30 29 license = licenses.gpl2Plus; 31 30 platforms = platforms.unix; 31 + maintainers = with maintainers; [ koral jgeerds ]; 32 32 }; 33 33 }
+3 -3
pkgs/tools/networking/logmein-hamachi/default.nix
··· 10 10 else if stdenv.system == "i686-linux" then "x86" 11 11 else abort "Unsupported architecture"; 12 12 sha256 = 13 - if stdenv.system == "x86_64-linux" then "0l8y8z8fqvxrypx3dp83mm3qr9shgpcn5h7x2k2z13gp4aq0yw6g" 14 - else if stdenv.system == "i686-linux" then "00nl442k4pij9fm8inlk4qrcvbnz55fbwf3sm3dgbzvd5jcgsa0f" 13 + if stdenv.system == "x86_64-linux" then "011xg1frhjavv6zj1y3da0yh7rl6v1ax6xy2g8fk3sry9bi2p4j3" 14 + else if stdenv.system == "i686-linux" then "03ml9xv19km99f0z7fpr21b1zkxvw7q39kjzd8wpb2pds51wnc62" 15 15 else abort "Unsupported architecture"; 16 16 libraries = stdenv.lib.makeLibraryPath [ stdenv.cc.cc ]; 17 17 18 18 in stdenv.mkDerivation rec { 19 19 name = "logmein-hamachi-${version}"; 20 - version = "2.1.0.165"; 20 + version = "2.1.0.174"; 21 21 22 22 src = fetchurl { 23 23 url = "https://www.vpn.net/installers/${name}-${arch}.tgz";
+1 -1
pkgs/tools/networking/network-manager/l2tp.nix
··· 35 35 meta = with stdenv.lib; { 36 36 description = "L2TP plugin for NetworkManager"; 37 37 inherit (networkmanager.meta) platforms; 38 - homepage = https://github.com/seriyps/NetworkManager-l2tp; 38 + homepage = "https://github.com/seriyps/NetworkManager-l2tp"; 39 39 license = licenses.gpl2; 40 40 maintainers = with maintainers; [ abbradar obadz ]; 41 41 };
+5 -5
pkgs/tools/networking/openvpn/update-resolv-conf.nix
··· 1 - { stdenv, lib, fetchFromGitHub, makeWrapper, openresolv, coreutils, which, systemd }: 1 + { stdenv, lib, fetchFromGitHub, makeWrapper, openresolv, coreutils, systemd }: 2 2 3 3 let 4 - binPath = lib.makeBinPath [ coreutils openresolv which systemd ]; 4 + binPath = lib.makeBinPath [ coreutils openresolv systemd ]; 5 5 6 6 in stdenv.mkDerivation rec { 7 - name = "update-resolv-conf-2016-04-24"; 7 + name = "update-resolv-conf-2016-09-30"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "masterkorp"; 11 11 repo = "openvpn-update-resolv-conf"; 12 - rev = "994574f36b9147cc78674a5f13874d503a625c98"; 13 - sha256 = "1rvzlaj53k8s09phg4clsyzlmf44dmwwyvg0nbg966sxp3xsqlxc"; 12 + rev = "09cb5ab5a50dfd6e77e852749d80bef52d7a6b34"; 13 + sha256 = "0s5cilph0p0wiixj7nlc7f3hqmr1mhvbfyapd0060n3y6xgps9y9"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ makeWrapper ];
+5
pkgs/tools/networking/proxychains/default.nix
··· 10 10 sha256 = "015skh3z1jmm8kxbm3nkqv1w56kcvabdmcbmpwzywxr4xnh3x3pc"; 11 11 }; 12 12 13 + postPatch = '' 14 + # Temporary work-around; most likely fixed by next upstream release 15 + sed -i Makefile -e '/-lpthread/a LDFLAGS+=-ldl' 16 + ''; 17 + 13 18 meta = { 14 19 description = "Proxifier for SOCKS proxies"; 15 20 homepage = http://proxychains.sourceforge.net;
+3
pkgs/tools/package-management/nixops/generic.nix
··· 14 14 pythonPath = with python2Packages; 15 15 [ prettytable 16 16 boto 17 + boto3 17 18 hetzner 18 19 libcloud 19 20 azure-storage ··· 22 23 azure-mgmt-resource 23 24 azure-mgmt-storage 24 25 adal 26 + pysqlite # Go back to builtin sqlite once Python 2.7.13 is released 27 + datadog 25 28 ]; 26 29 27 30 doCheck = false;
+4 -3
pkgs/tools/package-management/nixops/unstable.nix
··· 1 1 { callPackage, fetchurl }: 2 2 3 3 callPackage ./generic.nix (rec { 4 - version = "1.4"; 4 + version = "2016-11-23"; 5 5 src = fetchurl { 6 - url = "http://nixos.org/releases/nixops/nixops-${version}/nixops-${version}.tar.bz2"; 7 - sha256 = "1a6vkn8rh5lgalxh6cwr4894n3yp7f2qxcbcjv42nnmy5g4fy5fd"; 6 + # Hydra doesn't serve production outputs anymore :( 7 + url = "https://static.domenkozar.com/nixops-1.5pre0_abcdef.tar.bz2"; 8 + sha256 = "1a4cyd3zvkdjg9rf9ssr7p4i6r89zr483v5nlr5jzjdjjyi3j2bz"; 8 9 }; 9 10 })
+26
pkgs/tools/security/cowpatty/default.nix
··· 1 + { stdenv, fetchurl, openssl, libpcap 2 + }: 3 + 4 + with stdenv.lib; 5 + 6 + stdenv.mkDerivation rec { 7 + name = "cowpatty-${version}"; 8 + version = "4.6"; 9 + 10 + buildInputs = [ openssl libpcap ]; 11 + 12 + src = fetchurl { 13 + url = "http://www.willhackforsushi.com/code/cowpatty/${version}/${name}.tgz"; 14 + sha256 = "1hivh3bq2maxvqzwfw06fr7h8bbpvxzah6mpibh3wb85wl9w2gyd"; 15 + }; 16 + 17 + installPhase = "make DESTDIR=$out BINDIR=/bin install"; 18 + 19 + meta = { 20 + description = "Offline dictionary attack against WPA/WPA2 networks"; 21 + license = licenses.gpl2; 22 + homepage = http://www.willhackforsushi.com/?page_id=50; 23 + maintainers = with maintainers; [ nico202 ]; 24 + platforms = platforms.linux; 25 + }; 26 + }
+3 -2
pkgs/tools/security/fprintd/default.nix
··· 2 2 , libfprint, glib, dbus_glib, polkit, nss, pam, systemd }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "fprintd-0.6.0"; 5 + name = "fprintd-${version}"; 6 + version = "0.7.0"; 6 7 7 8 src = fetchurl { 8 9 url = "http://people.freedesktop.org/~hadess/${name}.tar.xz"; 9 - sha256 = "1by6nvlrqkwzcz2v2kyq6avi3h384vmlr42vj9s2yzcinkp64m1z"; 10 + sha256 = "05915i0bv7q62fqrs5diqwr8dz3pwqa1c1ivcgggkjyw0xk4ldp5"; 10 11 }; 11 12 12 13 buildInputs = [ libfprint glib dbus_glib polkit nss pam systemd ];
+2 -3
pkgs/tools/system/thermald/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "thermald-${version}"; 5 - version = "1.5.3"; 5 + version = "1.5.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "01org"; 9 9 repo = "thermal_daemon"; 10 10 rev = "v${version}"; 11 - sha256 = "0k10sl262d9slrln1vkgsxlr1pnfxzd3ycs552bl7ynf0zxpl48h"; 11 + sha256 = "0yrlnm1blfxi97af4dbx6xm5w1p8r20raiim1ng08gbqbgnjg56g"; 12 12 }; 13 13 14 14 buildInputs = [ autoconf automake libtool pkgconfig dbus_libs dbus_glib libxml2 ]; ··· 27 27 ]; 28 28 29 29 preInstall = "sysconfdir=$out/etc"; 30 - 31 30 32 31 meta = with stdenv.lib; { 33 32 description = "Thermal Daemon";
+22 -15
pkgs/top-level/all-packages.nix
··· 918 918 919 919 long-shebang = callPackage ../misc/long-shebang {}; 920 920 921 - magic-wormhole = callPackage ../tools/misc/magic-wormhole {}; 922 921 mathics = pythonPackages.mathics; 923 922 924 923 meson = callPackage ../development/tools/build-managers/meson { }; ··· 1282 1281 coreutils-prefixed = coreutils.override { withPrefix = true; }; 1283 1282 1284 1283 corkscrew = callPackage ../tools/networking/corkscrew { }; 1284 + 1285 + cowpatty = callPackage ../tools/security/cowpatty { }; 1285 1286 1286 1287 cpio = callPackage ../tools/archivers/cpio { }; 1287 1288 ··· 5219 5220 rustfmt = callPackage ../development/tools/rust/rustfmt { }; 5220 5221 rustracer = callPackage ../development/tools/rust/racer { }; 5221 5222 rustracerd = callPackage ../development/tools/rust/racerd { }; 5223 + rust-bindgen = callPackage ../development/tools/rust/bindgen { }; 5222 5224 5223 5225 sbclBootstrap = callPackage ../development/compilers/sbcl/bootstrap.nix {}; 5224 5226 sbcl = callPackage ../development/compilers/sbcl {}; ··· 5529 5531 mesos = callPackage ../applications/networking/cluster/mesos { 5530 5532 sasl = cyrus_sasl; 5531 5533 inherit (pythonPackages) python boto setuptools wrapPython; 5532 - pythonProtobuf = pythonPackages.protobuf2_5; 5534 + pythonProtobuf = pythonPackages.protobuf2_6; 5533 5535 perf = linuxPackages.perf; 5534 5536 }; 5535 5537 ··· 7450 7452 iml = callPackage ../development/libraries/iml { }; 7451 7453 7452 7454 imlib2 = callPackage ../development/libraries/imlib2 { }; 7455 + imlib2-nox = imlib2.override { 7456 + x11Support = false; 7457 + }; 7453 7458 7454 7459 imlibsetroot = callPackage ../applications/graphics/imlibsetroot { libXinerama = xorg.libXinerama; } ; 7455 7460 ··· 10322 10327 postgresql92 10323 10328 postgresql93 10324 10329 postgresql94 10325 - postgresql95; 10330 + postgresql95 10331 + postgresql96; 10326 10332 10327 10333 postgresql_jdbc = callPackage ../servers/sql/postgresql/jdbc { }; 10328 10334 ··· 12393 12399 pulseaudioSupport = config.pulseaudio or false; 12394 12400 }; 12395 12401 12402 + cni = callPackage ../applications/networking/cluster/cni {}; 12403 + 12396 12404 communi = qt5.callPackage ../applications/networking/irc/communi { }; 12397 12405 12398 12406 compiz = callPackage ../applications/window-managers/compiz { ··· 12702 12710 monky = callPackage ../applications/editors/emacs-modes/monky { }; 12703 12711 12704 12712 notmuch = lowPrio (pkgs.notmuch.override { inherit emacs; }); 12705 - 12706 - notmuch-addrlookup = callPackage ../applications/networking/mailreaders/notmuch-addrlookup { }; 12707 12713 12708 12714 ocamlMode = callPackage ../applications/editors/emacs-modes/ocaml { }; 12709 12715 ··· 14036 14042 qtbase = qt55; 14037 14043 }; 14038 14044 14039 - notmuch = callPackage ../applications/networking/mailreaders/notmuch { 14040 - # No need to build Emacs - notmuch.el works just fine without 14041 - # byte-compilation. Use emacsPackages.notmuch if you want to 14042 - # byte-compiled files 14043 - emacs = null; 14044 - sphinx = pythonPackages.sphinx; 14045 - }; 14045 + notmuch = callPackage ../applications/networking/mailreaders/notmuch { }; 14046 14046 14047 14047 notmuch-mutt = callPackage ../applications/networking/mailreaders/notmuch/mutt.nix { }; 14048 + 14049 + notmuch-addrlookup = callPackage ../applications/networking/mailreaders/notmuch-addrlookup { }; 14048 14050 14049 14051 # Open Stack 14050 14052 nova = callPackage ../applications/virtualization/openstack/nova.nix { }; ··· 14789 14791 14790 14792 taskserver = callPackage ../servers/misc/taskserver { }; 14791 14793 14792 - tdesktop = qt5.callPackage ../applications/networking/instant-messengers/telegram/tdesktop { }; 14794 + tdesktop = qt5.callPackage ../applications/networking/instant-messengers/telegram/tdesktop { 14795 + inherit (pythonPackages) gyp; 14796 + }; 14793 14797 14794 14798 telegram-cli = callPackage ../applications/networking/instant-messengers/telegram/telegram-cli { }; 14795 14799 ··· 15097 15101 # Version without X11 15098 15102 w3m-nox = w3m.override { 15099 15103 x11Support = false; 15104 + imlib2 = imlib2-nox; 15100 15105 }; 15101 15106 15102 15107 # Version for batch text processing, not a good browser 15103 15108 w3m-batch = w3m.override { 15104 15109 graphicsSupport = false; 15110 + mouseSupport = false; 15105 15111 x11Support = false; 15106 - mouseSupport = false; 15112 + imlib2 = imlib2-nox; 15107 15113 }; 15108 15114 15109 15115 weechat = callPackage ../applications/networking/irc/weechat { ··· 16495 16501 16496 16502 mathematica = callPackage ../applications/science/math/mathematica { }; 16497 16503 mathematica9 = callPackage ../applications/science/math/mathematica/9.nix { }; 16504 + mathematica10 = callPackage ../applications/science/math/mathematica/10.nix { }; 16498 16505 16499 16506 metis = callPackage ../development/libraries/science/math/metis {}; 16500 16507 ··· 17152 17159 17153 17160 nixops = callPackage ../tools/package-management/nixops { }; 17154 17161 17155 - nixopsUnstable = nixops;# callPackage ../tools/package-management/nixops/unstable.nix { }; 17162 + nixopsUnstable = callPackage ../tools/package-management/nixops/unstable.nix { }; 17156 17163 17157 17164 nixui = callPackage ../tools/package-management/nixui { node_webkit = nwjs_0_12; }; 17158 17165
+2
pkgs/top-level/ocaml-packages.nix
··· 339 339 340 340 ocplib-endian = callPackage ../development/ocaml-modules/ocplib-endian { }; 341 341 342 + ocplib-simplex = callPackage ../development/ocaml-modules/ocplib-simplex { }; 343 + 342 344 ocsigen_server = callPackage ../development/ocaml-modules/ocsigen-server { }; 343 345 344 346 ojquery = callPackage ../development/ocaml-modules/ojquery { };
+14 -14
pkgs/top-level/perl-packages.nix
··· 649 649 }; 650 650 651 651 bignum = buildPerlPackage rec { 652 - name = "bignum-0.43"; 652 + name = "bignum-0.44"; 653 653 src = fetchurl { 654 654 url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; 655 - sha256 = "0610cb569fe51ceaa98991549192b54a09b5ebd9bd03aee39e7234f7c222366d"; 655 + sha256 = "e32048bfc77788f1407e0b2bf54e0aba44d9e5e2743d2013b3afd6a630bed06f"; 656 656 }; 657 657 buildInputs = [ MathBigInt MathBigRat ]; 658 658 meta = { ··· 3072 3072 }; 3073 3073 3074 3074 DataValidateIP = buildPerlPackage rec { 3075 - name = "Data-Validate-IP-0.26"; 3075 + name = "Data-Validate-IP-0.27"; 3076 3076 src = fetchurl { 3077 3077 url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz"; 3078 - sha256 = "d03190483f3ecec728c8e1b2e24989b7aed78ce3c989bea7dc6be0285d374690"; 3078 + sha256 = "e1aa92235dcb9c6fd9b6c8cda184d1af73537cc77f4f83a0f88207a8bfbfb7d6"; 3079 3079 }; 3080 3080 buildInputs = [ TestRequires ]; 3081 3081 propagatedBuildInputs = [ NetAddrIP ]; ··· 3945 3945 }; 3946 3946 3947 3947 DigestJHash = buildPerlPackage rec { 3948 - name = "Digest-JHash-0.09"; 3948 + name = "Digest-JHash-0.10"; 3949 3949 src = fetchurl { 3950 3950 url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz"; 3951 - sha256 = "ba77919b7b7a1b6f222f1bb5a7a34d88b1a92093e40a2aec37352cb38926ada3"; 3951 + sha256 = "c746cf0a861a004090263cd54d7728d0c7595a0cf90cbbfd8409b396ee3b0063"; 3952 3952 }; 3953 3953 meta = { 3954 3954 description = "Perl extension for 32 bit Jenkins Hashing Algorithm"; ··· 7778 7778 }; 7779 7779 7780 7780 MathBigInt = buildPerlPackage rec { 7781 - name = "Math-BigInt-1.999800"; 7781 + name = "Math-BigInt-1.999801"; 7782 7782 src = fetchurl { 7783 7783 url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; 7784 - sha256 = "216096d1f937252bfc449b1de01b760ffaab46e753e150cc2a685f4935bd030d"; 7784 + sha256 = "41deb23d453f5a376759fff155e4947988a6b6713a4164f21aedac8238089e57"; 7785 7785 }; 7786 7786 meta = { 7787 7787 description = "Arbitrary size integer/float math package"; ··· 10066 10066 }; 10067 10067 10068 10068 pcscperl = buildPerlPackage { 10069 - name = "pcsc-perl-1.4.13"; 10069 + name = "pcsc-perl-1.4.14"; 10070 10070 src = fetchurl { 10071 - url = mirror://cpan/authors/id/W/WH/WHOM/pcsc-perl-1.4.13.tar.bz2; 10072 - sha256 = "a5f7dfb30be0346cfe80d47749994dab861592929d80786104693987b36e3684"; 10071 + url = "mirror://cpan/authors/id/W/WH/WHOM/pcsc-perl-1.4.14.tar.bz2"; 10072 + sha256 = "17f6i16jv6ci6459vh6y3sz94vgcvykjjszcl4xsykryakjvf8i7"; 10073 10073 }; 10074 10074 buildInputs = [ pkgs.pcsclite ]; 10075 10075 nativeBuildInputs = [ pkgs.pkgconfig ]; ··· 10077 10077 # tests fail; look unfinished 10078 10078 doCheck = false; 10079 10079 meta = { 10080 - homepage = http://ludovic.rousseau.free.fr/softwares/pcsc-perl/; 10080 + homepage = "http://ludovic.rousseau.free.fr/softwares/pcsc-perl/"; 10081 10081 description = "Communicate with a smart card using PC/SC"; 10082 10082 license = stdenv.lib.licenses.gpl2Plus; 10083 10083 maintainers = with maintainers; [ abbradar ]; ··· 12901 12901 TestSimple = null; 12902 12902 12903 12903 TestSimple13 = buildPerlPackage rec { 12904 - name = "Test-Simple-1.302062"; 12904 + name = "Test-Simple-1.302067"; 12905 12905 src = fetchurl { 12906 12906 url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz"; 12907 - sha256 = "6729060d4ab12e2db3a3c6d6376ee6a9fb77c0ba0308b66919365a1e8bf156ea"; 12907 + sha256 = "4d43a1ed9cd43a5ad0e6cb206c0cd86d59f118ad6895220688d7bd918016b2a3"; 12908 12908 }; 12909 12909 meta = { 12910 12910 description = "Basic utilities for writing tests";
+59 -67
pkgs/top-level/python-packages.nix
··· 218 218 219 219 pycrypto = callPackage ../development/python-modules/pycrypto { }; 220 220 221 + pycryptodome = callPackage ../development/python-modules/pycryptodome { }; 222 + 221 223 pyexiv2 = if (!isPy3k) then callPackage ../development/python-modules/pyexiv2 {} else throw "pyexiv2 not supported for interpreter ${python.executable}"; 222 224 223 225 pygame = callPackage ../development/python-modules/pygame { }; ··· 494 496 }; 495 497 496 498 afew = buildPythonPackage rec { 497 - rev = "3f1e5e93119788984c2193292c988ac81ecb0a45"; 498 - name = "afew-git-2016-01-04"; 499 + rev = "b19a88fa1c06cc03ed6c636475cf4361b616d128"; 500 + name = "afew-git-2016-02-29"; 499 501 500 502 src = pkgs.fetchurl { 501 503 url = "https://github.com/teythoon/afew/tarball/${rev}"; 502 504 name = "${name}.tar.bz"; 503 - sha256 = "1fi19g2j1qilh7ikp7pzn6sagkn76g740zdxgnsqmmvl2zk2yhrw"; 505 + sha256 = "0idlyrk29bmjw3w74vn0c1a6s59phx9zhzghf2cpyqf9qdhxib8k"; 504 506 }; 505 507 506 508 buildInputs = with self; [ pkgs.dbacl ]; ··· 766 768 alot = buildPythonPackage rec { 767 769 rev = "0.3.7"; 768 770 name = "alot-${rev}"; 771 + 772 + disabled = isPy3k; 769 773 770 774 src = pkgs.fetchFromGitHub { 771 775 owner = "pazz"; ··· 1456 1460 propagatedBuildInputs = with self; [ unidecode regex ]; 1457 1461 1458 1462 meta = with stdenv.lib; { 1459 - homepage = https://github.com/dimka665/awesome-slugify; 1463 + homepage = "https://github.com/dimka665/awesome-slugify"; 1460 1464 description = "Python flexible slugify function"; 1461 1465 license = licenses.gpl3; 1462 1466 platforms = platforms.all; ··· 7054 7058 }; 7055 7059 7056 7060 gmusicapi = with pkgs; buildPythonPackage rec { 7057 - name = "gmusicapi-7.0.0"; 7061 + name = "gmusicapi-10.1.0"; 7058 7062 7059 7063 src = pkgs.fetchurl { 7060 - url = "mirror://pypi/g/gmusicapi/gmusicapi-7.0.0.tar.gz"; 7061 - sha256 = "1zji4cgylyzz97cz69lywkbsn5nvvzrhk7iaqnpqpfvj9gwdchwn"; 7064 + url = "mirror://pypi/g/gmusicapi/gmusicapi-10.1.0.tar.gz"; 7065 + sha256 = "0smlrafh1bjzrcjzl7im8pf8f04gcnx92lf3g5qr7yzgq8k20xa2"; 7062 7066 }; 7063 7067 7064 7068 propagatedBuildInputs = with self; [ 7065 7069 validictory 7066 7070 decorator 7067 7071 mutagen 7068 - protobuf 7072 + protobuf3_0 7069 7073 setuptools 7070 7074 requests2 7071 7075 dateutil ··· 7076 7080 pyopenssl 7077 7081 gpsoauth 7078 7082 MechanicalSoup 7083 + future 7079 7084 ]; 7080 7085 7081 7086 meta = { ··· 7247 7252 }; 7248 7253 7249 7254 gpsoauth = buildPythonPackage rec { 7250 - version = "0.0.4"; 7255 + version = "0.2.0"; 7251 7256 name = "gpsoauth-${version}"; 7252 7257 7253 7258 src = pkgs.fetchurl { 7254 7259 url = "mirror://pypi/g/gpsoauth/${name}.tar.gz"; 7255 - sha256 = "1mhd2lkl1f4fmia1cwxwik8gvqr5q16scjip7kfwzadh9a11n9kw"; 7260 + sha256 = "01zxw8rhml8xfwda7ba8983890bzwkfa55ijd6qf8qrdy6ja1ncn"; 7256 7261 }; 7257 7262 7258 7263 propagatedBuildInputs = with self; [ ··· 7265 7270 pyopenssl 7266 7271 pyasn1 7267 7272 pycparser 7268 - pycrypto 7273 + pycryptodome 7269 7274 requests2 7270 7275 six 7271 7276 ]; ··· 8676 8681 8677 8682 python-axolotl = buildPythonPackage rec { 8678 8683 name = "python-axolotl-${version}"; 8679 - version = "0.1.7"; 8684 + version = "0.1.35"; 8680 8685 8681 8686 src = pkgs.fetchurl { 8682 8687 url = "mirror://pypi/p/python-axolotl/${name}.tar.gz"; 8683 - sha256 = "1i3id1mjl67n4sca31s5zwq96kswgsi6lga6np83ayb45rxggvhx"; 8688 + sha256 = "0ch2d5wqfgxy22dkbxwzilq91wkqy9ficrjy39qhal8g8rdc4jr0"; 8684 8689 }; 8685 8690 8686 - propagatedBuildInputs = with self; [ python-axolotl-curve25519 protobuf pycrypto ]; 8691 + propagatedBuildInputs = with self; [ python-axolotl-curve25519 protobuf3_0 pycrypto ]; 8687 8692 8688 8693 meta = { 8689 - homepage = https://github.com/tgalal/python-axolotl; 8694 + homepage = "https://github.com/tgalal/python-axolotl"; 8690 8695 description = "Python port of libaxolotl-android"; 8691 8696 maintainers = with maintainers; [ abbradar ]; 8692 8697 license = licenses.gpl3; ··· 8704 8709 }; 8705 8710 8706 8711 meta = { 8707 - homepage = https://github.com/tgalal/python-axolotl; 8712 + homepage = "https://github.com/tgalal/python-axolotl"; 8708 8713 description = "Curve25519 with ed25519 signatures"; 8709 8714 maintainers = with maintainers; [ abbradar ]; 8710 8715 license = licenses.gpl3; ··· 8729 8734 ''; 8730 8735 8731 8736 meta = { 8732 - homepage = https://launchpad.net/pypolicyd-spf/; 8737 + homepage = "https://launchpad.net/pypolicyd-spf/"; 8733 8738 description = "Postfix policy engine for Sender Policy Framework (SPF) checking"; 8734 8739 maintainers = with maintainers; [ abbradar ]; 8735 8740 license = licenses.asl20; ··· 8932 8937 }; 8933 8938 8934 8939 meta = { 8935 - homepage = http://bmsi.com/python/milter.html; 8940 + homepage = "http://bmsi.com/python/milter.html"; 8936 8941 description = "Python API for Sendmail Milters (SPF)"; 8937 8942 maintainers = with maintainers; [ abbradar ]; 8938 8943 license = licenses.gpl2; ··· 9087 9092 }; 9088 9093 9089 9094 meta = { 9090 - homepage = http://sarge.readthedocs.org/; 9095 + homepage = "http://sarge.readthedocs.org/"; 9091 9096 description = "A wrapper for subprocess which provides command pipeline functionality"; 9092 9097 license = licenses.bsd3; 9093 9098 platform = platforms.all; ··· 9452 9457 9453 9458 regex = buildPythonPackage rec { 9454 9459 name = "regex-${version}"; 9455 - version = "2016.01.10"; 9460 + version = "2016.11.18"; 9456 9461 9457 9462 src = pkgs.fetchurl { 9458 9463 url = "mirror://pypi/r/regex/${name}.tar.gz"; 9459 - sha256 = "1q3rbmnijjzn7y3cm3qy49b5lqw1fq38zv974xma387lwc37d9q2"; 9464 + sha256 = "126ds2b355n3pgl7brshhscpxn14ycs0yznzl8k4akj4sps1i6c6"; 9460 9465 }; 9461 9466 9462 9467 meta = { 9463 9468 description = "Alternative regular expression module, to replace re"; 9464 - homepage = https://bitbucket.org/mrabarnett/mrab-regex; 9469 + homepage = "https://bitbucket.org/mrabarnett/mrab-regex"; 9465 9470 license = licenses.psfl; 9466 9471 platforms = platforms.linux; 9467 9472 maintainers = with maintainers; [ abbradar ]; ··· 9895 9900 }; 9896 9901 }; 9897 9902 9898 - django_1_5 = buildPythonPackage rec { 9899 - name = "Django-${version}"; 9900 - version = "1.5.12"; 9901 - 9902 - src = pkgs.fetchurl { 9903 - url = "http://www.djangoproject.com/m/releases/1.5/${name}.tar.gz"; 9904 - sha256 = "1vbcvn6ncg7hq5i1w95h746vkq9lmp120vx63h3p56z5nsz7gpmk"; 9905 - }; 9906 - 9907 - # too complicated to setup 9908 - doCheck = false; 9909 - 9910 - # patch only $out/bin to avoid problems with starter templates (see #3134) 9911 - postFixup = '' 9912 - wrapPythonProgramsIn $out/bin "$out $pythonPath" 9913 - ''; 9914 - 9915 - meta = { 9916 - description = "A high-level Python Web framework"; 9917 - homepage = https://www.djangoproject.com/; 9918 - }; 9919 - }; 9920 - 9921 9903 django_appconf = buildPythonPackage rec { 9922 9904 name = "django-appconf-${version}"; 9923 9905 version = "1.0.1"; ··· 10067 10049 }; 10068 10050 10069 10051 django_tagging = buildPythonPackage rec { 10070 - name = "django-tagging-0.3.1"; 10052 + name = "django-tagging-0.4.5"; 10071 10053 10072 10054 src = pkgs.fetchurl { 10073 10055 url = "mirror://pypi/d/django-tagging/${name}.tar.gz"; 10074 - sha256 = "e5fbeb7ca6e0c22a9a96239095dff508040ec95171e51c69e6f8ada72ea4bce2"; 10056 + sha256 = "00ki1g6pb2lnaj4lh0s865mmlf4kdwx7a6n38iy5qz9qv4xrvz4q"; 10075 10057 }; 10076 10058 10077 10059 # error: invalid command 'test' 10078 10060 doCheck = false; 10079 10061 10080 - propagatedBuildInputs = with self; [ django_1_5 ]; 10062 + propagatedBuildInputs = with self; [ django ]; 10081 10063 10082 10064 meta = { 10083 10065 description = "A generic tagging application for Django projects"; 10084 - homepage = http://code.google.com/p/django-tagging/; 10066 + homepage = https://github.com/Fantomas42/django-tagging; 10085 10067 }; 10086 10068 }; 10087 10069 ··· 11008 10990 11009 10991 flask_assets = buildPythonPackage rec { 11010 10992 name = "Flask-Assets-${version}"; 11011 - version = "0.11"; 10993 + version = "0.12"; 11012 10994 11013 10995 src = pkgs.fetchurl { 11014 10996 url = "mirror://pypi/F/Flask-Assets/${name}.tar.gz"; 11015 - sha256 = "1vs59gygwhwqj37if8hiw6vd2rns09xkblaz4qkmpp6hpy3shrvf"; 10997 + sha256 = "0ivqsihk994rxw58vdgzrx4d77d7lpzjm4qxb38hjdgvi5xm4cb0"; 11016 10998 }; 11017 10999 11018 11000 propagatedBuildInputs = with self; [ flask webassets flask_script nose ]; 11019 11001 11020 11002 meta = { 11021 - homepage = http://github.com/miracle2k/flask-assets; 11003 + homepage = "http://github.com/miracle2k/flask-assets"; 11022 11004 description = "Asset management for Flask, to compress and merge CSS and Javascript files"; 11023 11005 license = licenses.bsd2; 11024 11006 maintainers = with maintainers; [ abbradar ]; ··· 11063 11045 11064 11046 flask_login = buildPythonPackage rec { 11065 11047 name = "Flask-Login-${version}"; 11066 - version = "0.2.2"; 11048 + version = "0.4.0"; 11067 11049 11068 11050 src = pkgs.fetchurl { 11069 11051 url = "mirror://pypi/F/Flask-Login/${name}.tar.gz"; 11070 - sha256 = "09ygn0r3i3jz065a5psng6bhlsqm78msnly4z6x39bs48r5ww17p"; 11052 + sha256 = "19w2f33lglkyvxqnj3qghhxa4pr8mp13235k1bd557x52imkapnj"; 11071 11053 }; 11072 11054 11073 11055 propagatedBuildInputs = with self; [ flask ]; ··· 11076 11058 doCheck = false; 11077 11059 11078 11060 meta = { 11079 - homepage = http://github.com/miracle2k/flask-assets; 11061 + homepage = "https://github.com/maxcountryman/flask-login"; 11080 11062 description = "User session management for Flask"; 11081 11063 license = licenses.mit; 11082 11064 platforms = platforms.all; ··· 11121 11103 propagatedBuildInputs = with self; [ flask blinker nose ]; 11122 11104 11123 11105 meta = { 11124 - homepage = http://packages.python.org/Flask-Principal/; 11106 + homepage = "http://packages.python.org/Flask-Principal/"; 11125 11107 description = "Identity management for flask"; 11126 11108 license = licenses.bsd2; 11127 11109 platforms = platforms.all; ··· 11160 11142 propagatedBuildInputs = with self; [ flask ]; 11161 11143 11162 11144 meta = { 11163 - homepage = http://github.com/smurfix/flask-script; 11145 + homepage = "http://github.com/smurfix/flask-script"; 11164 11146 description = "Scripting support for Flask"; 11165 11147 license = licenses.bsd3; 11166 11148 platforms = platforms.all; ··· 13398 13380 }; 13399 13381 13400 13382 meta = { 13401 - homepage = https://github.com/jlhutch/pylru; 13383 + homepage = "https://github.com/jlhutch/pylru"; 13402 13384 description = "A least recently used (LRU) cache implementation"; 13403 13385 license = licenses.gpl2; 13404 13386 platforms = platforms.all; ··· 14761 14743 }; 14762 14744 14763 14745 mutagen = buildPythonPackage (rec { 14764 - name = "mutagen-1.32"; 14746 + name = "mutagen-1.34"; 14765 14747 14766 14748 src = pkgs.fetchurl { 14767 14749 url = "mirror://pypi/m/mutagen/${name}.tar.gz"; 14768 - sha256 = "1d9sxl442xjj7pdyjj5h0dsjyd7d3wqswr8icqqgqdmg9k8dw8bp"; 14750 + sha256 = "06anfzpjajwwh25n3afavwafrix3abahgwfr2zinrhqh2w98kw5s"; 14769 14751 }; 14770 14752 14771 14753 # Needed for tests only ··· 26014 25996 26015 25997 webassets = buildPythonPackage rec { 26016 25998 name = "webassets-${version}"; 26017 - version = "0.11.1"; 25999 + version = "0.12.0"; 26018 26000 26019 26001 src = pkgs.fetchurl { 26020 26002 url = "mirror://pypi/w/webassets/${name}.tar.gz"; 26021 - sha256 = "0p1qypcbq9b88ipcylxh3bbnby5n6dr421wb4bwmrlcrgvj4r5lz"; 26003 + sha256 = "14m13xa5sc7iqq2j1wsd2klcwaihqlhz2l9lmn92dks2yc8hplcr"; 26022 26004 }; 26023 26005 26024 26006 propagatedBuildInputs = with self; [ pyyaml ]; 26025 26007 26026 26008 meta = { 26027 26009 description = "Media asset management for Python, with glue code for various web frameworks"; 26028 - homepage = http://github.com/miracle2k/webassets/; 26010 + homepage = "http://github.com/miracle2k/webassets/"; 26029 26011 license = licenses.bsd2; 26030 26012 platforms = platforms.all; 26031 26013 maintainers = with maintainers; [ abbradar ]; ··· 26300 26282 }; 26301 26283 }); 26302 26284 26285 + magic-wormhole = callPackage ../development/python-modules/magic-wormhole { 26286 + pythonPackages = self; 26287 + }; 26303 26288 26304 26289 wsgiproxy2 = buildPythonPackage rec { 26305 26290 name = "WSGIProxy2-0.4.2"; ··· 27847 27832 27848 27833 graphite_web = buildPythonPackage rec { 27849 27834 name = "graphite-web-${version}"; 27850 - version = "0.9.12"; 27835 + disabled = isPy3k; 27836 + version = "0.9.15"; 27851 27837 27852 27838 src = pkgs.fetchurl rec { 27853 27839 url = "mirror://pypi/g/graphite-web/${name}.tar.gz"; 27854 - sha256 = "472a4403fd5b5364939aee10e78f171b1489e5f6bfe6f150ed9cae8476410114"; 27840 + sha256 = "1c0kclbv8shv9nvjx19wqm4asia58s3qmd9fapchc6y9fjpjax6q"; 27855 27841 }; 27856 27842 27857 - propagatedBuildInputs = with self; [ django_1_5 django_tagging whisper pycairo ldap memcached ]; 27843 + propagatedBuildInputs = with self; [ django django_tagging whisper pycairo ldap memcached ]; 27858 27844 27859 27845 postInstall = '' 27860 27846 wrapProgram $out/bin/run-graphite-devel-server.py \ ··· 28659 28645 sha256 = "1hknxlp3a3f8njn19w92p8nhzl9jkfwzhv5fmxhmyq2m8hqrfj8j"; 28660 28646 }; 28661 28647 28662 - propagatedBuildInputs = with self; [pkgs.libsodium six cffi pycparser pytest]; 28648 + buildInputs = with self; [ pytest coverage ]; 28649 + propagatedBuildInputs = with self; [pkgs.libsodium six cffi pycparser]; 28650 + 28651 + checkPhase = '' 28652 + coverage run --source nacl --branch -m pytest 28653 + ''; 28654 + 28663 28655 }; 28664 28656 28665 28657 service-identity = buildPythonPackage rec {