Merge branch 'master' into staging

+3972 -1936
+3 -1
lib/maintainers.nix
··· 75 75 berdario = "Dario Bertini <berdario@gmail.com>"; 76 76 bergey = "Daniel Bergey <bergey@teallabs.org>"; 77 77 bhipple = "Benjamin Hipple <bhipple@protonmail.com>"; 78 + binarin = "Alexey Lebedeff <binarin@binarin.ru>"; 78 79 bjg = "Brian Gough <bjg@gnu.org>"; 79 80 bjornfor = "Bjørn Forsman <bjorn.forsman@gmail.com>"; 80 81 bluescreen303 = "Mathijs Kwik <mathijs@bluescreen303.nl>"; ··· 248 249 jammerful = "jammerful <jammerful@gmail.com>"; 249 250 jansol = "Jan Solanti <jan.solanti@paivola.fi>"; 250 251 javaguirre = "Javier Aguirre <contacto@javaguirre.net>"; 251 - jb55 = "William Casarin <bill@casarin.me>"; 252 + jb55 = "William Casarin <jb55@jb55.com>"; 252 253 jbedo = "Justin Bedő <cu@cua0.org>"; 253 254 jcumming = "Jack Cummings <jack@mudshark.org>"; 254 255 jdagilliland = "Jason Gilliland <jdagilliland@gmail.com>"; ··· 291 292 kierdavis = "Kier Davis <kierdavis@gmail.com>"; 292 293 kkallio = "Karn Kallio <tierpluspluslists@gmail.com>"; 293 294 knedlsepp = "Josef Kemetmüller <josef.kemetmueller@gmail.com>"; 295 + konimex = "Muhammad Herdiansyah <herdiansyah@openmailbox.org>"; 294 296 koral = "Koral <koral@mailoo.org>"; 295 297 kovirobi = "Kovacsics Robert <kovirobi@gmail.com>"; 296 298 kragniz = "Louis Taylor <louis@kragniz.eu>";
+6
nixos/doc/manual/release-notes/rl-1709.xml
··· 157 157 module where user Fontconfig settings are available. 158 158 </para> 159 159 </listitem> 160 + <listitem> 161 + <para> 162 + ZFS/SPL have been updated to 0.7.0, <literal>zfsUnstable, splUnstable</literal> 163 + have therefore been removed. 164 + </para> 165 + </listitem> 160 166 161 167 </itemizedlist> 162 168
+64 -11
nixos/modules/config/swap.nix
··· 5 5 6 6 let 7 7 8 + randomEncryptionCoerce = enable: { inherit enable; }; 9 + 10 + randomEncryptionOpts = { ... }: { 11 + 12 + options = { 13 + 14 + enable = mkOption { 15 + default = false; 16 + type = types.bool; 17 + description = '' 18 + Encrypt swap device with a random key. This way you won't have a persistent swap device. 19 + 20 + WARNING: Don't try to hibernate when you have at least one swap partition with 21 + this option enabled! We have no way to set the partition into which hibernation image 22 + is saved, so if your image ends up on an encrypted one you would lose it! 23 + 24 + WARNING #2: Do not use /dev/disk/by-uuid/… or /dev/disk/by-label/… as your swap device 25 + when using randomEncryption as the UUIDs and labels will get erased on every boot when 26 + the partition is encrypted. Best to use /dev/disk/by-partuuid/… 27 + ''; 28 + }; 29 + 30 + cipher = mkOption { 31 + default = "aes-xts-plain64"; 32 + example = "serpent-xts-plain64"; 33 + type = types.str; 34 + description = '' 35 + Use specified cipher for randomEncryption. 36 + 37 + Hint: Run "cryptsetup benchmark" to see which one is fastest on your machine. 38 + ''; 39 + }; 40 + 41 + source = mkOption { 42 + default = "/dev/urandom"; 43 + example = "/dev/random"; 44 + type = types.str; 45 + description = '' 46 + Define the source of randomness to obtain a random key for encryption. 47 + ''; 48 + }; 49 + 50 + }; 51 + 52 + }; 53 + 8 54 swapCfg = {config, options, ...}: { 9 55 10 56 options = { ··· 47 93 48 94 randomEncryption = mkOption { 49 95 default = false; 50 - type = types.bool; 96 + example = { 97 + enable = true; 98 + cipher = "serpent-xts-plain64"; 99 + source = "/dev/random"; 100 + }; 101 + type = types.coercedTo types.bool randomEncryptionCoerce (types.submodule randomEncryptionOpts); 51 102 description = '' 52 103 Encrypt swap device with a random key. This way you won't have a persistent swap device. 104 + 105 + HINT: run "cryptsetup benchmark" to test cipher performance on your machine. 53 106 54 107 WARNING: Don't try to hibernate when you have at least one swap partition with 55 108 this option enabled! We have no way to set the partition into which hibernation image ··· 77 130 device = mkIf options.label.isDefined 78 131 "/dev/disk/by-label/${config.label}"; 79 132 deviceName = lib.replaceChars ["\\"] [""] (escapeSystemdPath config.device); 80 - realDevice = if config.randomEncryption then "/dev/mapper/${deviceName}" else config.device; 133 + realDevice = if config.randomEncryption.enable then "/dev/mapper/${deviceName}" else config.device; 81 134 }; 82 135 83 136 }; ··· 125 178 126 179 createSwapDevice = sw: 127 180 assert sw.device != ""; 128 - assert !(sw.randomEncryption && lib.hasPrefix "/dev/disk/by-uuid" sw.device); 129 - assert !(sw.randomEncryption && lib.hasPrefix "/dev/disk/by-label" sw.device); 181 + assert !(sw.randomEncryption.enable && lib.hasPrefix "/dev/disk/by-uuid" sw.device); 182 + assert !(sw.randomEncryption.enable && lib.hasPrefix "/dev/disk/by-label" sw.device); 130 183 let realDevice' = escapeSystemdPath sw.realDevice; 131 184 in nameValuePair "mkswap-${sw.deviceName}" 132 185 { description = "Initialisation of swap device ${sw.device}"; 133 186 wantedBy = [ "${realDevice'}.swap" ]; 134 187 before = [ "${realDevice'}.swap" ]; 135 - path = [ pkgs.utillinux ] ++ optional sw.randomEncryption pkgs.cryptsetup; 188 + path = [ pkgs.utillinux ] ++ optional sw.randomEncryption.enable pkgs.cryptsetup; 136 189 137 190 script = 138 191 '' ··· 145 198 truncate --size "${toString sw.size}M" "${sw.device}" 146 199 fi 147 200 chmod 0600 ${sw.device} 148 - ${optionalString (!sw.randomEncryption) "mkswap ${sw.realDevice}"} 201 + ${optionalString (!sw.randomEncryption.enable) "mkswap ${sw.realDevice}"} 149 202 fi 150 203 ''} 151 - ${optionalString sw.randomEncryption '' 152 - cryptsetup open ${sw.device} ${sw.deviceName} --type plain --key-file /dev/urandom 204 + ${optionalString sw.randomEncryption.enable '' 205 + cryptsetup plainOpen -c ${sw.randomEncryption.cipher} -d ${sw.randomEncryption.source} ${sw.device} ${sw.deviceName} 153 206 mkswap ${sw.realDevice} 154 207 ''} 155 208 ''; ··· 157 210 unitConfig.RequiresMountsFor = [ "${dirOf sw.device}" ]; 158 211 unitConfig.DefaultDependencies = false; # needed to prevent a cycle 159 212 serviceConfig.Type = "oneshot"; 160 - serviceConfig.RemainAfterExit = sw.randomEncryption; 161 - serviceConfig.ExecStop = optionalString sw.randomEncryption "${pkgs.cryptsetup}/bin/cryptsetup luksClose ${sw.deviceName}"; 213 + serviceConfig.RemainAfterExit = sw.randomEncryption.enable; 214 + serviceConfig.ExecStop = optionalString sw.randomEncryption.enable "${pkgs.cryptsetup}/bin/cryptsetup luksClose ${sw.deviceName}"; 162 215 restartIfChanged = false; 163 216 }; 164 217 165 - in listToAttrs (map createSwapDevice (filter (sw: sw.size != null || sw.randomEncryption) config.swapDevices)); 218 + in listToAttrs (map createSwapDevice (filter (sw: sw.size != null || sw.randomEncryption.enable) config.swapDevices)); 166 219 167 220 }; 168 221
+10 -12
nixos/modules/hardware/mcelog.nix
··· 3 3 with lib; 4 4 5 5 { 6 - meta.maintainers = [ maintainers.grahamc ]; 6 + meta.maintainers = with maintainers; [ grahamc ]; 7 7 options = { 8 8 9 9 hardware.mcelog = { ··· 19 19 }; 20 20 21 21 config = mkIf config.hardware.mcelog.enable { 22 - systemd.services.mcelog = { 23 - description = "Machine Check Exception Logging Daemon"; 24 - wantedBy = [ "multi-user.target" ]; 25 - 26 - serviceConfig = { 27 - ExecStart = "${pkgs.mcelog}/bin/mcelog --daemon --foreground"; 28 - SuccessExitStatus = [ 0 15 ]; 22 + systemd = { 23 + packages = [ pkgs.mcelog ]; 29 24 30 - ProtectHome = true; 31 - PrivateNetwork = true; 32 - PrivateTmp = true; 25 + services.mcelog = { 26 + wantedBy = [ "multi-user.target" ]; 27 + serviceConfig = { 28 + ProtectHome = true; 29 + PrivateNetwork = true; 30 + PrivateTmp = true; 31 + }; 33 32 }; 34 33 }; 35 34 }; 36 - 37 35 }
+1
nixos/modules/rename.nix
··· 204 204 "Set the option `services.xserver.displayManager.sddm.package' instead.") 205 205 (mkRemovedOptionModule [ "fonts" "fontconfig" "forceAutohint" ] "") 206 206 (mkRemovedOptionModule [ "fonts" "fontconfig" "renderMonoTTFAsBitmap" ] "") 207 + (mkRemovedOptionModule [ "boot" "zfs" "enableUnstable" ] "0.7.0 is now the default") 207 208 208 209 # ZSH 209 210 (mkRenamedOptionModule [ "programs" "zsh" "enableSyntaxHighlighting" ] [ "programs" "zsh" "syntaxHighlighting" "enable" ])
+1 -1
nixos/modules/services/databases/mongodb.nix
··· 108 108 after = [ "network.target" ]; 109 109 110 110 serviceConfig = { 111 - ExecStart = "${mongodb}/bin/mongod --quiet --config ${mongoCnf} --fork --pidfilepath ${cfg.pidFile}"; 111 + ExecStart = "${mongodb}/bin/mongod --config ${mongoCnf} --fork --pidfilepath ${cfg.pidFile}"; 112 112 User = cfg.user; 113 113 PIDFile = cfg.pidFile; 114 114 Type = "forking";
+1 -1
nixos/modules/services/network-filesystems/tahoe.nix
··· 243 243 preStart = '' 244 244 if [ ! -d ${lib.escapeShellArg nodedir} ]; then 245 245 mkdir -p /var/db/tahoe-lafs 246 - tahoe create-introducer "${lib.escapeShellArg nodedir} 246 + tahoe create-introducer ${lib.escapeShellArg nodedir} 247 247 fi 248 248 249 249 # Tahoe has created a predefined tahoe.cfg which we must now
+2 -1
nixos/modules/services/networking/tinc.nix
··· 169 169 serviceConfig = { 170 170 Type = "simple"; 171 171 PIDFile = "/run/tinc.${network}.pid"; 172 - Restart = "on-failure"; 172 + Restart = "always"; 173 + RestartSec = "3"; 173 174 }; 174 175 preStart = '' 175 176 mkdir -p /etc/tinc/${network}/hosts
+4 -44
nixos/modules/services/x11/xserver.nix
··· 648 648 649 649 services.xserver.xkbDir = mkDefault "${pkgs.xkeyboard_config}/etc/X11/xkb"; 650 650 651 - system.extraDependencies = singleton (pkgs.runCommand "xkb-layouts-exist" { 652 - inherit (cfg) layout xkbDir; 651 + system.extraDependencies = singleton (pkgs.runCommand "xkb-validated" { 652 + inherit (cfg) xkbModel layout xkbVariant xkbOptions; 653 + nativeBuildInputs = [ pkgs.xkbvalidate ]; 653 654 } '' 654 - # We can use the default IFS here, because the layouts won't contain 655 - # spaces or tabs and are ruled out by the sed expression below. 656 - availableLayouts="$( 657 - sed -n -e ':i /^! \(layout\|variant\) *$/ { 658 - # Loop through all of the layouts/variants until we hit another ! at 659 - # the start of the line or the line is empty ('t' branches only if 660 - # the last substitution was successful, so if the line is empty the 661 - # substition will fail). 662 - :l; n; /^!/bi; s/^ *\([^ ]\+\).*/\1/p; tl 663 - }' "$xkbDir/rules/base.lst" | sort -u 664 - )" 665 - 666 - layoutNotFound() { 667 - echo >&2 668 - echo "The following layouts and variants are available:" >&2 669 - echo >&2 670 - 671 - # While an output width of 80 is more desirable for small terminals, we 672 - # really don't know the amount of columns of the terminal from within 673 - # the builder. The content in $availableLayouts however is pretty 674 - # large, so let's opt for a larger width here, because it will print a 675 - # smaller amount of lines on modern KMS/framebuffer terminals and won't 676 - # lose information even in smaller terminals (it only will look a bit 677 - # ugly). 678 - echo "$availableLayouts" | ${pkgs.utillinux}/bin/column -c 150 >&2 679 - 680 - echo >&2 681 - echo "However, the keyboard layout definition in" \ 682 - "\`services.xserver.layout' contains the layout \`$1', which" \ 683 - "isn't a valid layout or variant." >&2 684 - echo >&2 685 - exit 1 686 - } 687 - 688 - # Again, we don't need to take care of IFS, see the comment for 689 - # $availableLayouts. 690 - for l in ''${layout//,/ }; do 691 - if ! echo "$availableLayouts" | grep -qxF "$l"; then 692 - layoutNotFound "$l" 693 - fi 694 - done 695 - 655 + validate "$xkbModel" "$layout" "$xkbVariant" "$xkbOptions" 696 656 touch "$out" 697 657 ''); 698 658
+1 -1
nixos/modules/system/boot/stage-1.nix
··· 207 207 preLVMCommands preDeviceCommands postDeviceCommands postMountCommands preFailCommands kernelModules; 208 208 209 209 resumeDevices = map (sd: if sd ? device then sd.device else "/dev/disk/by-label/${sd.label}") 210 - (filter (sd: hasPrefix "/dev/" sd.device && !sd.randomEncryption 210 + (filter (sd: hasPrefix "/dev/" sd.device && !sd.randomEncryption.enable 211 211 # Don't include zram devices 212 212 && !(hasPrefix "/dev/zram" sd.device) 213 213 ) config.swapDevices);
+1 -18
nixos/modules/tasks/filesystems/zfs.nix
··· 24 24 25 25 kernel = config.boot.kernelPackages; 26 26 27 - packages = if config.boot.zfs.enableUnstable then { 28 - spl = kernel.splUnstable; 29 - zfs = kernel.zfsUnstable; 30 - zfsUser = pkgs.zfsUnstable; 31 - } else { 27 + packages = { 32 28 spl = kernel.spl; 33 29 zfs = kernel.zfs; 34 30 zfsUser = pkgs.zfs; ··· 62 58 63 59 options = { 64 60 boot.zfs = { 65 - enableUnstable = mkOption { 66 - type = types.bool; 67 - default = false; 68 - description = '' 69 - Use the unstable zfs package. This might be an option, if the latest 70 - kernel is not yet supported by a published release of ZFS. Enabling 71 - this option will install a development version of ZFS on Linux. The 72 - version will have already passed an extensive test suite, but it is 73 - more likely to hit an undiscovered bug compared to running a released 74 - version of ZFS on Linux. 75 - ''; 76 - }; 77 - 78 61 extraPools = mkOption { 79 62 type = types.listOf types.str; 80 63 default = [];
+3 -3
pkgs/applications/audio/svox/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "svox-${version}"; 5 - version = "2016-10-20"; 5 + version = "2017-07-18"; 6 6 7 7 src = fetchgit { 8 8 url = "https://android.googlesource.com/platform/external/svox"; 9 - rev = "2dd8f16e4436520b93e93aa72b92acad92c0127d"; 10 - sha256 = "064h3zb9bn1z6xbv15iy6l4rlxx8fqzy54s898qvafjhz6kawj9g"; 9 + rev = "7e68d0e9aac1b5d2ad15e92ddaa3bceb27973fcb"; 10 + sha256 = "1bqj12w23nn27x64ianm2flrqvkskpvgrnly7ah8gv6k8s8chh3r"; 11 11 }; 12 12 13 13 postPatch = ''
+3 -3
pkgs/applications/editors/android-studio/packages.nix
··· 27 27 28 28 preview = mkStudio rec { 29 29 pname = "android-studio-preview"; 30 - version = "3.0.0.6"; 31 - build = "171.4182969"; 30 + version = "3.0.0.7"; # This is actually "Android Studio 3.0 Canary 8" 31 + build = "171.4195411"; 32 32 33 33 src = fetchurl { 34 34 url = "https://dl.google.com/dl/android/studio/ide-zips/${version}/android-studio-ide-${build}-linux.zip"; 35 - sha256 = "0s26k5qr0qg6az77yw2mvnhavwi4aza4ifvd45ljank8aqr6sp5i"; 35 + sha256 = "1yzhr845shjq2cd5hcanppxmnj34ky9ry755y4ywf5f1w5ha5xzj"; 36 36 }; 37 37 38 38 meta = stable.meta // {
+4 -4
pkgs/applications/editors/eclipse/plugins.nix
··· 106 106 107 107 anyedittools = buildEclipsePlugin rec { 108 108 name = "anyedit-${version}"; 109 - version = "2.6.0.201511291145"; 109 + version = "2.7.0.201705171641"; 110 110 111 111 srcFeature = fetchurl { 112 112 url = "http://andrei.gmxhome.de/eclipse/features/AnyEditTools_${version}.jar"; 113 - sha256 = "1vllci75qcd28b6hn2jz29l6cabxx9ql5i6l9cwq9rxp49dhc96b"; 113 + sha256 = "07k029nw5ibxpjc0siy06ihylbqrxllf59yz8c544gra8lc079c9"; 114 114 }; 115 115 116 116 srcPlugin = fetchurl { 117 - url = "https://github.com/iloveeclipse/anyedittools/releases/download/2.6.0/de.loskutov.anyedit.AnyEditTools_${version}.jar"; 118 - sha256 = "0mgq0ylfa7srjf7azyx0kbahlsjf0sdpazqphzx4f0bfn1l328s4"; 117 + url = "https://github.com/iloveeclipse/anyedittools/releases/download/2.7.0/de.loskutov.anyedit.AnyEditTools_${version}.jar"; 118 + sha256 = "0wbm8zfjh7gxrw5sy9m3siddiazh5czgxp7zyzxwzkdqyqzqs70h"; 119 119 }; 120 120 121 121 meta = with stdenv.lib; {
+18 -18
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.90.2"; 178 + version = "11.91.0"; 179 179 src = fetchurl { 180 - url = "https://elpa.gnu.org/packages/auctex-11.90.2.tar"; 181 - sha256 = "1hid8srj64nwbxcjvdma1xy07bh0v8ndhhsi3nmx9vdi3167khz6"; 180 + url = "https://elpa.gnu.org/packages/auctex-11.91.0.tar"; 181 + sha256 = "1yh182mxgngjmwpkyv2n9km3vyq95bqfq8mnly3dbv78nwk7f2l3"; 182 182 }; 183 183 packageRequires = []; 184 184 meta = { ··· 930 930 hydra = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }: 931 931 elpaBuild { 932 932 pname = "hydra"; 933 - version = "0.13.5"; 933 + version = "0.14.0"; 934 934 src = fetchurl { 935 - url = "https://elpa.gnu.org/packages/hydra-0.13.5.tar"; 936 - sha256 = "0vq1pjyq6ddbikbh0vzdigbs0zlldgwad0192s7v9npg8qlwi668"; 935 + url = "https://elpa.gnu.org/packages/hydra-0.14.0.tar"; 936 + sha256 = "1r2vl2cpzqzayfzc0bijigxc7c0mkgcv96g4p65gnw99jk8d78kb"; 937 937 }; 938 938 packageRequires = [ cl-lib ]; 939 939 meta = { ··· 1023 1023 js2-mode = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }: 1024 1024 elpaBuild { 1025 1025 pname = "js2-mode"; 1026 - version = "20170116"; 1026 + version = "20170721"; 1027 1027 src = fetchurl { 1028 - url = "https://elpa.gnu.org/packages/js2-mode-20170116.tar"; 1029 - sha256 = "1z4k7710yz1fbm2w8m17q81yyp8sxllld0zmgfnc336iqrc07hmk"; 1028 + url = "https://elpa.gnu.org/packages/js2-mode-20170721.tar"; 1029 + sha256 = "02w2hgk8qbmwkksqf1dmslpr3xn9zjp3srl3qh8730w8r8s8czni"; 1030 1030 }; 1031 1031 packageRequires = [ cl-lib emacs ]; 1032 1032 meta = { ··· 1446 1446 }) {}; 1447 1447 org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 1448 1448 pname = "org"; 1449 - version = "20170717"; 1449 + version = "20170724"; 1450 1450 src = fetchurl { 1451 - url = "https://elpa.gnu.org/packages/org-20170717.tar"; 1452 - sha256 = "0jrkfclwlbfcdkf56awnmvyw5vb9qwbfyyf2z4ilwx29zps9mxnh"; 1451 + url = "https://elpa.gnu.org/packages/org-20170724.tar"; 1452 + sha256 = "1f1szds6642427hrzagxgkr05z66sf57n5l2acvmpgw4z358ms0n"; 1453 1453 }; 1454 1454 packageRequires = []; 1455 1455 meta = { ··· 1785 1785 }) {}; 1786 1786 sokoban = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { 1787 1787 pname = "sokoban"; 1788 - version = "1.4.2"; 1788 + version = "1.4.4"; 1789 1789 src = fetchurl { 1790 - url = "https://elpa.gnu.org/packages/sokoban-1.4.2.tar"; 1791 - sha256 = "0sciv7rl1p1ar1jris1py2slrd8kr4q6a4plmb0jq6lv9dlqyvc6"; 1790 + url = "https://elpa.gnu.org/packages/sokoban-1.4.4.tar"; 1791 + sha256 = "0lz0qxgs71yh23iayv50rb6qgqvgbz2bg2sgfxcps8wag643ns20"; 1792 1792 }; 1793 1793 packageRequires = []; 1794 1794 meta = { ··· 2198 2198 yasnippet = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }: 2199 2199 elpaBuild { 2200 2200 pname = "yasnippet"; 2201 - version = "0.11.0"; 2201 + version = "0.12.1"; 2202 2202 src = fetchurl { 2203 - url = "https://elpa.gnu.org/packages/yasnippet-0.11.0.tar"; 2204 - sha256 = "1m0hchhianl69sb1iqa8av513qvz6krjg4b5ppwfx1sjlai9xj2y"; 2203 + url = "https://elpa.gnu.org/packages/yasnippet-0.12.1.tar"; 2204 + sha256 = "01q1hn3w8w63s7cvr9bq6l5n4nyirnk8qfba60ajp3j6ndi2964n"; 2205 2205 }; 2206 2206 packageRequires = [ cl-lib ]; 2207 2207 meta = {
+1081 -820
pkgs/applications/editors/emacs-modes/melpa-generated.nix
··· 82 82 license = lib.licenses.free; 83 83 }; 84 84 }) {}; 85 + a = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 86 + melpaBuild { 87 + pname = "a"; 88 + version = "20170720.553"; 89 + src = fetchFromGitHub { 90 + owner = "plexus"; 91 + repo = "a.el"; 92 + rev = "3af0122abac723f0d3dc21ee50eeb81afa26d361"; 93 + sha256 = "0grwpy4ssmn2m8aihfkxb7ifl7ql2hgicw16wzl0crpy5fndh1mp"; 94 + }; 95 + recipeFile = fetchurl { 96 + url = "https://raw.githubusercontent.com/milkypostman/melpa/a226f1d81cd1ae81b91c1102fbe40aac2eddcaa8/recipes/a"; 97 + sha256 = "1xqja47iw1c78kiv4854z47iblvvzrc1l35zjdhmhkh9hh10z886"; 98 + name = "a"; 99 + }; 100 + packageRequires = [ emacs ]; 101 + meta = { 102 + homepage = "https://melpa.org/#/a"; 103 + license = lib.licenses.free; 104 + }; 105 + }) {}; 85 106 aa-edit-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, navi2ch }: 86 107 melpaBuild { 87 108 pname = "aa-edit-mode"; ··· 801 822 src = fetchFromGitHub { 802 823 owner = "Andersbakken"; 803 824 repo = "rtags"; 804 - rev = "65c8f03ff0112ce5c5e11aff6867ad0eb9019e63"; 805 - sha256 = "0xlacwjmvx5xd8m7yi8l8mqi0lqs2gr2hmjag2frvmxcn4cpb4gc"; 825 + rev = "afbf59630203624e0a5eecee52a3296295e6d620"; 826 + sha256 = "0bygl7ahwsz6xmw0fif7gqnpzbk8cx7hpg4gp96f8inicq849z26"; 806 827 }; 807 828 recipeFile = fetchurl { 808 829 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ac-rtags"; ··· 923 944 ace-jump-buffer = callPackage ({ avy, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 924 945 melpaBuild { 925 946 pname = "ace-jump-buffer"; 926 - version = "20160229.1458"; 947 + version = "20170717.1148"; 927 948 src = fetchFromGitHub { 928 949 owner = "waymondo"; 929 950 repo = "ace-jump-buffer"; 930 - rev = "9224e279a53fba06ed5561e22bf89ab94f74b9e7"; 931 - sha256 = "1y2rl4faj1nfjqbh393yp460cbv24simllak31ag1ischpcbqjy4"; 951 + rev = "9b1bb1a817c97cfa3853cc24474bd13e641f560d"; 952 + sha256 = "1qlm025jhxqsb5xcp1mcpm4djlah9xnsw3m26cfrk686b17x8l4l"; 932 953 }; 933 954 recipeFile = fetchurl { 934 955 url = "https://raw.githubusercontent.com/milkypostman/melpa/31100b5b899e942de7796bcbf6365625d1b62574/recipes/ace-jump-buffer"; ··· 986 1007 ace-jump-zap = callPackage ({ ace-jump-mode, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 987 1008 melpaBuild { 988 1009 pname = "ace-jump-zap"; 989 - version = "20150330.1342"; 1010 + version = "20170717.1149"; 990 1011 src = fetchFromGitHub { 991 1012 owner = "waymondo"; 992 1013 repo = "ace-jump-zap"; 993 - rev = "c60af83a857955b68c568c274a3c80cbe93f3150"; 994 - sha256 = "0z0rblr41r94l4b2gh9fcw50nk82ifxrr3ilxqzbb8wmvil54gh4"; 1014 + rev = "52b5d4c6c73bd0fc833a0dcb4e803a5287d8cae8"; 1015 + sha256 = "1iw90mk6hdrbskxgv67xj27qd26w5dlh4s6a6xqqsj8ld56nzbvr"; 995 1016 }; 996 1017 recipeFile = fetchurl { 997 1018 url = "https://raw.githubusercontent.com/milkypostman/melpa/3b435db3b79333a20aa27a72f33c431f0a019ba1/recipes/ace-jump-zap"; ··· 1178 1199 src = fetchFromGitHub { 1179 1200 owner = "nickmccurdy"; 1180 1201 repo = "add-hooks"; 1181 - rev = "edd4cb032a509b576d88f4cc0521ebfe66a9e6c7"; 1182 - sha256 = "1qg1ifkds84xv07ibz4sqp34ks60w4c7dvrq9dch4gvg040hal82"; 1202 + rev = "5e18cc3887477aeec41a34f608d9aa55bfa92d0e"; 1203 + sha256 = "05a0ayqjldl53s3zmfgmdqq8jf1qw1m2a2sj4qzn2bci0dgsakcp"; 1183 1204 }; 1184 1205 recipeFile = fetchurl { 1185 1206 url = "https://raw.githubusercontent.com/milkypostman/melpa/901f846aef46d512dc0a1770bab7f07c0ae330cd/recipes/add-hooks"; ··· 1428 1449 src = fetchFromGitHub { 1429 1450 owner = "AnthonyDiGirolamo"; 1430 1451 repo = "airline-themes"; 1431 - rev = "40cb03bbb56f09cfbfae07ff9ff97f3aaf8324be"; 1432 - sha256 = "0pngxrs1zz0vr0m7sbrl11a5gnxsgbqk1kp9566nj79h02y81sd7"; 1452 + rev = "0c0f8efbeaefa49ef04c0c4405b1ef79ecc5433e"; 1453 + sha256 = "08hkx5wf9qyh4d5s5z4v57d43qkzw6p8zsqijw92wy4kngv1gl78"; 1433 1454 }; 1434 1455 recipeFile = fetchurl { 1435 1456 url = "https://raw.githubusercontent.com/milkypostman/melpa/addeb923176132a52807308fa5e71d41c9511802/recipes/airline-themes"; ··· 1634 1655 all-the-icons-gnus = callPackage ({ all-the-icons, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 1635 1656 melpaBuild { 1636 1657 pname = "all-the-icons-gnus"; 1637 - version = "20170711.241"; 1658 + version = "20170718.2354"; 1638 1659 src = fetchFromGitHub { 1639 1660 owner = "nlamirault"; 1640 1661 repo = "all-the-icons-gnus"; 1641 - rev = "fe2080fe78c28b140be4ee2018cdf3c72b87fa31"; 1642 - sha256 = "1lxq6fqrwxzd2cr8a7nvapaaf9pd1mfyqqk0rhg50fp3i16z5nkk"; 1662 + rev = "8785d04f54b1692c04f4b665864f8f95425c20c6"; 1663 + sha256 = "0zn9aq0ml39p2adjb9hpqk2iwb1dk5z5jdhabxszmhbs3zs53i52"; 1643 1664 }; 1644 1665 recipeFile = fetchurl { 1645 1666 url = "https://raw.githubusercontent.com/milkypostman/melpa/f8ed74d39d165343c81c2a21aa47e3d3895d8119/recipes/all-the-icons-gnus"; ··· 2604 2625 apropospriate-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 2605 2626 melpaBuild { 2606 2627 pname = "apropospriate-theme"; 2607 - version = "20170418.1352"; 2628 + version = "20170721.1400"; 2608 2629 src = fetchFromGitHub { 2609 2630 owner = "waymondo"; 2610 2631 repo = "apropospriate-theme"; 2611 - rev = "98c548917bb696d541a58bfcf85f02572d8f7ebd"; 2612 - sha256 = "0kr6p1kf0sb036w9pb20xlfs7ynw357fv0zifsb8g7q1va7m5vs7"; 2632 + rev = "5727dd549d9cb95a6a18919f90428d7c5b860a99"; 2633 + sha256 = "0a66s9lyi4anf4s6sxh66b4c4lsa9m3bqdqym4qhf53ywi55qal5"; 2613 2634 }; 2614 2635 recipeFile = fetchurl { 2615 2636 url = "https://raw.githubusercontent.com/milkypostman/melpa/1da33013f15825ab656260ce7453b8127e0286f4/recipes/apropospriate-theme"; ··· 2641 2662 license = lib.licenses.free; 2642 2663 }; 2643 2664 }) {}; 2644 - arch-packer = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 2665 + arch-packer = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 2645 2666 melpaBuild { 2646 2667 pname = "arch-packer"; 2647 - version = "20170506.1005"; 2668 + version = "20170723.430"; 2648 2669 src = fetchFromGitHub { 2649 2670 owner = "brotzeitmacher"; 2650 2671 repo = "arch-packer"; 2651 - rev = "e195c4f30da2a756f6e14715f436ff22826b5e82"; 2652 - sha256 = "0xxgnavpcimkb9adlbpcv96pp829x41nv744c8yl8rl8lb4f9xdl"; 2672 + rev = "743b3dc5f239c77e9c5c3049b5a9701da1ae12ee"; 2673 + sha256 = "0h5ajz5mcj9g1y9f5fyqcjmqss99403v6lbqngh20mj8pi6w9rr5"; 2653 2674 }; 2654 2675 recipeFile = fetchurl { 2655 2676 url = "https://raw.githubusercontent.com/milkypostman/melpa/39f13017cde2d209a58dc45f0df25dc723398b72/recipes/arch-packer"; 2656 2677 sha256 = "06gmkc63ys6diiwbhdjyn17yhvs91nxdhqkydmm18553pzsmcy72"; 2657 2678 name = "arch-packer"; 2658 2679 }; 2659 - packageRequires = [ async emacs s ]; 2680 + packageRequires = [ async dash emacs s ]; 2660 2681 meta = { 2661 2682 homepage = "https://melpa.org/#/arch-packer"; 2662 2683 license = lib.licenses.free; ··· 4424 4445 base16-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 4425 4446 melpaBuild { 4426 4447 pname = "base16-theme"; 4427 - version = "20170713.1237"; 4448 + version = "20170718.1307"; 4428 4449 src = fetchFromGitHub { 4429 4450 owner = "belak"; 4430 4451 repo = "base16-emacs"; 4431 - rev = "f701a8e191ae9c0bd6ab93926ce993bb18a9e98c"; 4432 - sha256 = "026a5frqvd2j09zzbf83mw3hmcj1ps7nsia87k0yn13sk62rd5bk"; 4452 + rev = "06d54b58f2ea5c49507164d97e8837406484a274"; 4453 + sha256 = "0a4xhq5y4vclv91zq83vb8irsvf0xly09y3zxvddyliy4bn3f8hi"; 4433 4454 }; 4434 4455 recipeFile = fetchurl { 4435 4456 url = "https://raw.githubusercontent.com/milkypostman/melpa/30862f6be74882cfb57fb031f7318d3fd15551e3/recipes/base16-theme"; ··· 4568 4589 }) {}; 4569 4590 bbdb = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { 4570 4591 pname = "bbdb"; 4571 - version = "20170129.2224"; 4592 + version = "20170725.300"; 4572 4593 src = fetchgit { 4573 4594 url = "https://git.savannah.nongnu.org/git/bbdb.git"; 4574 - rev = "8998b3416b36873f4e49454879f2eed20c31b384"; 4575 - sha256 = "086ivc9j7vninb46kzparg7zjmdsv346gqig6ki73889wym1m7xn"; 4595 + rev = "c951e15cd01d84193937ae5e347143321c3a2da9"; 4596 + sha256 = "1m19f74zkyh0zyigv807rlznvf2l72kdg6gfizf8pan85qvk949l"; 4576 4597 }; 4577 4598 recipeFile = fetchurl { 4578 4599 url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/bbdb"; ··· 4606 4627 license = lib.licenses.free; 4607 4628 }; 4608 4629 }) {}; 4609 - bbdb-android = callPackage ({ bbdb-vcard, fetchFromGitHub, fetchurl, lib, melpaBuild }: 4610 - melpaBuild { 4611 - pname = "bbdb-android"; 4612 - version = "20150705.2224"; 4613 - src = fetchFromGitHub { 4614 - owner = "tumashu"; 4615 - repo = "bbdb-android"; 4616 - rev = "60641acf8b90e34b70f783b3d6e7789a4272f2b4"; 4617 - sha256 = "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm"; 4618 - }; 4619 - recipeFile = fetchurl { 4620 - url = "https://raw.githubusercontent.com/milkypostman/melpa/1296e9ffe3a49022a9480b398fbfa311121a1020/recipes/bbdb-android"; 4621 - sha256 = "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3"; 4622 - name = "bbdb-android"; 4623 - }; 4624 - packageRequires = [ bbdb-vcard ]; 4625 - meta = { 4626 - homepage = "https://melpa.org/#/bbdb-android"; 4627 - license = lib.licenses.free; 4628 - }; 4629 - }) {}; 4630 - bbdb-china = callPackage ({ bbdb-vcard, chinese-pyim, fetchFromGitHub, fetchurl, lib, melpaBuild }: 4631 - melpaBuild { 4632 - pname = "bbdb-china"; 4633 - version = "20150615.1856"; 4634 - src = fetchFromGitHub { 4635 - owner = "tumashu"; 4636 - repo = "bbdb-china"; 4637 - rev = "a64725ca6dbb5ec1825f3a9112df9aa54bb14f6c"; 4638 - sha256 = "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn"; 4639 - }; 4640 - recipeFile = fetchurl { 4641 - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/bbdb-china"; 4642 - sha256 = "1clrl3gk036w8q3p2f189jp6wv1y3xv037v77rg87dyz0yjs61py"; 4643 - name = "bbdb-china"; 4644 - }; 4645 - packageRequires = [ bbdb-vcard chinese-pyim ]; 4646 - meta = { 4647 - homepage = "https://melpa.org/#/bbdb-china"; 4648 - license = lib.licenses.free; 4649 - }; 4650 - }) {}; 4651 4630 bbdb-csv-import = callPackage ({ bbdb, dash, fetchFromGitLab, fetchurl, lib, melpaBuild, pcsv }: 4652 4631 melpaBuild { 4653 4632 pname = "bbdb-csv-import"; ··· 4687 4666 packageRequires = [ bbdb ]; 4688 4667 meta = { 4689 4668 homepage = "https://melpa.org/#/bbdb-ext"; 4690 - license = lib.licenses.free; 4691 - }; 4692 - }) {}; 4693 - bbdb-handy = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: 4694 - melpaBuild { 4695 - pname = "bbdb-handy"; 4696 - version = "20150707.1752"; 4697 - src = fetchFromGitHub { 4698 - owner = "tumashu"; 4699 - repo = "bbdb-handy"; 4700 - rev = "67936204488b539fac9b4a7bfbf11546f3b13de2"; 4701 - sha256 = "04yxky7qxh0s4y4addry85qd1074l97frhp0hw77xd1bc7n5zzg0"; 4702 - }; 4703 - recipeFile = fetchurl { 4704 - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/bbdb-handy"; 4705 - sha256 = "16wjnsw4p7y21zmpa69vpwydsv5i479czk3y79cnn7s4ap69jmm8"; 4706 - name = "bbdb-handy"; 4707 - }; 4708 - packageRequires = [ bbdb ]; 4709 - meta = { 4710 - homepage = "https://melpa.org/#/bbdb-handy"; 4711 4669 license = lib.licenses.free; 4712 4670 }; 4713 4671 }) {}; ··· 5132 5090 binclock = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 5133 5091 melpaBuild { 5134 5092 pname = "binclock"; 5135 - version = "20170418.812"; 5093 + version = "20170725.121"; 5136 5094 src = fetchFromGitHub { 5137 5095 owner = "davep"; 5138 5096 repo = "binclock.el"; 5139 - rev = "38ef6531fed16eb2fa69824fbdafac998cf201ac"; 5140 - sha256 = "13s4j04b60l44xs381v4padhdyqs8625ssqph24qral6iizwry8d"; 5097 + rev = "b964e437311e5406a31c0ec7038b3bf1fd02b876"; 5098 + sha256 = "0ljxb70vx7x0yn8y1ilf4phk0hamprl43dh23fm3njqqgw60hzbk"; 5141 5099 }; 5142 5100 recipeFile = fetchurl { 5143 5101 url = "https://raw.githubusercontent.com/milkypostman/melpa/95dfa38d795172dca6a09cd02e21630747723949/recipes/binclock"; ··· 5153 5111 bind-chord = callPackage ({ bind-key, fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }: 5154 5112 melpaBuild { 5155 5113 pname = "bind-chord"; 5156 - version = "20160530.1042"; 5114 + version = "20170717.1152"; 5157 5115 src = fetchFromGitHub { 5158 5116 owner = "waymondo"; 5159 5117 repo = "use-package-chords"; 5160 - rev = "e8551ce8a514d865831d3a889acece79103fc627"; 5161 - sha256 = "0500pqsszg7h7923i0kyjirdyhj8aza3a2h5wbqzdpli2aqra5a5"; 5118 + rev = "f47b2dc8d79f02e5fe39de1f63c78a6c09be2026"; 5119 + sha256 = "0nwcs3akf1cy7dv36n5s5hsr67djfcn7w499vamn0yh16bs7r5ds"; 5162 5120 }; 5163 5121 recipeFile = fetchurl { 5164 5122 url = "https://raw.githubusercontent.com/milkypostman/melpa/92fbae4e0bcc1d5ad9f3f42d01f08ab4c3450f1f/recipes/bind-chord"; ··· 5654 5612 }) {}; 5655 5613 bookmark-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 5656 5614 pname = "bookmark-plus"; 5657 - version = "20170703.1431"; 5615 + version = "20170719.2147"; 5658 5616 src = fetchurl { 5659 5617 url = "https://www.emacswiki.org/emacs/download/bookmark+.el"; 5660 5618 sha256 = "0iqvlwqilwpqlymj8iynw2miifl28h1g7z10q08rly2430fnmi37"; ··· 5884 5842 browse-at-remote = callPackage ({ cl-lib ? null, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 5885 5843 melpaBuild { 5886 5844 pname = "browse-at-remote"; 5887 - version = "20170624.309"; 5845 + version = "20170720.1518"; 5888 5846 src = fetchFromGitHub { 5889 5847 owner = "rmuslimov"; 5890 5848 repo = "browse-at-remote"; 5891 - rev = "e8b7533f6c37c4660e4ba97cd4856383f4e4ce32"; 5892 - sha256 = "0650c2401qidw5zprgvnkvqbar9vs9yyj58njiwc394xf5xwzsmb"; 5849 + rev = "b5cff7971ca8bbb966e3acd9b7e5c4c007f94215"; 5850 + sha256 = "16ms9703m15dfxg6ap4mdw7msf8z5rzsdhba51dwivfpjxg7n52c"; 5893 5851 }; 5894 5852 recipeFile = fetchurl { 5895 5853 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/browse-at-remote"; ··· 6175 6133 buffer-sets = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }: 6176 6134 melpaBuild { 6177 6135 pname = "buffer-sets"; 6178 - version = "20170505.829"; 6136 + version = "20170717.2040"; 6179 6137 src = fetchgit { 6180 6138 url = "https://git.flintfam.org/swf-projects/buffer-sets.git"; 6181 - rev = "dd47af82f6cd5c4bab304e41518d4dc06bd6e353"; 6182 - sha256 = "1wsx7m9wmzc6yiiyvsjmlqzazcss4vaq8qcdm3r1gybli32llraw"; 6139 + rev = "4a4ccb0d6916c3e9fba737bb7b48e8aac921954e"; 6140 + sha256 = "1rg6iwswi82w8938pavwhvvr2z3ismb42asam2fkad47h2sgn0gz"; 6183 6141 }; 6184 6142 recipeFile = fetchurl { 6185 - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e12638554a13ef49ab24da08fe20ed2a53dbd11/recipes/buffer-sets"; 6186 - sha256 = "0r8mr53bd5cml5gsvq1hbl9894xsq0wwv4p1pp2q4zlcyxlwf4fl"; 6143 + url = "https://raw.githubusercontent.com/milkypostman/melpa/61d07bbe7201fc991c7ab7ee6299a89d63ddb5e5/recipes/buffer-sets"; 6144 + sha256 = "1xj9fn2x4kbx8kp999wvz1j68znp7j81zl6rnbaipbx7hjpqrsin"; 6187 6145 name = "buffer-sets"; 6188 6146 }; 6189 6147 packageRequires = [ cl-lib ]; ··· 6424 6382 busybee-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 6425 6383 melpaBuild { 6426 6384 pname = "busybee-theme"; 6427 - version = "20130920.942"; 6385 + version = "20170719.228"; 6428 6386 src = fetchFromGitHub { 6429 6387 owner = "mswift42"; 6430 6388 repo = "busybee-theme"; 6431 - rev = "70850d1781ff91c4ce125a31ed451d080f8da643"; 6432 - sha256 = "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx"; 6389 + rev = "66b2315b030582d0ebee605cf455d386d8c30fcd"; 6390 + sha256 = "1cvj5m45f5ky3w86khh6crvdqrdjxg2z6b34jlm32qpgmn0s5g45"; 6433 6391 }; 6434 6392 recipeFile = fetchurl { 6435 6393 url = "https://raw.githubusercontent.com/milkypostman/melpa/36e2089b998d98575aa6dd3cc79fb7f6847f7aa3/recipes/busybee-theme"; ··· 6947 6905 cargo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode }: 6948 6906 melpaBuild { 6949 6907 pname = "cargo"; 6950 - version = "20170621.1316"; 6908 + version = "20170725.248"; 6951 6909 src = fetchFromGitHub { 6952 6910 owner = "kwrooijen"; 6953 6911 repo = "cargo.el"; 6954 - rev = "b0487f95a7de7a1d6f03cdd05220f633977d65a2"; 6955 - sha256 = "0r9v7q7hkdw2q3iifyrb6n9jrssz2rcv2xcc7n1nmg1v40av3ijd"; 6912 + rev = "7a843c9209cf48c53e1f3dfd533c156d6c701501"; 6913 + sha256 = "0xj0bqn3mc8kpihpki1y2wx9ydqvza9kbpz2di8wa768zj1xh6qz"; 6956 6914 }; 6957 6915 recipeFile = fetchurl { 6958 6916 url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/cargo"; ··· 7370 7328 src = fetchFromGitHub { 7371 7329 owner = "cfengine"; 7372 7330 repo = "core"; 7373 - rev = "28484409e8f64f976bf3d80f10081b18f7724cf5"; 7374 - sha256 = "0zvxrbf30hy511jmlfvmqj5yiysfbs73x064w1px7ghavczdjvx5"; 7331 + rev = "e14319ed4308647746027bd62131ef07692710b9"; 7332 + sha256 = "1rpv8nl18wgijz3vh7anh1xvhqx8vbc8bajx0l2036v3k4mq3dc6"; 7375 7333 }; 7376 7334 recipeFile = fetchurl { 7377 7335 url = "https://raw.githubusercontent.com/milkypostman/melpa/c737839aeda583e61257ad40157e24df7f918b0f/recipes/cfengine-code-style"; ··· 7410 7368 version = "20170201.347"; 7411 7369 src = fetchsvn { 7412 7370 url = "https://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs"; 7413 - rev = "12270"; 7371 + rev = "12277"; 7414 7372 sha256 = "0lv9lsh1dnsmida4hhj04ysq48v4m12nj9yq621xn3i6s2qz7s1k"; 7415 7373 }; 7416 7374 recipeFile = fetchurl { ··· 7739 7697 license = lib.licenses.free; 7740 7698 }; 7741 7699 }) {}; 7742 - chinese-fonts-setup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7700 + chinese-fonts-setup = callPackage ({ cnfonts, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7743 7701 melpaBuild { 7744 7702 pname = "chinese-fonts-setup"; 7745 - version = "20170512.1"; 7703 + version = "20170724.737"; 7746 7704 src = fetchFromGitHub { 7747 7705 owner = "tumashu"; 7748 7706 repo = "chinese-fonts-setup"; 7749 - rev = "a88f45239ca73e95eb6bac923590f1d108b822ca"; 7750 - sha256 = "1h0nwrnh0krn9p0x1cj67gjdlzr82xml76ycn6745f943sn6d5ah"; 7707 + rev = "bb285b91da12ba9c5897a6aed9c893449000210d"; 7708 + sha256 = "0dq745yjbwv1xb6i7m7372i4rb6brq9y4f70m01wcmacm6h85j14"; 7751 7709 }; 7752 7710 recipeFile = fetchurl { 7753 7711 url = "https://raw.githubusercontent.com/milkypostman/melpa/c536882e613e83a4a2baf86479bfb3efb86d916a/recipes/chinese-fonts-setup"; 7754 7712 sha256 = "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5"; 7755 7713 name = "chinese-fonts-setup"; 7756 7714 }; 7757 - packageRequires = [ cl-lib ]; 7715 + packageRequires = [ cnfonts emacs ]; 7758 7716 meta = { 7759 7717 homepage = "https://melpa.org/#/chinese-fonts-setup"; 7760 7718 license = lib.licenses.free; ··· 7781 7739 license = lib.licenses.free; 7782 7740 }; 7783 7741 }) {}; 7784 - chinese-pyim = callPackage ({ async, chinese-pyim-basedict, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }: 7742 + chinese-pyim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pyim }: 7785 7743 melpaBuild { 7786 7744 pname = "chinese-pyim"; 7787 - version = "20170512.735"; 7745 + version = "20170724.1618"; 7788 7746 src = fetchFromGitHub { 7789 7747 owner = "tumashu"; 7790 7748 repo = "chinese-pyim"; 7791 - rev = "d57d0fd47565dc087724a68c6b3abd16a58625ae"; 7792 - sha256 = "10ir2452rj6f48qfgwps6y1mn5afrsa04z0xl2f31j5463j4b4mx"; 7749 + rev = "dd034c6fb9473aed7ee856a366f3cac031e82209"; 7750 + sha256 = "1clqz4yg86mm673pabzi54angc7qr41pikrz0x2ya0qhz88g0y9s"; 7793 7751 }; 7794 7752 recipeFile = fetchurl { 7795 7753 url = "https://raw.githubusercontent.com/milkypostman/melpa/157a264533124ba05c161aa93a32c7209f002fba/recipes/chinese-pyim"; 7796 7754 sha256 = "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l"; 7797 7755 name = "chinese-pyim"; 7798 7756 }; 7799 - packageRequires = [ async chinese-pyim-basedict cl-lib popup pos-tip ]; 7757 + packageRequires = [ pyim ]; 7800 7758 meta = { 7801 7759 homepage = "https://melpa.org/#/chinese-pyim"; 7802 7760 license = lib.licenses.free; ··· 7805 7763 chinese-pyim-basedict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 7806 7764 melpaBuild { 7807 7765 pname = "chinese-pyim-basedict"; 7808 - version = "20160723.438"; 7766 + version = "20170724.1523"; 7809 7767 src = fetchFromGitHub { 7810 7768 owner = "tumashu"; 7811 7769 repo = "chinese-pyim-basedict"; 7812 - rev = "3bca2760d78fd1195dbd4c2d570db955023a5623"; 7813 - sha256 = "07dd90bhmayacgvv5k6j079wk3zhlh83zw471rd37n2hmw8557mv"; 7770 + rev = "6b6eea5375d2e0b4b6374fbf766ebb209ece86af"; 7771 + sha256 = "0rx30m9ag3hbggm9jl0bpkn0svf5838nj6qsailcnxkyxq3cga2l"; 7814 7772 }; 7815 7773 recipeFile = fetchurl { 7816 7774 url = "https://raw.githubusercontent.com/milkypostman/melpa/e2315ffe7d13928eddaf217a5f67a3e0dd5e62a1/recipes/chinese-pyim-basedict"; ··· 7826 7784 chinese-pyim-greatdict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 7827 7785 melpaBuild { 7828 7786 pname = "chinese-pyim-greatdict"; 7829 - version = "20170513.1833"; 7787 + version = "20170724.1525"; 7830 7788 src = fetchFromGitHub { 7831 7789 owner = "tumashu"; 7832 7790 repo = "chinese-pyim-greatdict"; 7833 - rev = "8efd9321d21d5daabdb32cb3696bc7c7b83ce991"; 7834 - sha256 = "05ap9d2kk9dyj85zm581nwizbdqx8fqa0yjswk4df0y6mgz4g0q9"; 7791 + rev = "45fa4ff26f3444fb98c4dea460d84b740204d105"; 7792 + sha256 = "1j89mcfsqyclmllfqmsx8a55ihrn2kzay8qh2lyfm8dzd6mi1za0"; 7835 7793 }; 7836 7794 recipeFile = fetchurl { 7837 7795 url = "https://raw.githubusercontent.com/milkypostman/melpa/03234f7a1abe7423c5a9bcb4c100957c8eece351/recipes/chinese-pyim-greatdict"; ··· 7844 7802 license = lib.licenses.free; 7845 7803 }; 7846 7804 }) {}; 7847 - chinese-pyim-wbdict = callPackage ({ chinese-pyim, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7805 + chinese-pyim-wbdict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 7848 7806 melpaBuild { 7849 7807 pname = "chinese-pyim-wbdict"; 7850 - version = "20170217.15"; 7808 + version = "20170724.1527"; 7851 7809 src = fetchFromGitHub { 7852 7810 owner = "tumashu"; 7853 7811 repo = "chinese-pyim-wbdict"; 7854 - rev = "59856a7199dde278c33f6f8d8e21df4944ba996a"; 7855 - sha256 = "1aahff6r0liil7nx1pprmkmb5c39kwywblj3n6zs80ikwy4759xb"; 7812 + rev = "114489ed97e825ae11a8d09da6e873820cf23106"; 7813 + sha256 = "187wx418pj4h8p8baf4943v9dsb6mfbn0n19r8xiil1z2cmm4ygc"; 7856 7814 }; 7857 7815 recipeFile = fetchurl { 7858 7816 url = "https://raw.githubusercontent.com/milkypostman/melpa/7c77ba5562e8bd8b8f532e7745edcdf3489584ac/recipes/chinese-pyim-wbdict"; 7859 7817 sha256 = "0y9hwn9rjplb69vi4s9bvf6fkvns2rlpkqm0qvv44mxq7g61lm5c"; 7860 7818 name = "chinese-pyim-wbdict"; 7861 7819 }; 7862 - packageRequires = [ chinese-pyim ]; 7863 - meta = { 7864 - homepage = "https://melpa.org/#/chinese-pyim-wbdict"; 7865 - license = lib.licenses.free; 7866 - }; 7867 - }) {}; 7868 - chinese-remote-input = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 7869 - melpaBuild { 7870 - pname = "chinese-remote-input"; 7871 - version = "20150110.2103"; 7872 - src = fetchFromGitHub { 7873 - owner = "tumashu"; 7874 - repo = "chinese-remote-input"; 7875 - rev = "d05d0bd116421e6fd19f52e9e576431ee5de0858"; 7876 - sha256 = "06k13wk659qw40aczq3i9gj0nyz6vb9z1nwsz7c1bgjbl2lh6hcv"; 7877 - }; 7878 - recipeFile = fetchurl { 7879 - url = "https://raw.githubusercontent.com/milkypostman/melpa/b639a9d3b258afe6637055e75a2939f2df18366a/recipes/chinese-remote-input"; 7880 - sha256 = "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag"; 7881 - name = "chinese-remote-input"; 7882 - }; 7883 7820 packageRequires = []; 7884 7821 meta = { 7885 - homepage = "https://melpa.org/#/chinese-remote-input"; 7822 + homepage = "https://melpa.org/#/chinese-pyim-wbdict"; 7886 7823 license = lib.licenses.free; 7887 7824 }; 7888 7825 }) {}; ··· 8034 7971 cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }: 8035 7972 melpaBuild { 8036 7973 pname = "cider"; 8037 - version = "20170717.303"; 7974 + version = "20170724.2248"; 8038 7975 src = fetchFromGitHub { 8039 7976 owner = "clojure-emacs"; 8040 7977 repo = "cider"; 8041 - rev = "7daf4e968de21e7eb7bb2dc1b6ca30ae4e990532"; 8042 - sha256 = "00y8d8gz0nfqr9dfd1nrkm32ckaln4cg6l6k3jbjzc0la673ljfr"; 7978 + rev = "ea6aa352f7e5b97e00ac2057c2d7579a9e6f411f"; 7979 + sha256 = "000zgcb66hgh1sxcn48q6dp2ln90nakpknikp441z8h9yhaazh8f"; 8043 7980 }; 8044 7981 recipeFile = fetchurl { 8045 7982 url = "https://raw.githubusercontent.com/milkypostman/melpa/55a937aed818dbe41530037da315f705205f189b/recipes/cider"; ··· 8310 8247 version = "20170120.137"; 8311 8248 src = fetchsvn { 8312 8249 url = "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format"; 8313 - rev = "308172"; 8250 + rev = "309006"; 8314 8251 sha256 = "0qyhvjb3pf0qp7ag2wav4wxrxfgk1zga0dy4kzw8lm32ajzjjavk"; 8315 8252 }; 8316 8253 recipeFile = fetchurl { ··· 8516 8453 clj-refactor = callPackage ({ cider, clojure-mode, edn, emacs, fetchFromGitHub, fetchurl, hydra, inflections, lib, melpaBuild, multiple-cursors, paredit, s, seq, yasnippet }: 8517 8454 melpaBuild { 8518 8455 pname = "clj-refactor"; 8519 - version = "20170608.320"; 8456 + version = "20170720.712"; 8520 8457 src = fetchFromGitHub { 8521 8458 owner = "clojure-emacs"; 8522 8459 repo = "clj-refactor.el"; 8523 - rev = "769eb06ac82dff8aa0239b9ca47cf3240ff0857f"; 8524 - sha256 = "17g6rq30dvvhr3lljzn5gg6v9bdxw31fw6b20sgcp7gx4xspc42w"; 8460 + rev = "f5295df68955c23fffd60718039fd386d13c77f5"; 8461 + sha256 = "14lp3jxxpjfm31rbrf2rb988fzh4xfacqdcwp15b87pixziln08x"; 8525 8462 }; 8526 8463 recipeFile = fetchurl { 8527 8464 url = "https://raw.githubusercontent.com/milkypostman/melpa/3a2db268e55d10f7d1d5a5f02d35b2c27b12b78e/recipes/clj-refactor"; ··· 8952 8889 src = fetchFromGitHub { 8953 8890 owner = "Kitware"; 8954 8891 repo = "CMake"; 8955 - rev = "2d5e494637f9dad13fd0206ac3420e7d26f8b778"; 8956 - sha256 = "0wsljwpd0ld4c0qxfn1x1a7xvcq8ik5dmxcys94cb2cw8xxgzbz2"; 8892 + rev = "d9a541eacbd0d3e833a93853f03e6be26b99dc37"; 8893 + sha256 = "0fr4wml4ay4vi9wsn8jv566nakq1q68ylm3yacy7031fndq3ipvr"; 8957 8894 }; 8958 8895 recipeFile = fetchurl { 8959 8896 url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode"; ··· 8969 8906 cmake-project = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 8970 8907 melpaBuild { 8971 8908 pname = "cmake-project"; 8972 - version = "20150720.1359"; 8909 + version = "20170725.912"; 8973 8910 src = fetchFromGitHub { 8974 8911 owner = "alamaison"; 8975 8912 repo = "emacs-cmake-project"; 8976 - rev = "5212063b6276f8b9af8b48b4052e5ec97721c08b"; 8977 - sha256 = "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6"; 8913 + rev = "ae763397663fbd35de0541a5d9f2de18a5de3305"; 8914 + sha256 = "0ynxcbf0jbn6b4dxswhk9qhijmhp05q6v925nglq67j0xjm8bicw"; 8978 8915 }; 8979 8916 recipeFile = fetchurl { 8980 8917 url = "https://raw.githubusercontent.com/milkypostman/melpa/0857c4db1027981ea73bc32bcaa15e5df53edea3/recipes/cmake-project"; ··· 10500 10437 src = fetchFromGitHub { 10501 10438 owner = "Andersbakken"; 10502 10439 repo = "rtags"; 10503 - rev = "65c8f03ff0112ce5c5e11aff6867ad0eb9019e63"; 10504 - sha256 = "0xlacwjmvx5xd8m7yi8l8mqi0lqs2gr2hmjag2frvmxcn4cpb4gc"; 10440 + rev = "afbf59630203624e0a5eecee52a3296295e6d620"; 10441 + sha256 = "0bygl7ahwsz6xmw0fif7gqnpzbk8cx7hpg4gp96f8inicq849z26"; 10505 10442 }; 10506 10443 recipeFile = fetchurl { 10507 10444 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/company-rtags"; ··· 10668 10605 src = fetchFromGitHub { 10669 10606 owner = "abingham"; 10670 10607 repo = "emacs-ycmd"; 10671 - rev = "35e8a31e32d0de890547612db8373d7333db8d8a"; 10672 - sha256 = "023bkmviaqb85kwwlpmzfc5gycf4i7w8a43zhbmvasfjjb962yzd"; 10608 + rev = "5c3e07b46e4c25bbd0a2068a5091c8f27b344da6"; 10609 + sha256 = "04nb5cjlghkk47a0girnlxlcrclylhg1zx41q5lcvnzb1is06skh"; 10673 10610 }; 10674 10611 recipeFile = fetchurl { 10675 10612 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/company-ycmd"; ··· 10685 10622 composable = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 10686 10623 melpaBuild { 10687 10624 pname = "composable"; 10688 - version = "20170426.459"; 10625 + version = "20170723.2347"; 10689 10626 src = fetchFromGitHub { 10690 10627 owner = "paldepind"; 10691 10628 repo = "composable.el"; 10692 - rev = "09020605ee7f4e52ff2fa2f6d68d826db1ee7565"; 10693 - sha256 = "0vhvgn0ybdnh8c71sbjxh6bb05w5ivm3rmkj4f255zqfkjyddl7q"; 10629 + rev = "ac981974f89607393cc61314aaa19672d45b0650"; 10630 + sha256 = "0xg46r6ibga27cdycbysm80n2ayi8vmxcff1b6bqjjrsc0wbdnac"; 10694 10631 }; 10695 10632 recipeFile = fetchurl { 10696 10633 url = "https://raw.githubusercontent.com/milkypostman/melpa/1fc0f076198e4be46a33a26eea9f2d273dda12b8/recipes/composable"; ··· 10769 10706 config-general-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 10770 10707 melpaBuild { 10771 10708 pname = "config-general-mode"; 10772 - version = "20170715.733"; 10709 + version = "20170719.446"; 10773 10710 src = fetchFromGitHub { 10774 10711 owner = "tlinden"; 10775 10712 repo = "config-general-mode"; 10776 - rev = "dd018f96f631a3fc6230ce5011d6357cf9720ef1"; 10777 - sha256 = "15xvp40b3sbwjf492j0abaknwc5f0cz0f7hydy7mdqdlha20qahs"; 10713 + rev = "8927fd1c359275dc4236c5f48fea0e3ce8349bed"; 10714 + sha256 = "04f6608ndhan6xmipzylzwzx2asx0bsqx8a9rnxfab3bza756c99"; 10778 10715 }; 10779 10716 recipeFile = fetchurl { 10780 10717 url = "https://raw.githubusercontent.com/milkypostman/melpa/6c06831528e4bbc44aae1cc5cd6bec60150ae087/recipes/config-general-mode"; ··· 11041 10978 counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: 11042 10979 melpaBuild { 11043 10980 pname = "counsel"; 11044 - version = "20170710.1111"; 10981 + version = "20170725.946"; 11045 10982 src = fetchFromGitHub { 11046 10983 owner = "abo-abo"; 11047 10984 repo = "swiper"; 11048 - rev = "dc146d9f1435b79fbfbfa702f0172b9de05f631d"; 11049 - sha256 = "09cfs0rhhb72b12pic2w9chbc000pqnafrl2x0g8v5r065pzp64n"; 10985 + rev = "112c5ba0df7deea11b3e91b5db3990d693eb5b72"; 10986 + sha256 = "0fcskn4v0rx5i04qr40wa8jggsswxxp8g8hk0s4sr447mxbiksbv"; 11050 10987 }; 11051 10988 recipeFile = fetchurl { 11052 10989 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c50f32b8d603db0d70e77907e36862cd66b811/recipes/counsel"; ··· 11461 11398 cricbuzz = callPackage ({ dash, enlive, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 11462 11399 melpaBuild { 11463 11400 pname = "cricbuzz"; 11464 - version = "20161130.2036"; 11401 + version = "20170724.2330"; 11465 11402 src = fetchFromGitHub { 11466 11403 owner = "lepisma"; 11467 11404 repo = "cricbuzz.el"; 11468 - rev = "5fe51347f5d6e7636ece5e904e4bdec0be21db45"; 11469 - sha256 = "1x29garhp1x5h1mwbamwjnfw52w45b39aqxsvcdxmcf730w9pq63"; 11405 + rev = "049e9d3c0c67350e008e62bd15b263add8f3a403"; 11406 + sha256 = "1vvaysvmpvdm4l20arzwgy0xhqy7lnav6wglq1x9ax7c7c0a3cdr"; 11470 11407 }; 11471 11408 recipeFile = fetchurl { 11472 11409 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cricbuzz"; ··· 11649 11586 csound-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, multi, shut-up }: 11650 11587 melpaBuild { 11651 11588 pname = "csound-mode"; 11652 - version = "20170715.650"; 11589 + version = "20170725.855"; 11653 11590 src = fetchFromGitHub { 11654 11591 owner = "hlolli"; 11655 11592 repo = "csound-mode"; 11656 - rev = "9c96406bbda815a4c8068d9c4a2a0dd5bd8f3325"; 11657 - sha256 = "14k2qbdn4l47kal647b8fy1lrcnivydnk651m02y3d6w41vgp7pq"; 11593 + rev = "14524d63a174c36a052c79025942f6a116a5f197"; 11594 + sha256 = "1h5sfwl2mjy8w2hnb73w2am1p2glwzf5n53q3d0ri8in83nxjn59"; 11658 11595 }; 11659 11596 recipeFile = fetchurl { 11660 - url = "https://raw.githubusercontent.com/milkypostman/melpa/34dc8853f5978789212cb7983615202c498d4d25/recipes/csound-mode"; 11661 - sha256 = "0k4p9w19yxhfccr9zgg51ppl9jf3m4pwwnqiq25yv6qsxmh9q24l"; 11597 + url = "https://raw.githubusercontent.com/milkypostman/melpa/95ccfae76a2c0f627f6d218ca68072e79fcfd088/recipes/csound-mode"; 11598 + sha256 = "15zmgsh1071cyd9a0d7cljq8k7d8l2gkjjpv8z22gnm0wfbb0yys"; 11662 11599 name = "csound-mode"; 11663 11600 }; 11664 11601 packageRequires = [ emacs multi shut-up ]; ··· 11979 11916 cyberpunk-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 11980 11917 melpaBuild { 11981 11918 pname = "cyberpunk-theme"; 11982 - version = "20170712.2110"; 11919 + version = "20170724.924"; 11983 11920 src = fetchFromGitHub { 11984 11921 owner = "n3mo"; 11985 11922 repo = "cyberpunk-theme.el"; 11986 - rev = "c5ad3a1815ba25b91aced8232b6f6268a10379d7"; 11987 - sha256 = "1l8m5mk7qdvw9cc6ypqahrrzxfzdx7n5yp1j82dgli9gy0sq027v"; 11923 + rev = "88eff8a42d6ed8ba7782ae003ec9597aed4fd019"; 11924 + sha256 = "0pzdm5nbhykssc633injz6jw422ksy632fhz0szd03a6kfx49iby"; 11988 11925 }; 11989 11926 recipeFile = fetchurl { 11990 11927 url = "https://raw.githubusercontent.com/milkypostman/melpa/4c632d1e501d48dab54432ab111ce589aa229125/recipes/cyberpunk-theme"; ··· 12124 12061 cython-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 12125 12062 melpaBuild { 12126 12063 pname = "cython-mode"; 12127 - version = "20140705.1229"; 12064 + version = "20170723.1342"; 12128 12065 src = fetchFromGitHub { 12129 12066 owner = "cython"; 12130 12067 repo = "cython"; 12131 - rev = "a2db27bb85d0daa4cc4b4b7d65c0e6a7cda5ec2a"; 12132 - sha256 = "101gdyvhkb5lzsa69slaq0l81sjmrr34sb5sxbjxrbx5pk5wh9gz"; 12068 + rev = "fb5e92001fe31a49227378e90a77bc5f4e2a83ff"; 12069 + sha256 = "0ym87yhmidxn25ba9si6hl76svgzm9mb8ar2qbbb9h7xcqscx6p0"; 12133 12070 }; 12134 12071 recipeFile = fetchurl { 12135 12072 url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode"; ··· 12229 12166 dakrone-light-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 12230 12167 melpaBuild { 12231 12168 pname = "dakrone-light-theme"; 12232 - version = "20170501.654"; 12169 + version = "20170724.1403"; 12233 12170 src = fetchFromGitHub { 12234 12171 owner = "dakrone"; 12235 12172 repo = "dakrone-light-theme"; 12236 - rev = "4b3f3ba8e2ffc35e537507894620245c96ff8965"; 12237 - sha256 = "1191iyjc5pw6jy9kqmjgr1s4n88ndjdsys7hwzc8c18glv411r69"; 12173 + rev = "5f1d506a8047cf8790ab50baf08b539645af6299"; 12174 + sha256 = "1kadp8h97zz26d3br0y9bakwi90c7rwgjya9z46m0mx9jjlpx5yw"; 12238 12175 }; 12239 12176 recipeFile = fetchurl { 12240 12177 url = "https://raw.githubusercontent.com/milkypostman/melpa/f3a88022a5f68d2fe01e08c2e99cfe380e3697b7/recipes/dakrone-light-theme"; ··· 13529 13466 src = fetchFromGitHub { 13530 13467 owner = "Fuco1"; 13531 13468 repo = "dired-hacks"; 13532 - rev = "bca0522bf225bb7e82b783aad936ff8703812fdf"; 13533 - sha256 = "195cll5l54l10l6gdxp491nm2m1fhmrb227p26b5q115bpdxq8ci"; 13469 + rev = "673817ea0c6eadca205d7964b41a4f934f4ea9e1"; 13470 + sha256 = "0sb4hwfinfr2qkrg5hx83nzngcpd8ba4cv1i7qss426mid0gw6zw"; 13534 13471 }; 13535 13472 recipeFile = fetchurl { 13536 13473 url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-avfs"; ··· 13543 13480 license = lib.licenses.free; 13544 13481 }; 13545 13482 }) {}; 13546 - dired-collapse = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 13483 + dired-collapse = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: 13547 13484 melpaBuild { 13548 13485 pname = "dired-collapse"; 13549 - version = "20170717.208"; 13486 + version = "20170719.346"; 13550 13487 src = fetchFromGitHub { 13551 13488 owner = "Fuco1"; 13552 13489 repo = "dired-hacks"; 13553 - rev = "bca0522bf225bb7e82b783aad936ff8703812fdf"; 13554 - sha256 = "195cll5l54l10l6gdxp491nm2m1fhmrb227p26b5q115bpdxq8ci"; 13490 + rev = "673817ea0c6eadca205d7964b41a4f934f4ea9e1"; 13491 + sha256 = "0sb4hwfinfr2qkrg5hx83nzngcpd8ba4cv1i7qss426mid0gw6zw"; 13555 13492 }; 13556 13493 recipeFile = fetchurl { 13557 13494 url = "https://raw.githubusercontent.com/milkypostman/melpa/6aab23df1451682ff18d9ad02c35cb7ec612bc38/recipes/dired-collapse"; 13558 13495 sha256 = "1k8h5cl8r68rnr1a3jnbc0ydflzm5mad7v7f1q60wks5hv61dsd1"; 13559 13496 name = "dired-collapse"; 13560 13497 }; 13561 - packageRequires = [ dash ]; 13498 + packageRequires = [ dash f ]; 13562 13499 meta = { 13563 13500 homepage = "https://melpa.org/#/dired-collapse"; 13564 13501 license = lib.licenses.free; ··· 13711 13648 dired-filter = callPackage ({ cl-lib ? null, dash, dired-hacks-utils, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: 13712 13649 melpaBuild { 13713 13650 pname = "dired-filter"; 13714 - version = "20161009.530"; 13651 + version = "20170718.1145"; 13715 13652 src = fetchFromGitHub { 13716 13653 owner = "Fuco1"; 13717 13654 repo = "dired-hacks"; 13718 - rev = "bca0522bf225bb7e82b783aad936ff8703812fdf"; 13719 - sha256 = "195cll5l54l10l6gdxp491nm2m1fhmrb227p26b5q115bpdxq8ci"; 13655 + rev = "673817ea0c6eadca205d7964b41a4f934f4ea9e1"; 13656 + sha256 = "0sb4hwfinfr2qkrg5hx83nzngcpd8ba4cv1i7qss426mid0gw6zw"; 13720 13657 }; 13721 13658 recipeFile = fetchurl { 13722 13659 url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-filter"; ··· 13736 13673 src = fetchFromGitHub { 13737 13674 owner = "Fuco1"; 13738 13675 repo = "dired-hacks"; 13739 - rev = "bca0522bf225bb7e82b783aad936ff8703812fdf"; 13740 - sha256 = "195cll5l54l10l6gdxp491nm2m1fhmrb227p26b5q115bpdxq8ci"; 13676 + rev = "673817ea0c6eadca205d7964b41a4f934f4ea9e1"; 13677 + sha256 = "0sb4hwfinfr2qkrg5hx83nzngcpd8ba4cv1i7qss426mid0gw6zw"; 13741 13678 }; 13742 13679 recipeFile = fetchurl { 13743 13680 url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-hacks-utils"; ··· 13841 13778 src = fetchFromGitHub { 13842 13779 owner = "thomp"; 13843 13780 repo = "dired-launch"; 13844 - rev = "9dea31574dcf006d5247b488a1942faaac434362"; 13845 - sha256 = "03dim1ca332882i08r19k4vjzw3hwwg132n2mrxhniyzgkk7g891"; 13781 + rev = "75745f2e40d060cae909f9e6f6ca2e5f725180b8"; 13782 + sha256 = "1amsqbbjzjw07s40v8c63iw59qf5r1x7rqq2iq1jiybwsrp9s7v0"; 13846 13783 }; 13847 13784 recipeFile = fetchurl { 13848 13785 url = "https://raw.githubusercontent.com/milkypostman/melpa/31c9a4945d65aa6afc371c447a572284d38d4d71/recipes/dired-launch"; ··· 13862 13799 src = fetchFromGitHub { 13863 13800 owner = "Fuco1"; 13864 13801 repo = "dired-hacks"; 13865 - rev = "bca0522bf225bb7e82b783aad936ff8703812fdf"; 13866 - sha256 = "195cll5l54l10l6gdxp491nm2m1fhmrb227p26b5q115bpdxq8ci"; 13802 + rev = "673817ea0c6eadca205d7964b41a4f934f4ea9e1"; 13803 + sha256 = "0sb4hwfinfr2qkrg5hx83nzngcpd8ba4cv1i7qss426mid0gw6zw"; 13867 13804 }; 13868 13805 recipeFile = fetchurl { 13869 13806 url = "https://raw.githubusercontent.com/milkypostman/melpa/8994330f90a925df17ae425ccdc87865df8e19cd/recipes/dired-narrow"; ··· 13883 13820 src = fetchFromGitHub { 13884 13821 owner = "Fuco1"; 13885 13822 repo = "dired-hacks"; 13886 - rev = "bca0522bf225bb7e82b783aad936ff8703812fdf"; 13887 - sha256 = "195cll5l54l10l6gdxp491nm2m1fhmrb227p26b5q115bpdxq8ci"; 13823 + rev = "673817ea0c6eadca205d7964b41a4f934f4ea9e1"; 13824 + sha256 = "0sb4hwfinfr2qkrg5hx83nzngcpd8ba4cv1i7qss426mid0gw6zw"; 13888 13825 }; 13889 13826 recipeFile = fetchurl { 13890 13827 url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-open"; ··· 13944 13881 src = fetchFromGitHub { 13945 13882 owner = "Fuco1"; 13946 13883 repo = "dired-hacks"; 13947 - rev = "bca0522bf225bb7e82b783aad936ff8703812fdf"; 13948 - sha256 = "195cll5l54l10l6gdxp491nm2m1fhmrb227p26b5q115bpdxq8ci"; 13884 + rev = "673817ea0c6eadca205d7964b41a4f934f4ea9e1"; 13885 + sha256 = "0sb4hwfinfr2qkrg5hx83nzngcpd8ba4cv1i7qss426mid0gw6zw"; 13949 13886 }; 13950 13887 recipeFile = fetchurl { 13951 13888 url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-rainbow"; ··· 13965 13902 src = fetchFromGitHub { 13966 13903 owner = "Fuco1"; 13967 13904 repo = "dired-hacks"; 13968 - rev = "bca0522bf225bb7e82b783aad936ff8703812fdf"; 13969 - sha256 = "195cll5l54l10l6gdxp491nm2m1fhmrb227p26b5q115bpdxq8ci"; 13905 + rev = "673817ea0c6eadca205d7964b41a4f934f4ea9e1"; 13906 + sha256 = "0sb4hwfinfr2qkrg5hx83nzngcpd8ba4cv1i7qss426mid0gw6zw"; 13970 13907 }; 13971 13908 recipeFile = fetchurl { 13972 13909 url = "https://raw.githubusercontent.com/milkypostman/melpa/c03f6f8c779c8784f52adb20b266404cb537113a/recipes/dired-ranger"; ··· 14065 14002 src = fetchFromGitHub { 14066 14003 owner = "Fuco1"; 14067 14004 repo = "dired-hacks"; 14068 - rev = "bca0522bf225bb7e82b783aad936ff8703812fdf"; 14069 - sha256 = "195cll5l54l10l6gdxp491nm2m1fhmrb227p26b5q115bpdxq8ci"; 14005 + rev = "673817ea0c6eadca205d7964b41a4f934f4ea9e1"; 14006 + sha256 = "0sb4hwfinfr2qkrg5hx83nzngcpd8ba4cv1i7qss426mid0gw6zw"; 14070 14007 }; 14071 14008 recipeFile = fetchurl { 14072 14009 url = "https://raw.githubusercontent.com/milkypostman/melpa/d6a947ac9476f10b95a3c153ec784d2a8330dd4c/recipes/dired-subtree"; ··· 14145 14082 direnv = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }: 14146 14083 melpaBuild { 14147 14084 pname = "direnv"; 14148 - version = "20170622.1128"; 14085 + version = "20170717.1049"; 14149 14086 src = fetchFromGitHub { 14150 14087 owner = "wbolster"; 14151 14088 repo = "emacs-direnv"; 14152 - rev = "3c632dd1fdf0ad1edb6d9b0a4a09cdbb420c27aa"; 14153 - sha256 = "0jajqf7ad0x6ca7i051svrc37mr3ww8pvd1832i0k7nf3i8cv867"; 14089 + rev = "d181475192138b256e124a42660ac60ae62d11d0"; 14090 + sha256 = "09pcssxas9aqdnn2n9y61f016fip9qgxsr16nzljh66dk0lnbgrw"; 14154 14091 }; 14155 14092 recipeFile = fetchurl { 14156 14093 url = "https://raw.githubusercontent.com/milkypostman/melpa/5419809ee62b920463e359c8e1314cd0763657c1/recipes/direnv"; ··· 14835 14772 docker = callPackage ({ dash, docker-tramp, emacs, fetchFromGitHub, fetchurl, json-mode, lib, magit-popup, melpaBuild, s, tablist }: 14836 14773 melpaBuild { 14837 14774 pname = "docker"; 14838 - version = "20170601.1345"; 14775 + version = "20170718.303"; 14839 14776 src = fetchFromGitHub { 14840 14777 owner = "Silex"; 14841 14778 repo = "docker.el"; 14842 - rev = "d3bdb09af10c7aa466b25e0c65a3d21fdf44514e"; 14843 - sha256 = "097nrhnc668yclvisq5hc3j8jgpk7w7k7clrlp5a1r1gd5472sj7"; 14779 + rev = "8070936871e0fbb20fb04c28630288ebe314b8b9"; 14780 + sha256 = "0gk4ykvsv8wgfiym0z635a3n3jaw4wnvfmf78ppfinrzybg85r76"; 14844 14781 }; 14845 14782 recipeFile = fetchurl { 14846 14783 url = "https://raw.githubusercontent.com/milkypostman/melpa/6c74bf8a41c17bc733636f9e7c05f3858d17936b/recipes/docker"; ··· 14882 14819 license = lib.licenses.free; 14883 14820 }; 14884 14821 }) {}; 14822 + docker-compose-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 14823 + melpaBuild { 14824 + pname = "docker-compose-mode"; 14825 + version = "20170722.941"; 14826 + src = fetchFromGitHub { 14827 + owner = "meqif"; 14828 + repo = "docker-compose-mode"; 14829 + rev = "c21c79aa0aac7175eb90913b2eaa1201c181bd01"; 14830 + sha256 = "03w99zlhafypsw3rjf0skp5m963sq7ygd63ibknqaw3xghb0vxyz"; 14831 + }; 14832 + recipeFile = fetchurl { 14833 + url = "https://raw.githubusercontent.com/milkypostman/melpa/9d74905aa52aa78bdc8e96aa3b791c3d2a70965f/recipes/docker-compose-mode"; 14834 + sha256 = "094r2mqxmll5dqbjhhdfg60xs9m74qn22lz475692k48ma5a7gd0"; 14835 + name = "docker-compose-mode"; 14836 + }; 14837 + packageRequires = [ dash emacs ]; 14838 + meta = { 14839 + homepage = "https://melpa.org/#/docker-compose-mode"; 14840 + license = lib.licenses.free; 14841 + }; 14842 + }) {}; 14885 14843 docker-tramp = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 14886 14844 melpaBuild { 14887 14845 pname = "docker-tramp"; ··· 15011 14969 doom-themes = callPackage ({ all-the-icons, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 15012 14970 melpaBuild { 15013 14971 pname = "doom-themes"; 15014 - version = "20170717.426"; 14972 + version = "20170718.1137"; 15015 14973 src = fetchFromGitHub { 15016 14974 owner = "hlissner"; 15017 14975 repo = "emacs-doom-themes"; 15018 - rev = "a00ee6cc48179dfeb8836726d9faa9b4f119783a"; 15019 - sha256 = "0f1szgr7xz2bg222x8b9h6kmi6diipc2r4j4yafjpsgkniv6c93c"; 14976 + rev = "557ff5d129b8b79e48287e68c934d309070c0542"; 14977 + sha256 = "1swwb3mkysn3rj9mbmbnyg0whx13k060cyi0phly5zssk4sj1n5i"; 15020 14978 }; 15021 14979 recipeFile = fetchurl { 15022 14980 url = "https://raw.githubusercontent.com/milkypostman/melpa/c5084bc2c3fe378af6ff39d65e40649c6359b7b5/recipes/doom-themes"; ··· 15446 15404 version = "20130120.1257"; 15447 15405 src = fetchsvn { 15448 15406 url = "https://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/"; 15449 - rev = "1802135"; 15407 + rev = "1802990"; 15450 15408 sha256 = "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq"; 15451 15409 }; 15452 15410 recipeFile = fetchurl { ··· 15547 15505 dumb-jump = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: 15548 15506 melpaBuild { 15549 15507 pname = "dumb-jump"; 15550 - version = "20170627.1309"; 15508 + version = "20170721.49"; 15551 15509 src = fetchFromGitHub { 15552 15510 owner = "jacktasia"; 15553 15511 repo = "dumb-jump"; 15554 - rev = "0328d922da4b1bbbb8f41848585c920608f6e9d3"; 15555 - sha256 = "1l3s42y90d2canslkjvfs4n5zlpdxp0h4b1yrip9825gh2k4fan7"; 15512 + rev = "e1a6647fecdaf77f737c3d16e0b8e6cb3cab1cb2"; 15513 + sha256 = "0bxfayqrp05fsic0nfk47iarfqgdlnqaahvbr9bx56js9s0fgm5p"; 15556 15514 }; 15557 15515 recipeFile = fetchurl { 15558 15516 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dumb-jump"; ··· 15607 15565 license = lib.licenses.free; 15608 15566 }; 15609 15567 }) {}; 15568 + dut-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 15569 + melpaBuild { 15570 + pname = "dut-mode"; 15571 + version = "20170721.2214"; 15572 + src = fetchFromGitHub { 15573 + owner = "dut-lang"; 15574 + repo = "dut-mode"; 15575 + rev = "affd16ad1e78799bb4ec99f80006271447d075f9"; 15576 + sha256 = "16yp7s3m7bm4chmkzlbqix4cfv6x7mgcdcl7j55h782dm252zfcg"; 15577 + }; 15578 + recipeFile = fetchurl { 15579 + url = "https://raw.githubusercontent.com/milkypostman/melpa/ecf49ceab8b25591fab2ed6574cba0e6634d1539/recipes/dut-mode"; 15580 + sha256 = "0hlr5qvqcqdh2k1nyq621z6vq2yiflj4jy0pgg6lbiy3j6819mai"; 15581 + name = "dut-mode"; 15582 + }; 15583 + packageRequires = [ emacs ]; 15584 + meta = { 15585 + homepage = "https://melpa.org/#/dut-mode"; 15586 + license = lib.licenses.free; 15587 + }; 15588 + }) {}; 15610 15589 dyalog-mode = callPackage ({ cl-lib ? null, emacs, fetchhg, fetchurl, lib, melpaBuild }: 15611 15590 melpaBuild { 15612 15591 pname = "dyalog-mode"; ··· 15924 15903 easy-hugo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 15925 15904 melpaBuild { 15926 15905 pname = "easy-hugo"; 15927 - version = "20170708.307"; 15906 + version = "20170724.1123"; 15928 15907 src = fetchFromGitHub { 15929 15908 owner = "masasam"; 15930 15909 repo = "emacs-easy-hugo"; 15931 - rev = "226fa5c661391c7f8317a24c9f757396e1900371"; 15932 - sha256 = "0g63ajpxr2a42nw5ri14icvwwdc9hs8al91plcjxjs7q7rbkhwp6"; 15910 + rev = "ca215061068b2dec3dd98f0da3a1294fa2f77430"; 15911 + sha256 = "06mihlh2zzgfkbss9gbhyd5f8wkmb4lxsxnxfndym63pgzsy2j0s"; 15933 15912 }; 15934 15913 recipeFile = fetchurl { 15935 15914 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/easy-hugo"; ··· 15984 15963 license = lib.licenses.free; 15985 15964 }; 15986 15965 }) {}; 15987 - easy-lentic = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lentic, lib, melpaBuild }: 15988 - melpaBuild { 15989 - pname = "easy-lentic"; 15990 - version = "20170309.2143"; 15991 - src = fetchFromGitHub { 15992 - owner = "tumashu"; 15993 - repo = "easy-lentic"; 15994 - rev = "d2b600cc3bd3166c3e4543435070b511ae9bf148"; 15995 - sha256 = "1p99yf1nlial254dyy9i30lfx2v4jwpahvi9pfjm5sv64212vp33"; 15996 - }; 15997 - recipeFile = fetchurl { 15998 - url = "https://raw.githubusercontent.com/milkypostman/melpa/7e098e70214e85e1c583a4976f895941c13de75f/recipes/easy-lentic"; 15999 - sha256 = "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg"; 16000 - name = "easy-lentic"; 16001 - }; 16002 - packageRequires = [ cl-lib lentic ]; 16003 - meta = { 16004 - homepage = "https://melpa.org/#/easy-lentic"; 16005 - license = lib.licenses.free; 16006 - }; 16007 - }) {}; 16008 15966 easy-repeat = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 16009 15967 melpaBuild { 16010 15968 pname = "easy-repeat"; ··· 16510 16468 edit-server = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 16511 16469 melpaBuild { 16512 16470 pname = "edit-server"; 16513 - version = "20141231.1358"; 16471 + version = "20170725.859"; 16514 16472 src = fetchFromGitHub { 16515 16473 owner = "stsquad"; 16516 16474 repo = "emacs_chrome"; 16517 - rev = "f7cf37c3f605812d429fd90699d6d33f6ac9db8d"; 16518 - sha256 = "1i4fvw7703pr505mzspkc7sphh3mbg4pvbpfcr847lrg66pdw419"; 16475 + rev = "462c57be72b3a8652f705bde0d3b7cd2f79644fa"; 16476 + sha256 = "0s4s90sbk82yp08my8jdmn4kn5cx8xc9cf02asrq4b4jvljynwvj"; 16519 16477 }; 16520 16478 recipeFile = fetchurl { 16521 16479 url = "https://raw.githubusercontent.com/milkypostman/melpa/d98d69008b5ca8b92fa7a6045b9d1af86f269386/recipes/edit-server"; ··· 16657 16615 edts = callPackage ({ auto-complete, auto-highlight-symbol, dash, erlang, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: 16658 16616 melpaBuild { 16659 16617 pname = "edts"; 16660 - version = "20170421.55"; 16618 + version = "20170725.338"; 16661 16619 src = fetchFromGitHub { 16662 16620 owner = "tjarvstrand"; 16663 16621 repo = "edts"; 16664 - rev = "3f90f4484ac03f06286b15b0c33ff0e5aeed2bb5"; 16665 - sha256 = "0wpr7h7vl1pi05sxyivk1a22qhcm74iacnra9h1d2jcf6as1h5x4"; 16622 + rev = "5b94473b7fe00edc50a001ff4eb55f54753d8742"; 16623 + sha256 = "00yqmfic02f6082mndndnfcas16by3lav8w3z0hh618a8prmzhdm"; 16666 16624 }; 16667 16625 recipeFile = fetchurl { 16668 16626 url = "https://raw.githubusercontent.com/milkypostman/melpa/782db7fba2713bfa17d9305ae15b0a9e1985445b/recipes/edts"; ··· 16810 16768 ein = callPackage ({ auto-complete, cl-generic, dash, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request, skewer-mode, websocket }: 16811 16769 melpaBuild { 16812 16770 pname = "ein"; 16813 - version = "20170714.1753"; 16771 + version = "20170714.1910"; 16814 16772 src = fetchFromGitHub { 16815 16773 owner = "millejoh"; 16816 16774 repo = "emacs-ipython-notebook"; 16817 - rev = "08d2792d690cefb9ef2e00a14d3bbb1da55252a9"; 16818 - sha256 = "0fw56v0xx4axw24wzy8rk69zy0nhajk4y3fqi1305acfgn6hnnvg"; 16775 + rev = "cda6143270cf44d2c9e59904b2c7bbd225d226ee"; 16776 + sha256 = "13h93cs69cz9rq56jncjiq3p0fkd3khniral828ky5vkvhihf2wv"; 16819 16777 }; 16820 16778 recipeFile = fetchurl { 16821 16779 url = "https://raw.githubusercontent.com/milkypostman/melpa/215e163755fe391ce1f049622e7b9bf9a8aea95a/recipes/ein"; ··· 16860 16818 eink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 16861 16819 melpaBuild { 16862 16820 pname = "eink-theme"; 16863 - version = "20161207.410"; 16821 + version = "20170717.807"; 16864 16822 src = fetchFromGitHub { 16865 16823 owner = "maio"; 16866 16824 repo = "eink-emacs"; 16867 - rev = "40e7a7d31ee160175aa89583609d3f953fb066c6"; 16868 - sha256 = "0701c7x8wwr99d5l50k8n2a6zx7dh067d702v032g5axh7lqsn2j"; 16825 + rev = "4c990bb3428f725735fa1f733ef4c5ad61f632b0"; 16826 + sha256 = "0jxs36qdsx58ni5185qyi1c7gchyla3dpv4v9drj1n072ls82ld4"; 16869 16827 }; 16870 16828 recipeFile = fetchurl { 16871 16829 url = "https://raw.githubusercontent.com/milkypostman/melpa/a1349c3f93ab60983f77c28f97048fa258b612a6/recipes/eink-theme"; ··· 17015 16973 el-patch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 17016 16974 melpaBuild { 17017 16975 pname = "el-patch"; 17018 - version = "20170706.936"; 16976 + version = "20170723.19"; 17019 16977 src = fetchFromGitHub { 17020 16978 owner = "raxod502"; 17021 16979 repo = "el-patch"; 17022 - rev = "979ea29884f54c5ac4a6a5b2873547c0964e3dd3"; 17023 - sha256 = "021ld1cs7swmrlbvnakwwx6xlyg95g8cnc6d1vk03a81p7s897il"; 16980 + rev = "cc26f37e19ebc60ca75067115d3794cda88003c5"; 16981 + sha256 = "0b8yy51dy5280y7yvq0ylm20m9bvzi7lzs3c9m1i2gb3ssx7267w"; 17024 16982 }; 17025 16983 recipeFile = fetchurl { 17026 16984 url = "https://raw.githubusercontent.com/milkypostman/melpa/2f4f57e0edbae35597aa4a7744d22d2f971d5de5/recipes/el-patch"; ··· 17393 17351 src = fetchFromGitHub { 17394 17352 owner = "skeeto"; 17395 17353 repo = "elfeed"; 17396 - rev = "79077efc34aad25bb43cf46a28a69a308196c972"; 17397 - sha256 = "1xsy7qr9k9ad5ig9vvf9bbxc5ik5xi1kpmq87q9iq3g321idcwnl"; 17354 + rev = "14b0430f27e1afbf144c26a63eddd79906e4b4ff"; 17355 + sha256 = "1yynda71g93f8ix9ckxanmx5pla2rv5c13byslwzw7i3vi5wn1k9"; 17398 17356 }; 17399 17357 recipeFile = fetchurl { 17400 17358 url = "https://raw.githubusercontent.com/milkypostman/melpa/407ae027fcec444622c2a822074b95996df9e6af/recipes/elfeed"; ··· 17463 17421 src = fetchFromGitHub { 17464 17422 owner = "skeeto"; 17465 17423 repo = "elfeed"; 17466 - rev = "79077efc34aad25bb43cf46a28a69a308196c972"; 17467 - sha256 = "1xsy7qr9k9ad5ig9vvf9bbxc5ik5xi1kpmq87q9iq3g321idcwnl"; 17424 + rev = "14b0430f27e1afbf144c26a63eddd79906e4b4ff"; 17425 + sha256 = "1yynda71g93f8ix9ckxanmx5pla2rv5c13byslwzw7i3vi5wn1k9"; 17468 17426 }; 17469 17427 recipeFile = fetchurl { 17470 17428 url = "https://raw.githubusercontent.com/milkypostman/melpa/62459d16ee44d5fcf170c0ebc981ca2c7d4672f2/recipes/elfeed-web"; ··· 17900 17858 elpa-mirror = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 17901 17859 melpaBuild { 17902 17860 pname = "elpa-mirror"; 17903 - version = "20160917.10"; 17861 + version = "20170722.422"; 17904 17862 src = fetchFromGitHub { 17905 17863 owner = "redguardtoo"; 17906 17864 repo = "elpa-mirror"; 17907 - rev = "dcadffd331ac70c59e1960d34b7f998302c616d6"; 17908 - sha256 = "08dz6zy9fqj7qd1g1igvr28q2znrd5pwxxqjlrkzs994ypfj1vzq"; 17865 + rev = "5c793f6df944b7f1a68893438696c12240f0b930"; 17866 + sha256 = "0p5q44p6jl306qns4xf7f03pq091zczvjnh9bjax6z6sx54yadsd"; 17909 17867 }; 17910 17868 recipeFile = fetchurl { 17911 17869 url = "https://raw.githubusercontent.com/milkypostman/melpa/d64ce7042c45f29fb394be25ce415912182bac8b/recipes/elpa-mirror"; ··· 18947 18905 enlive = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 18948 18906 melpaBuild { 18949 18907 pname = "enlive"; 18950 - version = "20150824.549"; 18908 + version = "20170725.717"; 18951 18909 src = fetchFromGitHub { 18952 18910 owner = "zweifisch"; 18953 18911 repo = "enlive"; 18954 - rev = "0f6646adda3974e7fe9a42339a4ec3daa532eda5"; 18955 - sha256 = "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh"; 18912 + rev = "604a8ca272b6889f114e2b5a13adb5b1dc4bae86"; 18913 + sha256 = "1iwfb5hxhnp4rl3rh5yayik0xl2lg82klxkvqf29536pk8ip710m"; 18956 18914 }; 18957 18915 recipeFile = fetchurl { 18958 18916 url = "https://raw.githubusercontent.com/milkypostman/melpa/388fa2580e687d9608b11cdc069841831b414b29/recipes/enlive"; ··· 19010 18968 ensime = callPackage ({ company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s, sbt-mode, scala-mode, yasnippet }: 19011 18969 melpaBuild { 19012 18970 pname = "ensime"; 19013 - version = "20170710.347"; 18971 + version = "20170724.630"; 19014 18972 src = fetchFromGitHub { 19015 18973 owner = "ensime"; 19016 18974 repo = "ensime-emacs"; 19017 - rev = "aaaa9e34f5ea023621bc8123064d3183b35339a7"; 19018 - sha256 = "11nxhzy4qc4y1gfi0m5c78jv2ib5gpsqdr1p84q0yqkzdc9wvcmd"; 18975 + rev = "c8e936ed3793fab0dcbfad797ff97aa5c91562e2"; 18976 + sha256 = "0mj0k5wh6sndlnj8pcfhl0gwgas6433iyjrifpf0v5p7m5cizy5x"; 19019 18977 }; 19020 18978 recipeFile = fetchurl { 19021 18979 url = "https://raw.githubusercontent.com/milkypostman/melpa/502faab70af713f50dd8952be4f7a5131075e78e/recipes/ensime"; ··· 19123 19081 epkg = callPackage ({ closql, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 19124 19082 melpaBuild { 19125 19083 pname = "epkg"; 19126 - version = "20170702.59"; 19084 + version = "20170723.1240"; 19127 19085 src = fetchFromGitHub { 19128 19086 owner = "emacscollective"; 19129 19087 repo = "epkg"; 19130 - rev = "d9c43561d8d50066c1774e3cf3df12e168c9fc92"; 19131 - sha256 = "145zn11l9i0lmjr83zvn8snviqqn6kw24dm5ihlllgxycclsvcrm"; 19088 + rev = "11e8cc60a4dcfa973fabb4085b35e5951def84ca"; 19089 + sha256 = "1izgmlv52qgc8y29zx12q25bm1y3yzzz0sdy128bj2blc6j60wbd"; 19132 19090 }; 19133 19091 recipeFile = fetchurl { 19134 19092 url = "https://raw.githubusercontent.com/milkypostman/melpa/2df16abf56e53d4a1cc267a78797419520ff8a1c/recipes/epkg"; ··· 19605 19563 ergoemacs-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, undo-tree }: 19606 19564 melpaBuild { 19607 19565 pname = "ergoemacs-mode"; 19608 - version = "20170509.1202"; 19566 + version = "20170723.1921"; 19609 19567 src = fetchFromGitHub { 19610 19568 owner = "ergoemacs"; 19611 19569 repo = "ergoemacs-mode"; 19612 - rev = "3e6fea941af18415b520f2fabc45349c4a148a8f"; 19613 - sha256 = "1b0whc2llfff6wggiran0df7wrh06mygca0cqpps6ljfniqcxl5y"; 19570 + rev = "7b0600620fc64cdb92bb9a69144c68eaa088db5b"; 19571 + sha256 = "05ihafhhjlq7b4zs58jaqssgqdha5kqv65hvk7946ba7l845fi83"; 19614 19572 }; 19615 19573 recipeFile = fetchurl { 19616 19574 url = "https://raw.githubusercontent.com/milkypostman/melpa/02920517987c7fc698de9952cbb09dfd41517c40/recipes/ergoemacs-mode"; ··· 19651 19609 src = fetchFromGitHub { 19652 19610 owner = "erlang"; 19653 19611 repo = "otp"; 19654 - rev = "de5cfabdad61d45a112d95e24ac44e3f51a4bd18"; 19655 - sha256 = "14mi9qj2q0h21jy9zj4gqjz2205013d5s5l02asq6iid747jhx3j"; 19612 + rev = "72d994d7a6251e6ec72cf864b11309e01c50ba1f"; 19613 + sha256 = "05bs7r01bm2zfldg3j4915rnm7px2hcr04p3yzsy8sz36hqcjm81"; 19656 19614 }; 19657 19615 recipeFile = fetchurl { 19658 19616 url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang"; ··· 19814 19772 es-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, request, s, spark }: 19815 19773 melpaBuild { 19816 19774 pname = "es-mode"; 19817 - version = "20170705.2002"; 19775 + version = "20170724.1307"; 19818 19776 src = fetchFromGitHub { 19819 19777 owner = "dakrone"; 19820 19778 repo = "es-mode"; 19821 - rev = "61a8bf7d6cc6881e5555922eb36eecc6733a2b87"; 19822 - sha256 = "0anc7bdar2q5c41ilah3p04p4z3mxkqlv91nkky72i58sgrw6za6"; 19779 + rev = "28f06589e07a22b7a1a1b19f79472c0bafb5fc32"; 19780 + sha256 = "0413706dxmql9sl2rwi7y9pqdka73lnpqwn5cvl2y4r279hdppv3"; 19823 19781 }; 19824 19782 recipeFile = fetchurl { 19825 19783 url = "https://raw.githubusercontent.com/milkypostman/melpa/9912193f73c4beae03b295822bf41cb2298756e2/recipes/es-mode"; ··· 20234 20192 ess = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }: 20235 20193 melpaBuild { 20236 20194 pname = "ess"; 20237 - version = "20170710.118"; 20195 + version = "20170725.59"; 20238 20196 src = fetchFromGitHub { 20239 20197 owner = "emacs-ess"; 20240 20198 repo = "ESS"; 20241 - rev = "064174931f0cbf91ad24fda883909a06eee10f6e"; 20242 - sha256 = "0f6ikmgcakaa74p271nfkg55gbq2wxdjq978h8kp7x7vaczfjz0n"; 20199 + rev = "a313565f97badfefb289672af45df6311060eef3"; 20200 + sha256 = "15zy6hjfpwkacxc11ws76w7ynwl4m2qqlh84xq3nifg2zpl4cns6"; 20243 20201 }; 20244 20202 recipeFile = fetchurl { 20245 20203 url = "https://raw.githubusercontent.com/milkypostman/melpa/12997b9e2407d782b3d2fcd2843f7c8b22442c0a/recipes/ess"; ··· 20360 20318 esup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 20361 20319 melpaBuild { 20362 20320 pname = "esup"; 20363 - version = "20170508.1536"; 20321 + version = "20170724.2348"; 20364 20322 src = fetchFromGitHub { 20365 20323 owner = "jschaf"; 20366 20324 repo = "esup"; 20367 - rev = "efaf44d0739391aed48c77b5cd3013b50027ed36"; 20368 - sha256 = "1ddff6scpnljl9h957zx7nahxd6si0gcznkg5da09sa7vpds0732"; 20325 + rev = "86500014ccf9736a731038222d5d2727e428bb6c"; 20326 + sha256 = "03kblqlh9q2i3zmlj97wi0m93df3c799njlb6gpjl7ml6qfj4qf7"; 20369 20327 }; 20370 20328 recipeFile = fetchurl { 20371 20329 url = "https://raw.githubusercontent.com/milkypostman/melpa/b9d2948a42da5d4864404d2d11a924a4f235fc3b/recipes/esup"; ··· 20381 20339 esxml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 20382 20340 melpaBuild { 20383 20341 pname = "esxml"; 20384 - version = "20160703.1417"; 20342 + version = "20170723.1503"; 20385 20343 src = fetchFromGitHub { 20386 20344 owner = "tali713"; 20387 20345 repo = "esxml"; 20388 - rev = "fd0f0185cd579b00c3d76d2c383cd33fe642bb93"; 20389 - sha256 = "0azwfxzxghxhzwal4al0lngm0w3q035jyvm3wj2aaml2dibsi3pb"; 20346 + rev = "c4646d3a5a274e21efe125ae9f87b9934014e6ad"; 20347 + sha256 = "05r2jhcrzrjna5dnq95gnagjn11bx0ysgbcnn4rffwms09avbwvf"; 20390 20348 }; 20391 20349 recipeFile = fetchurl { 20392 20350 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/esxml"; ··· 20528 20486 src = fetchFromGitHub { 20529 20487 owner = "kaz-yos"; 20530 20488 repo = "eval-in-repl"; 20531 - rev = "d96a134abe65c736bfaf0a78d1f899ea7cf0fee5"; 20532 - sha256 = "00ilv46ybpw5arfqi3pk7gjabkac76siqpgj3ca47s6vlmz41anv"; 20489 + rev = "b21c5f0da65973d542952ab86e001b777c5f3447"; 20490 + sha256 = "15zd9vqjh89lhy9h6kbhrm5m5394zfzma3xdcfp1dmk8v7384py8"; 20533 20491 }; 20534 20492 recipeFile = fetchurl { 20535 20493 url = "https://raw.githubusercontent.com/milkypostman/melpa/0bee5fb7a7874dd20babd1de7f216c5bda3e0115/recipes/eval-in-repl"; ··· 20605 20563 license = lib.licenses.free; 20606 20564 }; 20607 20565 }) {}; 20566 + eve-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, polymode }: 20567 + melpaBuild { 20568 + pname = "eve-mode"; 20569 + version = "20170724.1408"; 20570 + src = fetchFromGitHub { 20571 + owner = "witheve"; 20572 + repo = "emacs-eve-mode"; 20573 + rev = "16de9c42393f687446dd9ffd36fcc7428437bf7f"; 20574 + sha256 = "0xpga18zw78v7wqxmfsv00s2r5rwil0khqjjkm867gk20954j7zh"; 20575 + }; 20576 + recipeFile = fetchurl { 20577 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e0f197adfe64ef88d90d24dfd6532bf52a5bce0d/recipes/eve-mode"; 20578 + sha256 = "1ch50bm452g8k1xnqcbpmpwkmg8amzv7bq0hphk3y0kiqkwd1gdh"; 20579 + name = "eve-mode"; 20580 + }; 20581 + packageRequires = [ emacs markdown-mode polymode ]; 20582 + meta = { 20583 + homepage = "https://melpa.org/#/eve-mode"; 20584 + license = lib.licenses.free; 20585 + }; 20586 + }) {}; 20608 20587 evil = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, goto-chg, lib, melpaBuild, undo-tree }: 20609 20588 melpaBuild { 20610 20589 pname = "evil"; ··· 20612 20591 src = fetchFromGitHub { 20613 20592 owner = "emacs-evil"; 20614 20593 repo = "evil"; 20615 - rev = "dc936936666595afdbdbb4cc44c1f82e74c6802c"; 20616 - sha256 = "0l0sjrfpp5xk5c74gryh1sf9hpv8qkykdwg59vzsmn0w9ii217p5"; 20594 + rev = "a0b6afcf3993f2edcce39052403220a10e74f362"; 20595 + sha256 = "0qswzjxm91s34x32xa61ypwr2fc7cgjaj1wnlgqznxyzjqvdh709"; 20617 20596 }; 20618 20597 recipeFile = fetchurl { 20619 20598 url = "https://raw.githubusercontent.com/milkypostman/melpa/440482c0edac8ee8bd4fe22f6bc5c1607f34c7ad/recipes/evil"; ··· 20692 20671 evil-cleverparens = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit, smartparens }: 20693 20672 melpaBuild { 20694 20673 pname = "evil-cleverparens"; 20695 - version = "20160611.904"; 20674 + version = "20170717.2113"; 20696 20675 src = fetchFromGitHub { 20697 20676 owner = "luxbock"; 20698 20677 repo = "evil-cleverparens"; 20699 - rev = "82c920ba04accfd31fa292e11c454d5112b4fd51"; 20700 - sha256 = "0ajy5kp2asrg070vzyzgyqs9jnzglm7lvx8fqvgdhpmhzzfckhbi"; 20678 + rev = "8c45879d49bfa6d4e414b6c1df700a4a51cbb869"; 20679 + sha256 = "0lhnybpnk4n2yhlcnj9zxn0vi5hpjfaqfhvyfy7ckzz74g8v7iyw"; 20701 20680 }; 20702 20681 recipeFile = fetchurl { 20703 20682 url = "https://raw.githubusercontent.com/milkypostman/melpa/e3b3637d6527b16ea0d606fd87b01004be446b09/recipes/evil-cleverparens"; ··· 20818 20797 evil-ediff = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 20819 20798 melpaBuild { 20820 20799 pname = "evil-ediff"; 20821 - version = "20170623.707"; 20800 + version = "20170724.1223"; 20822 20801 src = fetchFromGitHub { 20823 20802 owner = "emacs-evil"; 20824 20803 repo = "evil-ediff"; 20825 - rev = "862310e244d406751cdc7eae8e8c0d88414a48c7"; 20826 - sha256 = "0088xgvzsy3rmdkw6r90vnxgsxr9mmqkwaw18m9bm4fivday75b0"; 20804 + rev = "67b0e69f65c196eff5b39dacb7a9ec05bb919c74"; 20805 + sha256 = "0f8g07fyzyc8pdwizyj62v0dy65ap885asph83529y0j8wnni8ps"; 20827 20806 }; 20828 20807 recipeFile = fetchurl { 20829 20808 url = "https://raw.githubusercontent.com/milkypostman/melpa/50315ec837d2951bf5b2bb75809a35dd7ffc8fe8/recipes/evil-ediff"; ··· 20965 20944 evil-goggles = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 20966 20945 melpaBuild { 20967 20946 pname = "evil-goggles"; 20968 - version = "20170710.724"; 20947 + version = "20170724.211"; 20969 20948 src = fetchFromGitHub { 20970 20949 owner = "edkolev"; 20971 20950 repo = "evil-goggles"; 20972 - rev = "902270eea80594577d9af26298998406f79e59a0"; 20973 - sha256 = "11v1zpi3jnsxdwhxv441rvbkyb6v1sg4zyk74aw14l5cf38f0d55"; 20951 + rev = "879114abeaad8515937cb2a762d0438b6b7bb026"; 20952 + sha256 = "0zia2z0nvsxmplg1d6dy45dj5pkvak2wqn7dw10yb9bj0shfhjmv"; 20974 20953 }; 20975 20954 recipeFile = fetchurl { 20976 20955 url = "https://raw.githubusercontent.com/milkypostman/melpa/811b1261705b4c525e165fa9ee23ae191727a623/recipes/evil-goggles"; ··· 21175 21154 evil-matchit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 21176 21155 melpaBuild { 21177 21156 pname = "evil-matchit"; 21178 - version = "20170713.647"; 21157 + version = "20170719.702"; 21179 21158 src = fetchFromGitHub { 21180 21159 owner = "redguardtoo"; 21181 21160 repo = "evil-matchit"; 21182 - rev = "2fc961d94b27e528df1fc4b88d297dd9af8ed6d6"; 21183 - sha256 = "16fk050q8ibdp4n5fflcz2scsbky7dg1kf97c28f1gszixp6yng0"; 21161 + rev = "bed39041b1181ec26cf2601a8a7aa4afe2510f5b"; 21162 + sha256 = "0b1gl5mhl8w63rhx4bbr69cklgz630038lxpjb4nl6h8yl41pcrp"; 21184 21163 }; 21185 21164 recipeFile = fetchurl { 21186 21165 url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit"; ··· 21343 21322 evil-org = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 21344 21323 melpaBuild { 21345 21324 pname = "evil-org"; 21346 - version = "20170622.1310"; 21325 + version = "20170724.752"; 21347 21326 src = fetchFromGitHub { 21348 21327 owner = "Somelauw"; 21349 21328 repo = "evil-org-mode"; 21350 - rev = "975109dc665f53cef221b3c668612664340b7940"; 21351 - sha256 = "0fr0wxd53a0lv2akvayi844fncn8klj88hmld73x2d1igig38p4q"; 21329 + rev = "fc21477b2ac12b570c8428808f334d467a617e86"; 21330 + sha256 = "0fqk11mq4l7q7c5dv8049pmsggh3cmy4fhhq7c6h36dij02fkf01"; 21352 21331 }; 21353 21332 recipeFile = fetchurl { 21354 21333 url = "https://raw.githubusercontent.com/milkypostman/melpa/1768558ed0a0249421437b66fe45018dd768e637/recipes/evil-org"; ··· 22840 22819 find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: 22841 22820 melpaBuild { 22842 22821 pname = "find-file-in-project"; 22843 - version = "20170531.2054"; 22822 + version = "20170725.133"; 22844 22823 src = fetchFromGitHub { 22845 22824 owner = "technomancy"; 22846 22825 repo = "find-file-in-project"; 22847 - rev = "a6e59891973f3e40ca2e414ca66799cc686d8626"; 22848 - sha256 = "16wxw5bxb3nmw6glx2iqcfr75fsya1a9kxd6khv46zy5z85n1bng"; 22826 + rev = "2d3e8d095e0c36f927142e80c4330977be698568"; 22827 + sha256 = "1phj6a6ydc8hzv1f1881anyccg1jkd8dh6g229ln476i5y6wqs5j"; 22849 22828 }; 22850 22829 recipeFile = fetchurl { 22851 22830 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/find-file-in-project"; ··· 23470 23449 floobits = callPackage ({ fetchFromGitHub, fetchurl, highlight, json ? null, lib, melpaBuild }: 23471 23450 melpaBuild { 23472 23451 pname = "floobits"; 23473 - version = "20170416.1718"; 23452 + version = "20170725.127"; 23474 23453 src = fetchFromGitHub { 23475 23454 owner = "Floobits"; 23476 23455 repo = "floobits-emacs"; 23477 - rev = "fdac635ecc57ac7743f74678147aca2e956561de"; 23478 - sha256 = "134b5ss249x06bgqvsxnlcfys7nl8aid42s7ln8pamxrc3prfcc1"; 23456 + rev = "76c869f439c2d13028d1fe8cae486e0ef018e4b0"; 23457 + sha256 = "0f0i5zzl8njrwspir1wnfyrv9q8syl2izhyn2j9j9w8wyf5w7l1b"; 23479 23458 }; 23480 23459 recipeFile = fetchurl { 23481 23460 url = "https://raw.githubusercontent.com/milkypostman/melpa/95c859e8440049579630b4c2bcc31e7eaa13b1f1/recipes/floobits"; ··· 23596 23575 flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }: 23597 23576 melpaBuild { 23598 23577 pname = "flycheck"; 23599 - version = "20170715.1345"; 23578 + version = "20170723.839"; 23600 23579 src = fetchFromGitHub { 23601 23580 owner = "flycheck"; 23602 23581 repo = "flycheck"; 23603 - rev = "b78d5a6f48c2ebd4298cf33c3364c63d86ae32cc"; 23604 - sha256 = "14mp95k9365869fikzsvxha74121kbcrwp0pavv17calf29ycxck"; 23582 + rev = "35c0ce171dc7127d85a745d922b233544c41040b"; 23583 + sha256 = "0084lk692l6lxz82k242v2gwp6bdv5yjv5xvn3ra43x2d7mx4zz1"; 23605 23584 }; 23606 23585 recipeFile = fetchurl { 23607 23586 url = "https://raw.githubusercontent.com/milkypostman/melpa/649f9c3576e81409ae396606798035173cc6669f/recipes/flycheck"; ··· 23932 23911 flycheck-cython = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: 23933 23912 melpaBuild { 23934 23913 pname = "flycheck-cython"; 23935 - version = "20160327.1228"; 23914 + version = "20170724.258"; 23936 23915 src = fetchFromGitHub { 23937 23916 owner = "lbolla"; 23938 23917 repo = "emacs-flycheck-cython"; 23939 - rev = "45097658a16eeabf2bd5e0464355f8f37a1aeffc"; 23940 - sha256 = "0994346iyp7143476i3y6pc5m1n6z7g1r6n1rldivsj0qr4gjh01"; 23918 + rev = "ecc4454d35ab5317ab66a04406f36f0c1dbc0b76"; 23919 + sha256 = "1v17skw0wn7a7nkc1vrs0bbzihnjw0dwvyyd0lydsihzxl5z2r5g"; 23941 23920 }; 23942 23921 recipeFile = fetchurl { 23943 23922 url = "https://raw.githubusercontent.com/milkypostman/melpa/2d963eb1b8f8f863b37a96803b00d395e9d85e94/recipes/flycheck-cython"; ··· 24713 24692 src = fetchFromGitHub { 24714 24693 owner = "Andersbakken"; 24715 24694 repo = "rtags"; 24716 - rev = "65c8f03ff0112ce5c5e11aff6867ad0eb9019e63"; 24717 - sha256 = "0xlacwjmvx5xd8m7yi8l8mqi0lqs2gr2hmjag2frvmxcn4cpb4gc"; 24695 + rev = "afbf59630203624e0a5eecee52a3296295e6d620"; 24696 + sha256 = "0bygl7ahwsz6xmw0fif7gqnpzbk8cx7hpg4gp96f8inicq849z26"; 24718 24697 }; 24719 24698 recipeFile = fetchurl { 24720 24699 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/flycheck-rtags"; ··· 24923 24902 src = fetchFromGitHub { 24924 24903 owner = "abingham"; 24925 24904 repo = "emacs-ycmd"; 24926 - rev = "35e8a31e32d0de890547612db8373d7333db8d8a"; 24927 - sha256 = "023bkmviaqb85kwwlpmzfc5gycf4i7w8a43zhbmvasfjjb962yzd"; 24905 + rev = "5c3e07b46e4c25bbd0a2068a5091c8f27b344da6"; 24906 + sha256 = "04nb5cjlghkk47a0girnlxlcrclylhg1zx41q5lcvnzb1is06skh"; 24928 24907 }; 24929 24908 recipeFile = fetchurl { 24930 24909 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flycheck-ycmd"; ··· 24940 24919 flymake-coffee = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 24941 24920 melpaBuild { 24942 24921 pname = "flymake-coffee"; 24943 - version = "20140809.324"; 24922 + version = "20170722.1846"; 24944 24923 src = fetchFromGitHub { 24945 24924 owner = "purcell"; 24946 24925 repo = "flymake-coffee"; 24947 - rev = "325ab379592fdf9017d7c19625c7a978f6f3af3b"; 24948 - sha256 = "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7"; 24926 + rev = "dee295acf30820ed15fe0de17137d50bc27fc80c"; 24927 + sha256 = "0706jbi3jcmffxmcpvh8w3007q8sh48kgrcjip5c9hhfqpagayld"; 24949 24928 }; 24950 24929 recipeFile = fetchurl { 24951 24930 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-coffee"; ··· 24982 24961 flymake-css = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 24983 24962 melpaBuild { 24984 24963 pname = "flymake-css"; 24985 - version = "20121104.1104"; 24964 + version = "20170722.1846"; 24986 24965 src = fetchFromGitHub { 24987 24966 owner = "purcell"; 24988 24967 repo = "flymake-css"; 24989 - rev = "4649fc209836498d709bb627e8aa6e50189a06ec"; 24990 - sha256 = "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy"; 24968 + rev = "de090163ba289910ceeb61b13368ce42d0f2dfd8"; 24969 + sha256 = "18rqzah8p7mqwkddaav1d4r146amvn8jppazvsvc5vs01syj83m9"; 24991 24970 }; 24992 24971 recipeFile = fetchurl { 24993 24972 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-css"; ··· 25129 25108 flymake-haml = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 25130 25109 melpaBuild { 25131 25110 pname = "flymake-haml"; 25132 - version = "20130324.351"; 25111 + version = "20170722.1846"; 25133 25112 src = fetchFromGitHub { 25134 25113 owner = "purcell"; 25135 25114 repo = "flymake-haml"; 25136 - rev = "3117d94ecad908710502e8def42dbae5748e9c1d"; 25137 - sha256 = "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l"; 25115 + rev = "22a81e8484734552d461e7ae7305664dc244447e"; 25116 + sha256 = "0pgp2gl3wdwrzcik5b5csn4qp8iv6pc51brx8p7jrwn7bz4lkb82"; 25138 25117 }; 25139 25118 recipeFile = fetchurl { 25140 25119 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-haml"; ··· 25150 25129 flymake-haskell-multi = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 25151 25130 melpaBuild { 25152 25131 pname = "flymake-haskell-multi"; 25153 - version = "20130620.422"; 25132 + version = "20170722.1846"; 25154 25133 src = fetchFromGitHub { 25155 25134 owner = "purcell"; 25156 25135 repo = "flymake-haskell-multi"; 25157 - rev = "6183620ffee429b33c886fffd6106b876245ea47"; 25158 - sha256 = "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd"; 25136 + rev = "b564a94312259885b1380272eb867bf52a164020"; 25137 + sha256 = "1h21hy5fjwa5qxl31rq3jjp3wwkipdwaliq0ci184rw48kw51xjh"; 25159 25138 }; 25160 25139 recipeFile = fetchurl { 25161 25140 url = "https://raw.githubusercontent.com/milkypostman/melpa/e879eca5eb11b2ae77ee2cb8d8150d85e9e93ebd/recipes/flymake-haskell-multi"; ··· 25171 25150 flymake-hlint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 25172 25151 melpaBuild { 25173 25152 pname = "flymake-hlint"; 25174 - version = "20130309.145"; 25153 + version = "20170722.1846"; 25175 25154 src = fetchFromGitHub { 25176 25155 owner = "purcell"; 25177 25156 repo = "flymake-hlint"; 25178 - rev = "fae0c16f938129fb933e4c4625287816e8e160f0"; 25179 - sha256 = "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp"; 25157 + rev = "f910736b26784efc9a2fa29503f45c1f1dd0aa38"; 25158 + sha256 = "157f2l6hllwl12h8f502rq2kl33s202k9bcyfy2cmnn6vhky1b8s"; 25180 25159 }; 25181 25160 recipeFile = fetchurl { 25182 25161 url = "https://raw.githubusercontent.com/milkypostman/melpa/17820f32d46e845cc44b237d0bfd5c2d898721de/recipes/flymake-hlint"; ··· 25213 25192 flymake-jslint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 25214 25193 melpaBuild { 25215 25194 pname = "flymake-jslint"; 25216 - version = "20130613.202"; 25195 + version = "20170722.1846"; 25217 25196 src = fetchFromGitHub { 25218 25197 owner = "purcell"; 25219 25198 repo = "flymake-jslint"; 25220 - rev = "68ca28a88cffdd317f50c712b09abd2ccda8d7bc"; 25221 - sha256 = "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls"; 25199 + rev = "8edb82be605542b0ef62d38d818adcdde335eecb"; 25200 + sha256 = "0i6bqpbibsbqhpqfy9zl0awiqkmddi3q8xlrslcjd429f0g5f1ad"; 25222 25201 }; 25223 25202 recipeFile = fetchurl { 25224 25203 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-jslint"; ··· 25234 25213 flymake-json = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 25235 25214 melpaBuild { 25236 25215 pname = "flymake-json"; 25237 - version = "20130423.2357"; 25216 + version = "20170722.1846"; 25238 25217 src = fetchFromGitHub { 25239 25218 owner = "purcell"; 25240 25219 repo = "flymake-json"; 25241 - rev = "36084b67830bdc6c226115ea8287ea88d14b05dd"; 25242 - sha256 = "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534"; 25220 + rev = "d43e62fab69c4c39f54f1057c9801a3e645de619"; 25221 + sha256 = "1zlhxl7x754p4bxipklvz0gjqlwg9c8fiyv7rxdkfaxdzpf9a6zm"; 25243 25222 }; 25244 25223 recipeFile = fetchurl { 25245 25224 url = "https://raw.githubusercontent.com/milkypostman/melpa/acb0a4d29159aa6d74f754911f63152dac3425bd/recipes/flymake-json"; ··· 25318 25297 flymake-php = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 25319 25298 melpaBuild { 25320 25299 pname = "flymake-php"; 25321 - version = "20121104.1102"; 25300 + version = "20170722.1846"; 25322 25301 src = fetchFromGitHub { 25323 25302 owner = "purcell"; 25324 25303 repo = "flymake-php"; 25325 - rev = "93abe12d62b13f1d035a0df01e53e4bacdac2c66"; 25326 - sha256 = "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4"; 25304 + rev = "c045d01e002ba5e09b05f40e25bf5068d02126bc"; 25305 + sha256 = "03fk8kzlwbs9k91ra91r7djxlpv5mhbha33dnyz50sqwa52cg8ck"; 25327 25306 }; 25328 25307 recipeFile = fetchurl { 25329 25308 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-php"; ··· 25381 25360 flymake-python-pyflakes = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 25382 25361 melpaBuild { 25383 25362 pname = "flymake-python-pyflakes"; 25384 - version = "20131127.6"; 25363 + version = "20170722.1846"; 25385 25364 src = fetchFromGitHub { 25386 25365 owner = "purcell"; 25387 25366 repo = "flymake-python-pyflakes"; 25388 - rev = "f09ec573d7580a69f8bd49778c26da9ab6d5ec5a"; 25389 - sha256 = "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp"; 25367 + rev = "1d65c26bf65a5dcbd29fcd967e2feb90e1e7a33d"; 25368 + sha256 = "0hsvw6rxg3k1ymrav0bf5q3siqr9v2jp4c4h1f98szrj2lp200fm"; 25390 25369 }; 25391 25370 recipeFile = fetchurl { 25392 25371 url = "https://raw.githubusercontent.com/milkypostman/melpa/49091c0eca4158b80269b6ff5f7f3fc8e981420b/recipes/flymake-python-pyflakes"; ··· 25402 25381 flymake-ruby = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 25403 25382 melpaBuild { 25404 25383 pname = "flymake-ruby"; 25405 - version = "20121104.1059"; 25384 + version = "20170722.1846"; 25406 25385 src = fetchFromGitHub { 25407 25386 owner = "purcell"; 25408 25387 repo = "flymake-ruby"; 25409 - rev = "8dc4ca44ec2acfaab25f5501fca1bd687fae94f2"; 25410 - sha256 = "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109"; 25388 + rev = "6c320c6fb686c5223bf975cc35178ad6b195e073"; 25389 + sha256 = "0hzyxhg6y1rknvgj2ycivwrlrw7fznw9jrin5n9z627mzpjpfcnk"; 25411 25390 }; 25412 25391 recipeFile = fetchurl { 25413 25392 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-ruby"; ··· 25444 25423 flymake-sass = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 25445 25424 melpaBuild { 25446 25425 pname = "flymake-sass"; 25447 - version = "20140308.325"; 25426 + version = "20170722.1846"; 25448 25427 src = fetchFromGitHub { 25449 25428 owner = "purcell"; 25450 25429 repo = "flymake-sass"; 25451 - rev = "748f13caa399c27c41ba797da9e214b814f5a30f"; 25452 - sha256 = "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1"; 25430 + rev = "2de28148e92deb93bff3d55fe14e7c67ac476056"; 25431 + sha256 = "05v83l05knqv2inharmhjvzmjskjlany7dnwp5dz44bvy0jhnm39"; 25453 25432 }; 25454 25433 recipeFile = fetchurl { 25455 25434 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-sass"; ··· 25465 25444 flymake-shell = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: 25466 25445 melpaBuild { 25467 25446 pname = "flymake-shell"; 25468 - version = "20121104.1100"; 25447 + version = "20170722.1846"; 25469 25448 src = fetchFromGitHub { 25470 25449 owner = "purcell"; 25471 25450 repo = "flymake-shell"; 25472 - rev = "ec097bd77db5523a04ceb15a128e01689d36fb90"; 25473 - sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc"; 25451 + rev = "a16cf453056b9849cc7c912bb127fb0b08fc6dab"; 25452 + sha256 = "1ki0zk5ijfkf4blavl62b55jnjzxw2b7blaxg51arpvvbflqmmlh"; 25474 25453 }; 25475 25454 recipeFile = fetchurl { 25476 25455 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-shell"; ··· 26072 26051 foreman-mode = callPackage ({ dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 26073 26052 melpaBuild { 26074 26053 pname = "foreman-mode"; 26075 - version = "20160520.737"; 26054 + version = "20170725.722"; 26076 26055 src = fetchFromGitHub { 26077 26056 owner = "zweifisch"; 26078 26057 repo = "foreman-mode"; 26079 - rev = "bc6e2aca5a66847b13200b85172f7d7a36807d32"; 26080 - sha256 = "0pp68kqg2impar6rhlpifixx0lqgkcrj6ncjn5jlids6vfhq23nd"; 26058 + rev = "22b3bb13134b617870ed1e888af739f4818be929"; 26059 + sha256 = "01qanhif24czcmhpdfkcjs019ss4r79f7y2wfbzmj6w4z7g3rikk"; 26081 26060 }; 26082 26061 recipeFile = fetchurl { 26083 26062 url = "https://raw.githubusercontent.com/milkypostman/melpa/edeeb2b52ac70f8bdad38d3af62a7e434853c504/recipes/foreman-mode"; ··· 26516 26495 fstar-mode = callPackage ({ company, company-quickhelp, dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, quick-peek, yasnippet }: 26517 26496 melpaBuild { 26518 26497 pname = "fstar-mode"; 26519 - version = "20170531.1958"; 26498 + version = "20170725.829"; 26520 26499 src = fetchFromGitHub { 26521 26500 owner = "FStarLang"; 26522 26501 repo = "fstar-mode.el"; 26523 - rev = "c9a9d722848dfc3f37ac9e0e91603340e5f5df1e"; 26524 - sha256 = "0faf8796vvfi2g4kmh7xsnc08m3iyldgcivslq0xy86ndh682f06"; 26502 + rev = "9e2ddf0c32edb8c7726daf636876f01e1fd2f757"; 26503 + sha256 = "170ffm6mybp0cs3962cpq281fg67vxcfx22nl9q9vrlk7rwlrqz0"; 26525 26504 }; 26526 26505 recipeFile = fetchurl { 26527 26506 url = "https://raw.githubusercontent.com/milkypostman/melpa/c58ace42342c3d3ff5a56d86a16206f2ecb45f77/recipes/fstar-mode"; ··· 26548 26527 version = "20170709.139"; 26549 26528 src = fetchgit { 26550 26529 url = "git://factorcode.org/git/factor.git"; 26551 - rev = "9adddfc5e5666febc2f98b230e4a7d2b4c02ce0b"; 26552 - sha256 = "1ya7ghnclgcwha2cgi37z627q257xxd8c3igfl12k22ix4l5wr37"; 26530 + rev = "154de53470720c57da4f57a64f4adb6bf669b59c"; 26531 + sha256 = "1wrc48xd2brqr97zphn11sikhlbalhi1fh59azi85ri47y1yvvij"; 26553 26532 }; 26554 26533 recipeFile = fetchurl { 26555 26534 url = "https://raw.githubusercontent.com/milkypostman/melpa/0c3633c23baa472560a489fc663a0302f082bcef/recipes/fuel"; ··· 26674 26653 src = fetchFromGitHub { 26675 26654 owner = "HIPERFIT"; 26676 26655 repo = "futhark"; 26677 - rev = "dbc4ae1b8c977435d5369b18e1b624a62f8e8b13"; 26678 - sha256 = "0h7244567anfrfm2wpkvy0g6bnczisv03rz2ipr35pqm3gf7hyh8"; 26656 + rev = "4e1a7ed0e47da1c33dc5a20ba22cb604ebdef0c7"; 26657 + sha256 = "1wyk6fh58s675j3rr74lk358q3nlx9rlkq0bs8qkix11y93asp7j"; 26679 26658 }; 26680 26659 recipeFile = fetchurl { 26681 26660 url = "https://raw.githubusercontent.com/milkypostman/melpa/0607f01aad7e77d53595ad8db95d32acfd29b148/recipes/futhark-mode"; ··· 27193 27172 src = fetchFromGitHub { 27194 27173 owner = "DanielG"; 27195 27174 repo = "ghc-mod"; 27196 - rev = "d867cd0fee3fdb4e93440d96506c522de743aec6"; 27197 - sha256 = "0k615c7fvabs2y28kf0w3j8y3chqsbcdizv5z9jyf3519svb5sxn"; 27175 + rev = "3d9a3398691cb4cf476896994ab0e5640c69742f"; 27176 + sha256 = "0w53xj2hlr1nc4sahxgajjl23zsqjjcvsfpafhkhszgprbjdjh31"; 27198 27177 }; 27199 27178 recipeFile = fetchurl { 27200 27179 url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ghc"; ··· 27315 27294 ghub = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 27316 27295 melpaBuild { 27317 27296 pname = "ghub"; 27318 - version = "20170702.512"; 27297 + version = "20170725.1200"; 27319 27298 src = fetchFromGitHub { 27320 27299 owner = "tarsius"; 27321 27300 repo = "ghub"; 27322 - rev = "16c3300bb5d82b141aefa94c47ad9f97a58b0011"; 27323 - sha256 = "1w1cqz32rx4i4hcjkz2znlchp5h4xg74znm9819k4anlf635lshd"; 27301 + rev = "8f81a2aa0b2aaca55e92f7a78944f9d80296f405"; 27302 + sha256 = "03rd2f5zs95ld56jzq70y6jb0r21q2qhkndi2jrbic1fknfviiqh"; 27324 27303 }; 27325 27304 recipeFile = fetchurl { 27326 27305 url = "https://raw.githubusercontent.com/milkypostman/melpa/9375cbae3ffe5bf4ba5606358860050f3005d9b7/recipes/ghub"; ··· 27529 27508 src = fetchFromGitHub { 27530 27509 owner = "magit"; 27531 27510 repo = "magit"; 27532 - rev = "33201f76c27d21e91c2137aa5f19db18b2adb2e5"; 27533 - sha256 = "0749yvycd66ddg1wzzyzv8d2z6rxhlrizn83q0gm1zbz296s7rkb"; 27511 + rev = "4f0046012cc4783e7ec31e757e07d338c931a6e3"; 27512 + sha256 = "0lziv48xw065p6iwagraff2477dm3qldjbf6xfd2iqqwm7kfhd48"; 27534 27513 }; 27535 27514 recipeFile = fetchurl { 27536 27515 url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit"; ··· 28110 28089 license = lib.licenses.free; 28111 28090 }; 28112 28091 }) {}; 28092 + gitpatch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 28093 + melpaBuild { 28094 + pname = "gitpatch"; 28095 + version = "20170721.2110"; 28096 + src = fetchFromGitHub { 28097 + owner = "tumashu"; 28098 + repo = "gitpatch"; 28099 + rev = "577d5adf65c8133caa325c10e89e1e2fc323c907"; 28100 + sha256 = "1jj12pjwza6cq8a3kr8nqnmm3vxs0wam8h983irry4xr4ifywsn4"; 28101 + }; 28102 + recipeFile = fetchurl { 28103 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e1746d87f65dc4b0d8f47c7d6ba4c7e0dfa35953/recipes/gitpatch"; 28104 + sha256 = "0qaswkk06z24v40nkjkv7f6gfv0dlsjd6wchkn0ppqw95883vhv1"; 28105 + name = "gitpatch"; 28106 + }; 28107 + packageRequires = [ emacs ]; 28108 + meta = { 28109 + homepage = "https://melpa.org/#/gitpatch"; 28110 + license = lib.licenses.free; 28111 + }; 28112 + }) {}; 28113 28113 gitter = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: 28114 28114 melpaBuild { 28115 28115 pname = "gitter"; ··· 28425 28425 license = lib.licenses.free; 28426 28426 }; 28427 28427 }) {}; 28428 + gnus-select-account = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 28429 + melpaBuild { 28430 + pname = "gnus-select-account"; 28431 + version = "20170721.2211"; 28432 + src = fetchFromGitHub { 28433 + owner = "tumashu"; 28434 + repo = "gnus-select-account"; 28435 + rev = "ddc8c135eeaf90f5b6692a033af2badae36e68ce"; 28436 + sha256 = "0csq8cqv028g3mrvk88l0nlj3dk5fh67c10hdjwvxbf7winv0391"; 28437 + }; 28438 + recipeFile = fetchurl { 28439 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e1746d87f65dc4b0d8f47c7d6ba4c7e0dfa35953/recipes/gnus-select-account"; 28440 + sha256 = "1yini6kif7vp5msmhnnpfkab5m5px8y4wgvc0f0k79kdd17gvpsx"; 28441 + name = "gnus-select-account"; 28442 + }; 28443 + packageRequires = []; 28444 + meta = { 28445 + homepage = "https://melpa.org/#/gnus-select-account"; 28446 + license = lib.licenses.free; 28447 + }; 28448 + }) {}; 28428 28449 gnus-spotlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 28429 28450 pname = "gnus-spotlight"; 28430 28451 version = "20130901.735"; ··· 28678 28699 go-guru = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: 28679 28700 melpaBuild { 28680 28701 pname = "go-guru"; 28681 - version = "20170501.1058"; 28702 + version = "20170718.1046"; 28682 28703 src = fetchFromGitHub { 28683 28704 owner = "dominikh"; 28684 28705 repo = "go-mode.el"; 28685 - rev = "bfe7a14e9bf957d050e3c429156e697bb3670f21"; 28686 - sha256 = "1w4bwwvpfiw84cr6fxbgl2j8shd9i1lzsfbvvq16cm4dd0q23snn"; 28706 + rev = "2d1d33aee33a5cc088a8f51057464b7cd738cbdd"; 28707 + sha256 = "0ck7yj843y7bwc2y772zaan1g9m2zdjmq9pjpsva1z4x3p3c821g"; 28687 28708 }; 28688 28709 recipeFile = fetchurl { 28689 28710 url = "https://raw.githubusercontent.com/milkypostman/melpa/0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5/recipes/go-guru"; ··· 28720 28741 go-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 28721 28742 melpaBuild { 28722 28743 pname = "go-mode"; 28723 - version = "20170308.1512"; 28744 + version = "20170725.402"; 28724 28745 src = fetchFromGitHub { 28725 28746 owner = "dominikh"; 28726 28747 repo = "go-mode.el"; 28727 - rev = "bfe7a14e9bf957d050e3c429156e697bb3670f21"; 28728 - sha256 = "1w4bwwvpfiw84cr6fxbgl2j8shd9i1lzsfbvvq16cm4dd0q23snn"; 28748 + rev = "2d1d33aee33a5cc088a8f51057464b7cd738cbdd"; 28749 + sha256 = "0ck7yj843y7bwc2y772zaan1g9m2zdjmq9pjpsva1z4x3p3c821g"; 28729 28750 }; 28730 28751 recipeFile = fetchurl { 28731 28752 url = "https://raw.githubusercontent.com/milkypostman/melpa/0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5/recipes/go-mode"; ··· 28808 28829 src = fetchFromGitHub { 28809 28830 owner = "dominikh"; 28810 28831 repo = "go-mode.el"; 28811 - rev = "bfe7a14e9bf957d050e3c429156e697bb3670f21"; 28812 - sha256 = "1w4bwwvpfiw84cr6fxbgl2j8shd9i1lzsfbvvq16cm4dd0q23snn"; 28832 + rev = "2d1d33aee33a5cc088a8f51057464b7cd738cbdd"; 28833 + sha256 = "0ck7yj843y7bwc2y772zaan1g9m2zdjmq9pjpsva1z4x3p3c821g"; 28813 28834 }; 28814 28835 recipeFile = fetchurl { 28815 28836 url = "https://raw.githubusercontent.com/milkypostman/melpa/d806abe90da9a8951fdb0c31e2167bde13183c5c/recipes/go-rename"; ··· 29352 29373 src = fetchFromGitHub { 29353 29374 owner = "vmware"; 29354 29375 repo = "govmomi"; 29355 - rev = "0b533caa1ca0c4412748bde65753fa8c55ba4511"; 29356 - sha256 = "14lkhny4s6kmybx7w9hi11bnyvg7imyxnirdk28rb19krj2n7b36"; 29376 + rev = "8ab1a62d9c0873b8a25404c52928be2358b78963"; 29377 + sha256 = "0y86g43g2bngca7f3vznw4swwc778mcm0kfiqn3b18ibppvzrph7"; 29357 29378 }; 29358 29379 recipeFile = fetchurl { 29359 29380 url = "https://raw.githubusercontent.com/milkypostman/melpa/92d6391318021c63b06fe39b0ca38f667bb45ae9/recipes/govc"; ··· 29478 29499 src = fetchFromGitHub { 29479 29500 owner = "Groovy-Emacs-Modes"; 29480 29501 repo = "groovy-emacs-modes"; 29481 - rev = "1ddbda527268b33f506b50254234fec9bfdcbc9c"; 29482 - sha256 = "0qm73a87cydffyqkvjv34k7yss010czl861dhf3cnabvsz0bsp7v"; 29502 + rev = "85fb30df520f55e32aeb92af4e1d7c801300c99e"; 29503 + sha256 = "1iz17qv561x6w67r222ya0ig1dplb17ygvy8r3hyh20ijjdq733n"; 29483 29504 }; 29484 29505 recipeFile = fetchurl { 29485 29506 url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/grails-mode"; ··· 29838 29859 groovy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 29839 29860 melpaBuild { 29840 29861 pname = "groovy-mode"; 29841 - version = "20170712.224"; 29862 + version = "20170724.535"; 29842 29863 src = fetchFromGitHub { 29843 29864 owner = "Groovy-Emacs-Modes"; 29844 29865 repo = "groovy-emacs-modes"; 29845 - rev = "1ddbda527268b33f506b50254234fec9bfdcbc9c"; 29846 - sha256 = "0qm73a87cydffyqkvjv34k7yss010czl861dhf3cnabvsz0bsp7v"; 29866 + rev = "85fb30df520f55e32aeb92af4e1d7c801300c99e"; 29867 + sha256 = "1iz17qv561x6w67r222ya0ig1dplb17ygvy8r3hyh20ijjdq733n"; 29847 29868 }; 29848 29869 recipeFile = fetchurl { 29849 29870 url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/groovy-mode"; ··· 29859 29880 gruber-darker-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 29860 29881 melpaBuild { 29861 29882 pname = "gruber-darker-theme"; 29862 - version = "20170716.647"; 29883 + version = "20170719.2229"; 29863 29884 src = fetchFromGitHub { 29864 29885 owner = "rexim"; 29865 29886 repo = "gruber-darker-theme"; 29866 - rev = "3e5d5d67f8b004db288d6c2e1a0b02c3844ab5c5"; 29867 - sha256 = "1az7fndm19wy8s3p6wxa0ps55amwmmpbschayzy3g3g26a4swcxi"; 29887 + rev = "8e6bb26ce0abe20e6129ae8c8ad5c41e0832334e"; 29888 + sha256 = "1dxlpyc4w6ys08ir2bivv9lhjpwfjlh3wczmr0r03pc1fqx0w2ap"; 29868 29889 }; 29869 29890 recipeFile = fetchurl { 29870 29891 url = "https://raw.githubusercontent.com/milkypostman/melpa/87ade74553c04cb9dcfe16d03f263cc6f1fed046/recipes/gruber-darker-theme"; ··· 29901 29922 gruvbox-theme = callPackage ({ autothemer, fetchFromGitHub, fetchurl, lib, melpaBuild }: 29902 29923 melpaBuild { 29903 29924 pname = "gruvbox-theme"; 29904 - version = "20170712.1607"; 29925 + version = "20170718.741"; 29905 29926 src = fetchFromGitHub { 29906 29927 owner = "Greduan"; 29907 29928 repo = "emacs-theme-gruvbox"; 29908 - rev = "a3aafd33d9b027e6c0d5ef81ebb04a2bb8545cf2"; 29909 - sha256 = "1d9330yd2lch7yqlfvpv7gxyy00p4w9h6f0imn7bgj3y7wab20dw"; 29929 + rev = "21c1673622ba160bcf8cfdb0f066567b388b2960"; 29930 + sha256 = "1bh04nvaxphvfq7fgd53zd5k00gg35hldbida1ikw42pwkch3zk8"; 29910 29931 }; 29911 29932 recipeFile = fetchurl { 29912 29933 url = "https://raw.githubusercontent.com/milkypostman/melpa/2bd48c87919f64ced9f3add4860751bb34cb5ecb/recipes/gruvbox-theme"; ··· 30069 30090 gulp-task-runner = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 30070 30091 melpaBuild { 30071 30092 pname = "gulp-task-runner"; 30072 - version = "20161103.1523"; 30093 + version = "20170718.1341"; 30073 30094 src = fetchFromGitHub { 30074 30095 owner = "NicolasPetton"; 30075 30096 repo = "gulp-task-runner"; 30076 - rev = "f13da9e619c1838571df0a0462c273ed6e76defc"; 30077 - sha256 = "1xai81v7c58hy9rh63kxybzmlyfkv0m7qfdp7zia60ml5xhib31r"; 30097 + rev = "877990e956b1d71e2d9c7c3e5a129ad199b9debb"; 30098 + sha256 = "13qy4x4ap43qm5w2vrsy6w01z2s2kymfr9qvlj2yri4xk3r4vrps"; 30078 30099 }; 30079 30100 recipeFile = fetchurl { 30080 30101 url = "https://raw.githubusercontent.com/milkypostman/melpa/34a2bede5ea70cf9df623c32e789d78205f9ebb0/recipes/gulp-task-runner"; ··· 30821 30842 helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: 30822 30843 melpaBuild { 30823 30844 pname = "helm"; 30824 - version = "20170714.3"; 30845 + version = "20170724.2137"; 30825 30846 src = fetchFromGitHub { 30826 30847 owner = "emacs-helm"; 30827 30848 repo = "helm"; 30828 - rev = "07f8f705f54506da537b1f615ee2e95e9033defb"; 30829 - sha256 = "0g7fn2aqwh0ynsridrmf8gs5bl09s7pwpwawgmbwdb7rzyvrl97c"; 30849 + rev = "9e803b5a4a431b386966ea1b2a303003d7869375"; 30850 + sha256 = "0x797xy6p1b74zkqcdrf10kwp1ypjvkypayd070qh1sfjnrng4mf"; 30830 30851 }; 30831 30852 recipeFile = fetchurl { 30832 30853 url = "https://raw.githubusercontent.com/milkypostman/melpa/7e8bccffdf69479892d76b9336a4bec3f35e919d/recipes/helm"; ··· 31430 31451 helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 31431 31452 melpaBuild { 31432 31453 pname = "helm-core"; 31433 - version = "20170717.520"; 31454 + version = "20170725.419"; 31434 31455 src = fetchFromGitHub { 31435 31456 owner = "emacs-helm"; 31436 31457 repo = "helm"; 31437 - rev = "07f8f705f54506da537b1f615ee2e95e9033defb"; 31438 - sha256 = "0g7fn2aqwh0ynsridrmf8gs5bl09s7pwpwawgmbwdb7rzyvrl97c"; 31458 + rev = "9e803b5a4a431b386966ea1b2a303003d7869375"; 31459 + sha256 = "0x797xy6p1b74zkqcdrf10kwp1ypjvkypayd070qh1sfjnrng4mf"; 31439 31460 }; 31440 31461 recipeFile = fetchurl { 31441 31462 url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core"; ··· 31602 31623 src = fetchFromGitHub { 31603 31624 owner = "masasam"; 31604 31625 repo = "emacs-helm-directory"; 31605 - rev = "2c6d45404506ba744888dcdb65e9f63878f2da16"; 31606 - sha256 = "1a5j4zzn249jdm4kcri64x1dxazhhk7g5dmgnhflrnbrc2kdwm8h"; 31626 + rev = "29f05c87046f9a04329f817e9d7489a290a2592a"; 31627 + sha256 = "0dp9s5yicjn91mmrzb15hidf05c8lffpgk2sq23d9x6b9ddnlcl1"; 31607 31628 }; 31608 31629 recipeFile = fetchurl { 31609 31630 url = "https://raw.githubusercontent.com/milkypostman/melpa/d0c066d6f285ab6d572dab4549781101547cb704/recipes/helm-directory"; ··· 32186 32207 helm-google = callPackage ({ fetchFromGitHub, fetchurl, google, helm, lib, melpaBuild }: 32187 32208 melpaBuild { 32188 32209 pname = "helm-google"; 32189 - version = "20170509.244"; 32210 + version = "20170722.710"; 32190 32211 src = fetchFromGitHub { 32191 32212 owner = "steckerhalter"; 32192 32213 repo = "helm-google"; 32193 - rev = "b24de3240b2a46fdf6124e91aa4f684b2370454b"; 32194 - sha256 = "1w48ag2pd462hf238hkdl0i6csvchcsdf3021lnkdy41vwxj1rdg"; 32214 + rev = "4530a375a46880d53e5d7e906028f71c040de946"; 32215 + sha256 = "1xj3q6hyjcqbr3dglcba4impsdgb707zi9w7prpn1m735xhsis01"; 32195 32216 }; 32196 32217 recipeFile = fetchurl { 32197 32218 url = "https://raw.githubusercontent.com/milkypostman/melpa/88ed6db7b53d1ac75c40d12c21de1dec6d717fbe/recipes/helm-google"; ··· 32815 32836 helm-org-rifle = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: 32816 32837 melpaBuild { 32817 32838 pname = "helm-org-rifle"; 32818 - version = "20170518.312"; 32839 + version = "20170711.2354"; 32819 32840 src = fetchFromGitHub { 32820 32841 owner = "alphapapa"; 32821 32842 repo = "helm-org-rifle"; 32822 - rev = "61adb8ec3af0b7b87b2f9245510dc8b014d026ed"; 32823 - sha256 = "05zqp6yifc87i22q0p37jl90cfyh5v1bq9ifhpkdy1rs3sgcmnif"; 32843 + rev = "87e00cc5a47b6dae8040ad27d2883f4028cbcfc1"; 32844 + sha256 = "0n7nwpc9wy5p81hbp2b8wzfr040k0xn4ksm9a1fjdl9fg8hvh0pc"; 32824 32845 }; 32825 32846 recipeFile = fetchurl { 32826 32847 url = "https://raw.githubusercontent.com/milkypostman/melpa/f39cc94dde5aaf0d6cfea5c98dd52cdb0bcb1615/recipes/helm-org-rifle"; ··· 33319 33340 helm-rtags = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, rtags }: 33320 33341 melpaBuild { 33321 33342 pname = "helm-rtags"; 33322 - version = "20170522.2154"; 33343 + version = "20170723.2050"; 33323 33344 src = fetchFromGitHub { 33324 33345 owner = "Andersbakken"; 33325 33346 repo = "rtags"; 33326 - rev = "65c8f03ff0112ce5c5e11aff6867ad0eb9019e63"; 33327 - sha256 = "0xlacwjmvx5xd8m7yi8l8mqi0lqs2gr2hmjag2frvmxcn4cpb4gc"; 33347 + rev = "afbf59630203624e0a5eecee52a3296295e6d620"; 33348 + sha256 = "0bygl7ahwsz6xmw0fif7gqnpzbk8cx7hpg4gp96f8inicq849z26"; 33328 33349 }; 33329 33350 recipeFile = fetchurl { 33330 33351 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/helm-rtags"; ··· 33760 33781 helm-xref = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 33761 33782 melpaBuild { 33762 33783 pname = "helm-xref"; 33763 - version = "20170425.1440"; 33784 + version = "20170725.546"; 33764 33785 src = fetchFromGitHub { 33765 33786 owner = "brotzeitmacher"; 33766 33787 repo = "helm-xref"; 33767 - rev = "cd458044be2cec95f31f0ac318b0f80f4b92785b"; 33768 - sha256 = "0lx2xrkwrbzkbs26gwksdqpywcsfsi3d4g2mw1h8aabd12hnr4my"; 33788 + rev = "3197a66a605afa42957781cc7f97f6c614ecf02a"; 33789 + sha256 = "0nr4yg44qqr5ga8h1hc143953iyyswp2l9bfb5b5wwwzz42iz5cx"; 33769 33790 }; 33770 33791 recipeFile = fetchurl { 33771 33792 url = "https://raw.githubusercontent.com/milkypostman/melpa/f39f3d09a8f00d0358653631a8643b6dd71a9bd1/recipes/helm-xref"; ··· 33880 33901 helpful = callPackage ({ dash, elisp-refs, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 33881 33902 melpaBuild { 33882 33903 pname = "helpful"; 33883 - version = "20170625.1441"; 33904 + version = "20170722.522"; 33884 33905 src = fetchFromGitHub { 33885 33906 owner = "Wilfred"; 33886 33907 repo = "helpful"; 33887 - rev = "da7d479c89090155996bf568bd89fa8a8859eac7"; 33888 - sha256 = "1vpfb6n1k7j8wmzsn3j2a8g2hf6lxc8jp77xgzi3kd0wwdyjmqg2"; 33908 + rev = "d167ee6fd4fbaadc46aa50a96529dc234a4c37c2"; 33909 + sha256 = "04r090757jcaljr0bfvxjm45wf201cn04cr467ryh9k92gravlfj"; 33889 33910 }; 33890 33911 recipeFile = fetchurl { 33891 33912 url = "https://raw.githubusercontent.com/milkypostman/melpa/889d34b654de13bd413d46071a5ff191cbf3d157/recipes/helpful"; ··· 34702 34723 hippie-expand-slime = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 34703 34724 melpaBuild { 34704 34725 pname = "hippie-expand-slime"; 34705 - version = "20170317.0"; 34726 + version = "20170722.1846"; 34706 34727 src = fetchFromGitHub { 34707 34728 owner = "purcell"; 34708 34729 repo = "hippie-expand-slime"; 34709 - rev = "ed6c91a0600550788dc78a3ab32040ac28f7c8d4"; 34710 - sha256 = "0nqrz1wmg84xk08mi5w8h9mrymr23v8i39s2kdqsrmn6qpw37fpl"; 34730 + rev = "39bbae94896a62854d31754debdfae71d35fec62"; 34731 + sha256 = "1l2j5k4jk8jpm1vdf0z5zwa287859afsgd3gda778sdsiy38l6r7"; 34711 34732 }; 34712 34733 recipeFile = fetchurl { 34713 34734 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/hippie-expand-slime"; ··· 34744 34765 historian = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 34745 34766 melpaBuild { 34746 34767 pname = "historian"; 34747 - version = "20170715.2142"; 34768 + version = "20170722.1714"; 34748 34769 src = fetchFromGitHub { 34749 34770 owner = "PythonNut"; 34750 34771 repo = "historian.el"; 34751 - rev = "d42321d2af89c6f9f932b70944dd315a6bb42bfa"; 34752 - sha256 = "04lpnm56kkbs388z61sil0zmb1zxzkh1svzbhghcw3836fgm24kd"; 34772 + rev = "78ec5632e4f4fd005014bd762c4a5ccdeabbd33d"; 34773 + sha256 = "1ag9hpxrzg5add4nj2j08ymxrggnzdzqb8k1vcpkd8rg72138k3w"; 34753 34774 }; 34754 34775 recipeFile = fetchurl { 34755 34776 url = "https://raw.githubusercontent.com/milkypostman/melpa/f16dacf64c52767c0c8aef653ac5d1a7a3bd0883/recipes/historian"; ··· 35660 35681 hydra = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 35661 35682 melpaBuild { 35662 35683 pname = "hydra"; 35663 - version = "20170325.815"; 35684 + version = "20170722.818"; 35664 35685 src = fetchFromGitHub { 35665 35686 owner = "abo-abo"; 35666 35687 repo = "hydra"; 35667 - rev = "38ce88a9c3be11b0431080078095159b2211ca7a"; 35668 - sha256 = "0hja61lxhnkl0mpq3fj46pmd9pp85ncdzvgzc1dy82a48sib92dj"; 35688 + rev = "943636fe4a35298d9d234222bc4520dec9ef2305"; 35689 + sha256 = "0ln4z2796ycy33g5jcxkqvm7638qxy4sipsab7d2864hh700cikg"; 35669 35690 }; 35670 35691 recipeFile = fetchurl { 35671 35692 url = "https://raw.githubusercontent.com/milkypostman/melpa/a4375d8ae519290fd5018626b075c226016f951d/recipes/hydra"; ··· 35763 35784 ibuffer-projectile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: 35764 35785 melpaBuild { 35765 35786 pname = "ibuffer-projectile"; 35766 - version = "20170410.1452"; 35787 + version = "20170721.1823"; 35767 35788 src = fetchFromGitHub { 35768 35789 owner = "purcell"; 35769 35790 repo = "ibuffer-projectile"; 35770 - rev = "a004cd0121ab15a00311631289fc6a8c7a86a897"; 35771 - sha256 = "013yx94q2ffhiqbx9dara7kq76yfmigj4y00zc48rdinclnzb6az"; 35791 + rev = "d99fb0d918f13664856178402efe64b4b237648b"; 35792 + sha256 = "1rlicnrjs8nmha90i9d4z4ps5dskry08rj5sa3ax2igxwbq1z4w5"; 35772 35793 }; 35773 35794 recipeFile = fetchurl { 35774 35795 url = "https://raw.githubusercontent.com/milkypostman/melpa/363a6a888945f2c8b02f5715539439ba744d737d/recipes/ibuffer-projectile"; ··· 36053 36074 ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 36054 36075 melpaBuild { 36055 36076 pname = "ido-completing-read-plus"; 36056 - version = "20170708.1116"; 36077 + version = "20170719.119"; 36057 36078 src = fetchFromGitHub { 36058 36079 owner = "DarwinAwardWinner"; 36059 36080 repo = "ido-ubiquitous"; 36060 - rev = "7b7136532ee4af0380f667f19700b53853bbbd7a"; 36061 - sha256 = "0zswh103bynq9fxpspb3ibn9vriw1m4qnp9i44b8a27k3rvbmmjn"; 36081 + rev = "999dd0cc2d88dc82bc4511c6c2b09caf838825b9"; 36082 + sha256 = "0s8r7hm6mz5g4w4qdjichz20nbim2a5rg1njpl11v27pdg2x13p3"; 36062 36083 }; 36063 36084 recipeFile = fetchurl { 36064 36085 url = "https://raw.githubusercontent.com/milkypostman/melpa/4a227a6d44f1981e8a3f73b253d2c33eb18ef72f/recipes/ido-completing-read+"; ··· 36095 36116 ido-exit-target = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 36096 36117 melpaBuild { 36097 36118 pname = "ido-exit-target"; 36098 - version = "20150904.737"; 36119 + version = "20170717.1151"; 36099 36120 src = fetchFromGitHub { 36100 36121 owner = "waymondo"; 36101 36122 repo = "ido-exit-target"; 36102 - rev = "322520c665284ce6547eb9dcd3aa888a02a51489"; 36103 - sha256 = "1s93q47cadanynvm1y4y08s68yq0l8q8vfasdk7w39vrjsxxsj3x"; 36123 + rev = "e56fc6928649c87ccf39d56d84ab53ebaced1f73"; 36124 + sha256 = "1a1bcvmihf22kr8rpv6kyp4b7x79hla5qdys48d6kl06m53gyckp"; 36104 36125 }; 36105 36126 recipeFile = fetchurl { 36106 36127 url = "https://raw.githubusercontent.com/milkypostman/melpa/b815e7492eb0bd39c5d1be5a95784f9fe5612b62/recipes/ido-exit-target"; ··· 36368 36389 ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: 36369 36390 melpaBuild { 36370 36391 pname = "ido-ubiquitous"; 36371 - version = "20170705.1656"; 36392 + version = "20170718.1033"; 36372 36393 src = fetchFromGitHub { 36373 36394 owner = "DarwinAwardWinner"; 36374 36395 repo = "ido-ubiquitous"; 36375 - rev = "7b7136532ee4af0380f667f19700b53853bbbd7a"; 36376 - sha256 = "0zswh103bynq9fxpspb3ibn9vriw1m4qnp9i44b8a27k3rvbmmjn"; 36396 + rev = "999dd0cc2d88dc82bc4511c6c2b09caf838825b9"; 36397 + sha256 = "0s8r7hm6mz5g4w4qdjichz20nbim2a5rg1njpl11v27pdg2x13p3"; 36377 36398 }; 36378 36399 recipeFile = fetchurl { 36379 36400 url = "https://raw.githubusercontent.com/milkypostman/melpa/4a227a6d44f1981e8a3f73b253d2c33eb18ef72f/recipes/ido-ubiquitous"; ··· 36452 36473 idris-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, prop-menu }: 36453 36474 melpaBuild { 36454 36475 pname = "idris-mode"; 36455 - version = "20170703.2038"; 36476 + version = "20170722.1339"; 36456 36477 src = fetchFromGitHub { 36457 36478 owner = "idris-hackers"; 36458 36479 repo = "idris-mode"; 36459 - rev = "7de2809515cfb413a7be5fab71d6814d2699e1e3"; 36460 - sha256 = "0v6as33dpqmggmprpimv5rrm7vpfakka5hszz5f5p2k5v212yvk8"; 36480 + rev = "5c01039112a8c52a0275560575f1f542f3966cf5"; 36481 + sha256 = "0r3fbp2c8qhmsnpd63r9fjz1vxjsa054x69d9716pbp1jk3qsjsv"; 36461 36482 }; 36462 36483 recipeFile = fetchurl { 36463 36484 url = "https://raw.githubusercontent.com/milkypostman/melpa/17a86efca3bdebef7c92ba6ece2de214d283c627/recipes/idris-mode"; ··· 36991 37012 indent-tools = callPackage ({ fetchFromGitLab, fetchurl, hydra, lib, melpaBuild, s, yafolding }: 36992 37013 melpaBuild { 36993 37014 pname = "indent-tools"; 36994 - version = "20170608.647"; 37015 + version = "20170725.735"; 36995 37016 src = fetchFromGitLab { 36996 37017 owner = "emacs-stuff"; 36997 37018 repo = "indent-tools"; 36998 - rev = "8d2072eef1fdc87e35f7495adfbfa0beb9faf6b7"; 36999 - sha256 = "1hrsmv25q9rpmj8paf3gggw7sp28z1m4gwlx50s64k5mxqa99iy8"; 37019 + rev = "45aa1321674fc111b6cf4398e90c53c27f8274af"; 37020 + sha256 = "1v1x43af69q6crky4l65j649rb35qdxw2gw1ivz6ihsdcwa4dywz"; 37000 37021 }; 37001 37022 recipeFile = fetchurl { 37002 37023 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/indent-tools"; ··· 37030 37051 license = lib.licenses.free; 37031 37052 }; 37032 37053 }) {}; 37033 - indium = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, seq, websocket }: 37054 + indium = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, memoize, seq, sourcemap, websocket }: 37034 37055 melpaBuild { 37035 37056 pname = "indium"; 37036 - version = "20170626.312"; 37057 + version = "20170725.1119"; 37037 37058 src = fetchFromGitHub { 37038 37059 owner = "NicolasPetton"; 37039 37060 repo = "Indium"; 37040 - rev = "4747a94cf823deb5623368f71f2012f8c5fdc156"; 37041 - sha256 = "11hsyqiy5lcvk721xrv1ihzp9ghdgk46n3qlaviy9alapl0v55d5"; 37061 + rev = "a0feb67bfd035dc0d2f2b6eff12a1af050cb8b1b"; 37062 + sha256 = "1h230lrq3pdmb26930n8ma2h1gqrz0zxzxy38h65khqqkcv37ldv"; 37042 37063 }; 37043 37064 recipeFile = fetchurl { 37044 37065 url = "https://raw.githubusercontent.com/milkypostman/melpa/4292058cc6e31cabc0de575134427bce7fcef541/recipes/indium"; 37045 37066 sha256 = "024ljx7v8xahmr8jm41fiy8i5jbg48ybqp5n67k4jwg819cz8wvl"; 37046 37067 name = "indium"; 37047 37068 }; 37048 - packageRequires = [ company emacs js2-mode seq websocket ]; 37069 + packageRequires = [ 37070 + company 37071 + emacs 37072 + js2-mode 37073 + memoize 37074 + seq 37075 + sourcemap 37076 + websocket 37077 + ]; 37049 37078 meta = { 37050 37079 homepage = "https://melpa.org/#/indium"; 37051 37080 license = lib.licenses.free; ··· 37075 37104 inf-clojure = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 37076 37105 melpaBuild { 37077 37106 pname = "inf-clojure"; 37078 - version = "20170710.708"; 37107 + version = "20170720.2256"; 37079 37108 src = fetchFromGitHub { 37080 37109 owner = "clojure-emacs"; 37081 37110 repo = "inf-clojure"; 37082 - rev = "f7ec13ab2fbc36e99df196eb863a75baf3b92fd6"; 37083 - sha256 = "01j4prrs78sq4w7cv15rdilxrqmjam2s1hrwijf6718c0s7dbpd0"; 37111 + rev = "15963caac5791c2e9145cc99e4db8576807eb0ec"; 37112 + sha256 = "088r68rj4ih3mlh4pv986zd4cgs0f32ar27550fxky6kr8197k46"; 37084 37113 }; 37085 37114 recipeFile = fetchurl { 37086 37115 url = "https://raw.githubusercontent.com/milkypostman/melpa/5d6112e06d1efcb7cb5652b0bec8d282d7f67bd9/recipes/inf-clojure"; ··· 37308 37337 src = fetchFromGitHub { 37309 37338 owner = "emacs-jp"; 37310 37339 repo = "init-loader"; 37311 - rev = "287da99eadfa3dd85492506db43d68324069b593"; 37312 - sha256 = "03a655qzcwizv9hvfcp47466axsrq0h049fdd79xk6zmans5s6fj"; 37340 + rev = "5d3cea1004c11ff96b33020e337b03b925c67c42"; 37341 + sha256 = "17bg4s8yz7yz28m04fp2ff6ld0y01yl99wkn2k5rkg4j441xg3n2"; 37313 37342 }; 37314 37343 recipeFile = fetchurl { 37315 37344 url = "https://raw.githubusercontent.com/milkypostman/melpa/e46e6ec79ff4c76fc85e13321e6dabd5797c5f45/recipes/init-loader"; ··· 37597 37626 intero = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }: 37598 37627 melpaBuild { 37599 37628 pname = "intero"; 37600 - version = "20170711.1415"; 37629 + version = "20170721.1851"; 37601 37630 src = fetchFromGitHub { 37602 37631 owner = "commercialhaskell"; 37603 37632 repo = "intero"; 37604 - rev = "d03b3cb0cbc8d059a223366c4f7a2be85672c22f"; 37605 - sha256 = "0zga7p2hazcwxjyzgrvq77d3j6q9mz7wz7mkqk0hzf00sdb1gpg9"; 37633 + rev = "aec455424105ddcf8e311acaf880078f7a6d92b3"; 37634 + sha256 = "1a5shx3i7lhplcglrldzhway0w0rhq0h4wb9h835nzmjl2p6lprd"; 37606 37635 }; 37607 37636 recipeFile = fetchurl { 37608 37637 url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero"; ··· 37825 37854 license = lib.licenses.free; 37826 37855 }; 37827 37856 }) {}; 37857 + iqa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 37858 + melpaBuild { 37859 + pname = "iqa"; 37860 + version = "20170722.834"; 37861 + src = fetchFromGitHub { 37862 + owner = "a13"; 37863 + repo = "iqa.el"; 37864 + rev = "08e3f70d0a3ed95a0c5675ae88e7966474ecc45a"; 37865 + sha256 = "1n7ghcixk16n6x8p7128mqjfcsalxfyp3asydnijw7qp358l7f9r"; 37866 + }; 37867 + recipeFile = fetchurl { 37868 + url = "https://raw.githubusercontent.com/milkypostman/melpa/a9bd2e952d98f7ac2dc823581b07b65e951e9e45/recipes/iqa"; 37869 + sha256 = "02yrkizk4ssip44s6r62finsrf45hxj9cpil1xrvh8g4jbsmfsw4"; 37870 + name = "iqa"; 37871 + }; 37872 + packageRequires = [ emacs ]; 37873 + meta = { 37874 + homepage = "https://melpa.org/#/iqa"; 37875 + license = lib.licenses.free; 37876 + }; 37877 + }) {}; 37828 37878 ir-black-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 37829 37879 melpaBuild { 37830 37880 pname = "ir-black-theme"; ··· 37889 37939 irony = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: 37890 37940 melpaBuild { 37891 37941 pname = "irony"; 37892 - version = "20170627.1045"; 37942 + version = "20170725.1249"; 37893 37943 src = fetchFromGitHub { 37894 37944 owner = "Sarcasm"; 37895 37945 repo = "irony-mode"; 37896 - rev = "bf21cf4c442a930e6007b3ff5bd8af094318991f"; 37897 - sha256 = "02fm2nwhglpb42qa5z2mrfkwqvwc3xvfdi0marlxbg3ramhn4s4i"; 37946 + rev = "d47bc8d94748dbd87fed9bf92cea85e115a39031"; 37947 + sha256 = "1hmrpz8fv8prw5jwipfy56m4fw2sbx14nm251wjva5503bim3lw5"; 37898 37948 }; 37899 37949 recipeFile = fetchurl { 37900 37950 url = "https://raw.githubusercontent.com/milkypostman/melpa/d2b6a8d57b192325dcd30fddc9ff8dd1516ad680/recipes/irony"; ··· 37951 38001 }) {}; 37952 38002 isearch-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 37953 38003 pname = "isearch-plus"; 37954 - version = "20170614.928"; 38004 + version = "20170723.1826"; 37955 38005 src = fetchurl { 37956 38006 url = "https://www.emacswiki.org/emacs/download/isearch+.el"; 37957 - sha256 = "19jk4c39bqbqbfwmhkiwqfij556nv82syy99g07s7gz1bqkrm7pl"; 38007 + sha256 = "0d7xsr71iadqzg81mv17dqyd0bdzkmljxlrpdlpycjyaf3z59aqr"; 37958 38008 name = "isearch+.el"; 37959 38009 }; 37960 38010 recipeFile = fetchurl { ··· 38179 38229 ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 38180 38230 melpaBuild { 38181 38231 pname = "ivy"; 38182 - version = "20170716.1104"; 38232 + version = "20170725.948"; 38183 38233 src = fetchFromGitHub { 38184 38234 owner = "abo-abo"; 38185 38235 repo = "swiper"; 38186 - rev = "dc146d9f1435b79fbfbfa702f0172b9de05f631d"; 38187 - sha256 = "09cfs0rhhb72b12pic2w9chbc000pqnafrl2x0g8v5r065pzp64n"; 38236 + rev = "112c5ba0df7deea11b3e91b5db3990d693eb5b72"; 38237 + sha256 = "0fcskn4v0rx5i04qr40wa8jggsswxxp8g8hk0s4sr447mxbiksbv"; 38188 38238 }; 38189 38239 recipeFile = fetchurl { 38190 38240 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy"; ··· 38288 38338 src = fetchFromGitHub { 38289 38339 owner = "PythonNut"; 38290 38340 repo = "historian.el"; 38291 - rev = "d42321d2af89c6f9f932b70944dd315a6bb42bfa"; 38292 - sha256 = "04lpnm56kkbs388z61sil0zmb1zxzkh1svzbhghcw3836fgm24kd"; 38341 + rev = "78ec5632e4f4fd005014bd762c4a5ccdeabbd33d"; 38342 + sha256 = "1ag9hpxrzg5add4nj2j08ymxrggnzdzqb8k1vcpkd8rg72138k3w"; 38293 38343 }; 38294 38344 recipeFile = fetchurl { 38295 38345 url = "https://raw.githubusercontent.com/milkypostman/melpa/fb79cbc9af6cd443b9de97817d24bcc9050d5940/recipes/ivy-historian"; ··· 38309 38359 src = fetchFromGitHub { 38310 38360 owner = "abo-abo"; 38311 38361 repo = "swiper"; 38312 - rev = "dc146d9f1435b79fbfbfa702f0172b9de05f631d"; 38313 - sha256 = "09cfs0rhhb72b12pic2w9chbc000pqnafrl2x0g8v5r065pzp64n"; 38362 + rev = "112c5ba0df7deea11b3e91b5db3990d693eb5b72"; 38363 + sha256 = "0fcskn4v0rx5i04qr40wa8jggsswxxp8g8hk0s4sr447mxbiksbv"; 38314 38364 }; 38315 38365 recipeFile = fetchurl { 38316 38366 url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy-hydra"; ··· 38393 38443 src = fetchFromGitHub { 38394 38444 owner = "Andersbakken"; 38395 38445 repo = "rtags"; 38396 - rev = "65c8f03ff0112ce5c5e11aff6867ad0eb9019e63"; 38397 - sha256 = "0xlacwjmvx5xd8m7yi8l8mqi0lqs2gr2hmjag2frvmxcn4cpb4gc"; 38446 + rev = "afbf59630203624e0a5eecee52a3296295e6d620"; 38447 + sha256 = "0bygl7ahwsz6xmw0fif7gqnpzbk8cx7hpg4gp96f8inicq849z26"; 38398 38448 }; 38399 38449 recipeFile = fetchurl { 38400 38450 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ivy-rtags"; ··· 39080 39130 jenkins = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: 39081 39131 melpaBuild { 39082 39132 pname = "jenkins"; 39083 - version = "20170713.702"; 39133 + version = "20170721.236"; 39084 39134 src = fetchFromGitHub { 39085 39135 owner = "rmuslimov"; 39086 39136 repo = "jenkins.el"; 39087 - rev = "b30d4ef658963b913ca02726f99755c10736fd9d"; 39088 - sha256 = "15yl1j3lrag19vy5k5qymmf6ij0myaiwl5k7z1ij0b70y2qmfx7k"; 39137 + rev = "1ec967973db685c9d84133ec6a5e06489ce06b62"; 39138 + sha256 = "1ai5adv46van2g029x9idj394ycczfacyhyv291sasf8mv9i7j4b"; 39089 39139 }; 39090 39140 recipeFile = fetchurl { 39091 39141 url = "https://raw.githubusercontent.com/milkypostman/melpa/2ed2da33db5eaea1a37f86057da174a45cd37ea5/recipes/jenkins"; ··· 39477 39527 js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 39478 39528 melpaBuild { 39479 39529 pname = "js2-mode"; 39480 - version = "20170716.1313"; 39530 + version = "20170721.602"; 39481 39531 src = fetchFromGitHub { 39482 39532 owner = "mooz"; 39483 39533 repo = "js2-mode"; 39484 - rev = "b176925c4d8a21e0ed375e13cf6aa04cdf3b4a0e"; 39485 - sha256 = "0ffr8wjqqs7p54hi8wgnd61dm4cs7112j56d8q9ycfmnw0fswyxk"; 39534 + rev = "cb57d9b67390ae3ff70ab64169bbc4f1264244bc"; 39535 + sha256 = "0z7ya533ap6lm5qwfsbhn1k4jh1k1p5xyk5r27wd40rfzvd2x2gy"; 39486 39536 }; 39487 39537 recipeFile = fetchurl { 39488 39538 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode"; ··· 39582 39632 json-mode = callPackage ({ fetchFromGitHub, fetchurl, json-reformat, json-snatcher, lib, melpaBuild }: 39583 39633 melpaBuild { 39584 39634 pname = "json-mode"; 39585 - version = "20170619.1701"; 39635 + version = "20170719.2205"; 39586 39636 src = fetchFromGitHub { 39587 39637 owner = "joshwnj"; 39588 39638 repo = "json-mode"; 39589 - rev = "39ba450ba5dcc72e317e679a0b61d8aa94383966"; 39590 - sha256 = "19qklwzad6qj27jbsms88bbnva4pvl64c89arpf66yjby3hnqbg3"; 39639 + rev = "32d5a9b3319e6797c4d52e7d61a65e5638102ef4"; 39640 + sha256 = "04n68ppxdga5r7mbahiqjkykf3i5simpx91aa8x9h197y5wwi4ww"; 39591 39641 }; 39592 39642 recipeFile = fetchurl { 39593 39643 url = "https://raw.githubusercontent.com/milkypostman/melpa/03d0ff6c8d724cf39446fa27f52aa5cc1a3cefb6/recipes/json-mode"; ··· 40082 40132 kaolin-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 40083 40133 melpaBuild { 40084 40134 pname = "kaolin-theme"; 40085 - version = "20170710.1014"; 40135 + version = "20170725.514"; 40086 40136 src = fetchFromGitHub { 40087 40137 owner = "0rdy"; 40088 40138 repo = "kaolin-theme"; 40089 - rev = "f2df1b80dfef88d38c5fbf1b9fad96e2091126c3"; 40090 - sha256 = "0anfz9npizaghhvpcvplxsymvv9q3sl7bpiis281p8c7yhrl93h5"; 40139 + rev = "96619e8c330dcb5a0b45bde1fb2a6697729d3541"; 40140 + sha256 = "1i8jk2l703ikmkqb1lf6mvrldb05kfp6gnak26lpc9s7pb4m8mhn"; 40091 40141 }; 40092 40142 recipeFile = fetchurl { 40093 40143 url = "https://raw.githubusercontent.com/milkypostman/melpa/d2abf9d914cdc210bbd47ea92d0dac76683e21f0/recipes/kaolin-theme"; ··· 40590 40640 src = fetchFromGitHub { 40591 40641 owner = "kivy"; 40592 40642 repo = "kivy"; 40593 - rev = "e4a8a4b17cb1ae073afc5df54d9fed9333f1cc72"; 40594 - sha256 = "09z298s699jk76i6yrflplhvdc77flb2qfkzbb55ngmx0ajcf2h6"; 40643 + rev = "c07f97179a02e1bddace948633e4b5b94ccc6ad4"; 40644 + sha256 = "0ad3hkggdvd800cf0hwxa8v5j6c3dvkssy7lrs4yarwzpgaljyjv"; 40595 40645 }; 40596 40646 recipeFile = fetchurl { 40597 40647 url = "https://raw.githubusercontent.com/milkypostman/melpa/688e2a114073958c413e56e1d117d48db9d16fb8/recipes/kivy-mode"; ··· 40670 40720 kodi-remote = callPackage ({ elnode, fetchFromGitHub, fetchurl, json ? null, let-alist, lib, melpaBuild, request }: 40671 40721 melpaBuild { 40672 40722 pname = "kodi-remote"; 40673 - version = "20170716.1331"; 40723 + version = "20170719.1038"; 40674 40724 src = fetchFromGitHub { 40675 40725 owner = "spiderbit"; 40676 40726 repo = "kodi-remote.el"; 40677 - rev = "700ea18fdc471ce351d7e2a443572746e8b93496"; 40678 - sha256 = "09qznjadbmspm8n56rk3giyxcf79sxfxpimgn3vkdv09la1mdbb2"; 40727 + rev = "9a8472df0c89af867495541f1265cceccabb1eba"; 40728 + sha256 = "0cw1lnclawc19ianjq0yhf1cnmcfcfv81158zjg9mnv4mgl6hzjl"; 40679 40729 }; 40680 40730 recipeFile = fetchurl { 40681 40731 url = "https://raw.githubusercontent.com/milkypostman/melpa/08f06dd824e67250afafdecc25128ba794ca971f/recipes/kodi-remote"; ··· 40838 40888 ksp-cfg-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 40839 40889 melpaBuild { 40840 40890 pname = "ksp-cfg-mode"; 40841 - version = "20160521.1333"; 40891 + version = "20170724.1127"; 40842 40892 src = fetchFromGitHub { 40843 40893 owner = "lashtear"; 40844 40894 repo = "ksp-cfg-mode"; 40845 - rev = "07a957512e66030e1b9f8ac0f259051386acb5b5"; 40846 - sha256 = "1kbmlhfxbp704mky8v69lzqd20bbnqijfnv110yigsy3kxi7hdrr"; 40895 + rev = "713a22ee28688e581ec3ad60228c853b516a14b6"; 40896 + sha256 = "04r8mfsc349wdhx1brlf2l54v4dn58y69fqv3glhvml12962lwy3"; 40847 40897 }; 40848 40898 recipeFile = fetchurl { 40849 40899 url = "https://raw.githubusercontent.com/milkypostman/melpa/d49db5938fa4e3ab1176a955a4788b15c63d9e69/recipes/ksp-cfg-mode"; ··· 41546 41596 license = lib.licenses.free; 41547 41597 }; 41548 41598 }) {}; 41599 + letterbox-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 41600 + melpaBuild { 41601 + pname = "letterbox-mode"; 41602 + version = "20170701.1825"; 41603 + src = fetchFromGitHub { 41604 + owner = "pacha64"; 41605 + repo = "letterbox-mode"; 41606 + rev = "88c67a51d67216d569a28e8423200883fde096dd"; 41607 + sha256 = "1xzzfr525pn2mj7x6xnvccxhls79bfpi5mqhl9ivisnlgj1bvdjw"; 41608 + }; 41609 + recipeFile = fetchurl { 41610 + url = "https://raw.githubusercontent.com/milkypostman/melpa/1512e20962ea354e4311c0a2696a22576a099ba9/recipes/letterbox-mode"; 41611 + sha256 = "117dj5xzf6givwjyqsciz6axhlcj7xbx0zj91ximm81kb5fswgda"; 41612 + name = "letterbox-mode"; 41613 + }; 41614 + packageRequires = [ emacs ]; 41615 + meta = { 41616 + homepage = "https://melpa.org/#/letterbox-mode"; 41617 + license = lib.licenses.free; 41618 + }; 41619 + }) {}; 41549 41620 leuven-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 41550 41621 melpaBuild { 41551 41622 pname = "leuven-theme"; ··· 41931 42002 lispy = callPackage ({ ace-window, emacs, fetchFromGitHub, fetchurl, hydra, iedit, lib, melpaBuild, swiper, zoutline }: 41932 42003 melpaBuild { 41933 42004 pname = "lispy"; 41934 - version = "20170707.949"; 42005 + version = "20170723.712"; 41935 42006 src = fetchFromGitHub { 41936 42007 owner = "abo-abo"; 41937 42008 repo = "lispy"; 41938 - rev = "7cf7bda344f015750e89719209a49f5991bfdffa"; 41939 - sha256 = "1h4129la499b3x3bz72s5c6bc8i7nvyh2kzxg7ff1h8xnwf1rcp1"; 42009 + rev = "76db06252dbc45b70e55886e00f4efda6a100a8f"; 42010 + sha256 = "1b6869ncq5lixndfyjffk3x4fjk5namxr21k3066q3lph4l26my5"; 41940 42011 }; 41941 42012 recipeFile = fetchurl { 41942 42013 url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy"; ··· 41952 42023 lispyscript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 41953 42024 melpaBuild { 41954 42025 pname = "lispyscript-mode"; 41955 - version = "20130828.719"; 42026 + version = "20170720.1217"; 41956 42027 src = fetchFromGitHub { 41957 42028 owner = "krisajenkins"; 41958 42029 repo = "lispyscript-mode"; 41959 - rev = "d0e67ee734919d7ff14c72712e909149cb9604bd"; 41960 - sha256 = "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf"; 42030 + rev = "def632e3335b0c481fbcf5a17f18b0a8c58dd12f"; 42031 + sha256 = "042nndsrv7kyq20v3lahrpr0x89xyayvhx59i0hx6pvkc9wgk5b6"; 41961 42032 }; 41962 42033 recipeFile = fetchurl { 41963 42034 url = "https://raw.githubusercontent.com/milkypostman/melpa/bf912fa20edc9cff12645381b303e37f2de14976/recipes/lispyscript-mode"; ··· 42374 42445 version = "20150910.644"; 42375 42446 src = fetchgit { 42376 42447 url = "http://llvm.org/git/llvm"; 42377 - rev = "325ccf1c3d92533f8bc5c48d741d3aa23a6b2542"; 42378 - sha256 = "05cz8jwkidwkzggifccl51daw6vbcy1fgnlwm27ppy933y306xyy"; 42448 + rev = "5b3e8fe6d9709fb676290385ab3861d291574dd4"; 42449 + sha256 = "0jxxm2191in165bpqxm35shhfvcy8zjqakmvyrql0z4yb0ib2shm"; 42379 42450 }; 42380 42451 recipeFile = fetchurl { 42381 42452 url = "https://raw.githubusercontent.com/milkypostman/melpa/05b7a689463c1dd4d3d00b992b9863d10e93112d/recipes/llvm-mode"; ··· 43038 43109 license = lib.licenses.free; 43039 43110 }; 43040 43111 }) {}; 43112 + mac-pseudo-daemon = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 43113 + melpaBuild { 43114 + pname = "mac-pseudo-daemon"; 43115 + version = "20170722.837"; 43116 + src = fetchFromGitHub { 43117 + owner = "DarwinAwardWinner"; 43118 + repo = "osx-pseudo-daemon"; 43119 + rev = "4d10e327cd8ee5bb7f006d68744be21c7097c1fc"; 43120 + sha256 = "0rjdjddlkaps9cfyc23kcr3cdh08c12jfgkz7ca2j141mm89pyp2"; 43121 + }; 43122 + recipeFile = fetchurl { 43123 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e89752e595c7cec9488e755c30af18f5f6fc1698/recipes/mac-pseudo-daemon"; 43124 + sha256 = "1kf677j6n7ykw8v5xsvbnnhm3hgjicl8fnf6yz9qw4whd0snrhn6"; 43125 + name = "mac-pseudo-daemon"; 43126 + }; 43127 + packageRequires = [ cl-lib ]; 43128 + meta = { 43129 + homepage = "https://melpa.org/#/mac-pseudo-daemon"; 43130 + license = lib.licenses.free; 43131 + }; 43132 + }) {}; 43041 43133 macro-math = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 43042 43134 melpaBuild { 43043 43135 pname = "macro-math"; ··· 43186 43278 magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }: 43187 43279 melpaBuild { 43188 43280 pname = "magit"; 43189 - version = "20170711.1307"; 43281 + version = "20170725.1153"; 43190 43282 src = fetchFromGitHub { 43191 43283 owner = "magit"; 43192 43284 repo = "magit"; 43193 - rev = "33201f76c27d21e91c2137aa5f19db18b2adb2e5"; 43194 - sha256 = "0749yvycd66ddg1wzzyzv8d2z6rxhlrizn83q0gm1zbz296s7rkb"; 43285 + rev = "4f0046012cc4783e7ec31e757e07d338c931a6e3"; 43286 + sha256 = "0lziv48xw065p6iwagraff2477dm3qldjbf6xfd2iqqwm7kfhd48"; 43195 43287 }; 43196 43288 recipeFile = fetchurl { 43197 43289 url = "https://raw.githubusercontent.com/milkypostman/melpa/68bb049b7c4424345f5c1aea82e950a5e47e9e47/recipes/magit"; ··· 43337 43429 license = lib.licenses.free; 43338 43430 }; 43339 43431 }) {}; 43432 + magit-imerge = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: 43433 + melpaBuild { 43434 + pname = "magit-imerge"; 43435 + version = "20170724.2157"; 43436 + src = fetchFromGitHub { 43437 + owner = "magit"; 43438 + repo = "magit-imerge"; 43439 + rev = "b19e5b53553a4d057d944f9a17a2d44f71f20d62"; 43440 + sha256 = "0i8nv28axp4nhh87lh7liimry398mgp038dm0v24b3ly1i4vf0gn"; 43441 + }; 43442 + recipeFile = fetchurl { 43443 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e78a5c27eedfc9b1d79e37e8d333c5d253f31a3c/recipes/magit-imerge"; 43444 + sha256 = "0rycmbsi2s7rjqfpcv794vhkybav7d8ikzdaxai36szxpg9pzhj4"; 43445 + name = "magit-imerge"; 43446 + }; 43447 + packageRequires = [ emacs magit ]; 43448 + meta = { 43449 + homepage = "https://melpa.org/#/magit-imerge"; 43450 + license = lib.licenses.free; 43451 + }; 43452 + }) {}; 43340 43453 magit-lfs = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: 43341 43454 melpaBuild { 43342 43455 pname = "magit-lfs"; ··· 43386 43499 src = fetchFromGitHub { 43387 43500 owner = "magit"; 43388 43501 repo = "magit"; 43389 - rev = "33201f76c27d21e91c2137aa5f19db18b2adb2e5"; 43390 - sha256 = "0749yvycd66ddg1wzzyzv8d2z6rxhlrizn83q0gm1zbz296s7rkb"; 43502 + rev = "4f0046012cc4783e7ec31e757e07d338c931a6e3"; 43503 + sha256 = "0lziv48xw065p6iwagraff2477dm3qldjbf6xfd2iqqwm7kfhd48"; 43391 43504 }; 43392 43505 recipeFile = fetchurl { 43393 43506 url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-popup"; ··· 43466 43579 magit-tbdiff = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: 43467 43580 melpaBuild { 43468 43581 pname = "magit-tbdiff"; 43469 - version = "20170627.2023"; 43582 + version = "20170724.2156"; 43470 43583 src = fetchFromGitHub { 43471 43584 owner = "magit"; 43472 43585 repo = "magit-tbdiff"; 43473 - rev = "c9522a98bcdafc2d8ef3f3beb9ebe05daa42e577"; 43474 - sha256 = "1nv5a8wfrsh41rvgzi1clwjdr9nc0g5rpgcjs1rvgncn7pjd5pi9"; 43586 + rev = "549b27375b2f834eb86eeae0a8ad5475425cafed"; 43587 + sha256 = "1jhl9afkz4lcwdbp7698pl630259n677jfigaywin2nvv0klb1s7"; 43475 43588 }; 43476 43589 recipeFile = fetchurl { 43477 43590 url = "https://raw.githubusercontent.com/milkypostman/melpa/ad97eea866c8732e3adc17551d37a6d1ae511e6c/recipes/magit-tbdiff"; ··· 43673 43786 license = lib.licenses.free; 43674 43787 }; 43675 43788 }) {}; 43676 - makefile-executor = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }: 43789 + makefile-executor = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 43677 43790 melpaBuild { 43678 43791 pname = "makefile-executor"; 43679 - version = "20170626.533"; 43792 + version = "20170721.13"; 43680 43793 src = fetchFromGitHub { 43681 43794 owner = "thiderman"; 43682 43795 repo = "makefile-executor.el"; 43683 - rev = "5502f07a13b7d6860715faf70966721a11506b22"; 43684 - sha256 = "1727i7nmm1i0cc8i2c1912irhb9vvk82xb0ac3ypjzi0s22k2fnf"; 43796 + rev = "105f76bce212bfe511eda191366fef9ee45fd1ab"; 43797 + sha256 = "0p6vk0f3qpcpa7fa4q3r6w5a9d0v67gv4khf5jy9g2nc9bz9ai57"; 43685 43798 }; 43686 43799 recipeFile = fetchurl { 43687 43800 url = "https://raw.githubusercontent.com/milkypostman/melpa/08f8b4d680e4907dbd8ea46a75d98aa0e93c2bb9/recipes/makefile-executor"; 43688 43801 sha256 = "0889rq2a7ks2ynyq91xsa2kpzgd72kzbjxx0b34w8faknpj3b6hi"; 43689 43802 name = "makefile-executor"; 43690 43803 }; 43691 - packageRequires = [ dash emacs f projectile s ]; 43804 + packageRequires = [ dash emacs f s ]; 43692 43805 meta = { 43693 43806 homepage = "https://melpa.org/#/makefile-executor"; 43694 43807 license = lib.licenses.free; ··· 43739 43852 malinka = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, rtags, s }: 43740 43853 melpaBuild { 43741 43854 pname = "malinka"; 43742 - version = "20170628.151"; 43855 + version = "20170723.1635"; 43743 43856 src = fetchFromGitHub { 43744 43857 owner = "LefterisJP"; 43745 43858 repo = "malinka"; 43746 - rev = "b8ec090cb57a78265650586f71f00c4c9e054e27"; 43747 - sha256 = "0wii0ylgdci69r1zjcrk7bh68dl25ry63cfwgdii9x217lmbn9qw"; 43859 + rev = "8072d159dae04f0f1a87b117ff03f9f1eb33f6cb"; 43860 + sha256 = "0s5dcm11nw88j1n4asqpm92z0csjv3jvh06f4qqghfvcym8qv44h"; 43748 43861 }; 43749 43862 recipeFile = fetchurl { 43750 43863 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/malinka"; ··· 44062 44175 markdown-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 44063 44176 melpaBuild { 44064 44177 pname = "markdown-mode"; 44065 - version = "20170712.1703"; 44178 + version = "20170724.2018"; 44066 44179 src = fetchFromGitHub { 44067 44180 owner = "jrblevin"; 44068 44181 repo = "markdown-mode"; 44069 - rev = "ea5549233b3ce1536dae3a4793df79971a3781da"; 44070 - sha256 = "1gm76j4w0fv7194dkhky5pxrrwysi4n0n0v0dnl6wp079irc7kcj"; 44182 + rev = "d29cea8534e80acf174ddb6fca7cfe071d84edd0"; 44183 + sha256 = "0lg1cfk0rk6rx5zighr6xjsqga3mn290kll44hzrmaq4zzbfzfa9"; 44071 44184 }; 44072 44185 recipeFile = fetchurl { 44073 44186 url = "https://raw.githubusercontent.com/milkypostman/melpa/74610ec93d4478e835f8b3b446279efc0c71d644/recipes/markdown-mode"; ··· 44633 44746 meghanada = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, yasnippet }: 44634 44747 melpaBuild { 44635 44748 pname = "meghanada"; 44636 - version = "20170628.2045"; 44749 + version = "20170723.1724"; 44637 44750 src = fetchFromGitHub { 44638 44751 owner = "mopemope"; 44639 44752 repo = "meghanada-emacs"; 44640 - rev = "b507fc0e6fa4b6f1b05c46ecf563ad0af69e263a"; 44641 - sha256 = "0kiib5wchqhxm8rsxp3mfp3zdbgg57gbn8y70j5msa2sxdz26mm7"; 44753 + rev = "af65a0c60bbdda051e0d8ab0b7213249eb6703c5"; 44754 + sha256 = "08sxy81arypdj22bp6pdniwxxbhakay4ndvyvl7a6vjvn38ppzw8"; 44642 44755 }; 44643 44756 recipeFile = fetchurl { 44644 44757 url = "https://raw.githubusercontent.com/milkypostman/melpa/4c75c69b2f00be9a93144f632738272c1e375785/recipes/meghanada"; ··· 44738 44851 memoize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 44739 44852 melpaBuild { 44740 44853 pname = "memoize"; 44741 - version = "20130421.1234"; 44854 + version = "20170720.1802"; 44742 44855 src = fetchFromGitHub { 44743 44856 owner = "skeeto"; 44744 44857 repo = "emacs-memoize"; 44745 - rev = "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75"; 44746 - sha256 = "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw"; 44858 + rev = "636defefa9168f90bce6fc27431352ac7d01a890"; 44859 + sha256 = "04qgnlg4x6va7x364dhj1wbjmz8p5iq2vk36mn9198k2vxmijwzk"; 44747 44860 }; 44748 44861 recipeFile = fetchurl { 44749 44862 url = "https://raw.githubusercontent.com/milkypostman/melpa/6cc9be5bbcff04de5e6d3bb8c47d202fd350989b/recipes/memoize"; ··· 44800 44913 }) {}; 44801 44914 menu-bar-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { 44802 44915 pname = "menu-bar-plus"; 44803 - version = "20170618.1417"; 44916 + version = "20170720.710"; 44804 44917 src = fetchurl { 44805 44918 url = "https://www.emacswiki.org/emacs/download/menu-bar+.el"; 44806 - sha256 = "1ah2yjagpkvwahki81ixviq9pgwnjna8z893xad31rj0qmwr8bzw"; 44919 + sha256 = "0yq995jyfw3a1dj49a4wnavfb29amw575dajps6nbv0g1q0rnwkf"; 44807 44920 name = "menu-bar+.el"; 44808 44921 }; 44809 44922 recipeFile = fetchurl { ··· 44990 45103 src = fetchFromGitHub { 44991 45104 owner = "kazu-yamamoto"; 44992 45105 repo = "Mew"; 44993 - rev = "7ea2baefff668263bf011c72879c2aa88125f2de"; 44994 - sha256 = "1i7i600hj76ggn1jwlj8r60kf157pxj88a4wwp1lasz91wp6msdv"; 45106 + rev = "36b36a154dab22e112cc19675cfd73478f2a5956"; 45107 + sha256 = "01wqa5pf6zjxgsgzqw0pnp278vfd7livfgyqvc24xfqr519k2ifq"; 44995 45108 }; 44996 45109 recipeFile = fetchurl { 44997 45110 url = "https://raw.githubusercontent.com/milkypostman/melpa/362dfc4d0fdb3e5cb39564160de62c3440ce182e/recipes/mew"; ··· 45346 45459 src = fetchFromGitHub { 45347 45460 owner = "arthurnn"; 45348 45461 repo = "minitest-emacs"; 45349 - rev = "e5c82aac7542c5648881bb612fa20fe2b99ffb15"; 45350 - sha256 = "09iqbmmvi28sn5c6iaq6r6q4a4003cy6bb4zihajq0di55zls3aa"; 45462 + rev = "1aadb7865c1dc69c201cecee275751ecec33a182"; 45463 + sha256 = "1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1"; 45351 45464 }; 45352 45465 recipeFile = fetchurl { 45353 45466 url = "https://raw.githubusercontent.com/milkypostman/melpa/41b2e55c0fe48267dc4f55924c782c6f934d8ca4/recipes/minitest"; ··· 45480 45593 license = lib.licenses.free; 45481 45594 }; 45482 45595 }) {}; 45596 + mixed-pitch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 45597 + melpaBuild { 45598 + pname = "mixed-pitch"; 45599 + version = "20170723.955"; 45600 + src = fetchFromGitHub { 45601 + owner = "jabranham"; 45602 + repo = "mixed-pitch"; 45603 + rev = "6a4fbb9c48fc345d4d40228e8b686f6f2e585f8a"; 45604 + sha256 = "14hpcx75rb41fya8i8qk6cg388wgkhhxnj64ywar3pycngm8jwl9"; 45605 + }; 45606 + recipeFile = fetchurl { 45607 + url = "https://raw.githubusercontent.com/milkypostman/melpa/20e85b11dc864500d44b25e36c5e7c4c67c1ebe2/recipes/mixed-pitch"; 45608 + sha256 = "1910x5mssxmzzdmllmbqd3ihx0x8s50qf5dx86wal7aja9rris1z"; 45609 + name = "mixed-pitch"; 45610 + }; 45611 + packageRequires = [ emacs ]; 45612 + meta = { 45613 + homepage = "https://melpa.org/#/mixed-pitch"; 45614 + license = lib.licenses.free; 45615 + }; 45616 + }) {}; 45483 45617 mkdown = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }: 45484 45618 melpaBuild { 45485 45619 pname = "mkdown"; ··· 45944 46078 src = fetchFromGitHub { 45945 46079 owner = "ananthakumaran"; 45946 46080 repo = "monky"; 45947 - rev = "190079ea4d22a4e875a3b2892e58737344cb2b26"; 45948 - sha256 = "01d7mbpkkb36lk6g9gkxlj3b58c23nqfmh7m5qq7xz90kd42316g"; 46081 + rev = "62fc907cb541aef1c253d6bcd60447156e6f064c"; 46082 + sha256 = "1qxykx8ccm4k95ncnzy8pspqgmz29pvqha5dg8al4zq20bms98s5"; 45949 46083 }; 45950 46084 recipeFile = fetchurl { 45951 46085 url = "https://raw.githubusercontent.com/milkypostman/melpa/9b33d35e3004f3cc8a5c17aa1ee07dd21d2d46dc/recipes/monky"; ··· 46003 46137 monokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 46004 46138 melpaBuild { 46005 46139 pname = "monokai-theme"; 46006 - version = "20170705.1152"; 46140 + version = "20170724.740"; 46007 46141 src = fetchFromGitHub { 46008 46142 owner = "oneKelvinSmith"; 46009 46143 repo = "monokai-emacs"; 46010 - rev = "71bcced6da1033822ea52e4ac9f312f9d6b5e062"; 46011 - sha256 = "1kwngvpih9q7wkdv6ayisi2c22xi9jh9jffd4qzc652p26yhmzq6"; 46144 + rev = "b9be135bb01328ee7c1349c3eb81aecd045ea015"; 46145 + sha256 = "01mzz1bdli0x4kgf089iy62d15y2gjxk51hybrlb9naddwl9zz89"; 46012 46146 }; 46013 46147 recipeFile = fetchurl { 46014 46148 url = "https://raw.githubusercontent.com/milkypostman/melpa/2bc9ce95a02fc4bcf7bc7547849c1c15d6db5089/recipes/monokai-theme"; ··· 46503 46637 mtg-deck-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 46504 46638 melpaBuild { 46505 46639 pname = "mtg-deck-mode"; 46506 - version = "20170506.1701"; 46640 + version = "20170722.823"; 46507 46641 src = fetchFromGitHub { 46508 46642 owner = "mattiasb"; 46509 46643 repo = "mtg-deck-mode"; 46510 - rev = "55d493b2e4ad0d931659d1785bcdacc6f16bed07"; 46511 - sha256 = "1fp9q094glk4m2l6hf51ryj1qi4g3q7134hf6qjf707xv2vjcihm"; 46644 + rev = "a598b60c0f9a6a718ec712d6df5591d3cd7f23f3"; 46645 + sha256 = "1pf6d2idq8sljkp7haxxqknvja4cj44i88difzs5wvkmdd2pvlh0"; 46512 46646 }; 46513 46647 recipeFile = fetchurl { 46514 46648 url = "https://raw.githubusercontent.com/milkypostman/melpa/425fa66cffe7bfda71de4ff2b49e951456bdeae1/recipes/mtg-deck-mode"; ··· 46857 46991 mustang-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 46858 46992 melpaBuild { 46859 46993 pname = "mustang-theme"; 46860 - version = "20141017.1623"; 46994 + version = "20170719.246"; 46861 46995 src = fetchFromGitHub { 46862 46996 owner = "mswift42"; 46863 46997 repo = "mustang-theme"; 46864 - rev = "79c3381dd50601775402fe2fddd16fffa9218837"; 46865 - sha256 = "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4"; 46998 + rev = "dda6d04803f1c9b196b620ef564e7768fee15de2"; 46999 + sha256 = "0pg3iay0iinf361v4ay8kizdxs5rm23ir556cwwgz3m3gbs0mgsh"; 46866 47000 }; 46867 47001 recipeFile = fetchurl { 46868 47002 url = "https://raw.githubusercontent.com/milkypostman/melpa/2ed3691edd1cba6abc0c30d2aab732e2ba51bf00/recipes/mustang-theme"; ··· 47983 48117 nimbus-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 47984 48118 melpaBuild { 47985 48119 pname = "nimbus-theme"; 47986 - version = "20170412.758"; 48120 + version = "20170725.415"; 47987 48121 src = fetchFromGitHub { 47988 48122 owner = "m-cat"; 47989 48123 repo = "nimbus-theme"; 47990 - rev = "ce999b8d152b9b15d75f66fe22b84827167c8311"; 47991 - sha256 = "08bfp2xm8ylkmb4rby15f6xx51qppd2g01i3mg2wwb8kvlwz6s4w"; 48124 + rev = "524e0a632b0932f269839c34c08bfd894719a75b"; 48125 + sha256 = "1m4lh6hwzv4hmnh3zlic39df2bwqy5mpfgi8himyg4v3k0bdfskc"; 47992 48126 }; 47993 48127 recipeFile = fetchurl { 47994 48128 url = "https://raw.githubusercontent.com/milkypostman/melpa/fc0e6b456b76e2379c64a86ad844362c58146dc6/recipes/nimbus-theme"; ··· 48050 48184 src = fetchFromGitHub { 48051 48185 owner = "NixOS"; 48052 48186 repo = "nix"; 48053 - rev = "4ec6eb1fdf513d93090d5898762d1186eb6feb0d"; 48054 - sha256 = "01vfj61rgfk0cyh1c4ai0ys0wjnjaqz6hdbg3b1dcfk4b09ydyjx"; 48187 + rev = "c94f3d5575d7af5403274d1e9e2f3c9d72989751"; 48188 + sha256 = "1akfzzm4f07wj6l7za916xv5rnh71pk3vl8dphgradjfqb37bv18"; 48055 48189 }; 48056 48190 recipeFile = fetchurl { 48057 48191 url = "https://raw.githubusercontent.com/milkypostman/melpa/f2b542189cfde5b9b1ebee4625684949b6704ded/recipes/nix-mode"; ··· 48211 48345 license = lib.licenses.free; 48212 48346 }; 48213 48347 }) {}; 48348 + noaa = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: 48349 + melpaBuild { 48350 + pname = "noaa"; 48351 + version = "20170719.1136"; 48352 + src = fetchFromGitHub { 48353 + owner = "thomp"; 48354 + repo = "noaa"; 48355 + rev = "1198eed7cf2960a5b91f8750a08c906c716b53ff"; 48356 + sha256 = "1dvck23akkn6jffc86ddf951ksvq1w2nygji6qk5vkidcx5f4rnd"; 48357 + }; 48358 + recipeFile = fetchurl { 48359 + url = "https://raw.githubusercontent.com/milkypostman/melpa/1272203f85375e50d951451bd5fd3baffd57bbfa/recipes/noaa"; 48360 + sha256 = "11hzpmgapmf6dc5imvj5jvzcy7hfddyz74lqmrq8128i72q1sj0v"; 48361 + name = "noaa"; 48362 + }; 48363 + packageRequires = [ cl-lib emacs request ]; 48364 + meta = { 48365 + homepage = "https://melpa.org/#/noaa"; 48366 + license = lib.licenses.free; 48367 + }; 48368 + }) {}; 48214 48369 noccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 48215 48370 melpaBuild { 48216 48371 pname = "noccur"; ··· 48298 48453 nodejs-repl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 48299 48454 melpaBuild { 48300 48455 pname = "nodejs-repl"; 48301 - version = "20170607.1303"; 48456 + version = "20170722.443"; 48302 48457 src = fetchFromGitHub { 48303 48458 owner = "abicky"; 48304 48459 repo = "nodejs-repl.el"; 48305 - rev = "f72a537700b08e14db28e6bcc1d6244bbeaefca4"; 48306 - sha256 = "1wha680gklq974wl2si3q024qhcdkqgicr6x3qrb9fhfkfr1nbjx"; 48460 + rev = "4a4104dbf2cd314e90f35d200f28bd93c34708d0"; 48461 + sha256 = "1hcvi4nhgfrjalq8nw20kjjpcf4xmjid70qpqdv8dsgfann5i3wl"; 48307 48462 }; 48308 48463 recipeFile = fetchurl { 48309 48464 url = "https://raw.githubusercontent.com/milkypostman/melpa/14f22f97416111fcb02e299ff2b20c44fb75f049/recipes/nodejs-repl"; ··· 48879 49034 ob-browser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 48880 49035 melpaBuild { 48881 49036 pname = "ob-browser"; 48882 - version = "20150101.710"; 49037 + version = "20170720.1218"; 48883 49038 src = fetchFromGitHub { 48884 49039 owner = "krisajenkins"; 48885 49040 repo = "ob-browser"; 48886 - rev = "9271453d28d0912093ab5f91807745ada69ada0c"; 48887 - sha256 = "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813"; 49041 + rev = "a347d9df1c87b7eb660be8723982c7ad2563631a"; 49042 + sha256 = "0q2amf2kh2gkn65132q9nvn87pws5mmnr3wm1ajk23c01kcjf29c"; 48888 49043 }; 48889 49044 recipeFile = fetchurl { 48890 49045 url = "https://raw.githubusercontent.com/milkypostman/melpa/c51529213c15d42a7a7b76771f07dd73c036a51f/recipes/ob-browser"; ··· 48900 49055 ob-coffee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 48901 49056 melpaBuild { 48902 49057 pname = "ob-coffee"; 48903 - version = "20160415.2036"; 49058 + version = "20170725.724"; 48904 49059 src = fetchFromGitHub { 48905 49060 owner = "zweifisch"; 48906 49061 repo = "ob-coffee"; 48907 - rev = "dbfa5827df91ed1cdc5b0f3247da6b93fa632507"; 48908 - sha256 = "01l8zvnfpc1vihnpqj75xlvjkk2hkvxpb1872jdzv2k1na2ajfxm"; 49062 + rev = "7f0b330273e8af7777de87a75fe52a89798e4548"; 49063 + sha256 = "1w3fw3ka46d7vcsdq03l0wlviwsk52asfjiy9zfk4qabhpqwj9mz"; 48909 49064 }; 48910 49065 recipeFile = fetchurl { 48911 49066 url = "https://raw.githubusercontent.com/milkypostman/melpa/e23d7f1d021b07053acb57e2668ece0eaed0f817/recipes/ob-coffee"; ··· 48921 49076 ob-coffeescript = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 48922 49077 melpaBuild { 48923 49078 pname = "ob-coffeescript"; 48924 - version = "20170713.2356"; 49079 + version = "20170719.121"; 48925 49080 src = fetchFromGitHub { 48926 49081 owner = "brantou"; 48927 49082 repo = "ob-coffeescript"; 48928 - rev = "6baabf3104e32ed151b0b9555db903a93a44db54"; 48929 - sha256 = "08mmwy69h7dihi120c9agv8v5c6y6ghc94gmpb0rfxdjim1lrkmq"; 49083 + rev = "219c83f6c44e3612a7718c996365df1de747127d"; 49084 + sha256 = "14va23m0wab1jf6jc5m61y2c0kcmc8dha463vyci1mvs3p1psjr8"; 48930 49085 }; 48931 49086 recipeFile = fetchurl { 48932 49087 url = "https://raw.githubusercontent.com/milkypostman/melpa/ba1a808c77653bac1948d6c44bd1db09301ffeff/recipes/ob-coffeescript"; ··· 48942 49097 ob-cypher = callPackage ({ cypher-mode, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 48943 49098 melpaBuild { 48944 49099 pname = "ob-cypher"; 48945 - version = "20150224.1837"; 49100 + version = "20170725.720"; 48946 49101 src = fetchFromGitHub { 48947 49102 owner = "zweifisch"; 48948 49103 repo = "ob-cypher"; 48949 - rev = "b3511df05f175c1947996802e9e199432ea9ced8"; 48950 - sha256 = "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n"; 49104 + rev = "114bdf6db20ee0ade060bb5df379ddee48ff4f26"; 49105 + sha256 = "142d91jvf7nr7q2sj61njy5hv6ljhsq2qkvkdbkfqj07rgpwfgn3"; 48951 49106 }; 48952 49107 recipeFile = fetchurl { 48953 49108 url = "https://raw.githubusercontent.com/milkypostman/melpa/dc05c833f64e7974cf5a2ad60a053a04267251cb/recipes/ob-cypher"; ··· 49005 49160 ob-elixir = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 49006 49161 melpaBuild { 49007 49162 pname = "ob-elixir"; 49008 - version = "20151021.447"; 49163 + version = "20170725.719"; 49009 49164 src = fetchFromGitHub { 49010 49165 owner = "zweifisch"; 49011 49166 repo = "ob-elixir"; 49012 - rev = "d0e8007efa0b99ab7a6e4cb7160a87d6cb60d210"; 49013 - sha256 = "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk"; 49167 + rev = "8990a8178b2f7bd93504a9ab136622aab6e82e32"; 49168 + sha256 = "19awvfbjsnd5la14ad8cfd20pdwwlf3d2wxmz7kz6x6rf48x38za"; 49014 49169 }; 49015 49170 recipeFile = fetchurl { 49016 49171 url = "https://raw.githubusercontent.com/milkypostman/melpa/287e4758f6f1df0152d68577abd91478c4a3f4ab/recipes/ob-elixir"; ··· 49110 49265 ob-kotlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 49111 49266 melpaBuild { 49112 49267 pname = "ob-kotlin"; 49113 - version = "20170624.2050"; 49268 + version = "20170725.718"; 49114 49269 src = fetchFromGitHub { 49115 49270 owner = "zweifisch"; 49116 49271 repo = "ob-kotlin"; 49117 - rev = "ebbd3fcd52a80c0579e896ad3cbb1484d0a55d00"; 49118 - sha256 = "037msvgvw42nl2wi335q4pfi8bqh3d1a5a6rdvzvpm1vh2fwywab"; 49272 + rev = "3b2f57e9944cfc36f2714dc550db42159904929a"; 49273 + sha256 = "1fgfl4j0jgz56a1w8h2mvnzisz123c1xz7ga380bg1hmy44dbv5j"; 49119 49274 }; 49120 49275 recipeFile = fetchurl { 49121 49276 url = "https://raw.githubusercontent.com/milkypostman/melpa/7aa74d349eb55aafddfc4327b6160ae2da80d689/recipes/ob-kotlin"; ··· 49131 49286 ob-lfe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 49132 49287 melpaBuild { 49133 49288 pname = "ob-lfe"; 49134 - version = "20150701.655"; 49289 + version = "20170725.720"; 49135 49290 src = fetchFromGitHub { 49136 49291 owner = "zweifisch"; 49137 49292 repo = "ob-lfe"; 49138 - rev = "d50a5d76e389501504e060a7005f20b96c895594"; 49139 - sha256 = "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn"; 49293 + rev = "f7780f58e650b4d29dfd834c662b1d354b620a8e"; 49294 + sha256 = "1ricvb2wxsmsd4jr0301pk30mswx41msy07fjgwhsq8dimxzmngp"; 49140 49295 }; 49141 49296 recipeFile = fetchurl { 49142 49297 url = "https://raw.githubusercontent.com/milkypostman/melpa/d595d3b93e6b25ece1cdffc9d1502e8a868eb538/recipes/ob-lfe"; ··· 49173 49328 ob-mongo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 49174 49329 melpaBuild { 49175 49330 pname = "ob-mongo"; 49176 - version = "20161130.152"; 49331 + version = "20170720.1219"; 49177 49332 src = fetchFromGitHub { 49178 49333 owner = "krisajenkins"; 49179 49334 repo = "ob-mongo"; 49180 - rev = "d64a507c2f9e2a1f8062acae50199541fc23be65"; 49181 - sha256 = "0xlddh28z9afqj8j9brcncrbwsyqzmv432zayn9ajjj1vk1avsxg"; 49335 + rev = "371bf19c7c10eab2f86424f8db8ab685997eb5aa"; 49336 + sha256 = "02k4gvh1nqhn0h36h77vvms7xwwak8rdddibbidsrwwspbr4qr1s"; 49182 49337 }; 49183 49338 recipeFile = fetchurl { 49184 49339 url = "https://raw.githubusercontent.com/milkypostman/melpa/e020ea3ef89a3787d498c2f698c82c5073c9ee32/recipes/ob-mongo"; ··· 49446 49601 ob-translate = callPackage ({ fetchFromGitHub, fetchurl, google-translate, lib, melpaBuild, org }: 49447 49602 melpaBuild { 49448 49603 pname = "ob-translate"; 49449 - version = "20160411.124"; 49604 + version = "20170720.1219"; 49450 49605 src = fetchFromGitHub { 49451 49606 owner = "krisajenkins"; 49452 49607 repo = "ob-translate"; 49453 - rev = "bba3bd1e2dbb5c672543129460c2713f78b26120"; 49454 - sha256 = "086z3smcfn5g599967vmxj3akppyqk9d64acm8zzj76zj29xfk1k"; 49608 + rev = "9d9054a51bafd5a29a8135964069b4fa3a80b169"; 49609 + sha256 = "143dq3wp3h1zzk8ihj8yjw9ydqnf48q7y8yxxa0ly7f2v1li84bc"; 49455 49610 }; 49456 49611 recipeFile = fetchurl { 49457 49612 url = "https://raw.githubusercontent.com/milkypostman/melpa/4d89e4006afc51bd44e23f87a1d1ef1140489ab3/recipes/ob-translate"; ··· 49572 49727 obsidian-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 49573 49728 melpaBuild { 49574 49729 pname = "obsidian-theme"; 49575 - version = "20140420.943"; 49730 + version = "20170719.248"; 49576 49731 src = fetchFromGitHub { 49577 49732 owner = "mswift42"; 49578 49733 repo = "obsidian-theme"; 49579 - rev = "0f92ce87245529d5c75d6e5f7862ebbc54bdbc92"; 49580 - sha256 = "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1"; 49734 + rev = "f45efb2ebe9942466c1db6abbe2d0e6847b785ea"; 49735 + sha256 = "1d36mdq8b1q1x84a2nb93bwnzlpdldiafh7q7qfjjm9dsgbij73b"; 49581 49736 }; 49582 49737 recipeFile = fetchurl { 49583 49738 url = "https://raw.githubusercontent.com/milkypostman/melpa/e90227252eb69d3eac81f5a6bd5e3a582d33f335/recipes/obsidian-theme"; ··· 49702 49857 src = fetchFromGitHub { 49703 49858 owner = "OCamlPro"; 49704 49859 repo = "ocp-indent"; 49705 - rev = "d3f250b6029a7afec0d7ddd8770d9c4a7e5b9c7c"; 49706 - sha256 = "1h8w7vcaykhgf4vmrkp1c7y566bzi7av4cfvkp4l01817chrhyaz"; 49860 + rev = "cae4e8c9d0ff0c29e5fc32c8ac0cea539f8f6a13"; 49861 + sha256 = "1wni1xrv6kr001spdz66lza4xajx1w0v3mfbf28x17l4is2108rn"; 49707 49862 }; 49708 49863 recipeFile = fetchurl { 49709 49864 url = "https://raw.githubusercontent.com/milkypostman/melpa/e1af061328b15360ed25a232cc6b8fbce4a7b098/recipes/ocp-indent"; ··· 49992 50147 omnisharp = callPackage ({ auto-complete, cl-lib ? null, csharp-mode, dash, emacs, f, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, popup, s, shut-up }: 49993 50148 melpaBuild { 49994 50149 pname = "omnisharp"; 49995 - version = "20170716.926"; 50150 + version = "20170721.946"; 49996 50151 src = fetchFromGitHub { 49997 50152 owner = "OmniSharp"; 49998 50153 repo = "omnisharp-emacs"; 49999 - rev = "ab4c6bb04cda35510fe751e546b5c0bb4dc3371d"; 50000 - sha256 = "0zkd5hp5xk0wjlv6nqi38dnhrzk7jzcd8546wqfw0my10kb1ycs2"; 50154 + rev = "ad147956b936fd528d26ca88158a8af96ff5827a"; 50155 + sha256 = "04vkhdp3kxba1h5mjd9jblhapb5h2x709ldz4pc078qgyh5g1kpm"; 50001 50156 }; 50002 50157 recipeFile = fetchurl { 50003 50158 url = "https://raw.githubusercontent.com/milkypostman/melpa/e327c483be04de32638b420c5b4e043d12a2cd01/recipes/omnisharp"; ··· 50187 50342 license = lib.licenses.free; 50188 50343 }; 50189 50344 }) {}; 50345 + opencc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 50346 + melpaBuild { 50347 + pname = "opencc"; 50348 + version = "20170722.116"; 50349 + src = fetchFromGitHub { 50350 + owner = "xuchunyang"; 50351 + repo = "emacs-opencc"; 50352 + rev = "8c539f72669ba9a99d8b5198db5ea930897ad1b9"; 50353 + sha256 = "140s88z0rsiylm8g1mzgc50ai38x79j004advin6lil5zcggxq3i"; 50354 + }; 50355 + recipeFile = fetchurl { 50356 + url = "https://raw.githubusercontent.com/milkypostman/melpa/71bc5476b3670a9f5c3d3682c2e7852fc6c5fe60/recipes/opencc"; 50357 + sha256 = "1dd62x0h3imil4g3psndxykp45jf83fm4afxcvvyayj45z099f4r"; 50358 + name = "opencc"; 50359 + }; 50360 + packageRequires = [ emacs ]; 50361 + meta = { 50362 + homepage = "https://melpa.org/#/opencc"; 50363 + license = lib.licenses.free; 50364 + }; 50365 + }) {}; 50190 50366 opencl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 50191 50367 melpaBuild { 50192 50368 pname = "opencl-mode"; ··· 50356 50532 org-alert = callPackage ({ alert, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 50357 50533 melpaBuild { 50358 50534 pname = "org-alert"; 50359 - version = "20170701.1855"; 50535 + version = "20170724.2116"; 50360 50536 src = fetchFromGitHub { 50361 50537 owner = "groksteve"; 50362 50538 repo = "org-alert"; 50363 - rev = "169acc082643b6b793aab17ab7e0de3694e74698"; 50364 - sha256 = "0khk1jyy4vxsfalf27f53d1g9w41qq6i6c9xm670pj6xrf38hxj9"; 50539 + rev = "3b7417ac12f2710e88f8dff538670621064ef8bc"; 50540 + sha256 = "1hyl4b2r7wzdfr2m7x8pgpylia3z15fihn679xdiyc32rzy7k5vk"; 50365 50541 }; 50366 50542 recipeFile = fetchurl { 50367 50543 url = "https://raw.githubusercontent.com/milkypostman/melpa/2976b7f9271bc46679a5774ff5f388b81a9f0cf8/recipes/org-alert"; ··· 50608 50784 org-cliplink = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 50609 50785 melpaBuild { 50610 50786 pname = "org-cliplink"; 50611 - version = "20160819.900"; 50787 + version = "20170724.413"; 50612 50788 src = fetchFromGitHub { 50613 50789 owner = "rexim"; 50614 50790 repo = "org-cliplink"; 50615 - rev = "6c134fdda7bb56cc960af87d06a81a6885f6ab0e"; 50616 - sha256 = "1x339lg1q1aq57jycfxwdmipl05wjb0d1b5psqbn37xvmkm3imgg"; 50791 + rev = "16c2cad9c3bafb71fea70f70c1e584307a6dee01"; 50792 + sha256 = "1k3vcr4fr290pg00gvb9q9wpvq1fk6pzgw95x12fdrig5lp48hih"; 50617 50793 }; 50618 50794 recipeFile = fetchurl { 50619 50795 url = "https://raw.githubusercontent.com/milkypostman/melpa/7ddb13c59441fdf4eb1ba3816e147279dea7d429/recipes/org-cliplink"; ··· 51261 51437 version = "20140107.519"; 51262 51438 src = fetchgit { 51263 51439 url = "git://orgmode.org/org-mode.git"; 51264 - rev = "4214211675bfa5c4dbe1dd5147eeeb9789aeb023"; 51265 - sha256 = "19v9nnlr3h9ci30az6s9fq8jkg7mnhalrifaybph6465yfd0p9iv"; 51440 + rev = "ed6849d18dd7831f3f7917970d2c24e771f75476"; 51441 + sha256 = "0f3c0jj6479b3sxmsa9nd5h5gnl81xnrdhymh2rs7rjgcj58fbws"; 51266 51442 }; 51267 51443 recipeFile = fetchurl { 51268 51444 url = "https://raw.githubusercontent.com/milkypostman/melpa/ee69e5e7b1617a29919d5fcece92414212fdf963/recipes/org-mac-iCal"; ··· 51281 51457 version = "20170105.1723"; 51282 51458 src = fetchgit { 51283 51459 url = "git://orgmode.org/org-mode.git"; 51284 - rev = "4214211675bfa5c4dbe1dd5147eeeb9789aeb023"; 51285 - sha256 = "19v9nnlr3h9ci30az6s9fq8jkg7mnhalrifaybph6465yfd0p9iv"; 51460 + rev = "ed6849d18dd7831f3f7917970d2c24e771f75476"; 51461 + sha256 = "0f3c0jj6479b3sxmsa9nd5h5gnl81xnrdhymh2rs7rjgcj58fbws"; 51286 51462 }; 51287 51463 recipeFile = fetchurl { 51288 51464 url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/org-mac-link"; ··· 51689 51865 org-recent-headings = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: 51690 51866 melpaBuild { 51691 51867 pname = "org-recent-headings"; 51692 - version = "20170703.1625"; 51868 + version = "20170722.1507"; 51693 51869 src = fetchFromGitHub { 51694 51870 owner = "alphapapa"; 51695 51871 repo = "org-recent-headings"; 51696 - rev = "b3d6e3514b57aba7be4de676d1aa92c19e08cd42"; 51697 - sha256 = "0367kkyxnkbgk3w0qvbl9xqxn5mbwpsj7qxf4s0c4jhdw2sk3k20"; 51872 + rev = "56e52d65a03df0458bf79ceea5252f5efe432e3e"; 51873 + sha256 = "10ymgycm7imigbisqnccd0rzvj9ihzmql4ipqj81iqwrssssqwyb"; 51698 51874 }; 51699 51875 recipeFile = fetchurl { 51700 51876 url = "https://raw.githubusercontent.com/milkypostman/melpa/668b79c179cbdb77c4049e7c620433255f63d808/recipes/org-recent-headings"; ··· 51731 51907 org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, ivy, key-chord, lib, melpaBuild, pdf-tools, s }: 51732 51908 melpaBuild { 51733 51909 pname = "org-ref"; 51734 - version = "20170714.808"; 51910 + version = "20170724.1235"; 51735 51911 src = fetchFromGitHub { 51736 51912 owner = "jkitchin"; 51737 51913 repo = "org-ref"; 51738 - rev = "208a7beb0f8d4f7830d1d801776acd99c723e87d"; 51739 - sha256 = "0vf75sk3ik9vfqbr30yn9fn8ab7rc60y5vaiipvx9p6mgh6vhcad"; 51914 + rev = "5a59df1f9474103faed807fbc3448919cf7aa779"; 51915 + sha256 = "15i8kqv5a18i19pcw1kcq4ricmgm1q1qlkfzaawwilfd45ipl6d6"; 51740 51916 }; 51741 51917 recipeFile = fetchurl { 51742 51918 url = "https://raw.githubusercontent.com/milkypostman/melpa/550e4dcef2f74fbd96474561c1cb6c4fd80091fe/recipes/org-ref"; ··· 51893 52069 src = fetchFromGitHub { 51894 52070 owner = "arbox"; 51895 52071 repo = "org-sync"; 51896 - rev = "1e9045e38cd6f12dc0d60e2f7bd2d414a49a5722"; 51897 - sha256 = "14zn0b8qs740ls1069kg2lwm0b9yc4qv525fg8km0hgi0yp8qw7z"; 52072 + rev = "7f02167ef805cd76def274be4d3bd0c6e41d9af8"; 52073 + sha256 = "18v56lrscpzxq5prigd1pjkx990xf57pzf1d2yj6r1grqfz235yy"; 51898 52074 }; 51899 52075 recipeFile = fetchurl { 51900 52076 url = "https://raw.githubusercontent.com/milkypostman/melpa/923ddbaf1a158caac5e666a396a8dc66969d204a/recipes/org-sync"; ··· 52229 52405 src = fetchFromGitHub { 52230 52406 owner = "punchagan"; 52231 52407 repo = "org2blog"; 52232 - rev = "e266ff4296661de520b73e6e18f201fb6378ba05"; 52233 - sha256 = "030fwgwn2xsi6nnnn4k32479hhmbr4n819yarr3n367b29al2461"; 52408 + rev = "026629da7517dad6ffd9e005299874cf2163958e"; 52409 + sha256 = "0dlrlm83i61zk6mvmfspcpakfjv5d7kfazk05f694ijfmqvmvfiw"; 52234 52410 }; 52235 52411 recipeFile = fetchurl { 52236 52412 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org2blog"; ··· 52309 52485 organic-green-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 52310 52486 melpaBuild { 52311 52487 pname = "organic-green-theme"; 52312 - version = "20170125.606"; 52488 + version = "20170720.1111"; 52313 52489 src = fetchFromGitHub { 52314 52490 owner = "kostafey"; 52315 52491 repo = "organic-green-theme"; 52316 - rev = "5f8ce452d16f1acbd18a6963f2c042851968dd8d"; 52317 - sha256 = "0irkcjb6vxb7kf9fr4s4ap6lighhh7h6mwfamcwcacgwfvs4zs7y"; 52492 + rev = "eea6b77b7ee26310fd6741b9affc3f2c43be2820"; 52493 + sha256 = "1zaxvc1j6lfdg8wi80pfjywr6nfr7qc27j4ahzz59giba3bb7azp"; 52318 52494 }; 52319 52495 recipeFile = fetchurl { 52320 52496 url = "https://raw.githubusercontent.com/milkypostman/melpa/9383ef5f0372724b34f4bb9173ef8ccbb773e19e/recipes/organic-green-theme"; ··· 52687 52863 osx-pseudo-daemon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 52688 52864 melpaBuild { 52689 52865 pname = "osx-pseudo-daemon"; 52690 - version = "20131026.1730"; 52866 + version = "20170721.2307"; 52691 52867 src = fetchFromGitHub { 52692 52868 owner = "DarwinAwardWinner"; 52693 52869 repo = "osx-pseudo-daemon"; 52694 - rev = "0b9f330a66b4e8d2ff9bcd57e09b8d304dfb5841"; 52695 - sha256 = "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk"; 52870 + rev = "4d10e327cd8ee5bb7f006d68744be21c7097c1fc"; 52871 + sha256 = "0rjdjddlkaps9cfyc23kcr3cdh08c12jfgkz7ca2j141mm89pyp2"; 52696 52872 }; 52697 52873 recipeFile = fetchurl { 52698 - url = "https://raw.githubusercontent.com/milkypostman/melpa/25a3562788b541e8682500911d7da89d209ab84f/recipes/osx-pseudo-daemon"; 52699 - sha256 = "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8"; 52874 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e89752e595c7cec9488e755c30af18f5f6fc1698/recipes/osx-pseudo-daemon"; 52875 + sha256 = "013h2n27r4rvj8ych5cglj8qprkdxmmmsfi51fggqqvmv7qmr2hw"; 52700 52876 name = "osx-pseudo-daemon"; 52701 52877 }; 52702 52878 packageRequires = []; ··· 52813 52989 outshine = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, outorg }: 52814 52990 melpaBuild { 52815 52991 pname = "outshine"; 52816 - version = "20170414.1217"; 52992 + version = "20170721.521"; 52817 52993 src = fetchFromGitHub { 52818 52994 owner = "alphapapa"; 52819 52995 repo = "outshine"; 52820 - rev = "399ccd20cd65c758bbbd5563bd804d2bccfd0279"; 52821 - sha256 = "03jd3gyqrmrnykcv7p6fv53f32li7gkvd61zbhp483n8a8n3yy5j"; 52996 + rev = "0fdd0cd619d20e71b3157f225bb117a7e21dc9b3"; 52997 + sha256 = "1hhvbfpbixh5s2s4h06f44p4h0kqnmbm9mlqfas3msq5m6m77h2r"; 52822 52998 }; 52823 52999 recipeFile = fetchurl { 52824 53000 url = "https://raw.githubusercontent.com/milkypostman/melpa/8edf78a0ecd2ff8e6e066b80751a31e11a068c3f/recipes/outshine"; ··· 52918 53094 ox-bibtex-chinese = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 52919 53095 melpaBuild { 52920 53096 pname = "ox-bibtex-chinese"; 52921 - version = "20160510.506"; 53097 + version = "20170722.2009"; 52922 53098 src = fetchFromGitHub { 52923 53099 owner = "tumashu"; 52924 53100 repo = "ox-bibtex-chinese"; 52925 - rev = "7771304977f921ff0596b17520289c984116f1a1"; 52926 - sha256 = "1d463d7mdlr65yrq7x16nk9124fw1iphf5g238mlh4abbl6kz241"; 53101 + rev = "2ad2364399229144110db7ef6365ad0461d6a38c"; 53102 + sha256 = "06lp56na1fv87296hhaxgb6gfnzln39p4v245gfxhk0k27589vxj"; 52927 53103 }; 52928 53104 recipeFile = fetchurl { 52929 53105 url = "https://raw.githubusercontent.com/milkypostman/melpa/a679ebaedcb496f915b9338f9d5c003e1389594d/recipes/ox-bibtex-chinese"; ··· 52943 53119 src = fetchFromGitHub { 52944 53120 owner = "jkitchin"; 52945 53121 repo = "scimax"; 52946 - rev = "7ae7bc8bc84ffe0351e23a8a5dc72a18874bee61"; 52947 - sha256 = "0pzpy02rffgydgbdq6khk4y2hxwx744nvi84i95h98hb1ld1ydk2"; 53122 + rev = "7e3b7a8adf92e5166d98c35e54dccb88831e85dd"; 53123 + sha256 = "1lsbgpdbry37wgy9p9zbd60cwfrvs9a2fr8b3mzv9i5w9f1wdjy8"; 52948 53124 }; 52949 53125 recipeFile = fetchurl { 52950 53126 url = "https://raw.githubusercontent.com/milkypostman/melpa/222ccf4480395bda8c582ad5faf8c7902a69370e/recipes/ox-clip"; ··· 53753 53929 license = lib.licenses.free; 53754 53930 }; 53755 53931 }) {}; 53932 + pamparam = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, lib, lispy, melpaBuild, worf }: 53933 + melpaBuild { 53934 + pname = "pamparam"; 53935 + version = "20170721.1905"; 53936 + src = fetchFromGitHub { 53937 + owner = "abo-abo"; 53938 + repo = "pamparam"; 53939 + rev = "0740cf4a5b5da561d5dbab96a6a34e2db28d24ed"; 53940 + sha256 = "1h52zig64g2wdsvx1g590bl62zfg8l4bikfi6y25zx1gic9cifnk"; 53941 + }; 53942 + recipeFile = fetchurl { 53943 + url = "https://raw.githubusercontent.com/milkypostman/melpa/067b5e3594641447478db8c1ffcb36d63018b1b2/recipes/pamparam"; 53944 + sha256 = "0xwz1il9ldkfprin3rva407m4wm7c48blwfn4mgaxmqafy4p0g9f"; 53945 + name = "pamparam"; 53946 + }; 53947 + packageRequires = [ emacs hydra lispy worf ]; 53948 + meta = { 53949 + homepage = "https://melpa.org/#/pamparam"; 53950 + license = lib.licenses.free; 53951 + }; 53952 + }) {}; 53756 53953 pandoc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 53757 53954 melpaBuild { 53758 53955 pname = "pandoc"; ··· 53777 53974 pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }: 53778 53975 melpaBuild { 53779 53976 pname = "pandoc-mode"; 53780 - version = "20170503.606"; 53977 + version = "20170720.127"; 53781 53978 src = fetchFromGitHub { 53782 53979 owner = "joostkremers"; 53783 53980 repo = "pandoc-mode"; 53784 - rev = "72aa0c2abad0ecca689adcf93dd4e9109c9fc737"; 53785 - sha256 = "0hrnd46anfq8vzanax7qzq5fl9kdw26aprally9kjqbr5xdjik2h"; 53981 + rev = "58f893d54c0916ad832097a579288ef8ce405da5"; 53982 + sha256 = "03nh5ivcwknnsw9khz196n6s3pa1392jk7pm2mr4yjjs24izyz1i"; 53786 53983 }; 53787 53984 recipeFile = fetchurl { 53788 53985 url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/pandoc-mode"; ··· 54111 54308 pass = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store }: 54112 54309 melpaBuild { 54113 54310 pname = "pass"; 54114 - version = "20170717.145"; 54311 + version = "20170725.34"; 54115 54312 src = fetchFromGitHub { 54116 54313 owner = "NicolasPetton"; 54117 54314 repo = "pass"; 54118 - rev = "888bd9593f9239f28adab6d93fcdeec69bdf63ed"; 54119 - sha256 = "0z1j3cfsh8cksv6l5fbzp6f72d5874kmg7i6agmab9ixjvgg0izc"; 54315 + rev = "42bfe9f471f19c9d801f15ffde658ea3f4655ac8"; 54316 + sha256 = "12hajddf6bkg5fsi1w31rj1wrg0yr8idp7c1jn00824h0la2maf0"; 54120 54317 }; 54121 54318 recipeFile = fetchurl { 54122 54319 url = "https://raw.githubusercontent.com/milkypostman/melpa/428c2d53db69bed8938ec3486dfcf7fc048cd4e8/recipes/pass"; ··· 54697 54894 pdf-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, tablist }: 54698 54895 melpaBuild { 54699 54896 pname = "pdf-tools"; 54700 - version = "20170417.150"; 54897 + version = "20170721.718"; 54701 54898 src = fetchFromGitHub { 54702 54899 owner = "politza"; 54703 54900 repo = "pdf-tools"; 54704 - rev = "f314597b2e391f6564e4f9e5cc3af0b4b53f19e9"; 54705 - sha256 = "15m7x61m63zxz2jdz52brm9qjzmx1gy24rq8ilmc4drmb0vfmrr2"; 54901 + rev = "804d9929ce354c60d91ab756735ffff8a6f30688"; 54902 + sha256 = "1qfv9zmqw3s3j94kprr4g73cq0b9cqw0bihbm1pbw6pybivdry09"; 54706 54903 }; 54707 54904 recipeFile = fetchurl { 54708 54905 url = "https://raw.githubusercontent.com/milkypostman/melpa/8e3d53913f4e8a618e125fa9c1efb3787fbf002d/recipes/pdf-tools"; ··· 55494 55691 php-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 55495 55692 melpaBuild { 55496 55693 pname = "php-mode"; 55497 - version = "20170621.2242"; 55694 + version = "20170722.1205"; 55498 55695 src = fetchFromGitHub { 55499 55696 owner = "ejmr"; 55500 55697 repo = "php-mode"; 55501 - rev = "3a9076b6f6146326c1314c580acddce9cbb5a290"; 55502 - sha256 = "11ily856xk6i00hqfvfxwjch77sigb5lym10dj0zj689gp8jd0wc"; 55698 + rev = "1728f36aaa7b44993495476a06e9c8be0140c51c"; 55699 + sha256 = "1pk3lxg2fa7skz17qygjhvwbvcl34bs2as728i3nid6ghw71fk5s"; 55503 55700 }; 55504 55701 recipeFile = fetchurl { 55505 55702 url = "https://raw.githubusercontent.com/milkypostman/melpa/7cdbc35fee67b87b87ec72aa00e6dca77aef17c4/recipes/php-mode"; ··· 55662 55859 picpocket = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 55663 55860 melpaBuild { 55664 55861 pname = "picpocket"; 55665 - version = "20170305.259"; 55862 + version = "20170723.509"; 55666 55863 src = fetchFromGitHub { 55667 55864 owner = "johanclaesson"; 55668 55865 repo = "picpocket"; 55669 - rev = "3404de0e6ed1b46f3b873472e34ea9342445f43e"; 55670 - sha256 = "044p26x76i5x0921f8b8zl51k0wfkygdwdiwyhqmmnxzb54qj74l"; 55866 + rev = "ab40afe0e13dff43518233f16e889b44a8a3819b"; 55867 + sha256 = "0snq5wdmdzpbxslixi1vzyi0sccqy9k7m3hwxn540352rsz8zxcz"; 55671 55868 }; 55672 55869 recipeFile = fetchurl { 55673 55870 url = "https://raw.githubusercontent.com/milkypostman/melpa/e88dc89311d4bfe82dc15f22b84c4b76abb3fd69/recipes/picpocket"; ··· 55872 56069 pivotal-tracker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 55873 56070 melpaBuild { 55874 56071 pname = "pivotal-tracker"; 55875 - version = "20161028.618"; 56072 + version = "20170720.816"; 55876 56073 src = fetchFromGitHub { 55877 56074 owner = "jxa"; 55878 56075 repo = "pivotal-tracker"; 55879 - rev = "87b4e3cce343519b54a8ff4fef5d7b7745e27c3c"; 55880 - sha256 = "08rj1nimxrz5g1gj231f9d6p8al1svvwv1782h8hyxi87fzmw9sw"; 56076 + rev = "0311d117037c74512149a4a78b269c2e46d7dfba"; 56077 + sha256 = "0g3xzh8jr9lbg6h2hk81cdyxkxx3l79qhxrp4g34rc0dml79rzf9"; 55881 56078 }; 55882 56079 recipeFile = fetchurl { 55883 56080 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pivotal-tracker"; ··· 57515 57712 projectile = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: 57516 57713 melpaBuild { 57517 57714 pname = "projectile"; 57518 - version = "20170416.148"; 57715 + version = "20170725.1304"; 57519 57716 src = fetchFromGitHub { 57520 57717 owner = "bbatsov"; 57521 57718 repo = "projectile"; 57522 - rev = "56e262dd3b5998d0dc6a590d06bc11058839c588"; 57523 - sha256 = "0sq0w5fi4zrxccabnh78vjb7drw05ay2lpw7wvnrfv97xkywzr4z"; 57719 + rev = "63dc5bcf0803ef81bc13ca499e60c61b8fea2fd6"; 57720 + sha256 = "0lxs3k93jw9whbymbg3swk9c6gbix93vw7mqx9n84qdvijm3zrr4"; 57524 57721 }; 57525 57722 recipeFile = fetchurl { 57526 57723 url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/projectile"; ··· 57725 57922 projector = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: 57726 57923 melpaBuild { 57727 57924 pname = "projector"; 57728 - version = "20170410.905"; 57925 + version = "20170717.1151"; 57729 57926 src = fetchFromGitHub { 57730 57927 owner = "waymondo"; 57731 57928 repo = "projector.el"; 57732 - rev = "bd9e5b5c4727c0facd9d45a4b6a46ffddaf6a131"; 57733 - sha256 = "1fx5wg5lnb59z0y25bmysf6a2wld333iihrb9jhcab4hicdqsh9s"; 57929 + rev = "ec63167ee21d537f410c0971f82e2ffdfd6fa008"; 57930 + sha256 = "155wnks7i73c3kvgysnfy0379d1fp78qv2b8lhsaxwx7jh356dbm"; 57734 57931 }; 57735 57932 recipeFile = fetchurl { 57736 57933 url = "https://raw.githubusercontent.com/milkypostman/melpa/420ffea4549f59677a16c1ee89c77b866487e302/recipes/projector"; ··· 57939 58136 src = fetchFromGitHub { 57940 58137 owner = "google"; 57941 58138 repo = "protobuf"; 57942 - rev = "c78dbd7c895b8c80cd2f2401d73acf890edf82c6"; 57943 - sha256 = "136l13mq0yki95lra6bvzzq602vhp48nnvw741gf7x34rd4k5kwg"; 58139 + rev = "bb8664419b7d0dd4a94cc1242a2d77bf5e8f567b"; 58140 + sha256 = "1cca2vkpqysnswqawx4rgf7zsmnwvg13irs3jf6ipcld8wsnb17q"; 57944 58141 }; 57945 58142 recipeFile = fetchurl { 57946 58143 url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode"; ··· 58197 58394 puppet-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: 58198 58395 melpaBuild { 58199 58396 pname = "puppet-mode"; 58200 - version = "20170614.2215"; 58397 + version = "20170719.752"; 58201 58398 src = fetchFromGitHub { 58202 58399 owner = "voxpupuli"; 58203 58400 repo = "puppet-mode"; 58204 - rev = "3ffc2de8416b4ea389d5800a4a05d0885d9a8608"; 58205 - sha256 = "0dlss3brh4654avq361yma4xbxsv6q5s8qlhp7v470ix88wx4v8r"; 58401 + rev = "2fdd31ff1ae1ab23eeb08d5af936b1bb9b3e51b6"; 58402 + sha256 = "017f899qg3pdm18mb3i7v3x2j4gpqcinscxds8jwjq2ll5d5qf2j"; 58206 58403 }; 58207 58404 recipeFile = fetchurl { 58208 58405 url = "https://raw.githubusercontent.com/milkypostman/melpa/1de94f0ab39ab18dfd0b050e337f502d894fb3ad/recipes/puppet-mode"; ··· 58703 58900 src = fetchFromGitHub { 58704 58901 owner = "PyCQA"; 58705 58902 repo = "pylint"; 58706 - rev = "9f7797ae15bd5e4e5c4ad320afcc15eeb4cdae82"; 58707 - sha256 = "0p3zmaq0vk5z4ia2i54rjdw4a1d4s9ljb28l48xbb82jmjlgniw7"; 58903 + rev = "d41e49a18817997106ed9f1df20651e1f438222b"; 58904 + sha256 = "0ygj6zzz4dzfwch7hgvmkm83y6rr5jhy789d7qnkdsjyfshkx5dp"; 58708 58905 }; 58709 58906 recipeFile = fetchurl { 58710 58907 url = "https://raw.githubusercontent.com/milkypostman/melpa/a073c91d6f4d31b82f6bfee785044c4e3ae96d3f/recipes/pylint"; ··· 58846 59043 python-mode = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: 58847 59044 melpaBuild { 58848 59045 pname = "python-mode"; 58849 - version = "20170716.1133"; 59046 + version = "20170723.1213"; 58850 59047 src = fetchFromGitLab { 58851 59048 owner = "python-mode-devs"; 58852 59049 repo = "python-mode"; 58853 - rev = "4846252fb81c309eb5f7a6aa2dcc04804412c684"; 58854 - sha256 = "0zcy7afvyzqmgsn88v5m73bkglnfavhqb4b7fviz355i3waiyfx5"; 59050 + rev = "3ad3e8e0f98d90c634ff81f50776e70e75a98034"; 59051 + sha256 = "0al6jvjrxcqrqkmx1akaqb2ill0crjawc2k7b43aysch3fx7caf2"; 58855 59052 }; 58856 59053 recipeFile = fetchurl { 58857 59054 url = "https://raw.githubusercontent.com/milkypostman/melpa/82861e1ab114451af5e1106d53195afd3605448a/recipes/python-mode"; ··· 59077 59274 quelpa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, package-build }: 59078 59275 melpaBuild { 59079 59276 pname = "quelpa"; 59080 - version = "20170620.2318"; 59277 + version = "20170717.2225"; 59081 59278 src = fetchFromGitHub { 59082 59279 owner = "quelpa"; 59083 59280 repo = "quelpa"; 59084 - rev = "dbb57da3eba3b5a04ab9b5184634ec139d68ddcd"; 59085 - sha256 = "1jszkgf9rkkjscfaijbz84kpbpw46p15zvlvfmvil30gs5vp2pk4"; 59281 + rev = "eb93cf1ca9d1298a92c680a736dedbd1c3cbbb5a"; 59282 + sha256 = "13wr46qwmi4dnx3i2py0sjhichl5kjai64jcywymp1mc52f6nyl0"; 59086 59283 }; 59087 59284 recipeFile = fetchurl { 59088 59285 url = "https://raw.githubusercontent.com/milkypostman/melpa/7dc3ba4f3efbf66142bf946d9cd31ff0c7a0b60e/recipes/quelpa"; ··· 59560 59757 ranger = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 59561 59758 melpaBuild { 59562 59759 pname = "ranger"; 59563 - version = "20170522.2331"; 59760 + version = "20170703.2135"; 59564 59761 src = fetchFromGitHub { 59565 59762 owner = "ralesi"; 59566 59763 repo = "ranger.el"; 59567 - rev = "e371cdc2d6065099fe7c68583597b1d0abea792b"; 59568 - sha256 = "1c0jlykxkl46qimr60crac4j7nvzr0jixjiv4m6zzk93pn12y3g1"; 59764 + rev = "905bd8e17c48fc270e66b846e8ada81462623e81"; 59765 + sha256 = "1h299kk8w162f9k588a4c4ikl3276y47si81p7jbda2fhf9s5lck"; 59569 59766 }; 59570 59767 recipeFile = fetchurl { 59571 59768 url = "https://raw.githubusercontent.com/milkypostman/melpa/0207e754f424823fb48e9c065c3ed9112a0c445b/recipes/ranger"; ··· 60318 60515 redprl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 60319 60516 melpaBuild { 60320 60517 pname = "redprl"; 60321 - version = "20170712.903"; 60518 + version = "20170719.754"; 60322 60519 src = fetchFromGitHub { 60323 60520 owner = "RedPRL"; 60324 60521 repo = "sml-redprl"; 60325 - rev = "a2f8c5612a055882db5c01b8160c0ae1bd44f1e1"; 60326 - sha256 = "0glnribgqg6hg3ghb5saf26hwydmsg51aq45wj8mdf5dfncimqq8"; 60522 + rev = "bb149c75cb00cedbabc12dd497dce0ab5a7f5072"; 60523 + sha256 = "1m18hnb1hnm6rr5bi2laq9i8djkm73sxp83mawbybydq5j0446bm"; 60327 60524 }; 60328 60525 recipeFile = fetchurl { 60329 60526 url = "https://raw.githubusercontent.com/milkypostman/melpa/06e7371d703ffdc5b6ea555f2ed289e57e71e377/recipes/redprl"; ··· 60635 60832 src = fetchFromGitHub { 60636 60833 owner = "anler"; 60637 60834 repo = "remember-last-theme"; 60638 - rev = "57e8e2a475ea89316dbb5c4d2ea047f56a2cbcdf"; 60639 - sha256 = "0sb110rb6pnjnvyqn0kji19bhbn8mk4x32yps00aq2g2v9pc1jzr"; 60835 + rev = "0973f1aa6b96355fa376fffe8b45733b6e963c51"; 60836 + sha256 = "11kcqpw1wrhghbw2dx3pqndmq9a1rbqir3k71ggaj1x2y2arzvm7"; 60640 60837 }; 60641 60838 recipeFile = fetchurl { 60642 60839 url = "https://raw.githubusercontent.com/milkypostman/melpa/26edcdddaf8dc8c9a18d6b007e0d49d04fe4ccca/recipes/remember-last-theme"; ··· 61047 61244 reverse-im = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 61048 61245 melpaBuild { 61049 61246 pname = "reverse-im"; 61050 - version = "20170623.640"; 61247 + version = "20170721.940"; 61051 61248 src = fetchFromGitHub { 61052 61249 owner = "a13"; 61053 61250 repo = "reverse-im.el"; 61054 - rev = "da6a4d2fdc1019e7fcd050db6c5344fdad1e2286"; 61055 - sha256 = "1vsfxy4scknn5142mn4v1hkj2qbphmwdj175prd1aj1gk8cbzw9v"; 61251 + rev = "63fb1edee017177c44f8b663a707201b3dd78345"; 61252 + sha256 = "1ha4ldfcnw57rg15mbxspymgs6b2b50f6s0fcb6d7k9xai5idmnp"; 61056 61253 }; 61057 61254 recipeFile = fetchurl { 61058 61255 url = "https://raw.githubusercontent.com/milkypostman/melpa/f282ebbed8ad01b63b0e708ab273db51bf65fdbb/recipes/reverse-im"; ··· 61210 61407 license = lib.licenses.free; 61211 61408 }; 61212 61409 }) {}; 61410 + rib-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 61411 + melpaBuild { 61412 + pname = "rib-mode"; 61413 + version = "20170722.356"; 61414 + src = fetchFromGitHub { 61415 + owner = "blezek"; 61416 + repo = "rib-mode"; 61417 + rev = "4172e902fd66f235184c0eb6db7fd4a73dbd0866"; 61418 + sha256 = "0s9dyqv4yh0zxngay951g98g07029h51m4r2fc7ib2arw6srfram"; 61419 + }; 61420 + recipeFile = fetchurl { 61421 + url = "https://raw.githubusercontent.com/milkypostman/melpa/c38c18f3eb75d559752fcd9956464fef890be728/recipes/rib-mode"; 61422 + sha256 = "0qgbzrwbbgg4mzjb7yw85qs83b6hpldazip1cigywr46w7f81587"; 61423 + name = "rib-mode"; 61424 + }; 61425 + packageRequires = [ emacs ]; 61426 + meta = { 61427 + homepage = "https://melpa.org/#/rib-mode"; 61428 + license = lib.licenses.free; 61429 + }; 61430 + }) {}; 61213 61431 rich-minority = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 61214 61432 melpaBuild { 61215 61433 pname = "rich-minority"; ··· 61574 61792 src = fetchFromGitHub { 61575 61793 owner = "Andersbakken"; 61576 61794 repo = "rtags"; 61577 - rev = "65c8f03ff0112ce5c5e11aff6867ad0eb9019e63"; 61578 - sha256 = "0xlacwjmvx5xd8m7yi8l8mqi0lqs2gr2hmjag2frvmxcn4cpb4gc"; 61795 + rev = "afbf59630203624e0a5eecee52a3296295e6d620"; 61796 + sha256 = "0bygl7ahwsz6xmw0fif7gqnpzbk8cx7hpg4gp96f8inicq849z26"; 61579 61797 }; 61580 61798 recipeFile = fetchurl { 61581 61799 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/rtags"; ··· 61636 61854 version = "20161115.2259"; 61637 61855 src = fetchsvn { 61638 61856 url = "https://svn.ruby-lang.org/repos/ruby/trunk/misc/"; 61639 - rev = "59350"; 61857 + rev = "59417"; 61640 61858 sha256 = "18fkx4a8jarznczv3h36663dqprwh6pyf76s3f210cqqy8c5y5yi"; 61641 61859 }; 61642 61860 recipeFile = fetchurl { ··· 61711 61929 license = lib.licenses.free; 61712 61930 }; 61713 61931 }) {}; 61714 - ruby-electric = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: 61932 + ruby-electric = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 61715 61933 melpaBuild { 61716 61934 pname = "ruby-electric"; 61717 - version = "20150424.752"; 61718 - src = fetchsvn { 61719 - url = "https://svn.ruby-lang.org/repos/ruby/trunk/misc/"; 61720 - rev = "59350"; 61721 - sha256 = "18fkx4a8jarznczv3h36663dqprwh6pyf76s3f210cqqy8c5y5yi"; 61935 + version = "20150713.752"; 61936 + src = fetchFromGitHub { 61937 + owner = "knu"; 61938 + repo = "ruby-electric.el"; 61939 + rev = "35d04e90ef243c7090edf9aaad0142a5a77f0ebd"; 61940 + sha256 = "0ksbm6cbqz7dx6qyq8nlpbx41b153jaww4fwnfwbx9rz993wjjkg"; 61722 61941 }; 61723 61942 recipeFile = fetchurl { 61724 - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/ruby-electric"; 61725 - sha256 = "0abi1hqjscz2wj4n5habjb6rksxkhwv0cvpw68irkj4fas92qhk8"; 61943 + url = "https://raw.githubusercontent.com/milkypostman/melpa/5fd5fa797a813e02a6433ecbe2bca1270a383753/recipes/ruby-electric"; 61944 + sha256 = "02xskivi917l8xyhrij084dmzwjq3knjcn65l2iwz34s767fbwl2"; 61726 61945 name = "ruby-electric"; 61727 61946 }; 61728 61947 packageRequires = []; ··· 61902 62121 rufo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 61903 62122 melpaBuild { 61904 62123 pname = "rufo"; 61905 - version = "20170712.824"; 62124 + version = "20170718.716"; 61906 62125 src = fetchFromGitHub { 61907 62126 owner = "danielma"; 61908 62127 repo = "rufo.el"; 61909 - rev = "e827b44c8093715a204ed0e4a64ade34441f9355"; 61910 - sha256 = "14qf3napgx8vycr0igrr8534yymgaqh2cb09iz7gbf65cmk86pq8"; 62128 + rev = "85a6d80fb05fef396a8029b8f944c92a53faf8fe"; 62129 + sha256 = "11klircrdc9z9jfksd6rjgwbb775mziss67mw74673b8iva8n1y7"; 61911 62130 }; 61912 62131 recipeFile = fetchurl { 61913 62132 url = "https://raw.githubusercontent.com/milkypostman/melpa/123b89e06a44ef45150ca7243afc41302dfb6c6e/recipes/rufo"; ··· 61986 62205 rust-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 61987 62206 melpaBuild { 61988 62207 pname = "rust-mode"; 61989 - version = "20170712.1214"; 62208 + version = "20170719.1308"; 61990 62209 src = fetchFromGitHub { 61991 62210 owner = "rust-lang"; 61992 62211 repo = "rust-mode"; 61993 - rev = "60a1f36f4111e825d20d9c3aed561981c470806a"; 61994 - sha256 = "0p09j3y90i0ninyr3alxra17r09ps4sj9klww638l9csk2cgw80f"; 62212 + rev = "0985f5fde747f64b3fcff2661226aa4dad286e04"; 62213 + sha256 = "10mvrdv8cbdsynn4kxv06xm4r6syarmi858pdj6r2bysbp4w6cs8"; 61995 62214 }; 61996 62215 recipeFile = fetchurl { 61997 62216 url = "https://raw.githubusercontent.com/milkypostman/melpa/8f6e5d990d699d571dccbdeb13327b33389bb113/recipes/rust-mode"; ··· 62364 62583 sbt-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 62365 62584 melpaBuild { 62366 62585 pname = "sbt-mode"; 62367 - version = "20170708.1211"; 62586 + version = "20170725.1332"; 62368 62587 src = fetchFromGitHub { 62369 62588 owner = "ensime"; 62370 62589 repo = "emacs-sbt-mode"; 62371 - rev = "cee28b5e6121e6c85bb647b709c7a8c9e3883700"; 62372 - sha256 = "1f5xkcr9kj5nwqh77hfxbs2i9zzsikbksa56lg9vw67pc78rs7vi"; 62590 + rev = "3e8a75a5d48724ecd6c4171107e1b581100dfce1"; 62591 + sha256 = "14ng4xxld7c3x92bmcww74x724h4c466jd70wrl7hpjhg1z8xhn2"; 62373 62592 }; 62374 62593 recipeFile = fetchurl { 62375 62594 url = "https://raw.githubusercontent.com/milkypostman/melpa/364abdc3829fc12e19f00b534565227dbc30baad/recipes/sbt-mode"; ··· 63030 63249 sekka = callPackage ({ cl-lib ? null, concurrent, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: 63031 63250 melpaBuild { 63032 63251 pname = "sekka"; 63033 - version = "20170618.500"; 63252 + version = "20170722.434"; 63034 63253 src = fetchFromGitHub { 63035 63254 owner = "kiyoka"; 63036 63255 repo = "sekka"; 63037 - rev = "282bb04ed524ceff2a7a13cee118ec6df55b2323"; 63038 - sha256 = "1g15lrx3ik6539vc5f8v3x0va6k02zz5l13jnqlzs1fl4inxk35v"; 63256 + rev = "b9b2ba5aca378ad12cb9e0f0ac537d695bd39937"; 63257 + sha256 = "1karh4pa190xmjbw1ai2f594i8nf9qa0lxybn3syif7r50ciym3c"; 63039 63258 }; 63040 63259 recipeFile = fetchurl { 63041 63260 url = "https://raw.githubusercontent.com/milkypostman/melpa/350bbb5761b5ba69aeb4acf6d7cdf2256dba95a6/recipes/sekka"; ··· 64473 64692 skewer-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, simple-httpd }: 64474 64693 melpaBuild { 64475 64694 pname = "skewer-mode"; 64476 - version = "20170709.939"; 64695 + version = "20170722.1745"; 64477 64696 src = fetchFromGitHub { 64478 64697 owner = "skeeto"; 64479 64698 repo = "skewer-mode"; 64480 - rev = "51f3bbeafea6701de78190a395f6376a9974f1e5"; 64481 - sha256 = "0k8yc75d7hly4qiqxvg027cwmcck63nmbyr75qyjq8kc0vk0x5mr"; 64699 + rev = "cf8115d4e1ab5c2f990fb6d02a6c75d7d6b82a9e"; 64700 + sha256 = "1m0xbjbvfmy986isgxjm3kj4rzi6vsy4b1hlrbh4kpbjfj3p9sz0"; 64482 64701 }; 64483 64702 recipeFile = fetchurl { 64484 64703 url = "https://raw.githubusercontent.com/milkypostman/melpa/10fba4f7935c78c4fc5eee7dbb161173dea884ba/recipes/skewer-mode"; ··· 64557 64776 slack = callPackage ({ alert, circe, emojify, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2, request, websocket }: 64558 64777 melpaBuild { 64559 64778 pname = "slack"; 64560 - version = "20170712.2328"; 64779 + version = "20170725.133"; 64561 64780 src = fetchFromGitHub { 64562 64781 owner = "yuya373"; 64563 64782 repo = "emacs-slack"; 64564 - rev = "f89362f31d8c1ee752bfd9d3cc8a6b5766c94bd6"; 64565 - sha256 = "0b2j0vvsm6psljdkyybjh5ki6drhvq98xwakifk0li220rsi3lkp"; 64783 + rev = "2c756be071b8a8e69022daf606b849f53f211805"; 64784 + sha256 = "003i3snyjh47ckjny15g9isc5k0zhng2dvwmjxazfm4q3ka7p6ir"; 64566 64785 }; 64567 64786 recipeFile = fetchurl { 64568 64787 url = "https://raw.githubusercontent.com/milkypostman/melpa/f0258cc41de809b67811a5dde3d475c429df0695/recipes/slack"; ··· 64683 64902 slime-docker = callPackage ({ cl-lib ? null, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: 64684 64903 melpaBuild { 64685 64904 pname = "slime-docker"; 64686 - version = "20160817.2344"; 64905 + version = "20170718.1157"; 64687 64906 src = fetchFromGitHub { 64688 64907 owner = "daewok"; 64689 64908 repo = "slime-docker"; 64690 - rev = "f90fc274c2f764a5962a3cbcf0ea00622ee5bfe6"; 64691 - sha256 = "0wknygb8gnr49xc5wyyalgs97zk0qj33wwcw1kcxah4nmvzgqg7f"; 64909 + rev = "dc41f7c33de497bc622f037f33ea2a1ecfa1069f"; 64910 + sha256 = "169vy9wjkf0vzqgdbm30rssl82xl2n73hipnaidncbw9sd8cpx1y"; 64692 64911 }; 64693 64912 recipeFile = fetchurl { 64694 64913 url = "https://raw.githubusercontent.com/milkypostman/melpa/15ec3f7208287161571c8fc3b29369ceabb44e5f/recipes/slime-docker"; ··· 65331 65550 smartparens = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 65332 65551 melpaBuild { 65333 65552 pname = "smartparens"; 65334 - version = "20170716.1328"; 65553 + version = "20170723.1205"; 65335 65554 src = fetchFromGitHub { 65336 65555 owner = "Fuco1"; 65337 65556 repo = "smartparens"; 65338 - rev = "d4445621b88f36a391fc8bfabbed4db08dc88f33"; 65339 - sha256 = "0rsnc5b49n3s6k9a1vr1by1iq1ns9ba2l04k3siqr0hjr8jjwa7b"; 65557 + rev = "25508600c0f715c9cba68b1902b537386b27b97c"; 65558 + sha256 = "1r61pnf74x6faglyixfchzhpx8gp7k8aa1yq00vxpplj4flwyvpz"; 65340 65559 }; 65341 65560 recipeFile = fetchurl { 65342 65561 url = "https://raw.githubusercontent.com/milkypostman/melpa/bd98f85461ef7134502d4f2aa8ce1bc764f3bda3/recipes/smartparens"; ··· 65855 66074 solaire-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 65856 66075 melpaBuild { 65857 66076 pname = "solaire-mode"; 65858 - version = "20170610.442"; 66077 + version = "20170718.1048"; 65859 66078 src = fetchFromGitHub { 65860 66079 owner = "hlissner"; 65861 66080 repo = "emacs-solaire-mode"; 65862 - rev = "d2744f8d2d8e1af5d5784021bcb8772e163be800"; 65863 - sha256 = "0zsm00lggvmps0krlhyb5vvs0m0kikzmamj9mq5hw3k372jv4djm"; 66081 + rev = "4058f17c7ccd4eb192598ce493d2e2d2361ee2e0"; 66082 + sha256 = "0vk5d3l2s0dxdv6yjdnwbhs0cdq71kd3l949a8w0qaypad8hg11i"; 65864 66083 }; 65865 66084 recipeFile = fetchurl { 65866 66085 url = "https://raw.githubusercontent.com/milkypostman/melpa/52c69070eef3003eb53e1436c538779c74670ce6/recipes/solaire-mode"; ··· 66261 66480 spaceline-all-the-icons = callPackage ({ all-the-icons, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, memoize, spaceline }: 66262 66481 melpaBuild { 66263 66482 pname = "spaceline-all-the-icons"; 66264 - version = "20170711.102"; 66483 + version = "20170719.131"; 66265 66484 src = fetchFromGitHub { 66266 66485 owner = "domtronn"; 66267 66486 repo = "spaceline-all-the-icons.el"; 66268 - rev = "88661813baefece9899588cb34c633eda606f2ac"; 66269 - sha256 = "1qb26ya4f3qd3rh9cpdb02qyqqz6yhgv05b095i9fvwlcbvr4v51"; 66487 + rev = "84ee6d37b8e6d50763ca2977133684143fc61cf3"; 66488 + sha256 = "1w66rfp1kmhqhnqjz2j41i245fw6840q09bfhsaci6kbhvhd5fnm"; 66270 66489 }; 66271 66490 recipeFile = fetchurl { 66272 66491 url = "https://raw.githubusercontent.com/milkypostman/melpa/d039e057c1d441592da8f54e6d524b395b030375/recipes/spaceline-all-the-icons"; ··· 66286 66505 src = fetchFromGitHub { 66287 66506 owner = "nashamri"; 66288 66507 repo = "spacemacs-theme"; 66289 - rev = "11d6958364271e11c920015c24d509f9bdcce6c9"; 66290 - sha256 = "1z6l85459fbfyn266qdz09c57ns8d1650ksicl3li442ffh5s75i"; 66508 + rev = "b26162e8974c532b3241a43c8f194a340636e9ea"; 66509 + sha256 = "0wxn7diy0pw0iwf3pxvr1yg2h7svrkyna0pgpkyipz3z1chd6h49"; 66291 66510 }; 66292 66511 recipeFile = fetchurl { 66293 66512 url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8ac39214856c1598beca0bd609e011b562346f/recipes/spacemacs-theme"; ··· 66366 66585 sparql-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 66367 66586 melpaBuild { 66368 66587 pname = "sparql-mode"; 66369 - version = "20170619.255"; 66588 + version = "20170718.329"; 66370 66589 src = fetchFromGitHub { 66371 66590 owner = "ljos"; 66372 66591 repo = "sparql-mode"; 66373 - rev = "c06eac2abae29ae55794e61ebd06890909edda7c"; 66374 - sha256 = "08w88wv3yd1l87zzwlrfj586hh3l2k1xq80f1mzskr7vkzi2ailx"; 66592 + rev = "b2216118167d9294ff43326b3b57fa72b20e1f76"; 66593 + sha256 = "055lq7hc9i44w21j37a0p1bm4vd40vbp4yyliaw8v6a7vg9jwhs0"; 66375 66594 }; 66376 66595 recipeFile = fetchurl { 66377 66596 url = "https://raw.githubusercontent.com/milkypostman/melpa/c3d729130a41903bb01465d0f01c34fbc508b56e/recipes/sparql-mode"; ··· 67033 67252 ssh-deploy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 67034 67253 melpaBuild { 67035 67254 pname = "ssh-deploy"; 67036 - version = "20170711.725"; 67255 + version = "20170725.429"; 67037 67256 src = fetchFromGitHub { 67038 67257 owner = "cjohansson"; 67039 67258 repo = "emacs-ssh-deploy"; 67040 - rev = "ec4661059109f25df41db1800cac7ffc168fdbbc"; 67041 - sha256 = "1nqf8nwwb188mlyn8xy8v9qzq3xin2pz6synldf0yr8gac8b7bll"; 67259 + rev = "dbd8608551bc9e05280415b7b3937b1a151c7718"; 67260 + sha256 = "1045snp3xdfa9nf34b1f0w4ql8kjl5m2jl7imxj5n46g579g9dhr"; 67042 67261 }; 67043 67262 recipeFile = fetchurl { 67044 67263 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ssh-deploy"; ··· 68220 68439 src = fetchFromGitHub { 68221 68440 owner = "abo-abo"; 68222 68441 repo = "swiper"; 68223 - rev = "dc146d9f1435b79fbfbfa702f0172b9de05f631d"; 68224 - sha256 = "09cfs0rhhb72b12pic2w9chbc000pqnafrl2x0g8v5r065pzp64n"; 68442 + rev = "112c5ba0df7deea11b3e91b5db3990d693eb5b72"; 68443 + sha256 = "0fcskn4v0rx5i04qr40wa8jggsswxxp8g8hk0s4sr447mxbiksbv"; 68225 68444 }; 68226 68445 recipeFile = fetchurl { 68227 68446 url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper"; ··· 68279 68498 switch-window = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 68280 68499 melpaBuild { 68281 68500 pname = "switch-window"; 68282 - version = "20170701.246"; 68501 + version = "20170718.1932"; 68283 68502 src = fetchFromGitHub { 68284 68503 owner = "dimitri"; 68285 68504 repo = "switch-window"; 68286 - rev = "f4e3fde4d4717b75716f287577e84b7ee4f33d8d"; 68287 - sha256 = "15ks1x62rn0q8lgy4x749mizvanzl9lkzgrsasrdx0v4ydmj3n7c"; 68505 + rev = "67113287ba61ce1951363a49f54148743dcea51e"; 68506 + sha256 = "06s1zdy2mlw63w3rnyja9jkvq4m5b46mvi8qjwxcpgqjdihj6f6m"; 68288 68507 }; 68289 68508 recipeFile = fetchurl { 68290 68509 url = "https://raw.githubusercontent.com/milkypostman/melpa/7d2204e3b53ade1e400e143ac219f3c7ab63a1e9/recipes/switch-window"; ··· 68968 69187 tao-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 68969 69188 melpaBuild { 68970 69189 pname = "tao-theme"; 68971 - version = "20170624.1300"; 69190 + version = "20170718.2306"; 68972 69191 src = fetchFromGitHub { 68973 69192 owner = "11111000000"; 68974 69193 repo = "tao-theme-emacs"; 68975 - rev = "bf6d718955d56b7cf824f7a60803c94a676ccb95"; 68976 - sha256 = "0hkni0dm4s7sgx7zzk88kls8qzmz47b5g1gskp3kxg88b1nbghcw"; 69194 + rev = "321dad4278776b63f8dcd1e67ad387531c472ed4"; 69195 + sha256 = "0w78ssd5qj5a1l3yhi2r2dhmls5jfw2p3ic1iinsqwimkwmvh8aa"; 68977 69196 }; 68978 69197 recipeFile = fetchurl { 68979 69198 url = "https://raw.githubusercontent.com/milkypostman/melpa/94b70f11655944080507744fd06464607727ecef/recipes/tao-theme"; ··· 69952 70171 src = fetchFromGitHub { 69953 70172 owner = "apache"; 69954 70173 repo = "thrift"; 69955 - rev = "0dd823580c78a79ae9696eb9b3650e400fff140f"; 69956 - sha256 = "1j6pq0gxlfbcfkh9pmfgqpfvdmsd1q4jx384jib12y4g0maxnf2b"; 70174 + rev = "5c302e02c40be558a21f3a82b53e527f7bec2ff2"; 70175 + sha256 = "0vm97r6ldd138mjdgz8g92grswfq6a20qyh1pn9sg2liygprabb2"; 69957 70176 }; 69958 70177 recipeFile = fetchurl { 69959 70178 url = "https://raw.githubusercontent.com/milkypostman/melpa/857ab7e3a5c290265d88ebacb9685b3faee586e5/recipes/thrift"; ··· 70010 70229 tide = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, typescript-mode }: 70011 70230 melpaBuild { 70012 70231 pname = "tide"; 70013 - version = "20170712.638"; 70232 + version = "20170720.2101"; 70014 70233 src = fetchFromGitHub { 70015 70234 owner = "ananthakumaran"; 70016 70235 repo = "tide"; 70017 - rev = "329d4541b1aa5f90689e84c925562d3bda708755"; 70018 - sha256 = "10rn2lxwir488x1d43bqvsg7la818si0w1qqsf59q79hllzjclg7"; 70236 + rev = "1a1a378060a989589cb6129fa22cfbf3eeb5eab8"; 70237 + sha256 = "0c0hvqpg5fgcxlqadz9dsaca9chmnlf19q366rwk0a6vlcwjgb3a"; 70019 70238 }; 70020 70239 recipeFile = fetchurl { 70021 70240 url = "https://raw.githubusercontent.com/milkypostman/melpa/a21e063011ebbb03ac70bdcf0a379f9e383bdfab/recipes/tide"; ··· 70726 70945 tql-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 70727 70946 melpaBuild { 70728 70947 pname = "tql-mode"; 70729 - version = "20170402.1846"; 70948 + version = "20170723.1954"; 70730 70949 src = fetchFromGitHub { 70731 70950 owner = "tiros-dev"; 70732 70951 repo = "tql-mode"; 70733 - rev = "2c4827652b4b9b640f3c55e27e1b1856ec9e2018"; 70734 - sha256 = "08vsg5y2bg9gxzfcm630vv95d9kwzxqhzz5dzbbi3g71nlgcclk2"; 70952 + rev = "488add79eb3fc8ec02aedaa997fe1ed9e5c3e638"; 70953 + sha256 = "09vkqr5n66w1q5f7m1vgiv0555v23wg6j46ri52lnnslsxpxhlyv"; 70735 70954 }; 70736 70955 recipeFile = fetchurl { 70737 70956 url = "https://raw.githubusercontent.com/milkypostman/melpa/6a7c3dec5d970a4e819c0166a4b9846d74484b08/recipes/tql-mode"; ··· 70879 71098 transmission = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: 70880 71099 melpaBuild { 70881 71100 pname = "transmission"; 70882 - version = "20170715.2304"; 71101 + version = "20170723.1417"; 70883 71102 src = fetchFromGitHub { 70884 71103 owner = "holomorph"; 70885 71104 repo = "transmission"; 70886 - rev = "2c033fb7a2614a21920d1cb06665f590b97694da"; 70887 - sha256 = "1ark2lcms43kk24352k1jbmgv5bcymmbfqhpbzrribagm5n9qr2h"; 71105 + rev = "509eb326bf6c2e329fb083e116dab6b407be33b5"; 71106 + sha256 = "1fzdk63qmkyah58hl4c9b1vksv8qijkmz326hzszldgm2zr9xnih"; 70888 71107 }; 70889 71108 recipeFile = fetchurl { 70890 71109 url = "https://raw.githubusercontent.com/milkypostman/melpa/9ed7e414687c0bd82b140a1bd8044084d094d18f/recipes/transmission"; ··· 70984 71203 treemacs = callPackage ({ ace-window, cl-lib ? null, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pfuture, s }: 70985 71204 melpaBuild { 70986 71205 pname = "treemacs"; 70987 - version = "20170705.1153"; 71206 + version = "20170724.445"; 70988 71207 src = fetchFromGitHub { 70989 71208 owner = "Alexander-Miller"; 70990 71209 repo = "treemacs"; 70991 - rev = "bbff57809095f4fb8578ca9ee28a3bac81f203b0"; 70992 - sha256 = "12hqgxj9jfxq5wbnxpb941g4m47dyhah6kvs91x637jc8mlsdvbq"; 71210 + rev = "e550867a72359e4a6656b6055c5c3ea26a285499"; 71211 + sha256 = "138hsm4qs1srz2fp26v16rr233qc580wl7ix7wphkr1k1mwmw313"; 70993 71212 }; 70994 71213 recipeFile = fetchurl { 70995 71214 url = "https://raw.githubusercontent.com/milkypostman/melpa/a52c2770097fe8968bff7c31ac411b3d9b60972e/recipes/treemacs"; ··· 71009 71228 src = fetchFromGitHub { 71010 71229 owner = "Alexander-Miller"; 71011 71230 repo = "treemacs"; 71012 - rev = "bbff57809095f4fb8578ca9ee28a3bac81f203b0"; 71013 - sha256 = "12hqgxj9jfxq5wbnxpb941g4m47dyhah6kvs91x637jc8mlsdvbq"; 71231 + rev = "e550867a72359e4a6656b6055c5c3ea26a285499"; 71232 + sha256 = "138hsm4qs1srz2fp26v16rr233qc580wl7ix7wphkr1k1mwmw313"; 71014 71233 }; 71015 71234 recipeFile = fetchurl { 71016 71235 url = "https://raw.githubusercontent.com/milkypostman/melpa/a52c2770097fe8968bff7c31ac411b3d9b60972e/recipes/treemacs-evil"; ··· 71020 71239 packageRequires = [ evil treemacs ]; 71021 71240 meta = { 71022 71241 homepage = "https://melpa.org/#/treemacs-evil"; 71242 + license = lib.licenses.free; 71243 + }; 71244 + }) {}; 71245 + treepy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 71246 + melpaBuild { 71247 + pname = "treepy"; 71248 + version = "20170721.913"; 71249 + src = fetchFromGitHub { 71250 + owner = "volrath"; 71251 + repo = "treepy.el"; 71252 + rev = "b2191139d67d024e4666b6039e39a23b15b1aba2"; 71253 + sha256 = "170xgvwgnnqkr259d0wv6l4kcp62mb1y1wq6rnk8gp39djsqw01q"; 71254 + }; 71255 + recipeFile = fetchurl { 71256 + url = "https://raw.githubusercontent.com/milkypostman/melpa/63c94a703841f8c11948200d86d98145bc62162c/recipes/treepy"; 71257 + sha256 = "0jfah4vywi1b6c86h7vh8fspmklhs790qzkl51i9p7yckfggwp72"; 71258 + name = "treepy"; 71259 + }; 71260 + packageRequires = [ emacs ]; 71261 + meta = { 71262 + homepage = "https://melpa.org/#/treepy"; 71023 71263 license = lib.licenses.free; 71024 71264 }; 71025 71265 }) {}; ··· 71799 72039 src = fetchFromGitHub { 71800 72040 owner = "marcowahl"; 71801 72041 repo = "underline-with-char"; 71802 - rev = "f0d7fad3f5472909f52c7928192f137d2f52c255"; 71803 - sha256 = "1qpqsspvvrfmzy93gj9h5zcj1gzf2fmw2kpl457cllvrks7yb8ry"; 72042 + rev = "b792d4f822bceb0ab0ee63ddcaeddc2085ed3188"; 72043 + sha256 = "0s2p2kjw00p3j9z6hj0d89z3bbwcs12z0h0hg5bjxcb1580dqxhq"; 71804 72044 }; 71805 72045 recipeFile = fetchurl { 71806 72046 url = "https://raw.githubusercontent.com/milkypostman/melpa/e24888ccf61ac05eba5c30a47d35653f2badf019/recipes/underline-with-char"; ··· 71878 72118 unfill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 71879 72119 melpaBuild { 71880 72120 pname = "unfill"; 71881 - version = "20160816.2300"; 72121 + version = "20170722.1846"; 71882 72122 src = fetchFromGitHub { 71883 72123 owner = "purcell"; 71884 72124 repo = "unfill"; 71885 - rev = "88186dce0de69e8f4aeaf2bfdc77d62210f19cd8"; 71886 - sha256 = "0wyradin5igp25nsd3n22i2ppxhmy49ac1iq1w2715v8pfmiydnc"; 72125 + rev = "d1056ec5ce7bb18abe8933c1e4d5932fb98fb78e"; 72126 + sha256 = "0qbcm7qf33xlbj7wx3164q8m6b8qzgv6w13pk8568nrmb1f8qna8"; 71887 72127 }; 71888 72128 recipeFile = fetchurl { 71889 72129 url = "https://raw.githubusercontent.com/milkypostman/melpa/2ade389a20419b3e29a613409ac73a16b7c5bddb/recipes/unfill"; ··· 72328 72568 use-package-chords = callPackage ({ bind-chord, bind-key, fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild, use-package }: 72329 72569 melpaBuild { 72330 72570 pname = "use-package-chords"; 72331 - version = "20170208.1035"; 72571 + version = "20170717.1152"; 72332 72572 src = fetchFromGitHub { 72333 72573 owner = "waymondo"; 72334 72574 repo = "use-package-chords"; 72335 - rev = "e8551ce8a514d865831d3a889acece79103fc627"; 72336 - sha256 = "0500pqsszg7h7923i0kyjirdyhj8aza3a2h5wbqzdpli2aqra5a5"; 72575 + rev = "f47b2dc8d79f02e5fe39de1f63c78a6c09be2026"; 72576 + sha256 = "0nwcs3akf1cy7dv36n5s5hsr67djfcn7w499vamn0yh16bs7r5ds"; 72337 72577 }; 72338 72578 recipeFile = fetchurl { 72339 72579 url = "https://raw.githubusercontent.com/milkypostman/melpa/92fbae4e0bcc1d5ad9f3f42d01f08ab4c3450f1f/recipes/use-package-chords"; ··· 74382 74622 src = fetchFromGitHub { 74383 74623 owner = "foretagsplatsen"; 74384 74624 repo = "emacs-js"; 74385 - rev = "2b3ba6dcc3e99cea75d4bf2b4e6cf0898d9a2615"; 74386 - sha256 = "0yga1vf54lf35my64ixw5ssq6jr6ph914afqv5r2gri007bi2zvw"; 74625 + rev = "ec98973a39d32d7c5d908d61383def5c50fa867d"; 74626 + sha256 = "1pf3sa1xfszaakfcjfllhqc624vmxxgy1g5mksbb36d7jjzx0jcb"; 74387 74627 }; 74388 74628 recipeFile = fetchurl { 74389 74629 url = "https://raw.githubusercontent.com/milkypostman/melpa/78d7a15152f45a193384741fa00d0649c4bba91e/recipes/widgetjs"; ··· 74647 74887 window-purpose = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, imenu-list, let-alist, lib, melpaBuild }: 74648 74888 melpaBuild { 74649 74889 pname = "window-purpose"; 74650 - version = "20161017.433"; 74890 + version = "20170722.655"; 74651 74891 src = fetchFromGitHub { 74652 74892 owner = "bmag"; 74653 74893 repo = "emacs-purpose"; 74654 - rev = "67ecaa2b52c113f92913c3beb9fb7f302bd50318"; 74655 - sha256 = "0jvihc94iwrb2zxr1qg9yc5fypd1a028d2wfhvg68ipmngcf4q2g"; 74894 + rev = "00ddafcf4802e7430ca709769b888656a6eb421b"; 74895 + sha256 = "1c3jf1cxfvja1v323wkxkd67n9nwzb57c79x4m010h2700xim8vs"; 74656 74896 }; 74657 74897 recipeFile = fetchurl { 74658 74898 url = "https://raw.githubusercontent.com/milkypostman/melpa/5813120ab674f6db7d0a486433d8faa6cfec1727/recipes/window-purpose"; ··· 74755 74995 version = "20160419.1232"; 74756 74996 src = fetchhg { 74757 74997 url = "https://bitbucket.com/ArneBab/wisp"; 74758 - rev = "f94ec5fed665"; 74759 - sha256 = "0k66dxxc8k2snzmw385a78xqfgbpjzsfg3jm0gk5wqyn185ab50n"; 74998 + rev = "1ab8f296baeb"; 74999 + sha256 = "02g34b7kp3lkv4sfgf1762vlmmsnxib37v8385lmv90ww24lwggg"; 74760 75000 }; 74761 75001 recipeFile = fetchurl { 74762 75002 url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/wisp-mode"; ··· 74772 75012 wispjs-mode = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: 74773 75013 melpaBuild { 74774 75014 pname = "wispjs-mode"; 74775 - version = "20140103.1432"; 75015 + version = "20170720.1219"; 74776 75016 src = fetchFromGitHub { 74777 75017 owner = "krisajenkins"; 74778 75018 repo = "wispjs-mode"; 74779 - rev = "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f"; 74780 - sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x"; 75019 + rev = "60f9f5fd9d1556e2d008939f67eb1b1d0f325fa8"; 75020 + sha256 = "1hhd8ixb2wr06vrd1kw0cd5jh08zm86h2clbvzv9wmqpawwxfm5f"; 74781 75021 }; 74782 75022 recipeFile = fetchurl { 74783 75023 url = "https://raw.githubusercontent.com/milkypostman/melpa/a628330ee8deeab2bd5c2d4b61b33f119c4549d8/recipes/wispjs-mode"; ··· 74832 75072 license = lib.licenses.free; 74833 75073 }; 74834 75074 }) {}; 75075 + with-simulated-input = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, seq }: 75076 + melpaBuild { 75077 + pname = "with-simulated-input"; 75078 + version = "20170723.941"; 75079 + src = fetchFromGitHub { 75080 + owner = "DarwinAwardWinner"; 75081 + repo = "with-simulated-input"; 75082 + rev = "f0dbf2fdd99c6afe7ab2af83c94a4028e4af9c1c"; 75083 + sha256 = "03y3j0q2iy9mgm0yn4mnxkdwwda8jsy6rsm0qdzha8gq4cdcqrjj"; 75084 + }; 75085 + recipeFile = fetchurl { 75086 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e4ddf16e19f5018106a423327ddc7e7499cf9248/recipes/with-simulated-input"; 75087 + sha256 = "0113la76nbp18vaffsd7w7wcw5k2sqwgnjq1gslf4khdfqghrkwk"; 75088 + name = "with-simulated-input"; 75089 + }; 75090 + packageRequires = [ emacs s seq ]; 75091 + meta = { 75092 + homepage = "https://melpa.org/#/with-simulated-input"; 75093 + license = lib.licenses.free; 75094 + }; 75095 + }) {}; 74835 75096 wn-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 74836 75097 melpaBuild { 74837 75098 pname = "wn-mode"; ··· 74982 75243 worf = callPackage ({ ace-link, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, swiper, zoutline }: 74983 75244 melpaBuild { 74984 75245 pname = "worf"; 74985 - version = "20170427.8"; 75246 + version = "20170724.1132"; 74986 75247 src = fetchFromGitHub { 74987 75248 owner = "abo-abo"; 74988 75249 repo = "worf"; 74989 - rev = "8b0de0d0896aa82a31d13972baf15de56ca5516e"; 74990 - sha256 = "14jk3sinxrb2685y5dslrik10cwjwjc76pgwj3w47h4s6ykarwn8"; 75250 + rev = "e66659923bd53be40a0f0ee1d7fe8a14d22f6973"; 75251 + sha256 = "155sz3hl2ly9m4i8nr2bxham5vzpa2bi9cvgna35gbkp1d34mm41"; 74991 75252 }; 74992 75253 recipeFile = fetchurl { 74993 75254 url = "https://raw.githubusercontent.com/milkypostman/melpa/f00f8765e35c21dd1a4b5c01c239ed4d15170ab7/recipes/worf"; ··· 75339 75600 xah-elisp-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 75340 75601 melpaBuild { 75341 75602 pname = "xah-elisp-mode"; 75342 - version = "20170713.629"; 75603 + version = "20170725.420"; 75343 75604 src = fetchFromGitHub { 75344 75605 owner = "xahlee"; 75345 75606 repo = "xah-elisp-mode"; 75346 - rev = "e28f16121619f1a929803ef1274d2853d1b43656"; 75347 - sha256 = "1l7yf3k5gdz7flm8qqzkcdpj3cx9q1kklbl2znkxiyb6rvgh7qf2"; 75607 + rev = "4557ee44475b50061219653f0178efd9d832a79f"; 75608 + sha256 = "06fx2mnyd7qs867m1hjzzj47wj06hhqz74bwif6rzhy5v4j7wdcr"; 75348 75609 }; 75349 75610 recipeFile = fetchurl { 75350 75611 url = "https://raw.githubusercontent.com/milkypostman/melpa/f2e996dd5b0061371662490e0b21d3c5bb506550/recipes/xah-elisp-mode"; ··· 75381 75642 xah-fly-keys = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 75382 75643 melpaBuild { 75383 75644 pname = "xah-fly-keys"; 75384 - version = "20170713.626"; 75645 + version = "20170725.1253"; 75385 75646 src = fetchFromGitHub { 75386 75647 owner = "xahlee"; 75387 75648 repo = "xah-fly-keys"; 75388 - rev = "23dae1d6d14d238227e1ee0afeef6ef1561b0c31"; 75389 - sha256 = "1mlqhmk9qpa34p30f8m0ylfajzyvq49qvl3hklgrzqgc9xx4yhxd"; 75649 + rev = "7f884f13d01a5914e0201d58eef7275a6f884cae"; 75650 + sha256 = "1sgh3mk7f1p92jmzcga67bcc4s6ciipc7ga1biav0r3nqfk087jy"; 75390 75651 }; 75391 75652 recipeFile = fetchurl { 75392 75653 url = "https://raw.githubusercontent.com/milkypostman/melpa/fc1683be70d1388efa3ce00adc40510e595aef2b/recipes/xah-fly-keys"; ··· 76036 76297 src = fetchFromGitHub { 76037 76298 owner = "drdv"; 76038 76299 repo = "yahtzee"; 76039 - rev = "1b6d6cc5651a02547415cd571658efcafd9d36fa"; 76040 - sha256 = "0xzw5inzpd2djqx8q276vhiw5j19irkaygnmjn5m5kh2xpzb6aah"; 76300 + rev = "d0671b315a8411ec299af63742813783e3eff04d"; 76301 + sha256 = "1a9rc2k4rah80hmwwmk8ca8k0s2812qsigci072lvc8x49smylld"; 76041 76302 }; 76042 76303 recipeFile = fetchurl { 76043 76304 url = "https://raw.githubusercontent.com/milkypostman/melpa/200169fdabce0ae3a2ecb6f4f3255c15ec3ed094/recipes/yahtzee"; ··· 76219 76480 yara-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 76220 76481 melpaBuild { 76221 76482 pname = "yara-mode"; 76222 - version = "20170713.2206"; 76483 + version = "20170719.2351"; 76223 76484 src = fetchFromGitHub { 76224 76485 owner = "binjo"; 76225 76486 repo = "yara-mode"; 76226 - rev = "e3eb352a2e295a8a0955bc3e853f1edfd93cbf81"; 76227 - sha256 = "1dn2ssshwj94nmhd2pnvqdwj0za3iri9ky4kd4w50kj9jz18d1wz"; 76487 + rev = "af5c05b34a29fc1bd73a6d21c82cc76320b33e5c"; 76488 + sha256 = "1v8z3cwwla42d3r317091g5i7bj1hlbr9sd1p9s9b7y134gpd1xp"; 76228 76489 }; 76229 76490 recipeFile = fetchurl { 76230 76491 url = "https://raw.githubusercontent.com/milkypostman/melpa/ef22d2dad1bae62721710bbff4b7228204d7c425/recipes/yara-mode"; ··· 76324 76585 yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 76325 76586 melpaBuild { 76326 76587 pname = "yasnippet"; 76327 - version = "20170716.1223"; 76588 + version = "20170723.1530"; 76328 76589 src = fetchFromGitHub { 76329 76590 owner = "joaotavora"; 76330 76591 repo = "yasnippet"; 76331 - rev = "2a3a0cd2b18c21fc5f391273045f466c41da743c"; 76332 - sha256 = "09s7ad3wl4rrmdyi0cxmn6vnpkcf97x0g0csy8a8lijsjnrvk4r9"; 76592 + rev = "0463c75b636fe02273c2b8ca85f36b56a206c5c5"; 76593 + sha256 = "1l8h681x5v78k6wkcmhb5kdw9mc13kcmq3aiqg0r9dn493ifj1v1"; 76333 76594 }; 76334 76595 recipeFile = fetchurl { 76335 76596 url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1927dc3351d3522de1baccdc4ce200ba52bd6e/recipes/yasnippet"; ··· 76365 76626 }) {}; 76366 76627 yatex = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { 76367 76628 pname = "yatex"; 76368 - version = "20170611.1642"; 76629 + version = "20170723.1909"; 76369 76630 src = fetchhg { 76370 76631 url = "https://www.yatex.org/hgrepos/yatex/"; 76371 - rev = "e9299b77df1f"; 76372 - sha256 = "0nnpzcj23q964v4rfxzdll1r95zd6zzqvzcgxh7h603a41r3w1wm"; 76632 + rev = "4f8551386af2"; 76633 + sha256 = "0qvp54pzc6m52j5xkwp25nwdlik6v879halmfvcpn3z0grhrslbn"; 76373 76634 }; 76374 76635 recipeFile = fetchurl { 76375 76636 url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/yatex"; ··· 76427 76688 ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, request, request-deferred, s }: 76428 76689 melpaBuild { 76429 76690 pname = "ycmd"; 76430 - version = "20170710.103"; 76691 + version = "20170723.1458"; 76431 76692 src = fetchFromGitHub { 76432 76693 owner = "abingham"; 76433 76694 repo = "emacs-ycmd"; 76434 - rev = "35e8a31e32d0de890547612db8373d7333db8d8a"; 76435 - sha256 = "023bkmviaqb85kwwlpmzfc5gycf4i7w8a43zhbmvasfjjb962yzd"; 76695 + rev = "5c3e07b46e4c25bbd0a2068a5091c8f27b344da6"; 76696 + sha256 = "04nb5cjlghkk47a0girnlxlcrclylhg1zx41q5lcvnzb1is06skh"; 76436 76697 }; 76437 76698 recipeFile = fetchurl { 76438 76699 url = "https://raw.githubusercontent.com/milkypostman/melpa/4b25378540c64d0214797348579671bf2b8cc696/recipes/ycmd"; ··· 76687 76948 zerodark-theme = callPackage ({ all-the-icons, fetchFromGitHub, fetchurl, flycheck, lib, magit, melpaBuild }: 76688 76949 melpaBuild { 76689 76950 pname = "zerodark-theme"; 76690 - version = "20170709.1248"; 76951 + version = "20170721.214"; 76691 76952 src = fetchFromGitHub { 76692 76953 owner = "NicolasPetton"; 76693 76954 repo = "zerodark-theme"; 76694 - rev = "379df55b3ea6f217e0187fb8cb6df70d02236cec"; 76695 - sha256 = "0nj7qvr0z3gq31db8r3jsdljj93r0cijssbwxgqscvm945jpxc6x"; 76955 + rev = "b187aee9351f0ec94d87156223e5b434b58aa2a8"; 76956 + sha256 = "1fidrmf2ljhzm9prk8a6y35djgzyj9bsla7pwacjknkqza3pjpbi"; 76696 76957 }; 76697 76958 recipeFile = fetchurl { 76698 76959 url = "https://raw.githubusercontent.com/milkypostman/melpa/72ef967a9bea2e100ae17aad1a88db95820f4f6a/recipes/zerodark-theme"; ··· 77062 77323 zoutline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 77063 77324 melpaBuild { 77064 77325 pname = "zoutline"; 77065 - version = "20160915.503"; 77326 + version = "20170722.651"; 77066 77327 src = fetchFromGitHub { 77067 77328 owner = "abo-abo"; 77068 77329 repo = "zoutline"; 77069 - rev = "714c10a25112b3da62696585bea289c3f8e74158"; 77070 - sha256 = "1z45p9i89lhqak993kq7rdji84rxrdcsnz1yz9xa2l758mnq5gp1"; 77330 + rev = "e86e739b53a1c8a0a2cf6de43dffabb15d465507"; 77331 + sha256 = "0ycri5d61pbwhwpwh9qx9m22mb4ab7bgniwgdbi9s8rzqs4q1p91"; 77071 77332 }; 77072 77333 recipeFile = fetchurl { 77073 77334 url = "https://raw.githubusercontent.com/milkypostman/melpa/4a26341f491145938aee9b531cd861200bfa2f6d/recipes/zoutline"; ··· 77080 77341 license = lib.licenses.free; 77081 77342 }; 77082 77343 }) {}; 77083 - zpresent = callPackage ({ dash, emacs, fetchhg, fetchurl, lib, melpaBuild, org-parser }: 77344 + zpresent = callPackage ({ dash, emacs, fetchhg, fetchurl, lib, melpaBuild, org-parser, request }: 77084 77345 melpaBuild { 77085 77346 pname = "zpresent"; 77086 - version = "20170710.2029"; 77347 + version = "20170724.2249"; 77087 77348 src = fetchhg { 77088 77349 url = "https://bitbucket.com/zck/zpresent.el"; 77089 - rev = "96131375ac74"; 77090 - sha256 = "1p19yy0xyf962rc0j3k4jxl9vyjjyd1ar61wmp6mf6jplj7sxyfl"; 77350 + rev = "620afddbc133"; 77351 + sha256 = "1cjnig9x8xsdjyxdp3wmc8dhp050xzqvi8ca0hrd1fgwzgvg0wvv"; 77091 77352 }; 77092 77353 recipeFile = fetchurl { 77093 77354 url = "https://raw.githubusercontent.com/milkypostman/melpa/3aae38ad54490fa650c832fb7d22e2c73b0fb060/recipes/zpresent"; 77094 77355 sha256 = "0316qyspmdbg94aw620133ilh8kfpr3db1p2cifgccgcacjv3v5j"; 77095 77356 name = "zpresent"; 77096 77357 }; 77097 - packageRequires = [ dash emacs org-parser ]; 77358 + packageRequires = [ dash emacs org-parser request ]; 77098 77359 meta = { 77099 77360 homepage = "https://melpa.org/#/zpresent"; 77100 77361 license = lib.licenses.free;
+288 -99
pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
··· 20 20 license = lib.licenses.free; 21 21 }; 22 22 }) {}; 23 + a = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 24 + melpaBuild { 25 + pname = "a"; 26 + version = "0.1.0alpha4"; 27 + src = fetchFromGitHub { 28 + owner = "plexus"; 29 + repo = "a.el"; 30 + rev = "3af0122abac723f0d3dc21ee50eeb81afa26d361"; 31 + sha256 = "0grwpy4ssmn2m8aihfkxb7ifl7ql2hgicw16wzl0crpy5fndh1mp"; 32 + }; 33 + recipeFile = fetchurl { 34 + url = "https://raw.githubusercontent.com/milkypostman/melpa/a226f1d81cd1ae81b91c1102fbe40aac2eddcaa8/recipes/a"; 35 + sha256 = "1xqja47iw1c78kiv4854z47iblvvzrc1l35zjdhmhkh9hh10z886"; 36 + name = "a"; 37 + }; 38 + packageRequires = [ emacs ]; 39 + meta = { 40 + homepage = "https://melpa.org/#/a"; 41 + license = lib.licenses.free; 42 + }; 43 + }) {}; 23 44 aa-edit-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, navi2ch }: 24 45 melpaBuild { 25 46 pname = "aa-edit-mode"; ··· 590 611 ac-rtags = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild, rtags }: 591 612 melpaBuild { 592 613 pname = "ac-rtags"; 593 - version = "2.10"; 614 + version = "2.11"; 594 615 src = fetchFromGitHub { 595 616 owner = "Andersbakken"; 596 617 repo = "rtags"; 597 - rev = "3b3ace901f53827daef81d4c13658ec4feb318b4"; 598 - sha256 = "1lm0s1918zsnd4hmfzf3xfrd68ip2zjnr9ciyf4bwpd66y0zfrbk"; 618 + rev = "942ae6faa64ab6de73d093e628bc5b036f1a967c"; 619 + sha256 = "19ljfz95jwbgw35d3y0m0p3l4as5llwvc6q3v2jlv3xl3ihpd923"; 599 620 }; 600 621 recipeFile = fetchurl { 601 622 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ac-rtags"; ··· 2809 2830 binclock = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 2810 2831 melpaBuild { 2811 2832 pname = "binclock"; 2812 - version = "1.10"; 2833 + version = "1.11"; 2813 2834 src = fetchFromGitHub { 2814 2835 owner = "davep"; 2815 2836 repo = "binclock.el"; 2816 - rev = "2e529ace67a04e6872a2328769782ef33b0e463a"; 2817 - sha256 = "0ldyx90lrhfn7qypxsmaf2yhpamjiqzvsk0b0jlgg09ars1fvhns"; 2837 + rev = "b964e437311e5406a31c0ec7038b3bf1fd02b876"; 2838 + sha256 = "0ljxb70vx7x0yn8y1ilf4phk0hamprl43dh23fm3njqqgw60hzbk"; 2818 2839 }; 2819 2840 recipeFile = fetchurl { 2820 2841 url = "https://raw.githubusercontent.com/milkypostman/melpa/95dfa38d795172dca6a09cd02e21630747723949/recipes/binclock"; ··· 4132 4153 cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }: 4133 4154 melpaBuild { 4134 4155 pname = "cider"; 4135 - version = "0.14.0"; 4156 + version = "0.15.0"; 4136 4157 src = fetchFromGitHub { 4137 4158 owner = "clojure-emacs"; 4138 4159 repo = "cider"; 4139 - rev = "f3c396ff8cf4baf331b0e19e18e33b795b66ee3e"; 4140 - sha256 = "1np4bh7fxv6xkvdg1nyd596p2yjkrh5msw2wsfyidl0xb1jdnj9c"; 4160 + rev = "e503f5628ef98bd768f08c698863e8e33a7af3b4"; 4161 + sha256 = "1bb0l06af7k7zzsig8kmn71krbm9mwdj7dc0s17rbhnm84cdfc8b"; 4141 4162 }; 4142 4163 recipeFile = fetchurl { 4143 4164 url = "https://raw.githubusercontent.com/milkypostman/melpa/55a937aed818dbe41530037da315f705205f189b/recipes/cider"; ··· 4606 4627 cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 4607 4628 melpaBuild { 4608 4629 pname = "cmake-mode"; 4609 - version = "3.9.0pre6"; 4630 + version = "3.9.0"; 4610 4631 src = fetchFromGitHub { 4611 4632 owner = "Kitware"; 4612 4633 repo = "CMake"; 4613 - rev = "25b72e9097260d1faf254155a1199886c808a58f"; 4614 - sha256 = "0rzy8fpagsqfln1x27mq89dh819jc8h2dlf7axmxq63g830c029q"; 4634 + rev = "f15cfd891d1e01247ed285320ae32b6c3182ac8f"; 4635 + sha256 = "0asp6kijrmf9bayg8jvhgkd1z2falzhyippkwgih9ygpa65qvqpq"; 4615 4636 }; 4616 4637 recipeFile = fetchurl { 4617 4638 url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode"; ··· 5305 5326 company-rtags = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rtags }: 5306 5327 melpaBuild { 5307 5328 pname = "company-rtags"; 5308 - version = "2.10"; 5329 + version = "2.11"; 5309 5330 src = fetchFromGitHub { 5310 5331 owner = "Andersbakken"; 5311 5332 repo = "rtags"; 5312 - rev = "3b3ace901f53827daef81d4c13658ec4feb318b4"; 5313 - sha256 = "1lm0s1918zsnd4hmfzf3xfrd68ip2zjnr9ciyf4bwpd66y0zfrbk"; 5333 + rev = "942ae6faa64ab6de73d093e628bc5b036f1a967c"; 5334 + sha256 = "19ljfz95jwbgw35d3y0m0p3l4as5llwvc6q3v2jlv3xl3ihpd923"; 5314 5335 }; 5315 5336 recipeFile = fetchurl { 5316 5337 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/company-rtags"; ··· 5872 5893 cricbuzz = callPackage ({ dash, enlive, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: 5873 5894 melpaBuild { 5874 5895 pname = "cricbuzz"; 5875 - version = "0.2.8"; 5896 + version = "0.2.9"; 5876 5897 src = fetchFromGitHub { 5877 5898 owner = "lepisma"; 5878 5899 repo = "cricbuzz.el"; 5879 - rev = "5fe51347f5d6e7636ece5e904e4bdec0be21db45"; 5880 - sha256 = "1x29garhp1x5h1mwbamwjnfw52w45b39aqxsvcdxmcf730w9pq63"; 5900 + rev = "05087b0f6d5a941b5ec18acc8bcf20efd6d71568"; 5901 + sha256 = "1zin191dcr6qli2cwgf6jjz2dvlxiaranglpc5365bkkvwb5f250"; 5881 5902 }; 5882 5903 recipeFile = fetchurl { 5883 5904 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cricbuzz"; ··· 5977 5998 csound-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, multi, shut-up }: 5978 5999 melpaBuild { 5979 6000 pname = "csound-mode"; 5980 - version = "0.1"; 6001 + version = "0.1.1"; 5981 6002 src = fetchFromGitHub { 5982 6003 owner = "hlolli"; 5983 6004 repo = "csound-mode"; 5984 - rev = "b0e74f149a15118e8d85bf073b2ff5e0dd3cba7f"; 5985 - sha256 = "0c73xjhqgp1f7bplm47cgpssm8kpj3vda9n0fqcyq5i38ncfqwva"; 6005 + rev = "e3fbb1fecd730fd66893cadf41c2cb8c2d9c1685"; 6006 + sha256 = "105hhn5f5ml32i3iwrm2d2ikx9lb96m3lsg9v9i72713mayvkqan"; 5986 6007 }; 5987 6008 recipeFile = fetchurl { 5988 - url = "https://raw.githubusercontent.com/milkypostman/melpa/34dc8853f5978789212cb7983615202c498d4d25/recipes/csound-mode"; 5989 - sha256 = "0k4p9w19yxhfccr9zgg51ppl9jf3m4pwwnqiq25yv6qsxmh9q24l"; 6009 + url = "https://raw.githubusercontent.com/milkypostman/melpa/95ccfae76a2c0f627f6d218ca68072e79fcfd088/recipes/csound-mode"; 6010 + sha256 = "15zmgsh1071cyd9a0d7cljq8k7d8l2gkjjpv8z22gnm0wfbb0yys"; 5990 6011 name = "csound-mode"; 5991 6012 }; 5992 6013 packageRequires = [ emacs multi shut-up ]; ··· 6166 6187 cython-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 6167 6188 melpaBuild { 6168 6189 pname = "cython-mode"; 6169 - version = "0.26pre1"; 6190 + version = "0.26"; 6170 6191 src = fetchFromGitHub { 6171 6192 owner = "cython"; 6172 6193 repo = "cython"; 6173 - rev = "85a2dfe76a2bc28d4c8c1a760ef04e614f61be73"; 6174 - sha256 = "0gcdwzw952kddvxxgzsj93rqlvh2gs8bghz605zgm97baadvrizy"; 6194 + rev = "62f04f6766386893f5da6bee23d4de1e92a4148d"; 6195 + sha256 = "0rw22qa67ifrw7kd58wjs2bnrjzkpr75k1rbhdgba526mm4s0q0x"; 6175 6196 }; 6176 6197 recipeFile = fetchurl { 6177 6198 url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode"; ··· 7302 7323 license = lib.licenses.free; 7303 7324 }; 7304 7325 }) {}; 7326 + docker-compose-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7327 + melpaBuild { 7328 + pname = "docker-compose-mode"; 7329 + version = "0.1"; 7330 + src = fetchFromGitHub { 7331 + owner = "meqif"; 7332 + repo = "docker-compose-mode"; 7333 + rev = "85cf81d2964c7b721a7f1317cf9efd5bf3a7f671"; 7334 + sha256 = "1l0pcmjhvayfx1hn4125ilhr3lb4rzhrqrf91lnkh7m1rv3npcik"; 7335 + }; 7336 + recipeFile = fetchurl { 7337 + url = "https://raw.githubusercontent.com/milkypostman/melpa/9d74905aa52aa78bdc8e96aa3b791c3d2a70965f/recipes/docker-compose-mode"; 7338 + sha256 = "094r2mqxmll5dqbjhhdfg60xs9m74qn22lz475692k48ma5a7gd0"; 7339 + name = "docker-compose-mode"; 7340 + }; 7341 + packageRequires = [ dash emacs ]; 7342 + meta = { 7343 + homepage = "https://melpa.org/#/docker-compose-mode"; 7344 + license = lib.licenses.free; 7345 + }; 7346 + }) {}; 7305 7347 docker-tramp = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7306 7348 melpaBuild { 7307 7349 pname = "docker-tramp"; ··· 7808 7850 easy-hugo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 7809 7851 melpaBuild { 7810 7852 pname = "easy-hugo"; 7811 - version = "1.0.0"; 7853 + version = "1.3.1"; 7812 7854 src = fetchFromGitHub { 7813 7855 owner = "masasam"; 7814 7856 repo = "emacs-easy-hugo"; 7815 - rev = "226fa5c661391c7f8317a24c9f757396e1900371"; 7816 - sha256 = "0g63ajpxr2a42nw5ri14icvwwdc9hs8al91plcjxjs7q7rbkhwp6"; 7857 + rev = "468352a0a813c5ce8edba71c82f00e24b516d74c"; 7858 + sha256 = "0sryibflylwy8pqp80xyxmdndk2idcgpgk9zxixwpim3mcwn78yl"; 7817 7859 }; 7818 7860 recipeFile = fetchurl { 7819 7861 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/easy-hugo"; ··· 8457 8499 el-patch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 8458 8500 melpaBuild { 8459 8501 pname = "el-patch"; 8460 - version = "1.1.2"; 8502 + version = "1.2"; 8461 8503 src = fetchFromGitHub { 8462 8504 owner = "raxod502"; 8463 8505 repo = "el-patch"; 8464 - rev = "ad6a64e9f24f6b58f0a08e11f76b5152da46c74c"; 8465 - sha256 = "0n0zrjij9mcbv08x1m5hjbz6hcwy0c0j2d03swywnhl4c00pwfkp"; 8506 + rev = "cc26f37e19ebc60ca75067115d3794cda88003c5"; 8507 + sha256 = "0b8yy51dy5280y7yvq0ylm20m9bvzi7lzs3c9m1i2gb3ssx7267w"; 8466 8508 }; 8467 8509 recipeFile = fetchurl { 8468 8510 url = "https://raw.githubusercontent.com/milkypostman/melpa/2f4f57e0edbae35597aa4a7744d22d2f971d5de5/recipes/el-patch"; ··· 10599 10641 evil-matchit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: 10600 10642 melpaBuild { 10601 10643 pname = "evil-matchit"; 10602 - version = "2.2.2"; 10644 + version = "2.2.3"; 10603 10645 src = fetchFromGitHub { 10604 10646 owner = "redguardtoo"; 10605 10647 repo = "evil-matchit"; 10606 - rev = "0b0e6d61a6462fc6fff7000b739ce5b31acd0d4c"; 10607 - sha256 = "13qxsbvmi0dkzmf59j0xyjwwcspyhymm6swsagqy4b57ypis5hxh"; 10648 + rev = "bed39041b1181ec26cf2601a8a7aa4afe2510f5b"; 10649 + sha256 = "0b1gl5mhl8w63rhx4bbr69cklgz630038lxpjb4nl6h8yl41pcrp"; 10608 10650 }; 10609 10651 recipeFile = fetchurl { 10610 10652 url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit"; ··· 11522 11564 find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: 11523 11565 melpaBuild { 11524 11566 pname = "find-file-in-project"; 11525 - version = "5.3.2"; 11567 + version = "5.4.0"; 11526 11568 src = fetchFromGitHub { 11527 11569 owner = "technomancy"; 11528 11570 repo = "find-file-in-project"; 11529 - rev = "99801cd730d579ed3b05d084ad254b6a73b259aa"; 11530 - sha256 = "0pqg6iib5ns6k5is0bv8riwficadi64dinzdjibk94h8i7cmp54h"; 11571 + rev = "2d3e8d095e0c36f927142e80c4330977be698568"; 11572 + sha256 = "1phj6a6ydc8hzv1f1881anyccg1jkd8dh6g229ln476i5y6wqs5j"; 11531 11573 }; 11532 11574 recipeFile = fetchurl { 11533 11575 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/find-file-in-project"; ··· 11781 11823 floobits = callPackage ({ fetchFromGitHub, fetchurl, highlight, json ? null, lib, melpaBuild }: 11782 11824 melpaBuild { 11783 11825 pname = "floobits"; 11784 - version = "1.9.0"; 11826 + version = "1.9.1"; 11785 11827 src = fetchFromGitHub { 11786 11828 owner = "Floobits"; 11787 11829 repo = "floobits-emacs"; 11788 - rev = "fdac635ecc57ac7743f74678147aca2e956561de"; 11789 - sha256 = "134b5ss249x06bgqvsxnlcfys7nl8aid42s7ln8pamxrc3prfcc1"; 11830 + rev = "76c869f439c2d13028d1fe8cae486e0ef018e4b0"; 11831 + sha256 = "0f0i5zzl8njrwspir1wnfyrv9q8syl2izhyn2j9j9w8wyf5w7l1b"; 11790 11832 }; 11791 11833 recipeFile = fetchurl { 11792 11834 url = "https://raw.githubusercontent.com/milkypostman/melpa/95c859e8440049579630b4c2bcc31e7eaa13b1f1/recipes/floobits"; ··· 12348 12390 flycheck-rtags = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, rtags }: 12349 12391 melpaBuild { 12350 12392 pname = "flycheck-rtags"; 12351 - version = "2.10"; 12393 + version = "2.11"; 12352 12394 src = fetchFromGitHub { 12353 12395 owner = "Andersbakken"; 12354 12396 repo = "rtags"; 12355 - rev = "3b3ace901f53827daef81d4c13658ec4feb318b4"; 12356 - sha256 = "1lm0s1918zsnd4hmfzf3xfrd68ip2zjnr9ciyf4bwpd66y0zfrbk"; 12397 + rev = "942ae6faa64ab6de73d093e628bc5b036f1a967c"; 12398 + sha256 = "19ljfz95jwbgw35d3y0m0p3l4as5llwvc6q3v2jlv3xl3ihpd923"; 12357 12399 }; 12358 12400 recipeFile = fetchurl { 12359 12401 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/flycheck-rtags"; ··· 13782 13824 ghc = callPackage ({ fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }: 13783 13825 melpaBuild { 13784 13826 pname = "ghc"; 13785 - version = "5.7.0.0"; 13827 + version = "5.8.0.0"; 13786 13828 src = fetchFromGitHub { 13787 13829 owner = "DanielG"; 13788 13830 repo = "ghc-mod"; 13789 - rev = "c3d0a681a19261817cf928685f7b96878fe51e91"; 13790 - sha256 = "1d2hsfmshh29g5bvd701py9n421hmz49hk0zjx5m09s8znjkvgx3"; 13831 + rev = "35690941aadbe44d9401102ab44a39753e0bb2b5"; 13832 + sha256 = "0fcaxj2lhkhkm2h91d9fdqas2b99wblwl74l2y6ckpf05hrc4w1q"; 13791 13833 }; 13792 13834 recipeFile = fetchurl { 13793 13835 url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ghc"; ··· 16394 16436 helm-dash = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: 16395 16437 melpaBuild { 16396 16438 pname = "helm-dash"; 16397 - version = "1.2.0"; 16439 + version = "1.3.0"; 16398 16440 src = fetchFromGitHub { 16399 16441 owner = "areina"; 16400 16442 repo = "helm-dash"; 16401 - rev = "a0f5d6539da873cd0c51d8ef714930c970a66aa0"; 16402 - sha256 = "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai"; 16443 + rev = "9a230125a7a11f5fa90aa048b61abd95eb78ddfe"; 16444 + sha256 = "0xs3nq86qmvkiazn5w564npdgbcfjlnpw2f48g2jd43yznblz7ly"; 16403 16445 }; 16404 16446 recipeFile = fetchurl { 16405 16447 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-dash"; ··· 17339 17381 helm-rtags = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, rtags }: 17340 17382 melpaBuild { 17341 17383 pname = "helm-rtags"; 17342 - version = "2.10"; 17384 + version = "2.11"; 17343 17385 src = fetchFromGitHub { 17344 17386 owner = "Andersbakken"; 17345 17387 repo = "rtags"; 17346 - rev = "3b3ace901f53827daef81d4c13658ec4feb318b4"; 17347 - sha256 = "1lm0s1918zsnd4hmfzf3xfrd68ip2zjnr9ciyf4bwpd66y0zfrbk"; 17388 + rev = "942ae6faa64ab6de73d093e628bc5b036f1a967c"; 17389 + sha256 = "19ljfz95jwbgw35d3y0m0p3l4as5llwvc6q3v2jlv3xl3ihpd923"; 17348 17390 }; 17349 17391 recipeFile = fetchurl { 17350 17392 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/helm-rtags"; ··· 18305 18347 hydra = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 18306 18348 melpaBuild { 18307 18349 pname = "hydra"; 18308 - version = "0.13.6"; 18350 + version = "0.14.0"; 18309 18351 src = fetchFromGitHub { 18310 18352 owner = "abo-abo"; 18311 18353 repo = "hydra"; 18312 - rev = "91f8e7c13bcd9629ad1678588e58576ca6806b58"; 18313 - sha256 = "1czdar4yv5c9996wvj887d0c1knlrpcjj0aq2dily2x074gdzh4j"; 18354 + rev = "943636fe4a35298d9d234222bc4520dec9ef2305"; 18355 + sha256 = "0ln4z2796ycy33g5jcxkqvm7638qxy4sipsab7d2864hh700cikg"; 18314 18356 }; 18315 18357 recipeFile = fetchurl { 18316 18358 url = "https://raw.githubusercontent.com/milkypostman/melpa/a4375d8ae519290fd5018626b075c226016f951d/recipes/hydra"; ··· 19522 19564 ivy-erlang-complete = callPackage ({ async, counsel, emacs, erlang, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: 19523 19565 melpaBuild { 19524 19566 pname = "ivy-erlang-complete"; 19525 - version = "0.2.4"; 19567 + version = "0.3.0"; 19526 19568 src = fetchFromGitHub { 19527 19569 owner = "s-kostyaev"; 19528 19570 repo = "ivy-erlang-complete"; 19529 - rev = "117369f882f81fb9cc88459a4072a2789138c136"; 19530 - sha256 = "0cy02idvhw459a3rlw2aj8hfmxmy7hx9x5d6g3x9nkv1lxkckn9f"; 19571 + rev = "acd6322571cb0820868a6febdc5326782a29b729"; 19572 + sha256 = "158cmxhky8nng43jj0d7w8126phx6zlr6r0kf9g2in5nkmbcbd33"; 19531 19573 }; 19532 19574 recipeFile = fetchurl { 19533 19575 url = "https://raw.githubusercontent.com/milkypostman/melpa/ac1b9e350d3f066e4e56202ebb443134d5fc3669/recipes/ivy-erlang-complete"; ··· 19627 19669 ivy-rtags = callPackage ({ fetchFromGitHub, fetchurl, ivy, lib, melpaBuild, rtags }: 19628 19670 melpaBuild { 19629 19671 pname = "ivy-rtags"; 19630 - version = "2.10"; 19672 + version = "2.11"; 19631 19673 src = fetchFromGitHub { 19632 19674 owner = "Andersbakken"; 19633 19675 repo = "rtags"; 19634 - rev = "3b3ace901f53827daef81d4c13658ec4feb318b4"; 19635 - sha256 = "1lm0s1918zsnd4hmfzf3xfrd68ip2zjnr9ciyf4bwpd66y0zfrbk"; 19676 + rev = "942ae6faa64ab6de73d093e628bc5b036f1a967c"; 19677 + sha256 = "19ljfz95jwbgw35d3y0m0p3l4as5llwvc6q3v2jlv3xl3ihpd923"; 19636 19678 }; 19637 19679 recipeFile = fetchurl { 19638 19680 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ivy-rtags"; ··· 20045 20087 js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 20046 20088 melpaBuild { 20047 20089 pname = "js2-mode"; 20048 - version = "20170116"; 20090 + version = "20170721"; 20049 20091 src = fetchFromGitHub { 20050 20092 owner = "mooz"; 20051 20093 repo = "js2-mode"; 20052 - rev = "03c679eb9914d58d7d9b7afc2036c482a9a01236"; 20053 - sha256 = "1kgmljgh71f2sljdsr134jrj1i6kgj9bwyh4pl1lrz0v4ahwgd6g"; 20094 + rev = "cb57d9b67390ae3ff70ab64169bbc4f1264244bc"; 20095 + sha256 = "0z7ya533ap6lm5qwfsbhn1k4jh1k1p5xyk5r27wd40rfzvd2x2gy"; 20054 20096 }; 20055 20097 recipeFile = fetchurl { 20056 20098 url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode"; ··· 20738 20780 ksp-cfg-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 20739 20781 melpaBuild { 20740 20782 pname = "ksp-cfg-mode"; 20741 - version = "0.4"; 20783 + version = "0.5"; 20742 20784 src = fetchFromGitHub { 20743 20785 owner = "lashtear"; 20744 20786 repo = "ksp-cfg-mode"; 20745 - rev = "07a957512e66030e1b9f8ac0f259051386acb5b5"; 20746 - sha256 = "1kbmlhfxbp704mky8v69lzqd20bbnqijfnv110yigsy3kxi7hdrr"; 20787 + rev = "713a22ee28688e581ec3ad60228c853b516a14b6"; 20788 + sha256 = "04r8mfsc349wdhx1brlf2l54v4dn58y69fqv3glhvml12962lwy3"; 20747 20789 }; 20748 20790 recipeFile = fetchurl { 20749 20791 url = "https://raw.githubusercontent.com/milkypostman/melpa/d49db5938fa4e3ab1176a955a4788b15c63d9e69/recipes/ksp-cfg-mode"; ··· 21603 21645 license = lib.licenses.free; 21604 21646 }; 21605 21647 }) {}; 21648 + mac-pseudo-daemon = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 21649 + melpaBuild { 21650 + pname = "mac-pseudo-daemon"; 21651 + version = "2.1"; 21652 + src = fetchFromGitHub { 21653 + owner = "DarwinAwardWinner"; 21654 + repo = "osx-pseudo-daemon"; 21655 + rev = "4d10e327cd8ee5bb7f006d68744be21c7097c1fc"; 21656 + sha256 = "0rjdjddlkaps9cfyc23kcr3cdh08c12jfgkz7ca2j141mm89pyp2"; 21657 + }; 21658 + recipeFile = fetchurl { 21659 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e89752e595c7cec9488e755c30af18f5f6fc1698/recipes/mac-pseudo-daemon"; 21660 + sha256 = "1kf677j6n7ykw8v5xsvbnnhm3hgjicl8fnf6yz9qw4whd0snrhn6"; 21661 + name = "mac-pseudo-daemon"; 21662 + }; 21663 + packageRequires = [ cl-lib ]; 21664 + meta = { 21665 + homepage = "https://melpa.org/#/mac-pseudo-daemon"; 21666 + license = lib.licenses.free; 21667 + }; 21668 + }) {}; 21606 21669 macro-math = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 21607 21670 melpaBuild { 21608 21671 pname = "macro-math"; ··· 22481 22544 meghanada = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, yasnippet }: 22482 22545 melpaBuild { 22483 22546 pname = "meghanada"; 22484 - version = "0.8.2"; 22547 + version = "0.8.3"; 22485 22548 src = fetchFromGitHub { 22486 22549 owner = "mopemope"; 22487 22550 repo = "meghanada-emacs"; 22488 - rev = "b507fc0e6fa4b6f1b05c46ecf563ad0af69e263a"; 22489 - sha256 = "0kiib5wchqhxm8rsxp3mfp3zdbgg57gbn8y70j5msa2sxdz26mm7"; 22551 + rev = "af65a0c60bbdda051e0d8ab0b7213249eb6703c5"; 22552 + sha256 = "08sxy81arypdj22bp6pdniwxxbhakay4ndvyvl7a6vjvn38ppzw8"; 22490 22553 }; 22491 22554 recipeFile = fetchurl { 22492 22555 url = "https://raw.githubusercontent.com/milkypostman/melpa/4c75c69b2f00be9a93144f632738272c1e375785/recipes/meghanada"; ··· 22520 22583 license = lib.licenses.free; 22521 22584 }; 22522 22585 }) {}; 22586 + memoize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 22587 + melpaBuild { 22588 + pname = "memoize"; 22589 + version = "1.1"; 22590 + src = fetchFromGitHub { 22591 + owner = "skeeto"; 22592 + repo = "emacs-memoize"; 22593 + rev = "636defefa9168f90bce6fc27431352ac7d01a890"; 22594 + sha256 = "04qgnlg4x6va7x364dhj1wbjmz8p5iq2vk36mn9198k2vxmijwzk"; 22595 + }; 22596 + recipeFile = fetchurl { 22597 + url = "https://raw.githubusercontent.com/milkypostman/melpa/6cc9be5bbcff04de5e6d3bb8c47d202fd350989b/recipes/memoize"; 22598 + sha256 = "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6"; 22599 + name = "memoize"; 22600 + }; 22601 + packageRequires = []; 22602 + meta = { 22603 + homepage = "https://melpa.org/#/memoize"; 22604 + license = lib.licenses.free; 22605 + }; 22606 + }) {}; 22523 22607 mentor = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, seq, xml-rpc }: 22524 22608 melpaBuild { 22525 22609 pname = "mentor"; ··· 22544 22628 merlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 22545 22629 melpaBuild { 22546 22630 pname = "merlin"; 22547 - version = "2.5.5"; 22631 + version = "3.0.0"; 22548 22632 src = fetchFromGitHub { 22549 22633 owner = "the-lambda-church"; 22550 22634 repo = "merlin"; ··· 23971 24055 nix-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 23972 24056 melpaBuild { 23973 24057 pname = "nix-mode"; 23974 - version = "1.11.12"; 24058 + version = "1.11.13"; 23975 24059 src = fetchFromGitHub { 23976 24060 owner = "NixOS"; 23977 24061 repo = "nix"; 23978 - rev = "04e071a5e4cdf7f5396a0e36874e0a023b7af232"; 23979 - sha256 = "1hzp70sm4bwlbqnd7mmzan10wsgb03a1zfiqmwxnc61jgjxd5jva"; 24062 + rev = "0ec723375bc6008a8a88024962b052c3fbbaf4b8"; 24063 + sha256 = "1wg622s0qvgdzry4mb6a7jjpql7la58kwhzpif0akyd689xf9d9s"; 23980 24064 }; 23981 24065 recipeFile = fetchurl { 23982 24066 url = "https://raw.githubusercontent.com/milkypostman/melpa/f2b542189cfde5b9b1ebee4625684949b6704ded/recipes/nix-mode"; ··· 24055 24139 nodejs-repl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 24056 24140 melpaBuild { 24057 24141 pname = "nodejs-repl"; 24058 - version = "0.1.1"; 24142 + version = "0.1.6"; 24059 24143 src = fetchFromGitHub { 24060 24144 owner = "abicky"; 24061 24145 repo = "nodejs-repl.el"; 24062 - rev = "d821ef49a8eae0e405fd2a000246f0475542a575"; 24063 - sha256 = "1fwz6wpair617p9l2wdx923zpbbklfcdrygsryjx5gpnnm649mmy"; 24146 + rev = "16770656a4072f8fbbd29d0cace4893a3d5541b1"; 24147 + sha256 = "1hcvi4nhgfrjalq8nw20kjjpcf4xmjid70qpqdv8dsgfann5i3wl"; 24064 24148 }; 24065 24149 recipeFile = fetchurl { 24066 24150 url = "https://raw.githubusercontent.com/milkypostman/melpa/14f22f97416111fcb02e299ff2b20c44fb75f049/recipes/nodejs-repl"; ··· 24769 24853 src = fetchFromGitHub { 24770 24854 owner = "OmniSharp"; 24771 24855 repo = "omnisharp-emacs"; 24772 - rev = "ab4c6bb04cda35510fe751e546b5c0bb4dc3371d"; 24773 - sha256 = "0zkd5hp5xk0wjlv6nqi38dnhrzk7jzcd8546wqfw0my10kb1ycs2"; 24856 + rev = "ad147956b936fd528d26ca88158a8af96ff5827a"; 24857 + sha256 = "04vkhdp3kxba1h5mjd9jblhapb5h2x709ldz4pc078qgyh5g1kpm"; 24774 24858 }; 24775 24859 recipeFile = fetchurl { 24776 24860 url = "https://raw.githubusercontent.com/milkypostman/melpa/e327c483be04de32638b420c5b4e043d12a2cd01/recipes/omnisharp"; ··· 26147 26231 license = lib.licenses.free; 26148 26232 }; 26149 26233 }) {}; 26234 + osx-pseudo-daemon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 26235 + melpaBuild { 26236 + pname = "osx-pseudo-daemon"; 26237 + version = "2.1"; 26238 + src = fetchFromGitHub { 26239 + owner = "DarwinAwardWinner"; 26240 + repo = "osx-pseudo-daemon"; 26241 + rev = "4d10e327cd8ee5bb7f006d68744be21c7097c1fc"; 26242 + sha256 = "0rjdjddlkaps9cfyc23kcr3cdh08c12jfgkz7ca2j141mm89pyp2"; 26243 + }; 26244 + recipeFile = fetchurl { 26245 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e89752e595c7cec9488e755c30af18f5f6fc1698/recipes/osx-pseudo-daemon"; 26246 + sha256 = "013h2n27r4rvj8ych5cglj8qprkdxmmmsfi51fggqqvmv7qmr2hw"; 26247 + name = "osx-pseudo-daemon"; 26248 + }; 26249 + packageRequires = []; 26250 + meta = { 26251 + homepage = "https://melpa.org/#/osx-pseudo-daemon"; 26252 + license = lib.licenses.free; 26253 + }; 26254 + }) {}; 26150 26255 osx-trash = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 26151 26256 melpaBuild { 26152 26257 pname = "osx-trash"; ··· 26570 26675 pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }: 26571 26676 melpaBuild { 26572 26677 pname = "pandoc-mode"; 26573 - version = "2.22"; 26678 + version = "2.23"; 26574 26679 src = fetchFromGitHub { 26575 26680 owner = "joostkremers"; 26576 26681 repo = "pandoc-mode"; 26577 - rev = "b4e03ab345043fa7447dd59e59234dd33395e3cc"; 26578 - sha256 = "08yxi878l1hibcsq0bb93g2rjwlc0xw415rgn1rzs3zib2hqj1qc"; 26682 + rev = "58f893d54c0916ad832097a579288ef8ce405da5"; 26683 + sha256 = "03nh5ivcwknnsw9khz196n6s3pa1392jk7pm2mr4yjjs24izyz1i"; 26579 26684 }; 26580 26685 recipeFile = fetchurl { 26581 26686 url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/pandoc-mode"; ··· 29878 29983 license = lib.licenses.free; 29879 29984 }; 29880 29985 }) {}; 29986 + rib-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 29987 + melpaBuild { 29988 + pname = "rib-mode"; 29989 + version = "1.0.2"; 29990 + src = fetchFromGitHub { 29991 + owner = "blezek"; 29992 + repo = "rib-mode"; 29993 + rev = "4172e902fd66f235184c0eb6db7fd4a73dbd0866"; 29994 + sha256 = "0s9dyqv4yh0zxngay951g98g07029h51m4r2fc7ib2arw6srfram"; 29995 + }; 29996 + recipeFile = fetchurl { 29997 + url = "https://raw.githubusercontent.com/milkypostman/melpa/c38c18f3eb75d559752fcd9956464fef890be728/recipes/rib-mode"; 29998 + sha256 = "0qgbzrwbbgg4mzjb7yw85qs83b6hpldazip1cigywr46w7f81587"; 29999 + name = "rib-mode"; 30000 + }; 30001 + packageRequires = [ emacs ]; 30002 + meta = { 30003 + homepage = "https://melpa.org/#/rib-mode"; 30004 + license = lib.licenses.free; 30005 + }; 30006 + }) {}; 29881 30007 rich-minority = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 29882 30008 melpaBuild { 29883 30009 pname = "rich-minority"; ··· 30112 30238 rtags = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 30113 30239 melpaBuild { 30114 30240 pname = "rtags"; 30115 - version = "2.10"; 30241 + version = "2.11"; 30116 30242 src = fetchFromGitHub { 30117 30243 owner = "Andersbakken"; 30118 30244 repo = "rtags"; 30119 - rev = "3b3ace901f53827daef81d4c13658ec4feb318b4"; 30120 - sha256 = "1lm0s1918zsnd4hmfzf3xfrd68ip2zjnr9ciyf4bwpd66y0zfrbk"; 30245 + rev = "942ae6faa64ab6de73d093e628bc5b036f1a967c"; 30246 + sha256 = "19ljfz95jwbgw35d3y0m0p3l4as5llwvc6q3v2jlv3xl3ihpd923"; 30121 30247 }; 30122 30248 recipeFile = fetchurl { 30123 30249 url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/rtags"; ··· 30169 30295 packageRequires = [ inf-ruby ]; 30170 30296 meta = { 30171 30297 homepage = "https://melpa.org/#/ruby-compilation"; 30298 + license = lib.licenses.free; 30299 + }; 30300 + }) {}; 30301 + ruby-electric = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 30302 + melpaBuild { 30303 + pname = "ruby-electric"; 30304 + version = "2.2.3"; 30305 + src = fetchFromGitHub { 30306 + owner = "knu"; 30307 + repo = "ruby-electric.el"; 30308 + rev = "dfb4b448a63ae749c74edf6415ad569d52cab904"; 30309 + sha256 = "0z3whvjmxbyk7lrxl3z2lj1skacwd050b5jvpnw6gcdm2hr8mfbs"; 30310 + }; 30311 + recipeFile = fetchurl { 30312 + url = "https://raw.githubusercontent.com/milkypostman/melpa/5fd5fa797a813e02a6433ecbe2bca1270a383753/recipes/ruby-electric"; 30313 + sha256 = "02xskivi917l8xyhrij084dmzwjq3knjcn65l2iwz34s767fbwl2"; 30314 + name = "ruby-electric"; 30315 + }; 30316 + packageRequires = []; 30317 + meta = { 30318 + homepage = "https://melpa.org/#/ruby-electric"; 30172 30319 license = lib.licenses.free; 30173 30320 }; 30174 30321 }) {}; ··· 30698 30845 sekka = callPackage ({ cl-lib ? null, concurrent, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: 30699 30846 melpaBuild { 30700 30847 pname = "sekka"; 30701 - version = "1.6.6"; 30848 + version = "1.7.1"; 30702 30849 src = fetchFromGitHub { 30703 30850 owner = "kiyoka"; 30704 30851 repo = "sekka"; 30705 - rev = "987c1cce65c8f30b12cdb5991e1b1ad9da766916"; 30706 - sha256 = "03930cfqq97f7m6z9da2y9388iyymc56b1vdrl5a6mpggv3wifn7"; 30852 + rev = "b9b2ba5aca378ad12cb9e0f0ac537d695bd39937"; 30853 + sha256 = "1karh4pa190xmjbw1ai2f594i8nf9qa0lxybn3syif7r50ciym3c"; 30707 30854 }; 30708 30855 recipeFile = fetchurl { 30709 30856 url = "https://raw.githubusercontent.com/milkypostman/melpa/350bbb5761b5ba69aeb4acf6d7cdf2256dba95a6/recipes/sekka"; ··· 32039 32186 license = lib.licenses.free; 32040 32187 }; 32041 32188 }) {}; 32189 + solaire-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: 32190 + melpaBuild { 32191 + pname = "solaire-mode"; 32192 + version = "1.0.2"; 32193 + src = fetchFromGitHub { 32194 + owner = "hlissner"; 32195 + repo = "emacs-solaire-mode"; 32196 + rev = "0f467e5f309e5a36280e06b40c0e6bbe90e06358"; 32197 + sha256 = "1jka6213sw3rqan6s31s1ndyd0h2gwxvl0rcfm4jqc68mfyikzma"; 32198 + }; 32199 + recipeFile = fetchurl { 32200 + url = "https://raw.githubusercontent.com/milkypostman/melpa/52c69070eef3003eb53e1436c538779c74670ce6/recipes/solaire-mode"; 32201 + sha256 = "0pvgip12xl16rwz4wqmqjd8nhh3a299aknfsghazmxigamlmlsl5"; 32202 + name = "solaire-mode"; 32203 + }; 32204 + packageRequires = [ cl-lib emacs ]; 32205 + meta = { 32206 + homepage = "https://melpa.org/#/solaire-mode"; 32207 + license = lib.licenses.free; 32208 + }; 32209 + }) {}; 32042 32210 solarized-theme = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: 32043 32211 melpaBuild { 32044 32212 pname = "solarized-theme"; ··· 32567 32735 ssh-deploy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: 32568 32736 melpaBuild { 32569 32737 pname = "ssh-deploy"; 32570 - version = "1.1"; 32738 + version = "1.2"; 32571 32739 src = fetchFromGitHub { 32572 32740 owner = "cjohansson"; 32573 32741 repo = "emacs-ssh-deploy"; 32574 - rev = "3569e5ea6892d6d7f4ef36bf41462af011e1a114"; 32575 - sha256 = "0l3h6w13xc81i6vavfsg617ly8m2y8yjzbwa6zwwkfqi301kgpij"; 32742 + rev = "dbd8608551bc9e05280415b7b3937b1a151c7718"; 32743 + sha256 = "1045snp3xdfa9nf34b1f0w4ql8kjl5m2jl7imxj5n46g579g9dhr"; 32576 32744 }; 32577 32745 recipeFile = fetchurl { 32578 32746 url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ssh-deploy"; ··· 36057 36225 version = "0.9.1"; 36058 36226 src = fetchhg { 36059 36227 url = "https://bitbucket.com/ArneBab/wisp"; 36060 - rev = "f94ec5fed665"; 36061 - sha256 = "0k66dxxc8k2snzmw385a78xqfgbpjzsfg3jm0gk5wqyn185ab50n"; 36228 + rev = "1ab8f296baeb"; 36229 + sha256 = "02g34b7kp3lkv4sfgf1762vlmmsnxib37v8385lmv90ww24lwggg"; 36062 36230 }; 36063 36231 recipeFile = fetchurl { 36064 36232 url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/wisp-mode"; ··· 36110 36278 packageRequires = [ async dash emacs ]; 36111 36279 meta = { 36112 36280 homepage = "https://melpa.org/#/with-editor"; 36281 + license = lib.licenses.free; 36282 + }; 36283 + }) {}; 36284 + with-simulated-input = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, seq }: 36285 + melpaBuild { 36286 + pname = "with-simulated-input"; 36287 + version = "2.0"; 36288 + src = fetchFromGitHub { 36289 + owner = "DarwinAwardWinner"; 36290 + repo = "with-simulated-input"; 36291 + rev = "568bfb8e1d59a19cb309fd72a7ab0e9e51229e31"; 36292 + sha256 = "1aa8ya5yzsijra7cf9rm80ffddv520kzm9rggw3nr3dj2sk03p8c"; 36293 + }; 36294 + recipeFile = fetchurl { 36295 + url = "https://raw.githubusercontent.com/milkypostman/melpa/e4ddf16e19f5018106a423327ddc7e7499cf9248/recipes/with-simulated-input"; 36296 + sha256 = "0113la76nbp18vaffsd7w7wcw5k2sqwgnjq1gslf4khdfqghrkwk"; 36297 + name = "with-simulated-input"; 36298 + }; 36299 + packageRequires = [ emacs s seq ]; 36300 + meta = { 36301 + homepage = "https://melpa.org/#/with-simulated-input"; 36113 36302 license = lib.licenses.free; 36114 36303 }; 36115 36304 }) {}; ··· 36683 36872 yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: 36684 36873 melpaBuild { 36685 36874 pname = "yasnippet"; 36686 - version = "0.11.0"; 36875 + version = "0.12.1"; 36687 36876 src = fetchFromGitHub { 36688 36877 owner = "joaotavora"; 36689 36878 repo = "yasnippet"; 36690 - rev = "e6b865127783f498b61fa99ad0f5413200ac09d0"; 36691 - sha256 = "0djj2gi0s0jyxpqgfk2818xnj5ykwhzy5k9yi65klsw2nanhh8y9"; 36879 + rev = "0463c75b636fe02273c2b8ca85f36b56a206c5c5"; 36880 + sha256 = "1l8h681x5v78k6wkcmhb5kdw9mc13kcmq3aiqg0r9dn493ifj1v1"; 36692 36881 }; 36693 36882 recipeFile = fetchurl { 36694 36883 url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1927dc3351d3522de1baccdc4ce200ba52bd6e/recipes/yasnippet"; ··· 36727 36916 version = "1.78"; 36728 36917 src = fetchhg { 36729 36918 url = "https://www.yatex.org/hgrepos/yatex/"; 36730 - rev = "e9299b77df1f"; 36731 - sha256 = "0nnpzcj23q964v4rfxzdll1r95zd6zzqvzcgxh7h603a41r3w1wm"; 36919 + rev = "4f8551386af2"; 36920 + sha256 = "0qvp54pzc6m52j5xkwp25nwdlik6v879halmfvcpn3z0grhrslbn"; 36732 36921 }; 36733 36922 recipeFile = fetchurl { 36734 36923 url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/yatex";
+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 = "20170717"; 4 + version = "20170724"; 5 5 src = fetchurl { 6 - url = "http://orgmode.org/elpa/org-20170717.tar"; 7 - sha256 = "1cbk01awnyan1jap184v2bxsk97k0p2qn19z7gnid6wiblybgs89"; 6 + url = "http://orgmode.org/elpa/org-20170724.tar"; 7 + sha256 = "07rpr8zf12c62sfbk9c9lvvfphs3ws136d3vlnq6j7gypdzyb32m"; 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 = "20170717"; 17 + version = "20170724"; 18 18 src = fetchurl { 19 - url = "http://orgmode.org/elpa/org-plus-contrib-20170717.tar"; 20 - sha256 = "0710ba6gq04cg8d87b5wi7bz9gq9yqvqmkmgscawfm2ynfw2q8sa"; 19 + url = "http://orgmode.org/elpa/org-plus-contrib-20170724.tar"; 20 + sha256 = "12xgvdmpz6wnylcvfngh7lqvgs9wv1bdrm7l7fivakx8y3dyq7k7"; 21 21 }; 22 22 packageRequires = []; 23 23 meta = {
+3 -3
pkgs/applications/misc/cura/default.nix
··· 2 2 3 3 mkDerivation rec { 4 4 name = "cura-${version}"; 5 - version = "2.4.0"; 5 + version = "2.6.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Ultimaker"; 9 9 repo = "Cura"; 10 10 rev = version; 11 - sha256 = "04iglmjg9rzmlfrll6g7bcckkla327938xh8qmbdfrh215aivdlp"; 11 + sha256 = "03rsw6nafg3y9if2dlnzsj6c9x3x7cv6gs4a1w84jaq4p1f8fcsd"; 12 12 }; 13 13 14 14 buildInputs = [ qtbase ]; 15 15 propagatedBuildInputs = with python3.pkgs; [ uranium zeroconf pyserial ]; 16 16 nativeBuildInputs = [ cmake python3.pkgs.wrapPython ]; 17 17 18 - cmakeFlags = [ "-DCMAKE_MODULE_PATH=${python3.pkgs.uranium}/share/cmake-${cmake.majorVersion}/Modules" ]; 18 + cmakeFlags = [ "-DURANIUM_DIR=${python3.pkgs.uranium.src}" ]; 19 19 20 20 postPatch = '' 21 21 sed -i 's,/python''${PYTHON_VERSION_MAJOR}/dist-packages,/python''${PYTHON_VERSION_MAJOR}.''${PYTHON_VERSION_MINOR}/site-packages,g' CMakeLists.txt
+2 -2
pkgs/applications/misc/curaengine/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "curaengine-${version}"; 5 - version = "2.4.0"; 5 + version = "2.6.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Ultimaker"; 9 9 repo = "CuraEngine"; 10 10 rev = version; 11 - sha256 = "1n587cqm310kzb2zbc31199x7ybgxzjq91hslb1zcb8qg8qqmixm"; 11 + sha256 = "1vixxxpwrprcrma0v5ckjvcy45pj32rkf5pk4w7rans9k2ig66ic"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+15
pkgs/applications/misc/ephemeralpg/default.nix
··· 1 + { stdenv, fetchurl, postgresql, makeWrapper }: 2 + stdenv.mkDerivation rec { 3 + name = "ephemeralpg-${version}"; 4 + version = "2.2"; 5 + src = fetchurl { 6 + url = "http://ephemeralpg.org/code/${name}.tar.gz"; 7 + sha256 = "1v48bcmc23zzqbha80p3spxd5l347qnjzs4z44wl80i2s8fdzlyz"; 8 + }; 9 + buildInputs = [ makeWrapper ]; 10 + installPhase = '' 11 + mkdir -p $out 12 + PREFIX=$out make install 13 + wrapProgram $out/bin/pg_tmp --prefix PATH : ${postgresql}/bin 14 + ''; 15 + }
+2 -2
pkgs/applications/misc/josm/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "josm-${version}"; 5 - version = "12275"; 5 + version = "12450"; 6 6 7 7 src = fetchurl { 8 8 url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar"; 9 - sha256 = "14y8ga1g3s9234zcgan16sw6va19jlwhfq39z0ayqmzna0fxi88a"; 9 + sha256 = "1l817mclbzyin9yh16q9jcqi31cz0qy6yi31hc8jp5ablknk979j"; 10 10 }; 11 11 12 12 phases = [ "installPhase" ];
+4 -3
pkgs/applications/misc/octoprint/default.nix
··· 54 54 55 55 in pythonPackages.buildPythonApplication rec { 56 56 name = "OctoPrint-${version}"; 57 - version = "1.3.2"; 57 + version = "1.3.4"; 58 58 59 59 src = fetchFromGitHub { 60 60 owner = "foosel"; 61 61 repo = "OctoPrint"; 62 62 rev = version; 63 - sha256 = "0wyrxi754xa111b88fqvaw2s5ib2a925dlrgym5mn93i027m50wk"; 63 + sha256 = "06l8khbq3waaaa4cqpv6056w1ziylkfgzlb28v30i1h234rlkknq"; 64 64 }; 65 65 66 66 # We need old Tornado ··· 69 69 semantic-version flask_principal werkzeug flaskbabel tornado 70 70 psutil pyserial flask_login netaddr markdown sockjs-tornado 71 71 pylru pyyaml sarge feedparser netifaces click websocket_client 72 - scandir chainmap future 72 + scandir chainmap future dateutil 73 73 ]; 74 74 75 75 buildInputs = with pythonPackages; [ nose mock ddt ]; ··· 90 90 -e 's,werkzeug>=[^"]*,werkzeug,g' \ 91 91 -e 's,psutil>=[^"]*,psutil,g' \ 92 92 -e 's,requests>=[^"]*,requests,g' \ 93 + -e 's,future>=[^"]*,future,g' \ 93 94 setup.py 94 95 ''; 95 96
+4 -9
pkgs/applications/misc/octoprint/plugins.nix
··· 12 12 13 13 m33-fio = buildPlugin rec { 14 14 name = "M33-Fio-${version}"; 15 - version = "1.17"; 15 + version = "1.20"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "donovan6000"; 19 19 repo = "M33-Fio"; 20 20 rev = "V${version}"; 21 - sha256 = "19r860hqax09a79s9bl181ab7jsgx0pa8fvnr62lbgkwhis7m8mh"; 21 + sha256 = "1ng7lzlkqsjcr1w7wgzwsqkkvcvpajcj2cwqlffh95916sw8n767"; 22 22 }; 23 23 24 24 patches = [ 25 25 ./m33-fio-one-library.patch 26 - # Fix incompatibility with new OctoPrint 27 - (fetchpatch { 28 - url = "https://github.com/foosel/M33-Fio/commit/bdf2422dee3fb8e53b33f087f734956c3b209d72.patch"; 29 - sha256 = "0jm415sx6d3m0z4gfhbnxlasg08zf3f3mslaj4amn9wbvsik9s5d"; 30 - }) 31 26 ]; 32 27 33 28 postPatch = '' ··· 69 64 70 65 stlviewer = buildPlugin rec { 71 66 name = "OctoPrint-STLViewer-${version}"; 72 - version = "0.3.0"; 67 + version = "0.4.1"; 73 68 74 69 src = fetchFromGitHub { 75 70 owner = "jneilliii"; 76 71 repo = "OctoPrint-STLViewer"; 77 72 rev = "v${version}"; 78 - sha256 = "1a6sa8pw9ay7x27pfwr3nzb22x3jaw0c9vwyz4mrj76zkiw6svfi"; 73 + sha256 = "1f64s37g2d79g76v0vjnjrc2jp2gwrsnfgx7w3n0hkf1lz1pjkm0"; 79 74 }; 80 75 81 76 meta = with stdenv.lib; {
+2 -2
pkgs/applications/misc/sakura/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "sakura-${version}"; 5 - version = "3.3.4"; 5 + version = "3.4.0"; 6 6 7 7 src = fetchurl { 8 8 url = "http://launchpad.net/sakura/trunk/${version}/+download/${name}.tar.bz2"; 9 - sha256 = "1fnkrkzf2ysav1ljgi4y4w8kvbwiwgmg1462xhizlla8jqa749r7"; 9 + sha256 = "1vj07xnkalb8q6ippf4bmv5cf4266p1j9m80sxb6hncx0h8paj04"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ cmake perl pkgconfig ];
-70
pkgs/applications/networking/instant-messengers/skype/default.nix
··· 1 - { stdenv, fetchurl, libXv, libXi, libXrender, libXrandr, zlib, glib 2 - , libXext, libX11, libXScrnSaver, libSM, qt4, libICE, freetype, fontconfig 3 - , libpulseaudio, lib, ... }: 4 - 5 - assert stdenv.system == "i686-linux"; 6 - 7 - stdenv.mkDerivation rec { 8 - name = "skype-4.3.0.37"; 9 - 10 - src = fetchurl { 11 - url = "http://download.skype.com/linux/${name}.tar.bz2"; 12 - sha256 = "0bc9kck99rcsqzxzw3j6vnw5byvr8c9wixrx609zp255g0wxr6cc"; 13 - }; 14 - 15 - buildInputs = [ 16 - stdenv.glibc 17 - stdenv.cc.cc 18 - libXv 19 - libXext 20 - libX11 21 - qt4 22 - libXScrnSaver 23 - libSM 24 - libICE 25 - libXi 26 - libXrender 27 - libXrandr 28 - libpulseaudio 29 - freetype 30 - fontconfig 31 - zlib 32 - glib 33 - ]; 34 - 35 - phases = "unpackPhase installPhase"; 36 - 37 - installPhase = '' 38 - mkdir -p $out/{libexec/skype/,bin} 39 - cp -r * $out/libexec/skype/ 40 - 41 - # Fix execution on PaX-enabled kernels 42 - paxmark m $out/libexec/skype/skype 43 - 44 - patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 45 - --set-rpath "${lib.makeLibraryPath buildInputs}" $out/libexec/skype/skype 46 - 47 - cat > $out/bin/skype << EOF 48 - #!${stdenv.shell} 49 - export PULSE_LATENCY_MSEC=60 # workaround for pulseaudio glitches 50 - exec $out/libexec/skype/skype --resources=$out/libexec/skype "\$@" 51 - EOF 52 - 53 - chmod +x $out/bin/skype 54 - 55 - # Fixup desktop file 56 - substituteInPlace skype.desktop --replace \ 57 - "Icon=skype.png" "Icon=$out/libexec/skype/icons/SkypeBlue_128x128.png" 58 - substituteInPlace skype.desktop --replace \ 59 - "Terminal=0" "Terminal=false" 60 - mkdir -p $out/share/applications 61 - mv skype.desktop $out/share/applications 62 - ''; 63 - 64 - meta = { 65 - description = "A proprietary voice-over-IP (VoIP) client"; 66 - homepage = http://www.skype.com/; 67 - license = stdenv.lib.licenses.unfree; 68 - platforms = [ "i686-linux" ]; 69 - }; 70 - }
+59
pkgs/applications/networking/remote/anydesk/default.nix
··· 1 + { stdenv, fetchurl, makeWrapper 2 + , cairo, gdk_pixbuf, glib, gnome2, gtk2, pango, xorg 3 + , lsb-release }: 4 + 5 + let 6 + sha256 = { 7 + "x86_64-linux" = "0g19sac4j3m1nf400vn6qcww7prqg2p4k4zsj74i109kk1396aa2"; 8 + "i686-linux" = "1dd4ai2pclav9g872xil3x67bxy32gvz9pb3w76383pcsdh5zh45"; 9 + }."${stdenv.system}" or (throw "system ${stdenv.system} not supported"); 10 + 11 + arch = { 12 + "x86_64-linux" = "amd64"; 13 + "i686-linux" = "i686"; 14 + }."${stdenv.system}" or (throw "system ${stdenv.system} not supported"); 15 + 16 + in stdenv.mkDerivation rec { 17 + name = "anydesk-${version}"; 18 + version = "2.9.4"; 19 + 20 + src = fetchurl { 21 + url = "https://download.anydesk.com/linux/${name}-${arch}.tar.gz"; 22 + inherit sha256; 23 + }; 24 + 25 + libPath = stdenv.lib.makeLibraryPath ([ 26 + cairo gdk_pixbuf glib gtk2 stdenv.cc.cc pango 27 + gnome2.gtkglext 28 + ] ++ (with xorg; [ 29 + libxcb libX11 libXdamage libXext libXfixes libXi 30 + libXrandr libXtst 31 + ])); 32 + 33 + nativeBuildInputs = [ makeWrapper ]; 34 + 35 + installPhase = '' 36 + mkdir -p $out/{bin,share/icons/hicolor,share/doc/anydesk} 37 + install -m755 anydesk $out/bin/anydesk 38 + cp changelog copyright README $out/share/doc/anydesk 39 + cp -r icons/* $out/share/icons/hicolor/ 40 + ''; 41 + 42 + postFixup = '' 43 + patchelf \ 44 + --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ 45 + --set-rpath "${libPath}" \ 46 + $out/bin/anydesk 47 + 48 + wrapProgram $out/bin/anydesk \ 49 + --prefix PATH : ${stdenv.lib.makeBinPath [ lsb-release ]} 50 + ''; 51 + 52 + meta = with stdenv.lib; { 53 + description = "Desktop sharing application, providing remote support and online meetings"; 54 + homepage = http://www.anydesk.com; 55 + license = licenses.unfree; 56 + platforms = platforms.linux; 57 + maintainers = with maintainers; [ peterhoeg ]; 58 + }; 59 + }
+2 -2
pkgs/applications/science/math/geogebra/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "geogebra-${version}"; 5 - version = "5-0-369-0"; 5 + version = "5-0-377-0"; 6 6 7 7 preferLocalBuild = true; 8 8 9 9 src = fetchurl { 10 10 url = "http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${version}.tar.bz2"; 11 - sha256 = "0b5015z1ff3ksnkmyn2hbfwvhqp1572pdn8llpws32k7w1lb0jnk"; 11 + sha256 = "0rvsjpf7pyz8z5yrqmc5ixzq7mnf1pyp00i914qd6wn5bx0apkxv"; 12 12 }; 13 13 14 14 srcIcon = fetchurl {
+6 -2
pkgs/applications/video/avidemux/default.nix
··· 14 14 }: 15 15 16 16 let 17 - version = "2.6.18"; 17 + version = "2.6.20"; 18 18 19 19 src = fetchurl { 20 20 url = "mirror://sourceforge/avidemux/avidemux/${version}/avidemux_${version}.tar.gz"; 21 - sha256 = "1zmacx8wdhbjc8hpf8hmdmbh2pbkdkcyb23cl3j1mx7vkw06c31l"; 21 + sha256 = "17zgqz6i0bcan04wqwksf7y4z73vxmabcpnd9y5nhx7br5zwpih3"; 22 22 }; 23 23 24 24 common = { ··· 88 88 89 89 fixupPhase 90 90 ''; 91 + 92 + meta = common.meta // args.meta or {}; 91 93 }); 92 94 93 95 in { ··· 114 116 pluginUi = "GTK"; 115 117 isUi = true; 116 118 buildDirs = [ "avidemux/gtk" ]; 119 + # Code seems unmaintained. 120 + meta.broken = true; 117 121 }; 118 122 119 123 avidemux_common = buildPlugin {
+3
pkgs/applications/video/mplayer/default.nix
··· 10 10 , vdpauSupport ? false, libvdpau ? null 11 11 , cddaSupport ? !stdenv.isDarwin, cdparanoia ? null 12 12 , dvdnavSupport ? !stdenv.isDarwin, libdvdnav ? null 13 + , dvdreadSupport ? true, libdvdread ? null 13 14 , bluraySupport ? true, libbluray ? null 14 15 , amrSupport ? false, amrnb ? null, amrwb ? null 15 16 , cacaSupport ? true, libcaca ? null ··· 39 40 assert vdpauSupport -> libvdpau != null; 40 41 assert cddaSupport -> cdparanoia != null; 41 42 assert dvdnavSupport -> libdvdnav != null; 43 + assert dvdreadSupport -> libdvdread != null; 42 44 assert bluraySupport -> libbluray != null; 43 45 assert amrSupport -> (amrnb != null && amrwb != null); 44 46 assert cacaSupport -> libcaca != null; ··· 110 112 ++ optional cacaSupport libcaca 111 113 ++ optional xineramaSupport libXinerama 112 114 ++ optional dvdnavSupport libdvdnav 115 + ++ optional dvdreadSupport libdvdread 113 116 ++ optional bluraySupport libbluray 114 117 ++ optional cddaSupport cdparanoia 115 118 ++ optional jackaudioSupport libjack2
+5 -4
pkgs/applications/virtualization/virtualbox/default.nix
··· 18 18 let 19 19 python = python2; 20 20 buildType = "release"; 21 - extpack = "1952ikz4xsjgdd0pzdx1riwaingyhkxp0ind31yzqc4d0hp8l6b5"; 22 - extpackRev = "117012"; 23 - main = "0q5vjsih4ndn1b0s9l1ppxng6dljld5bin5nqfrhvgr2ldlv2bgf"; 24 - version = "5.1.24"; 21 + # Manually sha256sum the extensionPack file, must be hex! 22 + extpack = "14f152228495a715f526eb74134d43c960919cc534d2bc67cfe34a63e6cf7721"; 23 + extpackRev = "117224"; 24 + main = "1af8h3d3sdpcxcp5g75qfq10z81l7m8gk0sz8zqix8c1wqsm0wdm"; 25 + version = "5.1.26"; 25 26 26 27 # See https://github.com/NixOS/nixpkgs/issues/672 for details 27 28 extensionPack = requireFile rec {
+14 -17
pkgs/applications/window-managers/bspwm/default.nix
··· 1 - { stdenv, fetchurl, libxcb, libXinerama, sxhkd, xcbutil, xcbutilkeysyms, xcbutilwm }: 1 + { stdenv, fetchFromGitHub, libxcb, libXinerama 2 + , sxhkd, xcbutil, xcbutilkeysyms, xcbutilwm 3 + }: 2 4 3 5 stdenv.mkDerivation rec { 4 6 name = "bspwm-${version}"; 5 - version = "0.9.2"; 6 - 7 + version = "0.9.3"; 7 8 8 - src = fetchurl { 9 - url = "https://github.com/baskerville/bspwm/archive/${version}.tar.gz"; 10 - sha256 = "1w6wxwgyb14w664xafp3b2ps6zzf9yw7cfhbh9229x2hil9rss1k"; 9 + src = fetchFromGitHub { 10 + owner = "baskerville"; 11 + repo = "bspwm"; 12 + rev = version; 13 + sha256 = "144g0vg0jsy0lja2jv1qbdps8k05nk70pc7vslj3im61a21vnbis"; 11 14 }; 12 15 13 16 buildInputs = [ libxcb libXinerama xcbutil xcbutilkeysyms xcbutilwm ]; 14 17 15 - buildPhase = '' 16 - make PREFIX=$out 17 - ''; 18 + makeFlags = [ "PREFIX=$(out)" ]; 18 19 19 - installPhase = '' 20 - make PREFIX=$out install 21 - ''; 22 - 23 - meta = { 20 + meta = with stdenv.lib; { 24 21 description = "A tiling window manager based on binary space partitioning"; 25 22 homepage = http://github.com/baskerville/bspwm; 26 - maintainers = [ stdenv.lib.maintainers.meisternu stdenv.lib.maintainers.epitrochoid ]; 27 - license = stdenv.lib.licenses.bsd2; 28 - platforms = stdenv.lib.platforms.linux; 23 + maintainers = with maintainers; [ meisternu epitrochoid ]; 24 + license = licenses.bsd2; 25 + platforms = platforms.linux; 29 26 }; 30 27 }
+17 -2
pkgs/build-support/docker/default.nix
··· 6 6 findutils, 7 7 go, 8 8 jshon, 9 + jq, 9 10 lib, 10 11 pkgs, 11 12 pigz, ··· 408 409 contents runAsRoot diskSize extraCommands; 409 410 }; 410 411 result = runCommand "docker-image-${baseName}.tar.gz" { 411 - buildInputs = [ jshon pigz coreutils findutils ]; 412 + buildInputs = [ jshon pigz coreutils findutils jq ]; 412 413 # Image name and tag must be lowercase 413 414 imageName = lib.toLower name; 414 415 imageTag = lib.toLower tag; ··· 435 436 if [[ -n "$fromImage" ]]; then 436 437 echo "Unpacking base image..." 437 438 tar -C image -xpf "$fromImage" 439 + # Do not import the base image configuration and manifest 440 + rm -f image/*.json 441 + rm -f image/manifest.json 438 442 439 443 if [[ -z "$fromImageName" ]]; then 440 444 fromImageName=$(jshon -k < image/repositories|head -n1) ··· 493 497 # Use the temp folder we've been working on to create a new image. 494 498 mv temp image/$layerID 495 499 500 + # Create image configuration file (used by registry v2) by using 501 + # the configuration of the last layer 502 + SHA_ARRAY=$(find ./ -name layer.tar | xargs sha256sum | cut -d" " -f1 | xargs -I{} echo -n '"sha256:{}" ' | sed 's/" "/","/g' | awk '{ print "["$1"]" }') 503 + jq ". + {\"rootfs\": {\"diff_ids\": $SHA_ARRAY, \"type\": \"layers\"}}" image/$layerID/json > config.json 504 + CONFIG_SHA=$(sha256sum config.json | cut -d ' ' -f1) 505 + mv config.json image/$CONFIG_SHA.json 506 + 507 + # Create image manifest 508 + LAYER_PATHS=$(find image/ -name layer.tar -printf '"%P" ' | sed 's/" "/","/g') 509 + jq -n "[{\"Config\":\"$CONFIG_SHA.json\",\"RepoTags\":[\"$imageName:$imageTag\"],\"Layers\":[$LAYER_PATHS]}]" > image/manifest.json 510 + 496 511 # Store the json under the name image/repositories. 497 512 jshon -n object \ 498 513 -n object -s "$layerID" -i "$imageTag" \ ··· 502 517 chmod -R a-w image 503 518 504 519 echo "Cooking the image..." 505 - tar -C image --mtime="@$SOURCE_DATE_EPOCH" --owner=0 --group=0 -c . | pigz -nT > $out 520 + tar -C image --mtime="@$SOURCE_DATE_EPOCH" --owner=0 --group=0 --xform s:'./':: -c . | pigz -nT > $out 506 521 507 522 echo "Finished." 508 523 '';
+8 -7
pkgs/build-support/vm/default.nix
··· 750 750 { name, fullName, size ? 4096, urlPrefix 751 751 , packagesList ? "", packagesLists ? [packagesList] 752 752 , packages, extraPackages ? [], postInstall ? "" 753 + , extraDebs ? [] 753 754 , QEMU_OPTS ? "", memSize ? 512 }: 754 755 755 756 let ··· 760 761 in 761 762 (fillDiskWithDebs { 762 763 inherit name fullName size postInstall QEMU_OPTS memSize; 763 - debs = import expr {inherit fetchurl;}; 764 + debs = import expr {inherit fetchurl;} ++ extraDebs; 764 765 }) // {inherit expr;}; 765 766 766 767 ··· 1954 1955 }; 1955 1956 1956 1957 debian8i386 = { 1957 - name = "debian-8.8-jessie-i386"; 1958 - fullName = "Debian 8.8 Jessie (i386)"; 1958 + name = "debian-8.9-jessie-i386"; 1959 + fullName = "Debian 8.9 Jessie (i386)"; 1959 1960 packagesList = fetchurl { 1960 1961 url = mirror://debian/dists/jessie/main/binary-i386/Packages.xz; 1961 - sha256 = "79dbf81e9698913c577333f47f5a56be78529fba265ec492880e8c369c478b58"; 1962 + sha256 = "3c78bdf3b693f2f37737c52d6a7718b3a545956f2a853da79f04a2d15541e811"; 1962 1963 }; 1963 1964 urlPrefix = mirror://debian; 1964 1965 packages = commonDebianPackages; 1965 1966 }; 1966 1967 1967 1968 debian8x86_64 = { 1968 - name = "debian-8.8-jessie-amd64"; 1969 - fullName = "Debian 8.8 Jessie (amd64)"; 1969 + name = "debian-8.9-jessie-amd64"; 1970 + fullName = "Debian 8.9 Jessie (amd64)"; 1970 1971 packagesList = fetchurl { 1971 1972 url = mirror://debian/dists/jessie/main/binary-amd64/Packages.xz; 1972 - sha256 = "845fc80c9934d8c0f78ada6455c81c331a3359ef15c4c036b47e742fb1bb99c6"; 1973 + sha256 = "0605589ae7a63c690f37bd2567dc12e02a2eb279d9dc200a7310072ad3593e53"; 1973 1974 }; 1974 1975 urlPrefix = mirror://debian; 1975 1976 packages = commonDebianPackages;
+4 -4
pkgs/development/compilers/oraclejdk/jdk8cpu-linux.nix
··· 1 1 import ./jdk-linux-base.nix { 2 2 productVersion = "8"; 3 - patchVersion = "141"; 3 + patchVersion = "144"; 4 4 downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html; 5 - sha256_i686 = "0jq8zq7hgjqbza1wmc1s8r4iz1r1s631snacn29wdsb5i2yg4qk5"; 6 - sha256_x86_64 = "0kxs765dra47cw39xmifmxrib49j1lfya5cc3kldfv7azcc54784"; 7 - sha256_armv7l = "0ja97nqn4x0ji16c7r6i9nnnj3745br7qlbj97jg1s8m2wk7f9jd"; 5 + sha256_i686 = "1i5pginc65xl5vxzwid21ykakmfkqn59v3g01vpr94v28w30jk32"; 6 + sha256_x86_64 = "1r5axvr8dg2qmr4zjanj73sk9x50m7p0w3vddz8c6ckgav7438z8"; 7 + sha256_armv7l = "10r3nyssx8piyjaspravwgj2bnq4537041pn0lz4fk5b3473kgfb"; 8 8 jceName = "jce_policy-8.zip"; 9 9 jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html; 10 10 sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk";
+4 -4
pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix
··· 1 1 import ./jdk-linux-base.nix { 2 2 productVersion = "8"; 3 - patchVersion = "141"; 3 + patchVersion = "144"; 4 4 downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html; 5 - sha256_i686 = "0jq8zq7hgjqbza1wmc1s8r4iz1r1s631snacn29wdsb5i2yg4qk5"; 6 - sha256_x86_64 = "0kxs765dra47cw39xmifmxrib49j1lfya5cc3kldfv7azcc54784"; 7 - sha256_armv7l = "0ja97nqn4x0ji16c7r6i9nnnj3745br7qlbj97jg1s8m2wk7f9jd"; 5 + sha256_i686 = "1i5pginc65xl5vxzwid21ykakmfkqn59v3g01vpr94v28w30jk32"; 6 + sha256_x86_64 = "1r5axvr8dg2qmr4zjanj73sk9x50m7p0w3vddz8c6ckgav7438z8"; 7 + sha256_armv7l = "10r3nyssx8piyjaspravwgj2bnq4537041pn0lz4fk5b3473kgfb"; 8 8 jceName = "jce_policy-8.zip"; 9 9 jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html; 10 10 sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk";
+1 -1
pkgs/development/coq-modules/autosubst/default.nix
··· 8 8 src = fetchgit { 9 9 url = git://github.com/uds-psl/autosubst.git; 10 10 rev = "1c3bb3bbf5477e3b33533a0fc090399f45fe3034"; 11 - sha256 = "1wqfzc9az85fvx71xxfii502jgc3mp0r3xwfb8vnb03vkk625ln0"; 11 + sha256 = "06pcjbngzwqyncvfwzz88j33wvdj9kizxyg5adp7y6186h8an341"; 12 12 }; 13 13 14 14 propagatedBuildInputs = [ mathcomp ];
+7 -4
pkgs/development/haskell-modules/configuration-common.nix
··· 594 594 doCheck = false; # https://github.com/kazu-yamamoto/ghc-mod/issues/335 595 595 executableToolDepends = drv.executableToolDepends or [] ++ [pkgs.emacs]; 596 596 postInstall = '' 597 - local lispdir=( "$out/share/"*"-${self.ghc.name}/${drv.pname}-${drv.version}/elisp" ) 597 + local lispdir=( "$data/share/${self.ghc.name}/*/${drv.pname}-${drv.version}/elisp" ) 598 598 make -C $lispdir 599 - mkdir -p $out/share/emacs/site-lisp 600 - ln -s "$lispdir/"*.el{,c} $out/share/emacs/site-lisp/ 599 + mkdir -p $data/share/emacs/site-lisp 600 + ln -s "$lispdir/"*.el{,c} $data/share/emacs/site-lisp/ 601 601 ''; 602 602 }); 603 603 ··· 728 728 }; 729 729 in overrideCabal super.servant (old: { 730 730 postInstall = old.postInstall or "" + '' 731 - ln -s ${docs} $out/share/doc/servant 731 + ln -s ${docs} $doc/share/doc/servant 732 732 ''; 733 733 }); 734 734 ··· 873 873 874 874 # https://github.com/diagrams/diagrams-solve/issues/4 875 875 diagrams-solve = dontCheck super.diagrams-solve; 876 + 877 + # Needs a newer version of ghc-events. 878 + threadscope = super.threadscope.override { ghc-events = self.ghc-events_0_6_0; }; 876 879 877 880 }
+4 -2
pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
··· 47 47 sha256 = "026vv2k3ks73jngwifszv8l59clg88pcdr4mz0wr0gamivkfa1zy"; 48 48 }); 49 49 50 - ## GHC 8.0.2 51 - 52 50 # http://hub.darcs.net/dolio/vector-algorithms/issue/9#comment-20170112T145715 53 51 vector-algorithms = dontCheck super.vector-algorithms; 54 52 ··· 60 58 61 59 # Newer versions require ghc>=8.2 62 60 apply-refact = super.apply-refact_0_3_0_1; 61 + 62 + # This builds needs the latest Cabal version. 63 + cabal2nix = super.cabal2nix.overrideScope (self: super: { Cabal = self.Cabal_2_0_0_2; }); 64 + 63 65 }
+1 -1
pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
··· 40 40 cabal-install = super.cabal-install.override { Cabal = null; }; 41 41 42 42 # jailbreak-cabal doesn't seem to work right with the native Cabal version. 43 - jailbreak-cabal = pkgs.haskellPackages.jailbreak-cabal; 43 + jailbreak-cabal = pkgs.haskell.packages.ghc802.jailbreak-cabal; 44 44 45 45 # https://github.com/bmillwood/applicative-quoters/issues/6 46 46 applicative-quoters = appendPatch super.applicative-quoters (pkgs.fetchpatch {
+17 -2
pkgs/development/haskell-modules/generic-builder.nix
··· 1 1 { stdenv, fetchurl, ghc, pkgconfig, glibcLocales, coreutils, gnugrep, gnused 2 - , jailbreak-cabal, hscolour, cpphs, nodejs, lib 2 + , jailbreak-cabal, hscolour, cpphs, nodejs, lib, removeReferencesTo 3 3 }: let isCross = (ghc.cross or null) != null; in 4 4 5 5 { pname ··· 53 53 , coreSetup ? false # Use only core packages to build Setup.hs. 54 54 , useCpphs ? false 55 55 , hardeningDisable ? lib.optional (ghc.isHaLVM or false) "all" 56 + , enableSeparateDataOutput ? false 57 + , enableSeparateDocOutput ? doHaddock 56 58 } @ args: 57 59 58 60 assert editedCabalFile != null -> revision != null; ··· 108 110 109 111 defaultConfigureFlags = [ 110 112 "--verbose" "--prefix=$out" "--libdir=\\$prefix/lib/\\$compiler" "--libsubdir=\\$pkgid" 113 + (optionalString enableSeparateDataOutput "--datadir=$data/share/${ghc.name}") 114 + (optionalString enableSeparateDocOutput "--docdir=$doc/share/doc") 111 115 "--with-gcc=$CC" # Clang won't work without that extra information. 112 116 "--package-db=$packageConfDir" 113 117 (optionalString (enableSharedExecutables && stdenv.isLinux) "--ghc-option=-optl=-Wl,-rpath=$out/lib/${ghc.name}/${pname}-${version}") ··· 144 148 allPkgconfigDepends = pkgconfigDepends ++ libraryPkgconfigDepends ++ executablePkgconfigDepends ++ 145 149 optionals doCheck testPkgconfigDepends ++ optionals withBenchmarkDepends benchmarkPkgconfigDepends; 146 150 147 - nativeBuildInputs = buildTools ++ libraryToolDepends ++ executableToolDepends; 151 + nativeBuildInputs = buildTools ++ libraryToolDepends ++ executableToolDepends ++ [ removeReferencesTo ]; 148 152 propagatedBuildInputs = buildDepends ++ libraryHaskellDepends ++ executableHaskellDepends; 149 153 otherBuildInputs = setupHaskellDepends ++ extraLibraries ++ librarySystemDepends ++ executableSystemDepends ++ 150 154 optionals (allPkgconfigDepends != []) ([pkgconfig] ++ allPkgconfigDepends) ++ ··· 173 177 stdenv.mkDerivation ({ 174 178 name = "${pname}-${version}"; 175 179 180 + outputs = if (args ? outputs) then args.outputs else ([ "out" ] ++ (optional enableSeparateDataOutput "data") ++ (optional enableSeparateDocOutput "doc")); 181 + setOutputFlags = false; 182 + 176 183 pos = builtins.unsafeGetAttrPos "pname" args; 177 184 178 185 prePhases = ["setupCompilerEnvironmentPhase"]; ··· 322 329 install_name_tool -add_rpath "$out/lib/ghc-${ghc.version}/${pname}-${version}" "$exe" 323 330 done 324 331 ''} 332 + 333 + ${optionalString enableSeparateDocOutput '' 334 + for x in $doc/share/doc/html/src/*.html; do 335 + remove-references-to -t $out $x 336 + done 337 + mkdir -p $doc 338 + ''} 339 + ${optionalString enableSeparateDataOutput "mkdir -p $data"} 325 340 326 341 runHook postInstall 327 342 '';
+1278 -109
pkgs/development/haskell-modules/hackage-packages.nix
··· 657 657 sha256 = "08iblifpyi569zh55ha5bi0nfibz0zlqiibwaimx2k1nd6n6yv5a"; 658 658 isLibrary = true; 659 659 isExecutable = true; 660 + enableSeparateDataOutput = true; 660 661 libraryHaskellDepends = [ base ]; 661 662 description = "Library for incremental computing"; 662 663 license = stdenv.lib.licenses.bsd3; ··· 685 686 pname = "AesonBson"; 686 687 version = "0.2.2"; 687 688 sha256 = "1p7636bjczcwwi2c0cdzvpj95vx2fr27qnmh8pcs8hqgmisagq8s"; 689 + enableSeparateDataOutput = true; 688 690 libraryHaskellDepends = [ 689 691 aeson attoparsec base bson unordered-containers vector 690 692 ]; ··· 728 730 editedCabalFile = "1zxznr7n6yyyrr38nsa53nd1vhcssnhd5jha30dzwwkyq0mv3c2d"; 729 731 isLibrary = true; 730 732 isExecutable = true; 733 + enableSeparateDataOutput = true; 731 734 libraryHaskellDepends = [ 732 735 array base binary boxes bytestring containers data-hash deepseq 733 736 directory EdisonCore edit-distance equivalence filepath ··· 852 855 sha256 = "1baqvfrg5qsrfzlg6para87vf11srk0dmi062fpzfv1x452wx6ja"; 853 856 isLibrary = false; 854 857 isExecutable = true; 858 + enableSeparateDataOutput = true; 855 859 executableHaskellDepends = [ 856 860 async base containers enummapset-th filepath LambdaHack random 857 861 template-haskell text zlib ··· 1667 1671 sha256 = "0jlcdd0slq7d5wr44h3h6lnfcp310h36cabd4r7l32xhcxns9k6h"; 1668 1672 isLibrary = true; 1669 1673 isExecutable = true; 1674 + enableSeparateDataOutput = true; 1670 1675 libraryHaskellDepends = [ 1671 1676 aeson base bimaps binary bytes bytestring cereal cereal-vector 1672 1677 containers csv deepseq file-embed hashable lens primitive ··· 1770 1775 sha256 = "09mpf3qwr38x0ljz4ziyhdcwl5j37i353wc2dkpc6hjki9p08rgl"; 1771 1776 isLibrary = true; 1772 1777 isExecutable = true; 1778 + enableSeparateDataOutput = true; 1773 1779 libraryHaskellDepends = [ 1774 1780 base containers directory HaXml polyparse pretty wx wxcore 1775 1781 ]; ··· 1841 1847 sha256 = "18lxj5ka4jfaz1ig6x6qkdzlil99i3bcy4cqpbsccvyvhbax323c"; 1842 1848 isLibrary = true; 1843 1849 isExecutable = true; 1850 + enableSeparateDataOutput = true; 1844 1851 setupHaskellDepends = [ base Cabal MissingH ]; 1845 1852 libraryHaskellDepends = [ 1846 1853 base containers MissingH network-uri parsec ··· 1895 1902 sha256 = "1a1g8ipppwrb42fvli27qi4i78vgdk3wwxsjhqy0p6pwpa0hvcaq"; 1896 1903 isLibrary = false; 1897 1904 isExecutable = true; 1905 + enableSeparateDataOutput = true; 1898 1906 executableHaskellDepends = [ 1899 1907 base containers directory filepath pandoc pandoc-citeproc 1900 1908 pandoc-types parseargs ··· 2204 2212 sha256 = "041bm02xar8g6ppz6g0fdgs4ywavlcn4pqkncydx0lw5wp9ygwwn"; 2205 2213 isLibrary = false; 2206 2214 isExecutable = true; 2215 + enableSeparateDataOutput = true; 2207 2216 executableHaskellDepends = [ base haskell98 ]; 2208 2217 description = "A simple Brainfuck interpretter"; 2209 2218 license = stdenv.lib.licenses.bsd3; ··· 2338 2347 pname = "CTRex"; 2339 2348 version = "0.6"; 2340 2349 sha256 = "0cjinznkvdrswbqrsha49b6hch7sjv2qq9xllx780klf01kdahi6"; 2350 + enableSeparateDataOutput = true; 2341 2351 libraryHaskellDepends = [ 2342 2352 base containers hashable mtl unordered-containers 2343 2353 ]; ··· 2675 2685 pname = "Chart-diagrams"; 2676 2686 version = "1.8.2"; 2677 2687 sha256 = "0hczp9dj9qs3g72hcgikym1bq3ki90graxfx068h5hds0kn1s66a"; 2688 + enableSeparateDataOutput = true; 2678 2689 libraryHaskellDepends = [ 2679 2690 base blaze-markup bytestring Chart colour containers 2680 2691 data-default-class diagrams-core diagrams-lib diagrams-postscript ··· 2748 2759 sha256 = "1pw6sssdmxpsjclkhsaf1b06vlimi4w11rxy65ccyj8c9zgs2g23"; 2749 2760 isLibrary = false; 2750 2761 isExecutable = true; 2762 + enableSeparateDataOutput = true; 2751 2763 executableHaskellDepends = [ base containers directory ]; 2752 2764 homepage = "http://cheatsheet.codeslower.com"; 2753 2765 description = "A Haskell cheat sheet in PDF and literate formats"; ··· 2933 2945 sha256 = "0dx5pysxyk5c0fa33khjr86zgm43jz7nwhgl0w8jngyai8b1rbra"; 2934 2946 isLibrary = false; 2935 2947 isExecutable = true; 2948 + enableSeparateDataOutput = true; 2936 2949 executableHaskellDepends = [ 2937 2950 array attoparsec base bytestring cereal containers deepseq 2938 2951 directory filepath hopenssl hslogger HTTP HUnit mtl network ··· 3383 3396 sha256 = "0rmgl0a4k6ys2lc6d607g28c2p443a46dla903rz5aha7m9y1mba"; 3384 3397 isLibrary = true; 3385 3398 isExecutable = true; 3399 + enableSeparateDataOutput = true; 3386 3400 libraryHaskellDepends = [ 3387 3401 array base HUnit pretty QuickCheck random 3388 3402 ]; ··· 3626 3640 pname = "DRBG"; 3627 3641 version = "0.5.5"; 3628 3642 sha256 = "1z9vqc1nw0mf2sqgddcipmlkz6mckq9wnrzqqdy3rj3c90135pr1"; 3643 + enableSeparateDataOutput = true; 3629 3644 libraryHaskellDepends = [ 3630 3645 base bytestring cereal cipher-aes128 crypto-api 3631 3646 cryptohash-cryptoapi entropy mtl parallel prettyclass tagged ··· 3701 3716 sha256 = "084yscqbwypkb32avjm2b92a7s4qpvps3pjfgpy14sligww3hifb"; 3702 3717 isLibrary = true; 3703 3718 isExecutable = true; 3719 + enableSeparateDataOutput = true; 3704 3720 libraryHaskellDepends = [ 3705 3721 base containers haskell98 network process unix 3706 3722 ]; ··· 3963 3979 sha256 = "09wzab0343m55xq4dxfv0f9lwpd5v97mymd6408s6p82xa2vqlzw"; 3964 3980 isLibrary = false; 3965 3981 isExecutable = true; 3982 + enableSeparateDataOutput = true; 3966 3983 executableHaskellDepends = [ 3967 3984 base binary bytestring containers GLUT HTTP MaybeT mtl network 3968 3985 peakachu random time utility-ht zlib ··· 4017 4034 pname = "Dflow"; 4018 4035 version = "0.0.1"; 4019 4036 sha256 = "00gzs5fdybfrvqidw4qzk6i69qzq4jaljzhb49ah2hsv3gqjr1iq"; 4037 + enableSeparateDataOutput = true; 4020 4038 libraryHaskellDepends = [ base containers QuickCheck stm time ]; 4021 4039 testHaskellDepends = [ 4022 4040 base HUnit QuickCheck test-framework test-framework-quickcheck2 ··· 4148 4166 sha256 = "0pnlk09jsallyparwdfcy7jmqjjiprp2pqlg9agp6xbw5xmnkzwb"; 4149 4167 isLibrary = true; 4150 4168 isExecutable = true; 4169 + enableSeparateDataOutput = true; 4151 4170 libraryHaskellDepends = [ 4152 4171 base Cabal chunks containers directory filepath hinstaller 4153 4172 old-locale parsec pretty process template-haskell time xhtml ··· 4321 4340 sha256 = "1w0wfmrjifidl2qz998ig07afd4p6yp890lwl8as57bay490nakl"; 4322 4341 isLibrary = true; 4323 4342 isExecutable = true; 4343 + enableSeparateDataOutput = true; 4324 4344 libraryHaskellDepends = [ base ]; 4325 4345 executableHaskellDepends = [ 4326 4346 base filepath old-time process random ··· 4339 4359 sha256 = "0jk7qmlgjw69w38hm91bnyp8gyi1mjmrq4vyv7jv3y69rk0fi6wl"; 4340 4360 isLibrary = false; 4341 4361 isExecutable = true; 4362 + enableSeparateDataOutput = true; 4342 4363 executableHaskellDepends = [ base old-time process random ]; 4343 4364 homepage = "http://repetae.net/computer/haskell/DrIFT/"; 4344 4365 description = "Program to derive type class instances"; ··· 4680 4701 sha256 = "1l6p00h0717blwvia0gvqpsakq8jy44fxc6brr4qxs5g4yjcjnmh"; 4681 4702 isLibrary = true; 4682 4703 isExecutable = true; 4704 + enableSeparateDataOutput = true; 4683 4705 libraryHaskellDepends = [ 4684 4706 aeson aeson-pretty base binary blaze-html blaze-markup bytestring 4685 4707 cheapskate cmdargs containers directory filepath highlighting-kate ··· 4926 4948 sha256 = "0kh1zjqr9cmx7xyfk2y3iwr3x3zvh3pb4ghfjz3xr2wwg2rmymxp"; 4927 4949 isLibrary = false; 4928 4950 isExecutable = true; 4951 + enableSeparateDataOutput = true; 4929 4952 executableHaskellDepends = [ base haskell98 SDL SDL-mixer ]; 4930 4953 homepage = "http://www.kryozahiro.org/eternal10/"; 4931 4954 description = "A 2-D shooting game"; ··· 5201 5224 pname = "FenwickTree"; 5202 5225 version = "0.1.2.1"; 5203 5226 sha256 = "0g7hhkim16wsjf8l79hqkiv1lain6jm8wpiml1iycra3n9i2s5ww"; 5227 + enableSeparateDataOutput = true; 5204 5228 libraryHaskellDepends = [ base QuickCheck template-haskell ]; 5205 5229 testHaskellDepends = [ base QuickCheck template-haskell ]; 5206 5230 homepage = "https://github.com/mgajda/FenwickTree"; ··· 5353 5377 sha256 = "00sv8dd323lwyw6597xyza12h8m1pdp63b2jlqfsjgnxn2rb60lm"; 5354 5378 isLibrary = true; 5355 5379 isExecutable = true; 5380 + enableSeparateDataOutput = true; 5356 5381 libraryHaskellDepends = [ base ]; 5357 5382 executableHaskellDepends = [ base ]; 5358 5383 testHaskellDepends = [ base hspec ]; ··· 5455 5480 sha256 = "1w25h3n3cnsl9dvr5s94jzf5qxyx0dl0v8dmqv2rkwwm7s2hdbl9"; 5456 5481 isLibrary = false; 5457 5482 isExecutable = true; 5483 + enableSeparateDataOutput = true; 5458 5484 executableHaskellDepends = [ 5459 5485 base cgi containers directory haskell98 old-time parsec xhtml 5460 5486 ]; ··· 5526 5552 pname = "ForSyDe"; 5527 5553 version = "3.1.1"; 5528 5554 sha256 = "0ggwskyxpdrjny0rz61zdp20r5vzig8ggmqxf0qa8gljvvfp6bhp"; 5555 + enableSeparateDataOutput = true; 5529 5556 libraryHaskellDepends = [ 5530 5557 array base containers directory filepath mtl old-time 5531 5558 parameterized-data pretty process random regex-posix ··· 5722 5749 sha256 = "10sivjxppn138805iwka54cfby59nc39ja30nx2w3762fybz71af"; 5723 5750 isLibrary = true; 5724 5751 isExecutable = true; 5752 + enableSeparateDataOutput = true; 5725 5753 libraryHaskellDepends = [ base freetype2 OpenGL ]; 5726 5754 description = "Loadable texture fonts for OpenGL"; 5727 5755 license = stdenv.lib.licenses.bsd3; ··· 5736 5764 sha256 = "1bal6v1ps8ha5hkz12i20vwypvbcb6s9ykr8yylh4w4ddnsdgh3r"; 5737 5765 isLibrary = true; 5738 5766 isExecutable = true; 5767 + enableSeparateDataOutput = true; 5739 5768 libraryHaskellDepends = [ base base-compat GLUT OpenGL random ]; 5740 5769 executableHaskellDepends = [ base GLUT OpenGL random ]; 5741 5770 homepage = "http://joyful.com/fungen"; ··· 5797 5826 pname = "GHood"; 5798 5827 version = "0.0.6"; 5799 5828 sha256 = "0n9vp4y5d1fx45x6s5a84ylyvnjyaq44x9r46zyh0dkyrms3jsqi"; 5829 + enableSeparateDataOutput = true; 5800 5830 libraryHaskellDepends = [ array base process ]; 5801 5831 homepage = "http://www.cs.kent.ac.uk/people/staff/cr3/toolbox/haskell/GHood"; 5802 5832 description = "A graphical viewer for Hood"; ··· 5822 5852 pname = "GLFW-OGL"; 5823 5853 version = "0.0"; 5824 5854 sha256 = "118hpgdp8rb0jlvlibxcaia4jjjdrn8xpzyvj109piw63g44n910"; 5855 + enableSeparateDataOutput = true; 5825 5856 libraryHaskellDepends = [ base mtl OGL ]; 5826 5857 librarySystemDepends = [ libX11 libXrandr ]; 5827 5858 homepage = "http://haskell.org/haskellwiki/GLFW-OGL"; ··· 6010 6041 pname = "GPipe"; 6011 6042 version = "2.2.1"; 6012 6043 sha256 = "1g5712apfv1jzi12shpzfp16274gfbjgf7r49fp1dawxnj8j734g"; 6044 + enableSeparateDataOutput = true; 6013 6045 libraryHaskellDepends = [ 6014 6046 base Boolean containers exception-transformers gl hashtables linear 6015 6047 transformers ··· 6109 6141 pname = "Gamgine"; 6110 6142 version = "0.5.1"; 6111 6143 sha256 = "07srdid5354y2za3hc76j2rjb84y77vjaz8gdhlp7qnbmfsnqipd"; 6144 + enableSeparateDataOutput = true; 6112 6145 libraryHaskellDepends = [ 6113 6146 array base bytestring composition cpphs data-lens directory 6114 6147 filepath GLFW-b ListZipper mtl OpenGLRaw parsec pretty-show ··· 6157 6190 sha256 = "14shcs5wfkf4q473hsdgh7ky1fsrb59nf0g2ff4viyw1diyakw7x"; 6158 6191 isLibrary = false; 6159 6192 isExecutable = true; 6193 + enableSeparateDataOutput = true; 6160 6194 executableHaskellDepends = [ 6161 6195 array base directory random wx wxcore 6162 6196 ]; ··· 6179 6213 sha256 = "0gmig362ayxxqgj4m6g1r1i6q5zfg6j8bmvsd7i9kmqn12nl3l0p"; 6180 6214 isLibrary = true; 6181 6215 isExecutable = true; 6216 + enableSeparateDataOutput = true; 6182 6217 libraryHaskellDepends = [ 6183 6218 base binary bytestring cabal-macosx containers deepseq directory 6184 6219 errors filepath hslogger json mtl old-locale ordered parsec process ··· 6333 6368 pname = "GeocoderOpenCage"; 6334 6369 version = "0.1.0.1"; 6335 6370 sha256 = "1c5sww3lvwkijsxg37zj77rxx021wlwjwsadiknvci9xlzccnw5b"; 6371 + enableSeparateDataOutput = true; 6336 6372 libraryHaskellDepends = [ aeson base bytestring HTTP text ]; 6337 6373 homepage = "https://github.com/juergenhah/Haskell-Geocoder-OpenCage.git"; 6338 6374 description = "Geocoder and Reverse Geocoding Service Wrapper"; ··· 6397 6433 sha256 = "030p4ihh3zdjy0f687ffpnsf1zjb7mhwih47718fj2pawi4hkksi"; 6398 6434 isLibrary = true; 6399 6435 isExecutable = true; 6436 + enableSeparateDataOutput = true; 6400 6437 libraryHaskellDepends = [ 6401 6438 base directory filepath process temporary text 6402 6439 ]; ··· 7035 7072 sha256 = "0dzfnvdc1nm4f7q759xnq1lavi90axc7b6jd39sl898jbjg8wrrl"; 7036 7073 isLibrary = true; 7037 7074 isExecutable = true; 7075 + enableSeparateDataOutput = true; 7038 7076 libraryHaskellDepends = [ base containers mtl QuickCheck random ]; 7039 7077 executableHaskellDepends = [ 7040 7078 base containers mtl QuickCheck random ··· 7247 7285 sha256 = "03v03adcqyf0ppbhx8jxmp1f4pzmqs5s43as21add2yl13rkwzm7"; 7248 7286 isLibrary = true; 7249 7287 isExecutable = true; 7288 + enableSeparateDataOutput = true; 7250 7289 libraryHaskellDepends = [ 7251 7290 base blaze-html blaze-markup MissingH mtl process random 7252 7291 shakespeare template-haskell text uuid ··· 7865 7904 pname = "HList"; 7866 7905 version = "0.4.2.0"; 7867 7906 sha256 = "15bpglqj33n4y68mg8l2g0rllrcisg2f94wsl3n7rpy43md596fd"; 7907 + enableSeparateDataOutput = true; 7868 7908 libraryHaskellDepends = [ 7869 7909 array base base-orphans ghc-prim mtl profunctors tagged 7870 7910 template-haskell ··· 7931 7971 pname = "HMap"; 7932 7972 version = "1.2.7"; 7933 7973 sha256 = "0xq5qr1v74z9bppcgl4g06cpnmyrqmc41kvcyx58272pw70vlv40"; 7974 + enableSeparateDataOutput = true; 7934 7975 libraryHaskellDepends = [ 7935 7976 base data-default hashable mtl unordered-containers 7936 7977 ]; ··· 7968 8009 sha256 = "04325gwmlrx4iy9609vzaw2dhs4kg3ydr4r6af6rllrf500f6w9j"; 7969 8010 isLibrary = true; 7970 8011 isExecutable = true; 8012 + enableSeparateDataOutput = true; 7971 8013 libraryHaskellDepends = [ 7972 8014 base containers directory glib gtk haskell98 mtl process 7973 8015 regex-posix unix ··· 8111 8153 sha256 = "0dzzq4ksny537b151g6c1jgj2ns143klhdjfbq84srs026pvpvzi"; 8112 8154 isLibrary = false; 8113 8155 isExecutable = true; 8156 + enableSeparateDataOutput = true; 8114 8157 executableHaskellDepends = [ 8115 8158 base data-accessor data-accessor-template GLFW OpenGL 8116 8159 ]; ··· 8247 8290 sha256 = "0bg0b8260cd2l8q7ccijwqg1yz49mkifv1r0a5q1hrbsagvac4nf"; 8248 8291 isLibrary = false; 8249 8292 isExecutable = true; 8293 + enableSeparateDataOutput = true; 8250 8294 executableHaskellDepends = [ array base directory haskell98 ]; 8251 8295 homepage = "http://boegel.kejo.be/ELIS/Haskell/HRay/"; 8252 8296 description = "Haskell raytracer"; ··· 8369 8413 pname = "HSmarty"; 8370 8414 version = "0.2.0.3"; 8371 8415 sha256 = "07m7xpwv565cf78qyqkd6babpl2b7jnq88psv55jclzdqlsvv0rq"; 8416 + enableSeparateDataOutput = true; 8372 8417 libraryHaskellDepends = [ 8373 8418 aeson attoparsec attoparsec-expr base HTTP mtl scientific text 8374 8419 unordered-containers vector ··· 8542 8587 sha256 = "0c0igscng6gqhabmvvgappsbzbhkpybcx7vr8yd72pqh988ml4zv"; 8543 8588 isLibrary = false; 8544 8589 isExecutable = true; 8590 + enableSeparateDataOutput = true; 8545 8591 executableHaskellDepends = [ 8546 8592 base cmdargs containers deepseq hylolib mtl strict 8547 8593 ]; ··· 8560 8606 sha256 = "0h3pr4lyx14zndwbas5ba8sg3s84sq19qhh6pcqpy4v2ajfyyfqc"; 8561 8607 isLibrary = false; 8562 8608 isExecutable = true; 8609 + enableSeparateDataOutput = true; 8563 8610 executableHaskellDepends = [ 8564 8611 array base mtl random SDL SDL-image SDL-ttf 8565 8612 ]; ··· 8683 8730 pname = "HXQ"; 8684 8731 version = "0.20.1"; 8685 8732 sha256 = "1ba3b7a91h1qc5g9g9cw591mvsp711myijpzxr4c1wg6yapqbhxp"; 8733 + enableSeparateDataOutput = true; 8686 8734 libraryHaskellDepends = [ 8687 8735 array base haskeline HTTP mtl regex-base regex-compat 8688 8736 template-haskell ··· 8701 8749 sha256 = "1mvxzcq42h823gq025w86z03jigk271fj20r7yfjydj7yvn24kjv"; 8702 8750 isLibrary = true; 8703 8751 isExecutable = true; 8752 + enableSeparateDataOutput = true; 8704 8753 libraryHaskellDepends = [ base HUnit mtl QuickCheck ]; 8705 8754 homepage = "http://www.di.uminho.pt/~jas/Research/HaLeX/HaLeX.html"; 8706 8755 description = "HaLeX enables modelling, manipulation and visualization of regular languages"; ··· 8750 8799 editedCabalFile = "1hwajkfskbnh3cn7jgiqp83vpfinnfn4pfzwkl6cwqi63iwy944p"; 8751 8800 isLibrary = true; 8752 8801 isExecutable = true; 8802 + enableSeparateDataOutput = true; 8753 8803 libraryHaskellDepends = [ 8754 8804 base cabal-helper containers directory filepath ghc ghc-exactprint 8755 8805 ghc-mod ghc-syb-utils hslogger monad-control mtl ··· 8785 8835 sha256 = "16ld7lrdf6vjmxam4kfc6zyy2g4baw7mr9ha39nrxjq0p8d4hn3v"; 8786 8836 isLibrary = true; 8787 8837 isExecutable = true; 8838 + enableSeparateDataOutput = true; 8788 8839 libraryHaskellDepends = [ 8789 8840 base cabal-helper containers directory filepath ghc ghc-exactprint 8790 8841 ghc-mod ghc-syb-utils hslogger monad-control mtl ··· 9003 9054 sha256 = "1yzfrvivvxwlaiqwbjx27rxwq9mmnnpb512vwklzw7nyzg9xmqha"; 9004 9055 isLibrary = true; 9005 9056 isExecutable = true; 9057 + enableSeparateDataOutput = true; 9006 9058 libraryHaskellDepends = [ 9007 9059 base containers HTTP hxt hxt-http mtl network network-uri parsec 9008 9060 transformers ··· 9106 9158 pname = "HasGP"; 9107 9159 version = "0.1"; 9108 9160 sha256 = "1sw5l74p2md4whq0c1xifcnwbb525i84n1razjxs7cpf8gicgggx"; 9161 + enableSeparateDataOutput = true; 9109 9162 libraryHaskellDepends = [ 9110 9163 base haskell98 hmatrix hmatrix-special mtl parsec random 9111 9164 ]; ··· 9125 9178 sha256 = "0jh506p0clwyb5wwrhlgbc5xp7w6smz5vky3lc8vhnwvwk324qcj"; 9126 9179 isLibrary = false; 9127 9180 isExecutable = true; 9181 + enableSeparateDataOutput = true; 9128 9182 executableHaskellDepends = [ 9129 9183 array base list-tries monad-loops mtl numbers parsec 9130 9184 ]; ··· 9161 9215 pname = "HaskRel"; 9162 9216 version = "0.1.0.2"; 9163 9217 sha256 = "19q7x459g9s6g7kd9bmhh8lj2khbbmaafmcmm3ggrf4ijxmh5kp7"; 9218 + enableSeparateDataOutput = true; 9164 9219 libraryHaskellDepends = [ 9165 9220 base containers directory ghc-prim HList tagged 9166 9221 ]; ··· 9230 9285 pname = "HaskellNet-SSL"; 9231 9286 version = "0.3.3.0"; 9232 9287 sha256 = "1x6miw5ph4qndsy345yym209r5lxsjsmmgyap6x1xjwxjcmlcz8p"; 9288 + enableSeparateDataOutput = true; 9233 9289 libraryHaskellDepends = [ 9234 9290 base bytestring connection data-default HaskellNet network tls 9235 9291 ]; ··· 9250 9306 sha256 = "0dy9irl085jw7wz6y50566rwsj05ymp8g2xp2444vg12ryd5dra1"; 9251 9307 isLibrary = false; 9252 9308 isExecutable = true; 9309 + enableSeparateDataOutput = true; 9253 9310 executableHaskellDepends = [ 9254 9311 base bytestring cereal cml containers directory hopenssl hslogger 9255 9312 HTTP HUnit mtl network parsec pretty QuickCheck random ··· 9408 9465 sha256 = "0z0sa658fngv68611k76ncf5j59v517xchhw2y84blj97fl6jkn9"; 9409 9466 isLibrary = true; 9410 9467 isExecutable = true; 9468 + enableSeparateDataOutput = true; 9411 9469 libraryHaskellDepends = [ 9412 9470 base editline mtl parsec pretty process QuickCheck regex-posix 9413 9471 ]; ··· 9427 9485 pname = "HerbiePlugin"; 9428 9486 version = "0.2.0.0"; 9429 9487 sha256 = "1vrlx1b85fvdcbcjn2mfhkznvvqag3pxhvkqsk80pyqiwf8xfgw7"; 9488 + enableSeparateDataOutput = true; 9430 9489 libraryHaskellDepends = [ 9431 9490 base deepseq directory ghc mtl process split sqlite-simple 9432 9491 template-haskell text ··· 9600 9659 sha256 = "1nsiqcwx9xiz3774c0kv036v8pz53jzl9pfxyhm6ci8ag83za245"; 9601 9660 isLibrary = true; 9602 9661 isExecutable = true; 9662 + enableSeparateDataOutput = true; 9603 9663 libraryHaskellDepends = [ 9604 9664 array base bytestring cereal containers directory filepath FPretty 9605 9665 libgraph mtl process RBTree regex-posix template-haskell ··· 9782 9842 sha256 = "0yjkghshbdbajib35hy3qr8x608i9qi2pgffpi59118krcw6k8mn"; 9783 9843 isLibrary = true; 9784 9844 isExecutable = true; 9845 + enableSeparateDataOutput = true; 9785 9846 libraryHaskellDepends = [ 9786 9847 base directory filepath ghc haskell-src-exts old-locale random syb 9787 9848 time ··· 9863 9924 pname = "HsJudy"; 9864 9925 version = "0.2"; 9865 9926 sha256 = "1ypdsjy7gn6b3ynn17fcpirgwq3017jahm3pj5fh4qr6zr1cljkh"; 9927 + enableSeparateDataOutput = true; 9866 9928 libraryHaskellDepends = [ base bytestring containers ]; 9867 9929 librarySystemDepends = [ Judy ]; 9868 9930 homepage = "http://www.pugscode.org/"; ··· 9932 9994 pname = "HsParrot"; 9933 9995 version = "0.0.2.20150805"; 9934 9996 sha256 = "0d1xkfl5zbr2q60igl9092lr6zgh1jq10c0b7yd6i0jxs66d767a"; 9997 + enableSeparateDataOutput = true; 9935 9998 libraryHaskellDepends = [ 9936 9999 base bytestring HsSyck pretty pugs-DrIFT 9937 10000 ]; ··· 9970 10033 pname = "HsSyck"; 9971 10034 version = "0.53"; 9972 10035 sha256 = "17r4jwnkjinmzpw9m2crjwccdyv9wmpljnv1ldgljkr9p9mb5ywf"; 10036 + enableSeparateDataOutput = true; 9973 10037 libraryHaskellDepends = [ 9974 10038 base bytestring hashtables syb utf8-string 9975 10039 ]; ··· 10000 10064 sha256 = "09v2gcazqlmw7j7sqzzzmsz1jr3mrnfy3p30w9hnp2g430w10r2a"; 10001 10065 isLibrary = true; 10002 10066 isExecutable = true; 10067 + enableSeparateDataOutput = true; 10003 10068 libraryHaskellDepends = [ 10004 10069 array base bytestring cmdargs data-accessor data-accessor-template 10005 10070 data-accessor-transformers directory filepath Glob ··· 10094 10159 sha256 = "10n45j8ri1svxhplpfj88riqk4qigzl02cqxkk3mrsahhgn6bkmp"; 10095 10160 isLibrary = true; 10096 10161 isExecutable = true; 10162 + enableSeparateDataOutput = true; 10097 10163 libraryHaskellDepends = [ 10098 10164 aeson base binary directory HFitUI MissingH shakespeare yaml 10099 10165 ]; ··· 10144 10210 sha256 = "04il63xafq20jn3m4hahn93xxfrp6whrjvsz974zczxqm41ygb10"; 10145 10211 isLibrary = false; 10146 10212 isExecutable = true; 10213 + enableSeparateDataOutput = true; 10147 10214 executableHaskellDepends = [ 10148 10215 base containers directory haskell98 HaXml polyparse pretty process 10149 10216 wx wxcore ··· 10160 10227 pname = "IOR"; 10161 10228 version = "0.1"; 10162 10229 sha256 = "0iinsva0pwparpg4lkgx8mw8l49rnl1h3zzblp89nkqk5i7qhq8a"; 10230 + enableSeparateDataOutput = true; 10163 10231 libraryHaskellDepends = [ base mtl ]; 10164 10232 description = "Region based resource management for the IO monad"; 10165 10233 license = stdenv.lib.licenses.bsd3; ··· 10601 10669 sha256 = "17l6kdpdc7lrpd9j4d2b6vklkpclshcjy6hzpi442b7pj96sn589"; 10602 10670 isLibrary = true; 10603 10671 isExecutable = true; 10672 + enableSeparateDataOutput = true; 10604 10673 libraryHaskellDepends = [ 10605 10674 base containers directory filepath mtl parsec pretty syb WebBits 10606 10675 WebBits-Html ··· 10673 10742 pname = "JuicyPixels-extra"; 10674 10743 version = "0.1.1"; 10675 10744 sha256 = "1zdrh95b51566m2dh79vv92vivv2i4pknlimhd78mqc0fxz2ayyk"; 10745 + enableSeparateDataOutput = true; 10676 10746 libraryHaskellDepends = [ base JuicyPixels ]; 10677 10747 testHaskellDepends = [ base hspec JuicyPixels ]; 10678 10748 benchmarkHaskellDepends = [ base criterion JuicyPixels ]; ··· 10690 10760 sha256 = "0lai831n9iak96l854fynpa1bf41rq8mg45397zjg0p25w0i1dka"; 10691 10761 revision = "1"; 10692 10762 editedCabalFile = "0f42a7jirsk3ciyd081wcb2pkss34yzfwhaiaclgf17yiav4zzv0"; 10763 + enableSeparateDataOutput = true; 10693 10764 libraryHaskellDepends = [ base JuicyPixels ]; 10694 10765 testHaskellDepends = [ base hspec JuicyPixels ]; 10695 10766 benchmarkHaskellDepends = [ base criterion JuicyPixels ]; ··· 10883 10954 sha256 = "0z5ps5apr436dbm5wkfnpqksnqi3jsqmp2zkmy37crzzinlilzvn"; 10884 10955 isLibrary = true; 10885 10956 isExecutable = true; 10957 + enableSeparateDataOutput = true; 10886 10958 libraryHaskellDepends = [ 10887 10959 base containers curry-frontend directory filepath network old-time 10888 10960 process random syb unix ··· 10908 10980 sha256 = "1hvdqil8lfybcp2j04ig03270q5fy29cbmg8jmv38dpcgjsx6mk1"; 10909 10981 isLibrary = true; 10910 10982 isExecutable = true; 10983 + enableSeparateDataOutput = true; 10911 10984 libraryHaskellDepends = [ 10912 10985 base containers filepath haskell98 KiCS mtl readline syb 10913 10986 ]; ··· 10928 11001 sha256 = "0l278x2gavm0ndbm4k0197cwyvamz37vzy7nz35lb7n5sc5b2gsr"; 10929 11002 isLibrary = true; 10930 11003 isExecutable = true; 11004 + enableSeparateDataOutput = true; 10931 11005 libraryHaskellDepends = [ base filepath KiCS ]; 10932 11006 executableHaskellDepends = [ base KiCS ]; 10933 11007 homepage = "http://curry-language.org"; ··· 11115 11189 sha256 = "12bvsl4bshks02dqk09nzjz8jd8mspf408h88bmswsxyhq6r03gc"; 11116 11190 isLibrary = true; 11117 11191 isExecutable = true; 11192 + enableSeparateDataOutput = true; 11118 11193 libraryHaskellDepends = [ 11119 11194 assert-failure async base base-compat binary bytestring containers 11120 11195 deepseq directory enummapset-th filepath ghc-prim hashable hsini ··· 11151 11226 sha256 = "1hdl25dzv19gjr8dzpq1r267v3jj2c2yiskbg0kzdcrh4cj7jcwk"; 11152 11227 isLibrary = false; 11153 11228 isExecutable = true; 11229 + enableSeparateDataOutput = true; 11154 11230 executableHaskellDepends = [ 11155 11231 base containers GLFW GLFW-task monad-task mtl OpenGL transformers 11156 11232 vector ··· 11406 11482 pname = "LinearSplit"; 11407 11483 version = "0.2.1"; 11408 11484 sha256 = "05rdlxsl5zpnczahaw2fdycqyryd3y7bccizjbn5sap23spwd7di"; 11485 + enableSeparateDataOutput = true; 11409 11486 libraryHaskellDepends = [ 11410 11487 array base cmdargs haskell98 QuickCheck 11411 11488 ]; ··· 11871 11948 sha256 = "0vly79iqz8ax5wzwgbr3ygdqsi7bq5vki43kmz9zgz8vjqi7hisz"; 11872 11949 isLibrary = true; 11873 11950 isExecutable = true; 11951 + enableSeparateDataOutput = true; 11874 11952 libraryHaskellDepends = [ 11875 11953 array base bytestring containers directory ghc ghc-paths hashable 11876 11954 haskell-src html mtl network network-uri pretty random syb ··· 11956 12034 sha256 = "041kqz5j8xaa2ciyrfnwz6p9gcx4il5s6f34kzv9kp0s07hmn1q2"; 11957 12035 isLibrary = false; 11958 12036 isExecutable = true; 12037 + enableSeparateDataOutput = true; 11959 12038 executableHaskellDepends = [ 11960 12039 array base containers directory filepath HUnit mtl old-locale 11961 12040 pretty random regex-posix time ··· 12133 12212 sha256 = "0s3xp18y4kcjd1qq87vbhijbbpi9d1p08dgxw7521xlr3gmxkqxw"; 12134 12213 isLibrary = false; 12135 12214 isExecutable = true; 12215 + enableSeparateDataOutput = true; 12136 12216 executableHaskellDepends = [ 12137 12217 array base containers haskell-src-exts mtl pretty 12138 12218 ]; ··· 12340 12420 sha256 = "1p8xhxxjhwr93as98pvp1z25ypgj7arka8bw75r0q46948h7nxf7"; 12341 12421 isLibrary = true; 12342 12422 isExecutable = true; 12423 + enableSeparateDataOutput = true; 12343 12424 libraryHaskellDepends = [ base parsec template-haskell ]; 12344 12425 executableHaskellDepends = [ base haskell98 process ]; 12345 12426 homepage = "http://monadgarden.cs.missouri.edu/MonadLab"; ··· 12407 12488 sha256 = "0jq59nnnydllqpvg3h2d1ylz3g58hwi0m08lmw2bv0ajzgn5mc8x"; 12408 12489 isLibrary = false; 12409 12490 isExecutable = true; 12491 + enableSeparateDataOutput = true; 12410 12492 executableHaskellDepends = [ array base directory GLUT OpenGL ]; 12411 12493 homepage = "http://www.geocities.jp/takascience/haskell/monadius_en.html"; 12412 12494 description = "2-D arcade scroller"; ··· 12424 12506 sha256 = "0myghw0w122n1czpaaqmpiyv0nragjkwnja8kb4agrwhcjfk3icb"; 12425 12507 isLibrary = false; 12426 12508 isExecutable = true; 12509 + enableSeparateDataOutput = true; 12427 12510 executableHaskellDepends = [ 12428 12511 array base containers directory free free-game mtl 12429 12512 ]; ··· 12994 13077 sha256 = "0wz80cv7m7m4q6y6rd07y422b97hyhnb9yl6bj68pi1nxmjzcjhm"; 12995 13078 isLibrary = false; 12996 13079 isExecutable = true; 13080 + enableSeparateDataOutput = true; 12997 13081 executableHaskellDepends = [ 12998 13082 base binary bytestring containers filepath gloss network 12999 13083 networked-game random ··· 13083 13167 pname = "Nomyx-Core"; 13084 13168 version = "0.7.6"; 13085 13169 sha256 = "16s60gap32kjs62zxjddppxyg9jhamzgm4d41mfg3vviadlacdrq"; 13170 + enableSeparateDataOutput = true; 13086 13171 libraryHaskellDepends = [ 13087 13172 acid-state aeson base blaze-html blaze-markup bytestring data-lens 13088 13173 data-lens-fd data-lens-template DebugTraceHelpers deepseq directory ··· 13106 13191 pname = "Nomyx-Language"; 13107 13192 version = "0.7.6"; 13108 13193 sha256 = "0na9nm6qnayip2lx3nd3if4c1iyp7zs89jp2dgb7zkmbiwvax3l9"; 13194 + enableSeparateDataOutput = true; 13109 13195 libraryHaskellDepends = [ 13110 13196 base Boolean containers data-lens data-lens-fd data-lens-template 13111 13197 DebugTraceHelpers ghc mtl old-locale random safe time ··· 13125 13211 pname = "Nomyx-Rules"; 13126 13212 version = "0.1.0"; 13127 13213 sha256 = "16kzpdvn57sdmpqkwswgixm6pnyi01vj44yvzczn9sy4azwd10q5"; 13214 + enableSeparateDataOutput = true; 13128 13215 libraryHaskellDepends = [ 13129 13216 base containers ghc hint-server hslogger mtl old-locale safe stm 13130 13217 time time-recurrence ··· 13146 13233 pname = "Nomyx-Web"; 13147 13234 version = "0.7.6"; 13148 13235 sha256 = "193v967bzhs0linqvh93w7viwdrlmsbdpnr8asigqhp5905zdjb7"; 13236 + enableSeparateDataOutput = true; 13149 13237 libraryHaskellDepends = [ 13150 13238 base blaze-html blaze-markup bytestring data-lens data-lens-fd fb 13151 13239 filepath happstack-authenticate happstack-server hscolour mtl ··· 13440 13528 sha256 = "061j03ld96zkx1pfg7caxkyknj91b3maijx52610zmc9kfcjg5jd"; 13441 13529 isLibrary = true; 13442 13530 isExecutable = true; 13531 + enableSeparateDataOutput = true; 13443 13532 libraryHaskellDepends = [ 13444 13533 async base brick bytestring conduit conduit-extra containers 13445 13534 control-monad-loop data-default itemfield listsafe microlens mtl ··· 13911 14000 sha256 = "0pfd5y8plxicdchkbij0nqj6zwxw3fcy5cz1ji5bky9g3bmz9mhm"; 13912 14001 isLibrary = false; 13913 14002 isExecutable = true; 14003 + enableSeparateDataOutput = true; 13914 14004 executableHaskellDepends = [ 13915 14005 base containers mtl network network-uri xml 13916 14006 ]; ··· 13995 14085 sha256 = "1g39mxrfii8vm40cbb7vdfrx2rx9gm4s1xhp3zjkiyi7f979cbk0"; 13996 14086 isLibrary = true; 13997 14087 isExecutable = true; 14088 + enableSeparateDataOutput = true; 13998 14089 libraryHaskellDepends = [ 13999 14090 Agda base containers directory filepath mtl pandoc pandoc-types 14000 14091 QuickCheck text time xhtml ··· 14258 14349 sha256 = "17avnaz6da80v5kgz0b3v0zq3y9p2d3mxxv5a09ggcmilbz4xwlg"; 14259 14350 isLibrary = false; 14260 14351 isExecutable = true; 14352 + enableSeparateDataOutput = true; 14261 14353 executableHaskellDepends = [ 14262 14354 base containers directory mtl random regex-compat 14263 14355 ]; ··· 14313 14405 sha256 = "1kly1jfki4n9fhgkh2m9j9xj8182s92i7rsq81vcm6i3hd4fac94"; 14314 14406 isLibrary = false; 14315 14407 isExecutable = true; 14408 + enableSeparateDataOutput = true; 14316 14409 executableHaskellDepends = [ 14317 14410 array base directory filepath haskell98 old-locale old-time parsec 14318 14411 process random ··· 14530 14623 sha256 = "0w7x4zgz00wzchqdhajpf1ir3h0jxw1vgh030g384k1qbbjv4la2"; 14531 14624 isLibrary = false; 14532 14625 isExecutable = true; 14626 + enableSeparateDataOutput = true; 14533 14627 executableHaskellDepends = [ 14534 14628 array base binary bytestring containers control-timeout directory 14535 14629 filepath FindBin hashable hashtables haskeline HsParrot HsSyck ··· 14826 14920 sha256 = "1d9zllxl8vyjmb9m9kdgrv9v9hwnspyiqhjnb5ds5kmby6r4r1h2"; 14827 14921 isLibrary = true; 14828 14922 isExecutable = true; 14923 + enableSeparateDataOutput = true; 14829 14924 libraryHaskellDepends = [ 14830 14925 aeson attoparsec base bytestring haskell-src-meta parsec scientific 14831 14926 snap snap-core template-haskell text vector websockets ··· 15170 15265 sha256 = "1zyxkvjxkadwakg03xnjii1hx0gs45ap9rfkpi4kxipzxppq1klk"; 15171 15266 isLibrary = false; 15172 15267 isExecutable = true; 15268 + enableSeparateDataOutput = true; 15173 15269 executableHaskellDepends = [ 15174 15270 base containers extensible-exceptions GLUT mtl OpenGL random sdl2 15175 15271 sdl2-image sdl2-mixer time ··· 15258 15354 sha256 = "1df010121jdjbagc3gg906kydmwwpa7np1c0mx7w2v64mr7i2q1r"; 15259 15355 isLibrary = false; 15260 15356 isExecutable = true; 15357 + enableSeparateDataOutput = true; 15261 15358 executableHaskellDepends = [ 15262 15359 base HTTP json network utf8-string XMPP 15263 15360 ]; ··· 15278 15375 sha256 = "1wk4bylydfdqdmzjybkpbmvp4znp9i26mvkl2541gp5vwv7blms6"; 15279 15376 isLibrary = false; 15280 15377 isExecutable = true; 15378 + enableSeparateDataOutput = true; 15281 15379 executableHaskellDepends = [ 15282 15380 array base bytestring cereal containers convertible directory 15283 15381 filepath ghc GLUT monad-loops OpenGL OpenGLRaw time Yampa ··· 15468 15566 pname = "Rlang-QQ"; 15469 15567 version = "0.3.1.0"; 15470 15568 sha256 = "0rl3cmr7vfc8vk7132y40ib0l53v9yndw71bmp25zj24nkmha7hj"; 15569 + enableSeparateDataOutput = true; 15471 15570 libraryHaskellDepends = [ 15472 15571 array base binary bytestring Cabal containers data-binary-ieee754 15473 15572 directory filepath haskell-src-meta HList lens mtl process repa SHA ··· 15583 15682 sha256 = "1sa3zx3vrs1gbinxx33zwq0x2bsf3i964bff7419p7vzidn36k46"; 15584 15683 revision = "1"; 15585 15684 editedCabalFile = "0gj76j31i8rnlnvkf6hr8ljc6qmqqqcndy0bgrcppji78zg3ygi3"; 15685 + enableSeparateDataOutput = true; 15586 15686 libraryHaskellDepends = [ base ]; 15587 15687 librarySystemDepends = [ SDL ]; 15588 15688 description = "Binding to libSDL"; ··· 15595 15695 pname = "SDL-gfx"; 15596 15696 version = "0.6.0.2"; 15597 15697 sha256 = "1i8dfyi0cdhm2mad7fk2dd8qdc3lpbjw52s67vyxi4r1b8rka05b"; 15698 + enableSeparateDataOutput = true; 15598 15699 libraryHaskellDepends = [ base SDL ]; 15599 15700 librarySystemDepends = [ SDL_gfx ]; 15600 15701 description = "Binding to libSDL_gfx"; ··· 15609 15710 sha256 = "1ybdwlqi5nqzpsbh2md5mxhwmjn910iqysf6nykwjxlmvhcjk281"; 15610 15711 revision = "1"; 15611 15712 editedCabalFile = "0syx3032z15mnvi2apqsml065xk1i5i9jixwv022a9mimlk710vy"; 15713 + enableSeparateDataOutput = true; 15612 15714 libraryHaskellDepends = [ base SDL ]; 15613 15715 librarySystemDepends = [ SDL_image ]; 15614 15716 description = "Binding to libSDL_image"; ··· 15623 15725 sha256 = "1fhray79d80dk2aj9mx3ks05mm48sd832g8zgxli226jx471fs8r"; 15624 15726 revision = "1"; 15625 15727 editedCabalFile = "193wigk1c7i4lxkwkj4kd2fzymwg586ky9h7fpsa1cqmz12sc5wz"; 15728 + enableSeparateDataOutput = true; 15626 15729 libraryHaskellDepends = [ base SDL ]; 15627 15730 librarySystemDepends = [ SDL_mixer ]; 15628 15731 description = "Binding to libSDL_mixer"; ··· 15635 15738 pname = "SDL-mpeg"; 15636 15739 version = "0.0.1"; 15637 15740 sha256 = "0hx4977iynchnyd4b9ycbiw5qq07wk1a7dkisqx0a3x0ca4qirwj"; 15741 + enableSeparateDataOutput = true; 15638 15742 libraryHaskellDepends = [ base SDL ]; 15639 15743 librarySystemDepends = [ smpeg ]; 15640 15744 description = "Binding to the SMPEG library"; ··· 15647 15751 pname = "SDL-ttf"; 15648 15752 version = "0.6.2.2"; 15649 15753 sha256 = "16blaa55jiyrailhv9cjrr7wrp8m6pssj0jfz2p6631g4vqy888n"; 15754 + enableSeparateDataOutput = true; 15650 15755 libraryHaskellDepends = [ base SDL ]; 15651 15756 librarySystemDepends = [ SDL_ttf ]; 15652 15757 description = "Binding to libSDL_ttf"; ··· 15839 15944 ({ mkDerivation, base, containers, ghc, ghc-paths }: 15840 15945 mkDerivation { 15841 15946 pname = "SSTG"; 15842 - version = "0.1.0.4"; 15843 - sha256 = "0z61bv1mxmm1gq4b61gp3519fv0v7hb1cqcl4x8zp7cz5hgr8sr4"; 15947 + version = "0.1.0.7"; 15948 + sha256 = "05hdjym88bmii19gbz2k6jfr0bxmll514ysazavdhcrgdjgf0r0f"; 15844 15949 isLibrary = true; 15845 15950 isExecutable = true; 15846 15951 libraryHaskellDepends = [ base containers ghc ghc-paths ]; ··· 15849 15954 homepage = "https://github.com/AntonXue/SSTG#readme"; 15850 15955 description = "STG Symbolic Execution"; 15851 15956 license = stdenv.lib.licenses.bsd3; 15957 + hydraPlatforms = stdenv.lib.platforms.none; 15852 15958 }) {}; 15853 15959 15854 15960 "STL" = callPackage ··· 15906 16012 pname = "SVGFonts"; 15907 16013 version = "1.6.0.1"; 15908 16014 sha256 = "1w6hh8anpb0psilzbp4k80rbavdmkmb5rn34x9m2s72rz0jfy9zp"; 16015 + enableSeparateDataOutput = true; 15909 16016 libraryHaskellDepends = [ 15910 16017 attoparsec base blaze-markup blaze-svg bytestring cereal 15911 16018 cereal-vector containers data-default-class diagrams-core ··· 16458 16565 sha256 = "1hal35bp7jw2dwmnd68p27hn19mgpdf28lpf8nh0qja59gxk4lff"; 16459 16566 isLibrary = false; 16460 16567 isExecutable = true; 16568 + enableSeparateDataOutput = true; 16461 16569 executableHaskellDepends = [ 16462 16570 array base containers data-lens-light mtl 16463 16571 ]; ··· 16575 16683 sha256 = "12dpvm8lzp8gllyrf7yzpljpdr0jdk42zhi7zrnzvjzryv6w268j"; 16576 16684 isLibrary = true; 16577 16685 isExecutable = true; 16686 + enableSeparateDataOutput = true; 16578 16687 libraryHaskellDepends = [ 16579 16688 base base-unicode-symbols binary derive directory mtl process 16580 16689 random zlib ··· 16595 16704 sha256 = "02j5ni8565ba7rvr6gw9z65qdfl7rd17586gqlkx2iz2v2bwkasf"; 16596 16705 isLibrary = true; 16597 16706 isExecutable = true; 16707 + enableSeparateDataOutput = true; 16598 16708 libraryHaskellDepends = [ 16599 16709 base base-unicode-symbols binary GLUT OpenGL process random 16600 16710 SoccerFun ··· 16682 16792 editedCabalFile = "1gv48zss4rw4z2n9grga090j1223ylzwi5pirqb0d1mdj9w617dm"; 16683 16793 isLibrary = false; 16684 16794 isExecutable = true; 16795 + enableSeparateDataOutput = true; 16685 16796 executableHaskellDepends = [ 16686 16797 base containers enummapset-th filepath LambdaHack template-haskell 16687 16798 text ··· 17039 17150 sha256 = "0h73yj74pl0k3p7vamqhw1jz36pvh8kfpw58gkmskdmkh7j6wb30"; 17040 17151 isLibrary = false; 17041 17152 isExecutable = true; 17153 + enableSeparateDataOutput = true; 17042 17154 executableHaskellDepends = [ 17043 17155 base directory haskell-src mtl pretty process Strafunski-ATermLib 17044 17156 Strafunski-StrategyLib template-haskell ··· 17106 17218 pname = "StrictBench"; 17107 17219 version = "0.1.1"; 17108 17220 sha256 = "1l4l77rjhl5g9089kjyarsrvbvm43bk370ld50qp17dqhvisl73m"; 17221 + enableSeparateDataOutput = true; 17109 17222 libraryHaskellDepends = [ base benchpress parallel ]; 17110 17223 homepage = "http://bonsaicode.wordpress.com/2009/06/07/strictbench-0-1/"; 17111 17224 description = "Benchmarking code through strict evaluation"; ··· 17196 17309 pname = "Sysmon"; 17197 17310 version = "0.1.2"; 17198 17311 sha256 = "1zyp333vicjarcmip2q52nzfv948yl2q6qr3k3glp4v4m8f75ap3"; 17312 + enableSeparateDataOutput = true; 17199 17313 libraryHaskellDepends = [ 17200 17314 base ConfigFile filepath fingertree Glob MissingH mtl old-locale 17201 17315 pretty statistics template-haskell time vector ··· 17643 17757 sha256 = "1ylf4kzyf947szgib0ivkvygbinmy97nvy77d0crryzxdmccrzbj"; 17644 17758 isLibrary = true; 17645 17759 isExecutable = true; 17760 + enableSeparateDataOutput = true; 17646 17761 libraryHaskellDepends = [ 17647 17762 base containers old-locale old-time random SDL SDL-gfx SDL-image 17648 17763 SDL-ttf ··· 17901 18016 sha256 = "0crymgw91xx0hblbmz488x39i2qzf9c15kv5x950ljmpyrhy5jhv"; 17902 18017 isLibrary = false; 17903 18018 isExecutable = true; 18019 + enableSeparateDataOutput = true; 17904 18020 executableHaskellDepends = [ 17905 18021 base containers filepath random reactive-banana reactive-banana-sdl 17906 18022 SDL SDL-ttf transformers ··· 18261 18377 sha256 = "1fig9zxxisd51v5vzcsapsp4qygikhwhpjzyagw7a3x6kv5qpipm"; 18262 18378 isLibrary = false; 18263 18379 isExecutable = true; 18380 + enableSeparateDataOutput = true; 18264 18381 executableHaskellDepends = [ base containers matrix ]; 18265 18382 description = "A solver for the WordBrain game"; 18266 18383 license = stdenv.lib.licenses.mit; ··· 18313 18430 sha256 = "0974k5adxxa0jpi99wqq13lnav2rdb7qr40snvycsazk5mx1fd35"; 18314 18431 isLibrary = true; 18315 18432 isExecutable = true; 18433 + enableSeparateDataOutput = true; 18316 18434 libraryHaskellDepends = [ 18317 18435 base FindBin HDBC HDBC-sqlite3 mtl random split time 18318 18436 ]; ··· 18423 18541 pname = "WXDiffCtrl"; 18424 18542 version = "0.0.1"; 18425 18543 sha256 = "0vv8s483g3dkxyk833cjczj0a5zxiy9xh56kij6n0jjyzxb9bz0k"; 18544 + enableSeparateDataOutput = true; 18426 18545 libraryHaskellDepends = [ base containers wx wxcore ]; 18427 18546 homepage = "http://wewantarock.wordpress.com"; 18428 18547 description = "WXDiffCtrl"; ··· 18520 18639 pname = "WebBits-multiplate"; 18521 18640 version = "0.0.0.1"; 18522 18641 sha256 = "1j3difi3f1w6bgbnsvqw9cv88aikin22myli0lx29pqn7xhqsbv3"; 18642 + enableSeparateDataOutput = true; 18523 18643 libraryHaskellDepends = [ 18524 18644 base multiplate multiplate-simplified transformers WebBits 18525 18645 ]; ··· 18817 18937 pname = "Wired"; 18818 18938 version = "0.3"; 18819 18939 sha256 = "14zxf849r4k3mk5i5rakfjp2f216sz84ww4hfggq9cnr9w8j406j"; 18940 + enableSeparateDataOutput = true; 18820 18941 libraryHaskellDepends = [ 18821 18942 base chalmers-lava2000 containers mtl QuickCheck 18822 18943 ]; ··· 19083 19204 pname = "XMMS"; 19084 19205 version = "0.1.1"; 19085 19206 sha256 = "08l53b0wp6v9wjfn53xfa1vlh64bnqidajc4lzlk8p31km1c09qx"; 19207 + enableSeparateDataOutput = true; 19086 19208 libraryHaskellDepends = [ base containers ]; 19087 19209 librarySystemDepends = [ xmmsclient xmmsclient-glib ]; 19088 19210 homepage = "http://kawais.org.ua/XMMS/"; ··· 19099 19221 pname = "XMPP"; 19100 19222 version = "0.1.2"; 19101 19223 sha256 = "03gypa9kln2v3zqyxszn4k2x364g8wj0hppsy10ywmandghsvn7b"; 19224 + enableSeparateDataOutput = true; 19102 19225 libraryHaskellDepends = [ 19103 19226 base haskell98 hsdns mtl network parsec random utf8-string 19104 19227 ]; ··· 19198 19321 sha256 = "1r2n1vbzq755p68fzb5f6fm1yjfq2c5jgx52ri9p5rlrwmfk3hw5"; 19199 19322 isLibrary = false; 19200 19323 isExecutable = true; 19324 + enableSeparateDataOutput = true; 19201 19325 executableHaskellDepends = [ 19202 19326 base data-accessor-transformers fclabels monads-fd random SDL 19203 19327 SDL-image SDL-mixer SDL-ttf transformers ··· 19239 19363 sha256 = "0qa7m9y3dclr2r2vpd2cmpc58nib158hnr49hrdjvk00ncd4lyvk"; 19240 19364 isLibrary = true; 19241 19365 isExecutable = true; 19366 + enableSeparateDataOutput = true; 19242 19367 executableHaskellDepends = [ 19243 19368 base blaze-builder blaze-html bytestring case-insensitive 19244 19369 clientsession conduit containers data-default directory filepath ··· 19323 19448 sha256 = "028a7lrfyikvky52s19kffssnry1grnip3sm7z55bs5fazma1im1"; 19324 19449 isLibrary = false; 19325 19450 isExecutable = true; 19451 + enableSeparateDataOutput = true; 19326 19452 executableHaskellDepends = [ 19327 19453 array base bytestring containers HCodecs Yampa 19328 19454 ]; ··· 19404 19530 pname = "ZFS"; 19405 19531 version = "0.0.2"; 19406 19532 sha256 = "1mwpcgkw1cci2grhb8vl081wykkgsmfbanwapp10mrzzp0df1yzr"; 19533 + enableSeparateDataOutput = true; 19407 19534 libraryHaskellDepends = [ 19408 19535 base CC-delcont containers mtl network unix 19409 19536 ]; ··· 19421 19548 sha256 = "1s005k892z9651mr2jj0jdwpm8aa0y72vi405xi4h6czg52i4rb3"; 19422 19549 isLibrary = false; 19423 19550 isExecutable = true; 19551 + enableSeparateDataOutput = true; 19424 19552 executableHaskellDepends = [ array base gtk mtl random ]; 19425 19553 description = "A Z-machine interpreter"; 19426 19554 license = stdenv.lib.licenses.bsd3; ··· 19492 19620 sha256 = "0jfnf0rq3rfic196zjwbaiamyis98zrr8d4zn2myjlgqlzhljzs0"; 19493 19621 isLibrary = false; 19494 19622 isExecutable = true; 19623 + enableSeparateDataOutput = true; 19495 19624 executableHaskellDepends = [ 19496 19625 base biofasta biopsl cmdargs containers directory process 19497 19626 ]; ··· 19847 19976 sha256 = "10mnsl5bclqf1k9yjadxy4zsj6pm4qbsx2hkrrhkjxfvhcba3wcb"; 19848 19977 revision = "3"; 19849 19978 editedCabalFile = "04w0gy775lxjgvvg1mbyrz0xzbdrc0dzbygy4vi52j0y9lygb4vm"; 19979 + enableSeparateDataOutput = true; 19850 19980 libraryHaskellDepends = [ 19851 19981 accelerate array base binary bytestring containers cryptohash cuda 19852 19982 directory fclabels filepath hashable hashtables language-c-quote ··· 20865 20995 sha256 = "03za0c24a22fy28mcm173r0cca6fk60jikp0pp817mrq6gpv62hc"; 20866 20996 isLibrary = false; 20867 20997 isExecutable = true; 20998 + enableSeparateDataOutput = true; 20868 20999 executableHaskellDepends = [ 20869 21000 activehs-base array base blaze-html bytestring cmdargs containers 20870 21001 data-pprint deepseq dia-base dia-functions directory filepath ··· 20910 21041 pname = "actor"; 20911 21042 version = "0.1.1"; 20912 21043 sha256 = "1ic74yrfy6hk7217vh2ff6yacvf3dc5m1hjkcpfvxzdk5xhdv2b5"; 21044 + enableSeparateDataOutput = true; 20913 21045 libraryHaskellDepends = [ base haskell98 stm time ]; 20914 21046 homepage = "http://sulzmann.blogspot.com/2008/10/actors-with-multi-headed-receive.html"; 20915 21047 description = "Actors with multi-headed receive clauses"; ··· 20990 21122 sha256 = "17ikb90zwz3vvs9yg3z83pzs442vy5nx0h44i64akn10aykw8hic"; 20991 21123 isLibrary = false; 20992 21124 isExecutable = true; 21125 + enableSeparateDataOutput = true; 20993 21126 executableHaskellDepends = [ 20994 21127 base case-insensitive containers directory filepath http-conduit 20995 21128 MissingH mtl network network-uri old-locale parsec ··· 21556 21689 }: 21557 21690 mkDerivation { 21558 21691 pname = "aeson-flowtyped"; 21559 - version = "0.7.1"; 21560 - sha256 = "1b0dqscd7dz14flmjzinzdck99sqpjg4qnhy0wdl9bjajf7bfbhb"; 21692 + version = "0.7.2"; 21693 + sha256 = "065iw6a6bbm36yzph1f5gg8xzkaj4kkfqcak74lsdp9a60grgv87"; 21561 21694 libraryHaskellDepends = [ 21562 21695 aeson base containers free recursion-schemes reflection scientific 21563 21696 text time unordered-containers vector wl-pprint 21564 21697 ]; 21565 21698 testHaskellDepends = [ 21566 - aeson base recursion-schemes tasty tasty-hunit text vector 21699 + aeson base recursion-schemes tasty tasty-hunit text 21700 + unordered-containers vector 21567 21701 ]; 21702 + homepage = "https://github.com/mikeplus64/aeson-flowtyped#readme"; 21568 21703 description = "Create Flow type definitions from Haskell data types"; 21569 21704 license = stdenv.lib.licenses.bsd3; 21570 21705 }) {}; ··· 21800 21935 sha256 = "1idw9bb1miw61vvyacrlnx98rl4p0wx750gnhc4blx4a07i5vs9h"; 21801 21936 revision = "1"; 21802 21937 editedCabalFile = "1rl9hm85r607iwigzg5y1rki8vl7943ws4j1zsz0hq8g3mcb5alf"; 21938 + enableSeparateDataOutput = true; 21803 21939 libraryHaskellDepends = [ 21804 21940 aeson attoparsec base bytestring containers ghc-prim mtl QuickCheck 21805 21941 regex-base regex-compat regex-pcre scientific syb template-haskell ··· 22002 22138 pname = "afis"; 22003 22139 version = "0.1.2"; 22004 22140 sha256 = "0ppq3rbwszz3wczg0zgk8hjqplv2ck11bbq5xr8306s5n02ybcf9"; 22141 + enableSeparateDataOutput = true; 22005 22142 libraryHaskellDepends = [ 22006 22143 base byteable bytestring crypto-random cryptohash packer 22007 22144 ]; ··· 22059 22196 sha256 = "070xszykrazkisp1lsh2q1ri1i64lhd8psz8g4blv37zm899fpga"; 22060 22197 isLibrary = false; 22061 22198 isExecutable = true; 22199 + enableSeparateDataOutput = true; 22062 22200 executableHaskellDepends = [ 22063 22201 Agda base cmdargs containers directory filepath HJavaScript mtl 22064 22202 pandoc snap-core snap-server transformers utf8-string xhtml ··· 22204 22342 pname = "air-spec"; 22205 22343 version = "2013.7.1"; 22206 22344 sha256 = "0s4y2805nmfydzxgr5lnhmyzkb6rh9mx2kpvzqqgyh4jvccdnwfx"; 22345 + enableSeparateDataOutput = true; 22207 22346 libraryHaskellDepends = [ base hspec text ]; 22208 22347 homepage = "https://github.com/nfjinjing/air-spec"; 22209 22348 description = "air spec helper"; ··· 22488 22627 sha256 = "1x2rc0gyyg7idc07hi64fvkv5h5a652kmcrczfxqyzbiyx2fjphs"; 22489 22628 isLibrary = true; 22490 22629 isExecutable = true; 22630 + enableSeparateDataOutput = true; 22491 22631 libraryHaskellDepends = [ 22492 22632 array base binary bytestring containers cpphs directory fgl 22493 22633 filepath haskeline HsSyck mtl old-time pretty process random ··· 22541 22681 sha256 = "0kybz7q9gd0f35qmgnrg625z8kis308svingkjscn9ridwxz6g09"; 22542 22682 isLibrary = false; 22543 22683 isExecutable = true; 22684 + enableSeparateDataOutput = true; 22544 22685 executableHaskellDepends = [ 22545 22686 base optparse-applicative random text 22546 22687 ]; ··· 22650 22791 sha256 = "1wi0x4750c525zaqk8hzin4n1k38219nmgynv85rdsxik5qm141y"; 22651 22792 isLibrary = true; 22652 22793 isExecutable = true; 22794 + enableSeparateDataOutput = true; 22653 22795 libraryHaskellDepends = [ 22654 22796 base containers exceptions haskeline hxt megaparsec mtl path 22655 22797 QuickCheck random text tf-random transformers ··· 22907 23049 sha256 = "1xickrpjx2dn2pa5zcbjsfm5j6mqn54hpyzi7c6sv5i20hs2gamp"; 22908 23050 isLibrary = false; 22909 23051 isExecutable = true; 23052 + enableSeparateDataOutput = true; 22910 23053 executableHaskellDepends = [ 22911 23054 array base containers directory editline fgl filepath HUnit 22912 23055 incremental-sat-solver mtl network parsec pretty QuickCheck random ··· 23043 23186 sha256 = "1dmc336irhw6wdny6f2za9n3gnd83i3pcfr7qfkm8fzq6kzkkjy3"; 23044 23187 isLibrary = true; 23045 23188 isExecutable = true; 23189 + enableSeparateDataOutput = true; 23046 23190 libraryHaskellDepends = [ 23047 23191 array base event-list midi non-negative 23048 23192 ]; ··· 24992 25136 pname = "amby"; 24993 25137 version = "0.3.2"; 24994 25138 sha256 = "0sck0jjr1iwiy6lxd0lhv4cww004pcm7i9b9d8wikfvp2g170yzs"; 25139 + enableSeparateDataOutput = true; 24995 25140 libraryHaskellDepends = [ 24996 25141 base bytestring cassava Chart Chart-cairo Chart-diagrams colour 24997 25142 containers data-default data-default-class datasets either ··· 25019 25164 sha256 = "0i37ycyhks335gfby81mnjflk40ir66aprf4752sqnqs68wk6bpm"; 25020 25165 isLibrary = false; 25021 25166 isExecutable = true; 25167 + enableSeparateDataOutput = true; 25022 25168 executableHaskellDepends = [ 25023 25169 base bytestring containers csv directory filepath graphviz hashable 25024 25170 HStringTemplate lens MissingH mtl old-locale old-time pandoc ··· 25161 25307 pname = "analyze"; 25162 25308 version = "0.1.0.0"; 25163 25309 sha256 = "0ia4dcqzq168qy5qh65dsp7bb94bxmxnpi2l9vzp7492wrhij9mg"; 25310 + enableSeparateDataOutput = true; 25164 25311 libraryHaskellDepends = [ 25165 25312 aeson base binary bytestring cassava exceptions foldl free hashable 25166 25313 lucid text unordered-containers vector ··· 25259 25406 sha256 = "0xza3xfzzbix9xf0vwwk4qz02h4iil3hglqspgdymhjbxfl68714"; 25260 25407 isLibrary = true; 25261 25408 isExecutable = true; 25409 + enableSeparateDataOutput = true; 25262 25410 libraryHaskellDepends = [ 25263 25411 atomo base blaze-html bytestring containers directory filepath 25264 25412 hashable haskeline highlighter mtl parsec pretty pretty-show ··· 25818 25966 sha256 = "08a747p0dyjvgn5pjfvrb1hnh7vk2km8hbbyvjmnsxl89r5m992l"; 25819 25967 isLibrary = false; 25820 25968 isExecutable = true; 25969 + enableSeparateDataOutput = true; 25821 25970 executableHaskellDepends = [ 25822 25971 array base bytestring containers deepseq directory filepath glib 25823 25972 gtk HTTP mtl network process transformers tremulous-query ··· 25875 26024 pname = "api-opentheory-unicode"; 25876 26025 version = "1.2"; 25877 26026 sha256 = "1mzbkrbdwcxr83bprk3gjrrg6sarl0vwv729xs8x5d1rfdiqlm88"; 26027 + enableSeparateDataOutput = true; 25878 26028 libraryHaskellDepends = [ base bytestring opentheory-unicode ]; 25879 26029 testHaskellDepends = [ 25880 26030 base bytestring directory opentheory-unicode ··· 27577 27727 editedCabalFile = "18qjn7asld26nlri6md4z3kmyvarvvg5wi7rwsg4ngrxw4gbqhqm"; 27578 27728 isLibrary = true; 27579 27729 isExecutable = true; 27730 + enableSeparateDataOutput = true; 27580 27731 libraryHaskellDepends = [ base bytestring cereal mtl text ]; 27581 27732 homepage = "https://github.com/vincenthz/hs-asn1/tree/master/data"; 27582 27733 description = "ASN1 data reader and writer in RAW, BER and DER forms"; ··· 27636 27787 sha256 = "05kdx00bkpp3f4x1i9j8kfbdnhsivx1njcfpcxxgw93jm5ng3lj7"; 27637 27788 isLibrary = false; 27638 27789 isExecutable = true; 27790 + enableSeparateDataOutput = true; 27639 27791 executableHaskellDepends = [ 27640 27792 asn1-encoding asn1-types base bytestring pem 27641 27793 ]; ··· 27707 27859 pname = "assertions"; 27708 27860 version = "0.1.0.4"; 27709 27861 sha256 = "1b2p6b6brk0b1hq264i20bpdhdaq4xdzcqp7gzvfy1s5q3zwjzj8"; 27862 + enableSeparateDataOutput = true; 27710 27863 libraryHaskellDepends = [ ansi-terminal base containers ]; 27711 27864 testHaskellDepends = [ base interpolate process ]; 27712 27865 description = "A simple testing framework"; ··· 27779 27932 sha256 = "1zb265z6m1py2jxhxzrq2kb3arw2riagajhh3vs0m54rkrak6szs"; 27780 27933 isLibrary = false; 27781 27934 isExecutable = true; 27935 + enableSeparateDataOutput = true; 27782 27936 executableHaskellDepends = [ 27783 27937 base containers directory MonadRandom mtl OpenGL random SDL 27784 27938 SDL-image SDL-mixer SDL-ttf unix ··· 27817 27971 sha256 = "0lv4wbblv4r0vwfynswsxzyrl6qp45byjdmg4cs760qq3jj749zl"; 27818 27972 isLibrary = false; 27819 27973 isExecutable = true; 27974 + enableSeparateDataOutput = true; 27820 27975 executableHaskellDepends = [ 27821 27976 astview-utils base bytestring containers directory filepath glade 27822 27977 glib Glob gtk gtksourceview2 hint mtl process syb ··· 28129 28284 pname = "atlassian-connect-core"; 28130 28285 version = "0.8.0.0"; 28131 28286 sha256 = "1gja0q9bxr86wd4cwi6w4iv5bimb37jk7gy5bzc727fp2k75ja42"; 28287 + enableSeparateDataOutput = true; 28132 28288 libraryHaskellDepends = [ 28133 28289 aeson atlassian-connect-descriptor base base64-bytestring 28134 28290 bytestring case-insensitive cipher-aes configurator containers ··· 28409 28565 sha256 = "0hby64jd9zi518rnfk46ilipnp3x0ynkgqk2n0brf1873y88mwx8"; 28410 28566 isLibrary = true; 28411 28567 isExecutable = true; 28568 + enableSeparateDataOutput = true; 28412 28569 libraryHaskellDepends = [ 28413 28570 array base bytestring containers directory filepath hashable hint 28414 28571 mtl parsec pretty regex-pcre template-haskell text time vector ··· 28766 28923 sha256 = "1wmfnvl39amyfzkvpd3gysshyf10fjjb91zibalkqbq9pbsnfzjk"; 28767 28924 isLibrary = false; 28768 28925 isExecutable = true; 28926 + enableSeparateDataOutput = true; 28769 28927 executableHaskellDepends = [ 28770 28928 array base Cabal directory epic haskell98 28771 28929 ]; ··· 28807 28965 pname = "audiovisual"; 28808 28966 version = "0.0"; 28809 28967 sha256 = "0qjcsvv52l53iqyh7hkhwdsifqb943wjp1vn63qhqsrdaajazp3h"; 28968 + enableSeparateDataOutput = true; 28810 28969 libraryHaskellDepends = [ 28811 28970 base boundingboxes colors deepseq directory filepath free freetype2 28812 28971 hashable JuicyPixels JuicyPixels-util lens linear mtl objective ··· 28827 28986 sha256 = "08z6l97hi6clv3b34mz9zjc5rns02jx1zx9iqdsmjl2p7hcn7rs5"; 28828 28987 isLibrary = true; 28829 28988 isExecutable = true; 28989 + enableSeparateDataOutput = true; 28830 28990 libraryHaskellDepends = [ base bytestring directory unix ]; 28831 28991 libraryPkgconfigDepends = [ augeas ]; 28832 28992 executableHaskellDepends = [ HUnit ]; ··· 29161 29321 sha256 = "13z9c4j7f8smc441qawl7brljmgsgmfmp4dzq7914f7ycg24ck6g"; 29162 29322 isLibrary = true; 29163 29323 isExecutable = true; 29324 + enableSeparateDataOutput = true; 29164 29325 libraryHaskellDepends = [ base directory mtl process unix ]; 29165 29326 homepage = "https://github.com/dagit/autoproc"; 29166 29327 description = "EDSL for Procmail scripts"; ··· 30210 30371 sha256 = "12cyn149dgd9wvnc7smqsfy15mzgyfg8l17y6qz0k4dyapp8fvhf"; 30211 30372 isLibrary = false; 30212 30373 isExecutable = true; 30374 + enableSeparateDataOutput = true; 30213 30375 executableHaskellDepends = [ 30214 30376 array base containers random wx wxcore 30215 30377 ]; ··· 30331 30493 sha256 = "1xb05l5b94hdq65x24z1m4fhvsr977y912qa1c7wi8khc9xvbhqw"; 30332 30494 isLibrary = true; 30333 30495 isExecutable = true; 30496 + enableSeparateDataOutput = true; 30334 30497 libraryHaskellDepends = [ 30335 30498 aeson base bytestring cmdargs containers deepseq direct-sqlite 30336 30499 directory disk-free-space extra filepath hashable HTTP http-client ··· 30386 30549 pname = "bamboo"; 30387 30550 version = "2010.2.25"; 30388 30551 sha256 = "0v96ync9vkq7xyc5jmm7k7vfxpy4m1l2370m99wa8qlrpcffhrmi"; 30552 + enableSeparateDataOutput = true; 30389 30553 libraryHaskellDepends = [ 30390 30554 base bytestring containers data-default directory filepath gravatar 30391 30555 hack hack-contrib haskell98 mps mtl network old-locale old-time ··· 30408 30572 sha256 = "1xp2k33jxbkf0maj3p3grv93c9vnjg6fzy6l8gg5dhil18834vdd"; 30409 30573 isLibrary = false; 30410 30574 isExecutable = true; 30575 + enableSeparateDataOutput = true; 30411 30576 executableHaskellDepends = [ 30412 30577 bamboo bamboo-theme-blueprint base bytestring data-default hack 30413 30578 hack-contrib hack-handler-hyena haskell98 mps process ··· 30426 30591 pname = "bamboo-plugin-highlight"; 30427 30592 version = "2009.7.5"; 30428 30593 sha256 = "0f8hpampawv0csqsb504hg97r7mimkcs9irm9i2m2b13w5fciaqc"; 30594 + enableSeparateDataOutput = true; 30429 30595 libraryHaskellDepends = [ 30430 30596 bamboo base bytestring hack hack-contrib highlighting-kate hxt mps 30431 30597 xhtml ··· 30445 30611 pname = "bamboo-plugin-photo"; 30446 30612 version = "2009.7.5"; 30447 30613 sha256 = "19ik80hcshmw8gpsb9gwngnwvriri10xx2v6xvrz0q25cxgwdjah"; 30614 + enableSeparateDataOutput = true; 30448 30615 libraryHaskellDepends = [ 30449 30616 base bytestring data-default directory filepath hack hack-contrib 30450 30617 haskell98 hxt mps utf8-string xhtml ··· 30464 30631 pname = "bamboo-theme-blueprint"; 30465 30632 version = "2010.2.25.1"; 30466 30633 sha256 = "1wchvz2nm4klg11wjk3yb5yvqpa26c9lg6xc65k0dwxhy0cyd2zx"; 30634 + enableSeparateDataOutput = true; 30467 30635 libraryHaskellDepends = [ 30468 30636 bamboo base bytestring containers data-default gravatar hack 30469 30637 hack-contrib hcheat mps network rss utf8-string xhtml ··· 30485 30653 pname = "bamboo-theme-mini-html5"; 30486 30654 version = "2009.11.27"; 30487 30655 sha256 = "02zh9jqq46gg3hrsfjfq2skajr4jni3cisak4nd3shl6aqapw9d6"; 30656 + enableSeparateDataOutput = true; 30488 30657 libraryHaskellDepends = [ 30489 30658 bamboo base base64-string bytestring cgi containers data-default 30490 30659 directory filepath gravatar hack hack-contrib haskell98 hcheat moe ··· 30629 30798 sha256 = "0igz39bxlw4p0fna1wf6g791pk7r1m7hfyib5rgmsdahzkkp7v2h"; 30630 30799 isLibrary = false; 30631 30800 isExecutable = true; 30801 + enableSeparateDataOutput = true; 30632 30802 executableHaskellDepends = [ 30633 30803 base bytestring containers directory filepath ghc ghc-prim html 30634 30804 plugins snap-core snap-server text transformers unix-compat ··· 30663 30833 editedCabalFile = "167akvi72l47gcqbq5609m24469pq0xmv0kjbmivnrxs796gh890"; 30664 30834 isLibrary = true; 30665 30835 isExecutable = true; 30836 + enableSeparateDataOutput = true; 30666 30837 libraryHaskellDepends = [ 30667 30838 base blaze-svg bytestring template-haskell text 30668 30839 unordered-containers ··· 30878 31049 pname = "base32string"; 30879 31050 version = "0.9.1"; 30880 31051 sha256 = "0cpa6bvam4zd2l2hb3sdngj0dx482c9rkz4jj87n6pxsmq9id4wy"; 31052 + enableSeparateDataOutput = true; 30881 31053 libraryHaskellDepends = [ aeson base binary bytestring text ]; 30882 31054 testHaskellDepends = [ base binary bytestring hspec text ]; 30883 31055 homepage = "http://www.leonmergen.com/opensource.html"; ··· 30930 31102 pname = "base58string"; 30931 31103 version = "0.10.0"; 30932 31104 sha256 = "1260x4bkrizvnmylm237gpi92wazh31md9nf982sac3fsxyn0wiv"; 31105 + enableSeparateDataOutput = true; 30933 31106 libraryHaskellDepends = [ aeson base binary bytestring text ]; 30934 31107 testHaskellDepends = [ base binary bytestring hspec text ]; 30935 31108 homepage = "http://www.leonmergen.com/opensource.html"; ··· 31101 31274 sha256 = "1vb74crz57i4qmjl8k3gxr2abz9rmpw7yl5sm1pggnlfy9wcm15l"; 31102 31275 isLibrary = false; 31103 31276 isExecutable = true; 31277 + enableSeparateDataOutput = true; 31104 31278 executableHaskellDepends = [ 31105 31279 base containers mtl parsec pretty unix 31106 31280 ]; ··· 31321 31495 sha256 = "1mwc7l1n2gnw8yx5zphxlkgi6bkcw56qwifpy34wpa55x2lf6n82"; 31322 31496 isLibrary = true; 31323 31497 isExecutable = true; 31498 + enableSeparateDataOutput = true; 31324 31499 libraryHaskellDepends = [ aeson base network text url ]; 31325 31500 executableHaskellDepends = [ aeson base network text url ]; 31326 31501 description = "Update CSS in the browser without reloading the page"; ··· 31477 31652 sha256 = "1sq6z2a9bddqh0kys10g495bfj7pcyibsvhfxfl279z53va7d6ch"; 31478 31653 isLibrary = false; 31479 31654 isExecutable = true; 31655 + enableSeparateDataOutput = true; 31480 31656 executableHaskellDepends = [ 31481 31657 base bytestring containers convertible Crypto directory filepath 31482 31658 happstack-server happstack-util hdaemonize HDBC HDBC-postgresql ··· 31836 32012 sha256 = "0bclazwhg3ra7zv19xfx5rw2z3p8h8scw5r4m281524qzrkm9j6m"; 31837 32013 isLibrary = false; 31838 32014 isExecutable = true; 32015 + enableSeparateDataOutput = true; 31839 32016 executableHaskellDepends = [ 31840 32017 base bytestring cgi containers directory hint mtl parsec pretty 31841 32018 template-haskell unix utf8-string xhtml ··· 32763 32940 pname = "bindings-K8055"; 32764 32941 version = "0.1.2"; 32765 32942 sha256 = "0daga3vh9x9gih25qgcsl0hafi4hw8h5x64ba6wbmywa9z3hrr20"; 32943 + enableSeparateDataOutput = true; 32766 32944 libraryHaskellDepends = [ base ]; 32767 32945 librarySystemDepends = [ K8055D ]; 32768 32946 homepage = "https://github.com/jputcu/bindings-K8055"; ··· 33355 33533 pname = "bindings-sc3"; 33356 33534 version = "0.4.1"; 33357 33535 sha256 = "07vp6hzjjrbh3j152mq8f1i6xh9m2r20a555y03p9fzdfrb5kixd"; 33536 + enableSeparateDataOutput = true; 33358 33537 libraryHaskellDepends = [ base bindings-DSL ]; 33359 33538 librarySystemDepends = [ scsynth ]; 33360 33539 homepage = "https://github.com/kaoskorobase/bindings-sc3/"; ··· 33531 33710 sha256 = "1vby3nbqbwza65jg5d0bmzh22i5s20cjbqdgaq9zasza7ywgkj22"; 33532 33711 isLibrary = true; 33533 33712 isExecutable = true; 33713 + enableSeparateDataOutput = true; 33534 33714 libraryHaskellDepends = [ 33535 33715 array base binary bytestring containers directory mtl parallel 33536 33716 parsec QuickCheck tagsoup ··· 33634 33814 ({ mkDerivation, aeson, aeson-pretty, base, bytestring 33635 33815 , bytestring-lexing, case-insensitive, clustering, conduit 33636 33816 , conduit-combinators, containers, criterion, data-default-class 33637 - , double-conversion, hexpat, HsHTSLib, http-conduit, IntervalMap 33638 - , math-functions, matrices, mtl, parallel, primitive, random, split 33639 - , statistics, tasty, tasty-golden, tasty-hunit, text, transformers 33640 - , unordered-containers, vector, vector-algorithms, word8 33817 + , data-ordlist, double-conversion, hexpat, HsHTSLib, http-conduit 33818 + , IntervalMap, math-functions, matrices, mtl, parallel, primitive 33819 + , random, split, statistics, tasty, tasty-golden, tasty-hunit, text 33820 + , transformers, unordered-containers, vector, vector-algorithms 33821 + , word8 33641 33822 }: 33642 33823 mkDerivation { 33643 33824 pname = "bioinformatics-toolkit"; 33644 - version = "0.3.1"; 33645 - sha256 = "0hymk1lk26mla5al22bbj582vg96bwky6vwyqfy9b97q64w50lzl"; 33825 + version = "0.3.2"; 33826 + sha256 = "1zgvn1zkajslg221fk345vfgbi9pi9lr5ki3m4qpwgr3pvlz2h10"; 33827 + enableSeparateDataOutput = true; 33646 33828 libraryHaskellDepends = [ 33647 33829 aeson aeson-pretty base bytestring bytestring-lexing 33648 33830 case-insensitive clustering conduit-combinators containers 33649 - data-default-class double-conversion hexpat HsHTSLib http-conduit 33650 - IntervalMap math-functions matrices mtl parallel primitive split 33651 - statistics text transformers unordered-containers vector 33652 - vector-algorithms word8 33831 + data-default-class data-ordlist double-conversion hexpat HsHTSLib 33832 + http-conduit IntervalMap math-functions matrices mtl parallel 33833 + primitive split statistics text transformers unordered-containers 33834 + vector vector-algorithms word8 33653 33835 ]; 33654 33836 testHaskellDepends = [ 33655 33837 base bytestring conduit conduit-combinators data-default-class ··· 33751 33933 sha256 = "0w380dcpk8gp5cx24nh6xlnibd6pw93wmxcajl26p4kd5cxbgfqz"; 33752 33934 isLibrary = true; 33753 33935 isExecutable = true; 33936 + enableSeparateDataOutput = true; 33754 33937 libraryHaskellDepends = [ 33755 33938 base bytestring containers data-default hack hack-handler-happstack 33756 33939 haskell98 MissingH mtl parsec process rallod ··· 33840 34023 pname = "bitcoin-api"; 33841 34024 version = "0.12.1"; 33842 34025 sha256 = "0c1ydggik4k3vj93bqk53privyblkwhd32jizw25qk5j34axwy69"; 34026 + enableSeparateDataOutput = true; 33843 34027 libraryHaskellDepends = [ 33844 34028 aeson base base58string binary bitcoin-block bitcoin-script 33845 34029 bitcoin-tx bitcoin-types bytestring hexstring lens lens-aeson text ··· 33863 34047 pname = "bitcoin-api-extra"; 33864 34048 version = "0.9.1"; 33865 34049 sha256 = "1z6pppjgq6sy4q78k176pnr6y3lq369brqf0pg90v0qggl0cc8y4"; 34050 + enableSeparateDataOutput = true; 33866 34051 libraryHaskellDepends = [ 33867 34052 base binary bitcoin-api bitcoin-block bitcoin-tx bytestring conduit 33868 34053 lens stm stm-chans stm-conduit text transformers ··· 33884 34069 pname = "bitcoin-block"; 33885 34070 version = "0.13.1"; 33886 34071 sha256 = "0nkx86fwv65x9vz6ni6qgz61afnvcifw2g92bnwdli8hww7prxfp"; 34072 + enableSeparateDataOutput = true; 33887 34073 libraryHaskellDepends = [ 33888 34074 base binary bitcoin-tx bitcoin-types bytestring cryptohash 33889 34075 hexstring largeword lens ··· 33994 34180 pname = "bitcoin-script"; 33995 34181 version = "0.11.1"; 33996 34182 sha256 = "0k3v35p6qpgh88gc5rqpcmh202xrn2rind9641dinwqqx631v31r"; 34183 + enableSeparateDataOutput = true; 33997 34184 libraryHaskellDepends = [ 33998 34185 base base16-bytestring binary bytestring text 33999 34186 ]; ··· 34011 34198 pname = "bitcoin-tx"; 34012 34199 version = "0.13.1"; 34013 34200 sha256 = "006c55l6q6cknxw0k0kzr8vkv8azapfb4mkax6ac6rih6mjq5f1v"; 34201 + enableSeparateDataOutput = true; 34014 34202 libraryHaskellDepends = [ 34015 34203 base binary bitcoin-script bitcoin-types bytestring cryptohash 34016 34204 hexstring lens ··· 34031 34219 pname = "bitcoin-types"; 34032 34220 version = "0.9.2"; 34033 34221 sha256 = "02y4svhcsml37p78g4cm97kyigcakgf4hds4bxnp0r4ba1498bxp"; 34222 + enableSeparateDataOutput = true; 34034 34223 libraryHaskellDepends = [ 34035 34224 base base58string binary bytestring hexstring text 34036 34225 ]; ··· 34205 34394 pname = "bitset"; 34206 34395 version = "1.4.8"; 34207 34396 sha256 = "0h912i3wb6v8sx0c4mlp0j65l3yhpdsk3my8zhif2jls2sxns988"; 34397 + enableSeparateDataOutput = true; 34208 34398 libraryHaskellDepends = [ base deepseq ghc-prim integer-gmp ]; 34209 34399 librarySystemDepends = [ gmp ]; 34210 34400 testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; ··· 34428 34618 sha256 = "1zb076m4673jmvzazwjjmlw3nrnw0j22hiim6r90014sqcpb6xhp"; 34429 34619 isLibrary = false; 34430 34620 isExecutable = true; 34621 + enableSeparateDataOutput = true; 34431 34622 executableHaskellDepends = [ base haskell98 unix ]; 34432 34623 homepage = "http://github.com/nfjinjing/bla"; 34433 34624 description = "a stupid cron"; ··· 34544 34735 sha256 = "1cs81ykw1y2q1kwkdni5w9jxa8bc31b118diaqzf870bqm7mq3ia"; 34545 34736 revision = "11"; 34546 34737 editedCabalFile = "1n5sf249kcrk276hdj68g7v6fmhfg6wfwaaibqx2am86iz8dvr06"; 34738 + enableSeparateDataOutput = true; 34547 34739 libraryHaskellDepends = [ 34548 34740 aeson base base-compat base64-bytestring bytestring colour 34549 34741 containers data-default-class http-types kansas-comet mime-types ··· 34988 35180 sha256 = "0c4m9ia92djr8lhp6n1zwwxskr344322m8g24ka4skbrp1vy3qnd"; 34989 35181 isLibrary = true; 34990 35182 isExecutable = true; 35183 + enableSeparateDataOutput = true; 34991 35184 libraryHaskellDepends = [ 34992 35185 base bytestring cereal containers d-bus data-default-class 34993 35186 microlens microlens-ghc mtl random text transformers uuid ··· 35132 35325 sha256 = "0bdhcjiz2b4zavmixvrl5la91s9z5pra05xk52118cjk4dcfdzfg"; 35133 35326 isLibrary = true; 35134 35327 isExecutable = true; 35328 + enableSeparateDataOutput = true; 35135 35329 libraryHaskellDepends = [ 35136 35330 base directory feed filepath higherorder highlighting-kate mtl 35137 35331 old-locale pandoc regex-compat time utf8-string xhtml xml ··· 35296 35490 sha256 = "0cryvs5ia52dkc232cl2crhf0qq7ncir5c3zvrgsbzcc2hnmyrww"; 35297 35491 isLibrary = false; 35298 35492 isExecutable = true; 35493 + enableSeparateDataOutput = true; 35299 35494 executableHaskellDepends = [ base GLFW OpenGL ]; 35300 35495 description = "OpenGL Logic Game"; 35301 35496 license = "GPL"; ··· 35331 35526 sha256 = "12f594sl2c2hrxr95bpv911x0bdfpmaflp29mhw2yln2vh64nhj5"; 35332 35527 isLibrary = true; 35333 35528 isExecutable = true; 35529 + enableSeparateDataOutput = true; 35334 35530 libraryHaskellDepends = [ base cereal containers random ]; 35335 35531 executableHaskellDepends = [ 35336 35532 base Cabal cereal containers data-default-class network pandoc ··· 35369 35565 sha256 = "13xfnx08xgbfppr4cqmrqj82w192ll4m1x4kmv5jdpk02yb4zqa2"; 35370 35566 isLibrary = false; 35371 35567 isExecutable = true; 35568 + enableSeparateDataOutput = true; 35372 35569 executableHaskellDepends = [ 35373 35570 base ConfigFile containers directory filepath glade gtk mtl process 35374 35571 random regex-compat unix utf8-string X11 X11-xft xmonad ··· 35595 35792 pname = "bond-haskell"; 35596 35793 version = "0.1.5.0"; 35597 35794 sha256 = "01l6n6gx2qdwan1dx8vswvm13scp0dxbdvnv5j4w34iyj6qg0qnv"; 35795 + enableSeparateDataOutput = true; 35598 35796 libraryHaskellDepends = [ 35599 35797 aeson array base binary bond-haskell-compiler bytestring containers 35600 35798 deepseq extra hashable mtl scientific text unordered-containers ··· 35814 36012 sha256 = "0am2b5f6a47khka31mxynl9j2fisa6zyfk3ca8yna02hdkw3rlf6"; 35815 36013 isLibrary = false; 35816 36014 isExecutable = true; 36015 + enableSeparateDataOutput = true; 35817 36016 executableHaskellDepends = [ 35818 36017 base containers descrilo directory filepath simtreelo 35819 36018 ]; ··· 36252 36451 sha256 = "1pkjiwxm8lkrjnyya14f6kmmyv9w5lx7328wdyf1w1871daw208p"; 36253 36452 isLibrary = false; 36254 36453 isExecutable = true; 36454 + enableSeparateDataOutput = true; 36255 36455 executableHaskellDepends = [ 36256 36456 aeson base binary blaze-html bytestring configurator cryptohash 36257 36457 directory hashtables http-types mtl random Spock Spock-core text ··· 36557 36757 pname = "btree-concurrent"; 36558 36758 version = "0.1.5"; 36559 36759 sha256 = "1xgw3ki3vypyxxiyzfjajjx1vzavyn1v9445cgbqwrr0n0wpkqm6"; 36760 + enableSeparateDataOutput = true; 36560 36761 libraryHaskellDepends = [ 36561 36762 array base base64-bytestring bytestring cereal containers directory 36562 36763 filepath hashable mtl random snappy stm time ··· 36972 37173 }) {}; 36973 37174 36974 37175 "bustle" = callPackage 36975 - ({ mkDerivation, base, bytestring, cairo, containers, dbus 37176 + ({ mkDerivation, base, bytestring, Cabal, cairo, containers, dbus 36976 37177 , directory, filepath, gio, glib, gtk3, hgettext, HUnit, mtl, pango 36977 - , parsec, pcap, process, QuickCheck, setlocale, system-glib 36978 - , test-framework, test-framework-hunit, text, time 37178 + , pcap, process, QuickCheck, setlocale, system-glib, test-framework 37179 + , test-framework-hunit, text, time 36979 37180 }: 36980 37181 mkDerivation { 36981 37182 pname = "bustle"; 36982 - version = "0.5.4"; 36983 - sha256 = "051z39s1xb86ab1a3v4yz8vv8k2kygpixzd878nb1p2pp6xjq74j"; 37183 + version = "0.6.1"; 37184 + sha256 = "18qg8fwmdq0lrfz7gyyzv6f4ch24sm925ykxb68rr996wxnmlbm2"; 36984 37185 isLibrary = false; 36985 37186 isExecutable = true; 37187 + enableSeparateDataOutput = true; 37188 + setupHaskellDepends = [ base Cabal directory filepath process ]; 36986 37189 libraryPkgconfigDepends = [ system-glib ]; 36987 37190 executableHaskellDepends = [ 36988 37191 base bytestring cairo containers dbus directory filepath gio glib 36989 - gtk3 hgettext mtl pango parsec pcap process setlocale text time 37192 + gtk3 hgettext mtl pango pcap process setlocale text time 36990 37193 ]; 36991 37194 testHaskellDepends = [ 36992 - base bytestring cairo containers dbus directory filepath gtk3 36993 - hgettext HUnit mtl pango pcap QuickCheck setlocale test-framework 36994 - test-framework-hunit text 37195 + base bytestring cairo containers dbus directory filepath gtk3 HUnit 37196 + mtl pango pcap QuickCheck test-framework test-framework-hunit text 36995 37197 ]; 36996 - homepage = "http://www.freedesktop.org/wiki/Software/Bustle/"; 37198 + homepage = "https://www.freedesktop.org/wiki/Software/Bustle/"; 36997 37199 description = "Draw sequence diagrams of D-Bus traffic"; 36998 37200 license = "unknown"; 36999 37201 hydraPlatforms = stdenv.lib.platforms.none; ··· 37032 37234 sha256 = "0dgjjfd4lna6kvqbckx378ssxc5mm9xyvdkwd3r197199rmxq733"; 37033 37235 isLibrary = true; 37034 37236 isExecutable = true; 37237 + enableSeparateDataOutput = true; 37035 37238 libraryHaskellDepends = [ base ]; 37036 37239 executableHaskellDepends = [ 37037 37240 base bytestring gl-capture GLUT OpenGLRaw OpenGLRaw21 repa ··· 37096 37299 pname = "byteable"; 37097 37300 version = "0.1.1"; 37098 37301 sha256 = "1qizg0kxxjqnd3cbrjhhidk5pbbciz0pb3z5kzikjjxnnnhk8fr4"; 37302 + enableSeparateDataOutput = true; 37099 37303 libraryHaskellDepends = [ base bytestring ]; 37100 37304 homepage = "http://github.com/vincenthz/hs-byteable"; 37101 37305 description = "Type class for sequence of bytes"; ··· 37110 37314 sha256 = "1pf01mna3isx3i7m50yz3pw5ygz5sg8i8pshjb3yw8q41w2ba5xf"; 37111 37315 isLibrary = true; 37112 37316 isExecutable = true; 37317 + enableSeparateDataOutput = true; 37113 37318 libraryHaskellDepends = [ base bytestring ]; 37114 37319 homepage = "http://github.com/vincenthz/hs-bytedump"; 37115 37320 description = "Flexible byte dump helpers for human readers"; ··· 37373 37578 pname = "bytestring-progress"; 37374 37579 version = "1.0.7"; 37375 37580 sha256 = "0c1pz39jp9p8ppajnj3f2phph12nvhhjj7iz8sm580gzdl5rbc4p"; 37581 + enableSeparateDataOutput = true; 37376 37582 libraryHaskellDepends = [ 37377 37583 base bytestring terminal-progress-bar time 37378 37584 ]; ··· 37604 37810 pname = "bzlib-conduit"; 37605 37811 version = "0.2.1.4"; 37606 37812 sha256 = "07gxnbr65pl70lssgcxbajc0id9x4p3p8mc0hfi9lgf8rh270w1d"; 37813 + enableSeparateDataOutput = true; 37607 37814 libraryHaskellDepends = [ 37608 37815 base bindings-DSL bytestring conduit conduit-extra data-default mtl 37609 37816 resourcet ··· 37746 37953 sha256 = "1fsj0wx8nv19yavky6s47djyh9nxcj9bz968x5w10fpl5ks4xc4m"; 37747 37954 isLibrary = false; 37748 37955 isExecutable = true; 37956 + enableSeparateDataOutput = true; 37749 37957 executableHaskellDepends = [ 37750 37958 array base bytestring containers directory dlist filepath 37751 37959 language-c pretty process ··· 37770 37978 sha256 = "17hgj8s08lh7mjddbsahdgssk80wpkhc4qspfc34k7zyr9w185zl"; 37771 37979 isLibrary = false; 37772 37980 isExecutable = true; 37981 + enableSeparateDataOutput = true; 37773 37982 executableHaskellDepends = [ 37774 37983 array base bytestring containers directory dlist filepath 37775 37984 language-c pretty process ··· 38018 38227 sha256 = "1372bpn8s7d7nm01ggp3m98ldrynidbchk3p14yrjysvxwr3l6q8"; 38019 38228 isLibrary = false; 38020 38229 isExecutable = true; 38230 + enableSeparateDataOutput = true; 38021 38231 executableHaskellDepends = [ 38022 38232 base bytestring Cabal containers directory filepath HTTP mtl 38023 38233 network pretty process setenv tar template-haskell transformers ··· 38459 38669 pname = "cabal-scripts"; 38460 38670 version = "0.1.1"; 38461 38671 sha256 = "1ajgx29hvcsdd6lwc78dyhsjm5ikx2zn0kdbwnzn1kggz2l08ls4"; 38672 + enableSeparateDataOutput = true; 38462 38673 libraryHaskellDepends = [ base ]; 38463 38674 doHaddock = false; 38464 38675 description = "Shell scripts for support of Cabal maintenance"; ··· 38634 38845 sha256 = "0sk10z9lj291rpidlaydp7nvgl7adbp7gyf2nvqqhrshxnlqpc8z"; 38635 38846 isLibrary = false; 38636 38847 isExecutable = true; 38848 + enableSeparateDataOutput = true; 38637 38849 executableHaskellDepends = [ 38638 38850 archlinux base bytestring Cabal cmdargs containers directory 38639 38851 filepath mtl pretty process ··· 38705 38917 }: 38706 38918 mkDerivation { 38707 38919 pname = "cabal2nix"; 38708 - version = "2.3.1"; 38709 - sha256 = "0xi4mj8gyb2k9a43dp49wc84sbxpv9sfa8cmzfp0mkak0alwqahj"; 38920 + version = "2.4"; 38921 + sha256 = "0nmvfg1fdmkibr7c0jk68mbinvqjr91c0lh1xzrd0g1kz576y703"; 38710 38922 isLibrary = true; 38711 38923 isExecutable = true; 38712 38924 setupHaskellDepends = [ base Cabal cabal-doctest ]; ··· 39065 39277 pname = "cairo"; 39066 39278 version = "0.13.3.1"; 39067 39279 sha256 = "0nk77lixlf6j3a2870mbakcznigrf43m6ac1xn35d1v3dmy1kjm3"; 39280 + enableSeparateDataOutput = true; 39068 39281 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 39069 39282 libraryHaskellDepends = [ 39070 39283 array base bytestring mtl text utf8-string ··· 39083 39296 sha256 = "1191j2587f1sy4d6z57df21xn00qdpv27clib7cyaqdy5jnv3zw2"; 39084 39297 isLibrary = false; 39085 39298 isExecutable = true; 39299 + enableSeparateDataOutput = true; 39086 39300 executableHaskellDepends = [ base cairo glib gtk ]; 39087 39301 description = "A template for building new GUI applications using GTK and Cairo"; 39088 39302 license = stdenv.lib.licenses.bsd3; ··· 39124 39338 sha256 = "1f8vpm9a6rv7bgi9a8zarxa0jlph1p6hj1cdqzk5g81mr4dc4vkv"; 39125 39339 isLibrary = true; 39126 39340 isExecutable = true; 39341 + enableSeparateDataOutput = true; 39127 39342 libraryHaskellDepends = [ 39128 39343 attoparsec base bytestring containers deepseq directory filepath 39129 39344 haskell-src-meta mime-types monadloc mtl parsec process syb ··· 39182 39397 sha256 = "1fj6v1dw1gyy6dx4ssiziahxf8j8vr4l35n3rm04g797wypswmw0"; 39183 39398 isLibrary = false; 39184 39399 isExecutable = true; 39400 + enableSeparateDataOutput = true; 39185 39401 executableHaskellDepends = [ base cal3d cal3d-opengl OpenGL SDL ]; 39186 39402 homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; 39187 39403 description = "Examples for the Cal3d animation library"; ··· 39307 39523 sha256 = "0q84q1821ilb0nh228jdpc6acxbbfngihir4mdklr8hywanz3s1g"; 39308 39524 isLibrary = true; 39309 39525 isExecutable = true; 39526 + enableSeparateDataOutput = true; 39310 39527 libraryHaskellDepends = [ 39311 39528 base bindings-portaudio boundingboxes colors containers 39312 39529 control-bool deepseq directory filepath free freetype2 GLFW-b ··· 39385 39602 license = stdenv.lib.licenses.asl20; 39386 39603 }) {}; 39387 39604 39388 - "camfort_0_902" = callPackage 39605 + "camfort_0_904" = callPackage 39389 39606 ({ mkDerivation, alex, array, base, binary, bytestring, containers 39390 39607 , directory, fgl, filepath, fortran-src, GenericPretty, ghc-prim 39391 - , happy, hmatrix, hspec, lattices, matrix, mtl, partial-order 39392 - , QuickCheck, sbv, syb, syz, text, transformers, uniplate, vector 39608 + , happy, hmatrix, hspec, lattices, matrix, mtl 39609 + , optparse-applicative, partial-order, QuickCheck, sbv, syb, syz 39610 + , text, transformers, uniplate, vector 39393 39611 }: 39394 39612 mkDerivation { 39395 39613 pname = "camfort"; 39396 - version = "0.902"; 39397 - sha256 = "0pakm4zdygzxpfnvxmn88pc1y1dx33xw71lkg0hbxj1k4dn4651q"; 39614 + version = "0.904"; 39615 + sha256 = "0j1m9vc4fs7151s2bm1nl480c87mqfann6xv7bzcx6p76iqxvii8"; 39398 39616 isLibrary = true; 39399 39617 isExecutable = true; 39400 39618 libraryHaskellDepends = [ ··· 39403 39621 partial-order sbv syb syz text transformers uniplate vector 39404 39622 ]; 39405 39623 libraryToolDepends = [ alex happy ]; 39406 - executableHaskellDepends = [ 39407 - array base binary bytestring containers directory fgl filepath 39408 - fortran-src GenericPretty ghc-prim hmatrix lattices matrix mtl 39409 - partial-order QuickCheck sbv syb syz text transformers uniplate 39410 - vector 39411 - ]; 39624 + executableHaskellDepends = [ base optparse-applicative ]; 39412 39625 testHaskellDepends = [ 39413 39626 array base binary bytestring containers directory filepath 39414 39627 fortran-src hmatrix hspec lattices mtl partial-order QuickCheck sbv 39415 39628 text uniplate 39416 39629 ]; 39630 + homepage = "https://camfort.github.io"; 39417 39631 description = "CamFort - Cambridge Fortran infrastructure"; 39418 39632 license = stdenv.lib.licenses.asl20; 39419 39633 hydraPlatforms = stdenv.lib.platforms.none; ··· 39427 39641 sha256 = "0r6wzn9kxwinfa383lbxsjlrpv4v2m72qzpsyc9gcigvd5h7zhzz"; 39428 39642 isLibrary = false; 39429 39643 isExecutable = true; 39644 + enableSeparateDataOutput = true; 39430 39645 executableHaskellDepends = [ base bytestring Imlib terminfo ]; 39431 39646 homepage = "not yet available"; 39432 39647 description = "write image files onto 256(or 24bit) color terminals"; ··· 39596 39811 sha256 = "0rmq22fiaadpszckbj5k5gi4sr1jipinyrx9hwc21k5d185vsakd"; 39597 39812 isLibrary = false; 39598 39813 isExecutable = true; 39814 + enableSeparateDataOutput = true; 39599 39815 executableHaskellDepends = [ 39600 39816 array base cmdargs ConfigFile containers directory dlist filepath 39601 39817 language-c mtl pretty process yices ··· 39615 39831 sha256 = "1492x5hy5ljf0h40c045jd3w26f7jwqplgncka3dnw4mx9kq4g15"; 39616 39832 isLibrary = false; 39617 39833 isExecutable = true; 39834 + enableSeparateDataOutput = true; 39618 39835 executableHaskellDepends = [ array base containers haskell98 ]; 39619 39836 description = "Interprets and debug the cap language"; 39620 39837 license = stdenv.lib.licenses.bsd3; ··· 39742 39959 sha256 = "0k0zqi6c6cqhkxhdgn5n5cpq4pjlvv1m5wzxrsiw9aj23dk9bgxa"; 39743 39960 isLibrary = false; 39744 39961 isExecutable = true; 39962 + enableSeparateDataOutput = true; 39745 39963 executableHaskellDepends = [ 39746 39964 base cairo directory filepath gtk gtk2hs-buildtools hcwiid 39747 39965 highlighting-kate mtl pandoc pango process text time ··· 40077 40295 pname = "cash"; 40078 40296 version = "0.1.0.1"; 40079 40297 sha256 = "0pwn33dpv5bgs74i8x6q47hsbl0jg68xwhjjiwyjdyl6sb3rfih7"; 40298 + enableSeparateDataOutput = true; 40080 40299 libraryHaskellDepends = [ 40081 40300 base deepseq haskell98 HaXml network parallel pretty 40082 40301 ]; ··· 40524 40743 sha256 = "1vjhg9dxg23q0dqr07gbrg92h3m9r38d7jb3c4sxnw6gaj76f5gw"; 40525 40744 isLibrary = false; 40526 40745 isExecutable = true; 40746 + enableSeparateDataOutput = true; 40527 40747 executableHaskellDepends = [ base gtk haskell98 mtl parsec ]; 40528 40748 homepage = "http://code.atnnn.com/projects/casui"; 40529 40749 description = "Equation Manipulator"; ··· 41377 41597 pname = "chalmers-lava2000"; 41378 41598 version = "1.6.1"; 41379 41599 sha256 = "12cwp804z1grsn4pyygd2mffr5lm02g1rxibjill5wyd24k1brgb"; 41600 + enableSeparateDataOutput = true; 41380 41601 libraryHaskellDepends = [ array base process random ]; 41381 41602 homepage = "http://projects.haskell.org/chalmers-lava2000/Doc/tutorial.pdf"; 41382 41603 description = "Hardware description EDSL"; ··· 41579 41800 sha256 = "1q2jb2hycxqa9ka9q7yyl5ckvcc1mdiklwivms1mm4qylwaqmgy0"; 41580 41801 isLibrary = true; 41581 41802 isExecutable = true; 41803 + enableSeparateDataOutput = true; 41582 41804 libraryHaskellDepends = [ 41583 41805 array base bytestring cereal cereal-text containers deepseq 41584 41806 directory filepath fullstop hashable mbox MonadRandom parsec ··· 41895 42117 sha256 = "0i94impyhsrj4kg7mdr1xawmgalsfr3nsazl4v9ykhn3jam4kczb"; 41896 42118 isLibrary = false; 41897 42119 isExecutable = true; 42120 + enableSeparateDataOutput = true; 41898 42121 executableHaskellDepends = [ 41899 42122 base digits either-unwrap generic-trie haskeline parsec 41900 42123 ]; ··· 42116 42339 pname = "chu2"; 42117 42340 version = "2012.11.20"; 42118 42341 sha256 = "01q34kzhisb8ani3k5dfjaixa7j1vqg0nh8mbmnya52hr7p4sdiz"; 42342 + enableSeparateDataOutput = true; 42119 42343 libraryHaskellDepends = [ 42120 42344 base bytestring data-default hack2 hack2-handler-snap-server 42121 42345 utf8-string ··· 42520 42744 pname = "citation-resolve"; 42521 42745 version = "0.4.3"; 42522 42746 sha256 = "1x561l7shkz1nh43xh2nj83pb183rah1swi0ql9n0wr9ykq1mh1l"; 42747 + enableSeparateDataOutput = true; 42523 42748 libraryHaskellDepends = [ 42524 42749 aeson base bytestring citeproc-hs containers curl data-default 42525 42750 directory download-curl either lens mtl process safe text ··· 42543 42768 pname = "citeproc-hs"; 42544 42769 version = "0.3.10"; 42545 42770 sha256 = "1fb51v8hv8ik3a8grba2br6cfbj1b3y72lgjh4i75xh09i7xna0r"; 42771 + enableSeparateDataOutput = true; 42546 42772 libraryHaskellDepends = [ 42547 42773 base bytestring containers directory filepath hexpat hs-bibutils 42548 42774 HTTP json mtl network network-uri old-locale pandoc-types parsec ··· 42623 42849 pname = "cjk"; 42624 42850 version = "0.1.0.1"; 42625 42851 sha256 = "1r0rw33vqkhck0mfqz19plw9a71f56gdcjldrxl23178fps349vl"; 42852 + enableSeparateDataOutput = true; 42626 42853 libraryHaskellDepends = [ 42627 42854 attoparsec base bytestring containers text text-icu 42628 42855 ]; ··· 42666 42893 sha256 = "1llr7mnlh8msn9plgnnj73w3jqlcwn8v9k2m58520l9q2zfvf68b"; 42667 42894 isLibrary = true; 42668 42895 isExecutable = true; 42896 + enableSeparateDataOutput = true; 42669 42897 libraryHaskellDepends = [ 42670 42898 aeson array base bytestring cmdargs containers data-stringmap 42671 42899 directory executable-path file-embed filepath HTTP json-builder ··· 42700 42928 sha256 = "1jv1bl9fzbahhk0g64n611h9hipkr4zcasj2dw5w5v2nqlwrwdjj"; 42701 42929 isLibrary = true; 42702 42930 isExecutable = true; 42931 + enableSeparateDataOutput = true; 42703 42932 libraryHaskellDepends = [ 42704 42933 array base clafer containers data-stringmap directory 42705 42934 executable-path filepath haskeline HaXml json-builder mtl ··· 42729 42958 pname = "claferwiki"; 42730 42959 version = "0.4.5"; 42731 42960 sha256 = "0rjppdxxzaf3898jklq4c0b7zjnkg6zcqr5nxbrabmvm2l53a4p0"; 42961 + enableSeparateDataOutput = true; 42732 42962 libraryHaskellDepends = [ 42733 42963 base clafer containers directory gitit MissingH mtl network 42734 42964 network-uri process SHA split time transformers transformers-compat ··· 42929 43159 pname = "clash-prelude-quickcheck"; 42930 43160 version = "0.1.2.1"; 42931 43161 sha256 = "1fn5wlg2lmxl6rs2ygnf0m88bgcjf62jpprbp425pqbq6lvhw70w"; 43162 + enableSeparateDataOutput = true; 42932 43163 libraryHaskellDepends = [ base clash-prelude QuickCheck ]; 42933 43164 description = "QuickCheck instances for various types in the CλaSH Prelude"; 42934 43165 license = "unknown"; ··· 42943 43174 pname = "clash-systemverilog"; 42944 43175 version = "0.7.2"; 42945 43176 sha256 = "056m8ynwq3y11zkkx9nkkmvamnm2m3337vk8lkx90pk96nvdiaiy"; 43177 + enableSeparateDataOutput = true; 42946 43178 libraryHaskellDepends = [ 42947 43179 base clash-lib clash-prelude fgl hashable lens mtl text 42948 43180 unordered-containers wl-pprint-text ··· 42961 43193 pname = "clash-verilog"; 42962 43194 version = "0.7.2"; 42963 43195 sha256 = "09bfrhhiml6m0qssvr18p38ypyxj1zp7vxgci974gd6k597ihi2k"; 43196 + enableSeparateDataOutput = true; 42964 43197 libraryHaskellDepends = [ 42965 43198 base clash-lib clash-prelude fgl hashable lens mtl text 42966 43199 unordered-containers wl-pprint-text ··· 42979 43212 pname = "clash-vhdl"; 42980 43213 version = "0.7.2"; 42981 43214 sha256 = "1c63m2gcifak0v38rsmv4j521br84jaspdb193a66957qisvfsvs"; 43215 + enableSeparateDataOutput = true; 42982 43216 libraryHaskellDepends = [ 42983 43217 base clash-lib clash-prelude fgl hashable lens mtl text 42984 43218 unordered-containers wl-pprint-text ··· 43148 43382 pname = "clckwrks"; 43149 43383 version = "0.24.0.3"; 43150 43384 sha256 = "1c0y9aw48qq7zyg8958lk5kzmfaa8ndgw88ps92sx5aj4z0ggsmf"; 43385 + enableSeparateDataOutput = true; 43151 43386 libraryHaskellDepends = [ 43152 43387 acid-state aeson aeson-qq attoparsec base blaze-html bytestring 43153 43388 cereal containers directory filepath happstack-authenticate ··· 43182 43417 pname = "clckwrks"; 43183 43418 version = "0.24.0.4"; 43184 43419 sha256 = "0xpv3qb7w1bzszbnmzriai9dv9qfajnv1pv9y3jdaih4gj73c9ny"; 43420 + enableSeparateDataOutput = true; 43185 43421 libraryHaskellDepends = [ 43186 43422 acid-state aeson aeson-qq attoparsec base blaze-html bytestring 43187 43423 cereal containers directory filepath happstack-authenticate ··· 43254 43490 pname = "clckwrks-plugin-bugs"; 43255 43491 version = "0.7.5"; 43256 43492 sha256 = "0la4ivk8sbh8wq1g2nhxx522ir2idffz5818bghjf8qffmqa47fv"; 43493 + enableSeparateDataOutput = true; 43257 43494 libraryHaskellDepends = [ 43258 43495 acid-state attoparsec base cereal clckwrks clckwrks-plugin-page 43259 43496 containers directory filepath happstack-authenticate happstack-hsp ··· 43279 43516 pname = "clckwrks-plugin-ircbot"; 43280 43517 version = "0.6.17.3"; 43281 43518 sha256 = "1fk6jyjvkqs11khj8mriqbj56kz19ayhha3kq79cnhjm8c7184cb"; 43519 + enableSeparateDataOutput = true; 43282 43520 libraryHaskellDepends = [ 43283 43521 acid-state attoparsec base blaze-html bytestring clckwrks 43284 43522 containers directory filepath happstack-hsp happstack-server hsp ··· 43304 43542 pname = "clckwrks-plugin-mailinglist"; 43305 43543 version = "0.3.0.2"; 43306 43544 sha256 = "1zhcqkzas3pcnviwka0v174spq8wn457kvmxk6nafcxkwf27p52m"; 43545 + enableSeparateDataOutput = true; 43307 43546 libraryHaskellDepends = [ 43308 43547 acid-state attoparsec base bytestring clckwrks containers directory 43309 43548 filepath happstack-authenticate happstack-hsp happstack-server hsp ··· 43327 43566 pname = "clckwrks-plugin-media"; 43328 43567 version = "0.6.16.3"; 43329 43568 sha256 = "1kslj1yvw6kn68grcr7drhrybb1b5d1id5plcaa4570yz8vp7xr6"; 43569 + enableSeparateDataOutput = true; 43330 43570 libraryHaskellDepends = [ 43331 43571 acid-state attoparsec base blaze-html cereal clckwrks containers 43332 43572 directory filepath gd happstack-server hsp ixset magic mtl reform ··· 43351 43591 pname = "clckwrks-plugin-media"; 43352 43592 version = "0.6.16.4"; 43353 43593 sha256 = "19fv38gqslg01ymj3nb838pnhir92gfkyl6kccik39brgcfd915b"; 43594 + enableSeparateDataOutput = true; 43354 43595 libraryHaskellDepends = [ 43355 43596 acid-state attoparsec base blaze-html cereal clckwrks containers 43356 43597 directory filepath gd happstack-server hsp ixset magic mtl reform ··· 43424 43665 pname = "clckwrks-theme-bootstrap"; 43425 43666 version = "0.4.2.1"; 43426 43667 sha256 = "1mkqi3qx6k86d2xr4cyxg0ym5c71ip4ijgg6mg20gf3jkjjzvha4"; 43668 + enableSeparateDataOutput = true; 43427 43669 libraryHaskellDepends = [ 43428 43670 base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro 43429 43671 mtl text web-plugins ··· 43442 43684 pname = "clckwrks-theme-clckwrks"; 43443 43685 version = "0.5.2.1"; 43444 43686 sha256 = "14pksv77afppp43dfba5f4brnycqhca2kylvb1bpjdb61lni9sk7"; 43687 + enableSeparateDataOutput = true; 43445 43688 libraryHaskellDepends = [ 43446 43689 base clckwrks containers happstack-authenticate hsp hsx2hs mtl text 43447 43690 web-plugins ··· 43458 43701 pname = "clckwrks-theme-geo-bootstrap"; 43459 43702 version = "0.1.1"; 43460 43703 sha256 = "1qxik7hdz300n5lfb5xzh2md44b4xwwlr0c92y9x2na2xz41da7k"; 43704 + enableSeparateDataOutput = true; 43461 43705 libraryHaskellDepends = [ base clckwrks hsp text ]; 43462 43706 homepage = "http://divshot.github.com/geo-bootstrap/"; 43463 43707 description = "geo bootstrap based template for clckwrks"; ··· 43488 43732 sha256 = "1c6gn0rkb3c92hgc1blkbf21s62j1r7vqs2p8mmr6my5g52lvif1"; 43489 43733 isLibrary = false; 43490 43734 isExecutable = true; 43735 + enableSeparateDataOutput = true; 43491 43736 executableHaskellDepends = [ 43492 43737 base cmdargs containers directory HSH IfElse 43493 43738 ]; ··· 43715 43960 sha256 = "1nsvhb7lbkclhqpbvs3ccwclpr4g8p6zmsyn072bc0d0icf4hql5"; 43716 43961 isLibrary = true; 43717 43962 isExecutable = true; 43963 + enableSeparateDataOutput = true; 43718 43964 libraryHaskellDepends = [ 43719 43965 base data-default functor-infix old-locale parsec strptime time 43720 43966 ]; ··· 43906 44152 }) {}; 43907 44153 43908 44154 "cloud-seeder" = callPackage 43909 - ({ mkDerivation, amazonka, amazonka-cloudformation, amazonka-core 43910 - , base, bytestring, deepseq, exceptions, fast-logger, hspec, lens 43911 - , monad-control, monad-logger, monad-time, mtl 43912 - , optparse-applicative, text, transformers, transformers-base 44155 + ({ mkDerivation, aeson, amazonka, amazonka-cloudformation 44156 + , amazonka-core, base, bytestring, containers, deepseq, exceptions 44157 + , fast-logger, hspec, lens, monad-control, monad-logger, monad-mock 44158 + , mtl, optparse-applicative, text, transformers, transformers-base 44159 + , unordered-containers, uuid, yaml 43913 44160 }: 43914 44161 mkDerivation { 43915 44162 pname = "cloud-seeder"; 43916 - version = "0.0.0.0"; 43917 - sha256 = "1nh0qmj1fdxkqa2db8xpv7anrlqyl7dcphjd25qgq86gjcdn27bb"; 43918 - isLibrary = true; 43919 - isExecutable = true; 44163 + version = "0.1.0.0"; 44164 + sha256 = "1jyxbk37xzx7dgxkgrmpn7nv7v494l26f4c5r1j665cd1d8x0m4f"; 43920 44165 libraryHaskellDepends = [ 43921 - amazonka amazonka-cloudformation amazonka-core base deepseq 43922 - exceptions lens monad-control monad-logger monad-time mtl 44166 + aeson amazonka amazonka-cloudformation amazonka-core base 44167 + containers deepseq exceptions lens monad-control monad-logger mtl 43923 44168 optparse-applicative text transformers transformers-base 44169 + unordered-containers uuid yaml 43924 44170 ]; 43925 - executableHaskellDepends = [ base ]; 43926 44171 testHaskellDepends = [ 43927 - amazonka-cloudformation base bytestring deepseq fast-logger hspec 43928 - lens monad-logger mtl text transformers 44172 + amazonka-cloudformation base bytestring containers deepseq 44173 + fast-logger hspec lens monad-logger monad-mock mtl 44174 + optparse-applicative text transformers yaml 43929 44175 ]; 43930 44176 homepage = "https://github.com/cjdev/cloud-seeder#readme"; 43931 44177 description = "A tool for interacting with AWS CloudFormation"; ··· 44186 44432 sha256 = "0in6fqzr1aki2dhbkv3vlmw17vla5m39g6msaplk4vix5yjw7vkq"; 44187 44433 isLibrary = false; 44188 44434 isExecutable = true; 44435 + enableSeparateDataOutput = true; 44189 44436 executableHaskellDepends = [ 44190 44437 base bio bytestring containers QuickCheck regex-compat simpleargs 44191 44438 ]; ··· 44221 44468 pname = "cmaes"; 44222 44469 version = "0.2.2.1"; 44223 44470 sha256 = "0r0z5rik19sd985hgdy7f00sfpqwlgzbsmkqsiywddi8nqg6qq7m"; 44471 + enableSeparateDataOutput = true; 44224 44472 libraryHaskellDepends = [ base mtl process safe strict syb ]; 44225 44473 testHaskellDepends = [ 44226 44474 base doctest doctest-prop mtl process random syb vector ··· 44377 44625 sha256 = "1k0g2vh7sqkblzjsfvyhfiy1fcwkw0i10kgl4n2r68w7v52mmzd0"; 44378 44626 isLibrary = false; 44379 44627 isExecutable = true; 44628 + enableSeparateDataOutput = true; 44380 44629 executableHaskellDepends = [ 44381 44630 base bytestring cmdargs directory filepath http-types process text 44382 44631 transformers wai wai-handler-launch ··· 44538 44787 pname = "cndict"; 44539 44788 version = "0.8.2"; 44540 44789 sha256 = "0pc6rph99mxy5cbrxrysxq5q01vn2k2ax3c00pv9sw7inn4inh0p"; 44790 + enableSeparateDataOutput = true; 44541 44791 libraryHaskellDepends = [ array base bytestring text ]; 44542 44792 homepage = "https://github.com/Lemmih/cndict"; 44543 44793 description = "Chinese/Mandarin <-> English dictionary, Chinese lexer"; ··· 44821 45071 sha256 = "0076dvka5c0m3smppp58lklnf26ry9kibzyiy4yx1ygw5rn7m7pc"; 44822 45072 isLibrary = false; 44823 45073 isExecutable = true; 45074 + enableSeparateDataOutput = true; 44824 45075 executableHaskellDepends = [ 44825 45076 aeson base binary bytestring containers directory filepath glib 44826 45077 gtk3 lens monad-control monad-logger mtl persistent ··· 45098 45349 sha256 = "0vyzjv5r9jww4n35yp9qmq5bb8h7k6gmr7iw6igm08cnlwx9pirr"; 45099 45350 isLibrary = true; 45100 45351 isExecutable = true; 45352 + enableSeparateDataOutput = true; 45101 45353 libraryHaskellDepends = [ 45102 45354 aeson base colour containers data-default directory friday 45103 45355 friday-devil split v4l2 vector vector-space yaml ··· 45172 45424 pname = "colour"; 45173 45425 version = "2.3.3"; 45174 45426 sha256 = "1qmn1778xzg07jg9nx4k1spdz2llivpblf6wwrps1qpqjhsac5cd"; 45427 + enableSeparateDataOutput = true; 45175 45428 libraryHaskellDepends = [ base ]; 45176 45429 homepage = "http://www.haskell.org/haskellwiki/Colour"; 45177 45430 description = "A model for human colour/color perception"; ··· 46352 46605 sha256 = "0q2l2yqxk210ycw1alcps9x7l2f60g9sb0wan7d1d2fkbfhq3z41"; 46353 46606 isLibrary = true; 46354 46607 isExecutable = true; 46608 + enableSeparateDataOutput = true; 46355 46609 libraryHaskellDepends = [ 46356 46610 aeson base binary bytestring concraft containers double-conversion 46357 46611 lazy-io moan network sgd split tagset-positional text ··· 46374 46628 sha256 = "0yhq3vdg7l0ibhv0pxj70jm5lrfjk3k0xd1p6ap6im4rh3xxvgw3"; 46375 46629 isLibrary = true; 46376 46630 isExecutable = true; 46631 + enableSeparateDataOutput = true; 46377 46632 libraryHaskellDepends = [ 46378 46633 aeson base binary bytestring concraft containers lazy-io mtl 46379 46634 network process sgd split tagset-positional text transformers ··· 46449 46704 sha256 = "1w4bg284fcnd15yg7097d8sh0rzxr76zlrr1bfj2dksw8ddy3jda"; 46450 46705 isLibrary = false; 46451 46706 isExecutable = true; 46707 + enableSeparateDataOutput = true; 46452 46708 executableHaskellDepends = [ 46453 46709 base cmdargs containers hxt hxt-charproperties hxt-curl hxt-relaxng 46454 46710 hxt-tagsoup ··· 47224 47480 pname = "config-manager"; 47225 47481 version = "0.3.0.1"; 47226 47482 sha256 = "1qrj0x2s0vsxnqkkmchwqvsmziqchrffaxkda9hx0s0ahyw5w0lb"; 47483 + enableSeparateDataOutput = true; 47227 47484 libraryHaskellDepends = [ 47228 47485 base filepath parsec text time unordered-containers 47229 47486 ]; ··· 47379 47636 pname = "configurator"; 47380 47637 version = "0.3.0.0"; 47381 47638 sha256 = "1d1iq1knwiq6ia5g64rw5hqm6dakz912qj13r89737rfcxmrkfbf"; 47639 + enableSeparateDataOutput = true; 47382 47640 libraryHaskellDepends = [ 47383 47641 attoparsec base bytestring directory hashable text unix-compat 47384 47642 unordered-containers ··· 47420 47678 pname = "configurator-ng"; 47421 47679 version = "0.0.0.1"; 47422 47680 sha256 = "0aq1iyvd3b2d26myp0scwi9vp97grfcrp2802s4xpg84vpapldis"; 47681 + enableSeparateDataOutput = true; 47423 47682 libraryHaskellDepends = [ 47424 47683 attoparsec base bytestring critbit data-ordlist directory dlist 47425 47684 fail hashable scientific text unix-compat unordered-containers ··· 47486 47745 sha256 = "02a33940rnwq5bzqx50fjy76q0z6nimsg2fk3q17ai4kvi0rw0p3"; 47487 47746 isLibrary = true; 47488 47747 isExecutable = true; 47748 + enableSeparateDataOutput = true; 47489 47749 libraryHaskellDepends = [ 47490 47750 array base bytestring containers filepath html HTTP mtl network 47491 47751 old-time parsec pretty random stm unix ··· 48737 48997 sha256 = "10pfz4bw1wh55c2cizd8jiwh8bkaqw9p773976vl52f0jrhns1qg"; 48738 48998 isLibrary = true; 48739 48999 isExecutable = true; 49000 + enableSeparateDataOutput = true; 48740 49001 libraryHaskellDepends = [ 48741 49002 aeson base blaze-builder bytestring containers directory filepath 48742 49003 filestore http-types monads-tf pandoc template-haskell text time ··· 49026 49287 sha256 = "1yv3lj86fkaf9mfxb97ic5v8hm4xx0vv3q4qj0c9n0ki21ymsa5z"; 49027 49288 isLibrary = false; 49028 49289 isExecutable = true; 49290 + enableSeparateDataOutput = true; 49029 49291 executableHaskellDepends = [ 49030 49292 aeson base bytestring directory filepath old-locale 49031 49293 optparse-applicative process stm text time unix ··· 49136 49398 pname = "cprng-aes"; 49137 49399 version = "0.6.1"; 49138 49400 sha256 = "1wr15kbmk1g3l8a75n0iwbzqg24ixv78slwzwb2q6rlcvq0jlnb4"; 49401 + enableSeparateDataOutput = true; 49139 49402 libraryHaskellDepends = [ 49140 49403 base byteable bytestring cipher-aes crypto-random 49141 49404 ]; ··· 49175 49438 sha256 = "079v1k1m61n3hrmz6lkdg400r3nn9fq8bwmy477vjjnyjvm1j38f"; 49176 49439 isLibrary = false; 49177 49440 isExecutable = true; 49441 + enableSeparateDataOutput = true; 49178 49442 executableHaskellDepends = [ base containers parallel ]; 49179 49443 description = "Symbolic cryptographic protocol analyzer"; 49180 49444 license = stdenv.lib.licenses.bsd3; ··· 49188 49452 sha256 = "0x19mlanmkg96h6h1i04w2i631z84y4rbk22ki4zhgsajysgw9sn"; 49189 49453 isLibrary = true; 49190 49454 isExecutable = true; 49455 + enableSeparateDataOutput = true; 49191 49456 libraryHaskellDepends = [ base ]; 49192 49457 homepage = "http://github.com/vincenthz/hs-cpu"; 49193 49458 description = "Cpu information and properties helpers"; ··· 49465 49730 sha256 = "107chyp8br2ryjqdf7100109k0wg3jawzva76wf4r6fndjr3gin1"; 49466 49731 isLibrary = false; 49467 49732 isExecutable = true; 49733 + enableSeparateDataOutput = true; 49468 49734 executableHaskellDepends = [ 49469 49735 base cmdargs directory process shelly text transformers unix 49470 49736 ]; ··· 49705 49971 }: 49706 49972 mkDerivation { 49707 49973 pname = "creatur"; 49708 - version = "5.9.16"; 49709 - sha256 = "03ipmz55cw6d8d79zv0m7cg8r6izdgy2v50xc8s7hk1sln86qbmx"; 49710 - revision = "1"; 49711 - editedCabalFile = "0vna37j7y2bzvhizizi69gghqqpz32w0aasy9xdaxpwq4y8wc83c"; 49974 + version = "5.9.17"; 49975 + sha256 = "0nlbx1pp9hzy51v9q35gqnwpwkh6lmwzxp42mql6rddbx0svp1m6"; 49712 49976 libraryHaskellDepends = [ 49713 49977 array base bytestring cereal cond directory exceptions filepath 49714 49978 gray-extended hdaemonize hsyslog MonadRandom mtl old-locale process ··· 49912 50176 sha256 = "0xps7jm8g1bg7a2y4b6mj5nhg3b595k5ysprf4711lwyfpy478jk"; 49913 50177 revision = "1"; 49914 50178 editedCabalFile = "0hgy2rbrb0dg1sjdvqk2zivdq075fih4zlf51ffdmqzgcdj3i9b1"; 50179 + enableSeparateDataOutput = true; 49915 50180 libraryHaskellDepends = [ 49916 50181 aeson ansi-wl-pprint base binary bytestring cassava code-page 49917 50182 containers deepseq directory filepath Glob hastache js-flot ··· 49942 50207 sha256 = "0hbhm6fcbvh38m8hazlzjh3z09adjrzcv5jq63792bvnm24bpx6r"; 49943 50208 isLibrary = true; 49944 50209 isExecutable = true; 50210 + enableSeparateDataOutput = true; 49945 50211 libraryHaskellDepends = [ 49946 50212 aeson ansi-wl-pprint base base-compat binary bytestring cassava 49947 50213 code-page containers deepseq directory exceptions filepath Glob ··· 49999 50265 sha256 = "010x56czgipw3p1cfkx07mlcy4yj6advq3zzgrxpmjhrxzsa89xn"; 50000 50266 isLibrary = false; 50001 50267 isExecutable = true; 50268 + enableSeparateDataOutput = true; 50002 50269 executableHaskellDepends = [ 50003 50270 aeson base blaze-html blaze-markup bytestring containers filepath 50004 50271 ]; ··· 50238 50505 pname = "crypto-api-tests"; 50239 50506 version = "0.3"; 50240 50507 sha256 = "0w3j43jdrlj28jryp18hc6q84nkl2yf4vs1hhgrsk7gb9kfyqjpl"; 50508 + enableSeparateDataOutput = true; 50241 50509 libraryHaskellDepends = [ 50242 50510 base bytestring cereal crypto-api directory filepath HUnit 50243 50511 QuickCheck test-framework test-framework-hunit ··· 50295 50563 pname = "crypto-cipher-types"; 50296 50564 version = "0.0.9"; 50297 50565 sha256 = "03qa1i1kj07pfrxsi7fiaqnnd0vi94jd4jfswbmnm4gp1nvzcwr0"; 50566 + enableSeparateDataOutput = true; 50298 50567 libraryHaskellDepends = [ base byteable bytestring securemem ]; 50299 50568 homepage = "http://github.com/vincenthz/hs-crypto-cipher"; 50300 50569 description = "Generic cryptography cipher types"; ··· 50652 50921 pname = "cryptohash-cryptoapi"; 50653 50922 version = "0.1.4"; 50654 50923 sha256 = "13h5f9pmcd0swa4asl7wzpf5lskpgjdqrmy1mqdc78gsxdj8cyki"; 50924 + enableSeparateDataOutput = true; 50655 50925 libraryHaskellDepends = [ 50656 50926 base bytestring cereal crypto-api cryptonite memory tagged 50657 50927 ]; ··· 50761 51031 editedCabalFile = "1waln79xzki1l2r1xziy2dd007q8yfsbihhp9qsxxpcpl6qmzvib"; 50762 51032 isLibrary = true; 50763 51033 isExecutable = true; 51034 + enableSeparateDataOutput = true; 50764 51035 libraryHaskellDepends = [ 50765 51036 array async base base-compat bytestring containers deepseq 50766 51037 directory filepath gitrev GraphSCC heredoc monad-control monadLib ··· 50795 51066 sha256 = "1w8w4srdvnd8dwjbip45bdqsgpg5xmw2nrw1asnk857bgdhjh2ci"; 50796 51067 isLibrary = true; 50797 51068 isExecutable = true; 51069 + enableSeparateDataOutput = true; 50798 51070 libraryHaskellDepends = [ 50799 51071 array async base base-compat bytestring containers deepseq 50800 51072 directory filepath gitrev GraphSCC heredoc monad-control monadLib ··· 51047 51319 pname = "csound-expression-typed"; 51048 51320 version = "0.2.0.2"; 51049 51321 sha256 = "1fb3wayix991awxnns6y1a9kmb6kvnay7p4rx62nvj89qa513d82"; 51322 + enableSeparateDataOutput = true; 51050 51323 libraryHaskellDepends = [ 51051 51324 base Boolean colour containers csound-expression-dynamic 51052 51325 data-default deepseq directory filepath ghc-prim hashable ··· 51499 51772 pname = "cue-sheet"; 51500 51773 version = "0.1.0"; 51501 51774 sha256 = "1w85vl2nkw3qy7sjpl3hafvsz79vbasgkr6w0s89p1dk7sdkckfb"; 51775 + enableSeparateDataOutput = true; 51502 51776 libraryHaskellDepends = [ 51503 51777 base bytestring containers data-default-class exceptions megaparsec 51504 51778 mtl QuickCheck text ··· 51521 51795 pname = "cue-sheet"; 51522 51796 version = "0.1.1"; 51523 51797 sha256 = "1h0v7jzxavjs2c50p1z3bfvbn1r29z31qcr17mjmd7a9yskp4yhd"; 51798 + enableSeparateDataOutput = true; 51524 51799 libraryHaskellDepends = [ 51525 51800 base bytestring containers data-default-class exceptions megaparsec 51526 51801 mtl QuickCheck text ··· 51663 51938 sha256 = "1igys4i7wwj1ildkf4is66gq22zsjg158kv3ald5xiilwkmvfc4h"; 51664 51939 isLibrary = true; 51665 51940 isExecutable = true; 51941 + enableSeparateDataOutput = true; 51666 51942 libraryHaskellDepends = [ filepath ]; 51667 51943 executableHaskellDepends = [ 51668 51944 base containers curry-base mtl old-time pretty syb ··· 51734 52010 pname = "curves"; 51735 52011 version = "1.1.0.2"; 51736 52012 sha256 = "074gc55yf09949yqgal830plz2408zk86mdfx4n864xxdksklfda"; 52013 + enableSeparateDataOutput = true; 51737 52014 libraryHaskellDepends = [ 51738 52015 base bytestring containers filepath HaXml JuicyPixels QuickCheck 51739 52016 ]; ··· 51908 52185 pname = "daemonize-doublefork"; 51909 52186 version = "0.1.1"; 51910 52187 sha256 = "1g446qxff8ajv44341y0f9v39j8idmnn23lwi08gq3ps4qrz0py2"; 52188 + enableSeparateDataOutput = true; 51911 52189 libraryHaskellDepends = [ base directory unix ]; 51912 52190 homepage = "https://github.com/scvalex/daemonize-doublefork"; 51913 52191 description = "Start background daemons by double-forking"; ··· 51925 52203 sha256 = "0zf9831vl1hz606nsp0yhjg46wxzvwkd3hn9shjw5akk26sddi8p"; 51926 52204 isLibrary = true; 51927 52205 isExecutable = true; 52206 + enableSeparateDataOutput = true; 51928 52207 libraryHaskellDepends = [ 51929 52208 base bytestring cereal data-default directory filepath ghc-prim 51930 52209 network pipes transformers unix ··· 52182 52461 sha256 = "1lc1v30zmlcrp6i22d3arghqhy9pjncddr34df6zd8s0r9wsi61d"; 52183 52462 isLibrary = false; 52184 52463 isExecutable = true; 52464 + enableSeparateDataOutput = true; 52185 52465 executableHaskellDepends = [ 52186 52466 array base bytestring containers directory html HUnit mtl old-time 52187 52467 parsec process QuickCheck regex-compat unix ··· 52242 52522 sha256 = "0rp6flaizbaxzr28fr82vaacl4wajh6zdqnwcbgyhwz5dj7rdanq"; 52243 52523 isLibrary = false; 52244 52524 isExecutable = true; 52525 + enableSeparateDataOutput = true; 52245 52526 executableHaskellDepends = [ 52246 52527 base containers directory HaXml mtl process 52247 52528 ]; ··· 52257 52538 pname = "darcs-scripts"; 52258 52539 version = "0.1.1"; 52259 52540 sha256 = "06gs18s89nc5qyicfpkj0hz999l5pf4glhlanm2yhyd6lxbfgkba"; 52541 + enableSeparateDataOutput = true; 52260 52542 libraryHaskellDepends = [ base ]; 52261 52543 doHaddock = false; 52262 52544 description = "Shell scripts for support of darcs workflow"; ··· 52322 52604 sha256 = "1gl0wplzlhb6ynacq7bv38ijhazpwr642zc0a2dixbpibchgxksf"; 52323 52605 isLibrary = false; 52324 52606 isExecutable = true; 52607 + enableSeparateDataOutput = true; 52325 52608 executableHaskellDepends = [ 52326 52609 base bytestring cgi concurrentoutput containers Crypto directory 52327 52610 filepath HTTP mime-string mtl nano-md5 network old-locale old-time ··· 54489 54772 sha256 = "1zhvl6h32y9hd1drv0ipm13si0cqf83i9kxnyivp4j1l5h4b55dx"; 54490 54773 isLibrary = true; 54491 54774 isExecutable = true; 54775 + enableSeparateDataOutput = true; 54492 54776 libraryHaskellDepends = [ 54493 54777 base bytestring configurator containers directory fgl filepath HDBC 54494 54778 HUnit mtl random split template-haskell text time yaml-light ··· 54783 55067 pname = "ddc-code"; 54784 55068 version = "0.4.3.2"; 54785 55069 sha256 = "19ah5j1l84g06szyaf0qni89cqdnpygrlczppzx3qjl280q1qpzd"; 55070 + enableSeparateDataOutput = true; 54786 55071 libraryHaskellDepends = [ base filepath ]; 54787 55072 homepage = "http://disciple.ouroborus.net"; 54788 55073 description = "Disciplined Disciple Compiler base libraries"; ··· 55304 55589 sha256 = "0b7328529m3xl8bj7sncv5rr13ld2aghgqkf55j4n15jagv6g72d"; 55305 55590 isLibrary = true; 55306 55591 isExecutable = true; 55592 + enableSeparateDataOutput = true; 55307 55593 libraryHaskellDepends = [ time unix ]; 55308 55594 executableHaskellDepends = [ 55309 55595 base bytestring containers directory filepath haskell-src-exts ··· 55770 56056 pname = "delimiter-separated"; 55771 56057 version = "0.1.0.0"; 55772 56058 sha256 = "17ff9ipsnqicjkwsfg7zfb5gm0k9scsb44dl82gmf8i0f0nnd0h6"; 56059 + enableSeparateDataOutput = true; 55773 56060 libraryHaskellDepends = [ base uhc-util uulib ]; 55774 56061 homepage = "https://github.com/atzedijkstra/delimiter-separated"; 55775 56062 description = "Library for dealing with tab and/or comma (or other) separated files"; ··· 55811 56098 sha256 = "0ya0hgvpa9w41gswngg84yxhvll3fyr6b3h56p80yc5bldw700wg"; 55812 56099 isLibrary = true; 55813 56100 isExecutable = true; 56101 + enableSeparateDataOutput = true; 55814 56102 libraryHaskellDepends = [ 55815 56103 base binary bytestring containers monad-atom nlp-scores text 55816 56104 ]; ··· 55973 56261 sha256 = "0qgqlnj7wkmjba5f2rql51g9jhak0ksx3xdmr25j3p6qwb43k5ih"; 55974 56262 isLibrary = false; 55975 56263 isExecutable = true; 56264 + enableSeparateDataOutput = true; 55976 56265 executableHaskellDepends = [ 55977 56266 base bio bytestring cmdargs directory process regex-compat 55978 56267 ]; ··· 57035 57324 pname = "diagrams-rasterific"; 57036 57325 version = "1.4"; 57037 57326 sha256 = "190mc32fjjf3770fjp1bmbh3zc8l5bhqhqy30vv48l0pypfjrsns"; 57327 + enableSeparateDataOutput = true; 57038 57328 libraryHaskellDepends = [ 57039 57329 base bytestring containers data-default-class diagrams-core 57040 57330 diagrams-lib file-embed filepath FontyFruity hashable JuicyPixels ··· 57162 57452 pname = "dialog"; 57163 57453 version = "0.3.0.0"; 57164 57454 sha256 = "1lhsd48zb6d00jr7zdmpnhx8gkb3da8kr1qr09qpqais71mxhzz4"; 57455 + enableSeparateDataOutput = true; 57165 57456 libraryHaskellDepends = [ 57166 57457 base bytestring filepath glib gtk3 open-browser text transformers 57167 57458 webkitgtk3 ··· 57756 58047 sha256 = "1ii93jmrqs8rlx27rhykq4gqybm92908hg7kzin9ln7fg5ldvmlk"; 57757 58048 isLibrary = false; 57758 58049 isExecutable = true; 58050 + enableSeparateDataOutput = true; 57759 58051 executableHaskellDepends = [ 57760 58052 base FontyFruity JuicyPixels Rasterific vector 57761 58053 ]; ··· 59447 59739 pname = "dnsrbl"; 59448 59740 version = "0.0.3"; 59449 59741 sha256 = "07xq52aqqmzq1f68m8spr7fyax0cqnpv9mh5m4x3klxm0iznv9xm"; 59742 + enableSeparateDataOutput = true; 59450 59743 libraryHaskellDepends = [ base containers hsdns HUnit network ]; 59451 59744 homepage = "http://www.pigscanfly.ca/~holden/dnsrbl/"; 59452 59745 description = "Asynchronous DNS RBL lookup"; ··· 59495 59788 sha256 = "0009gpm6hgjr78bsp0cd4skvhbms83j4j9axf6zns7pnfqvc6inf"; 59496 59789 isLibrary = false; 59497 59790 isExecutable = true; 59791 + enableSeparateDataOutput = true; 59498 59792 executableHaskellDepends = [ 59499 59793 base base64-bytestring binary bytestring containers directory feed 59500 59794 filepath haskell98 heist hexpat json MonadCatchIO-transformers ··· 59583 59877 hydraPlatforms = stdenv.lib.platforms.none; 59584 59878 }) {}; 59585 59879 59880 + "docker-build-cacher" = callPackage 59881 + ({ mkDerivation, base, containers, foldl, language-dockerfile 59882 + , system-filepath, text, turtle 59883 + }: 59884 + mkDerivation { 59885 + pname = "docker-build-cacher"; 59886 + version = "1.1"; 59887 + sha256 = "0rc6i4s8iw1qbz9nicbcqjv2b0pr0vzkld8srs4ns41nq4brcdbn"; 59888 + isLibrary = false; 59889 + isExecutable = true; 59890 + executableHaskellDepends = [ 59891 + base containers foldl language-dockerfile system-filepath text 59892 + turtle 59893 + ]; 59894 + description = "Builds a services with docker and caches all of its intermediate stages"; 59895 + license = stdenv.lib.licenses.bsd3; 59896 + }) {}; 59897 + 59586 59898 "dockercook" = callPackage 59587 59899 ({ mkDerivation, aeson, aeson-pretty, attoparsec, base 59588 59900 , base16-bytestring, bytestring, conduit, conduit-combinators ··· 59638 59950 pname = "docopt"; 59639 59951 version = "0.7.0.5"; 59640 59952 sha256 = "1vh5kn13z0c6k2ir6nyr453flyn0cfmz7h61903vysw9lh40hy8m"; 59953 + enableSeparateDataOutput = true; 59641 59954 libraryHaskellDepends = [ 59642 59955 base containers parsec template-haskell th-lift 59643 59956 ]; ··· 59659 59972 pname = "doctemplates"; 59660 59973 version = "0.1.0.2"; 59661 59974 sha256 = "0swal6rjya1293mwvl63jch5fx9ghpsil7qs4v7rpansa0izalmp"; 59975 + enableSeparateDataOutput = true; 59662 59976 libraryHaskellDepends = [ 59663 59977 aeson base blaze-html blaze-markup bytestring containers parsec 59664 59978 scientific text unordered-containers vector ··· 60170 60484 sha256 = "0capas1h8d8y8j5sd0zbzayf18jknh1w6q8jcwrx3dqgfd316dqp"; 60171 60485 isLibrary = false; 60172 60486 isExecutable = true; 60487 + enableSeparateDataOutput = true; 60173 60488 executableHaskellDepends = [ 60174 60489 array base directory elerea GLFW mersenne-random OpenGL 60175 60490 ]; ··· 60427 60742 pname = "dpkg"; 60428 60743 version = "0.0.3"; 60429 60744 sha256 = "1bqrj1vqqjnv3qcs1s7lbwyzry95fzxrhi6340zqv0ibvyqnaz5k"; 60745 + enableSeparateDataOutput = true; 60430 60746 libraryHaskellDepends = [ 60431 60747 base bindings-DSL bytestring monad-loops 60432 60748 ]; ··· 60705 61021 sha256 = "0wry1dwcf3dwd780aic3v6jlrdjplrsciw1rr582a78c7anasjr0"; 60706 61022 isLibrary = false; 60707 61023 isExecutable = true; 61024 + enableSeparateDataOutput = true; 60708 61025 executableHaskellDepends = [ 60709 61026 base bytestring cmdargs ConfigFile dsmc gloss gloss-raster hslogger 60710 61027 mtl repa strict transformers vector ··· 60968 61285 pname = "dump-core"; 60969 61286 version = "0.1.3"; 60970 61287 sha256 = "1innidrmxaqs093pb8g9q7hfmm3kv3przhi34py4sjl256gdwgq0"; 61288 + enableSeparateDataOutput = true; 60971 61289 libraryHaskellDepends = [ 60972 61290 aeson base bytestring containers directory filepath ghc monadLib 60973 61291 text ··· 61115 61433 pname = "dwarf"; 61116 61434 version = "0.23"; 61117 61435 sha256 = "0h6bzh628cz0qnbk4aiz5859r9va99q307scbwzvs1wn3nm6dszl"; 61436 + enableSeparateDataOutput = true; 61118 61437 libraryHaskellDepends = [ base binary bytestring containers ]; 61119 61438 description = "Parser for DWARF debug format"; 61120 61439 license = stdenv.lib.licenses.bsd3; ··· 61252 61571 pname = "dynamic-graph"; 61253 61572 version = "0.1.0.9"; 61254 61573 sha256 = "0paa9y5h0pp4b44kq5yn8m43nir4wg9hgfmns2d76r8qjry617qp"; 61574 + enableSeparateDataOutput = true; 61255 61575 libraryHaskellDepends = [ 61256 61576 base cairo colour either GLFW-b GLUtil OpenGL pango pipes 61257 61577 transformers ··· 61283 61603 pname = "dynamic-loader"; 61284 61604 version = "0.0.1"; 61285 61605 sha256 = "1ci7fcpgwf3v8rakypxi0l3l3aazwnf004ggpdr6vqqj5iav3a15"; 61606 + enableSeparateDataOutput = true; 61286 61607 libraryHaskellDepends = [ 61287 61608 base directory ghc-prim hashable hashtables time transformers 61288 61609 ]; ··· 61743 62064 pname = "eccrypto"; 61744 62065 version = "0.0.1"; 61745 62066 sha256 = "1jcwlwbcd77536ii0wxalbdslzbvv224b07g3801pgjvr38xljpx"; 62067 + enableSeparateDataOutput = true; 61746 62068 libraryHaskellDepends = [ 61747 62069 base bytestring cereal crypto-api SHA vector 61748 62070 ]; ··· 61885 62207 pname = "ede"; 61886 62208 version = "0.2.8.7"; 61887 62209 sha256 = "02jy6v9w7vpzs3fikfvgd09p0dvfq9isxcag281naazgn1my8swb"; 62210 + enableSeparateDataOutput = true; 61888 62211 libraryHaskellDepends = [ 61889 62212 aeson ansi-wl-pprint base bifunctors bytestring comonad directory 61890 62213 double-conversion filepath free lens mtl parsers scientific ··· 61935 62258 sha256 = "0jkcva53vm8lm76z947xms8a2zkh9sn9951cwry8k7r132dmcn32"; 61936 62259 isLibrary = false; 61937 62260 isExecutable = true; 62261 + enableSeparateDataOutput = true; 61938 62262 executableHaskellDepends = [ 61939 62263 array base binary bytestring cairo containers directory filepath 61940 62264 ghc-events-parallel gtk mtl text zip-archive ··· 61955 62279 sha256 = "0zvwkk7sdgi4h1gld4h4c0lznkp5nd9p3cxpfj2yq393x27jamc0"; 61956 62280 isLibrary = false; 61957 62281 isExecutable = true; 62282 + enableSeparateDataOutput = true; 61958 62283 executableHaskellDepends = [ 61959 62284 ALUT base cmdtheline containers gloss OpenAL random wraparound 61960 62285 ]; ··· 62077 62402 sha256 = "0raj0s8v72kz63hqpqhf58sx0a8mcwi4ania40spjirdrsdx3i9g"; 62078 62403 isLibrary = true; 62079 62404 isExecutable = true; 62405 + enableSeparateDataOutput = true; 62080 62406 libraryHaskellDepends = [ 62081 62407 base bytestring conduit conduit-extra directory process resourcet 62082 62408 temporary transformers unix ··· 62231 62557 sha256 = "1fdlpk51y9ddwj5nky0k7shxm1z2nv0l3xfbfgmjcq44xc5wpzsn"; 62232 62558 isLibrary = true; 62233 62559 isExecutable = true; 62560 + enableSeparateDataOutput = true; 62234 62561 libraryHaskellDepends = [ 62235 62562 array base containers directory ghc ghc-paths haskeline mtl 62236 62563 parallel parsec process random regex-tdfa text transformers ··· 62423 62750 pname = "ekg"; 62424 62751 version = "0.4.0.13"; 62425 62752 sha256 = "13xlggjcfmp8hr8sz74r0xms36rrfa86znazy2m6304dgscdbca4"; 62753 + enableSeparateDataOutput = true; 62426 62754 libraryHaskellDepends = [ 62427 62755 aeson base bytestring ekg-core ekg-json filepath network snap-core 62428 62756 snap-server text time transformers unordered-containers ··· 62676 63004 pname = "ekg-wai"; 62677 63005 version = "0.1.0.1"; 62678 63006 sha256 = "14vl5k7jq7p7fiwj9rbw3ng7j8cagydpw7zvf8qxbwxdz9xr655q"; 63007 + enableSeparateDataOutput = true; 62679 63008 libraryHaskellDepends = [ 62680 63009 aeson base bytestring ekg-core ekg-json filepath http-types network 62681 63010 text time transformers unordered-containers wai wai-app-static warp ··· 62769 63098 pname = "elf"; 62770 63099 version = "0.28"; 62771 63100 sha256 = "0mzikwgd3dnzjgj1xa69lgrs38pnvwffvblckrqnwf0h7fd149wy"; 63101 + enableSeparateDataOutput = true; 62772 63102 libraryHaskellDepends = [ base binary bytestring ]; 62773 63103 homepage = "https://github.com/wangbj/elf"; 62774 63104 description = "Parser for ELF object format"; ··· 62992 63322 sha256 = "0w0jn7qvxsfcqdr0r147qs6s2711m1xwp28ddzd60n9yn0gdpfi9"; 62993 63323 isLibrary = false; 62994 63324 isExecutable = true; 63325 + enableSeparateDataOutput = true; 62995 63326 executableHaskellDepends = [ 62996 63327 aeson aeson-pretty base base-unicode-symbols bytestring containers 62997 63328 directory file-embed filepath process text time ··· 63064 63395 sha256 = "0j8md3cqg7wrcx85s5hj8g812zvrr3y4833n0wc3dvfa3wlblpga"; 63065 63396 isLibrary = false; 63066 63397 isExecutable = true; 63398 + enableSeparateDataOutput = true; 63067 63399 executableHaskellDepends = [ 63068 63400 base blaze-html blaze-markup bytestring cmdargs containers 63069 63401 directory elm-compiler filepath fsnotify HTTP mtl process snap-core ··· 64041 64373 sha256 = "0ap8jr11sk8v2sdi03pahjhaxx3mc4ba7qbh3m8nsg0g5wr4962m"; 64042 64374 isLibrary = true; 64043 64375 isExecutable = true; 64376 + enableSeparateDataOutput = true; 64044 64377 libraryHaskellDepends = [ array base Cabal directory mtl process ]; 64045 64378 executableHaskellDepends = [ 64046 64379 array base Cabal directory mtl process ··· 64071 64404 pname = "eprocess"; 64072 64405 version = "1.7.2"; 64073 64406 sha256 = "190qgsqj41dbkphjrgljif7q0zjm9ddp8wawc9wx8qklb897jrvj"; 64407 + enableSeparateDataOutput = true; 64074 64408 libraryHaskellDepends = [ base exceptions mtl ]; 64075 64409 description = "Basic Erlang-like process support for Haskell"; 64076 64410 license = stdenv.lib.licenses.bsd3; ··· 64295 64629 pname = "eros"; 64296 64630 version = "0.6.0.0"; 64297 64631 sha256 = "0nr0c2qq30ji50pyjrklrb6a73i6qkqws7ywbfpa4pcd176xwlrw"; 64632 + enableSeparateDataOutput = true; 64298 64633 libraryHaskellDepends = [ aeson base bytestring containers text ]; 64299 64634 description = "A text censorship library"; 64300 64635 license = stdenv.lib.licenses.bsd3; ··· 64311 64646 sha256 = "15pi4khibvfpxni4v3kz6f92s8s34kmkx4q7kwq1rxk5gb6p8rcb"; 64312 64647 isLibrary = false; 64313 64648 isExecutable = true; 64649 + enableSeparateDataOutput = true; 64314 64650 executableHaskellDepends = [ 64315 64651 aeson aeson-pretty base bytestring containers eros text 64316 64652 ]; ··· 64329 64665 sha256 = "1c7bwszjvbb3qnbvpjm0vin2x2z6dylplhs10hbhszkq2ypjjxyk"; 64330 64666 isLibrary = false; 64331 64667 isExecutable = true; 64668 + enableSeparateDataOutput = true; 64332 64669 executableHaskellDepends = [ 64333 64670 aeson base blaze-html bytestring eros http-types markdown text wai 64334 64671 warp ··· 64521 64858 sha256 = "1h58g9lfhmww433z24vmi6wkaii5ik0hrmjprvypgw4bgibls0g9"; 64522 64859 isLibrary = true; 64523 64860 isExecutable = true; 64861 + enableSeparateDataOutput = true; 64524 64862 libraryHaskellDepends = [ 64525 64863 array base bytestring containers data-default lens mtl process 64526 64864 temporary transformers unordered-containers ··· 64546 64884 sha256 = "173k73dvbv528q6072b8k7xy9q6558rlmz7llkiym4g1j2xi37cf"; 64547 64885 isLibrary = true; 64548 64886 isExecutable = true; 64887 + enableSeparateDataOutput = true; 64549 64888 setupHaskellDepends = [ base Cabal cabal-doctest ]; 64550 64889 libraryHaskellDepends = [ 64551 64890 array attoparsec base bytestring containers data-default lens mtl ··· 64727 65066 sha256 = "100pqygnwclmpzjhzpz3j34y8v75d8ldxg76f9jys90gb41kggpi"; 64728 65067 isLibrary = false; 64729 65068 isExecutable = true; 65069 + enableSeparateDataOutput = true; 64730 65070 executableHaskellDepends = [ 64731 65071 base bio bytestring containers random 64732 65072 ]; ··· 64745 65085 pname = "etc"; 64746 65086 version = "0.0.0.2"; 64747 65087 sha256 = "1cbxanxm7qpbsj3q5f6q4sn2krvfi3bm5yxi2qcxrqpjrhq31j8i"; 65088 + enableSeparateDataOutput = true; 64748 65089 libraryHaskellDepends = [ 64749 65090 aeson base bytestring containers directory exceptions hashable 64750 65091 protolude text unordered-containers vector ··· 64767 65108 pname = "etc"; 64768 65109 version = "0.2.0.0"; 64769 65110 sha256 = "16l5ap8ag2l3ks6pjwr49wk4njgap44kbxsqb69yr9lr81wrj9fv"; 65111 + enableSeparateDataOutput = true; 64770 65112 libraryHaskellDepends = [ 64771 65113 aeson base bytestring containers directory exceptions hashable 64772 65114 protolude text unordered-containers vector ··· 65123 65465 pname = "eurofxref"; 65124 65466 version = "0.2.1"; 65125 65467 sha256 = "0zjf3rky2ww2nq4ryyz0069cv3ps1h29nwrgr2sk127bsik868x9"; 65468 + enableSeparateDataOutput = true; 65126 65469 libraryHaskellDepends = [ 65127 65470 base bytestring conduit containers failure hexpat http-conduit 65128 65471 http-types monad-control mtl time ··· 65894 66237 editedCabalFile = "0mnc09lgfhpnwp0llvbr24xbszgr56k9nnjcww67khag74md7yg3"; 65895 66238 isLibrary = true; 65896 66239 isExecutable = true; 66240 + enableSeparateDataOutput = true; 65897 66241 libraryHaskellDepends = [ 65898 66242 base base-orphans bifunctors containers deepseq deepseq-generics 65899 66243 directory either hashable haskell-src-exts hood lens mmorph mtl ··· 66357 66701 pname = "extcore"; 66358 66702 version = "1.0.2"; 66359 66703 sha256 = "1dpn4dbbn5d3zqrhxkg8nvb97vp9pf61gwa46yf218nvwgqvx437"; 66704 + enableSeparateDataOutput = true; 66360 66705 libraryHaskellDepends = [ 66361 66706 array base bytestring containers directory filepath mtl parsec 66362 66707 pretty syb ··· 66838 67183 pname = "fair-predicates"; 66839 67184 version = "0.1.1"; 66840 67185 sha256 = "1z0c83gfmvwhzsj2iz422mxcyxc8jnic25i1vz6yp4xzv41ibmj6"; 67186 + enableSeparateDataOutput = true; 66841 67187 libraryHaskellDepends = [ base ]; 66842 67188 homepage = "http://sebfisch.github.com/fair-predicates"; 66843 67189 description = "Fair Predicates"; ··· 66864 67210 pname = "faker"; 66865 67211 version = "0.0.0.2"; 66866 67212 sha256 = "1wl0jx3adibf7z8k3jadnr90jvkmf3zhkq34qpsifcl18zip8skq"; 67213 + enableSeparateDataOutput = true; 66867 67214 libraryHaskellDepends = [ base gimlh random split ]; 66868 67215 homepage = "https://github.com/gazay/faker"; 66869 67216 description = "Pure Haskell library for generating fake data"; ··· 66880 67227 sha256 = "035rjjjvwbjw4z6nlmiyxia5y91yiiw7902f9q6n5jimi5xk2hgk"; 66881 67228 isLibrary = false; 66882 67229 isExecutable = true; 67230 + enableSeparateDataOutput = true; 66883 67231 executableHaskellDepends = [ 66884 67232 base gloss gloss-raster JuicyPixels-repa QuickCheck random repa 66885 67233 repa-algorithms vector ··· 66900 67248 sha256 = "18h5d33hd4cs6dc508mzl7c46pxwrk2q0daabvg8m4fiwk5wzlr0"; 66901 67249 isLibrary = false; 66902 67250 isExecutable = true; 67251 + enableSeparateDataOutput = true; 66903 67252 executableHaskellDepends = [ 66904 67253 base containers haskell98 SDL SDL-mixer SDL-ttf 66905 67254 ]; ··· 67044 67393 sha256 = "1pqz3r2dg0i462fd4fm3fz4p0m05878gic8xr1hxzk2f2ljsc7fq"; 67045 67394 isLibrary = true; 67046 67395 isExecutable = true; 67396 + enableSeparateDataOutput = true; 67047 67397 libraryHaskellDepends = [ 67048 67398 array async base bytestring containers cpphs deepseq directory 67049 67399 filepath mtl text utf8-string ··· 67256 67606 pname = "fay"; 67257 67607 version = "0.23.1.16"; 67258 67608 sha256 = "0r4ac76mn7dykva0dz6ar2zfcij2kiz8kjfcywpgdg40g75zhvn4"; 67259 - revision = "7"; 67260 - editedCabalFile = "07iqrpg2hga3n8m08aq2zizvq27v8hyqzvx5sfz497whjxr9h358"; 67609 + revision = "8"; 67610 + editedCabalFile = "1ybc4vv0d3vya4a1xgr2sbq1zx1bzm82acxivs458i9pj56wp87j"; 67261 67611 isLibrary = true; 67262 67612 isExecutable = true; 67613 + enableSeparateDataOutput = true; 67263 67614 libraryHaskellDepends = [ 67264 67615 aeson base base-compat bytestring containers data-default 67265 67616 data-lens-light directory filepath ghc-paths haskell-src-exts ··· 67280 67631 pname = "fay-base"; 67281 67632 version = "0.20.0.1"; 67282 67633 sha256 = "17mfblr40jhn93vz6vn0n0xsk4lwf5d5cavfy5zy8sg4inp6dkjr"; 67634 + enableSeparateDataOutput = true; 67283 67635 libraryHaskellDepends = [ base fay ]; 67284 67636 homepage = "https://github.com/faylang/fay/"; 67285 67637 description = "The base package for Fay"; ··· 67309 67661 pname = "fay-dom"; 67310 67662 version = "0.5.0.1"; 67311 67663 sha256 = "1zm6w6nccswaksr283alhnsss6xw4k7s61yp8ff4lg5127ff9wp0"; 67664 + enableSeparateDataOutput = true; 67312 67665 libraryHaskellDepends = [ fay-base ]; 67313 67666 homepage = "https://github.com/faylang/fay-dom"; 67314 67667 description = "DOM FFI wrapper library for Fay"; ··· 67321 67674 pname = "fay-geoposition"; 67322 67675 version = "0.1.0.1"; 67323 67676 sha256 = "1qmkwfqgvj6a8fan1l3i18ggpl00vrfd2mhqj13g0gh9yhvgxv1q"; 67677 + enableSeparateDataOutput = true; 67324 67678 libraryHaskellDepends = [ fay-base fay-text ]; 67325 67679 homepage = "https://github.com/victoredwardocallaghan/fay-geoposition"; 67326 67680 description = "W3C compliant implementation of GeoPosition API"; ··· 67333 67687 pname = "fay-hsx"; 67334 67688 version = "0.2.0"; 67335 67689 sha256 = "1mzjna8yc7jczgggpcgh9i6akiy72d60jczvmzxngh778z3g5zmi"; 67690 + enableSeparateDataOutput = true; 67336 67691 libraryHaskellDepends = [ fay-base fay-jquery ]; 67337 67692 homepage = "http://www.happstack.com/"; 67338 67693 description = "Clientside HTML generation for fay"; ··· 67346 67701 pname = "fay-jquery"; 67347 67702 version = "0.6.1.0"; 67348 67703 sha256 = "04vg018zynb5ckj7ca9a9a3lbs8kjx8a5k0l3k73yp2y27w7xx8g"; 67704 + enableSeparateDataOutput = true; 67349 67705 libraryHaskellDepends = [ fay-base fay-text ]; 67350 67706 homepage = "https://github.com/faylang/fay-jquery"; 67351 67707 description = "jQuery bindings for Fay"; ··· 67358 67714 pname = "fay-ref"; 67359 67715 version = "0.1.0.0"; 67360 67716 sha256 = "1dcifraih13zqwmm4xn57wfg63rdkiac81avyymid308r6p1x9cn"; 67717 + enableSeparateDataOutput = true; 67361 67718 libraryHaskellDepends = [ fay-base ]; 67362 67719 homepage = "https://github.com/A1kmm/fay-ref"; 67363 67720 description = "Like IORef but for Fay"; ··· 67370 67727 pname = "fay-simplejson"; 67371 67728 version = "0.1.3.0"; 67372 67729 sha256 = "0cw06vl39p7mflf8wfl8ql1h8bryv2d1kvvf4swqgda05jk13mxq"; 67730 + enableSeparateDataOutput = true; 67373 67731 libraryHaskellDepends = [ fay-base ]; 67374 67732 homepage = "https://github.com/Lupino/fay-simplejson"; 67375 67733 description = "SimpleJSON library for Fay"; ··· 67383 67741 pname = "fay-text"; 67384 67742 version = "0.3.2.2"; 67385 67743 sha256 = "1q1v8jzkccy9arq6jkz4ynpzm1691d1dv9wzyi4i5m6n0gl7aans"; 67744 + enableSeparateDataOutput = true; 67386 67745 libraryHaskellDepends = [ fay fay-base text ]; 67387 67746 homepage = "https://github.com/faylang/fay-text"; 67388 67747 description = "Fay Text type represented as JavaScript strings"; ··· 67395 67754 pname = "fay-uri"; 67396 67755 version = "0.2.0.0"; 67397 67756 sha256 = "1vv4jgkz9cx8inbn6g6sn3a0nf1ak81qlj5li21sk2isj0yws1nr"; 67757 + enableSeparateDataOutput = true; 67398 67758 libraryHaskellDepends = [ fay-base ]; 67399 67759 homepage = "https://github.com/faylang/fay-uri"; 67400 67760 description = "Persistent FFI bindings for using jsUri in Fay"; ··· 67459 67819 sha256 = "0dvjhgv3w13ygi4rfdvmc2m6f99v8d9dmjqp98vxrygcqskhgy4x"; 67460 67820 isLibrary = true; 67461 67821 isExecutable = true; 67822 + enableSeparateDataOutput = true; 67462 67823 libraryHaskellDepends = [ 67463 67824 aeson base bytestring case-insensitive http-client http-media 67464 67825 http-types mime-types servant servant-client string-conversions ··· 67703 68064 sha256 = "0hkrsinspg70bbm3hwqdrvivws6zya1hyk0a3awpaz82j4xnlbfc"; 67704 68065 revision = "2"; 67705 68066 editedCabalFile = "0ggpqv0i2k38dl8dqwn159n7ys0xr8shrsr3l838883rs8rrnf1j"; 68067 + enableSeparateDataOutput = true; 67706 68068 libraryHaskellDepends = [ 67707 68069 base old-locale old-time time time-locale-compat utf8-string xml 67708 68070 ]; ··· 67725 68087 sha256 = "0gql641jmbldx6vhk37i2v41j2nq22lrihm48f97wirrxw7yjn61"; 67726 68088 isLibrary = false; 67727 68089 isExecutable = true; 68090 + enableSeparateDataOutput = true; 67728 68091 executableHaskellDepends = [ 67729 68092 base directory feed old-locale old-time time xml 67730 68093 ]; ··· 67988 68351 sha256 = "0sq4g0sdayk1lqzdhggwshl22gny5cjbv70cmr1p27q0wfwfbfff"; 67989 68352 isLibrary = false; 67990 68353 isExecutable = true; 68354 + enableSeparateDataOutput = true; 67991 68355 executableHaskellDepends = [ 67992 68356 base cairo gtk harp HaXml mtl template-haskell unix 67993 68357 ]; ··· 68062 68426 pname = "fficxx"; 68063 68427 version = "0.3.1"; 68064 68428 sha256 = "0y40li2465r1mf9lgswk9hcwbp528iblxwb9icv94p6nyq28z24k"; 68429 + enableSeparateDataOutput = true; 68065 68430 libraryHaskellDepends = [ 68066 68431 base bytestring Cabal containers data-default directory either 68067 68432 errors filepath hashable haskell-src-exts lens mtl process pureMD5 ··· 68606 68971 pname = "filestore"; 68607 68972 version = "0.6.3.1"; 68608 68973 sha256 = "1pnqb816syl8j03wfk1p96vqlb64xkl45cxlkmqsriwi4ar0svw1"; 68974 + enableSeparateDataOutput = true; 68609 68975 libraryHaskellDepends = [ 68610 68976 base bytestring containers Diff directory filepath old-locale 68611 68977 parsec process split time utf8-string xml ··· 69014 69380 sha256 = "01fy2s94aq7mnnp24g5i8sxvlpb6arnmv8n2fr153lwmg3n2w1qb"; 69015 69381 isLibrary = false; 69016 69382 isExecutable = true; 69383 + enableSeparateDataOutput = true; 69017 69384 executableHaskellDepends = [ 69018 69385 base containers cpphs directory filepath haskell-src-exts process 69019 69386 split text uniplate ··· 69408 69775 pname = "flac"; 69409 69776 version = "0.1.2"; 69410 69777 sha256 = "0adc88h5dmazf9m2xah0qkcav3pm0l3jiy8wbg9fxjv1qpgv74jn"; 69778 + enableSeparateDataOutput = true; 69411 69779 libraryHaskellDepends = [ 69412 69780 base bytestring containers data-default-class directory exceptions 69413 69781 filepath mtl text transformers vector wave ··· 69431 69799 pname = "flac-picture"; 69432 69800 version = "0.1.1"; 69433 69801 sha256 = "1kn1zvv5izinyidmxij7zqml94a8q52bbm2icg7704sj906gh71w"; 69802 + enableSeparateDataOutput = true; 69434 69803 libraryHaskellDepends = [ base bytestring flac JuicyPixels ]; 69435 69804 testHaskellDepends = [ 69436 69805 base bytestring data-default-class directory flac hspec JuicyPixels ··· 70123 70492 sha256 = "1bjkkd90mw1nbm5pyjh52dwhqa6xx3i3hhl2ys3qpk08mrw5r09l"; 70124 70493 isLibrary = false; 70125 70494 isExecutable = true; 70495 + enableSeparateDataOutput = true; 70126 70496 executableHaskellDepends = [ 70127 70497 base directory filepath mtl process Unixutils 70128 70498 ]; ··· 70756 71126 sha256 = "0z8a5a9w7mg69c1x6h8825bhkll63gz6j85lbc0w59w1ag2x8865"; 70757 71127 isLibrary = false; 70758 71128 isExecutable = true; 71129 + enableSeparateDataOutput = true; 70759 71130 executableHaskellDepends = [ 70760 71131 ansi-terminal base bytestring containers directory file-embed HTTP 70761 71132 indents interpolatedstring-perl6 jmacro MissingH mtl network pandoc ··· 70862 71233 sha256 = "1bqfw3h06mbznivg37840qnzjygflzp90wkyssnb1kjxi4bj1vbv"; 70863 71234 isLibrary = false; 70864 71235 isExecutable = true; 71236 + enableSeparateDataOutput = true; 70865 71237 executableHaskellDepends = [ 70866 71238 ansi-terminal base bytestring cereal containers directory 70867 71239 file-embed ghc-prim GraphSCC hslogger HTTP indents ··· 71213 71585 sha256 = "0gbws8q7k2bv4i4v7km5nfjv8j42kmfjw4vhn1n6dr8xysrmbn3h"; 71214 71586 isLibrary = false; 71215 71587 isExecutable = true; 71588 + enableSeparateDataOutput = true; 71216 71589 executableHaskellDepends = [ 71217 71590 base HUnit parsec parsec3-numbers QuickCheck test-framework 71218 71591 test-framework-hunit test-framework-quickcheck2 ··· 71291 71664 sha256 = "1xgnp4cls8i61hyl4kcf3afri77jlcahwjvww498xl5d5frdiv90"; 71292 71665 isLibrary = false; 71293 71666 isExecutable = true; 71667 + enableSeparateDataOutput = true; 71294 71668 executableHaskellDepends = [ array base GLUT OpenGL random ]; 71295 71669 homepage = "http://haskell.org/haskellwiki/Frag"; 71296 71670 description = "A 3-D First Person Shooter Game"; ··· 71579 71953 sha256 = "1qxdfbzr52dw0qww03l86vpgmylznifqzvjarmgpkfr129szl7ba"; 71580 71954 isLibrary = false; 71581 71955 isExecutable = true; 71956 + enableSeparateDataOutput = true; 71582 71957 executableHaskellDepends = [ 71583 71958 base bytestring cgi csv dataenc directory filepath free-theorems 71584 71959 process time xhtml ··· 71633 72008 sha256 = "1ybmffs05hgzn81szcd8nrz4f94qc64d9y2d2hkyq57djb87503j"; 71634 72009 isLibrary = false; 71635 72010 isExecutable = true; 72011 + enableSeparateDataOutput = true; 71636 72012 executableHaskellDepends = [ 71637 72013 array base binary bytestring containers directory EdisonCore 71638 72014 filepath FTGL haskell98 mtl OpenGL pngload random SDL ··· 72013 72389 pname = "frpnow"; 72014 72390 version = "0.18"; 72015 72391 sha256 = "1ixhcif2db8v6k8m4bgrpiivl0ygb83padnj18w4jyy5br6s1bqz"; 72392 + enableSeparateDataOutput = true; 72016 72393 libraryHaskellDepends = [ base containers mtl transformers ]; 72017 72394 homepage = "https://github.com/atzeus/FRPNow"; 72018 72395 description = "Principled practical FRP"; ··· 72026 72403 pname = "frpnow-gloss"; 72027 72404 version = "0.12"; 72028 72405 sha256 = "1xywqcif16r3x4qckz3n6k5mp2pya4vj35h0jrh4rd1sspnhi99i"; 72406 + enableSeparateDataOutput = true; 72029 72407 libraryHaskellDepends = [ 72030 72408 base containers frpnow gloss mtl transformers 72031 72409 ]; ··· 72042 72420 pname = "frpnow-gtk"; 72043 72421 version = "0.11"; 72044 72422 sha256 = "0yq9pgjlmzg5pzcky7z7n2ks82x92dp5pjacr6h3w8mdrhhhk80c"; 72423 + enableSeparateDataOutput = true; 72045 72424 libraryHaskellDepends = [ 72046 72425 base containers frpnow glib gtk mtl transformers 72047 72426 ]; ··· 72153 72532 license = stdenv.lib.licenses.bsd3; 72154 72533 }) {}; 72155 72534 72535 + "fsnotify_0_2_1_1" = callPackage 72536 + ({ mkDerivation, async, base, containers, directory, filepath 72537 + , hinotify, tasty, tasty-hunit, temporary, text, time, unix-compat 72538 + }: 72539 + mkDerivation { 72540 + pname = "fsnotify"; 72541 + version = "0.2.1.1"; 72542 + sha256 = "146wsblhfwnbclzffxk6m43bqap3sgw332gs67030z6h5ab7anhp"; 72543 + libraryHaskellDepends = [ 72544 + async base containers directory filepath hinotify text time 72545 + unix-compat 72546 + ]; 72547 + testHaskellDepends = [ 72548 + async base directory filepath tasty tasty-hunit temporary 72549 + unix-compat 72550 + ]; 72551 + homepage = "https://github.com/haskell-fswatch/hfsnotify"; 72552 + description = "Cross platform library for file change notification"; 72553 + license = stdenv.lib.licenses.bsd3; 72554 + hydraPlatforms = stdenv.lib.platforms.none; 72555 + }) {}; 72556 + 72156 72557 "fsnotify-conduit" = callPackage 72157 72558 ({ mkDerivation, async, base, conduit, directory, filepath 72158 72559 , fsnotify, hspec, resourcet, temporary, transformers ··· 72360 72761 sha256 = "1jrpb6dzq47xy6xvsisc7g1y53dc97s4l826f9sscxpdsrx3yp8r"; 72361 72762 isLibrary = false; 72362 72763 isExecutable = true; 72764 + enableSeparateDataOutput = true; 72363 72765 executableHaskellDepends = [ 72364 72766 base containers free-theorems mtl pretty Shellac Shellac-readline 72365 72767 ]; ··· 72522 72924 pname = "funcmp"; 72523 72925 version = "1.8"; 72524 72926 sha256 = "09kmfgl15d71fr5h66j2b0ngw69y8dp41d55lz35nrjxq3l3gz1k"; 72927 + enableSeparateDataOutput = true; 72525 72928 libraryHaskellDepends = [ base filepath process ]; 72526 72929 homepage = "http://savannah.nongnu.org/projects/funcmp/"; 72527 72930 description = "Functional MetaPost"; ··· 73219 73622 pname = "gconf"; 73220 73623 version = "0.13.1.0"; 73221 73624 sha256 = "1b8xl9jayr7x77af7cq4av82lf1r0j49pmbp1mz3gkadxw3adksp"; 73625 + enableSeparateDataOutput = true; 73222 73626 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 73223 73627 libraryHaskellDepends = [ base glib text ]; 73224 73628 libraryPkgconfigDepends = [ GConf ]; ··· 73359 73763 sha256 = "1951jw8la59c7qvjpx8x898l7hnwc51c4264mmw0h402ik233bp2"; 73360 73764 isLibrary = true; 73361 73765 isExecutable = true; 73766 + enableSeparateDataOutput = true; 73362 73767 libraryHaskellDepends = [ 73363 73768 air base bytestring data-default geek hack2 73364 73769 hack2-handler-snap-server pandoc text ··· 73482 73887 sha256 = "0sfl3729v03s5ykd8ijv4yrf8lzja5hyaphsfgk96gcx3zvd1a0q"; 73483 73888 isLibrary = true; 73484 73889 isExecutable = true; 73890 + enableSeparateDataOutput = true; 73485 73891 libraryHaskellDepends = [ attoparsec base text ]; 73486 73892 executableHaskellDepends = [ attoparsec base text ]; 73487 73893 homepage = "https://github.com/womfoo/gender"; ··· 73959 74365 pname = "genericserialize"; 73960 74366 version = "0.1"; 73961 74367 sha256 = "0zpb5rq2zvfsb0wlp9q4cckjkz6sdrngpir49d0sr06pivh8s6cl"; 74368 + enableSeparateDataOutput = true; 73962 74369 libraryHaskellDepends = [ base ]; 73963 74370 description = "Serialization library using Data.Generics"; 73964 74371 license = stdenv.lib.licenses.bsd3; ··· 74062 74469 sha256 = "1ydxg10s6bk02i3mikb8aqjai099874gby26q50lwf9xp04csbfk"; 74063 74470 isLibrary = true; 74064 74471 isExecutable = true; 74472 + enableSeparateDataOutput = true; 74065 74473 libraryHaskellDepends = [ 74066 74474 base blaze-html blaze-markup bytestring directory filepath GenI 74067 74475 geniserver HTTP http-streams io-streams json text ··· 74085 74493 sha256 = "0brnh6f8zdpn37fjdmnpbdvb75vmaf6iq7i9vpv4a8g7asc425wd"; 74086 74494 isLibrary = false; 74087 74495 isExecutable = true; 74496 + enableSeparateDataOutput = true; 74088 74497 executableHaskellDepends = [ 74089 74498 base binary containers GenI haskell98 HaXml HUnit mtl parsec 74090 74499 QuickCheck utf8-string ··· 74439 74848 pname = "geo-uk"; 74440 74849 version = "0.1.0.2"; 74441 74850 sha256 = "1b97kzx4i0jjrmh6iyhxcs1ms4vbiyyywmhccx1a6q6ia82dgcpy"; 74851 + enableSeparateDataOutput = true; 74442 74852 libraryHaskellDepends = [ 74443 74853 array base binary bytestring bzlib template-haskell th-lift 74444 74854 ]; ··· 74500 74910 pname = "geodetics"; 74501 74911 version = "0.0.4"; 74502 74912 sha256 = "1zml9hpbj7shzsjv6hsyzv3p9yzm6cbvxp2cd79nd1fcsdss0zi3"; 74913 + enableSeparateDataOutput = true; 74503 74914 libraryHaskellDepends = [ array base dimensional ]; 74504 74915 testHaskellDepends = [ 74505 74916 array base dimensional HUnit QuickCheck test-framework ··· 74684 75095 sha256 = "02ds6pm7lv5ijkjh1xikglibnnapk72rz78l5kv5ikzxahhgslbg"; 74685 75096 isLibrary = true; 74686 75097 isExecutable = true; 75098 + enableSeparateDataOutput = true; 74687 75099 libraryHaskellDepends = [ 74688 75100 array base bytestring cgi containers directory exceptions filepath 74689 75101 haskeline httpd-shed json mtl network network-uri old-locale ··· 74714 75126 sha256 = "0k5in0r3lwjr5yn4ayw5ssdvinh7zwzsx6pfjdj246ngx1r7ydxj"; 74715 75127 isLibrary = false; 74716 75128 isExecutable = true; 75129 + enableSeparateDataOutput = true; 74717 75130 executableHaskellDepends = [ base containers parsec ]; 74718 75131 homepage = "http://a319-101.ipm.edu.mo/~wke/ggts/impl/"; 74719 75132 description = "A type checker and runtime system of rCOS/g (impl. of ggts-FCS)."; ··· 74833 75246 sha256 = "1yx22p9572zg2nvmlilbmraqjmws2x47hmin2l9xd0dnck5qhy35"; 74834 75247 isLibrary = false; 74835 75248 isExecutable = true; 75249 + enableSeparateDataOutput = true; 74836 75250 executableHaskellDepends = [ 74837 75251 base blaze-html bytestring containers mtl parsec process 74838 75252 ]; ··· 75062 75476 pname = "ghc-heap-view"; 75063 75477 version = "0.5.9"; 75064 75478 sha256 = "1brjvyqd4bzzc1vhljbf5qv9lyf55myyvnz1zx9nngfwsh7a6cf6"; 75479 + enableSeparateDataOutput = true; 75065 75480 libraryHaskellDepends = [ 75066 75481 base binary bytestring containers ghc template-haskell transformers 75067 75482 ]; ··· 75154 75569 editedCabalFile = "1qyijh62wny3vxs72caqfphj10ld11zcf929gdaqs3ip5ixjb61a"; 75155 75570 isLibrary = true; 75156 75571 isExecutable = true; 75572 + enableSeparateDataOutput = true; 75157 75573 setupHaskellDepends = [ 75158 75574 base Cabal containers filepath process template-haskell 75159 75575 transformers ··· 75195 75611 editedCabalFile = "11rccscsxv4x7xcdxaz83vjisyiadsiq48mn2v1hs8fylqx6dkdf"; 75196 75612 isLibrary = true; 75197 75613 isExecutable = true; 75614 + enableSeparateDataOutput = true; 75198 75615 setupHaskellDepends = [ 75199 75616 base Cabal containers directory filepath process template-haskell 75200 75617 transformers ··· 75689 76106 pname = "ghc-vis"; 75690 76107 version = "0.8"; 75691 76108 sha256 = "03c73ip8k92fjrafaaj3mykql222y2fjiwx13lwvm5jk2p00is78"; 76109 + enableSeparateDataOutput = true; 75692 76110 libraryHaskellDepends = [ 75693 76111 base cairo containers deepseq fgl ghc-heap-view graphviz gtk3 mtl 75694 76112 svgcairo text transformers xdot ··· 75874 76292 pname = "ghcjs-codemirror"; 75875 76293 version = "0.0.0.1"; 75876 76294 sha256 = "04x5h0i4fgyc2c5ihrnk0w3l1f3avvcl115zlnich93nillgbnfw"; 76295 + enableSeparateDataOutput = true; 75877 76296 libraryHaskellDepends = [ base ]; 75878 76297 homepage = "https://github.com/ghcjs/CodeMirror"; 75879 76298 description = "Installs CodeMirror JavaScript files"; ··· 75905 76324 sha256 = "16f69w53a3vcfnb805nyn257465gvyv2981gsggvpkzvyqklsp74"; 75906 76325 isLibrary = true; 75907 76326 isExecutable = true; 76327 + enableSeparateDataOutput = true; 75908 76328 libraryHaskellDepends = [ 75909 76329 base ghcjs-dom jsaddle jsaddle-warp mtl 75910 76330 ]; ··· 76870 77290 sha256 = "0g1jq12dw868x0s6l28kk0m9713zhwwfbw0n2n2dvbidrlvnpwi8"; 76871 77291 isLibrary = true; 76872 77292 isExecutable = true; 77293 + enableSeparateDataOutput = true; 76873 77294 libraryHaskellDepends = [ 76874 77295 aeson base bytestring data-default filepath http-types mtl parsec 76875 77296 safe scientific text time transformers unordered-containers ··· 76902 77323 sha256 = "049ys725scrrkxc2q4wx085hbzdnjpm1jd9wqraqg5fa23vpfy34"; 76903 77324 isLibrary = true; 76904 77325 isExecutable = true; 77326 + enableSeparateDataOutput = true; 76905 77327 libraryHaskellDepends = [ 76906 77328 aeson base bytestring data-default filepath http-types mtl parsec 76907 77329 safe scientific text time transformers unordered-containers ··· 76934 77356 sha256 = "061mwhxgxqqvlqznldjgqvs2z739q452shd6h72lahj5nm3v5m41"; 76935 77357 isLibrary = false; 76936 77358 isExecutable = true; 77359 + enableSeparateDataOutput = true; 76937 77360 executableHaskellDepends = [ 76938 77361 array async base binary bytestring containers directory hashable 76939 77362 hashtables mtl network old-locale old-time parsec pretty process ··· 76953 77376 pname = "gio"; 76954 77377 version = "0.13.3.1"; 76955 77378 sha256 = "09yq753qld2p5h7apg5wyzyh8z47xqkkyx8zvjwk21w044iz8qxc"; 77379 + enableSeparateDataOutput = true; 76956 77380 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 76957 77381 libraryHaskellDepends = [ 76958 77382 array base bytestring containers glib mtl ··· 77043 77467 pname = "git"; 77044 77468 version = "0.2.0"; 77045 77469 sha256 = "1a4frn53qs31s6rqldw91zmc0i0gr33zm10y9ailqasbsgyxqwyp"; 77470 + enableSeparateDataOutput = true; 77046 77471 libraryHaskellDepends = [ 77047 77472 base byteable bytestring containers cryptonite hourglass memory mtl 77048 77473 patience random system-fileio system-filepath unix-compat ··· 77162 77587 sha256 = "1q4fbvpdjca5k530dcm6yspsgzy60dx7nimar2fkm8s086qsf662"; 77163 77588 isLibrary = false; 77164 77589 isExecutable = true; 77590 + enableSeparateDataOutput = true; 77165 77591 executableHaskellDepends = [ 77166 77592 base directory filepath optparse-applicative parsec pretty process 77167 77593 ]; ··· 77416 77842 editedCabalFile = "00pqgbjdzzqf10201yv934llaq2xflad9djix21f05nk7qq62g0r"; 77417 77843 isLibrary = true; 77418 77844 isExecutable = true; 77845 + enableSeparateDataOutput = true; 77419 77846 libraryHaskellDepends = [ 77420 77847 base containers directory filepath formatting optparse-applicative 77421 77848 process split text transformers unix ··· 77769 78196 sha256 = "1x2kh1lsqiib7g4yp7g0yijsghl27k1axjx3zmhl7fwhkxc4w48m"; 77770 78197 isLibrary = true; 77771 78198 isExecutable = true; 78199 + enableSeparateDataOutput = true; 77772 78200 libraryHaskellDepends = [ 77773 78201 aeson base base64-bytestring blaze-html bytestring ConfigFile 77774 78202 containers directory feed filepath filestore ghc ghc-paths ··· 78140 78568 pname = "glade"; 78141 78569 version = "0.13.1"; 78142 78570 sha256 = "0idyx4d2jw1209j4wk7ay5jrs2r6bn3qj4qgh70q6p08a8hcgfbb"; 78571 + enableSeparateDataOutput = true; 78143 78572 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 78144 78573 libraryHaskellDepends = [ base glib gtk ]; 78145 78574 libraryPkgconfigDepends = [ libglade ]; ··· 78458 78887 sha256 = "1xgx02cxvpc8sv99wl44lpzbv9cc87nnihbpalmddb71mwrmj4ji"; 78459 78888 isLibrary = false; 78460 78889 isExecutable = true; 78890 + enableSeparateDataOutput = true; 78461 78891 executableHaskellDepends = [ base ppm split ]; 78462 78892 description = "A simple ray tracer in an early stage of development"; 78463 78893 license = stdenv.lib.licenses.bsd3; ··· 79093 79523 }: 79094 79524 mkDerivation { 79095 79525 pname = "gnss-converters"; 79096 - version = "0.2.10"; 79097 - sha256 = "1x5libj6rwrf39m1ksz5gzqldd7xy07glgk47cvjlszs9l5cq5i2"; 79526 + version = "0.3.3"; 79527 + sha256 = "1rhy280c6dx5s31maia9la6j3y62v4fjwbwhr26n5cg4xl1n3p5g"; 79098 79528 isLibrary = true; 79099 79529 isExecutable = true; 79100 79530 libraryHaskellDepends = [ ··· 79151 79581 sha256 = "1xz8prw9xjk0rsyrkp9bsmxykzrbhpv9qhhkdapy75mdbmgwjm7s"; 79152 79582 isLibrary = true; 79153 79583 isExecutable = true; 79584 + enableSeparateDataOutput = true; 79154 79585 libraryHaskellDepends = [ 79155 79586 array base containers data-accessor data-accessor-transformers 79156 79587 deepseq filepath process temporary time transformers utility-ht ··· 79183 79614 sha256 = "0z1mhi2y4qm1lj6vfsmxf2gs5shfwdac3p9gqj89hx28mpc3rmzk"; 79184 79615 revision = "1"; 79185 79616 editedCabalFile = "0dq1406z7mh4hca15abizrzlc4v80qkc3r9jz9q21qi99hgvvqjs"; 79617 + enableSeparateDataOutput = true; 79186 79618 libraryHaskellDepends = [ base directory filepath process ]; 79187 79619 description = "GHCi bindings to lambdabot"; 79188 79620 license = stdenv.lib.licenses.bsd3; ··· 79294 79726 pname = "goatee"; 79295 79727 version = "0.3.1.2"; 79296 79728 sha256 = "1lz14w17yn92icdiz8i4435m4qli158infxq02ry6pap94kk78d9"; 79729 + enableSeparateDataOutput = true; 79297 79730 libraryHaskellDepends = [ 79298 79731 base containers mtl parsec template-haskell 79299 79732 ]; ··· 79314 79747 sha256 = "0pgpdk1y140pcdsyry185k0bpdhyr87bqrzk24yv65kgvqs442zm"; 79315 79748 isLibrary = true; 79316 79749 isExecutable = true; 79750 + enableSeparateDataOutput = true; 79317 79751 libraryHaskellDepends = [ 79318 79752 base cairo containers directory filepath glib goatee gtk mtl parsec 79319 79753 ]; ··· 82290 82724 sha256 = "0kfg995ng54sf4lndz9grl5vxyxms0xxmcgq1xhcgmhis8bwr1cd"; 82291 82725 isLibrary = false; 82292 82726 isExecutable = true; 82727 + enableSeparateDataOutput = true; 82293 82728 executableHaskellDepends = [ 82294 82729 attoparsec base bytestring directory errors http-types lucid 82295 82730 mime-types network optparse-applicative text wai warp ··· 82911 83346 sha256 = "0rwycs3vnzy9awm081h836136s2wjyk9qyhsx9j6z7y3lgsb2cr0"; 82912 83347 isLibrary = false; 82913 83348 isExecutable = true; 83349 + enableSeparateDataOutput = true; 82914 83350 executableHaskellDepends = [ 82915 83351 base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl 82916 83352 graph-rewriting-layout OpenGL parsec ··· 82950 83386 sha256 = "0sz87nsn7ff0k63j54rdxp5v9xl926d47fkfa0jjnmdjg1xz2pn4"; 82951 83387 isLibrary = false; 82952 83388 isExecutable = true; 83389 + enableSeparateDataOutput = true; 82953 83390 executableHaskellDepends = [ 82954 83391 base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl 82955 83392 graph-rewriting-layout graph-rewriting-strategies IndentParser ··· 82988 83425 sha256 = "1ahwm3dlvy9aaara644m4y0s89xgjcgm2hpkc92z2wmdfydc05g6"; 82989 83426 isLibrary = false; 82990 83427 isExecutable = true; 83428 + enableSeparateDataOutput = true; 82991 83429 executableHaskellDepends = [ 82992 83430 base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl 82993 83431 graph-rewriting-layout OpenGL parsec ··· 83026 83464 sha256 = "0wygasyj35sa05vvcmkk8ipdla3zms85pvq48jq1rl2gnk79f2jy"; 83027 83465 isLibrary = false; 83028 83466 isExecutable = true; 83467 + enableSeparateDataOutput = true; 83029 83468 executableHaskellDepends = [ 83030 83469 base base-unicode-symbols containers directory filepath GLUT 83031 83470 graph-rewriting graph-rewriting-gl graph-rewriting-layout OpenGL ··· 83048 83487 sha256 = "07fjl05w1lidmwh7iz9km3590ggxncq43rmrhzssn49as7basah8"; 83049 83488 isLibrary = false; 83050 83489 isExecutable = true; 83490 + enableSeparateDataOutput = true; 83051 83491 executableHaskellDepends = [ 83052 83492 base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl 83053 83493 graph-rewriting-layout IndentParser OpenGL parsec ··· 83249 83689 pname = "graphql"; 83250 83690 version = "0.3"; 83251 83691 sha256 = "18hb8bwcwx98vrr9nzr8965i4c1y6dh10ilijksbldf10yaiq53z"; 83692 + enableSeparateDataOutput = true; 83252 83693 libraryHaskellDepends = [ attoparsec base text ]; 83253 83694 testHaskellDepends = [ attoparsec base tasty tasty-hunit text ]; 83254 83695 homepage = "https://github.com/jdnavarro/graphql-haskell"; ··· 83523 83964 pname = "greencard-lib"; 83524 83965 version = "3.0.1"; 83525 83966 sha256 = "1a8h36kclb5db7kfy1pb4h2pwy6a6wwnjpm21xzvc9fjx9vj44kd"; 83967 + enableSeparateDataOutput = true; 83526 83968 libraryHaskellDepends = [ array base containers greencard pretty ]; 83527 83969 homepage = "http://www.haskell.org/greencard/"; 83528 83970 description = "A foreign function interface pre-processor library for Haskell"; ··· 84025 84467 sha256 = "02xspk67jy5bhdmbhgk924sqn565aprkvm0sfv1sgmc836qg625f"; 84026 84468 isLibrary = true; 84027 84469 isExecutable = true; 84470 + enableSeparateDataOutput = true; 84028 84471 libraryHaskellDepends = [ base ruff ]; 84029 84472 executableHaskellDepends = [ 84030 84473 base bytestring containers directory filepath FTGL gtk gtkglext mtl ··· 84165 84608 pname = "gstreamer"; 84166 84609 version = "0.12.8"; 84167 84610 sha256 = "1bb9rzgs3dkwwril97073aygrz46gxq039k9vn5d7my8hgcpwhzz"; 84611 + enableSeparateDataOutput = true; 84168 84612 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 84169 84613 libraryHaskellDepends = [ 84170 84614 array base bytestring directory glib mtl ··· 84186 84630 sha256 = "1mkccxgnvgjxkbsdl6bcn61yv0zi20i8h9z11hqcfd3ibfnsw7bh"; 84187 84631 isLibrary = false; 84188 84632 isExecutable = true; 84633 + enableSeparateDataOutput = true; 84189 84634 executableHaskellDepends = [ 84190 84635 base containers extensible-exceptions haskeline HTTP json mtl unix 84191 84636 url utf8-string ··· 84218 84663 pname = "gtk"; 84219 84664 version = "0.14.6"; 84220 84665 sha256 = "09w3f2n2n9n44yf2li3ldlb3cxhbc0rml15j9xqamw5q1h90cybh"; 84666 + enableSeparateDataOutput = true; 84221 84667 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 84222 84668 libraryHaskellDepends = [ 84223 84669 array base bytestring cairo containers gio glib mtl pango text ··· 84280 84726 pname = "gtk-mac-integration"; 84281 84727 version = "0.3.4.0"; 84282 84728 sha256 = "0irf8smnpsym2lkw6gslk31zibn7alp7g32cmq4062mgnlwlawn4"; 84729 + enableSeparateDataOutput = true; 84283 84730 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 84284 84731 libraryHaskellDepends = [ array base containers glib gtk mtl ]; 84285 84732 libraryPkgconfigDepends = [ gtk-mac-integration-gtk2 ]; ··· 84297 84744 pname = "gtk-serialized-event"; 84298 84745 version = "0.12.0"; 84299 84746 sha256 = "0gh8kwd9758ws941xbxhrm3144pmnqln0md5r6vjbq7s1x54bsrf"; 84747 + enableSeparateDataOutput = true; 84300 84748 libraryHaskellDepends = [ 84301 84749 array base containers glib gtk haskell98 mtl 84302 84750 ]; ··· 84366 84814 sha256 = "0jzvxlssqmd2dpnm35qpaq5xv5jk7hhy87594m74xv0ihygvbr65"; 84367 84815 isLibrary = true; 84368 84816 isExecutable = true; 84817 + enableSeparateDataOutput = true; 84369 84818 libraryHaskellDepends = [ 84370 84819 array base Cabal containers directory filepath hashtables pretty 84371 84820 process random ··· 84519 84968 sha256 = "0n223zgfjfv0p70wd7rh881fv8z00c9jmz7wm3vfa1jy3b2x7h7l"; 84520 84969 isLibrary = true; 84521 84970 isExecutable = true; 84971 + enableSeparateDataOutput = true; 84522 84972 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 84523 84973 libraryHaskellDepends = [ 84524 84974 array base bytestring cairo containers gio glib mtl pango text ··· 84540 84990 pname = "gtk3-mac-integration"; 84541 84991 version = "0.3.4.0"; 84542 84992 sha256 = "0cdx0qzmwz3bbg374c9nvwqsxgvc5c2h8i6m0x6d0sm714d8l0ac"; 84993 + enableSeparateDataOutput = true; 84543 84994 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 84544 84995 libraryHaskellDepends = [ array base containers glib gtk3 mtl ]; 84545 84996 libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ]; ··· 84557 85008 pname = "gtkglext"; 84558 85009 version = "0.13.1.1"; 84559 85010 sha256 = "15v40f21xlg5r2zidh77cfiq6ink1dxljbl59mf5sqyq5pjbdw3h"; 85011 + enableSeparateDataOutput = true; 84560 85012 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 84561 85013 libraryHaskellDepends = [ base glib gtk pango ]; 84562 85014 libraryPkgconfigDepends = [ gtkglext ]; ··· 84574 85026 pname = "gtkimageview"; 84575 85027 version = "0.12.0"; 84576 85028 sha256 = "0sdfb7gmgqh4dkc0a39abx84x7j7zs5z1l62nfzz22wsx1h641j3"; 85029 + enableSeparateDataOutput = true; 84577 85030 libraryHaskellDepends = [ 84578 85031 array base containers glib gtk haskell98 mtl 84579 85032 ]; ··· 84595 85048 sha256 = "0z7mwgmjpbmj2949bfrragyjr6s38vv9sz8zpy63ss9h7b5xn4xw"; 84596 85049 isLibrary = false; 84597 85050 isExecutable = true; 85051 + enableSeparateDataOutput = true; 84598 85052 executableHaskellDepends = [ 84599 85053 base gconf glade gtk MissingH process regex-posix unix 84600 85054 ]; ··· 84612 85066 pname = "gtksourceview2"; 84613 85067 version = "0.13.3.1"; 84614 85068 sha256 = "0lzyqlbd0w825ag9iisiicrsb86gx7axxcr4sh4jhnxagz0fpid1"; 85069 + enableSeparateDataOutput = true; 84615 85070 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 84616 85071 libraryHaskellDepends = [ 84617 85072 array base containers glib gtk mtl text ··· 84630 85085 pname = "gtksourceview3"; 84631 85086 version = "0.13.3.1"; 84632 85087 sha256 = "0yrv71r772h8h7x73xb5k868lg7lmh50r0vzxrl2clrxlpyi4zls"; 85088 + enableSeparateDataOutput = true; 84633 85089 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 84634 85090 libraryHaskellDepends = [ 84635 85091 array base containers glib gtk3 mtl text ··· 84687 85143 sha256 = "0g86vgy0fhvmqvg1v1hxn6vrdcbq0n69fa0ysxvw7126ijrm5l29"; 84688 85144 isLibrary = false; 84689 85145 isExecutable = true; 85146 + enableSeparateDataOutput = true; 84690 85147 executableHaskellDepends = [ base cairo containers filepath gtk ]; 84691 85148 homepage = "http://code.mathr.co.uk/gulcii"; 84692 85149 description = "graphical untyped lambda calculus interactive interpreter"; ··· 84938 85395 pname = "hF2"; 84939 85396 version = "0.2"; 84940 85397 sha256 = "1y0731fsay2dp9m4b94w15m054vqsnnafz4k8jjqjvvrmwyfgicz"; 85398 + enableSeparateDataOutput = true; 84941 85399 libraryHaskellDepends = [ base cereal vector ]; 84942 85400 description = "F(2^e) math for cryptography"; 84943 85401 license = stdenv.lib.licenses.bsd3; ··· 85203 85661 pname = "hTalos"; 85204 85662 version = "0.2"; 85205 85663 sha256 = "05l9nlrwpb9gwgj8z48paxx46lkasa82naiq7armi98salk1a9ip"; 85664 + enableSeparateDataOutput = true; 85206 85665 libraryHaskellDepends = [ base bytestring ]; 85207 85666 testHaskellDepends = [ base ]; 85208 85667 homepage = "https://github.com/mgajda/hTalos"; ··· 85231 85690 sha256 = "0r9a461k1rr0j9zgjfq1z37i6blv9rqf8pzb984h1nmlfqpnidnc"; 85232 85691 isLibrary = true; 85233 85692 isExecutable = true; 85693 + enableSeparateDataOutput = true; 85234 85694 executableHaskellDepends = [ array base hmatrix ]; 85235 85695 executableSystemDepends = [ blas liblapack ]; 85236 85696 homepage = "http://dslsrv4.cs.missouri.edu/~qqbm9"; ··· 85351 85811 pname = "hack"; 85352 85812 version = "2012.2.6"; 85353 85813 sha256 = "0wrfa9fa6skl985fi2a6iv4m8kchg87w9x3k37nf3l8vaz95jmdr"; 85814 + enableSeparateDataOutput = true; 85354 85815 libraryHaskellDepends = [ base bytestring data-default ]; 85355 85816 homepage = "http://github.com/nfjinjing/hack/tree/master"; 85356 85817 description = "a Haskell Webserver Interface"; ··· 85366 85827 pname = "hack-contrib"; 85367 85828 version = "2010.9.28"; 85368 85829 sha256 = "1r0g8fcwz6r4vrsadjyb5awjmfbqsskmc1c8xkfwv0knak1qq2p1"; 85830 + enableSeparateDataOutput = true; 85369 85831 libraryHaskellDepends = [ 85370 85832 ansi-wl-pprint base bytestring cgi containers data-default 85371 85833 directory filepath hack haskell98 mps network old-locale old-time ··· 85403 85865 pname = "hack-frontend-happstack"; 85404 85866 version = "2009.6.24.1"; 85405 85867 sha256 = "1x4kaj4nk5lrgsm6pfxr6f8rvjyxhy0agqv9f810xh6s1r9pihw1"; 85868 + enableSeparateDataOutput = true; 85406 85869 libraryHaskellDepends = [ 85407 85870 base bytestring containers hack happstack-server network 85408 85871 utf8-string ··· 85465 85928 pname = "hack-handler-evhttp"; 85466 85929 version = "2009.8.4"; 85467 85930 sha256 = "1a09ls9jgakdx8ya6zd5z3ss2snb4pp0db1573hzmrhr37i2gklz"; 85931 + enableSeparateDataOutput = true; 85468 85932 libraryHaskellDepends = [ 85469 85933 base bytestring bytestring-class containers data-default hack 85470 85934 hack-contrib network ··· 85498 85962 pname = "hack-handler-happstack"; 85499 85963 version = "2009.12.20"; 85500 85964 sha256 = "10b3cp1gap59ialfl33dwhzw50nwrqg49zvv0v813q7rqk3nkhg4"; 85965 + enableSeparateDataOutput = true; 85501 85966 libraryHaskellDepends = [ 85502 85967 base bytestring cgi containers data-default hack happstack-server 85503 85968 mtl network ··· 85516 85981 pname = "hack-handler-hyena"; 85517 85982 version = "2010.3.15"; 85518 85983 sha256 = "1p0zyki1iapz2xncq0l5bbas44pk5kb29kbb3bdxb4anb0m5jb2q"; 85984 + enableSeparateDataOutput = true; 85519 85985 libraryHaskellDepends = [ 85520 85986 base bytestring containers data-default hack hyena network 85521 85987 ]; ··· 85531 85997 pname = "hack-handler-kibro"; 85532 85998 version = "2009.5.27"; 85533 85999 sha256 = "0py30rp7r4hrazrfq3avpqcp1w8405pyfw1yxz7msb58yjppa792"; 86000 + enableSeparateDataOutput = true; 85534 86001 libraryHaskellDepends = [ 85535 86002 base cgi data-default hack kibro network 85536 86003 ]; ··· 85656 86123 pname = "hack2-contrib-extra"; 85657 86124 version = "2014.12.20"; 85658 86125 sha256 = "1mxgvlr593cw523mknr5bcwf55544q04cz0nlpzgm5bg3336b5wl"; 86126 + enableSeparateDataOutput = true; 85659 86127 libraryHaskellDepends = [ 85660 86128 air air-extra base bytestring cgi containers data-default directory 85661 86129 filepath hack2 hack2-contrib network old-locale old-time time ··· 85673 86141 pname = "hack2-handler-happstack-server"; 85674 86142 version = "2011.6.20"; 85675 86143 sha256 = "115nrzf0626pc716n01qjhxs44c1awdd4q1c8kbax025cwac7kpx"; 86144 + enableSeparateDataOutput = true; 85676 86145 libraryHaskellDepends = [ 85677 86146 base bytestring cgi containers data-default enumerator hack2 85678 86147 happstack-server mtl network ··· 85693 86162 pname = "hack2-handler-mongrel2-http"; 85694 86163 version = "2011.10.31"; 85695 86164 sha256 = "1pymar803n696yx3dwqpfwqlkg93ncff162p26mrs7iqn14v851w"; 86165 + enableSeparateDataOutput = true; 85696 86166 libraryHaskellDepends = [ 85697 86167 aeson air attoparsec base blaze-builder blaze-textual bytestring 85698 86168 containers data-default directory enumerator hack2 mtl network safe ··· 85732 86202 pname = "hack2-handler-warp"; 85733 86203 version = "2012.5.25"; 85734 86204 sha256 = "1p0lkhf95xkllfpcb9yibpa1rkam90bccmzj2aa60shd7v9qx9r5"; 86205 + enableSeparateDataOutput = true; 85735 86206 libraryHaskellDepends = [ 85736 86207 air base data-default hack2 hack2-interface-wai warp 85737 86208 ]; ··· 85976 86447 sha256 = "1xsy2clsg53rhxgkb9vlan7dw7xqphm8gr1ajl8kq5ymfahnyd1i"; 85977 86448 isLibrary = false; 85978 86449 isExecutable = true; 86450 + enableSeparateDataOutput = true; 85979 86451 executableHaskellDepends = [ 85980 86452 acid-state aeson array async attoparsec base base16-bytestring 85981 86453 base64-bytestring binary blaze-builder bytestring Cabal cereal ··· 86145 86617 editedCabalFile = "1slyp8ncpiv204yxb2p7z0kwz4xhqv8czfrx4p78cbbhrlkmgnpm"; 86146 86618 isLibrary = false; 86147 86619 isExecutable = true; 86620 + enableSeparateDataOutput = true; 86148 86621 executableHaskellDepends = [ base ]; 86149 86622 homepage = "https://github.com/fgaz/hackertyper"; 86150 86623 description = "\"Hack\" like a programmer in movies and games!"; ··· 86283 86756 pname = "haddock-api"; 86284 86757 version = "2.15.0.2"; 86285 86758 sha256 = "1gdmwid3qg86ql0828bp8g121psvmz11s0xivrzhiv8knxbqj8l7"; 86759 + enableSeparateDataOutput = true; 86286 86760 libraryHaskellDepends = [ 86287 86761 array base bytestring Cabal containers deepseq directory filepath 86288 86762 ghc ghc-paths haddock-library xhtml ··· 86302 86776 pname = "haddock-api"; 86303 86777 version = "2.16.1"; 86304 86778 sha256 = "1spd5axg1pdjv4dkdb5gcwjsc8gg37qi4mr2k2db6ayywdkis1p2"; 86779 + enableSeparateDataOutput = true; 86305 86780 libraryHaskellDepends = [ 86306 86781 array base bytestring Cabal containers deepseq directory filepath 86307 86782 ghc ghc-paths haddock-library xhtml ··· 86321 86796 pname = "haddock-api"; 86322 86797 version = "2.18.1"; 86323 86798 sha256 = "1q0nf86h6b466yd3bhng8sklm0kqc8bak4k6d4dcc57j3wf2gak8"; 86799 + enableSeparateDataOutput = true; 86324 86800 libraryHaskellDepends = [ 86325 86801 array base bytestring Cabal containers deepseq directory filepath 86326 86802 ghc ghc-boot ghc-paths haddock-library transformers xhtml ··· 86341 86817 sha256 = "1a56nihkxybldk55g69v2aw6r4ipa9x86i0jr19fd23zxvancs8h"; 86342 86818 isLibrary = true; 86343 86819 isExecutable = true; 86820 + enableSeparateDataOutput = true; 86344 86821 executableHaskellDepends = [ 86345 86822 array base Cabal containers directory filepath ghc ghc-paths pretty 86346 86823 ]; ··· 86625 87102 sha256 = "1nh76kk3bfnx802kc6afj6iw1xkj5s4sz07zwmhq32fvqbkmw889"; 86626 87103 isLibrary = false; 86627 87104 isExecutable = true; 87105 + enableSeparateDataOutput = true; 86628 87106 executableHaskellDepends = [ 86629 87107 base bytestring directory filepath http-client lens lens-aeson 86630 87108 netrc network-uri optparse-applicative parsec process text wreq ··· 86884 87362 sha256 = "1zy2328lj7k6j0h7nrcd998sk1hbcl67yzaiysaxyif5c60l05ab"; 86885 87363 isLibrary = true; 86886 87364 isExecutable = true; 87365 + enableSeparateDataOutput = true; 86887 87366 libraryHaskellDepends = [ 86888 87367 base binary blaze-html blaze-markup bytestring containers 86889 87368 cryptohash data-default deepseq directory filepath fsnotify ··· 86927 87406 sha256 = "0jjy1j79vzkdpi2ksql5bzwv2bw3bk6h0jgi73ngj8lkrm6q80b3"; 86928 87407 isLibrary = true; 86929 87408 isExecutable = true; 87409 + enableSeparateDataOutput = true; 86930 87410 libraryHaskellDepends = [ 86931 87411 base binary blaze-html blaze-markup bytestring containers 86932 87412 cryptohash data-default deepseq directory filepath fsnotify ··· 87007 87487 sha256 = "0w23laiw6a5hxfq5hjq8vn3k7fx5l4yb9p8qcbm62zlycza1ci14"; 87008 87488 isLibrary = true; 87009 87489 isExecutable = true; 87490 + enableSeparateDataOutput = true; 87010 87491 libraryHaskellDepends = [ base hakyll pandoc ]; 87011 87492 executableHaskellDepends = [ base directory filepath hakyll ]; 87012 87493 homepage = "http://jaspervdj.be/hakyll"; ··· 87630 88111 sha256 = "0x0ix66wcpv172rxk9daifirnrcbblkjlvlg762z4i7qhipjfi2n"; 87631 88112 isLibrary = true; 87632 88113 isExecutable = true; 88114 + enableSeparateDataOutput = true; 87633 88115 libraryHaskellDepends = [ 87634 88116 aeson base bytestring containers scientific 87635 88117 ]; ··· 87723 88205 sha256 = "0k86z27qiaz967hsdnb3sac5ybmnyzd4d2gxzvdngw8rcvcq3biy"; 87724 88206 isLibrary = false; 87725 88207 isExecutable = true; 88208 + enableSeparateDataOutput = true; 87726 88209 executableHaskellDepends = [ base mtl random utility-ht ]; 87727 88210 description = "Hangman implementation in Haskell written in two hours"; 87728 88211 license = stdenv.lib.licenses.mit; ··· 87739 88222 sha256 = "072f9zsfrs8g6nw83g6qzczzybngrhyrm1m2y7ha37vf0y9gdpn0"; 87740 88223 isLibrary = false; 87741 88224 isExecutable = true; 88225 + enableSeparateDataOutput = true; 87742 88226 executableHaskellDepends = [ 87743 88227 aeson base bytestring directory formatting http-types lens 87744 88228 lens-aeson process scotty text transformers unix-time wai-extra ··· 87853 88337 sha256 = "0yb0www1nab0nybg0nxs64cni9j2n8sw1l5c8byfnivagqz428w7"; 87854 88338 isLibrary = true; 87855 88339 isExecutable = true; 88340 + enableSeparateDataOutput = true; 87856 88341 libraryHaskellDepends = [ 87857 88342 base filepath mtl path process time transformers 87858 88343 ]; ··· 87876 88361 pname = "happindicator"; 87877 88362 version = "0.0.4"; 87878 88363 sha256 = "1d0ycpxmlz2ab8dzys7i6ihc3rbs43d0l5l2mxvshqbpj3j73643"; 88364 + enableSeparateDataOutput = true; 87879 88365 libraryHaskellDepends = [ 87880 88366 array base bytestring containers glib gtk mtl 87881 88367 ]; ··· 88024 88510 pname = "happstack-authenticate"; 88025 88511 version = "2.3.4.7"; 88026 88512 sha256 = "01xn6j7pqc0czdflxwkmnj8hm6z0wwjqpjmal4qbcbzy16m86bbc"; 88513 + enableSeparateDataOutput = true; 88027 88514 libraryHaskellDepends = [ 88028 88515 acid-state aeson authenticate base base64-bytestring boomerang 88029 88516 bytestring containers data-default email-validate filepath ··· 88053 88540 pname = "happstack-authenticate"; 88054 88541 version = "2.3.4.8"; 88055 88542 sha256 = "006prds4bgqmj54j0syyf1y1yyqwfcj2a6mdxpcjj6qj3g3976l1"; 88543 + enableSeparateDataOutput = true; 88056 88544 libraryHaskellDepends = [ 88057 88545 acid-state aeson authenticate base base64-bytestring boomerang 88058 88546 bytestring containers data-default email-validate filepath ··· 88217 88705 pname = "happstack-fay-ajax"; 88218 88706 version = "0.2.0"; 88219 88707 sha256 = "0zdkvvmywnfvqg5jdvf29qczzxmprvspxj0r1vj46fd6vld53j4j"; 88708 + enableSeparateDataOutput = true; 88220 88709 libraryHaskellDepends = [ fay-base fay-jquery ]; 88221 88710 homepage = "http://www.happstack.com/"; 88222 88711 description = "Support for using Fay with Happstack"; ··· 88234 88723 pname = "happstack-foundation"; 88235 88724 version = "0.5.9"; 88236 88725 sha256 = "0xn176m65wjvbfqcjhwvvm7imq01iiixap4jay1wn6qzk0qn5w5n"; 88726 + enableSeparateDataOutput = true; 88237 88727 libraryHaskellDepends = [ 88238 88728 acid-state base happstack-hsp happstack-server hsp lifted-base 88239 88729 monad-control mtl reform reform-happstack reform-hsp safecopy text ··· 88645 89135 pname = "happstack-yui"; 88646 89136 version = "7373.5.3"; 88647 89137 sha256 = "178r3jqxmrdp0glp9p4baw8x7zk0w8j4m5l173rjnz9yxn53nyni"; 89138 + enableSeparateDataOutput = true; 88648 89139 libraryHaskellDepends = [ 88649 89140 base boomerang bytestring containers directory happstack-jmacro 88650 89141 happstack-server hsp interpolatedstring-perl6 jmacro mtl pretty ··· 88867 89358 sha256 = "1pf5vpyxrqsvrg1w5spzvwjkr7gdy2mp0sdxphcrwwj9n56klgj5"; 88868 89359 isLibrary = true; 88869 89360 isExecutable = true; 89361 + enableSeparateDataOutput = true; 88870 89362 libraryHaskellDepends = [ 88871 89363 array base BNFC containers derive directory hastache hslogger mtl 88872 89364 process QuickCheck text ··· 89556 90048 sha256 = "1hw4ylwwsmp59ifw8s4w1394gv7p2xc6nvqajfmil0p8r8s6r1pf"; 89557 90049 isLibrary = false; 89558 90050 isExecutable = true; 90051 + enableSeparateDataOutput = true; 89559 90052 executableHaskellDepends = [ 89560 90053 base freenect hcwiid IfElse MissingH mtl SDL SDL-image SDL-mixer 89561 90054 SDL-ttf transformers vector Yampa ··· 90324 90817 pname = "haskell-names"; 90325 90818 version = "0.8.0"; 90326 90819 sha256 = "127fjggbgxhpxdh5sdj4pdfgx9xadaw93n0ii07grz0jgbvj0fwn"; 90820 + enableSeparateDataOutput = true; 90327 90821 libraryHaskellDepends = [ 90328 90822 aeson base bytestring containers data-lens-light filepath 90329 90823 haskell-src-exts mtl transformers traverse-with-class uniplate ··· 91900 92394 pname = "haskelzinc"; 91901 92395 version = "0.3.0.9"; 91902 92396 sha256 = "1vg5jxzn69y2pbpsw2qc6ida0p0v4dhgp68psn4rmpxxbjl7n10s"; 92397 + enableSeparateDataOutput = true; 91903 92398 libraryHaskellDepends = [ 91904 92399 base containers filepath parsec3 pretty process 91905 92400 ]; ··· 91947 92442 pname = "haskhol-core"; 91948 92443 version = "1.1.0"; 91949 92444 sha256 = "0vlzybbplqggvgnj61yl0g2rak2qbsp7hly9srgr6wd6qm9l1nxx"; 92445 + enableSeparateDataOutput = true; 91950 92446 libraryHaskellDepends = [ 91951 92447 acid-state base containers deepseq filepath ghc-prim hashable mtl 91952 92448 parsec pretty safecopy shelly template-haskell text text-show ··· 92939 93435 configureFlags = [ "-fportable" ]; 92940 93436 isLibrary = true; 92941 93437 isExecutable = true; 93438 + enableSeparateDataOutput = true; 92942 93439 libraryHaskellDepends = [ 92943 93440 base binary bytestring containers data-binary-ieee754 directory 92944 93441 filepath ghc ghc-paths ghc-prim monads-tf network network-uri ··· 93058 93555 editedCabalFile = "1wspd2shxpp3x4p4ghgf82vqchlkxk6qhvsgn07ypzm2kfz3a9dh"; 93059 93556 isLibrary = true; 93060 93557 isExecutable = true; 93558 + enableSeparateDataOutput = true; 93061 93559 libraryHaskellDepends = [ 93062 93560 base directory old-locale old-time process random 93063 93561 ]; ··· 93217 93715 sha256 = "10qg24qkh17l9zqn47g64cg6hp48x7bjbcwigj35zpqcq71s9dxc"; 93218 93716 isLibrary = false; 93219 93717 isExecutable = true; 93718 + enableSeparateDataOutput = true; 93220 93719 executableHaskellDepends = [ 93221 93720 base base64-string bytestring clock containers gconf glade gtk 93222 93721 hoauth HTTP json mtl network old-locale parsec regex-base ··· 93484 93983 sha256 = "01wx4dls0ccl0q09hvydjhj0lfpqfd32z76rjgc89p5889czkm5j"; 93485 93984 isLibrary = false; 93486 93985 isExecutable = true; 93986 + enableSeparateDataOutput = true; 93487 93987 executableHaskellDepends = [ 93488 93988 base cairo filepath glade gtk haskell98 process svgcairo time unix 93489 93989 ]; ··· 93505 94005 sha256 = "1x8nwh3ba9qvrbcxd2fdb3lv9b94w6lkvdg4vrqm7vbns9yyk162"; 93506 94006 revision = "2"; 93507 94007 editedCabalFile = "19nclaq6y157gn8k4sl79rm30ws5gcykiq4zjmcnm7d5c1rm4dhn"; 94008 + enableSeparateDataOutput = true; 93508 94009 libraryHaskellDepends = [ 93509 94010 array base binary boxes containers directory filepath gamma HUnit 93510 94011 mtl mwc-random parsec pretty QuickCheck random split statistics ··· 93643 94144 sha256 = "0vx3097g9q0bxyv1bwa4mc6aw152zkj3mawk5nrn5mh0zr60c3zh"; 93644 94145 isLibrary = true; 93645 94146 isExecutable = true; 94147 + enableSeparateDataOutput = true; 93646 94148 libraryHaskellDepends = [ 93647 94149 base bytestring chunked-data cond containers data-default-class 93648 94150 directory dyre errors fast-logger filepath glib gtk3 lifted-async ··· 93672 94174 sha256 = "024mclr0hrvxdbsw9d051v9dfls2n3amyxlqfzakf11vrkgqqfam"; 93673 94175 isLibrary = true; 93674 94176 isExecutable = true; 94177 + enableSeparateDataOutput = true; 93675 94178 libraryHaskellDepends = [ 93676 94179 aeson aeson-pretty base bytestring chunked-data containers 93677 94180 directory filepath glib gtk3 hbro microlens monad-control ··· 93732 94235 pname = "hcg-minus"; 93733 94236 version = "0.15"; 93734 94237 sha256 = "04g0f4sr7904w3ynyl0gnbyi2sl0z7ziv5q15mfb6c7h0zl25d5r"; 94238 + enableSeparateDataOutput = true; 93735 94239 libraryHaskellDepends = [ base colour ]; 93736 94240 homepage = "http://rd.slavepianos.org/t/hcg-minus"; 93737 94241 description = "haskell cg (minus)"; ··· 93746 94250 pname = "hcg-minus-cairo"; 93747 94251 version = "0.15"; 93748 94252 sha256 = "002gh8adqzhcjfnqkbcnpzz8qiqbj9zkbk6jj11dnnxjigc4l2q9"; 94253 + enableSeparateDataOutput = true; 93749 94254 libraryHaskellDepends = [ 93750 94255 base cairo colour filepath hcg-minus utf8-string 93751 94256 ]; ··· 93760 94265 pname = "hcheat"; 93761 94266 version = "2010.1.16"; 93762 94267 sha256 = "1fwgnp15kha9qb7iagd8n5ahjjhg194wbva5i436mb57fn86pya2"; 94268 + enableSeparateDataOutput = true; 93763 94269 libraryHaskellDepends = [ base mps ]; 93764 94270 homepage = "http://github.com/nfjinjing/hcheat/"; 93765 94271 description = "A collection of code cheatsheet"; ··· 93889 94395 sha256 = "1h1g05a8wnk2q65mm4mwywxhygr7fs0150q8ml33ik59mcc5v7fr"; 93890 94396 isLibrary = true; 93891 94397 isExecutable = true; 94398 + enableSeparateDataOutput = true; 93892 94399 libraryHaskellDepends = [ 93893 94400 base directory HaskellForMaths QuickCheck text 93894 94401 ]; ··· 94156 94663 pname = "hdf"; 94157 94664 version = "0.15"; 94158 94665 sha256 = "11nf9wlymdhydf0bhh9gdl0cdn0i4mbvx3hfdcmnxfvag5jmfbkk"; 94666 + enableSeparateDataOutput = true; 94159 94667 libraryHaskellDepends = [ 94160 94668 base directory fgl fgl-visualize filepath hosc hsc3 murmur-hash 94161 94669 process split transformers ··· 94368 94876 sha256 = "1hc1pmbj9452k4a71iiazxg6id7caf783m08lqnf3flf77cdjxpa"; 94369 94877 isLibrary = false; 94370 94878 isExecutable = true; 94879 + enableSeparateDataOutput = true; 94371 94880 executableHaskellDepends = [ 94372 94881 aeson aeson-pretty base bytestring directory filepath haskeline 94373 94882 time ··· 94466 94975 pname = "hecc"; 94467 94976 version = "0.4.1.1"; 94468 94977 sha256 = "1p7h9mlap8i0w2inhq944r0dgr27rzwk44igylil7gv0dgf4hsyx"; 94978 + enableSeparateDataOutput = true; 94469 94979 libraryHaskellDepends = [ base cereal crypto-api hF2 ]; 94470 94980 description = "Elliptic Curve Cryptography for Haskell"; 94471 94981 license = stdenv.lib.licenses.bsd3; ··· 94790 95300 editedCabalFile = "11a3k59ig549dm3pg5wh2brrdiss1ln0yw3j0j4mgcvqi7kzzmd3"; 94791 95301 isLibrary = false; 94792 95302 isExecutable = true; 95303 + enableSeparateDataOutput = true; 94793 95304 executableHaskellDepends = [ 94794 95305 array base containers mtl pretty QuickCheck 94795 95306 ]; ··· 94868 95379 sha256 = "0vwk8h5fwl63pjcydwndqgpikfjdm37w7gjmmgac95gl66fc5h5j"; 94869 95380 isLibrary = true; 94870 95381 isExecutable = true; 95382 + enableSeparateDataOutput = true; 94871 95383 libraryHaskellDepends = [ 94872 95384 base containers directory filepath lvmlib mtl network parsec 94873 95385 process Top transformers wl-pprint ··· 95527 96039 sha256 = "0sj0grykzb7xq7iz0nj27c4fzhcr9f0yshfcq81xq2wdmg09j8yx"; 95528 96040 isLibrary = false; 95529 96041 isExecutable = true; 96042 + enableSeparateDataOutput = true; 95530 96043 executableHaskellDepends = [ array base hscurses old-time random ]; 95531 96044 executableSystemDepends = [ ncurses ]; 95532 96045 homepage = "http://web.comlab.ox.ac.uk/oucl/work/ian.lynagh/Hetris/"; ··· 95559 96072 sha256 = "1ys7xqdrnvwn6z2vgmh49zhfxj73pdmscblqcjk6qrwmpb2xha2s"; 95560 96073 isLibrary = false; 95561 96074 isExecutable = true; 96075 + enableSeparateDataOutput = true; 95562 96076 executableHaskellDepends = [ 95563 96077 base bytestring cairo filepath haskell98 95564 96078 ]; ··· 95577 96091 sha256 = "0jsynxd33r7d5s5vn204z4wdgm4cq6qyjs7afa77p94ni5m2p3kb"; 95578 96092 isLibrary = false; 95579 96093 isExecutable = true; 96094 + enableSeparateDataOutput = true; 95580 96095 executableHaskellDepends = [ 95581 96096 base bytestring cairo dph-seq filepath haskell98 95582 96097 ]; ··· 95602 96117 pname = "hexdump"; 95603 96118 version = "0.1"; 95604 96119 sha256 = "012hknn9qhwr3hn3dbyd9s7vvaz4i3bvimmxkb1jyfckw3wjcnhc"; 96120 + enableSeparateDataOutput = true; 95605 96121 libraryHaskellDepends = [ base ]; 95606 96122 description = "A library for forming hexdumps"; 95607 96123 license = stdenv.lib.licenses.publicDomain; ··· 95776 96292 pname = "hexstring"; 95777 96293 version = "0.11.1"; 95778 96294 sha256 = "0509h2fhrpcsjf7gffychf700xca4a5l937jfgdzywpm4bzdpn20"; 96295 + enableSeparateDataOutput = true; 95779 96296 libraryHaskellDepends = [ 95780 96297 aeson base base16-bytestring binary bytestring text 95781 96298 ]; ··· 95879 96396 sha256 = "1jsq33cdpdd52yriky989vd8wlafi9dq1bxzild7sjw1mql69d71"; 95880 96397 isLibrary = true; 95881 96398 isExecutable = true; 96399 + enableSeparateDataOutput = true; 95882 96400 libraryHaskellDepends = [ base eprocess mtl ]; 95883 96401 executableHaskellDepends = [ wx wxcore ]; 95884 96402 homepage = "http://github.com/elbrujohalcon/hfiar"; ··· 96199 96717 pname = "hgeos"; 96200 96718 version = "0.1.8.0"; 96201 96719 sha256 = "14fqqabxnfky6x17508xr92dvd3jk6b53zqmy8h7f1dd4r7pm4z7"; 96720 + enableSeparateDataOutput = true; 96202 96721 libraryHaskellDepends = [ base ]; 96203 96722 librarySystemDepends = [ geos_c ]; 96204 96723 testHaskellDepends = [ base MissingH ]; ··· 96318 96837 sha256 = "0amdfdp1xmh506lgfbb4war2spfb4gqls864q18psmvshcwlpsmv"; 96319 96838 isLibrary = false; 96320 96839 isExecutable = true; 96840 + enableSeparateDataOutput = true; 96321 96841 executableHaskellDepends = [ 96322 96842 base containers directory filepath mtl parsec wl-pprint 96323 96843 ]; ··· 96453 96973 sha256 = "1skzr5ipxz61zrndwifkngw70zdf2yh5f8qpbmfzaq0bscrzdxg5"; 96454 96974 isLibrary = false; 96455 96975 isExecutable = true; 96976 + enableSeparateDataOutput = true; 96456 96977 executableHaskellDepends = [ 96457 96978 base bytestring containers haskell98 HUnit mtl parsec random 96458 96979 readline time ··· 96644 97165 sha256 = "0zhraby44j5zjrvjmqj22sa15qsl5jxhfs07gkggc8zfahvg822d"; 96645 97166 isLibrary = true; 96646 97167 isExecutable = true; 97168 + enableSeparateDataOutput = true; 96647 97169 libraryHaskellDepends = [ 96648 97170 base directory filepath mustache parsec process text unix 96649 97171 ]; ··· 96663 97185 sha256 = "1bwvhrzvrf004lypf0zrx6q6k6fn5qwvlk45vppmnv65v9vq519p"; 96664 97186 isLibrary = false; 96665 97187 isExecutable = true; 97188 + enableSeparateDataOutput = true; 96666 97189 executableHaskellDepends = [ base ghc ]; 96667 97190 homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; 96668 97191 description = "Memory usage statistics"; ··· 96979 97502 sha256 = "1wjcgkgqcvr1q0b7dckhg12ai6zgmvvnv2b3zgfkyqy1h9qhj7wk"; 96980 97503 isLibrary = true; 96981 97504 isExecutable = true; 97505 + enableSeparateDataOutput = true; 96982 97506 libraryHaskellDepends = [ 96983 97507 base bytestring containers exceptions haskell-src-exts monad-loops 96984 97508 mtl text transformers utf8-string yaml ··· 97069 97593 pname = "hinduce-examples"; 97070 97594 version = "0.0.0.2"; 97071 97595 sha256 = "17jnrc8iji5byqbd08llwk0mw9yi1dq3biaszqp9jyinf50hcb4w"; 97596 + enableSeparateDataOutput = true; 97072 97597 libraryHaskellDepends = [ 97073 97598 base containers convertible csv hinduce-associations-apriori 97074 97599 hinduce-classifier hinduce-classifier-decisiontree hinduce-missingh ··· 97207 97732 pname = "hint-server"; 97208 97733 version = "1.4.3"; 97209 97734 sha256 = "1pgz8m5aad8wx9ahnaxawry25rksfn2rnmm6l55ha5pj7zb7zjzy"; 97735 + enableSeparateDataOutput = true; 97210 97736 libraryHaskellDepends = [ 97211 97737 base eprocess exceptions hint monad-loops mtl 97212 97738 ]; ··· 97250 97776 sha256 = "01v5szci7kbp3w2jsdcnzv9j3lbcl5bvn9ipcvp3v2xvfjik110h"; 97251 97777 isLibrary = false; 97252 97778 isExecutable = true; 97779 + enableSeparateDataOutput = true; 97253 97780 executableHaskellDepends = [ base haskell98 random ]; 97254 97781 homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; 97255 97782 description = "Space Invaders"; ··· 97612 98139 sha256 = "0wg44vgd5jzi0r0vg8k5zrvlr7rcrb4nrp862c6y991941qv71nv"; 97613 98140 isLibrary = true; 97614 98141 isExecutable = true; 98142 + enableSeparateDataOutput = true; 97615 98143 libraryHaskellDepends = [ 97616 98144 attoparsec base byteable bytestring containers cryptohash hourglass 97617 98145 mtl parsec patience random system-fileio system-filepath ··· 97681 98209 sha256 = "0gk4misxbkc2x8hh7ynrj1ma91fs0h6q702w6r0kjq136fh48zhi"; 97682 98210 isLibrary = true; 97683 98211 isExecutable = true; 98212 + enableSeparateDataOutput = true; 97684 98213 libraryHaskellDepends = [ 97685 98214 array base bytestring containers directory mtl parsec regex-compat 97686 98215 ]; ··· 97900 98429 sha256 = "14yqc02kfp2c9i22inma29cprqz9k8yx6c7m90kwimv4psv8766a"; 97901 98430 isLibrary = true; 97902 98431 isExecutable = true; 98432 + enableSeparateDataOutput = true; 97903 98433 libraryHaskellDepends = [ 97904 98434 array base bytestring haskell98 parallel 97905 98435 ]; ··· 97952 98482 sha256 = "0b9gaj68ykx1ak2v4kjif67kkwv1s8rf9nvcijs4garz98781sdd"; 97953 98483 isLibrary = true; 97954 98484 isExecutable = true; 98485 + enableSeparateDataOutput = true; 97955 98486 libraryHaskellDepends = [ 97956 98487 ansi-terminal base base-compat bytestring cmdargs containers csv 97957 98488 data-default directory file-embed filepath hashable haskeline here ··· 97998 98529 sha256 = "0kl0sc11181bgpz65b5xg9l1hxdaai27icx13x15kwlc01jf9rcc"; 97999 98530 isLibrary = false; 98000 98531 isExecutable = true; 98532 + enableSeparateDataOutput = true; 98001 98533 executableHaskellDepends = [ 98002 98534 aeson base bytestring containers Decimal docopt either hledger 98003 98535 hledger-lib microlens microlens-platform safe servant-server ··· 98087 98619 sha256 = "19hdz6lj0kxy59vzkyqlwk20l8k08w618nz02xcfflwd9r7ka0ha"; 98088 98620 isLibrary = false; 98089 98621 isExecutable = true; 98622 + enableSeparateDataOutput = true; 98090 98623 executableHaskellDepends = [ 98091 98624 base Cabal Decimal hledger-lib mtl text time 98092 98625 ]; ··· 98127 98660 pname = "hledger-lib"; 98128 98661 version = "1.3"; 98129 98662 sha256 = "052ynivzbyabp2yn7y2wfy9dvjly989rpbcla9kx8kvmqij5qdhm"; 98663 + enableSeparateDataOutput = true; 98130 98664 libraryHaskellDepends = [ 98131 98665 ansi-terminal array base base-compat blaze-markup bytestring 98132 98666 cmdargs containers csv data-default Decimal deepseq directory ··· 98161 98695 editedCabalFile = "0dc5nqc9g4s0h1si6pcymbhfw32hlxafzavpp8y1jg7c9brc7ln0"; 98162 98696 isLibrary = false; 98163 98697 isExecutable = true; 98698 + enableSeparateDataOutput = true; 98164 98699 executableHaskellDepends = [ 98165 98700 ansi-terminal async base base-compat brick cmdargs containers 98166 98701 data-default directory filepath fsnotify hledger hledger-lib HUnit ··· 98207 98742 sha256 = "01y8djakr4r0jm5wyi6fbp911y3i82r1xmfi4gm9sgf27fi6a3i4"; 98208 98743 isLibrary = true; 98209 98744 isExecutable = true; 98745 + enableSeparateDataOutput = true; 98210 98746 libraryHaskellDepends = [ 98211 98747 base base-compat blaze-html blaze-markup bytestring clientsession 98212 98748 cmdargs conduit-extra data-default directory filepath hjsmin ··· 98322 98858 sha256 = "1d1z14gfls87jgq0bm67aq81xmczhlbzjym60qplpx1ajpvrk4id"; 98323 98859 isLibrary = true; 98324 98860 isExecutable = true; 98861 + enableSeparateDataOutput = true; 98325 98862 libraryHaskellDepends = [ 98326 98863 ansi-terminal base cmdargs containers cpphs directory extra 98327 98864 filepath haskell-src-exts hscolour process refact transformers ··· 98345 98882 sha256 = "1bd5nizx1dbzhrfcr9mgpjvg4b6f6z73jvslkbialp7g9pkr6a95"; 98346 98883 isLibrary = true; 98347 98884 isExecutable = true; 98885 + enableSeparateDataOutput = true; 98348 98886 libraryHaskellDepends = [ 98349 98887 ansi-terminal base bytestring cmdargs containers cpphs directory 98350 98888 extra filepath haskell-src-exts hscolour process refact text ··· 98394 98932 pname = "hls"; 98395 98933 version = "0.15"; 98396 98934 sha256 = "0h32fyvnqkxx8c9vfpdjvnqaxkvr8b15myjavxmnm6kwh7v2796l"; 98935 + enableSeparateDataOutput = true; 98397 98936 libraryHaskellDepends = [ base containers hcg-minus hps ]; 98398 98937 homepage = "http://rd.slavepianos.org/t/hls"; 98399 98938 description = "Haskell Lindenmayer Systems"; ··· 98424 98963 pname = "hly"; 98425 98964 version = "0.15"; 98426 98965 sha256 = "192szfq39g3fdcdsxj4bsi13bfha8gjbqbixav3iywmdsgxp1hj8"; 98966 + enableSeparateDataOutput = true; 98427 98967 libraryHaskellDepends = [ base directory filepath hmt process ]; 98428 98968 homepage = "http://rd.slavepianos.org/t/hly"; 98429 98969 description = "Haskell LilyPond"; ··· 98736 99276 sha256 = "1dnmvzy7vkx2rfbkkqapfpql8h0gm9sq0333r90hy5nsyl9hhbq8"; 98737 99277 isLibrary = false; 98738 99278 isExecutable = true; 99279 + enableSeparateDataOutput = true; 98739 99280 executableHaskellDepends = [ 98740 99281 array base bytestring bytestring-lexing delimited-text gnuplot 98741 99282 hmatrix hmeap hosc hsc3 parsec ··· 98872 99413 pname = "hmpfr"; 98873 99414 version = "0.4.2.1"; 98874 99415 sha256 = "048amh4w9vjrihahhb3rw0gbk3yp7qvjf6vcp9c5pq2kc3n7vcnc"; 99416 + enableSeparateDataOutput = true; 98875 99417 libraryHaskellDepends = [ base integer-gmp ]; 98876 99418 librarySystemDepends = [ mpfr ]; 98877 99419 homepage = "https://github.com/michalkonecny/hmpfr"; ··· 98889 99431 pname = "hmt"; 98890 99432 version = "0.15"; 98891 99433 sha256 = "051kgsh9nl5f1nw8a24x7ds18g6ppzbhk3d9lf74nvvnccnzg3a9"; 99434 + enableSeparateDataOutput = true; 98892 99435 libraryHaskellDepends = [ 98893 99436 array base bytestring colour containers data-ordlist directory 98894 99437 filepath lazy-csv logict multiset-comb parsec permutation primes ··· 98907 99450 pname = "hmt-diagrams"; 98908 99451 version = "0.15"; 98909 99452 sha256 = "1g64b31bz31x0kiivazn20s22y2w7dz9f2gw5cnfkcnjd20k7glm"; 99453 + enableSeparateDataOutput = true; 98910 99454 libraryHaskellDepends = [ 98911 99455 base cairo colour filepath hcg-minus hcg-minus-cairo hmt 98912 99456 html-minimalist process xml ··· 98947 99491 sha256 = "15fpn895r2sa6n8pahv2frcp6qkxbpmam7hd03y4i65jhkf9vskh"; 98948 99492 isLibrary = true; 98949 99493 isExecutable = true; 99494 + enableSeparateDataOutput = true; 98950 99495 libraryHaskellDepends = [ 98951 99496 base containers either errors filepath repa transformers vector 98952 99497 ]; ··· 99158 99703 sha256 = "1m2sxbw5il818g50b0650cm5vrb7njclk09m0na6i3amx3q10xjc"; 99159 99704 isLibrary = true; 99160 99705 isExecutable = true; 99706 + enableSeparateDataOutput = true; 99161 99707 libraryHaskellDepends = [ 99162 99708 base containers filepath glib gtk-largeTreeStore gtk3 99163 99709 gtksourceview3 mtl pango system-filepath text transformers vector ··· 99352 99898 sha256 = "10zq4qch5bs0aawvs0zg3yyz41lykg1jrna5jqxlrvbq0wfz2s5g"; 99353 99899 isLibrary = false; 99354 99900 isExecutable = true; 99901 + enableSeparateDataOutput = true; 99355 99902 executableHaskellDepends = [ base hogre ]; 99356 99903 executableSystemDepends = [ OgreMain ]; 99357 99904 homepage = "http://github.com/anttisalonen/hogre-examples"; ··· 99448 99995 sha256 = "05181blw3y9j2715rdm49y6mfcpgyihb6yjswhp231kr6x40zxmh"; 99449 99996 isLibrary = true; 99450 99997 isExecutable = true; 99998 + enableSeparateDataOutput = true; 99451 99999 libraryHaskellDepends = [ 99452 100000 aeson ansi-terminal base bytestring directory filepath hastache 99453 100001 http-conduit lens lens-aeson process random split syb text time ··· 99662 100210 sha256 = "1rhxmiqwmzmnaqw7qj77k9y8svyy0gknpn8di7q5r9w1bdl807q5"; 99663 100211 isLibrary = true; 99664 100212 isExecutable = true; 100213 + enableSeparateDataOutput = true; 99665 100214 libraryHaskellDepends = [ 99666 100215 base cmdargs configurator containers directory filepath hoodle-core 99667 100216 mtl ··· 99705 100254 pname = "hoodle-core"; 99706 100255 version = "0.16.0"; 99707 100256 sha256 = "1v1y99x5rbkn85f91pdw19jfccwhcyfklg1qli0d7lq2c6aak4ka"; 100257 + enableSeparateDataOutput = true; 99708 100258 libraryHaskellDepends = [ 99709 100259 aeson aeson-pretty array attoparsec base base64-bytestring binary 99710 100260 bytestring cairo cereal configurator containers coroutine-object ··· 99847 100397 sha256 = "024knipmwl75gq56phjwpa61gzac8alw46k6lcgfg7v9dglz2dqx"; 99848 100398 isLibrary = true; 99849 100399 isExecutable = true; 100400 + enableSeparateDataOutput = true; 99850 100401 libraryHaskellDepends = [ 99851 100402 aeson base binary bytestring cmdargs conduit conduit-extra 99852 100403 connection containers deepseq directory extra filepath ··· 100170 100721 pname = "hoppy-std"; 100171 100722 version = "0.3.0"; 100172 100723 sha256 = "0rgvqkslhj6d9craiwb5g75217jh7s34980rpcbjbjba8pscpxjb"; 100724 + enableSeparateDataOutput = true; 100173 100725 libraryHaskellDepends = [ 100174 100726 base filepath haskell-src hoppy-generator 100175 100727 ]; ··· 100191 100743 sha256 = "16a1ygxv4isw5wiq5dhjn4xdlr67zy1ngn61mwilgwkvwj0cjxc3"; 100192 100744 isLibrary = true; 100193 100745 isExecutable = true; 100746 + enableSeparateDataOutput = true; 100194 100747 libraryHaskellDepends = [ 100195 100748 aeson ansi-terminal attoparsec base bytestring conduit 100196 100749 conduit-extra containers deepseq directory filepath http-conduit ··· 100222 100775 sha256 = "0h9cq1qzai1kbzc77bjlm0dbkrasfj0d21ydrh86kv9jd6gr7gb7"; 100223 100776 isLibrary = false; 100224 100777 isExecutable = true; 100778 + enableSeparateDataOutput = true; 100225 100779 executableHaskellDepends = [ 100226 100780 array base bifunctors bytestring filepath mtl pretty readline void 100227 100781 ]; ··· 100295 100849 pname = "hosc"; 100296 100850 version = "0.15"; 100297 100851 sha256 = "1yp25n159p69r32y3x7iwc55l5q9qaamj2vyl1473x8ras5afdcf"; 100852 + enableSeparateDataOutput = true; 100298 100853 libraryHaskellDepends = [ 100299 100854 base binary blaze-builder bytestring data-binary-ieee754 network 100300 100855 time transformers ··· 100317 100872 pname = "hosc-json"; 100318 100873 version = "0.15"; 100319 100874 sha256 = "0sask4nr5njf9grzigldflrbp7460z55fsam1pc3wcnsa575hxhi"; 100875 + enableSeparateDataOutput = true; 100320 100876 libraryHaskellDepends = [ 100321 100877 aeson attoparsec base bifunctors bytestring hosc json text 100322 100878 unordered-containers utf8-string vector ··· 100337 100893 sha256 = "0zk59ig52vqym4n47yl9jgv21gszcwwbc0qc9ff0080allp6ddml"; 100338 100894 isLibrary = false; 100339 100895 isExecutable = true; 100896 + enableSeparateDataOutput = true; 100340 100897 executableHaskellDepends = [ 100341 100898 base bytestring cgi haskeline hosc hosc-json hsc3 json text 100342 100899 transformers utf8-string websockets www-minus ··· 100554 101111 sha256 = "143j3ylvzyq1s2l357vzqrwdcgg6rqhnmv0awb3nvm66c9smaarv"; 100555 101112 isLibrary = false; 100556 101113 isExecutable = true; 101114 + enableSeparateDataOutput = true; 100557 101115 executableHaskellDepends = [ 100558 101116 array base bytestring cairo containers directory filepath glade 100559 101117 glib gtk gtkglext hp2any-core hp2any-graph OpenGL time ··· 100572 101130 sha256 = "11v0w5406d9lql5jaj2kwrvdgai9y76kbdlwpjnn2wjn36b8hdwa"; 100573 101131 isLibrary = false; 100574 101132 isExecutable = true; 101133 + enableSeparateDataOutput = true; 100575 101134 executableHaskellDepends = [ base containers filepath ]; 100576 101135 description = "A tool for converting GHC heap-profiles to HTML"; 100577 101136 license = stdenv.lib.licenses.bsd3; ··· 100708 101267 sha256 = "0sl2qh3l5vbijln2al7vmvxm4zhn3qsz8axvprs6jxjfbndmk78j"; 100709 101268 isLibrary = false; 100710 101269 isExecutable = true; 101270 + enableSeparateDataOutput = true; 100711 101271 executableHaskellDepends = [ 100712 101272 base bytestring Cabal cabal-macosx containers directory eprocess 100713 101273 filepath FindBin haskell-src-exts hint hint-server monad-loops mtl ··· 100885 101445 pname = "hpdft"; 100886 101446 version = "0.1.0.4"; 100887 101447 sha256 = "1rxr2qfs6cvk0hyvvq7w0jsq8vjf8b84ay5jzfhqyk8qk73ppfji"; 101448 + enableSeparateDataOutput = true; 100888 101449 libraryHaskellDepends = [ 100889 101450 attoparsec base binary bytestring containers directory file-embed 100890 101451 parsec text utf8-string zlib ··· 100966 101527 sha256 = "01xkpsb8fjlifdz6fckwfawj1s5c4rs4slizcdr1hpij6mcdcg6y"; 100967 101528 isLibrary = false; 100968 101529 isExecutable = true; 101530 + enableSeparateDataOutput = true; 100969 101531 executableHaskellDepends = [ base directory filepath process ]; 100970 101532 description = "Application for managing playlist files on a music player"; 100971 101533 license = "GPL"; ··· 101136 101698 sha256 = "0kmmrjg93rr6cjmg5n821p00qr4m3q46nnyfhql2s2nf20p7kprh"; 101137 101699 isLibrary = true; 101138 101700 isExecutable = true; 101701 + enableSeparateDataOutput = true; 101139 101702 libraryHaskellDepends = [ base hcg-minus ]; 101140 101703 executableHaskellDepends = [ 101141 101704 base directory filepath hcg-minus random ··· 101153 101716 sha256 = "1xyk0q6qiqcqd849km86jns4bcfmyrvikg0zw44929wlmlbf0hg7"; 101154 101717 isLibrary = true; 101155 101718 isExecutable = true; 101719 + enableSeparateDataOutput = true; 101156 101720 libraryHaskellDepends = [ base cairo gtk hps ]; 101157 101721 executableHaskellDepends = [ base cairo gtk hps random ]; 101158 101722 homepage = "http://slavepianos.org/rd/?t=hps-cairo"; ··· 101194 101758 pname = "hpygments"; 101195 101759 version = "0.2.0"; 101196 101760 sha256 = "0f1cvkslvijlx8qlsc1vkv240ir30w4wq6h4pndzsqdj2y95ricj"; 101761 + enableSeparateDataOutput = true; 101197 101762 libraryHaskellDepends = [ 101198 101763 aeson base bytestring process process-extras 101199 101764 ]; ··· 101622 102187 pname = "hs-fltk"; 101623 102188 version = "0.2.5"; 101624 102189 sha256 = "0nbxfy219mz0k27d16r3ir7hk0j450gxba9wrvrz1j17mr3gvqzx"; 102190 + enableSeparateDataOutput = true; 101625 102191 libraryHaskellDepends = [ base ]; 101626 102192 librarySystemDepends = [ fltk fltk_images ]; 101627 102193 homepage = "http://www.cs.helsinki.fi/u/ekarttun/hs-fltk/"; ··· 101636 102202 pname = "hs-gchart"; 101637 102203 version = "0.4.1"; 101638 102204 sha256 = "0nmykgdzkqidxv51bhlcn4zax4zfw26s4l65z3a3405si2s5x459"; 102205 + enableSeparateDataOutput = true; 101639 102206 libraryHaskellDepends = [ base mtl ]; 101640 102207 homepage = "http://github.com/deepakjois/hs-gchart"; 101641 102208 description = "Haskell wrapper for the Google Chart API"; ··· 101737 102304 sha256 = "0ypr4jpc12f771g3gsahbj0yjzd0ns8mmwjl90knwg267d712i13"; 101738 102305 isLibrary = false; 101739 102306 isExecutable = true; 102307 + enableSeparateDataOutput = true; 101740 102308 executableHaskellDepends = [ 101741 102309 base cmdargs colour containers diagrams-core diagrams-lib 101742 102310 diagrams-svg mtl parsec parsec-numbers random ··· 101821 102389 sha256 = "064sk0g8mzkqm80hfxg03qn6g1awydlw15ylikk3rs4wf7fclw30"; 101822 102390 isLibrary = true; 101823 102391 isExecutable = true; 102392 + enableSeparateDataOutput = true; 101824 102393 libraryHaskellDepends = [ array base MonadPrompt mtl random ]; 101825 102394 executableHaskellDepends = [ 101826 102395 array base directory glib gtk MonadPrompt mtl random ··· 101987 102556 sha256 = "077mc8dn2f6x3s29pm80qi7mj6s2crdhky0vygzfqd8v23gmhqcg"; 101988 102557 isLibrary = false; 101989 102558 isExecutable = true; 102559 + enableSeparateDataOutput = true; 101990 102560 executableHaskellDepends = [ base HTTP json mtl network pretty ]; 101991 102561 homepage = "https://github.com/deepakjois/hs-twitterarchiver"; 101992 102562 description = "Commandline Twitter feed archiver"; ··· 102063 102633 sha256 = "1lx0px0gicwry5i4rwgzz6jasjhp24f620w2iby9xpbvn6h3zflm"; 102064 102634 isLibrary = false; 102065 102635 isExecutable = true; 102636 + enableSeparateDataOutput = true; 102066 102637 executableHaskellDepends = [ 102067 102638 array base containers directory filepath haskell-src mtl 102068 102639 ]; ··· 102124 102695 pname = "hsSqlite3"; 102125 102696 version = "0.1"; 102126 102697 sha256 = "0wmsswccwcz2zd3zap0wsapzbya72cxdyzhlcch4akvwqcl9hz6a"; 102698 + enableSeparateDataOutput = true; 102127 102699 libraryHaskellDepends = [ 102128 102700 base bindings-sqlite3 bytestring mtl utf8-string 102129 102701 ]; ··· 102176 102748 sha256 = "0qar7y4190dfv63jmzx8saxqxzh73spc2q3i6pqywdbv7zb6zvrl"; 102177 102749 isLibrary = false; 102178 102750 isExecutable = true; 102751 + enableSeparateDataOutput = true; 102179 102752 executableHaskellDepends = [ base Hclip HTTP process unix ]; 102180 102753 description = "(ab)Use Google Translate as a speech synthesiser"; 102181 102754 license = stdenv.lib.licenses.gpl3; ··· 102305 102878 sha256 = "061ns6ig52pcjwi9cgdcasya4cgm3zlb5s2mzq9p01vw4iy702gn"; 102306 102879 isLibrary = false; 102307 102880 isExecutable = true; 102881 + enableSeparateDataOutput = true; 102308 102882 executableHaskellDepends = [ 102309 102883 base containers directory filepath process 102310 102884 ]; ··· 102322 102896 pname = "hsc3"; 102323 102897 version = "0.15.1"; 102324 102898 sha256 = "1ad5q4rq82v7l556rinaiikglr1kjswi5raw0dxqwsfjbp8imbha"; 102899 + enableSeparateDataOutput = true; 102325 102900 libraryHaskellDepends = [ 102326 102901 base binary bytestring containers data-default data-ordlist 102327 102902 directory filepath hashable hosc network process random safe split ··· 102339 102914 pname = "hsc3-auditor"; 102340 102915 version = "0.15"; 102341 102916 sha256 = "02p4y06p08mizdrbvl52364szksrwnx28s992prw8b2ilav11563"; 102917 + enableSeparateDataOutput = true; 102342 102918 libraryHaskellDepends = [ 102343 102919 base filepath hmt hosc hsc3 hsc3-sf-hsndfile 102344 102920 ]; ··· 102353 102929 pname = "hsc3-cairo"; 102354 102930 version = "0.14"; 102355 102931 sha256 = "1f62mfjssky7igbp1nx2zf1azbih76m65xydnf5akp8pim7nzmis"; 102932 + enableSeparateDataOutput = true; 102356 102933 libraryHaskellDepends = [ base cairo gtk hosc hsc3 split ]; 102357 102934 homepage = "http://rd.slavepianos.org/?t=hsc3-cairo"; 102358 102935 description = "haskell supercollider cairo drawing"; ··· 102368 102945 pname = "hsc3-data"; 102369 102946 version = "0.15"; 102370 102947 sha256 = "0321rnajfiwldwwpns78im842hypykc1js7flnasld7al6m7487d"; 102948 + enableSeparateDataOutput = true; 102371 102949 libraryHaskellDepends = [ 102372 102950 base bifunctors Glob hcg-minus hmt hsc3-lang hsc3-plot 102373 102951 hsc3-sf-hsndfile safe split SVGPath xml ··· 102384 102962 pname = "hsc3-db"; 102385 102963 version = "0.15"; 102386 102964 sha256 = "0sj3hq0d8dl4m6fn75lvyr78sg283p6y13lg8yi2yrgz74kn4zbl"; 102965 + enableSeparateDataOutput = true; 102387 102966 libraryHaskellDepends = [ base hsc3 safe ]; 102388 102967 homepage = "http://rd.slavepianos.org/t/hsc3-db"; 102389 102968 description = "Haskell SuperCollider Unit Generator Database"; ··· 102396 102975 pname = "hsc3-dot"; 102397 102976 version = "0.15"; 102398 102977 sha256 = "1ck2g15zw23smry1xvn9ida8ln57vnvkxvr3khhp5didwisgm90m"; 102978 + enableSeparateDataOutput = true; 102399 102979 libraryHaskellDepends = [ base directory filepath hsc3 process ]; 102400 102980 homepage = "http://rd.slavepianos.org/t/hsc3-dot"; 102401 102981 description = "haskell supercollider graph drawing"; ··· 102412 102992 sha256 = "0b3q6w1r12wv1fl05armkrprlkx2s7n08mimkxxndsd9kl6zl8lw"; 102413 102993 isLibrary = false; 102414 102994 isExecutable = true; 102995 + enableSeparateDataOutput = true; 102415 102996 executableHaskellDepends = [ 102416 102997 base containers directory filepath hashable hosc hsc3 hsc3-db 102417 102998 hsc3-dot mtl unix ··· 102435 103016 sha256 = "1d59gl0shwkwi9581j7x7yy1j63acns9ccpwin4y5lwk0k5x6s38"; 102436 103017 isLibrary = true; 102437 103018 isExecutable = true; 103019 + enableSeparateDataOutput = true; 102438 103020 libraryHaskellDepends = [ 102439 103021 array base binary bytestring cairo containers data-default 102440 103022 directory filepath hls hmt hosc hps hsc3 hsc3-cairo hsc3-lang ··· 102463 103045 pname = "hsc3-lang"; 102464 103046 version = "0.15"; 102465 103047 sha256 = "09qn9kb8h40cwhnjf4pl70i2vi7cn4pa4wkdwjbn07hrdpvxgihf"; 103048 + enableSeparateDataOutput = true; 102466 103049 libraryHaskellDepends = [ 102467 103050 array base bifunctors bytestring containers data-default 102468 103051 data-ordlist dlist hashable hmatrix-special hosc hsc3 MonadRandom ··· 102484 103067 sha256 = "1k45ipivvlfymvh6rzxsv1kfvd11spsn3skmsswg2vd76bcgh20x"; 102485 103068 isLibrary = false; 102486 103069 isExecutable = true; 103070 + enableSeparateDataOutput = true; 102487 103071 executableHaskellDepends = [ 102488 103072 base containers directory filepath hashable hosc hsc3 hsc3-dot 102489 103073 husk-scheme mtl safe unix ··· 102502 103086 pname = "hsc3-plot"; 102503 103087 version = "0.15"; 102504 103088 sha256 = "1v5n4k54qp8ifwka2bhrq9w1kfzd3ldzhqyhvkcgl0z46xcf7lk3"; 103089 + enableSeparateDataOutput = true; 102505 103090 libraryHaskellDepends = [ 102506 103091 base directory filepath hosc hsc3 hsc3-lang process split 102507 103092 statistics vector ··· 102539 103124 pname = "hsc3-rec"; 102540 103125 version = "0.14.1"; 102541 103126 sha256 = "0m814vr41i0mm0c001vbih9i93048niljv3z8czaz32wysa8xpfl"; 103127 + enableSeparateDataOutput = true; 102542 103128 libraryHaskellDepends = [ base hsc3 ]; 102543 103129 homepage = "http://rd.slavepianos.org/?t=hsc3-rec"; 102544 103130 description = "Haskell SuperCollider Record Variants"; ··· 102554 103140 pname = "hsc3-rw"; 102555 103141 version = "0.15"; 102556 103142 sha256 = "1jcnw0a1nf4wwf5bz61bkpwd3jfgccfxmcqq06vy43pc98223z8p"; 103143 + enableSeparateDataOutput = true; 102557 103144 libraryHaskellDepends = [ 102558 103145 base directory haskell-src-exts parsec polyparse split syb 102559 103146 transformers ··· 102601 103188 pname = "hsc3-sf"; 102602 103189 version = "0.15"; 102603 103190 sha256 = "1dg3gqhvi2rshfqnw7i89bd4bvqjvbk4f9g17x18swyrvgkz9wr7"; 103191 + enableSeparateDataOutput = true; 102604 103192 libraryHaskellDepends = [ base bytestring hosc ]; 102605 103193 homepage = "http://rd.slavepianos.org/t/hsc3-sf"; 102606 103194 description = "Haskell SuperCollider SoundFile"; ··· 102615 103203 pname = "hsc3-sf-hsndfile"; 102616 103204 version = "0.15"; 102617 103205 sha256 = "11ksss2g8a7lqpjqvdwj4j9y3kdc8algc9mhlyjmj38mgg4raa2i"; 103206 + enableSeparateDataOutput = true; 102618 103207 libraryHaskellDepends = [ 102619 103208 array base hsc3-sf hsndfile hsndfile-vector vector 102620 103209 ]; ··· 102629 103218 pname = "hsc3-unsafe"; 102630 103219 version = "0.14"; 102631 103220 sha256 = "0kywqx7x10hqzhq8by0f62aznrnq4y3013cxkccx1r0naajpz3yj"; 103221 + enableSeparateDataOutput = true; 102632 103222 libraryHaskellDepends = [ base hsc3 ]; 102633 103223 homepage = "http://rd.slavepianos.org/?t=hsc3-unsafe"; 102634 103224 description = "Unsafe Haskell SuperCollider"; ··· 102646 103236 sha256 = "1pvg2z6n2r7jhwgwx9rv4q94jdj2ql3kgjh4smjq4xafnzzlyrix"; 102647 103237 isLibrary = true; 102648 103238 isExecutable = true; 103239 + enableSeparateDataOutput = true; 102649 103240 libraryHaskellDepends = [ 102650 103241 base directory filepath hashable hosc hsc3 hsc3-sf 102651 103242 ]; ··· 102758 103349 sha256 = "1j3rpzjygh3igvnd1n2xn63bq68rs047cjxr2qi6xyfnivgf6vz4"; 102759 103350 isLibrary = true; 102760 103351 isExecutable = true; 103352 + enableSeparateDataOutput = true; 102761 103353 libraryHaskellDepends = [ base containers ]; 102762 103354 executableHaskellDepends = [ base containers ]; 102763 103355 homepage = "http://code.haskell.org/~malcolm/hscolour/"; ··· 102832 103424 sha256 = "0msf80475l3ncpnb1lcpnyscl1svmqg074ylb942rx7dbvck71bj"; 102833 103425 revision = "1"; 102834 103426 editedCabalFile = "0a65hmlhd668r8y7qcjsdy4fgs46j8rr9jbjryjddkma6r02jpqq"; 103427 + enableSeparateDataOutput = true; 102835 103428 libraryHaskellDepends = [ 102836 103429 base exceptions mtl old-locale old-time unix 102837 103430 ]; ··· 102904 103497 pname = "hsdif"; 102905 103498 version = "0.14"; 102906 103499 sha256 = "1wxms6z8mpyf4l1qqxi6gvscls3mwlj5aq6g3ldashzrmb7pcimm"; 103500 + enableSeparateDataOutput = true; 102907 103501 libraryHaskellDepends = [ base bytestring hosc ]; 102908 103502 homepage = "http://rd.slavepianos.org/?t=hsdif"; 102909 103503 description = "Haskell SDIF"; ··· 102919 103513 sha256 = "0hqwpcf2bcrj36wg02mxd2zdg07dqh4b5mv9yn295xp64snrdw84"; 102920 103514 isLibrary = true; 102921 103515 isExecutable = true; 103516 + enableSeparateDataOutput = true; 102922 103517 libraryHaskellDepends = [ base cairo containers HUnit parsec ]; 102923 103518 homepage = "http://neugierig.org/software/darcs/hsdip/"; 102924 103519 description = "hsdip - a Diplomacy parser/renderer"; ··· 103008 103603 pname = "hsemail-ns"; 103009 103604 version = "1.3.2"; 103010 103605 sha256 = "03d0pnsba7yj5x7zrg8b80kxsnqn5g40vd2i717s1dnn3bd3vz4s"; 103606 + enableSeparateDataOutput = true; 103011 103607 libraryHaskellDepends = [ base mtl old-time parsec ]; 103012 103608 homepage = "http://patch-tag.com/r/hsemail-ns/home"; 103013 103609 description = "Internet Message Parsers"; ··· 103026 103622 sha256 = "1kjj9p8x6369g9ah9h86xlyvcm4jkahvlz2pvj1m73javbgyyf03"; 103027 103623 isLibrary = false; 103028 103624 isExecutable = true; 103625 + enableSeparateDataOutput = true; 103029 103626 executableHaskellDepends = [ 103030 103627 base bytestring Cabal directory file-embed filepath http-streams 103031 103628 io-streams mtl process safe split unix ··· 103160 103757 pname = "hsgsom"; 103161 103758 version = "0.2.0"; 103162 103759 sha256 = "1043lavrimaxmscayg4knx7ly0yc0gsb729pg72g897hc455r2dn"; 103760 + enableSeparateDataOutput = true; 103163 103761 libraryHaskellDepends = [ base containers random stm time ]; 103164 103762 description = "An implementation of the GSOM clustering algorithm"; 103165 103763 license = stdenv.lib.licenses.bsd3; ··· 103283 103881 sha256 = "070sbjcb7vdl0dxx5jv1q1aiihb5q5malrdmxb6dcs0gc01qp13p"; 103284 103882 isLibrary = true; 103285 103883 isExecutable = true; 103884 + enableSeparateDataOutput = true; 103286 103885 libraryHaskellDepends = [ base directory filepath ]; 103287 103886 executableHaskellDepends = [ base directory filepath ]; 103288 103887 description = "Install Haskell software"; ··· 103297 103896 sha256 = "04f86mk2304q9kz37hr18b9jcz66wk04z747xzpxbnnwig390406"; 103298 103897 isLibrary = true; 103299 103898 isExecutable = true; 103899 + enableSeparateDataOutput = true; 103300 103900 libraryHaskellDepends = [ base directory filepath ]; 103301 103901 executableHaskellDepends = [ base directory filepath ]; 103302 103902 description = "Install Haskell software"; ··· 103339 103939 pname = "hslibsvm"; 103340 103940 version = "2.89.0.1"; 103341 103941 sha256 = "00smw10j2ipw10133qc38famar5r6rkswj7bhvb9hdj2rrdyx6sf"; 103942 + enableSeparateDataOutput = true; 103342 103943 libraryHaskellDepends = [ base containers ]; 103343 103944 librarySystemDepends = [ svm ]; 103344 103945 description = "A FFI binding to libsvm"; ··· 103522 104123 pname = "hsmagick"; 103523 104124 version = "0.5"; 103524 104125 sha256 = "1bfzbwddss0m0z4jf7i0b06pmxy9rvknpqnzhf0v5jggv5nr442p"; 104126 + enableSeparateDataOutput = true; 103525 104127 libraryHaskellDepends = [ 103526 104128 base bytestring directory filepath pretty process 103527 104129 ]; ··· 103619 104221 sha256 = "1hh4lyrd2ki79q6pfz62icp3igzyljwa5bz8ba9vk4kxxawrnbhw"; 103620 104222 isLibrary = true; 103621 104223 isExecutable = true; 104224 + enableSeparateDataOutput = true; 103622 104225 libraryHaskellDepends = [ base parsec readline ]; 103623 104226 executableHaskellDepends = [ base parsec readline ]; 103624 104227 testHaskellDepends = [ ··· 103686 104289 sha256 = "0pw5l6z1yjjvcxgw71i00gfnjdqcvg09bsacazq9ahvnwsn4aayd"; 103687 104290 isLibrary = true; 103688 104291 isExecutable = true; 104292 + enableSeparateDataOutput = true; 103689 104293 libraryHaskellDepends = [ array base mtl network old-time random ]; 103690 104294 executableHaskellDepends = [ unix ]; 103691 104295 homepage = "http://www.cs.helsinki.fi/u/ekarttun/util/"; ··· 104777 105381 sha256 = "09lnd6am51z98j4kwwidj4jw0bcrx8904r526w50y38afngysqx6"; 104778 105382 isLibrary = false; 104779 105383 isExecutable = true; 105384 + enableSeparateDataOutput = true; 104780 105385 executableHaskellDepends = [ 104781 105386 base containers hsqml MonadRandom text 104782 105387 ]; ··· 104796 105401 sha256 = "166r06yhnmg063d48dh7973wg85nfmvp1c5gmy79ilycc8xgvmhm"; 104797 105402 isLibrary = false; 104798 105403 isExecutable = true; 105404 + enableSeparateDataOutput = true; 104799 105405 executableHaskellDepends = [ 104800 105406 base containers deepseq directory hsqml OddWord text 104801 105407 ]; ··· 104815 105421 sha256 = "0gjlsqlspchav6lvc4ld15192x70j8cyzw903dgla7g9sj8fg813"; 104816 105422 isLibrary = false; 104817 105423 isExecutable = true; 105424 + enableSeparateDataOutput = true; 104818 105425 executableHaskellDepends = [ 104819 105426 base containers hsqml sqlite-simple text transformers 104820 105427 ]; ··· 104832 105439 sha256 = "0y82caz4fb4cz4qfmdg7h5zr959yw2q162zz980jz179188a8pr2"; 104833 105440 isLibrary = false; 104834 105441 isExecutable = true; 105442 + enableSeparateDataOutput = true; 104835 105443 executableHaskellDepends = [ base hsqml OpenGL OpenGLRaw text ]; 104836 105444 homepage = "http://www.gekkou.co.uk/software/hsqml/"; 104837 105445 description = "HsQML sample programs"; ··· 104849 105457 sha256 = "1qisi1r8lljgkwc9v5p3nqq6b78vdn9wyydsp31dxqnbd1lyg5ax"; 104850 105458 isLibrary = false; 104851 105459 isExecutable = true; 105460 + enableSeparateDataOutput = true; 104852 105461 executableHaskellDepends = [ 104853 105462 base containers deepseq directory hsqml OddWord tagged 104854 105463 ]; ··· 105072 105681 sha256 = "1d87s6f6qgq7sbqzdgidnn3gxz9panhdk2mfhd7263hb9mrq1k3c"; 105073 105682 isLibrary = true; 105074 105683 isExecutable = true; 105684 + enableSeparateDataOutput = true; 105075 105685 libraryHaskellDepends = [ 105076 105686 attoparsec base containers hsqml network random safecopy socks 105077 105687 tagged text ··· 105167 105777 sha256 = "0wfi468d08irw0s7dn6rmfsi1hrvh0in2fr655fmmwk6ngmnix51"; 105168 105778 isLibrary = false; 105169 105779 isExecutable = true; 105780 + enableSeparateDataOutput = true; 105170 105781 executableHaskellDepends = [ 105171 105782 array base cairo containers directory filepath glade gtk hashable 105172 105783 mtl parallel QuickCheck random unordered-containers vector xml ··· 105211 105822 sha256 = "1sq498shkr9xvzrg7spwvsfrnp0d414vcb6iv6pcy7h1jsplrgaz"; 105212 105823 isLibrary = true; 105213 105824 isExecutable = true; 105825 + enableSeparateDataOutput = true; 105214 105826 libraryHaskellDepends = [ 105215 105827 base bytestring gi-gtk HandsomeSoup haskell-gi-base http-client 105216 105828 http-client-tls hxt text ··· 105412 106024 sha256 = "19s01g8inwmzbvbs1ph4rg2kaqipj7jc9lkg2y9y28gpdrgw48qb"; 105413 106025 revision = "1"; 105414 106026 editedCabalFile = "0z0jzhmrm77b3rl1h89wfgbwjg374n1mda73z7qrrdfc7ky99dmy"; 106027 + enableSeparateDataOutput = true; 105415 106028 libraryHaskellDepends = [ base bytestring text ]; 105416 106029 librarySystemDepends = [ taglib ]; 105417 106030 testHaskellDepends = [ base directory filepath hspec ]; ··· 105428 106041 pname = "htaglib"; 105429 106042 version = "1.1.1"; 105430 106043 sha256 = "0a4rzw1343zixkmdy84bg7j35qxbnpx7pjr23857cil906wi33r3"; 106044 + enableSeparateDataOutput = true; 105431 106045 libraryHaskellDepends = [ base bytestring text transformers ]; 105432 106046 librarySystemDepends = [ taglib ]; 105433 106047 testHaskellDepends = [ base directory filepath hspec ]; ··· 105639 106253 pname = "html-minimalist"; 105640 106254 version = "0.15"; 105641 106255 sha256 = "06qhjb8c1x9wab77g493bbqqm068alkc4vn7c6dj810gdgxwgw5j"; 106256 + enableSeparateDataOutput = true; 105642 106257 libraryHaskellDepends = [ base xml ]; 105643 106258 homepage = "http://rd.slavepianos.org/t/html-minimalist"; 105644 106259 description = "Minimalist haskell html library"; ··· 105814 106429 pname = "hts"; 105815 106430 version = "0.15"; 105816 106431 sha256 = "0l09skjsds4p9kdwrwrxg8hdd1ja7m2zmggf23dfimzm1jsij6y2"; 106432 + enableSeparateDataOutput = true; 105817 106433 libraryHaskellDepends = [ base hmt xml ]; 105818 106434 homepage = "http://rd.slavepianos.org/t/hts"; 105819 106435 description = "Haskell Music Typesetting"; ··· 106847 107463 pname = "https-everywhere-rules-raw"; 106848 107464 version = "4.0"; 106849 107465 sha256 = "0zm3znn42nzh9dlpjjn38nsz8rsb0gzl5rv6ngii1vfq534sddy6"; 107466 + enableSeparateDataOutput = true; 106850 107467 libraryHaskellDepends = [ 106851 107468 base directory filepath functor-infix text 106852 107469 ]; ··· 106929 107546 pname = "hubigraph"; 106930 107547 version = "0.3.2"; 106931 107548 sha256 = "19mxblqy3bchhrk725x4kmpa9hidjzj0d0sqhx34smqw7v36x814"; 107549 + enableSeparateDataOutput = true; 106932 107550 libraryHaskellDepends = [ base containers haxr mtl ]; 106933 107551 homepage = "http://ooxo.org/hubigraph/"; 106934 107552 description = "A haskell wrap for Ubigraph"; ··· 107102 107720 sha256 = "1wb9bn83lrn6cpp0gkpc7v40m9wlx8i8zqijm4dmd23zzmrlrxhr"; 107103 107721 isLibrary = false; 107104 107722 isExecutable = true; 107723 + enableSeparateDataOutput = true; 107105 107724 executableHaskellDepends = [ 107106 107725 base blaze-builder bytestring case-insensitive ConfigFile 107107 107726 containers directory filepath HaXml http-types hxt MissingH mtl ··· 107170 107789 sha256 = "0wzy2gjxpqr0j2cfnl88ixccm8dv3z9cql1zpzr4ph6g37dc9w60"; 107171 107790 isLibrary = true; 107172 107791 isExecutable = true; 107792 + enableSeparateDataOutput = true; 107173 107793 libraryHaskellDepends = [ base cairo gtk haskell98 HUnit ]; 107174 107794 executableHaskellDepends = [ base cairo gtk haskell98 HUnit ]; 107175 107795 homepage = "http://patch-tag.com/r/kwallmar/hunit_gui/home"; ··· 107383 108003 sha256 = "0bb4iph3pp26rm9sdsjsshbig3misd1yr4waqblj8vr9fmrpx084"; 107384 108004 isLibrary = true; 107385 108005 isExecutable = true; 108006 + enableSeparateDataOutput = true; 107386 108007 libraryHaskellDepends = [ 107387 108008 array base bytestring containers directory haskeline knob mtl 107388 108009 parsec process time transformers utf8-string ··· 108098 108719 sha256 = "05bahk2fl2cp0dgx4v91dghzhsh1bclaj8z24j4s0p25xbi63zvr"; 108099 108720 isLibrary = true; 108100 108721 isExecutable = true; 108722 + enableSeparateDataOutput = true; 108101 108723 libraryHaskellDepends = [ 108102 108724 ansi-wl-pprint array attoparsec base bytestring conduit containers 108103 108725 hw-balancedparens hw-bits hw-conduit hw-parser hw-prim ··· 108321 108943 sha256 = "1fk4cgk4ncf5v7k8hankwb49ablfcxj1rcw64ka6pz3jrz4sablq"; 108322 108944 isLibrary = true; 108323 108945 isExecutable = true; 108946 + enableSeparateDataOutput = true; 108324 108947 libraryHaskellDepends = [ 108325 108948 base bytestring cairo cmdargs configurator containers Diff 108326 108949 directory double-conversion dyre fclabels filepath gtk ··· 108644 109267 sha256 = "1k81whay05mp9jb39gmb64l2xqxa90yrb7svbphj1cnsz0b76qwk"; 108645 109268 isLibrary = false; 108646 109269 isExecutable = true; 109270 + enableSeparateDataOutput = true; 108647 109271 executableHaskellDepends = [ 108648 109272 aeson base blaze-html bytestring cmdargs directory filepath 108649 109273 highlighting-kate mtl pandoc regex-pcre-builtin text ··· 108663 109287 sha256 = "05v69csnz7g9ikymnrmzjqhdwlrfsb44pbv8mzddgk6my9ddlb9w"; 108664 109288 isLibrary = false; 108665 109289 isExecutable = true; 109290 + enableSeparateDataOutput = true; 108666 109291 executableHaskellDepends = [ 108667 109292 base containers haskell98 mtl parsec 108668 109293 ]; ··· 108763 109388 sha256 = "03hz4z964zg1b5nzywymrd1m3ss081rq6nnbqwcgbwabx6wd209b"; 108764 109389 isLibrary = false; 108765 109390 isExecutable = true; 109391 + enableSeparateDataOutput = true; 108766 109392 executableHaskellDepends = [ 108767 109393 base hydrogen-cli-args hydrogen-data hydrogen-multimap 108768 109394 hydrogen-parsing hydrogen-prelude hydrogen-syntax ··· 108941 109567 sha256 = "0ryzhbmwrg173lmzyl8a77qnqp11maxcn72y1x0hn8mabj8js3hn"; 108942 109568 isLibrary = true; 108943 109569 isExecutable = true; 109570 + enableSeparateDataOutput = true; 108944 109571 libraryHaskellDepends = [ base hylogen vector-space ]; 108945 109572 executableHaskellDepends = [ 108946 109573 aeson base bytestring filepath fsnotify hint http-types hylogen ··· 108987 109614 sha256 = "0xynx72xpb84g19gnsgq00gwj3ycfgk5qgd9j949b6k3fqr3n71w"; 108988 109615 isLibrary = false; 108989 109616 isExecutable = true; 109617 + enableSeparateDataOutput = true; 108990 109618 executableHaskellDepends = [ base hylolib mtl ]; 108991 109619 homepage = "http://www.glyc.dc.uba.ar/intohylo/hylotab.php"; 108992 109620 description = "Tableau based theorem prover for hybrid logics"; ··· 109173 109801 pname = "hyphenation"; 109174 109802 version = "0.6"; 109175 109803 sha256 = "1xqj4na1gm40ssirc4k70r27bzxhg2dkiipp48a5hqwgq5k3crrg"; 109804 + enableSeparateDataOutput = true; 109176 109805 libraryHaskellDepends = [ 109177 109806 base bytestring containers unordered-containers zlib 109178 109807 ]; ··· 109193 109822 pname = "hyphenation"; 109194 109823 version = "0.7"; 109195 109824 sha256 = "0l1yvfdkkgba91pzncy399hv65pdipb9p78v2j9g0sdkmb1anq9s"; 109825 + enableSeparateDataOutput = true; 109196 109826 setupHaskellDepends = [ base Cabal cabal-doctest ]; 109197 109827 libraryHaskellDepends = [ 109198 109828 base bytestring containers unordered-containers zlib ··· 109511 110141 editedCabalFile = "0bb6cg0yiadcwa7pdg5gan3lir3pxdakwimi0cp64hi76scy0xng"; 109512 110142 isLibrary = true; 109513 110143 isExecutable = true; 110144 + enableSeparateDataOutput = true; 109514 110145 libraryHaskellDepends = [ 109515 110146 async attoparsec base binary bytestring Cabal-ide-backend 109516 110147 containers data-accessor data-accessor-mtl directory filemanip ··· 109658 110289 sha256 = "0qzj2063sh7phbqyxqxf96avz1zcwd1ry06jdqxwkg55q3yb8y9n"; 109659 110290 revision = "1"; 109660 110291 editedCabalFile = "0jlm9cmw0ycbyifab7bzkmykj8w7vn2wyc6pfadfjrhb76zyvcxr"; 110292 + enableSeparateDataOutput = true; 109661 110293 libraryHaskellDepends = [ base bytestring JuicyPixels ]; 109662 110294 testHaskellDepends = [ 109663 110295 base bytestring hspec JuicyPixels QuickCheck ··· 109706 110338 sha256 = "11595aj56sjwk28grh6ldsbk5c6kgrirsc2xglfixw82vj7viw8h"; 109707 110339 isLibrary = true; 109708 110340 isExecutable = true; 110341 + enableSeparateDataOutput = true; 109709 110342 libraryHaskellDepends = [ 109710 110343 base bytestring containers data-accessor MissingH polyparse text 109711 110344 utf8-string ··· 109783 110416 configureFlags = [ "-fcurses" "-fffi" "-fgmp" ]; 109784 110417 isLibrary = true; 109785 110418 isExecutable = true; 110419 + enableSeparateDataOutput = true; 109786 110420 libraryHaskellDepends = [ 109787 110421 aeson annotated-wl-pprint ansi-terminal ansi-wl-pprint array async 109788 110422 base base64-bytestring binary blaze-html blaze-markup bytestring ··· 109952 110586 pname = "ige-mac-integration"; 109953 110587 version = "0.1.0.1"; 109954 110588 sha256 = "1949c5v3157xlwcmddawc79iagxlgy4l08skpkldi45amyy3jqn6"; 110589 + enableSeparateDataOutput = true; 109955 110590 libraryHaskellDepends = [ 109956 110591 array base containers glib gtk haskell98 mtl 109957 110592 ]; ··· 110032 110667 sha256 = "09vzwbxc8hnm7cwhs1nfpd6abwmlld495h304iwv1j653zrhjygp"; 110033 110668 isLibrary = true; 110034 110669 isExecutable = true; 110670 + enableSeparateDataOutput = true; 110035 110671 libraryHaskellDepends = [ 110036 110672 aeson base base64-bytestring bytestring cereal cmdargs containers 110037 110673 directory filepath ghc ghc-parser ghc-paths haskeline ··· 110521 111157 sha256 = "0x31wjd6maqixr3rbangaph0s5skp18fmb8xgm1a6jsky8k367vz"; 110522 111158 isLibrary = false; 110523 111159 isExecutable = true; 111160 + enableSeparateDataOutput = true; 110524 111161 executableHaskellDepends = [ 110525 111162 base bibtex bytestring ConfigFile containers curl directory 110526 111163 download-curl filepath glib gnomevfs gtk mtl parsec process split ··· 110899 111536 sha256 = "05f25yza05ib0xnkpfimhrb3nqyp5km85r1j9n6yh9k0cwdagndi"; 110900 111537 isLibrary = false; 110901 111538 isExecutable = true; 111539 + enableSeparateDataOutput = true; 110902 111540 executableHaskellDepends = [ 110903 111541 base containers filepath IndentParser mtl parsec presburger pretty 110904 111542 ]; ··· 112192 112830 pname = "interlude"; 112193 112831 version = "0.1.2"; 112194 112832 sha256 = "1yiv24n0mfjzbpm9p6djllhwck3brjz9adzyp6k4fpk430304k7s"; 112833 + enableSeparateDataOutput = true; 112195 112834 libraryHaskellDepends = [ base ]; 112196 112835 homepage = "http://malde.org/~ketil/"; 112197 112836 description = "Replaces some Prelude functions for enhanced error reporting"; ··· 112242 112881 sha256 = "1gn6vvrnhck9f9hzs8igdg20gvrvjnba00bj191paw02kpzbgx7z"; 112243 112882 isLibrary = false; 112244 112883 isExecutable = true; 112884 + enableSeparateDataOutput = true; 112245 112885 executableHaskellDepends = [ 112246 112886 base explicit-exception HPDF parsec process transformers utility-ht 112247 112887 ]; ··· 112264 112904 editedCabalFile = "1fgqd3qkws9yb3vj8ay695ym5cgifi082wryh68dp0qqh7agwkhl"; 112265 112905 isLibrary = false; 112266 112906 isExecutable = true; 112907 + enableSeparateDataOutput = true; 112267 112908 executableHaskellDepends = [ 112268 112909 array base bytestring containers directory filepath ghc ghc-boot-th 112269 112910 ghc-paths ghci haskeline process syb time transformers unix ··· 112286 112927 sha256 = "11awkl6rgy33yl4qcnf7ns464c87xjk9hqcf10z8shjjbaadbz43"; 112287 112928 isLibrary = true; 112288 112929 isExecutable = true; 112930 + enableSeparateDataOutput = true; 112289 112931 libraryHaskellDepends = [ base ]; 112290 112932 executableHaskellDepends = [ 112291 112933 base haskell-src-exts regex-posix syb ··· 112346 112988 pname = "interpolatedstring-perl6"; 112347 112989 version = "1.0.0"; 112348 112990 sha256 = "1lx125wzadvbicsaml9wrhxxplc4gd0i4wk3f1apb0kl5nnv5q35"; 112991 + enableSeparateDataOutput = true; 112349 112992 libraryHaskellDepends = [ 112350 112993 base bytestring haskell-src-meta template-haskell text 112351 112994 ]; ··· 112360 113003 pname = "interpolatedstring-qq"; 112361 113004 version = "0.2"; 112362 113005 sha256 = "1bqn9gqc43r158hyk35x8avsiqyd43vlpw2jkhpdfmr2wx29jprq"; 113006 + enableSeparateDataOutput = true; 112363 113007 libraryHaskellDepends = [ 112364 113008 base haskell-src-meta-mwotton template-haskell 112365 113009 ]; ··· 112375 113019 pname = "interpolatedstring-qq-mwotton"; 112376 113020 version = "0.1.1"; 112377 113021 sha256 = "1cwhy4jwbl50nglfw0wfmdr3rrg33dqskw0wq06prx14x22yshbk"; 113022 + enableSeparateDataOutput = true; 112378 113023 libraryHaskellDepends = [ 112379 113024 base haskell-src-meta-mwotton template-haskell 112380 113025 ]; ··· 112491 113136 sha256 = "05nz32z4gyjprh22dddwk3jb45nl2bm558d1sh09g4n2rvx0m4i7"; 112492 113137 isLibrary = false; 112493 113138 isExecutable = true; 113139 + enableSeparateDataOutput = true; 112494 113140 executableHaskellDepends = [ 112495 113141 array base binary bytestring containers crypto-api 112496 113142 crypto-pubkey-types cryptohash directory filepath hscurses mtl ··· 112858 113504 license = stdenv.lib.licenses.bsd3; 112859 113505 }) {}; 112860 113506 112861 - "io-streams_1_4_0_0" = callPackage 113507 + "io-streams_1_4_1_0" = callPackage 112862 113508 ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder 112863 113509 , deepseq, directory, filepath, HUnit, mtl, network, primitive 112864 113510 , process, QuickCheck, test-framework, test-framework-hunit ··· 112867 113513 }: 112868 113514 mkDerivation { 112869 113515 pname = "io-streams"; 112870 - version = "1.4.0.0"; 112871 - sha256 = "03lk73smhqvw6lxp4j0kxlkd87vaxaz2avpy7k533fxv1jk3sfbd"; 113516 + version = "1.4.1.0"; 113517 + sha256 = "0d6m7hq6l3zabqm2kga9qs1742vh5rnhfsa76svpkyn32z8n1i1w"; 112872 113518 configureFlags = [ "-fnointeractivetests" ]; 112873 113519 libraryHaskellDepends = [ 112874 113520 attoparsec base bytestring bytestring-builder network primitive ··· 113246 113892 sha256 = "0r426gbvr5k019v49gmw32fv0xnq5viizin4gb7wxcnm6ql84k5c"; 113247 113893 isLibrary = true; 113248 113894 isExecutable = true; 113895 + enableSeparateDataOutput = true; 113249 113896 libraryHaskellDepends = [ 113250 113897 aeson base bytestring cereal containers directory filepath mtl 113251 113898 process SHA temporary text transformers unordered-containers uuid ··· 113554 114201 sha256 = "0xrmya03n4xpnn3c79r94x8dz8yn963v8js8rwyjcslr11gyx80q"; 113555 114202 isLibrary = true; 113556 114203 isExecutable = true; 114204 + enableSeparateDataOutput = true; 113557 114205 libraryHaskellDepends = [ 113558 114206 ansi-terminal base bytestring Cabal containers extra foldl 113559 114207 http-conduit lifted-base monad-control multistate process split ··· 113871 114519 sha256 = "049gj5c6z68yf7cmnp1kbjdg71n4rdwyb59hivdjajsdp9xay7hn"; 113872 114520 isLibrary = true; 113873 114521 isExecutable = true; 114522 + enableSeparateDataOutput = true; 113874 114523 libraryHaskellDepends = [ 113875 114524 base brick data-default microlens text vty 113876 114525 ]; ··· 113933 114582 pname = "iterable"; 113934 114583 version = "3.0"; 113935 114584 sha256 = "194718jpjwkv3ynlpgjlpvf0iqnj7dkd3zmci363gsa425i3vlbc"; 114585 + enableSeparateDataOutput = true; 113936 114586 libraryHaskellDepends = [ 113937 114587 base mtl tagged template-haskell vector 113938 114588 ]; ··· 114075 114725 sha256 = "0r9ykfkxpwsrhsvv691r361pf79a7y511hxy2mvd6ysz1441mych"; 114076 114726 revision = "1"; 114077 114727 editedCabalFile = "0d96j24n4v61q7ynrwaag96as2sl6q67kmypmb4wk42cw400g41j"; 114728 + enableSeparateDataOutput = true; 114078 114729 libraryHaskellDepends = [ 114079 114730 base binary containers directory haskell98 mtl parsec 114080 114731 ]; ··· 114132 114783 sha256 = "0dg5408il1s9z1v69k8vw80ypmkbanvqfsw8a5gi8l3b9xinjzg0"; 114133 114784 revision = "3"; 114134 114785 editedCabalFile = "09r09jbbj6a3qm07gj64pbszs72kpvab0320flg6rq9ng2pswv49"; 114786 + enableSeparateDataOutput = true; 114135 114787 libraryHaskellDepends = [ 114136 114788 base base-compat bytestring containers directory filepath ivory 114137 114789 ivory-artifact ivory-opts language-c-quote mainland-pretty monadLib ··· 114196 114848 editedCabalFile = "0ffshn32fv3qwf7gq0ms0ay21b21xvy0gb97ymg89plan18n2gx8"; 114197 114849 isLibrary = false; 114198 114850 isExecutable = true; 114851 + enableSeparateDataOutput = true; 114199 114852 executableHaskellDepends = [ 114200 114853 base base-compat ivory ivory-backend-c ivory-opts ivory-stdlib 114201 114854 monadLib pretty QuickCheck template-haskell ··· 114212 114865 pname = "ivory-hw"; 114213 114866 version = "0.1.0.5"; 114214 114867 sha256 = "0h21r9ij3n49b0m3dcjx22vyxc68v4jifl6yv1wpyn1hgrzxlyck"; 114868 + enableSeparateDataOutput = true; 114215 114869 libraryHaskellDepends = [ base filepath ivory ivory-artifact ]; 114216 114870 homepage = "http://ivorylang.org"; 114217 114871 description = "Ivory hardware model (STM32F4)"; ··· 114270 114924 pname = "ivory-serialize"; 114271 114925 version = "0.1.0.5"; 114272 114926 sha256 = "16hsvfrcrvqwcj75d1xdpb9njh0j66wy7vf4yv7q6vk7papvrwsf"; 114927 + enableSeparateDataOutput = true; 114273 114928 libraryHaskellDepends = [ 114274 114929 base base-compat filepath ivory ivory-artifact monadLib 114275 114930 ]; ··· 114284 114939 pname = "ivory-stdlib"; 114285 114940 version = "0.1.0.5"; 114286 114941 sha256 = "1sdbwy5sqa87zidfp7xmxwvfw3xx26kc8m68hgmhsxvs8j6xavmg"; 114942 + enableSeparateDataOutput = true; 114287 114943 libraryHaskellDepends = [ base filepath ivory ivory-artifact ]; 114288 114944 homepage = "http://ivorylang.org"; 114289 114945 description = "Ivory standard library"; ··· 114632 115288 sha256 = "0xlk07vcizp9rms5d28klidcf535ncffcx75rwixhvlii2qmyjn7"; 114633 115289 isLibrary = true; 114634 115290 isExecutable = true; 115291 + enableSeparateDataOutput = true; 114635 115292 libraryHaskellDepends = [ base ]; 114636 115293 executableHaskellDepends = [ 114637 115294 base bytestring directory filepath process regex-tdfa temporary ··· 114672 115329 sha256 = "1p4j42nzsbd2dsag2gfnngvbdn5vx9cp8lmli6x05sdywabyckc7"; 114673 115330 isLibrary = false; 114674 115331 isExecutable = true; 115332 + enableSeparateDataOutput = true; 114675 115333 executableHaskellDepends = [ array base pretty ]; 114676 115334 executableToolDepends = [ alex happy ]; 114677 115335 homepage = "http://github.com/andreasabel/java-adt"; ··· 115097 115755 pname = "join"; 115098 115756 version = "0.4"; 115099 115757 sha256 = "0bx9cvdhhw7z30qgxwpl0j23z18sx7xyin2y7bwxvg5ga737j8qx"; 115758 + enableSeparateDataOutput = true; 115100 115759 libraryHaskellDepends = [ base haskell98 multisetrewrite stm ]; 115101 115760 homepage = "http://sulzmann.blogspot.com/2008/12/parallel-join-patterns-with-guards-and.html"; 115102 115761 description = "Parallel Join Patterns with Guards and Propagation"; ··· 115268 115927 pname = "js-flot"; 115269 115928 version = "0.8.3"; 115270 115929 sha256 = "0yjyzqh3qzhy5h3nql1fckw0gcfb0f4wj9pm85nafpfqp2kg58hv"; 115930 + enableSeparateDataOutput = true; 115271 115931 libraryHaskellDepends = [ base ]; 115272 115932 testHaskellDepends = [ base HTTP ]; 115273 115933 homepage = "https://github.com/ndmitchell/js-flot#readme"; ··· 115294 115954 pname = "js-jquery"; 115295 115955 version = "3.1.1"; 115296 115956 sha256 = "011adwcf0rx57ld6c75m9rw90zd2qj0d4pf7rmdnf7fp5gbnfbyp"; 115957 + enableSeparateDataOutput = true; 115297 115958 libraryHaskellDepends = [ base ]; 115298 115959 testHaskellDepends = [ base HTTP ]; 115299 115960 doCheck = false; ··· 115308 115969 pname = "js-jquery"; 115309 115970 version = "3.2.1"; 115310 115971 sha256 = "03qymiwnk24sigqjnl42i77rsx6vrgg5wjday0f2j0d6s213sl30"; 115972 + enableSeparateDataOutput = true; 115311 115973 libraryHaskellDepends = [ base ]; 115312 115974 testHaskellDepends = [ base HTTP ]; 115313 115975 doCheck = false; ··· 116396 117058 sha256 = "060zq739i3xhr7w448p460r7x3jyyzf7pn61abp7f9g8vjn6vqw7"; 116397 117059 isLibrary = false; 116398 117060 isExecutable = true; 117061 + enableSeparateDataOutput = true; 116399 117062 executableHaskellDepends = [ 116400 117063 base base64-bytestring bytestring data-default-class docopt entropy 116401 117064 fast-logger http-types interpolatedstring-perl6 mtl mysql ··· 116906 117569 sha256 = "1q9rffh6589a5am8mvfzxzwws34vg08rdjxggfabhmg9y9jla6hz"; 116907 117570 revision = "11"; 116908 117571 editedCabalFile = "0l56snbdxbcwrmh7gna4237873d366dfbwp59a4wq1s51clhmb4z"; 117572 + enableSeparateDataOutput = true; 116909 117573 libraryHaskellDepends = [ 116910 117574 aeson base containers data-default-class scotty stm text time 116911 117575 transformers unordered-containers ··· 116927 117591 sha256 = "0pbciwh79y1pzqlpd2f8pm5w8bjq5bs47slqw71q09f7jlgs0i7d"; 116928 117592 isLibrary = true; 116929 117593 isExecutable = true; 117594 + enableSeparateDataOutput = true; 116930 117595 libraryHaskellDepends = [ 116931 117596 base bytestring cmdargs containers data-default data-reify 116932 117597 directory dotgen filepath netlist netlist-to-vhdl process random ··· 116949 117614 sha256 = "076hd8c59hivdirpf4y5vgdlvhq74lfd5zm6np34y8hblq6jyl0m"; 116950 117615 isLibrary = true; 116951 117616 isExecutable = true; 117617 + enableSeparateDataOutput = true; 116952 117618 libraryHaskellDepends = [ 116953 117619 ansi-terminal base bytestring data-default directory filepath 116954 117620 kansas-lava network sized-types ··· 116969 117635 pname = "kansas-lava-papilio"; 116970 117636 version = "0.3.1"; 116971 117637 sha256 = "0n8ffiygl72cbqza0whmkhsqyg6d7flfdz1jvr22g68x3005r00y"; 117638 + enableSeparateDataOutput = true; 116972 117639 libraryHaskellDepends = [ 116973 117640 ansi-terminal base bytestring data-default directory filepath 116974 117641 kansas-lava kansas-lava-cores netlist network sized-types ··· 116984 117651 pname = "kansas-lava-shake"; 116985 117652 version = "0.2.0"; 116986 117653 sha256 = "197nyj21r2z9a648ljmqkhzdbhy3syzw1rw4xfggn1rhk94px0rl"; 117654 + enableSeparateDataOutput = true; 116987 117655 libraryHaskellDepends = [ base hastache kansas-lava shake text ]; 116988 117656 description = "Shake rules for building Kansas Lava projects"; 116989 117657 license = stdenv.lib.licenses.bsd3; ··· 117318 117986 sha256 = "1skz1yllkwbpx4wd8w8q4zmqd3f62baaj5pja6dpqr2xviiv0j6g"; 117319 117987 isLibrary = false; 117320 117988 isExecutable = true; 117989 + enableSeparateDataOutput = true; 117321 117990 executableHaskellDepends = [ base ]; 117322 117991 homepage = "http://tcana.info/rpoku"; 117323 117992 description = "Rpoku spoken word programming language"; ··· 117729 118398 sha256 = "0kaka302qgax29583kvzhyl6fffzmywh3fk398xhzvixmza9k7sl"; 117730 118399 isLibrary = false; 117731 118400 isExecutable = true; 118401 + enableSeparateDataOutput = true; 117732 118402 executableHaskellDepends = [ 117733 118403 allocated-processor base bytestring cmdargs containers 117734 118404 cv-combinators directory filepath gio glib gtk gtk-helpers hgettext ··· 117934 118604 sha256 = "04lyrd78fkybh07y9xnbnk3ai1nsig55wr1i0p1c63v9sgzpria5"; 117935 118605 isLibrary = true; 117936 118606 isExecutable = true; 118607 + enableSeparateDataOutput = true; 117937 118608 libraryHaskellDepends = [ 117938 118609 aeson aeson-pretty ansi-wl-pprint api-tools asn1-encoding 117939 118610 asn1-types base base64-bytestring byteable bytestring cipher-aes ··· 118093 118764 sha256 = "1d8abd4l8mcgcfqmm06zmd7yxvfls1kqkphx64bi6mmqzy8lcx3k"; 118094 118765 isLibrary = false; 118095 118766 isExecutable = true; 118767 + enableSeparateDataOutput = true; 118096 118768 executableHaskellDepends = [ 118097 118769 base bytestring cmdargs hostname old-time parsec twine 118098 118770 ]; ··· 118937 119609 sha256 = "195xm7ncqfpj51vipmv7di1yqba9iy6c38a0rqrkji0w13aprp14"; 118938 119610 isLibrary = false; 118939 119611 isExecutable = true; 119612 + enableSeparateDataOutput = true; 118940 119613 executableHaskellDepends = [ 118941 119614 base lambdabot-core lambdabot-haskell-plugins lambdabot-irc-plugins 118942 119615 lambdabot-misc-plugins lambdabot-novelty-plugins ··· 119137 119810 sha256 = "18m7z0lmi26ib1n1wrql96wb5i229k8fk3iw4vavs9j59b4pz1br"; 119138 119811 isLibrary = true; 119139 119812 isExecutable = true; 119813 + enableSeparateDataOutput = true; 119140 119814 libraryHaskellDepends = [ 119141 119815 base cmdargs containers dyre glade gtk mtl network webkit 119142 119816 ]; ··· 119233 119907 sha256 = "1rylz8cxlf4llnakihphs7250bmvqqbz35aywjmh2vnghyc8dq28"; 119234 119908 isLibrary = true; 119235 119909 isExecutable = true; 119910 + enableSeparateDataOutput = true; 119236 119911 libraryHaskellDepends = [ 119237 119912 aeson ansi-wl-pprint base containers directory exceptions filepath 119238 119913 lambdacube-ir megaparsec mtl pretty-show semigroups text vector ··· 119314 119989 sha256 = "14l40ncbkblphmyn4prqiy2w70agcw830bpyawfdilf93bs340b9"; 119315 119990 isLibrary = false; 119316 119991 isExecutable = true; 119992 + enableSeparateDataOutput = true; 119317 119993 executableHaskellDepends = [ 119318 119994 base elerea GLFW-b lambdacube-engine mtl 119319 119995 ]; ··· 119373 120049 sha256 = "0zl9d524a81vg3h7f9cbfi34b0hw452bd30xmgvg9ayfwxa842d1"; 119374 120050 isLibrary = false; 119375 120051 isExecutable = true; 120052 + enableSeparateDataOutput = true; 119376 120053 executableHaskellDepends = [ 119377 120054 base bytestring bytestring-trie elerea GLFW-b lambdacube-core 119378 120055 lambdacube-edsl lambdacube-gl mtl OpenGLRaw stb-image time vect ··· 119475 120152 pname = "lame"; 119476 120153 version = "0.1.1"; 119477 120154 sha256 = "0j35zpfhppb09m6h23awxgsawisvgsnrw7d99f5z3xq2bjihjq5k"; 120155 + enableSeparateDataOutput = true; 119478 120156 libraryHaskellDepends = [ 119479 120157 base bytestring data-default-class directory exceptions filepath 119480 120158 text transformers wave ··· 119611 120289 pname = "language-c-comments"; 119612 120290 version = "0.3"; 119613 120291 sha256 = "1rmciff72zpcq7pvbbxlsg2339dbk00k18vxp35sz8haql0jnrf2"; 120292 + enableSeparateDataOutput = true; 119614 120293 libraryHaskellDepends = [ array base language-c ]; 119615 120294 libraryToolDepends = [ alex ]; 119616 120295 homepage = "http://github.com/ghulette/language-c-comments"; ··· 119948 120627 pname = "language-guess"; 119949 120628 version = "0.1.2"; 119950 120629 sha256 = "0gdnkc1hb0mcn494vk9r7fw19hvaba807brwh6fna0sxyh2nx3p0"; 120630 + enableSeparateDataOutput = true; 119951 120631 libraryHaskellDepends = [ base bytestring cereal containers ]; 119952 120632 description = "Guess at which language a text is written in using trigrams"; 119953 120633 license = stdenv.lib.licenses.bsd3; ··· 120298 120978 sha256 = "1vjmb41hh47gmqv3g7f28rkb3lj8hqpdc7pvs6qa9f6pmqi98m4v"; 120299 120979 isLibrary = true; 120300 120980 isExecutable = true; 120981 + enableSeparateDataOutput = true; 120301 120982 libraryHaskellDepends = [ 120302 120983 aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring 120303 120984 case-insensitive containers cryptonite directory either exceptions ··· 120342 121023 sha256 = "0hk1fx574hkmm275rm4jv66vr9gixllaw2vqklhpx54rgjwpcclv"; 120343 121024 isLibrary = true; 120344 121025 isExecutable = true; 121026 + enableSeparateDataOutput = true; 120345 121027 libraryHaskellDepends = [ 120346 121028 aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring 120347 121029 case-insensitive containers cryptonite directory either exceptions ··· 120881 121563 sha256 = "1k39264jwysaiyq9f40n332y2xckhwsbh8fpsz4l14qwlvj68vzx"; 120882 121564 isLibrary = false; 120883 121565 isExecutable = true; 121566 + enableSeparateDataOutput = true; 120884 121567 executableHaskellDepends = [ 120885 121568 base cmdargs composition data-lens Gamgine GLFW-b ListZipper mtl 120886 121569 OpenGLRaw pretty-show ··· 121215 121898 sha256 = "1czk4d2xa2g7djdz669h1q6ciflzwxm4n05m9jv3d3z7r6fcch6z"; 121216 121899 isLibrary = false; 121217 121900 isExecutable = true; 121901 + enableSeparateDataOutput = true; 121218 121902 executableHaskellDepends = [ 121219 121903 base blaze-html directory filepath pandoc split 121220 121904 ]; ··· 121386 122070 sha256 = "106pr7rlma67dqqyfhknh9fb6r37lsj00qjx1dq3xx7yxp368nvr"; 121387 122071 isLibrary = false; 121388 122072 isExecutable = true; 122073 + enableSeparateDataOutput = true; 121389 122074 executableHaskellDepends = [ base containers ]; 121390 122075 homepage = "http://github.com/phaazon/leetify"; 121391 122076 description = "Leetify text"; ··· 121506 122191 editedCabalFile = "0iqg1qlfh6knmlq29ydzp2qs75aa6a2rpl5l5fzp1b1lcsh8njdm"; 121507 122192 isLibrary = true; 121508 122193 isExecutable = true; 122194 + enableSeparateDataOutput = true; 121509 122195 libraryHaskellDepends = [ 121510 122196 array base base-compat binary binary-shared blaze-html bytestring 121511 122197 Cabal conduit containers cpphs deepseq directory executable-path ··· 121545 122231 sha256 = "0haj6pi593x0chkvkvvv6d523fmg8vd0hjzkj8sjf8h8ys0sg9k2"; 121546 122232 isLibrary = true; 121547 122233 isExecutable = true; 122234 + enableSeparateDataOutput = true; 121548 122235 libraryHaskellDepends = [ 121549 122236 attoparsec base bin-package-db binary binary-shared bytestring 121550 122237 Cabal conduit conduit-extra containers deepseq directory ··· 122223 122910 sha256 = "1x50k6lx9p36qxl0qn9zfyqlkgsq3wdzvcv7l6sn920hg5scvcr3"; 122224 122911 isLibrary = false; 122225 122912 isExecutable = true; 122913 + enableSeparateDataOutput = true; 122226 122914 executableHaskellDepends = [ 122227 122915 ansi-wl-pprint base binary bytestring bytestring-trie Cabal 122228 122916 containers core derive digest directory extensible-exceptions ··· 122258 122946 sha256 = "1mm6ikiv6zj025yh5abq3f8mqkw9302mfzd01xcihbh74bsdpi9l"; 122259 122947 isLibrary = false; 122260 122948 isExecutable = true; 122949 + enableSeparateDataOutput = true; 122261 122950 executableHaskellDepends = [ 122262 122951 base cmdargs filepath haskell-src-exts syb uu-parsinglib 122263 122952 ]; ··· 122275 122964 sha256 = "1cwvpn6cl0d5rs5x6q3c2pw4l4hpxz20sr717mggafzsj6j7cccv"; 122276 122965 isLibrary = false; 122277 122966 isExecutable = true; 122967 + enableSeparateDataOutput = true; 122278 122968 executableHaskellDepends = [ base directory filepath Glob ]; 122279 122969 description = "Compile lhs in bird style to md, html, hs"; 122280 122970 license = stdenv.lib.licenses.publicDomain; ··· 122323 123013 pname = "libGenI"; 122324 123014 version = "0.16.1"; 122325 123015 sha256 = "1n37pccmx0466425zcbdfpgivsrnqzwsm0nwcjv8lkg8jxjxrwmz"; 123016 + enableSeparateDataOutput = true; 122326 123017 libraryHaskellDepends = [ 122327 123018 base binary containers HUnit mtl parsec process QuickCheck 122328 123019 ]; ··· 122560 123251 pname = "liblawless"; 122561 123252 version = "0.24.0"; 122562 123253 sha256 = "1dqz2d8zgwb8i176fhga5637y8mfxiq0vq1ws0lsy9ijlpyiikmp"; 123254 + enableSeparateDataOutput = true; 122563 123255 libraryHaskellDepends = [ 122564 123256 aeson base base-unicode-symbols binary boomerang bytestring 122565 123257 concurrent-machines containers containers-unicode-symbols ··· 122930 123622 pname = "libtagc"; 122931 123623 version = "0.12.0"; 122932 123624 sha256 = "1f7r82cfrkxrqcrxk92y6zhk79qwpack2g67crww5q8hs7438vja"; 123625 + enableSeparateDataOutput = true; 122933 123626 libraryHaskellDepends = [ base bytestring glib ]; 122934 123627 librarySystemDepends = [ taglib ]; 122935 123628 libraryPkgconfigDepends = [ taglib ]; ··· 123104 123797 sha256 = "0drsv1d0318yr7a0aa2j6kvsiyl8jj8h4z6wpdnrcyxw6z4qlssq"; 123105 123798 isLibrary = false; 123106 123799 isExecutable = true; 123800 + enableSeparateDataOutput = true; 123107 123801 executableHaskellDepends = [ array base GLUT OpenGL random ]; 123108 123802 homepage = "http://github.com/sproingie/haskell-cells/"; 123109 123803 description = "Conway's Life cellular automaton"; ··· 123219 123913 sha256 = "11c0j2mdrp4rvinl4iym9mfsqzh101yb5sf710vm8n7qih1fzcpc"; 123220 123914 isLibrary = false; 123221 123915 isExecutable = true; 123916 + enableSeparateDataOutput = true; 123222 123917 executableHaskellDepends = [ 123223 123918 array base bitmap bytestring directory filepath gloss mtl stb-image 123224 123919 ]; ··· 123399 124094 editedCabalFile = "0bvcyh2mryg78kd2yrxz0g67ry4bb23xvrg7pnl0jla49wzg8pjf"; 123400 124095 isLibrary = true; 123401 124096 isExecutable = true; 124097 + enableSeparateDataOutput = true; 123402 124098 libraryHaskellDepends = [ 123403 124099 aeson base bifunctors bytestring containers deepseq delay 123404 124100 exceptions filepath hashable hedis http-types lens monad-supply mtl ··· 123641 124337 base bytestring conduit pcap transformers 123642 124338 isLibrary = true; 123643 124339 isExecutable = true; 124340 + enableSeparateDataOutput = true; 123644 124341 base bytestring conduit pcap transformers 123645 124342 base bytestring conduit pcap transformers 123646 124343 license = stdenv.lib.licenses.bsd3; ··· 123795 124492 base bytestring conduit pcap transformers 123796 124493 isLibrary = false; 123797 124494 isExecutable = true; 124495 + enableSeparateDataOutput = true; 123798 124496 executableHaskellDepends = [ 123799 124497 base bytestring conduit pcap transformers 123800 124498 ]; ··· 123812 124510 base bytestring conduit pcap transformers 123813 124511 isLibrary = false; 123814 124512 isExecutable = true; 124513 + enableSeparateDataOutput = true; 123815 124514 executableHaskellDepends = [ 123816 124515 base bytestring conduit pcap transformers 123817 124516 ]; ··· 124036 124735 base bytestring conduit pcap transformers 124037 124736 isLibrary = true; 124038 124737 isExecutable = true; 124738 + enableSeparateDataOutput = true; 124039 124739 libraryHaskellDepends = [ 124040 124740 base bytestring conduit pcap transformers 124041 124741 ]; ··· 124157 124857 base bytestring conduit pcap transformers 124158 124858 isLibrary = true; 124159 124859 isExecutable = true; 124860 + enableSeparateDataOutput = true; 124160 124861 libraryHaskellDepends = [ 124161 124862 base bytestring conduit pcap transformers 124162 124863 base bytestring conduit pcap transformers ··· 124260 124961 base bytestring conduit pcap transformers 124261 124962 isLibrary = true; 124262 124963 isExecutable = true; 124964 + enableSeparateDataOutput = true; 124263 124965 libraryHaskellDepends = [ 124264 124966 base bytestring conduit pcap transformers 124265 124967 base bytestring conduit pcap transformers ··· 124670 125372 base bytestring conduit pcap transformers 124671 125373 isLibrary = true; 124672 125374 isExecutable = true; 125375 + enableSeparateDataOutput = true; 124673 125376 base bytestring conduit pcap transformers 124674 125377 executableHaskellDepends = [ 124675 125378 base bytestring conduit pcap transformers ··· 124820 125523 base bytestring conduit pcap transformers 124821 125524 version = "0.3.0"; 124822 125525 base bytestring conduit pcap transformers 125526 + enableSeparateDataOutput = true; 124823 125527 libraryHaskellDepends = [ 124824 125528 base bytestring conduit pcap transformers 124825 125529 base bytestring conduit pcap transformers ··· 125093 125797 base bytestring conduit pcap transformers 125094 125798 isLibrary = false; 125095 125799 isExecutable = true; 125800 + enableSeparateDataOutput = true; 125096 125801 executableHaskellDepends = [ 125097 125802 base bytestring conduit pcap transformers 125098 125803 ]; ··· 125171 125876 base bytestring conduit pcap transformers 125172 125877 isLibrary = true; 125173 125878 isExecutable = true; 125879 + enableSeparateDataOutput = true; 125174 125880 libraryHaskellDepends = [ 125175 125881 base bytestring conduit pcap transformers 125176 125882 base bytestring conduit pcap transformers ··· 125343 126049 base bytestring conduit pcap transformers 125344 126050 version = "0.0.7"; 125345 126051 base bytestring conduit pcap transformers 126052 + enableSeparateDataOutput = true; 125346 126053 libraryHaskellDepends = [ 125347 126054 base bytestring conduit pcap transformers 125348 126055 ]; ··· 126316 127023 base bytestring conduit pcap transformers 126317 127024 base bytestring conduit pcap transformers 126318 127025 base bytestring conduit pcap transformers 127026 + enableSeparateDataOutput = true; 126319 127027 libraryHaskellDepends = [ 126320 127028 base bytestring conduit pcap transformers 126321 127029 base bytestring conduit pcap transformers ··· 126435 127143 base bytestring conduit pcap transformers 126436 127144 isLibrary = true; 126437 127145 isExecutable = true; 127146 + enableSeparateDataOutput = true; 126438 127147 libraryHaskellDepends = [ 126439 127148 base bytestring conduit pcap transformers 126440 127149 base bytestring conduit pcap transformers ··· 126946 127655 base bytestring conduit pcap transformers 126947 127656 isLibrary = false; 126948 127657 isExecutable = true; 127658 + enableSeparateDataOutput = true; 126949 127659 executableHaskellDepends = [ 126950 127660 base bytestring conduit pcap transformers 126951 127661 base bytestring conduit pcap transformers ··· 127006 127716 base bytestring conduit pcap transformers 127007 127717 base bytestring conduit pcap transformers 127008 127718 base bytestring conduit pcap transformers 127719 + enableSeparateDataOutput = true; 127009 127720 base bytestring conduit pcap transformers 127010 127721 base bytestring conduit pcap transformers 127011 127722 base bytestring conduit pcap transformers ··· 127568 128279 base bytestring conduit pcap transformers 127569 128280 base bytestring conduit pcap transformers 127570 128281 base bytestring conduit pcap transformers 128282 + enableSeparateDataOutput = true; 127571 128283 libraryHaskellDepends = [ base binary bytestring ]; 127572 128284 base bytestring conduit pcap transformers 127573 128285 base bytestring conduit pcap transformers ··· 127679 128391 base bytestring conduit pcap transformers 127680 128392 isLibrary = false; 127681 128393 isExecutable = true; 128394 + enableSeparateDataOutput = true; 127682 128395 base bytestring conduit pcap transformers 127683 128396 executableSystemDepends = [ ncurses ]; 127684 128397 base bytestring conduit pcap transformers ··· 127772 128485 base bytestring conduit pcap transformers 127773 128486 isLibrary = false; 127774 128487 isExecutable = true; 128488 + enableSeparateDataOutput = true; 127775 128489 executableHaskellDepends = [ 127776 128490 base bytestring conduit pcap transformers 127777 128491 base bytestring conduit pcap transformers ··· 127793 128507 base bytestring conduit pcap transformers 127794 128508 isLibrary = false; 127795 128509 isExecutable = true; 128510 + enableSeparateDataOutput = true; 127796 128511 executableHaskellDepends = [ 127797 128512 base bytestring conduit pcap transformers 127798 128513 base bytestring conduit pcap transformers ··· 127992 128707 base bytestring conduit pcap transformers 127993 128708 isLibrary = false; 127994 128709 isExecutable = true; 128710 + enableSeparateDataOutput = true; 127995 128711 executableHaskellDepends = [ 127996 128712 base bytestring conduit pcap transformers 127997 128713 base bytestring conduit pcap transformers ··· 128134 128850 sha256 = "01blfcfynfbshznrz4arn89j7s063s7xhlkqnzbv42wqk04i083h"; 128135 128851 isLibrary = true; 128136 128852 isExecutable = true; 128853 + enableSeparateDataOutput = true; 128137 128854 libraryHaskellDepends = [ 128138 128855 base binary containers dbus-client derive filepath gtk manatee-core 128139 128856 mtl stm text utf8-string webkit ··· 128179 128896 sha256 = "0v525dcg6cs8mfrcbaxk9vx86gnd37c2z8gp9q8fck11616vckvn"; 128180 128897 isLibrary = true; 128181 128898 isExecutable = true; 128899 + enableSeparateDataOutput = true; 128182 128900 libraryHaskellDepends = [ 128183 128901 base binary bytestring containers curl dbus-client dbus-core derive 128184 128902 directory filepath gio glib gtk manatee-core mtl network old-locale ··· 128200 128918 sha256 = "0rd6xjc1hmvfchwjh32ij4sa36z0v6b1k81gnx7278qqsscmgl9y"; 128201 128919 isLibrary = true; 128202 128920 isExecutable = true; 128921 + enableSeparateDataOutput = true; 128203 128922 libraryHaskellDepends = [ 128204 128923 base binary bytestring containers dbus-client dbus-core derive 128205 128924 filepath gtk gtksourceview2 manatee-core regex-tdfa stm text ··· 128220 128939 sha256 = "06zrhycpsnfi8r3a071p6qlrqidddv004h10zcglb9ryhw0sh2p1"; 128221 128940 isLibrary = true; 128222 128941 isExecutable = true; 128942 + enableSeparateDataOutput = true; 128223 128943 libraryHaskellDepends = [ 128224 128944 base binary containers dbus-client derive filepath gio glib gtk 128225 128945 manatee-core mtl old-locale old-time stm text utf8-string ··· 128240 128960 sha256 = "0yn32xsckvw96kxskfhgcqg98rffl07hkwfjzyd7cm221hwd9s0g"; 128241 128961 isLibrary = true; 128242 128962 isExecutable = true; 128963 + enableSeparateDataOutput = true; 128243 128964 libraryHaskellDepends = [ 128244 128965 base binary containers dbus-client derive filepath gio glib gtk 128245 128966 gtkimageview manatee-core regex-tdfa stm text utf8-string ··· 128262 128983 sha256 = "0l14r4mw5bwyjzs5m49sp3vdi2lzfgyjwhsb0q94l3937wb4abgy"; 128263 128984 isLibrary = true; 128264 128985 isExecutable = true; 128986 + enableSeparateDataOutput = true; 128265 128987 libraryHaskellDepends = [ 128266 128988 array base binary bytestring Cabal containers curl dbus-client 128267 128989 dbus-core derive fastirc filepath ghc GoogleTranslate groom gtk ··· 128284 129006 sha256 = "1jg9ikshscpjyq73g125acqndd049ry8zw7h0gglsi63xbqpldz4"; 128285 129007 isLibrary = true; 128286 129008 isExecutable = true; 129009 + enableSeparateDataOutput = true; 128287 129010 libraryHaskellDepends = [ 128288 129011 base binary bytestring containers dbus-client dbus-core derive 128289 129012 filepath gio gtk libtagc manatee-core process random regex-tdfa stm ··· 128305 129028 sha256 = "0k00drrk7mpbc8ak5cwzx245xf968186dkc12cxp7n2h2mccb456"; 128306 129029 isLibrary = true; 128307 129030 isExecutable = true; 129031 + enableSeparateDataOutput = true; 128308 129032 libraryHaskellDepends = [ 128309 129033 base binary cairo containers dbus-client derive filepath gtk 128310 129034 manatee-core mtl poppler stm text utf8-string ··· 128324 129048 sha256 = "1zxkfil6anh2v692ky9l6gf40784y2czbx8853xmypnhnvgr95ll"; 128325 129049 isLibrary = true; 128326 129050 isExecutable = true; 129051 + enableSeparateDataOutput = true; 128327 129052 libraryHaskellDepends = [ 128328 129053 base binary containers dbus-client derive filepath gtk manatee-core 128329 129054 proc stm text ··· 128344 129069 sha256 = "07zkjg1q3gdqiw1pp0325pyvh84740mxvlf8k6sc6l1l258zpk90"; 128345 129070 isLibrary = true; 128346 129071 isExecutable = true; 129072 + enableSeparateDataOutput = true; 128347 129073 libraryHaskellDepends = [ 128348 129074 base binary containers curl dbus-client derive download-curl feed 128349 129075 filepath gtk manatee-core stm text utf8-string webkit ··· 128383 129109 sha256 = "1aj1pghad0jdm3biy9f4caahvpyby0ia3clrl8lg2rmp2j703wkd"; 128384 129110 isLibrary = true; 128385 129111 isExecutable = true; 129112 + enableSeparateDataOutput = true; 128386 129113 libraryHaskellDepends = [ 128387 129114 base binary containers dbus-client derive filepath gtk manatee-core 128388 129115 stm text unix vte ··· 128460 129187 sha256 = "1wrpzai3482c9g7zfacmjszi6h073ip00fbq17nyc22z2zw4908s"; 128461 129188 isLibrary = false; 128462 129189 isExecutable = true; 129190 + enableSeparateDataOutput = true; 128463 129191 executableHaskellDepends = [ 128464 129192 array base bytestring containers directory filepath GLUT hslua time 128465 129193 ]; ··· 128605 129333 sha256 = "0ic6jcdsx71qnclv1xvpk812n1fvwm1mvwlj7b2jx5qwvbibvpci"; 128606 129334 isLibrary = true; 128607 129335 isExecutable = true; 129336 + enableSeparateDataOutput = true; 128608 129337 libraryHaskellDepends = [ 128609 129338 ansi-terminal base containers directory haskeline parsec 128610 129339 ]; ··· 128822 129551 sha256 = "09gfmh9hdzyjijkv2h5a6gfa9rfmba2642rhhh80wsw9y4rg8ns1"; 128823 129552 isLibrary = false; 128824 129553 isExecutable = true; 129554 + enableSeparateDataOutput = true; 128825 129555 executableHaskellDepends = [ 128826 129556 base cmdargs directory glib gtk gtk2hs-buildtools MissingH mtl 128827 129557 pandoc temporary text transformers webkit ··· 128931 129661 editedCabalFile = "1aszssi82ap0y6bkviv3vn6cdh3vb0pv1znvs2z5k52r4wwa8h55"; 128932 129662 isLibrary = true; 128933 129663 isExecutable = true; 129664 + enableSeparateDataOutput = true; 128934 129665 libraryHaskellDepends = [ 128935 129666 aeson base bytestring conduit configurator deepseq hashable 128936 129667 haskeline http-client http-client-tls http-types irc-conduit lens ··· 128978 129709 sha256 = "0bszb1czqm7pvz8m24z06irzfrw4ch8bm8g59apdgvmp8y0yvp91"; 128979 129710 isLibrary = true; 128980 129711 isExecutable = true; 129712 + enableSeparateDataOutput = true; 128981 129713 libraryHaskellDepends = [ 128982 129714 base containers directory filepath haskell-src-exts labeled-tree 128983 129715 lens lp-diagrams mtl process text ··· 129094 129826 sha256 = "1mbbf0fljaiakw0hw72wsyc1isvylrr7q7wjcyac250lflbkg9dv"; 129095 129827 isLibrary = false; 129096 129828 isExecutable = true; 129829 + enableSeparateDataOutput = true; 129097 129830 executableHaskellDepends = [ 129098 129831 base bytestring ConfigFile containers data-default deepseq 129099 129832 directory either filepath fsnotify HStringTemplate HTTP http-server ··· 129307 130040 pname = "matrix-market-attoparsec"; 129308 130041 version = "0.1.0.8"; 129309 130042 sha256 = "0xqa4q4wyjjh55lggsyjhsi0kb5rhk3afzk0qhnhdmnzmf0slhay"; 130043 + enableSeparateDataOutput = true; 129310 130044 libraryHaskellDepends = [ 129311 130045 attoparsec base bytestring exceptions scientific 129312 130046 ]; ··· 129340 130074 sha256 = "15pjqyy9qs9bn2vfayl73h5maf01snv7rvq1acb3ly8pain36lh4"; 129341 130075 isLibrary = false; 129342 130076 isExecutable = true; 130077 + enableSeparateDataOutput = true; 129343 130078 executableHaskellDepends = [ 129344 130079 base ConfigFile containers directory MissingH mtl network 129345 130080 old-locale split time vty vty-ui XMPP ··· 129362 130097 }: 129363 130098 mkDerivation { 129364 130099 pname = "matterhorn"; 129365 - version = "31000.0.0"; 129366 - sha256 = "0kkyalrqfaq851lnj8vbrffyg2yjbr5mhqrh8a2y4hkd8yx1ji36"; 130100 + version = "40000.0.0"; 130101 + sha256 = "1cr4mnqqdwf137v4r6mgc7p1b20hm4pdvm6qs61zrhlgimy9zmln"; 129367 130102 isLibrary = false; 129368 130103 isExecutable = true; 129369 130104 executableHaskellDepends = [ ··· 129387 130122 }) {}; 129388 130123 129389 130124 "mattermost-api" = callPackage 129390 - ({ mkDerivation, aeson, base, bytestring, connection, containers 129391 - , gitrev, hashable, HTTP, HUnit, memory, microlens, microlens-th 129392 - , mtl, network-uri, pretty-show, process, stm, tasty, tasty-hunit 129393 - , template-haskell, text, time, unordered-containers, websockets 130125 + ({ mkDerivation, aeson, base, binary, bytestring, connection 130126 + , containers, gitrev, hashable, HTTP, HUnit, memory, microlens 130127 + , microlens-th, mtl, network-uri, pretty-show, process, stm, tasty 130128 + , tasty-hunit, template-haskell, text, time, unordered-containers 130129 + , websockets 129394 130130 }: 129395 130131 mkDerivation { 129396 130132 pname = "mattermost-api"; 129397 - version = "31000.0.0"; 129398 - sha256 = "1v5m57qsd155rr6nz3y1yzvs2imia4ld3xb2ccha0cnbki6hw6wb"; 130133 + version = "40000.0.0"; 130134 + sha256 = "0c2c09hmq8n44na0i20hqj57cv5wr9yy4apvhdn0xvgfs155wgp9"; 129399 130135 isLibrary = true; 129400 130136 isExecutable = true; 129401 130137 libraryHaskellDepends = [ 129402 - aeson base bytestring connection containers gitrev hashable HTTP 129403 - memory microlens microlens-th network-uri pretty-show process stm 129404 - template-haskell text time unordered-containers websockets 130138 + aeson base binary bytestring connection containers gitrev hashable 130139 + HTTP memory microlens microlens-th network-uri pretty-show process 130140 + stm template-haskell text time unordered-containers websockets 129405 130141 ]; 129406 130142 executableHaskellDepends = [ 129407 130143 aeson base connection pretty-show process text unordered-containers ··· 129421 130157 }: 129422 130158 mkDerivation { 129423 130159 pname = "mattermost-api-qc"; 129424 - version = "31000.0.0"; 129425 - sha256 = "1sjw31vg02ygxb61m2cvhl435zgsk6w5gnl4v34qd9ihbq4laa9r"; 130160 + version = "40000.0.0"; 130161 + sha256 = "0pnwzay7w9jmdrq26sj3in127c5dywbzhwi12vcf09q4mi43zqwb"; 129426 130162 libraryHaskellDepends = [ 129427 130163 base containers mattermost-api QuickCheck text time 129428 130164 ]; ··· 129540 130276 sha256 = "0vv4y1a0z2vsg7jakqphn9z4agyir8m3l90a680bm549zkw7blhw"; 129541 130277 isLibrary = false; 129542 130278 isExecutable = true; 130279 + enableSeparateDataOutput = true; 129543 130280 executableHaskellDepends = [ 129544 130281 base base-unicode-symbols boxes containers 129545 130282 containers-unicode-symbols fgl HaLeX indentparser mtl parsec ··· 130260 130997 license = stdenv.lib.licenses.bsd2; 130261 130998 }) {}; 130262 130999 130263 - "megaparsec_5_3_1" = callPackage 130264 - ({ mkDerivation, base, bytestring, containers, criterion, deepseq 130265 - , exceptions, hspec, hspec-expectations, mtl, QuickCheck 130266 - , scientific, text, transformers, weigh 131000 + "megaparsec_6_0_0" = callPackage 131001 + ({ mkDerivation, base, bytestring, case-insensitive, containers 131002 + , criterion, deepseq, hspec, hspec-expectations, mtl 131003 + , parser-combinators, QuickCheck, scientific, text, transformers 131004 + , weigh 130267 131005 }: 130268 131006 mkDerivation { 130269 131007 pname = "megaparsec"; 130270 - version = "5.3.1"; 130271 - sha256 = "06myn8l6jcbd494i3wr6q27npbbxd6c2gfkd2jdzwbjqjqbpv0j8"; 131008 + version = "6.0.0"; 131009 + sha256 = "182xvni3ambq6j7m377fpaj2cf6119dxxr5f0h88yc5jw8r9780c"; 130272 131010 libraryHaskellDepends = [ 130273 - base bytestring containers deepseq exceptions mtl QuickCheck 130274 - scientific text transformers 131011 + base bytestring case-insensitive containers deepseq mtl 131012 + parser-combinators scientific text transformers 130275 131013 ]; 130276 131014 testHaskellDepends = [ 130277 - base bytestring containers exceptions hspec hspec-expectations mtl 130278 - QuickCheck scientific text transformers 131015 + base bytestring containers hspec hspec-expectations mtl QuickCheck 131016 + scientific text transformers 130279 131017 ]; 130280 - benchmarkHaskellDepends = [ base criterion deepseq weigh ]; 131018 + benchmarkHaskellDepends = [ base criterion deepseq text weigh ]; 130281 131019 homepage = "https://github.com/mrkkrp/megaparsec"; 130282 131020 description = "Monadic parser combinators"; 130283 131021 license = stdenv.lib.licenses.bsd2; ··· 130290 131028 pname = "meldable-heap"; 130291 131029 version = "2.0.3"; 130292 131030 sha256 = "1p75zjlls38sd1lma7w95mpmb9kdff19s2as6pz1ki1g20nnxdk3"; 131031 + enableSeparateDataOutput = true; 130293 131032 libraryHaskellDepends = [ base ]; 130294 131033 homepage = "http://code.google.com/p/priority-queues/"; 130295 131034 description = "Asymptotically optimal, Coq-verified meldable heaps, AKA priority queues"; ··· 130675 131414 sha256 = "1xcisngfsw5fd5h7idvni85fap2yh85q01615spfr4y4ia5kq05r"; 130676 131415 isLibrary = false; 130677 131416 isExecutable = true; 131417 + enableSeparateDataOutput = true; 130678 131418 executableHaskellDepends = [ base haskeline transformers ]; 130679 131419 homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/memscript"; 130680 131420 description = "Command line utility for memorizing scriptures or any other text"; ··· 131305 132045 sha256 = "1xvmyjv72v2cd9h4qkq5vxa6ylzdnkf4pk7afs316mzvx68fab4h"; 131306 132046 isLibrary = true; 131307 132047 isExecutable = true; 132048 + enableSeparateDataOutput = true; 131308 132049 libraryHaskellDepends = [ 131309 132050 base containers exceptions haskeline HCodecs megaparsec mtl 131310 132051 QuickCheck random text tf-random transformers ··· 131443 132184 pname = "midi-utils"; 131444 132185 version = "0.1.0.0"; 131445 132186 sha256 = "1dlxihyjx1s1vj57j0fnalav8kq5yxlwlaz0ixmx4aj6glgzp8iz"; 132187 + enableSeparateDataOutput = true; 131446 132188 libraryHaskellDepends = [ 131447 132189 base bytestring directory event-list midi parsec process 131448 132190 ]; ··· 131500 132242 sha256 = "0xl6x4755x8sz2igqfp3mr5n29q7hb4v5b1mycah9vffk1bhi0yf"; 131501 132243 isLibrary = false; 131502 132244 isExecutable = true; 132245 + enableSeparateDataOutput = true; 131503 132246 executableHaskellDepends = [ 131504 132247 base bytestring c10k directory filepath haskell98 hdaemonize 131505 132248 hslogger network parsec time unix webserver ··· 131525 132268 sha256 = "1mfqpmvypr67f7kxlagbqydf45lji59zyvwmflyhwjmyc8kcf90g"; 131526 132269 isLibrary = true; 131527 132270 isExecutable = true; 132271 + enableSeparateDataOutput = true; 131528 132272 libraryHaskellDepends = [ 131529 132273 array async auto-update base blaze-builder byteorder bytestring 131530 132274 case-insensitive conduit conduit-extra directory filepath http-date ··· 131762 132506 sha256 = "16s98hwskycl2bqv1n2bnivh8w8q3xhhj687hk8flcg9s9ny4s8k"; 131763 132507 isLibrary = false; 131764 132508 isExecutable = true; 132509 + enableSeparateDataOutput = true; 131765 132510 executableHaskellDepends = [ base directory mtl random ]; 131766 132511 homepage = "http://finder.homelinux.org/haskell/Mines"; 131767 132512 description = "Minesweeper simulation using neural networks"; ··· 131778 132523 sha256 = "1cbw136wl9rdcl4vbbz9i5w1mw33qhr0gzbww0qf63zfz2lg4gs2"; 131779 132524 isLibrary = false; 131780 132525 isExecutable = true; 132526 + enableSeparateDataOutput = true; 131781 132527 executableHaskellDepends = [ 131782 132528 base binary binary-generic bytestring cairo containers directory 131783 132529 filepath glade gtk random time ··· 132176 132922 sha256 = "0j93zqgqskrj2zc0vwsmwldidr6nkcxq2v3mmzv7l7l1bwhl8jxf"; 132177 132923 isLibrary = true; 132178 132924 isExecutable = true; 132925 + enableSeparateDataOutput = true; 132179 132926 libraryHaskellDepends = [ 132180 132927 base bytestring cereal directory filepath knob random-fu semigroups 132181 132928 text utf8-string vector ··· 132306 133053 sha256 = "1qzfmf92sx5vq5jxrqhln1a6y8kayrip36izf5m8hryymxd4dard"; 132307 133054 isLibrary = false; 132308 133055 isExecutable = true; 133056 + enableSeparateDataOutput = true; 132309 133057 executableHaskellDepends = [ base directory filepath haskell98 ]; 132310 133058 description = "Makes an OS X .app bundle from a binary."; 132311 133059 license = "GPL"; ··· 132787 133535 sha256 = "1xkkkb1ili45icvlmz2r5i42qf1fib01ywqywgq4n53cyx1ncqa9"; 132788 133536 isLibrary = true; 132789 133537 isExecutable = true; 133538 + enableSeparateDataOutput = true; 132790 133539 libraryHaskellDepends = [ 132791 133540 base bytestring containers data-accessor directory 132792 133541 explicit-exception filepath html HTTP network network-uri ··· 132835 133584 pname = "mollie-api-haskell"; 132836 133585 version = "0.2.0.0"; 132837 133586 sha256 = "1k2sx65d486dzb9xs2byi3p4ppacj2qjknhqx2kd0020zi7w9s5n"; 133587 + enableSeparateDataOutput = true; 132838 133588 libraryHaskellDepends = [ 132839 133589 aeson base bytestring HsOpenSSL http-client http-client-openssl 132840 133590 http-types mtl text time ··· 133248 133998 license = stdenv.lib.licenses.mit; 133249 133999 }) {}; 133250 134000 134001 + "monad-logger_0_3_25" = callPackage 134002 + ({ mkDerivation, base, blaze-builder, bytestring, conduit 134003 + , conduit-extra, exceptions, fast-logger, lifted-base 134004 + , monad-control, monad-loops, mtl, resourcet, stm, stm-chans 134005 + , template-haskell, text, transformers, transformers-base 134006 + , transformers-compat 134007 + }: 134008 + mkDerivation { 134009 + pname = "monad-logger"; 134010 + version = "0.3.25"; 134011 + sha256 = "1ai55mk3n72qcdh7b6n4sv8bh5wqf2nznpzldimrwxg3m2b6g88g"; 134012 + libraryHaskellDepends = [ 134013 + base blaze-builder bytestring conduit conduit-extra exceptions 134014 + fast-logger lifted-base monad-control monad-loops mtl resourcet stm 134015 + stm-chans template-haskell text transformers transformers-base 134016 + transformers-compat 134017 + ]; 134018 + homepage = "https://github.com/kazu-yamamoto/logger"; 134019 + description = "A class of monads which can log messages"; 134020 + license = stdenv.lib.licenses.mit; 134021 + hydraPlatforms = stdenv.lib.platforms.none; 134022 + }) {}; 134023 + 133251 134024 "monad-logger-json" = callPackage 133252 134025 ({ mkDerivation, aeson, base, monad-logger, template-haskell, text 133253 134026 }: ··· 133982 134755 pname = "monadiccp"; 133983 134756 version = "0.7.6"; 133984 134757 sha256 = "083ppr53ac85r5ybndngsfwxgalj63giz32aa7wpcm629b9g4lxc"; 134758 + enableSeparateDataOutput = true; 133985 134759 libraryHaskellDepends = [ 133986 134760 base containers mtl parsec pretty random 133987 134761 ]; ··· 133999 134773 pname = "monadiccp-gecode"; 134000 134774 version = "0.1.2"; 134001 134775 sha256 = "1ylyzklcb37khrq8a11fzlyd0sa1nrhpd7cv470m23v7l1hc1wg0"; 134776 + enableSeparateDataOutput = true; 134002 134777 libraryHaskellDepends = [ base containers monadiccp mtl ]; 134003 134778 librarySystemDepends = [ 134004 134779 gecodeint gecodekernel gecodesearch gecodeset gecodesupport ··· 134437 135212 pname = "monoid-owns"; 134438 135213 version = "2010.5.29"; 134439 135214 sha256 = "1n05f95yhn6jp7rdnlx686k1lsls4iilxdxnp41ds4afsypaclfk"; 135215 + enableSeparateDataOutput = true; 134440 135216 libraryHaskellDepends = [ base bytestring containers ]; 134441 135217 homepage = "http://github.com/nfjinjing/monoid-owns"; 134442 135218 description = "a practical monoid implementation"; ··· 134712 135488 sha256 = "064wgdk0yrrjh8b7xnpmhk541fwqh24pg7hq1rh28vf2fbv6blcy"; 134713 135489 isLibrary = false; 134714 135490 isExecutable = true; 135491 + enableSeparateDataOutput = true; 134715 135492 executableHaskellDepends = [ 134716 135493 array base binary bytestring containers directory filepath mtl 134717 135494 pretty QuickCheck text utf8-string vector ··· 134730 135507 pname = "morfeusz"; 134731 135508 version = "0.4.2"; 134732 135509 sha256 = "1lzl5ks7px1xibfa6y0wnfv2mk2w39hscrrynqn7a3gjnca00sx0"; 135510 + enableSeparateDataOutput = true; 134733 135511 libraryHaskellDepends = [ 134734 135512 base bytestring containers directory mtl text 134735 135513 ]; ··· 134773 135551 sha256 = "1a0s0hj09rhgixs09ay7fjk12d3wrlhm2w957md7pkan412vx200"; 134774 135552 isLibrary = true; 134775 135553 isExecutable = true; 135554 + enableSeparateDataOutput = true; 134776 135555 libraryHaskellDepends = [ 134777 135556 array base binary containers deepseq Earley http-client 134778 135557 http-client-tls microlens microlens-mtl pipes system-fileio ··· 134873 135652 editedCabalFile = "1cc85zdja69m16h32ii1jw1qkfz7jq3gp0m0m6pfaj146l8qcmwc"; 134874 135653 isLibrary = false; 134875 135654 isExecutable = true; 135655 + enableSeparateDataOutput = true; 134876 135656 executableHaskellDepends = [ 134877 135657 base binary bytestring ConfigFile daemons directory filepath glib 134878 135658 gstreamer hgettext MissingH mtl network random setlocale text unix ··· 135002 135782 pname = "mps"; 135003 135783 version = "2010.11.28"; 135004 135784 sha256 = "1xhflvgwrjzj7qb69dn149lh32c7q9161zrzfs07ncs233y0w4lg"; 135785 + enableSeparateDataOutput = true; 135005 135786 libraryHaskellDepends = [ 135006 135787 array base bytestring containers directory filepath monoid-owns 135007 135788 old-locale old-time parallel parsec regexpr template-haskell time ··· 135023 135804 sha256 = "1nmc03s8h3khmvajyhwaniczq0r4wrinq2sjjp1c6gyc2nggxzyx"; 135024 135805 isLibrary = false; 135025 135806 isExecutable = true; 135807 + enableSeparateDataOutput = true; 135026 135808 executableHaskellDepends = [ 135027 135809 base directory filepath gtk mtl process template-haskell unix 135028 135810 ]; ··· 135575 136357 sha256 = "1xqydvz8riz40d4q542akyxfhfq7hbhi306pcxdvbbpczyx8napp"; 135576 136358 isLibrary = true; 135577 136359 isExecutable = true; 136360 + enableSeparateDataOutput = true; 135578 136361 libraryHaskellDepends = [ 135579 136362 base Cabal containers directory extensible-exceptions filepath hint 135580 136363 mtl process QuickCheck show simple-reflect unix ··· 135835 136618 pname = "multiplate"; 135836 136619 version = "0.0.3"; 135837 136620 sha256 = "1gsfmw7dzsxycixqqrh5wr1g3izn7rm2a4a20nh8pp6fgn21c01c"; 136621 + enableSeparateDataOutput = true; 135838 136622 libraryHaskellDepends = [ base transformers ]; 135839 136623 homepage = "http://haskell.org/haskellwiki/Multiplate"; 135840 136624 description = "Lightweight generic library for mutually recursive data types"; ··· 135848 136632 pname = "multiplate-simplified"; 135849 136633 version = "0.0.0.2"; 135850 136634 sha256 = "0xzjl3nsm6wgbqd6rjn0bf9jhiw6l6ql5gj5m8xqccv8363i5v2r"; 136635 + enableSeparateDataOutput = true; 135851 136636 libraryHaskellDepends = [ base multiplate transformers ]; 135852 136637 description = "Shorter, more generic functions for Multiplate"; 135853 136638 license = stdenv.lib.licenses.mit; ··· 135862 136647 sha256 = "1y0v06qnpna8sa0aw24i4s29yc49m3a7d8yrl6xiv1jrgycjcafc"; 135863 136648 isLibrary = false; 135864 136649 isExecutable = true; 136650 + enableSeparateDataOutput = true; 135865 136651 executableHaskellDepends = [ 135866 136652 base containers fez-conf mtl process 135867 136653 ]; ··· 135943 136729 pname = "multisetrewrite"; 135944 136730 version = "0.6"; 135945 136731 sha256 = "1chgdikgp70rkzw2k3wy7i276j5vb435vq26yl37lkh0im1bg5ay"; 136732 + enableSeparateDataOutput = true; 135946 136733 libraryHaskellDepends = [ base haskell98 stm ]; 135947 136734 homepage = "http://sulzmann.blogspot.com/2008/10/multi-set-rewrite-rules-with-guards-and.html"; 135948 136735 description = "Multi-set rewrite rules with guards and a parallel execution scheme"; ··· 136015 136802 sha256 = "0s11xvhawwrcr31f0khp0q6fimwjps12n992z35ldnh0kk3dmk9z"; 136016 136803 isLibrary = false; 136017 136804 isExecutable = true; 136805 + enableSeparateDataOutput = true; 136018 136806 executableHaskellDepends = [ 136019 136807 base blaze-html ConfigFile directory Glob happstack-server 136020 136808 HStringTemplate markdown MissingH process text ··· 136158 136946 pname = "music-diatonic"; 136159 136947 version = "0.1.2"; 136160 136948 sha256 = "0r4ha5hv0nvfp6r142fklfnqgf0vp77fxmj7z39690l7h1ckq634"; 136949 + enableSeparateDataOutput = true; 136161 136950 libraryHaskellDepends = [ base ]; 136162 136951 description = "Implementation of basic western musical theory objects"; 136163 136952 license = stdenv.lib.licenses.bsd3; ··· 136215 137004 pname = "music-parts"; 136216 137005 version = "1.9.0"; 136217 137006 sha256 = "1kiz968kcwcyczxg5gl40c7bwgkn86l7qi0ak8p68bm4rmsw9id4"; 137007 + enableSeparateDataOutput = true; 136218 137008 libraryHaskellDepends = [ 136219 137009 adjunctions aeson base bytestring cassava containers data-default 136220 137010 lens monadplus music-dynamics music-pitch roman-numerals semigroups ··· 136379 137169 sha256 = "10salrdl4vfdy3x26564i8kdv6lx8py697v5n8q9ywqsd05dcrv2"; 136380 137170 isLibrary = true; 136381 137171 isExecutable = true; 137172 + enableSeparateDataOutput = true; 136382 137173 libraryHaskellDepends = [ 136383 137174 aeson amqp base ghc-prim mime-mail optparse-applicative text 136384 137175 ]; ··· 136856 137647 sha256 = "0lxzn8fn97f1j3fx97f46m16y25w7m1w84l59r75xisr662gc9lz"; 136857 137648 isLibrary = false; 136858 137649 isExecutable = true; 137650 + enableSeparateDataOutput = true; 136859 137651 executableHaskellDepends = [ 136860 137652 base bytestring clientsession heist mtl mysnapsession snap 136861 137653 snap-core snap-server text time ··· 137071 137863 sha256 = "1a7fqyn0pvnbxzn9fiaib4pj7hq5p2qgnbdwryg70lkgnjm4y0h4"; 137072 137864 isLibrary = false; 137073 137865 isExecutable = true; 137866 + enableSeparateDataOutput = true; 137074 137867 executableHaskellDepends = [ 137075 137868 aeson base bytestring ConfigFile data-default-class docopt 137076 137869 fast-logger filepath http-types interpolatedstring-perl6 MissingH ··· 137573 138366 sha256 = "1bzccvp7g0z90jm7xd2vydjkha0960bv4s0p9w9vn7dgcc6mj63z"; 137574 138367 isLibrary = true; 137575 138368 isExecutable = true; 138369 + enableSeparateDataOutput = true; 137576 138370 libraryHaskellDepends = [ 137577 138371 base bytestring directory filepath process shelly text 137578 138372 ]; ··· 137726 138520 pname = "nbt"; 137727 138521 version = "0.6"; 137728 138522 sha256 = "0lcnxlj0cfrw840saay3lxyjmc00rxhksqa6ccyhg8119y20gcjd"; 138523 + enableSeparateDataOutput = true; 137729 138524 libraryHaskellDepends = [ array base bytestring cereal text ]; 137730 138525 testHaskellDepends = [ 137731 138526 array base bytestring cereal HUnit QuickCheck test-framework ··· 137866 138661 sha256 = "00zll88gk44l22lqxv47v4j5ipfapy5599ld8fcsvhk57nfcm2r0"; 137867 138662 isLibrary = false; 137868 138663 isExecutable = true; 138664 + enableSeparateDataOutput = true; 137869 138665 executableHaskellDepends = [ 137870 138666 array base bytestring cereal directory GLFW-b GLURaw OpenGLRaw 137871 138667 random ··· 137953 138749 pname = "nemesis-titan"; 137954 138750 version = "2014.5.19"; 137955 138751 sha256 = "183m6wz52lrf5kfwxz11ad7v5zazv4gcf1c2rcylh2ys6zda4xmd"; 138752 + enableSeparateDataOutput = true; 137956 138753 libraryHaskellDepends = [ 137957 138754 air air-th base bytestring directory filepath hspec HStringTemplate 137958 138755 nemesis random uuid ··· 138198 138995 sha256 = "1dmaac0b22nycq4mar0grb2dzfff08rh9qk075h73r0an1vjh1d9"; 138199 138996 isLibrary = true; 138200 138997 isExecutable = true; 138998 + enableSeparateDataOutput = true; 138201 138999 libraryHaskellDepends = [ 138202 139000 aeson async base base64-bytestring bytestring cryptonite 138203 139001 data-default-class directory exceptions http-client http-client-tls ··· 138501 139299 sha256 = "16n03lpmvf715yi9kpf3nypllvipm58jq63lya619h45b2r8i5n9"; 138502 139300 isLibrary = false; 138503 139301 isExecutable = true; 139302 + enableSeparateDataOutput = true; 138504 139303 executableHaskellDepends = [ 138505 139304 array base bytestring containers directory filepath GLFW-b GLUtil 138506 139305 lens linear mtl netwire netwire-input netwire-input-glfw OpenGL ··· 138578 139377 pname = "network-anonymous-i2p"; 138579 139378 version = "0.10.0"; 138580 139379 sha256 = "0b7z7w105l1yd3xpnnl2z779m5zknf756cslksbbpsy16rn7kxfg"; 139380 + enableSeparateDataOutput = true; 138581 139381 libraryHaskellDepends = [ 138582 139382 attoparsec base bytestring exceptions mtl network 138583 139383 network-attoparsec network-simple text transformers uuid ··· 138604 139404 sha256 = "0jbm29795dznmrdkvl95v9xhj8pcmwgsdk2ngaj6zv5a9arybbj1"; 138605 139405 isLibrary = true; 138606 139406 isExecutable = true; 139407 + enableSeparateDataOutput = true; 138607 139408 libraryHaskellDepends = [ 138608 139409 attoparsec base base32string bytestring exceptions hexstring 138609 139410 network network-attoparsec network-simple socks text transformers ··· 138649 139450 pname = "network-attoparsec"; 138650 139451 version = "0.12.2"; 138651 139452 sha256 = "1w08py367mmwfg5lff6y9s6hdpg1nbjf7v6vv9s19aw6saxak44p"; 139453 + enableSeparateDataOutput = true; 138652 139454 libraryHaskellDepends = [ 138653 139455 attoparsec base bytestring enclosed-exceptions exceptions 138654 139456 lifted-base monad-control mtl network transformers ··· 139691 140493 pname = "newtype-th"; 139692 140494 version = "0.3.3"; 139693 140495 sha256 = "1slgphymjxzbxxgsilfijkhiwapfy2gkhkby2dxqj107v4s0788k"; 140496 + enableSeparateDataOutput = true; 139694 140497 libraryHaskellDepends = [ 139695 140498 base haskell-src-meta newtype syb template-haskell 139696 140499 ]; ··· 140019 140822 pname = "nix-eval"; 140020 140823 version = "0.3.3.0"; 140021 140824 sha256 = "1c8hg66s66hkn7f31ynw0km4bpdzhv0zdslzkpycvd36m3jm1wjb"; 140825 + enableSeparateDataOutput = true; 140022 140826 libraryHaskellDepends = [ base hindent process strict ]; 140023 140827 testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; 140024 140828 homepage = "http://chriswarbo.net/git/nix-eval"; ··· 140056 140860 sha256 = "1zjak2py3q59mafh68ds5b9yai425hylc7p0x9ccrhid0y3rpl5y"; 140057 140861 isLibrary = false; 140058 140862 isExecutable = true; 140863 + enableSeparateDataOutput = true; 140059 140864 executableHaskellDepends = [ 140060 140865 aeson ansi-terminal base bytestring classy-prelude containers curl 140061 140866 data-default data-fix directory hnix lifted-base MissingH ··· 140331 141136 pname = "nomyx-core"; 140332 141137 version = "1.0.0"; 140333 141138 sha256 = "0cdr4k2919a8bjmqm4agpiqp9jiijldwya28ql8bg345ypfh91d2"; 141139 + enableSeparateDataOutput = true; 140334 141140 libraryHaskellDepends = [ 140335 141141 acid-state aeson base blaze-html blaze-markup bytestring 140336 141142 DebugTraceHelpers deepseq directory either-unwrap exceptions ··· 140356 141162 pname = "nomyx-language"; 140357 141163 version = "1.0.0"; 140358 141164 sha256 = "1g9rg0h2nfyc4i1hvlmmnfchz3hhh0pax5x654yqkcdhqbsh04hk"; 141165 + enableSeparateDataOutput = true; 140359 141166 libraryHaskellDepends = [ 140360 141167 base Boolean containers DebugTraceHelpers ghc imprevu lens 140361 141168 monad-loops mtl old-locale random safe shortcut text time ··· 140375 141182 pname = "nomyx-library"; 140376 141183 version = "1.0.0"; 140377 141184 sha256 = "1sb47asxrqg510kgh9mxpkcmczwzcbzd90bm7nmbaas9cn1wxmql"; 141185 + enableSeparateDataOutput = true; 140378 141186 libraryHaskellDepends = [ 140379 141187 base containers ghc lens mtl nomyx-language old-locale safe 140380 141188 shortcut time time-recurrence ··· 140420 141228 pname = "nomyx-web"; 140421 141229 version = "1.0.0"; 140422 141230 sha256 = "1nmckv3mv3zj14l7l3485lx8bw5g40psv8kn4ldg2grdsrf26z9q"; 141231 + enableSeparateDataOutput = true; 140423 141232 libraryHaskellDepends = [ 140424 141233 acid-state base blaze-html blaze-markup bytestring filepath 140425 141234 happstack-authenticate happstack-server hscolour HTTP http-types ··· 140731 141540 sha256 = "1jjk3fhzhpf9wrgk980rgp55kji5zjzdl0xyi4wgz3xvn1k8hrhs"; 140732 141541 isLibrary = true; 140733 141542 isExecutable = true; 141543 + enableSeparateDataOutput = true; 140734 141544 libraryHaskellDepends = [ 140735 141545 aeson attoparsec attoparsec-conduit base blaze-builder blaze-html 140736 141546 blaze-markup bytestring case-insensitive conduit containers ··· 140862 141672 sha256 = "0gp7032dgchm3mwlzj66cpcdgndi0mj2l4xxq4k4ayflfpcwrg3a"; 140863 141673 isLibrary = true; 140864 141674 isExecutable = true; 141675 + enableSeparateDataOutput = true; 140865 141676 libraryHaskellDepends = [ 140866 141677 array base containers monad-loops mtl pretty z3 140867 141678 ]; ··· 140934 141745 pname = "null-canvas"; 140935 141746 version = "0.2.7"; 140936 141747 sha256 = "1i6krgxlbdmv5md1p3n5mcw3sk24f5sk6y7yiznx8glxncxmfdll"; 141748 + enableSeparateDataOutput = true; 140937 141749 libraryHaskellDepends = [ 140938 141750 aeson base containers filepath scotty split stm text transformers 140939 141751 wai-extra warp ··· 141190 142002 sha256 = "110v2frn085pggjzl3l8wqgr4vcdd5h29x2wak2a59x16ngjg7ga"; 141191 142003 revision = "1"; 141192 142004 editedCabalFile = "0bh9zzya42dbpc5c7j7fnyphm5nndib1ycbmanplgx0b707x1sda"; 142005 + enableSeparateDataOutput = true; 141193 142006 libraryHaskellDepends = [ array base ]; 141194 142007 homepage = "http://www.haskell.org/haskellwiki/Numeric_Quest"; 141195 142008 description = "Math and quantum mechanics"; ··· 141484 142297 sha256 = "1nlnz7mvdkhcqp4v1fyfb6r6v18xpxi0ddqqp84dsqg6ahdypc13"; 141485 142298 isLibrary = false; 141486 142299 isExecutable = true; 142300 + enableSeparateDataOutput = true; 141487 142301 executableHaskellDepends = [ 141488 142302 base cairo containers glade glib gtk mtl parsec random 141489 142303 ]; ··· 142099 142913 sha256 = "0v11j2gz98g5ng9dsfbr7k3a2xhw2xqa1qi1q8ad53sx2yhjv0ly"; 142100 142914 isLibrary = false; 142101 142915 isExecutable = true; 142916 + enableSeparateDataOutput = true; 142102 142917 executableHaskellDepends = [ 142103 142918 array base containers directory filepath pretty time 142104 142919 ]; ··· 142381 143196 license = stdenv.lib.licenses.bsd3; 142382 143197 }) {}; 142383 143198 143199 + "opaleye_0_5_3_1" = callPackage 143200 + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring 143201 + , bytestring, case-insensitive, containers, contravariant, dotenv 143202 + , hspec, hspec-discover, multiset, postgresql-simple, pretty 143203 + , product-profunctors, profunctors, QuickCheck, semigroups, text 143204 + , time, time-locale-compat, transformers, uuid, void 143205 + }: 143206 + mkDerivation { 143207 + pname = "opaleye"; 143208 + version = "0.5.3.1"; 143209 + sha256 = "0hgkvvl3pn9bhiy21jxmcvvbzbsywpavwxcmvcwwnkkcdv679rvx"; 143210 + libraryHaskellDepends = [ 143211 + aeson attoparsec base base16-bytestring bytestring case-insensitive 143212 + contravariant postgresql-simple pretty product-profunctors 143213 + profunctors semigroups text time time-locale-compat transformers 143214 + uuid void 143215 + ]; 143216 + testHaskellDepends = [ 143217 + aeson base containers contravariant dotenv hspec hspec-discover 143218 + multiset postgresql-simple product-profunctors profunctors 143219 + QuickCheck semigroups text time transformers 143220 + ]; 143221 + homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; 143222 + description = "An SQL-generating DSL targeting PostgreSQL"; 143223 + license = stdenv.lib.licenses.bsd3; 143224 + hydraPlatforms = stdenv.lib.platforms.none; 143225 + }) {}; 143226 + 142384 143227 "opaleye-classy" = callPackage 142385 143228 ({ mkDerivation, base, bytestring, lens, mtl, opaleye 142386 143229 , postgresql-simple, product-profunctors, transformers ··· 142490 143333 sha256 = "1k9d1r1z7q6lm8fha630rg2qfmwwnr9dv2ajvqwvrki2m6i9sczn"; 142491 143334 isLibrary = true; 142492 143335 isExecutable = true; 143336 + enableSeparateDataOutput = true; 142493 143337 libraryHaskellDepends = [ 142494 143338 base bytestring containers directory extensible-exceptions filepath 142495 143339 HTTP mtl network old-time parsec pretty process syb texmath ··· 143360 144204 pname = "opml-conduit"; 143361 144205 version = "0.6.0.1"; 143362 144206 sha256 = "0mc3qymh6i8w79s6spm0dnndr7aydny6fy3krfxzfm6qch4nw3yb"; 144207 + enableSeparateDataOutput = true; 143363 144208 libraryHaskellDepends = [ 143364 144209 base case-insensitive conduit conduit-combinators containers 143365 144210 lens-simple mono-traversable monoid-subclasses safe-exceptions ··· 143388 144233 pname = "opml-conduit"; 143389 144234 version = "0.6.0.3"; 143390 144235 sha256 = "1flzv6v1mds7w9v3ap3g7gfwlvq54z0j1w7g2b07d17x334lyhgb"; 144236 + enableSeparateDataOutput = true; 143391 144237 libraryHaskellDepends = [ 143392 144238 base case-insensitive conduit conduit-combinators containers 143393 144239 lens-simple mono-traversable monoid-subclasses safe-exceptions ··· 143756 144602 pname = "orchid"; 143757 144603 version = "0.0.8"; 143758 144604 sha256 = "1d3cfhhsv1qpiiin4cs9wxx2a6vwcj0iad746z7l1qzyxrhg4dkm"; 144605 + enableSeparateDataOutput = true; 143759 144606 libraryHaskellDepends = [ 143760 144607 base bytestring containers encoding extensible-exceptions fclabels 143761 144608 filestore hscolour mtl nano-md5 parsec process QuickCheck salvia ··· 143776 144623 sha256 = "1gfjmakfx8244q1yqbgp2ji9bh45ll8ixvxbdd961my30j7gh29z"; 143777 144624 isLibrary = false; 143778 144625 isExecutable = true; 144626 + enableSeparateDataOutput = true; 143779 144627 executableHaskellDepends = [ 143780 144628 base extensible-exceptions mtl network orchid Pipe salvia 143781 144629 salvia-extras stm ··· 144179 145027 pname = "osx-ar"; 144180 145028 version = "0.11"; 144181 145029 sha256 = "1d2lna7gvygiq062p2y1zy182wv3vkr0lda49y502ad6jf483xdn"; 145030 + enableSeparateDataOutput = true; 144182 145031 libraryHaskellDepends = [ base binary bytestring containers ]; 144183 145032 description = "Parser for OS X static archive format"; 144184 145033 license = stdenv.lib.licenses.bsd3; ··· 144392 145241 pname = "packed-dawg"; 144393 145242 version = "0.2.0.8"; 144394 145243 sha256 = "1z6a75i0ma7cs8hsiqz9pqwycrw61ph4rvc1w6iczbjmmjgns13r"; 145244 + enableSeparateDataOutput = true; 144395 145245 libraryHaskellDepends = [ 144396 145246 base binary deepseq mtl unordered-containers vector 144397 145247 vector-binary-instances ··· 144546 145396 sha256 = "1wzfsindjxx61nca36hhldy0y33pgagg506ls9ldvrkvl4n4y7iy"; 144547 145397 isLibrary = true; 144548 145398 isExecutable = true; 145399 + enableSeparateDataOutput = true; 144549 145400 libraryHaskellDepends = [ 144550 145401 base bytestring conduit conduit-extra directory process resourcet 144551 145402 safe terminfo text transformers unix ··· 144685 145536 pname = "panda"; 144686 145537 version = "2009.4.1"; 144687 145538 sha256 = "0yn6ia1pql5fvj784a57ym74n5sd08n1g9djgapllw9lkf6r7hv7"; 145539 + enableSeparateDataOutput = true; 144688 145540 libraryHaskellDepends = [ 144689 145541 base cgi containers data-default directory filepath gravatar 144690 145542 haskell98 hcheat kibro MissingH mps network old-locale old-time ··· 144718 145570 configureFlags = [ "-fhttps" "-f-trypandoc" ]; 144719 145571 isLibrary = true; 144720 145572 isExecutable = true; 145573 + enableSeparateDataOutput = true; 144721 145574 libraryHaskellDepends = [ 144722 145575 aeson array base base64-bytestring binary blaze-html blaze-markup 144723 145576 bytestring cmark containers data-default deepseq directory ··· 144762 145615 editedCabalFile = "00cvvdiwpl8cw840smdfxbdnmmjf4m86nck344a797iv9rmvdq0j"; 144763 145616 isLibrary = true; 144764 145617 isExecutable = true; 145618 + enableSeparateDataOutput = true; 144765 145619 libraryHaskellDepends = [ 144766 145620 aeson base bytestring containers data-default directory filepath 144767 145621 hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051 ··· 144796 145650 sha256 = "10x7rpz48611696fw7h9m62qm1y9qxzvrc2jk0b9h840mn08n0s9"; 144797 145651 isLibrary = true; 144798 145652 isExecutable = true; 145653 + enableSeparateDataOutput = true; 144799 145654 libraryHaskellDepends = [ 144800 145655 aeson base bytestring containers data-default directory filepath 144801 145656 hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051 ··· 144847 145702 sha256 = "14c4nbibx4qbi7pvycaf3q12hpj4s02wdg5pl23z2b4f8jz3pnfl"; 144848 145703 isLibrary = true; 144849 145704 isExecutable = true; 145705 + enableSeparateDataOutput = true; 144850 145706 libraryHaskellDepends = [ 144851 145707 base containers data-accessor data-accessor-template 144852 145708 data-accessor-transformers data-default directory filepath mtl ··· 144872 145728 sha256 = "12692c1lpp4pz08x1b9yxanpki5sxb5h9373vjp9af88rykqykl1"; 144873 145729 isLibrary = true; 144874 145730 isExecutable = true; 145731 + enableSeparateDataOutput = true; 144875 145732 libraryHaskellDepends = [ base csv pandoc pandoc-types text ]; 144876 145733 executableHaskellDepends = [ base csv pandoc pandoc-types ]; 144877 145734 homepage = "https://github.com/baig/pandoc-csv2table-filter"; ··· 144908 145765 sha256 = "1hv8jw6aymlx6hvm1xq9ccsh2vi1y340xnhrysglpggvarim3dnd"; 144909 145766 isLibrary = true; 144910 145767 isExecutable = true; 145768 + enableSeparateDataOutput = true; 144911 145769 libraryHaskellDepends = [ 144912 145770 base directory pandoc pandoc-types text 144913 145771 ]; ··· 144982 145840 sha256 = "0y8mz2jgnfzr8ib7w4bfwwdsljs3a2qpq3pxgvl2jwi7wdrcslai"; 144983 145841 isLibrary = false; 144984 145842 isExecutable = true; 145843 + enableSeparateDataOutput = true; 144985 145844 executableHaskellDepends = [ 144986 145845 aeson base bytestring explicit-exception http-conduit pandoc-types 144987 145846 spreadsheet utf8-string ··· 145098 145957 sha256 = "0cnz4n2vywj4w9cnj7kh6jml6k29li9wnaifnwn69b6883043iwm"; 145099 145958 isLibrary = false; 145100 145959 isExecutable = true; 145960 + enableSeparateDataOutput = true; 145101 145961 executableHaskellDepends = [ 145102 145962 base bytestring containers IfElse mtl SDL SDL-gfx SDL-ttf 145103 145963 transformers Yampa ··· 145116 145976 pname = "pango"; 145117 145977 version = "0.13.3.1"; 145118 145978 sha256 = "1frzcgqa1f1i3bk0q229vy8y6gsi423s8hfqvnr56h7ys8blysih"; 145979 + enableSeparateDataOutput = true; 145119 145980 setupHaskellDepends = [ base Cabal filepath gtk2hs-buildtools ]; 145120 145981 libraryHaskellDepends = [ 145121 145982 array base cairo containers directory glib mtl pretty process text ··· 146481 147342 pname = "passage"; 146482 147343 version = "0.1"; 146483 147344 sha256 = "11qrm27a1fn8p8z0q1400nd30sblm8pcn6znz4syg9jkmqhpn8ig"; 147345 + enableSeparateDataOutput = true; 146484 147346 libraryHaskellDepends = [ 146485 147347 array base containers directory filepath GraphSCC monadLib 146486 147348 mwc-random pretty primitive process random ··· 146575 147437 pname = "patch-combinators"; 146576 147438 version = "0.2.2"; 146577 147439 sha256 = "007bxr6xfqjmbx4b9k3n3qw7jmrn298v8cqxvycfhy5924l9jyi6"; 147440 + enableSeparateDataOutput = true; 146578 147441 libraryHaskellDepends = [ base ]; 146579 147442 description = "A library for patching functions and data structures"; 146580 147443 license = stdenv.lib.licenses.bsd3; ··· 147077 147940 pname = "pcf"; 147078 147941 version = "0.1.0.1"; 147079 147942 sha256 = "1dmp9afylsf4n7gxa23wn25w8h89lqyhjlxa5g7gshrbwxkx7c55"; 147943 + enableSeparateDataOutput = true; 147080 147944 libraryHaskellDepends = [ 147081 147945 base bound c-dsl containers monad-gen mtl prelude-extras 147082 147946 transformers void ··· 147421 148285 pname = "pdynload"; 147422 148286 version = "0.0.3"; 147423 148287 sha256 = "0949nzk85fp9vs6v90cd6kxgg52pcaz2mfahv7416qpgp65hpw93"; 148288 + enableSeparateDataOutput = true; 147424 148289 libraryHaskellDepends = [ 147425 148290 base directory filepath ghc ghc-paths old-time process 147426 148291 ]; ··· 147481 148346 sha256 = "110i4y93gm6b76and12vra8nr5q2dz20dvgpbpdgic3sv2ds16k0"; 147482 148347 isLibrary = true; 147483 148348 isExecutable = true; 148349 + enableSeparateDataOutput = true; 147484 148350 libraryHaskellDepends = [ 147485 148351 array base Cabal cmdargs containers deepseq derive grm mtl shake 147486 148352 syb uniplate wl-pprint ··· 147500 148366 pname = "pecoff"; 147501 148367 version = "0.11"; 147502 148368 sha256 = "0vb22jfl309k4a6b80015cyrs5cxls7vyf8faz7lrm7i0vj0vz1q"; 148369 + enableSeparateDataOutput = true; 147503 148370 libraryHaskellDepends = [ base binary bytestring containers ]; 147504 148371 description = "Parser for PE/COFF format"; 147505 148372 license = stdenv.lib.licenses.bsd3; ··· 147573 148440 pname = "pem"; 147574 148441 version = "0.2.2"; 147575 148442 sha256 = "162sk5sg22w21wqz5qv8kx6ibxp99v5p20g3nknhm1kddk3hha1p"; 148443 + enableSeparateDataOutput = true; 147576 148444 libraryHaskellDepends = [ base base64-bytestring bytestring mtl ]; 147577 148445 testHaskellDepends = [ 147578 148446 base bytestring HUnit QuickCheck test-framework ··· 148549 149417 sha256 = "12cwmjszbbqrd1f21jvwvp026ja3377c3p0wfrbrl34g23gnysgp"; 148550 149418 isLibrary = false; 148551 149419 isExecutable = true; 149420 + enableSeparateDataOutput = true; 148552 149421 executableHaskellDepends = [ base process ]; 148553 149422 homepage = "http://www.cs.chalmers.se/~aarne/pesca/"; 148554 149423 description = "Proof Editor for Sequent Calculus"; ··· 148567 149436 pname = "peyotls"; 148568 149437 version = "0.1.6.10"; 148569 149438 sha256 = "0x1qrh1nz3fr662701d8r7l23flwiv6az2wwcx48bp0vrk08lwww"; 149439 + enableSeparateDataOutput = true; 148570 149440 libraryHaskellDepends = [ 148571 149441 asn1-encoding asn1-types base bytable bytestring cipher-aes 148572 149442 crypto-numbers crypto-pubkey crypto-pubkey-types crypto-random ··· 148630 149500 sha256 = "0ax6ch87jqbcy5il17n0kppy8pn44rj6ljksamh61sg438vcdhqf"; 148631 149501 isLibrary = true; 148632 149502 isExecutable = true; 149503 + enableSeparateDataOutput = true; 148633 149504 libraryHaskellDepends = [ base bytestring HTTP ]; 148634 149505 executableHaskellDepends = [ 148635 149506 async base ini postgresql-simple random scotty text transformers ··· 148662 149533 sha256 = "0cfyjczs29qksh8kiyq256wv26yvw4ph7p0cvz5hnfjfjpj6r963"; 148663 149534 isLibrary = false; 148664 149535 isExecutable = true; 149536 + enableSeparateDataOutput = true; 148665 149537 executableHaskellDepends = [ 148666 149538 async base ini postgresql-simple random scotty text transformers 148667 149539 ]; ··· 148934 149806 sha256 = "0s2m9y7zb0219dz547z5d4plgrnaqvwzsbvm5cw7mv8dq043zdf3"; 148935 149807 isLibrary = false; 148936 149808 isExecutable = true; 149809 + enableSeparateDataOutput = true; 148937 149810 executableHaskellDepends = [ 148938 149811 base bytestring Cabal cmdargs conduit conduit-extra ConfigFile 148939 149812 containers directory filepath gtk3 hslogger HStringTemplate ··· 148973 149846 pname = "phone-metadata"; 148974 149847 version = "0.0.1.5"; 148975 149848 sha256 = "0zn98kf23rn9ay9n4gd2v2jpafppz6r2kxk5m9na6xm437gx5xmb"; 149849 + enableSeparateDataOutput = true; 148976 149850 libraryHaskellDepends = [ base containers hxt regex-pcre text ]; 148977 149851 testHaskellDepends = [ base hspec ]; 148978 149852 description = "Phonenumber Metadata - NOTE: this is now deprecated!"; ··· 149125 149999 sha256 = "1w5krkss2qzzcqqmgqs369p5xnqyrm76vvsxd7mlhcdqaaj06n2q"; 149126 150000 isLibrary = false; 149127 150001 isExecutable = true; 150002 + enableSeparateDataOutput = true; 149128 150003 executableHaskellDepends = [ 149129 150004 AES base binary byteable bytestring containers cryptohash HTTP 149130 150005 io-streams mtl network parsec RSA transformers ··· 149170 150045 sha256 = "0120zkza698ww8ng6svp54qywkrvn35pylvcgplfldw4ajln00vn"; 149171 150046 isLibrary = true; 149172 150047 isExecutable = true; 150048 + enableSeparateDataOutput = true; 149173 150049 libraryHaskellDepends = [ 149174 150050 base bytestring clock deepseq text unix unordered-containers 149175 150051 ]; ··· 149372 150248 sha256 = "0rsc2anh20hlr2dfyh07dyrrfns0l1pibz6w129fp5l8m6h3xjin"; 149373 150249 isLibrary = false; 149374 150250 isExecutable = true; 150251 + enableSeparateDataOutput = true; 149375 150252 executableHaskellDepends = [ base mtl parsec text ]; 149376 150253 homepage = "http://www.mew.org/~kazu/proj/piki/"; 149377 150254 description = "Yet another text-to-html converter"; ··· 149466 150343 sha256 = "1hmbhgnrq894jnm7gy6yc812nysvkrbjk6qqjmk7g7fsj46xpdfg"; 149467 150344 isLibrary = false; 149468 150345 isExecutable = true; 150346 + enableSeparateDataOutput = true; 149469 150347 executableHaskellDepends = [ 149470 150348 base bytestring editor-open Hclip safe 149471 150349 ]; ··· 149658 150536 pname = "pipes-bzip"; 149659 150537 version = "0.2.0.4"; 149660 150538 sha256 = "12mhs3ylqqkp4dvir67lgwg3izma88j5xpi7fc7jlvlka24vbnkp"; 150539 + enableSeparateDataOutput = true; 149661 150540 libraryHaskellDepends = [ 149662 150541 base bindings-DSL bytestring data-default mtl pipes pipes-safe 149663 150542 ]; ··· 150572 151451 sha256 = "1mz4cfhg8y7cv38ir2lzl7b2p1nfm8c4syvgzz4b9j98dxg694xz"; 150573 151452 isLibrary = true; 150574 151453 isExecutable = true; 151454 + enableSeparateDataOutput = true; 150575 151455 libraryHaskellDepends = [ 150576 151456 array base bytestring containers haskeline haskeline-class mpppc 150577 151457 mtl parsec text utf8-string ··· 150914 151794 pname = "plist"; 150915 151795 version = "0.0.6"; 150916 151796 sha256 = "0xsx1pvlnqyidpvswisir9p9054r7fczi81nccflazijn3pr9rgb"; 151797 + enableSeparateDataOutput = true; 150917 151798 libraryHaskellDepends = [ base base64-bytestring bytestring hxt ]; 150918 151799 description = "Generate and parse Mac OS X property list format"; 150919 151800 license = stdenv.lib.licenses.bsd3; ··· 151014 151895 pname = "plot-gtk-ui"; 151015 151896 version = "0.3.0.2"; 151016 151897 sha256 = "1nhq0l687dhphnxkd0zh3z96551b91d7js625l4fyn40g5099s77"; 151898 + enableSeparateDataOutput = true; 151017 151899 libraryHaskellDepends = [ 151018 151900 base cairo colour fixed-vector gtk hmatrix plot text vector 151019 151901 ]; ··· 151045 151927 sha256 = "1qa5mxq9j5m5zbvzsmrzg8jb9w9v8ik50c8w5ffddcrrqb9b8mcq"; 151046 151928 isLibrary = false; 151047 151929 isExecutable = true; 151930 + enableSeparateDataOutput = true; 151048 151931 executableHaskellDepends = [ 151049 151932 base colour gtk hmatrix plot text vector 151050 151933 ]; ··· 151064 151947 sha256 = "0zwp8n9xx1ljh65as4s6lqj4a3nrz3hfg53x8zcba96ic9jkadn0"; 151065 151948 isLibrary = true; 151066 151949 isExecutable = true; 151950 + enableSeparateDataOutput = true; 151067 151951 libraryHaskellDepends = [ 151068 151952 attoparsec base blaze-svg colour palette scientific text time 151069 151953 ]; ··· 151272 152156 pname = "pngload"; 151273 152157 version = "0.1"; 151274 152158 sha256 = "1j8zagi5xcb4spvq1r0wcnn211y2pryzf0r8z7h70ypqak7sy6ps"; 152159 + enableSeparateDataOutput = true; 151275 152160 libraryHaskellDepends = [ 151276 152161 array base bytestring haskell98 mtl parsec zlib 151277 152162 ]; ··· 151286 152171 pname = "pngload-fixed"; 151287 152172 version = "1.0"; 151288 152173 sha256 = "02ikfn7kl8jx5iffa2pv0n1z1c75qcg9aq94nrccfdp532wxr7bx"; 152174 + enableSeparateDataOutput = true; 151289 152175 libraryHaskellDepends = [ array base bytestring mtl parsec zlib ]; 151290 152176 description = "Pure Haskell loader for PNG images"; 151291 152177 license = stdenv.lib.licenses.bsd3; ··· 152083 152969 pname = "pop3-client"; 152084 152970 version = "0.1.4"; 152085 152971 sha256 = "0kfcfxfwg5rjm7qx9r0ssdvkrvca95hflahrip1hi5wbplf224xv"; 152972 + enableSeparateDataOutput = true; 152086 152973 libraryHaskellDepends = [ base mtl network ]; 152087 152974 homepage = "https://github.com/tmrudick/haskell-pop3-client/"; 152088 152975 description = "POP3 Client Library"; ··· 152095 152982 pname = "popenhs"; 152096 152983 version = "1.0.0"; 152097 152984 sha256 = "01pb8g5zl99zccnjnkwklfgaz1pqjp1xrgz5b3qy45nclyln0bm4"; 152985 + enableSeparateDataOutput = true; 152098 152986 libraryHaskellDepends = [ base directory haskell98 unix ]; 152099 152987 homepage = "http://www.haskell.org/~petersen/haskell/popenhs/"; 152100 152988 description = "popenhs is a popen-like library for Haskell"; ··· 152111 152999 pname = "poppler"; 152112 153000 version = "0.14.1"; 152113 153001 sha256 = "1djx8qj68md11kdgcljd7mq3bidw6ynh9mwfxm9bj7kr2h57lmsv"; 153002 + enableSeparateDataOutput = true; 152114 153003 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 152115 153004 libraryHaskellDepends = [ 152116 153005 array base bytestring cairo containers glib gtk mtl ··· 152606 153495 sha256 = "0kxg5z0s82ipcmynpxisq0a3rbhg630rk0xgyrqjcimxh7094n2y"; 152607 153496 isLibrary = true; 152608 153497 isExecutable = true; 153498 + enableSeparateDataOutput = true; 152609 153499 libraryHaskellDepends = [ 152610 153500 aeson base blaze-builder bytestring bytestring-builder directory 152611 153501 filepath ghc-prim mtl old-locale postgresql-simple process text ··· 152663 153553 sha256 = "1xhaqxc389dghf77hlz6zy6pa6phxv8by42lzs91ymjhvwhnb7bl"; 152664 153554 isLibrary = true; 152665 153555 isExecutable = true; 153556 + enableSeparateDataOutput = true; 152666 153557 libraryHaskellDepends = [ 152667 153558 base basic-prelude postgresql-simple shelly text 152668 153559 ]; ··· 153314 154205 sha256 = "071arrk0wir2lwziw6p3cbq6ybjdf3gfc4d25sh21gpnk10ighp2"; 153315 154206 isLibrary = false; 153316 154207 isExecutable = true; 154208 + enableSeparateDataOutput = true; 153317 154209 executableHaskellDepends = [ 153318 154210 base bytestring data-default directory json mps 153319 154211 ]; ··· 153930 154822 sha256 = "1kbx72ybrpw0kh5zsd2kdw143qykbmd9lgmsvj57659y0k5l7fjm"; 153931 154823 isLibrary = true; 153932 154824 isExecutable = true; 154825 + enableSeparateDataOutput = true; 153933 154826 libraryHaskellDepends = [ 153934 154827 array base filepath ghc-prim haskell-lexer pretty 153935 154828 ]; ··· 154029 154922 pname = "prettyprinter"; 154030 154923 version = "1.1"; 154031 154924 sha256 = "0bksn65rvnc0f59mfzhyl9yaccfh5ap6jxj1r477izlnkfs0k03y"; 154032 - revision = "1"; 154033 - editedCabalFile = "0b3f3b55h49pini9fv01km1ydqwp6l687qmy193y8lcmrygnzbdy"; 154925 + revision = "2"; 154926 + editedCabalFile = "0gfxgc3jrnxa54arih1ys1qbswyx7waxp06ib8ifd3rw64yjn16j"; 154034 154927 isLibrary = true; 154035 154928 isExecutable = true; 154036 154929 libraryHaskellDepends = [ base text ]; ··· 154242 155135 sha256 = "0hh13i0idpwv509zavg92wwvp3s20vc1ivz7vfwa4kxp0h21phs9"; 154243 155136 isLibrary = false; 154244 155137 isExecutable = true; 155138 + enableSeparateDataOutput = true; 154245 155139 executableHaskellDepends = [ 154246 155140 base ConfigFile containers directory happstack happstack-helpers 154247 155141 happstack-server happstack-state hsp MissingH mtl old-locale ··· 154263 155157 sha256 = "0j3xjlwvix81zxd38540jwb3vp438d72gmfxdhbypyi5f1qgx01x"; 154264 155158 isLibrary = false; 154265 155159 isExecutable = true; 155160 + enableSeparateDataOutput = true; 154266 155161 executableHaskellDepends = [ 154267 155162 base ConfigFile directory HTTP mtl network parsec utf8-string XMPP 154268 155163 ]; ··· 154431 155326 pname = "probability"; 154432 155327 version = "0.2.5.1"; 154433 155328 sha256 = "0bgdyx562x91a3s79p293pz4qimwd2k35mfxap23ia6x6a5prrnk"; 155329 + enableSeparateDataOutput = true; 154434 155330 libraryHaskellDepends = [ 154435 155331 base containers random transformers utility-ht 154436 155332 ]; ··· 154834 155730 sha256 = "104frg0czfk4rgjxyf0xz7100j3y9ndvf01jgv3yibaq98v2h64r"; 154835 155731 isLibrary = false; 154836 155732 isExecutable = true; 155733 + enableSeparateDataOutput = true; 154837 155734 executableHaskellDepends = [ 154838 155735 base containers filepath haskell-src-exts semigroups uniplate zenc 154839 155736 ]; ··· 154873 155770 sha256 = "1swsy006axh06f1nwvfbvs3rsd1y1733n6b3xyncnc6vifnf7gz2"; 154874 155771 isLibrary = false; 154875 155772 isExecutable = true; 155773 + enableSeparateDataOutput = true; 154876 155774 executableHaskellDepends = [ 154877 155775 aeson base bytestring containers filepath ghc-prof js-jquery 154878 155776 scientific text unordered-containers vector ··· 155364 156262 }: 155365 156263 mkDerivation { 155366 156264 pname = "propellor"; 155367 - version = "4.5.2"; 155368 - sha256 = "15bs8l7i7m4s0h3mb3cc1frq60s96qnfmmvb0blyvjk6ydsi5qrx"; 156265 + version = "4.6.0"; 156266 + sha256 = "1m5i9fbvckrrl26pirh776pfyg7a0ih42vrxqh6bsxyrfjqhzv11"; 155369 156267 isLibrary = true; 155370 156268 isExecutable = true; 155371 156269 libraryHaskellDepends = [ ··· 155722 156620 pname = "protocol-buffers-descriptor"; 155723 156621 version = "2.4.2"; 155724 156622 sha256 = "0r7n1pnkabzksik9zrqif490g135hcjgvc40zm5c0b3dpq64r4lb"; 156623 + enableSeparateDataOutput = true; 155725 156624 libraryHaskellDepends = [ 155726 156625 base bytestring containers protocol-buffers 155727 156626 ]; ··· 155738 156637 pname = "protocol-buffers-descriptor-fork"; 155739 156638 version = "2.0.16"; 155740 156639 sha256 = "1wn6yqs70n26j6z44yfmz4j4rwj2h1zfpysn56wzaq7bwsdb0bqb"; 156640 + enableSeparateDataOutput = true; 155741 156641 libraryHaskellDepends = [ 155742 156642 base bytestring containers protocol-buffers-fork 155743 156643 ]; ··· 155806 156706 pname = "proton-haskell"; 155807 156707 version = "0.7"; 155808 156708 sha256 = "1gn4h8xprq8gkngccyqbbqn8nidwlczlwckxzjgnb190yy3kd7hi"; 156709 + enableSeparateDataOutput = true; 155809 156710 libraryHaskellDepends = [ base containers directory filepath ]; 155810 156711 testHaskellDepends = [ 155811 156712 base containers directory filepath HUnit test-framework ··· 156041 156942 sha256 = "1svyfvpqarmfy634s61l1pg7wc9y35bn753zq3vs1rvbw9lmxpj5"; 156042 156943 isLibrary = false; 156043 156944 isExecutable = true; 156945 + enableSeparateDataOutput = true; 156044 156946 executableHaskellDepends = [ 156045 156947 base bytestring hedis optparse-generic pipes pipes-bytestring text 156046 156948 ]; ··· 156187 157089 sha256 = "0pqqcs3plrhq6474j29lnwvc6fhr1wskb0ph8x64gzv9ly52dc9i"; 156188 157090 isLibrary = true; 156189 157091 isExecutable = true; 157092 + enableSeparateDataOutput = true; 156190 157093 libraryHaskellDepends = [ 156191 157094 aeson aeson-pretty base bytestring containers directory MissingH 156192 157095 random-fu safe text time vector ··· 156233 157136 sha256 = "0y1y2fbawbypzzrqdj66vh7f7xc6a9bb82bhdmrj5axmi6c5nn0h"; 156234 157137 isLibrary = true; 156235 157138 isExecutable = true; 157139 + enableSeparateDataOutput = true; 156236 157140 libraryHaskellDepends = [ 156237 157141 base bytestring containers hashable hashtables HsSyck mtl old-time 156238 157142 pretty random stm utf8-string ··· 156252 157156 pname = "pugs-HsSyck"; 156253 157157 version = "0.41"; 156254 157158 sha256 = "108dfhd83yzmlhbgff6j0a40r6vx9aq9dcdd8swk4yib9gbvsrp1"; 157159 + enableSeparateDataOutput = true; 156255 157160 libraryHaskellDepends = [ base bytestring ]; 156256 157161 description = "Fast, lightweight YAML loader and dumper"; 156257 157162 license = "unknown"; ··· 156907 157812 sha256 = "04sibf7rpr2dyxn943nbl8jzzy7zcf5ic0najgy1kmrl5n4v7p02"; 156908 157813 isLibrary = true; 156909 157814 isExecutable = true; 157815 + enableSeparateDataOutput = true; 156910 157816 libraryHaskellDepends = [ 156911 157817 aeson base containers diagrams-lib diagrams-svg filepath hashable 156912 157818 linear mtl optparse-applicative parsec SVGFonts text ··· 157053 157959 sha256 = "1q45l1grcja0mf1g90yxsdlr49gqrx27ycr6vln4hsqb5c0iqcfw"; 157054 157960 isLibrary = false; 157055 157961 isExecutable = true; 157962 + enableSeparateDataOutput = true; 157056 157963 executableHaskellDepends = [ base containers mtl parsec ]; 157057 157964 homepage = "http://community.moertel.com/ss/space/PXSL"; 157058 157965 description = "Parsimonious XML Shorthand Language--to-XML compiler"; ··· 157167 158074 pname = "qed"; 157168 158075 version = "0.0"; 157169 158076 sha256 = "1klsh6hvbvphhf3nr21856hqfcc4ysbrl6sz2z9rvvvpwbl24918"; 158077 + enableSeparateDataOutput = true; 157170 158078 libraryHaskellDepends = [ 157171 158079 base deepseq directory exceptions extra filepath haskell-src-exts 157172 158080 transformers uniplate ··· 157279 158187 pname = "qrcode"; 157280 158188 version = "0.1.2"; 157281 158189 sha256 = "1wfnxlz6rqjcgnkaqq0wdn75jsh3b9hagb84c1ljnwqaw98n3a9d"; 158190 + enableSeparateDataOutput = true; 157282 158191 libraryHaskellDepends = [ array base containers mtl vector ]; 157283 158192 description = "QR Code library in pure Haskell"; 157284 158193 license = stdenv.lib.licenses.bsd3; ··· 157510 158419 sha256 = "16qk4m6jgf4phmc0zxw11as9rlvspxpqza5k318bra9f9ybn253y"; 157511 158420 isLibrary = true; 157512 158421 isExecutable = true; 158422 + enableSeparateDataOutput = true; 157513 158423 libraryHaskellDepends = [ 157514 158424 aeson ansi-terminal ansigraph base bytestring directory 157515 158425 http-conduit terminal-size text ··· 157553 158463 sha256 = "0zw15qym8r00m7kir9h9cys1rmszdqihfcvy6dw52f1pb6cp5vsx"; 157554 158464 isLibrary = true; 157555 158465 isExecutable = true; 158466 + enableSeparateDataOutput = true; 157556 158467 libraryHaskellDepends = [ 157557 158468 aeson base bytestring cmdargs cond containers directory iproute 157558 158469 MissingH network safe scotty text transformers wai wai-extra ··· 158427 159338 sha256 = "1yha2rsphq2ar8c7p15dlg621d4ym46xgv70fga9mlq2r4zwy2lv"; 158428 159339 isLibrary = true; 158429 159340 isExecutable = true; 159341 + enableSeparateDataOutput = true; 158430 159342 libraryHaskellDepends = [ 158431 159343 ansi-terminal async base bytestring containers directory dlist 158432 159344 exceptions filepath hex mtl network network-simple parsec process ··· 158638 159550 sha256 = "0jjsa21a7f4hysbk9qvcxyyc2ncrmmjh02n7yyhjnfjgdp4sclwb"; 158639 159551 isLibrary = true; 158640 159552 isExecutable = true; 159553 + enableSeparateDataOutput = true; 158641 159554 libraryHaskellDepends = [ 158642 159555 base containers llvm-general llvm-general-pure mtl 158643 159556 ]; ··· 158813 159726 pname = "rallod"; 158814 159727 version = "0.0.1"; 158815 159728 sha256 = "14fnk2q702qm0mh30r9kznbh4ikpv4fsd5mrnwphm5d06vmq6hq9"; 159729 + enableSeparateDataOutput = true; 158816 159730 libraryHaskellDepends = [ base haskell98 ]; 158817 159731 homepage = "http://github.com/moonmaster9000/rallod"; 158818 159732 description = "'$' in reverse"; ··· 159944 160858 sha256 = "0q7b990k3ijjjwhnm1283k9vzmvypyg7mhvbzagvi74q0sgwyac7"; 159945 160859 isLibrary = false; 159946 160860 isExecutable = true; 160861 + enableSeparateDataOutput = true; 159947 160862 executableHaskellDepends = [ base bio bytestring containers ]; 159948 160863 homepage = "http://malde.org/~ketil/"; 159949 160864 description = "Mask nucleotide (EST) sequences in Fasta format"; ··· 160145 161060 pname = "react-haskell"; 160146 161061 version = "2.0.1"; 160147 161062 sha256 = "0kjbicrvriliy50gy82b7rsrfk5p3iv20wwnhiaq9i16mbh2zj8j"; 161063 + enableSeparateDataOutput = true; 160148 161064 libraryHaskellDepends = [ 160149 161065 aeson base deepseq lens-family monads-tf text transformers 160150 161066 unordered-containers void ··· 160322 161238 sha256 = "1fb0bq7rcxsnga2hxh94h2rpp4kjh383z06qgk36m49pyvnbnl9a"; 160323 161239 isLibrary = true; 160324 161240 isExecutable = true; 161241 + enableSeparateDataOutput = true; 160325 161242 libraryHaskellDepends = [ base reactive-banana threepenny-gui ]; 160326 161243 homepage = "http://haskell.org/haskellwiki/Reactive-banana"; 160327 161244 description = "Examples for the reactive-banana library, using threepenny-gui"; ··· 160338 161255 configureFlags = [ "-f-buildexamples" ]; 160339 161256 isLibrary = true; 160340 161257 isExecutable = true; 161258 + enableSeparateDataOutput = true; 160341 161259 libraryHaskellDepends = [ 160342 161260 base cabal-macosx reactive-banana wx wxcore 160343 161261 ]; ··· 161407 162325 pname = "reflection-without-remorse"; 161408 162326 version = "0.9.5"; 161409 162327 sha256 = "1iz4k42hc8f11a6kg2db847zmq5qpfiwns1448s62jswc2xm0x0r"; 162328 + enableSeparateDataOutput = true; 161410 162329 libraryHaskellDepends = [ base type-aligned ]; 161411 162330 homepage = "https://github.com/atzeus/reflection-without-remorse"; 161412 162331 description = "Efficient free and operational monads"; ··· 162105 163024 sha256 = "0kcxsdn5lgmpfrkpkygr54jrnjqd93b12shb00n6j00rg7p755vx"; 162106 163025 isLibrary = false; 162107 163026 isExecutable = true; 163027 + enableSeparateDataOutput = true; 162108 163028 executableHaskellDepends = [ 162109 163029 array base bytestring containers mtl regex-base regex-posix 162110 163030 ]; ··· 162195 163115 sha256 = "1b9cca3l46qxvc5ck3z27dg6w1888pabkk0q752bzjqr3fc4nidc"; 162196 163116 isLibrary = false; 162197 163117 isExecutable = true; 163118 + enableSeparateDataOutput = true; 162198 163119 executableHaskellDepends = [ 162199 163120 array base bytestring containers mtl regex-base regex-tdfa 162200 163121 ]; ··· 162291 163212 sha256 = "0hjj4p44zhl4iazw8ivaxldvrghbdfqabkf8d6shb4mw4r0xdqbx"; 162292 163213 isLibrary = true; 162293 163214 isExecutable = true; 163215 + enableSeparateDataOutput = true; 162294 163216 libraryHaskellDepends = [ 162295 163217 array base containers data-default parsec regex-base regexdot 162296 163218 toolshed ··· 162358 163280 pname = "regexpr-symbolic"; 162359 163281 version = "0.5"; 162360 163282 sha256 = "1cpwvb5mmcaqwy617m6cr25pcb4v4yxwzxng82bcrwkhjfdklsdr"; 163283 + enableSeparateDataOutput = true; 162361 163284 libraryHaskellDepends = [ base ]; 162362 163285 homepage = "http://sulzmann.blogspot.com/2008/12/equality-containment-and-intersection.html"; 162363 163286 description = "Regular expressions via symbolic manipulation"; ··· 162615 163538 sha256 = "1bl4yv77i8c4w1y5lqr6b8xi1m4ym2phvdjwc9l95rx1vrxkqpk1"; 162616 163539 isLibrary = true; 162617 163540 isExecutable = true; 163541 + enableSeparateDataOutput = true; 162618 163542 libraryHaskellDepends = [ base ghc ]; 162619 163543 executableHaskellDepends = [ base ghc ]; 162620 163544 homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; ··· 162929 163853 editedCabalFile = "10d2p9pdplwhavfimsa893wzcps7fhfaxgcqwblrqm5xmybc3825"; 162930 163854 isLibrary = true; 162931 163855 isExecutable = true; 163856 + enableSeparateDataOutput = true; 162932 163857 libraryHaskellDepends = [ 162933 163858 aeson async base bytestring Cabal containers data-default directory 162934 163859 filepath ghcid http-types mime-types process scotty text ··· 163721 164646 sha256 = "1g7b431hq6cqmckq3hlnf56qn1a9zbpid19c7vw6vh0y5xi5ckp6"; 163722 164647 revision = "3"; 163723 164648 editedCabalFile = "1lqspa275mq04chvz6pvjkrlxkd9gscaxy2rcsj5wy0123x1azxp"; 164649 + enableSeparateDataOutput = true; 163724 164650 libraryHaskellDepends = [ 163725 164651 aeson authenticate-oauth base blaze-builder bytestring 163726 164652 case-insensitive connection data-default-class http-api-data ··· 163748 164674 pname = "req"; 163749 164675 version = "0.3.1"; 163750 164676 sha256 = "0qg2773h247ahicz1051zrpc6aqf6zdqyrlp8q274l3qg5q1l03a"; 164677 + enableSeparateDataOutput = true; 163751 164678 libraryHaskellDepends = [ 163752 164679 aeson authenticate-oauth base blaze-builder bytestring 163753 164680 case-insensitive connection data-default-class http-api-data ··· 164214 165141 sha256 = "0hnmd37c6n61gkqi3assspkmh15q93id7yaq30vp65zr6rhliac1"; 164215 165142 revision = "8"; 164216 165143 editedCabalFile = "1x18sva575kcg9gg4brf17zbvvkzs0qi2rgkab5ijr4pnmhpwc62"; 165144 + enableSeparateDataOutput = true; 164217 165145 libraryHaskellDepends = [ 164218 165146 aeson base base-compat blaze-html Cabal code-builder directory 164219 165147 fclabels filepath hashable haskell-src-exts HStringTemplate hxt ··· 164644 165572 pname = "rex"; 164645 165573 version = "0.5.2"; 164646 165574 sha256 = "0xliw2glqyfr9cvi50rvb0frhmp3ysri9glx3c8x96rkf0xg27kf"; 165575 + enableSeparateDataOutput = true; 164647 165576 libraryHaskellDepends = [ 164648 165577 base bytestring containers haskell-src-exts haskell-src-meta 164649 165578 pcre-light template-haskell ··· 164663 165592 sha256 = "122hca6whzxqk3x7207k4clrrl2awy96pafq0gjwddqicny41jza"; 164664 165593 isLibrary = false; 164665 165594 isExecutable = true; 165595 + enableSeparateDataOutput = true; 164666 165596 executableHaskellDepends = [ 164667 165597 base bytestring containers datetime HTTP json mtl nano-md5 xhtml 164668 165598 ]; ··· 164731 165661 sha256 = "08ddm1pxi7qdjz2mgvjvwdgxyskvac4ahi3jp2fd8z1sh68c7x7s"; 164732 165662 isLibrary = false; 164733 165663 isExecutable = true; 165664 + enableSeparateDataOutput = true; 164734 165665 executableHaskellDepends = [ 164735 165666 base call containers lens mtl objective split 164736 165667 ]; ··· 164813 165744 pname = "ridley"; 164814 165745 version = "0.3.1.2"; 164815 165746 sha256 = "15hc1j0bkdb0wbivxl73rgrk4hl598d96yv0fhpsgls74alarniq"; 165747 + enableSeparateDataOutput = true; 164816 165748 libraryHaskellDepends = [ 164817 165749 async base containers ekg-core ekg-prometheus-adapter inline-c 164818 165750 katip microlens microlens-th mtl process prometheus raw-strings-qq ··· 165987 166919 sha256 = "0x40j5rk8v61wzhcj730g75a97ikki7j22dfrh4z873b6mxwfh4k"; 165988 166920 isLibrary = false; 165989 166921 isExecutable = true; 166922 + enableSeparateDataOutput = true; 165990 166923 executableHaskellDepends = [ 165991 166924 appar base blaze-builder bytestring c10k containers dns domain-auth 165992 166925 hslogger iproute parsec unix ··· 166179 167112 "rtcm" = callPackage 166180 167113 ({ mkDerivation, aeson, array, base, base64-bytestring 166181 167114 , basic-prelude, binary, binary-bits, binary-conduit, bytestring 166182 - , conduit, conduit-combinators, conduit-extra, lens, random 166183 - , resourcet, tasty, tasty-hunit, tasty-quickcheck, template-haskell 166184 - , text, word24 167115 + , conduit, conduit-combinators, conduit-extra, lens, lens-aeson 167116 + , random, resourcet, tasty, tasty-hunit, tasty-quickcheck 167117 + , template-haskell, text, word24 166185 167118 }: 166186 167119 mkDerivation { 166187 167120 pname = "rtcm"; 166188 - version = "0.1.12"; 166189 - sha256 = "1pscz3a7n8a3337zh4xh44gf00hd86d4dnh059sj60gx6dac7zxh"; 167121 + version = "0.2.2"; 167122 + sha256 = "1fh6hvz3isv8zzmw94lkr354lm7805pr8sg5rj859skh2h49mzbb"; 166190 167123 isLibrary = true; 166191 167124 isExecutable = true; 166192 167125 libraryHaskellDepends = [ 166193 167126 aeson array base base64-bytestring basic-prelude binary binary-bits 166194 - bytestring lens template-haskell text word24 167127 + bytestring lens lens-aeson template-haskell text word24 166195 167128 ]; 166196 167129 executableHaskellDepends = [ 166197 167130 aeson base basic-prelude binary-conduit bytestring conduit ··· 166557 167490 sha256 = "1ildbmnpdh8x25m6kjdc6506cjgngjmjhvrdfkrcwg5cdqcqs266"; 166558 167491 isLibrary = false; 166559 167492 isExecutable = true; 167493 + enableSeparateDataOutput = true; 166560 167494 executableHaskellDepends = [ base binary bytestring parsec ]; 166561 167495 testHaskellDepends = [ 166562 167496 base binary bytestring parsec QuickCheck test-framework ··· 166751 167685 pname = "safe-length"; 166752 167686 version = "0.1.0.0"; 166753 167687 sha256 = "0yc9q5p7w955ywglvz6mhbpgqd3d39j91v994y3k25xrlbj5a494"; 167688 + enableSeparateDataOutput = true; 166754 167689 libraryHaskellDepends = [ base ]; 166755 167690 testHaskellDepends = [ 166756 167691 base hspec hspec-core QuickCheck should-not-typecheck ··· 167092 168027 sha256 = "0sfvx7hj0z2g57gs6l1s078z3a34hfgm4pfcb1qr1pvbc8lj3f1h"; 167093 168028 isLibrary = true; 167094 168029 isExecutable = true; 168030 + enableSeparateDataOutput = true; 167095 168031 libraryHaskellDepends = [ 167096 168032 base c10k fclabels filestore monads-fd network salvia salvia-extras 167097 168033 salvia-protocol salvia-sessions salvia-websocket stm threadmanager ··· 167570 168506 "sbp" = callPackage 167571 168507 ({ mkDerivation, aeson, array, base, base64-bytestring 167572 168508 , basic-prelude, binary, binary-conduit, bytestring, conduit 167573 - , conduit-combinators, conduit-extra, data-binary-ieee754, lens 167574 - , monad-loops, QuickCheck, resourcet, tasty, tasty-hunit 167575 - , tasty-quickcheck, template-haskell, text, unordered-containers 167576 - , yaml 168509 + , conduit-extra, data-binary-ieee754, lens, lens-aeson, monad-loops 168510 + , QuickCheck, resourcet, tasty, tasty-hunit, tasty-quickcheck 168511 + , template-haskell, text, unordered-containers, yaml 167577 168512 }: 167578 168513 mkDerivation { 167579 168514 pname = "sbp"; 167580 - version = "2.2.9"; 167581 - sha256 = "0cs9gdb24s7yvrhphjwlazqbmcmc5f3a7rk39svdijh31aagd5aj"; 168515 + version = "2.2.11"; 168516 + sha256 = "1fdwsqh3mr90w6k4f4y8cbshx8divhfwhc06cfbdh64k8wckl27x"; 167582 168517 isLibrary = true; 167583 168518 isExecutable = true; 167584 168519 libraryHaskellDepends = [ 167585 168520 aeson array base base64-bytestring basic-prelude binary bytestring 167586 - data-binary-ieee754 lens monad-loops template-haskell text 167587 - unordered-containers 168521 + data-binary-ieee754 lens lens-aeson monad-loops template-haskell 168522 + text unordered-containers 167588 168523 ]; 167589 168524 executableHaskellDepends = [ 167590 168525 aeson base basic-prelude binary-conduit bytestring conduit 167591 - conduit-combinators conduit-extra resourcet yaml 168526 + conduit-extra resourcet yaml 167592 168527 ]; 167593 168528 testHaskellDepends = [ 167594 168529 aeson base base64-bytestring basic-prelude bytestring QuickCheck ··· 167632 168567 sha256 = "0zlf683rgpn8dcm1wrwy01s2i35px0rlhprw713jl5kic2wp3p4j"; 167633 168568 isLibrary = true; 167634 168569 isExecutable = true; 168570 + enableSeparateDataOutput = true; 167635 168571 libraryHaskellDepends = [ 167636 168572 array async base base-compat containers crackNum 167637 168573 data-binary-ieee754 deepseq directory filepath ghc mtl old-time ··· 167659 168595 pname = "sbv"; 167660 168596 version = "7.0"; 167661 168597 sha256 = "1jqgzqhmcx015ja8nwpswq6akw9vrabmhhf709vfirgd9q8pgnjc"; 168598 + enableSeparateDataOutput = true; 167662 168599 libraryHaskellDepends = [ 167663 168600 array async base containers crackNum data-binary-ieee754 deepseq 167664 168601 directory filepath generic-deriving ghc mtl pretty process ··· 167702 168639 pname = "sc3-rdu"; 167703 168640 version = "0.15"; 167704 168641 sha256 = "0zrd9w3s535b2dpnmmrfg4i6jd9f4nh338x1cbggcw3pjyv8gk30"; 168642 + enableSeparateDataOutput = true; 167705 168643 libraryHaskellDepends = [ base hsc3 hsc3-db ]; 167706 168644 homepage = "http://rd.slavepianos.org/t/sc3-rdu"; 167707 168645 description = "Haskell bindings to sc3-rdu (sc3 rd ugens)"; ··· 167873 168811 sha256 = "0dh23v8kx2qnf392afznv3iixvwr4220my9nnlxgz1mhn77d51ln"; 167874 168812 isLibrary = false; 167875 168813 isExecutable = true; 168814 + enableSeparateDataOutput = true; 167876 168815 executableHaskellDepends = [ 167877 168816 ansi-terminal base bytestring mtl optparse-applicative scrypt 167878 168817 vector ··· 168059 168998 editedCabalFile = "0ddlmg6f7y70f1yi351q1d46mgxzs8h53969jmhdhj6al860grxv"; 168060 168999 isLibrary = true; 168061 169000 isExecutable = true; 169001 + enableSeparateDataOutput = true; 168062 169002 libraryHaskellDepends = [ 168063 169003 aeson base base64-bytestring binary blaze-html blaze-markup 168064 169004 bytestring containers data-default directory extensible-exceptions ··· 168099 169039 editedCabalFile = "065ij08gi9ymyqqa7lmj5d57zqk4rax72kzhm2qbvn00h3g6d81k"; 168100 169040 isLibrary = true; 168101 169041 isExecutable = true; 169042 + enableSeparateDataOutput = true; 168102 169043 libraryHaskellDepends = [ 168103 169044 aeson base bytestring containers data-default directory filepath 168104 169045 hs-bibutils mtl old-locale parsec rfc5051 scholdoc scholdoc-types ··· 168246 169187 sha256 = "1ihq538ym6hh099p0h9p1ngjsq3a9h9k5ssnwyr4bqhlmv8xam0i"; 168247 169188 isLibrary = true; 168248 169189 isExecutable = true; 169190 + enableSeparateDataOutput = true; 168249 169191 libraryHaskellDepends = [ 168250 169192 base Cabal containers directory filepath ghc ghc-paths ghc-syb 168251 169193 hslogger json multiset time uniplate ··· 168339 169281 sha256 = "0dhpyf0kh6qrrcyr3iwp3i3rkj5vcl7k7aa9qmxq2qq1f6dhw4p6"; 168340 169282 isLibrary = true; 168341 169283 isExecutable = true; 169284 + enableSeparateDataOutput = true; 168342 169285 libraryHaskellDepends = [ 168343 169286 base cairo gtk MonadCatchIO-transformers mtl old-locale scope time 168344 169287 zoom-cache ··· 168613 169556 editedCabalFile = "0aasfcbs8cc729xvwnk8hgskv2sxg6c928gf8jifadgwgsqwahfr"; 168614 169557 isLibrary = true; 168615 169558 isExecutable = true; 169559 + enableSeparateDataOutput = true; 168616 169560 libraryHaskellDepends = [ base scotty text transformers ]; 168617 169561 executableHaskellDepends = [ base scotty text transformers ]; 168618 169562 license = stdenv.lib.licenses.mit; ··· 168652 169596 sha256 = "035jpwp58l70jd0dklx5rg0sm8b2bd5r1m726dbhhlv60w6bdfn3"; 168653 169597 isLibrary = false; 168654 169598 isExecutable = true; 169599 + enableSeparateDataOutput = true; 168655 169600 executableHaskellDepends = [ 168656 169601 array base binary containers deepseq directory mtl packed-dawg 168657 169602 parallel split ··· 168788 169733 sha256 = "0c4djdr2lq6kbi726zmjicscsc2ksj4l787pzyj5lfbl9c11fb6j"; 168789 169734 isLibrary = false; 168790 169735 isExecutable = true; 169736 + enableSeparateDataOutput = true; 168791 169737 executableHaskellDepends = [ 168792 169738 array base cmdargs containers directory filepath json mtl parsec 168793 169739 pretty process safe tagsoup time uniplate utf8-string ··· 168845 169791 sha256 = "1164g29vb77kn5xdl71fsv95kf1h59gq8jhszyj3jrckv3x86fjs"; 168846 169792 isLibrary = true; 168847 169793 isExecutable = true; 169794 + enableSeparateDataOutput = true; 168848 169795 libraryHaskellDepends = [ 168849 169796 base bytestring exceptions linear StateVar text transformers vector 168850 169797 ]; ··· 168858 169805 ({ mkDerivation, base, cairo, linear, mtl, random, sdl2, time }: 168859 169806 mkDerivation { 168860 169807 pname = "sdl2-cairo"; 168861 - version = "0.1.0.2"; 168862 - sha256 = "11jaf13wklxbd5ndbwpbimnjwgf8k4wd7dbc979ng4j3qb0asdp5"; 169808 + version = "0.1.0.3"; 169809 + sha256 = "1lw5d8hk97h26sxq1bq0ha56s1pi0zsyw60di41w92a4xrx8z2nf"; 168863 169810 isLibrary = true; 168864 169811 isExecutable = true; 168865 169812 libraryHaskellDepends = [ base cairo linear mtl random sdl2 time ]; ··· 169194 170141 sha256 = "0qrb2g7dfhh2m3hwp39xlimbc3kinww279a58pah738gqnhmayrs"; 169195 170142 isLibrary = true; 169196 170143 isExecutable = true; 170144 + enableSeparateDataOutput = true; 169197 170145 libraryHaskellDepends = [ base containers ]; 169198 170146 executableHaskellDepends = [ base containers ]; 169199 170147 homepage = "http://github.com/pgavin/secdh"; ··· 170099 171047 pname = "sequence"; 170100 171048 version = "0.9.8"; 170101 171049 sha256 = "0ayxy0lbkah90kpyjac0llv6lrbwymvfz2d3pdfrz1079si65jsh"; 171050 + enableSeparateDataOutput = true; 170102 171051 libraryHaskellDepends = [ base containers transformers ]; 170103 171052 homepage = "https://github.com/atzeus/sequence"; 170104 171053 description = "A type class for sequences and various sequence data structures"; ··· 170145 171094 sha256 = "1dcinp03kbj94kw1lkkyz0gh4k7nw96l9c9782v0sdq0v5i525j9"; 170146 171095 isLibrary = true; 170147 171096 isExecutable = true; 171097 + enableSeparateDataOutput = true; 170148 171098 libraryHaskellDepends = [ 170149 171099 array base binary bytestring containers mtl nlp-scores pretty split 170150 171100 text vector ··· 172664 173614 sha256 = "19blk6nzbsm9syx45zzlmqxq1mi2prv0jq12cf83b4kf4pvwk32n"; 172665 173615 isLibrary = true; 172666 173616 isExecutable = true; 173617 + enableSeparateDataOutput = true; 172667 173618 libraryHaskellDepends = [ 172668 173619 attoparsec base bytestring containers dlist ghc-prim mtl vector 172669 173620 ]; ··· 172927 173878 sha256 = "0z43hlgzklynb0y9b6bz2qmr2590v5nfp241i8b3rq7flb5lhlmp"; 172928 173879 isLibrary = false; 172929 173880 isExecutable = true; 173881 + enableSeparateDataOutput = true; 172930 173882 executableHaskellDepends = [ 172931 173883 aeson async base binary bytestring conduit-combinators 172932 173884 conduit-extra containers cryptohash HsOpenSSL iproute network ··· 172991 173943 sha256 = "1fxi4vl6fffq0h84rxd9cqik58mj8jk7gmspm9vkjmp97j1hslh5"; 172992 173944 isLibrary = true; 172993 173945 isExecutable = true; 173946 + enableSeparateDataOutput = true; 172994 173947 libraryHaskellDepends = [ 172995 173948 base binary bytestring deepseq directory extra filepath hashable 172996 173949 js-flot js-jquery process random time transformers unix ··· 173287 174240 pname = "shana"; 173288 174241 version = "2009.12.1"; 173289 174242 sha256 = "0fg16nbi0r0pdd3sfabzdz1f4595x3hz3b4pxfwy8l78p8lppv0y"; 174243 + enableSeparateDataOutput = true; 173290 174244 libraryHaskellDepends = [ base directory regex-posix ]; 173291 174245 homepage = "http://github.com/nfjinjing/hack/tree/master"; 173292 174246 description = "treat haskell functions as unix pipes"; ··· 173528 174482 sha256 = "0xyarxm2hs8yypmz8w4zbnjvv5xl9dd657j7j3a82gbghsb93vyy"; 173529 174483 isLibrary = true; 173530 174484 isExecutable = true; 174485 + enableSeparateDataOutput = true; 173531 174486 libraryHaskellDepends = [ base ]; 173532 174487 executableHaskellDepends = [ base ]; 173533 174488 homepage = "http://gnu.rtin.bz/directory/devel/prog/other/shell-haskell.html"; ··· 173948 174903 sha256 = "1gpjb8lw5zmnsd8ic739j91iqsv9a707nd9j5mbnhq6gilk61nrh"; 173949 174904 isLibrary = false; 173950 174905 isExecutable = true; 174906 + enableSeparateDataOutput = true; 173951 174907 executableHaskellDepends = [ base glade gtk random ]; 173952 174908 description = "A simple gtk based Russian Roulette game"; 173953 174909 license = stdenv.lib.licenses.bsd3; ··· 174108 175064 sha256 = "1m0f5n2dz02mvd2hlsv3gdq8y4xqba7dmyqn2x123sbvm9yvj584"; 174109 175065 isLibrary = true; 174110 175066 isExecutable = true; 175067 + enableSeparateDataOutput = true; 174111 175068 libraryHaskellDepends = [ 174112 175069 base cairo containers directory fgl filepath glib gtk hxt mtl 174113 175070 parsec process text unix ··· 174130 175087 pname = "sifflet-lib"; 174131 175088 version = "2.2.1"; 174132 175089 sha256 = "1snaq0vlsk4r2lbg2sk389ppwnz22mqwhf1lgwjh3cg91ab905n4"; 175090 + enableSeparateDataOutput = true; 174133 175091 libraryHaskellDepends = [ 174134 175092 base cairo containers directory fgl filepath glib gtk hxt mtl 174135 175093 parsec process unix ··· 174286 175244 sha256 = "05069qjgzm4j22p0q6i75qpsvzpw52b7bh2x2b6jcxnlvqp6flzg"; 174287 175245 isLibrary = true; 174288 175246 isExecutable = true; 175247 + enableSeparateDataOutput = true; 174289 175248 libraryHaskellDepends = [ 174290 175249 aeson base base64-bytestring blaze-builder bytestring directory 174291 175250 filepath http-types mime-types monad-control mtl simple-templates ··· 175057 176016 pname = "simpleargs"; 175058 176017 version = "0.2.1"; 175059 176018 sha256 = "1grjjpb3397wnr6sd0bn679k9pfg1zlm61350zd2gj5yq6pshl6p"; 176019 + enableSeparateDataOutput = true; 175060 176020 libraryHaskellDepends = [ base ]; 175061 176021 homepage = "http://malde.org/~ketil/simpleargs"; 175062 176022 description = "Provides a more flexible getArgs function with better error reporting"; ··· 175222 176182 sha256 = "0i60ksi5xc0d0rg5xzhbdjv2f3b5jr6rl9khn9i2b1n9sh1lv36m"; 175223 176183 isLibrary = false; 175224 176184 isExecutable = true; 176185 + enableSeparateDataOutput = true; 175225 176186 executableHaskellDepends = [ base bio bytestring random ]; 175226 176187 homepage = "http://malde.org/~ketil/"; 175227 176188 description = "Simulate sequencing with different models for priming and errors"; ··· 175379 176340 sha256 = "1wq5dan30ggjgmravy92ylqjvjv1q7mxrmddr7zc8h6aqr0wx0fg"; 175380 176341 revision = "1"; 175381 176342 editedCabalFile = "1q2dy0ywngm9iv7k6d9gnf860m9hpf62q5qvdzmxw5s629gk4afn"; 176343 + enableSeparateDataOutput = true; 175382 176344 libraryHaskellDepends = [ base bytestring cpu ]; 175383 176345 testHaskellDepends = [ 175384 176346 base bytestring QuickCheck test-framework ··· 176341 177303 sha256 = "0dxw4jgmwcz92n2rymdrfaz1v8lc2wknql9ca5p98jc14l8c2bl3"; 176342 177304 isLibrary = false; 176343 177305 isExecutable = true; 177306 + enableSeparateDataOutput = true; 176344 177307 executableHaskellDepends = [ 176345 177308 base haskell98 pretty unix utf8-string 176346 177309 ]; ··· 176400 177363 pname = "smoothie"; 176401 177364 version = "0.4.2.7"; 176402 177365 sha256 = "1cnyckmwqj0caw2vcbmvzha8hs1207pq11mlmwpk2w6qccs1qml4"; 177366 + enableSeparateDataOutput = true; 176403 177367 libraryHaskellDepends = [ aeson base linear text vector ]; 176404 177368 homepage = "https://github.com/phaazon/smoothie"; 176405 177369 description = "Smooth curves via several interpolation modes"; ··· 176858 177822 sha256 = "15744qmp48qn67n8w2nxxqxfh5rjlg328psl58whb8q5m6grgv3n"; 176859 177823 isLibrary = true; 176860 177824 isExecutable = true; 177825 + enableSeparateDataOutput = true; 176861 177826 libraryHaskellDepends = [ 176862 177827 aeson base blaze-builder blaze-html bytestring case-insensitive 176863 177828 configurator containers data-default digestive-functors ··· 177071 178036 pname = "snap-utils"; 177072 178037 version = "0.1.2"; 177073 178038 sha256 = "1kr09fj1jfs6sfmca51k0gwn4acya70s9irzay9yf5b9yyvka391"; 178039 + enableSeparateDataOutput = true; 177074 178040 libraryHaskellDepends = [ 177075 178041 base bytestring heist http-types MonadCatchIO-transformers mtl snap 177076 178042 snap-core text xmlhtml ··· 177125 178091 pname = "snaplet-actionlog"; 177126 178092 version = "0.2.0.1"; 177127 178093 sha256 = "177a1b9fvlqh59hd9b5y92lq8yxv14jh79aadkyhxb4i0l5rl9vv"; 178094 + enableSeparateDataOutput = true; 177128 178095 libraryHaskellDepends = [ 177129 178096 base blaze-builder bytestring digestive-functors 177130 178097 digestive-functors-heist digestive-functors-snap errors heist ··· 177146 178113 pname = "snaplet-amqp"; 177147 178114 version = "1.1.0.0"; 177148 178115 sha256 = "01qw28paifysk402lpb7y8dyhf401ls1l0dcn6fiigvczwxzmk91"; 178116 + enableSeparateDataOutput = true; 177149 178117 libraryHaskellDepends = [ 177150 178118 amqp base bytestring configurator lens monad-control mtl network 177151 178119 resource-pool snap transformers ··· 177185 178153 pname = "snaplet-coffee"; 177186 178154 version = "0.1.0.2"; 177187 178155 sha256 = "1kxxnk8m9154sallhy3rf8nmz0qkvchh8m761jgzhfbnnwlznpnf"; 178156 + enableSeparateDataOutput = true; 177188 178157 libraryHaskellDepends = [ 177189 178158 base bytestring configurator directory filepath haskell-coffee mtl 177190 178159 snap snap-core ··· 177240 178209 sha256 = "01s2mj5vml5k9q0x291snhzhdpilb37ksvhavxjf0fz0j3na7acp"; 177241 178210 revision = "1"; 177242 178211 editedCabalFile = "06c6psa499aiz4nqwps1q6nw6imgkbcn0vird2b20kzi79lj7wsq"; 178212 + enableSeparateDataOutput = true; 177243 178213 libraryHaskellDepends = [ 177244 178214 aeson base bytestring configurator directory fay filepath mtl snap 177245 178215 snap-core transformers ··· 177275 178245 pname = "snaplet-hasql"; 177276 178246 version = "1.0.2"; 177277 178247 sha256 = "08gx096vg0swjc7z10nzlqsnjlr43cp190q4krkf08jb54ln3kcv"; 178248 + enableSeparateDataOutput = true; 177278 178249 libraryHaskellDepends = [ 177279 178250 aeson base bytestring clientsession configurator hasql 177280 178251 hasql-backend lens mtl snap text time ··· 177332 178303 pname = "snaplet-hslogger"; 177333 178304 version = "1.0.0.2"; 177334 178305 sha256 = "15cvpiz3p1qhb80sgz61mabvkb8h6j713jrny6mbg6qj945jbb0x"; 178306 + enableSeparateDataOutput = true; 177335 178307 libraryHaskellDepends = [ 177336 178308 base configurator hslogger mtl snap transformers 177337 178309 ]; ··· 177375 178347 pname = "snaplet-influxdb"; 177376 178348 version = "1.0.1.1"; 177377 178349 sha256 = "1dv800rclzl0b251bixksfl7jf28z82ql7nikf5dvginfpm71j7j"; 178350 + enableSeparateDataOutput = true; 177378 178351 libraryHaskellDepends = [ 177379 178352 base bytestring configurator http-client influxdb lens 177380 178353 monad-control mtl network snap text transformers ··· 177410 178383 pname = "snaplet-mandrill"; 177411 178384 version = "0.1.0.3"; 177412 178385 sha256 = "0yyb0qbd14v6xw5vix08pv40w9l8p2vwvmh67sa9b4q9wkvwv962"; 178386 + enableSeparateDataOutput = true; 177413 178387 libraryHaskellDepends = [ 177414 178388 base configurator mandrill mtl network snap transformers 177415 178389 ]; ··· 177465 178439 pname = "snaplet-mysql-simple"; 177466 178440 version = "0.2.2.0"; 177467 178441 sha256 = "0n2hjchcr3hh7hb5cpz2ahsffsyhiavp3gizr19pjwslgmq484a3"; 178442 + enableSeparateDataOutput = true; 177468 178443 libraryHaskellDepends = [ 177469 178444 base bytestring clientsession configurator containers errors lens 177470 178445 MonadCatchIO-transformers mtl mysql mysql-simple ··· 177514 178489 pname = "snaplet-persistent"; 177515 178490 version = "0.5"; 177516 178491 sha256 = "1zbxknmsg9q6jwbxr4nh8nkfgkjmxb7pr2wwqa7rgr0wvh8ipx5k"; 178492 + enableSeparateDataOutput = true; 177517 178493 libraryHaskellDepends = [ 177518 178494 base bytestring clientsession configurator errors heist lens 177519 178495 monad-logger MonadCatchIO-transformers mtl persistent ··· 177536 178512 pname = "snaplet-postgresql-simple"; 177537 178513 version = "1.0.2.0"; 177538 178514 sha256 = "1agykln1mr08bh5yp8xf5nhjirbvwc9kgl4k3rkl700hfjhdpbb7"; 178515 + enableSeparateDataOutput = true; 177539 178516 libraryHaskellDepends = [ 177540 178517 base bytestring clientsession configurator lens lifted-base 177541 178518 monad-control mtl postgresql-simple resource-pool snap text ··· 177555 178532 pname = "snaplet-postmark"; 177556 178533 version = "0.2.0"; 177557 178534 sha256 = "0006i88ssgh6z9g967wlw0km8abxmxdjjs7aalsddzla6xdp8wnx"; 178535 + enableSeparateDataOutput = true; 177558 178536 libraryHaskellDepends = [ 177559 178537 base configurator mtl postmark snap text transformers 177560 178538 ]; ··· 177684 178662 pname = "snaplet-sass"; 177685 178663 version = "0.1.2.0"; 177686 178664 sha256 = "1aiznsi54lxzwxnilckspvp6rdfmksxppa3964kqxh93a9gvkr9z"; 178665 + enableSeparateDataOutput = true; 177687 178666 libraryHaskellDepends = [ 177688 178667 base bytestring configurator directory filepath mtl process snap 177689 178668 snap-core transformers ··· 177760 178739 sha256 = "1mv0sfz2dqhl82wbsb11c5brw3jadh9sliinlj3xb5m7n42z84id"; 177761 178740 revision = "1"; 177762 178741 editedCabalFile = "0gj934nif3h3695ckwi457zjih2zfmbjsbsh884v3dp4qlfz6jcw"; 178742 + enableSeparateDataOutput = true; 177763 178743 libraryHaskellDepends = [ 177764 178744 aeson base bytestring clientsession configurator direct-sqlite lens 177765 178745 lifted-base monad-control mtl snap sqlite-simple text transformers ··· 177807 178787 pname = "snaplet-stripe"; 177808 178788 version = "0.3.0"; 177809 178789 sha256 = "0j85vzfmw6skag8rfww4gsg1lyfc7qbxiqhmwbsh4vfjiagrc9wp"; 178790 + enableSeparateDataOutput = true; 177810 178791 libraryHaskellDepends = [ 177811 178792 base bytestring configurator heist lens-family-core mtl snap stripe 177812 178793 text text-format transformers xmlhtml ··· 178085 179066 pname = "snow-white"; 178086 179067 version = "2009.12.1"; 178087 179068 sha256 = "007hzr8dpj0mhvmnpdg0gi296q3mlicnx36s6hmgifzmyaa8kssi"; 179069 + enableSeparateDataOutput = true; 178088 179070 libraryHaskellDepends = [ base binary bytestring mps ]; 178089 179071 homepage = "http://github.com/nfjinjing/snow-white"; 178090 179072 description = "encode any binary instance to white space"; ··· 178499 179481 pname = "soegtk"; 178500 179482 version = "0.12.1"; 178501 179483 sha256 = "01f49hwxc5h85iwzgnddxlh1lmb3s27zddmghxrlq958gcrr2iar"; 179484 + enableSeparateDataOutput = true; 178502 179485 libraryHaskellDepends = [ base cairo gtk old-time stm ]; 178503 179486 homepage = "http://projects.haskell.org/gtk2hs/"; 178504 179487 description = "GUI functions as used in the book \"The Haskell School of Expression\""; ··· 178636 179619 pname = "sort-by-pinyin"; 178637 179620 version = "2014.5.19"; 178638 179621 sha256 = "1ksfx5zhagg2y8virg8am1w8ljrzc9ddmf7xgvi5gx88zibi32fd"; 179622 + enableSeparateDataOutput = true; 178639 179623 libraryHaskellDepends = [ 178640 179624 air air-extra air-th base bytestring containers text 178641 179625 ]; ··· 178746 179730 sha256 = "1934awipc837mdhkfa3ghmljxk0vb16wd4f31qdl4q9nxgwfv6c8"; 178747 179731 isLibrary = false; 178748 179732 isExecutable = true; 179733 + enableSeparateDataOutput = true; 178749 179734 executableHaskellDepends = [ 178750 179735 base bytestring containers curl data-default directory filepath 178751 179736 hack hack-contrib hack-handler-happstack haskell98 HDBC ··· 178980 179965 sha256 = "1bygwg1kadfhlphlsh8r05lxsdb5lzz3z37lny2zd00llmc4i33p"; 178981 179966 isLibrary = true; 178982 179967 isExecutable = true; 179968 + enableSeparateDataOutput = true; 178983 179969 libraryHaskellDepends = [ 178984 179970 base binary bytestring choice distributed-closure jni jvm 178985 179971 jvm-streaming singletons streaming text vector ··· 179004 179990 sha256 = "0cyihfhxry3jrwyqrki14s6nw652w39m32ramg0nf1c85ahmhd3b"; 179005 179991 isLibrary = true; 179006 179992 isExecutable = true; 179993 + enableSeparateDataOutput = true; 179007 179994 libraryHaskellDepends = [ 179008 179995 base binary bytestring choice distributed-closure jni jvm 179009 179996 jvm-streaming singletons streaming text vector ··· 179073 180060 pname = "sparse-linear-algebra"; 179074 180061 version = "0.2.9.7"; 179075 180062 sha256 = "0sskv1bbn1q19jh508wk1d898jwzlsf7662v4crrppmb6k6cq1zq"; 180063 + enableSeparateDataOutput = true; 179076 180064 libraryHaskellDepends = [ 179077 180065 base containers exceptions mtl transformers vector 179078 180066 vector-algorithms vector-space ··· 179133 180121 pname = "spata"; 179134 180122 version = "2010.10.10"; 179135 180123 sha256 = "1cr0d82l2b96jvszca4yavdgwq450yzigcyrrlddrf9m9908kkzy"; 180124 + enableSeparateDataOutput = true; 179136 180125 libraryHaskellDepends = [ base dlist mps mtl ]; 179137 180126 homepage = "http://github.com/nfjinjing/spata"; 179138 180127 description = "brainless form validation"; ··· 179336 180325 sha256 = "0n0b2lbvj3pjg841pdw7pb09cpkz2d186dd4pmabjnm6r6wabm2n"; 179337 180326 isLibrary = true; 179338 180327 isExecutable = true; 180328 + enableSeparateDataOutput = true; 179339 180329 libraryHaskellDepends = [ 179340 180330 base edit-distance phonetic-code sqlite 179341 180331 ]; ··· 179859 180849 sha256 = "027vn7xqk7r15130hc6xikg2hyliqmg14y7n3wrrqaxvd4saa6qn"; 179860 180850 isLibrary = false; 179861 180851 isExecutable = true; 180852 + enableSeparateDataOutput = true; 179862 180853 executableHaskellDepends = [ 179863 180854 aeson attoparsec base base64-bytestring bytestring containers 179864 180855 data-default docopt entropy http-conduit http-kit http-types ··· 179882 180873 sha256 = "0jvkvk5yqp4gibg61q67iczaqvfszikxvvgf04fg6xs23gjkpihp"; 179883 180874 isLibrary = false; 179884 180875 isExecutable = true; 180876 + enableSeparateDataOutput = true; 179885 180877 executableHaskellDepends = [ 179886 180878 aeson base blaze-html blaze-markup bytestring data-default-class 179887 180879 directory docopt fast-logger filepath http-types ··· 180380 181372 sha256 = "1zhhqam6y5ckh6i145mr0irm17dmlam2k730rpqiyw4mwgmcp4qa"; 180381 181373 isLibrary = true; 180382 181374 isExecutable = true; 181375 + enableSeparateDataOutput = true; 180383 181376 libraryHaskellDepends = [ base iproute text ]; 180384 181377 executableHaskellDepends = [ base ]; 180385 181378 testHaskellDepends = [ ··· 180422 181415 sha256 = "0794vsv043ppydzyjxnh06m4l3gbnga7x8nwsamh8skrzjfwn6jq"; 180423 181416 isLibrary = false; 180424 181417 isExecutable = true; 181418 + enableSeparateDataOutput = true; 180425 181419 executableHaskellDepends = [ 180426 181420 base containers curl directory hdaemonize hslogger mtl process 180427 181421 regex-compat stm unix ··· 180591 181585 sha256 = "0vmqfs956cziwb3q2v4nzn4b9d87062z9pixwfr7iiwd0ypmmiv6"; 180592 181586 revision = "2"; 180593 181587 editedCabalFile = "1bwdg0y98bw8p1857isjcg3f51d0nv52zbfc0s6f9syq70ahbhz9"; 181588 + enableSeparateDataOutput = true; 180594 181589 libraryHaskellDepends = [ 180595 181590 aeson base bytestring containers deepseq directory exceptions 180596 181591 filepath megaparsec mtl template-haskell text unordered-containers ··· 181235 182230 sha256 = "0rdkxyhy62h87vdq08znqpjhg4wriwvbmn0pwak9nqsd5xk6slka"; 181236 182231 isLibrary = false; 181237 182232 isExecutable = true; 182233 + enableSeparateDataOutput = true; 181238 182234 executableHaskellDepends = [ 181239 182235 base bytestring directory EdisonCore FTGL haskell98 mtl OpenGL 181240 182236 random SDL ··· 182212 183208 pname = "stmcontrol"; 182213 183209 version = "0.1"; 182214 183210 sha256 = "0m42pgnvzqadqycq0qbml5da0zw7myc24y5vka1qydz7rdfyaa24"; 183211 + enableSeparateDataOutput = true; 182215 183212 libraryHaskellDepends = [ base haskell98 mtl stm ]; 182216 183213 homepage = "http://sulzmann.blogspot.com/2008/12/stm-with-control-communication-for.html"; 182217 183214 description = "Control communication among retrying transactions"; ··· 183414 184411 pname = "string-qq"; 183415 184412 version = "0.0.2"; 183416 184413 sha256 = "0662m3i5xrdrr95w829bszkhp88mj9iy1zya54vk2sl5hz9wlmwp"; 184414 + enableSeparateDataOutput = true; 183417 184415 libraryHaskellDepends = [ base template-haskell ]; 183418 184416 description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; 183419 184417 license = stdenv.lib.licenses.publicDomain; ··· 183425 184423 pname = "string-quote"; 183426 184424 version = "0.0.1"; 183427 184425 sha256 = "1pfkd3lwdphvl00gly7zbpvsmlw6b2d5568rxyqmq2qw6vzf9134"; 184426 + enableSeparateDataOutput = true; 183428 184427 libraryHaskellDepends = [ base template-haskell ]; 183429 184428 description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; 183430 184429 license = stdenv.lib.licenses.bsd3; ··· 183795 184794 sha256 = "1d1qv9d8qifcxbxqb6a6j0fsi65lg8sndn7hn2s38hgnxdb7llf5"; 183796 184795 isLibrary = false; 183797 184796 isExecutable = true; 184797 + enableSeparateDataOutput = true; 183798 184798 executableHaskellDepends = [ 183799 184799 base descriptive ghc-prim haskell-src-exts text 183800 184800 ]; ··· 183905 184905 sha256 = "075rbdhlrz88qkwx54jrmb4h4jq8q5wk4ncb858llaswcbsfgl8w"; 183906 184906 isLibrary = false; 183907 184907 isExecutable = true; 184908 + enableSeparateDataOutput = true; 183908 184909 executableHaskellDepends = [ 183909 184910 base binary bullet bytestring containers directory elerea GLFW-b 183910 184911 lambdacube-bullet lambdacube-engine mtl random vector ··· 183954 184955 sha256 = "1g011ip26yn9ixsa5bzb8gnjj58www2p0d8b7fj9b2brwqx682jp"; 183955 184956 isLibrary = true; 183956 184957 isExecutable = true; 184958 + enableSeparateDataOutput = true; 183957 184959 libraryHaskellDepends = [ 183958 184960 aeson base bytestring containers directory filepath 183959 184961 haskell-src-exts mtl syb yaml ··· 183983 184985 sha256 = "08qzplmzpnfyl8zaskimx91xij723mim11k552a7yl3p0i0cfmw7"; 183984 184986 isLibrary = true; 183985 184987 isExecutable = true; 184988 + enableSeparateDataOutput = true; 183986 184989 libraryHaskellDepends = [ 183987 184990 aeson base bytestring containers directory filepath 183988 184991 haskell-src-exts mtl syb yaml ··· 184345 185348 sha256 = "0bcxai3gq1akbcxqkkj0n52a43zqcnw865bnngy9b4z26b43kj5k"; 184346 185349 isLibrary = false; 184347 185350 isExecutable = true; 185351 + enableSeparateDataOutput = true; 184348 185352 executableHaskellDepends = [ 184349 185353 base Boolean containers data-default directory filepath parallel-io 184350 185354 process QuickCheck random semigroups shake stm sunroof-compiler ··· 184699 185703 pname = "svgcairo"; 184700 185704 version = "0.13.1.1"; 184701 185705 sha256 = "0kx5qc2snrpml2figrq1f74fzj81zbibv1x9dp8z2kh8z6n659nd"; 185706 + enableSeparateDataOutput = true; 184702 185707 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 184703 185708 libraryHaskellDepends = [ base cairo glib mtl text ]; 184704 185709 libraryPkgconfigDepends = [ librsvg ]; ··· 184913 185918 sha256 = "173qvx46als9ar63j6hqynnwnkvs12pb2qv3gbfjm8mla5i7sjym"; 184914 185919 isLibrary = true; 184915 185920 isExecutable = true; 185921 + enableSeparateDataOutput = true; 184916 185922 libraryHaskellDepends = [ 184917 185923 base containers directory filepath hashable intern mtl network-uri 184918 185924 old-locale polyparse semigroups text time ··· 186326 187332 pname = "tablestorage"; 186327 187333 version = "0.2.1.0"; 186328 187334 sha256 = "03j8cqq85i9wikw772swazbvyv1dcw0mnhmqq3slydl0axi12yr8"; 187335 + enableSeparateDataOutput = true; 186329 187336 libraryHaskellDepends = [ 186330 187337 base base64-bytestring bytestring conduit crypto-api cryptohash 186331 187338 HTTP http-conduit http-types mtl network old-locale resourcet SHA ··· 186401 187408 sha256 = "1xfaw32yq17a6wm6gzvpdnpabxfnskwbs541h1kk1lvrkm31h2b2"; 186402 187409 isLibrary = true; 186403 187410 isExecutable = true; 187411 + enableSeparateDataOutput = true; 186404 187412 libraryHaskellDepends = [ 186405 187413 base cairo containers dbus dyre enclosed-exceptions filepath gtk 186406 187414 gtk-traymanager HStringTemplate HTTP mtl network network-uri ··· 186458 187466 sha256 = "1h14xvbn5idc37zkxlkf1g9zr54l4kn4889mnfcbxg56fdfrfb0j"; 186459 187467 isLibrary = true; 186460 187468 isExecutable = true; 187469 + enableSeparateDataOutput = true; 186461 187470 libraryHaskellDepends = [ 186462 187471 base bytestring containers data-accessor explicit-exception 186463 187472 non-empty transformers utility-ht xml-basic ··· 186621 187630 editedCabalFile = "02xmvs9m977szhf5cgy31rbadi662g194giq3djzvsd41c1sshq3"; 186622 187631 isLibrary = true; 186623 187632 isExecutable = true; 187633 + enableSeparateDataOutput = true; 186624 187634 libraryHaskellDepends = [ 186625 187635 attoparsec base blaze-html blaze-markup text unordered-containers 186626 187636 vector ··· 186841 187851 pname = "tai64"; 186842 187852 version = "0.2.0"; 186843 187853 sha256 = "0pk8qfla4iv8yryfxpz5nf2ijhdg7svbcikg3pik2psir6igj3sw"; 187854 + enableSeparateDataOutput = true; 186844 187855 libraryHaskellDepends = [ 186845 187856 attoparsec base base16-bytestring binary bytestring QuickCheck text 186846 187857 time vector ··· 186919 187930 pname = "takahashi"; 186920 187931 version = "0.2.2.0"; 186921 187932 sha256 = "0flr87m1yjxcv1r64bvrx1gm9dpp6xvj2lj14pi99pipywgw4kgs"; 187933 + enableSeparateDataOutput = true; 186922 187934 libraryHaskellDepends = [ base lens monad-skeleton mtl ]; 186923 187935 description = "create slide for presentation"; 186924 187936 license = stdenv.lib.licenses.mit; ··· 186977 187989 sha256 = "1x2d3vlwwssdj0jhnvrm1h0qaajxyns25b9azhf9k8q8xqxi7r32"; 186978 187990 isLibrary = false; 186979 187991 isExecutable = true; 187992 + enableSeparateDataOutput = true; 186980 187993 executableHaskellDepends = [ 186981 187994 aeson array base binary blaze-builder blaze-html bytestring cmdargs 186982 187995 conduit containers deepseq derive directory dlist fclabels filepath ··· 187528 188541 pname = "tasty-html"; 187529 188542 version = "0.4.1.1"; 187530 188543 sha256 = "06hzb4y98aqmcn3zl6mr1gwmkkl73phqc4419fwsxwqyrygirshf"; 188544 + enableSeparateDataOutput = true; 187531 188545 libraryHaskellDepends = [ 187532 188546 base blaze-html bytestring containers filepath generic-deriving mtl 187533 188547 stm tagged tasty text transformers ··· 187965 188979 pname = "tcp-streams"; 187966 188980 version = "0.6.0.0"; 187967 188981 sha256 = "1g0g9r62gklsn99ncqkyxlk8qwmxd7iyhshq03k7ghdlsj9linfg"; 188982 + enableSeparateDataOutput = true; 187968 188983 libraryHaskellDepends = [ 187969 188984 base bytestring data-default-class io-streams network pem tls x509 187970 188985 x509-store x509-system ··· 187988 189003 pname = "tcp-streams"; 187989 189004 version = "1.0.1.0"; 187990 189005 sha256 = "0qa8dvlxg6r7f6qxq46xj1fq5ksbvznjqs624v57ay2nvgji5n3p"; 189006 + enableSeparateDataOutput = true; 187991 189007 libraryHaskellDepends = [ 187992 189008 base bytestring data-default-class io-streams network pem tls x509 187993 189009 x509-store x509-system ··· 188217 189233 pname = "telegram-api"; 188218 189234 version = "0.6.3.0"; 188219 189235 sha256 = "0fp8ryh9pdpfycyknd9d1r9z1v0p06r87nf19x7azv4i1yl5msia"; 189236 + enableSeparateDataOutput = true; 188220 189237 libraryHaskellDepends = [ 188221 189238 aeson base bytestring http-api-data http-client http-media 188222 189239 http-types mime-types mtl servant servant-client string-conversions ··· 188625 189642 license = stdenv.lib.licenses.bsd3; 188626 189643 }) {}; 188627 189644 189645 + "temporary_1_2_1_1" = callPackage 189646 + ({ mkDerivation, base, base-compat, directory, exceptions, filepath 189647 + , tasty, tasty-hunit, transformers, unix 189648 + }: 189649 + mkDerivation { 189650 + pname = "temporary"; 189651 + version = "1.2.1.1"; 189652 + sha256 = "1wq0rc71mp0lw7pkpcbhglf636ni46xnlpsmx6yz8acmwmqj8xsm"; 189653 + libraryHaskellDepends = [ 189654 + base directory exceptions filepath transformers unix 189655 + ]; 189656 + testHaskellDepends = [ 189657 + base base-compat directory filepath tasty tasty-hunit unix 189658 + ]; 189659 + homepage = "https://github.com/feuerbach/temporary"; 189660 + description = "Portable temporary file and directory support"; 189661 + license = stdenv.lib.licenses.bsd3; 189662 + hydraPlatforms = stdenv.lib.platforms.none; 189663 + }) {}; 189664 + 188628 189665 "temporary-rc" = callPackage 188629 189666 ({ mkDerivation, base, directory, exceptions, filepath 188630 189667 , transformers, unix ··· 188671 189708 sha256 = "0hv5b09vly9zakjfgi4bnjx503ny334dhg13g5ma85rp3dbsjvsn"; 188672 189709 isLibrary = false; 188673 189710 isExecutable = true; 189711 + enableSeparateDataOutput = true; 188674 189712 executableHaskellDepends = [ 188675 189713 array base directory executable-path filepath haskeline mtl 188676 189714 uniplate utf8-string ··· 189091 190129 sha256 = "10bq2b3nhnpy566i1gbf8iz10nq0z0x4xdi4kr5nlbzrih86ih4n"; 189092 190130 isLibrary = false; 189093 190131 isExecutable = true; 190132 + enableSeparateDataOutput = true; 189094 190133 executableHaskellDepends = [ 189095 190134 base containers mtl process syb transformers 189096 190135 ]; ··· 189599 190638 sha256 = "0a0kw5546z5jydk6dq2p16p2kpwv7fnmy1m907m3x6n580i1vh3l"; 189600 190639 isLibrary = false; 189601 190640 isExecutable = true; 190641 + enableSeparateDataOutput = true; 189602 190642 executableHaskellDepends = [ base filepath gtk ]; 189603 190643 homepage = "http://code.haskell.org/~dons/code/testpattern"; 189604 190644 description = "Display a monitor test pattern"; ··· 189629 190669 sha256 = "10wlw1frkaa3j8mb8lxgpvxcx87m8wdpca3mli9c5kirdm51vjgw"; 189630 190670 isLibrary = false; 189631 190671 isExecutable = true; 190672 + enableSeparateDataOutput = true; 189632 190673 executableHaskellDepends = [ base GLUT random ]; 189633 190674 homepage = "http://d.hatena.ne.jp/mokehehe/20080921/tetris"; 189634 190675 description = "A 2-D clone of Tetris"; ··· 189941 190982 pname = "text-icu-normalized"; 189942 190983 version = "0.4.1"; 189943 190984 sha256 = "0nwma8yvfkmy0zzl3kb9xwmpp3z74aj33mdp7kr036baqvxini04"; 190985 + enableSeparateDataOutput = true; 189944 190986 libraryHaskellDepends = [ 189945 190987 base base-unicode-symbols bytestring lens text text-icu 189946 190988 ]; ··· 190107 191149 pname = "text-markup"; 190108 191150 version = "0.1"; 190109 191151 sha256 = "1nn0h61cvaydawrc4d0bizyqnssbhmgvsb0s59fvxcwk9zlw10xh"; 191152 + enableSeparateDataOutput = true; 190110 191153 libraryHaskellDepends = [ base containers text ]; 190111 191154 testHaskellDepends = [ 190112 191155 base QuickCheck quickcheck-text tasty tasty-quickcheck text ··· 190587 191630 pname = "text-zipper"; 190588 191631 version = "0.10"; 190589 191632 sha256 = "0vhp707irmyqdix4clnjphnly8zyph4brpjb41n05rxlaybn96n5"; 191633 + enableSeparateDataOutput = true; 190590 191634 libraryHaskellDepends = [ base deepseq text vector ]; 190591 191635 testHaskellDepends = [ base hspec QuickCheck text ]; 190592 191636 homepage = "https://github.com/jtdaugherty/text-zipper/"; ··· 191103 192147 license = stdenv.lib.licenses.bsd3; 191104 192148 }) {}; 191105 192149 192150 + "th-orphans_0_13_4" = callPackage 192151 + ({ mkDerivation, base, hspec, mtl, template-haskell, th-lift 192152 + , th-lift-instances, th-reify-many 192153 + }: 192154 + mkDerivation { 192155 + pname = "th-orphans"; 192156 + version = "0.13.4"; 192157 + sha256 = "0cab6hmyii42p157jhm0sd5jzdlxms4ip2ncrmcmc47dl3pxk5gk"; 192158 + libraryHaskellDepends = [ 192159 + base mtl template-haskell th-lift th-lift-instances th-reify-many 192160 + ]; 192161 + testHaskellDepends = [ base hspec template-haskell ]; 192162 + description = "Orphan instances for TH datatypes"; 192163 + license = stdenv.lib.licenses.bsd3; 192164 + hydraPlatforms = stdenv.lib.platforms.none; 192165 + }) {}; 192166 + 191106 192167 "th-printf" = callPackage 191107 192168 ({ mkDerivation, attoparsec, base, bytestring, hspec, HUnit 191108 192169 , QuickCheck, template-haskell, text, transformers ··· 191151 192212 license = stdenv.lib.licenses.bsd3; 191152 192213 }) {}; 191153 192214 192215 + "th-reify-many_0_1_8" = callPackage 192216 + ({ mkDerivation, base, containers, mtl, safe, template-haskell 192217 + , th-expand-syns 192218 + }: 192219 + mkDerivation { 192220 + pname = "th-reify-many"; 192221 + version = "0.1.8"; 192222 + sha256 = "0hzy6hvhvcd6i60vx5cp2b7ggmnnjh9rx4h8bm8xw4grglcaxjnf"; 192223 + libraryHaskellDepends = [ 192224 + base containers mtl safe template-haskell th-expand-syns 192225 + ]; 192226 + testHaskellDepends = [ base template-haskell ]; 192227 + homepage = "http://github.com/mgsloan/th-reify-many"; 192228 + description = "Recurseively reify template haskell datatype info"; 192229 + license = stdenv.lib.licenses.bsd3; 192230 + hydraPlatforms = stdenv.lib.platforms.none; 192231 + }) {}; 192232 + 191154 192233 "th-sccs" = callPackage 191155 192234 ({ mkDerivation, base, containers, template-haskell }: 191156 192235 mkDerivation { ··· 191423 192502 sha256 = "0ir8z7al3fxjwq5nb05l136k7vp82ag6khcyf9bvjcymlra4cs0m"; 191424 192503 isLibrary = true; 191425 192504 isExecutable = true; 192505 + enableSeparateDataOutput = true; 191426 192506 libraryHaskellDepends = [ base pretty ]; 191427 192507 homepage = "http://web.cecs.pdx.edu/~mpj/thih/"; 191428 192508 description = "Typing Haskell In Haskell"; ··· 191440 192520 sha256 = "1pjz6rnbm1llxgp47fasv40w2vg197z582vf9mm7rhm5qjp25zi0"; 191441 192521 isLibrary = false; 191442 192522 isExecutable = true; 192523 + enableSeparateDataOutput = true; 191443 192524 executableHaskellDepends = [ 191444 192525 base edit-distance parseargs phonetic-code sqlite 191445 192526 ]; ··· 191616 192697 sha256 = "067jwdh0xbv02mh9narwnw36wvz0d1v5wwhysmzbfc263l0iazn2"; 191617 192698 isLibrary = false; 191618 192699 isExecutable = true; 192700 + enableSeparateDataOutput = true; 191619 192701 executableHaskellDepends = [ 191620 192702 array base binary cairo containers deepseq filepath ghc-events glib 191621 192703 gtk mtl pango text time unix ··· 191674 192756 sha256 = "0yc4n9b3my7mfq4w28yk4pjh14wqg116gqgx3w8wr26j0yn3y8j0"; 191675 192757 isLibrary = true; 191676 192758 isExecutable = true; 192759 + enableSeparateDataOutput = true; 191677 192760 libraryHaskellDepends = [ 191678 192761 aeson async base bytestring containers data-default deepseq 191679 192762 filepath hashable network-uri safe snap-core snap-server stm ··· 191699 192782 sha256 = "1jg18gmm4f3aamwz9vr3h8nc3axlxf2440zf0ff6h8dlp20al7zk"; 191700 192783 isLibrary = true; 191701 192784 isExecutable = true; 192785 + enableSeparateDataOutput = true; 191702 192786 libraryHaskellDepends = [ 191703 192787 aeson async base bytestring containers data-default deepseq 191704 192788 exceptions filepath hashable network-uri safe snap-core snap-server ··· 191932 193016 sha256 = "1il31vwcl3lag1nz9a9j8i7g160djbdbfcd58qi7d9sw9mcjk361"; 191933 193017 isLibrary = true; 191934 193018 isExecutable = true; 193019 + enableSeparateDataOutput = true; 191935 193020 libraryHaskellDepends = [ 191936 193021 base blaze-html blaze-markup dbus utf8-string xmonad xmonad-contrib 191937 193022 ]; ··· 191983 193068 sha256 = "0bdls2xz281zdxq5z6vbkahmf6bpiqr0ra823j21783jwiyh8j01"; 191984 193069 isLibrary = false; 191985 193070 isExecutable = true; 193071 + enableSeparateDataOutput = true; 191986 193072 executableHaskellDepends = [ base glade gtk haskell98 ]; 191987 193073 homepage = "http://ecks.homeunix.net"; 191988 193074 description = "Useful if reading \"Why FP matters\" by John Hughes"; ··· 192221 193307 sha256 = "0x2yc57g9g5ii14l65xkly55rhx44nfjqnbl4bqf286mqsgz191j"; 192222 193308 isLibrary = false; 192223 193309 isExecutable = true; 193310 + enableSeparateDataOutput = true; 192224 193311 executableHaskellDepends = [ 192225 193312 array base binary bytestring bzlib filepath haskell98 mtl pretty 192226 193313 ]; ··· 193266 194353 sha256 = "1xyy1aagbjyjs9d52jmf7xch0831v7hvsb0mfrxpahvqsdac6h7a"; 193267 194354 isLibrary = true; 193268 194355 isExecutable = true; 194356 + enableSeparateDataOutput = true; 193269 194357 executableHaskellDepends = [ 193270 194358 aeson attoparsec base blaze-builder bytestring cmdargs conduit 193271 194359 conduit-extra containers data-default directory exceptions filepath ··· 193845 194933 sha256 = "06b938i2362c4jcd0923lwrcf6hqgxdscizj91ns51wx73nm8fxi"; 193846 194934 isLibrary = false; 193847 194935 isExecutable = true; 194936 + enableSeparateDataOutput = true; 193848 194937 executableHaskellDepends = [ 193849 194938 ALUT array base filepath GLFW-b OpenAL OpenGL parseargs random 193850 194939 ]; ··· 194694 195783 pname = "translate"; 194695 195784 version = "2010.1.24"; 194696 195785 sha256 = "0vcqw0x7c9nb8yigvk35x72rds50kvma02rwkb757y1sk80q0mzf"; 195786 + enableSeparateDataOutput = true; 194697 195787 libraryHaskellDepends = [ base curl json network utf8-string ]; 194698 195788 homepage = "http://github.com/nfjinjing/translate"; 194699 195789 description = "Haskell binding to Google's AJAX Language API for Translation and Detection"; ··· 194898 195988 sha256 = "0g7x1jj3x58jgbg6zcakyakc5jskcas03jakj7v5pfwdmk8kbc4m"; 194899 195989 isLibrary = false; 194900 195990 isExecutable = true; 195991 + enableSeparateDataOutput = true; 194901 195992 executableHaskellDepends = [ base gtk process ]; 194902 195993 homepage = "http://projects.haskell.org/traypoweroff"; 194903 195994 description = "Tray Icon application to PowerOff / Reboot computer"; ··· 196221 197312 pname = "twiml"; 196222 197313 version = "0.2.0.0"; 196223 197314 sha256 = "12vavc02rpdrgdcnbd1jzn9lllzx4fghczdrpjr2icn8bkrgkqi5"; 197315 + enableSeparateDataOutput = true; 196224 197316 libraryHaskellDepends = [ 196225 197317 base data-default deepseq lens network-uri parsec template-haskell 196226 197318 text void xml ··· 196506 197598 sha256 = "1wc1z7ps1rcbws2snci64hxddjd3bi3kbi4iwvbfaac0dz52085m"; 196507 197599 isLibrary = false; 196508 197600 isExecutable = true; 197601 + enableSeparateDataOutput = true; 196509 197602 executableHaskellDepends = [ 196510 197603 base bytestring directory filepath ghc process 196511 197604 ]; ··· 196521 197614 pname = "type-aligned"; 196522 197615 version = "0.9.6"; 196523 197616 sha256 = "0mfyd9w13kd3ha43220p9qabw828xv19sxywy9imadpwrdqp51qv"; 197617 + enableSeparateDataOutput = true; 196524 197618 libraryHaskellDepends = [ base ]; 196525 197619 homepage = "https://github.com/atzeus/type-aligned"; 196526 197620 description = "Various type-aligned sequence data structures"; ··· 197087 198181 sha256 = "1s84bw7fxxsqixy03892zb1s261fc0c8h5srsifs5mzgvhxkn20l"; 197088 198182 revision = "1"; 197089 198183 editedCabalFile = "03lz4iprlfl2bnh4isa2k7ddv1wxz8mqb7x1nmhjqbx34apbqi11"; 198184 + enableSeparateDataOutput = true; 197090 198185 libraryHaskellDepends = [ 197091 198186 applicative-numbers base constraints newtype ty vector-space 197092 198187 ]; ··· 197524 198619 pname = "tzdata"; 197525 198620 version = "0.1.20161123.0"; 197526 198621 sha256 = "1dnc9m3396bxps84xgxfzrx928yh7vxd8pdim63a5xrydcfp16fb"; 198622 + enableSeparateDataOutput = true; 197527 198623 libraryHaskellDepends = [ 197528 198624 base bytestring containers deepseq vector 197529 198625 ]; ··· 197545 198641 pname = "tzdata"; 197546 198642 version = "0.1.20170320.0"; 197547 198643 sha256 = "11ffj8ipcvvsm811w1jm23ry7vrmvj2q487640ic4ghq39dx91is"; 198644 + enableSeparateDataOutput = true; 197548 198645 libraryHaskellDepends = [ 197549 198646 base bytestring containers deepseq vector 197550 198647 ]; ··· 197588 198685 sha256 = "01a1h6pflvid5zcd8wy3px7cz4pxwy5pw354v9rp8k7sx4q82am8"; 197589 198686 isLibrary = false; 197590 198687 isExecutable = true; 198688 + enableSeparateDataOutput = true; 197591 198689 executableHaskellDepends = [ 197592 198690 array base BNFC-meta cmdargs containers mtl parsec pretty split 197593 198691 transformers ··· 197606 198704 pname = "ua-parser"; 197607 198705 version = "0.7.4"; 197608 198706 sha256 = "1maph5na307ih1qx2ziww3mhc9c0a5rxqj2jfc4w404hisby947i"; 198707 + enableSeparateDataOutput = true; 197609 198708 libraryHaskellDepends = [ 197610 198709 aeson base bytestring data-default file-embed pcre-light text yaml 197611 198710 ]; ··· 197632 198731 sha256 = "1ml02xap95vxvzwqlqp68hfk7yjncf3xc1h13gga0nlhby9rjv14"; 197633 198732 isLibrary = false; 197634 198733 isExecutable = true; 198734 + enableSeparateDataOutput = true; 197635 198735 executableHaskellDepends = [ 197636 198736 base containers directory filepath hslogger mtl network process 197637 198737 regex-compat time time-locale-compat unix ··· 197691 198791 sha256 = "0a7kksh99nll91q41z4xgrcwc8pnfm0p71bxw6yymcd7yb0v09fk"; 197692 198792 isLibrary = true; 197693 198793 isExecutable = true; 198794 + enableSeparateDataOutput = true; 197694 198795 libraryHaskellDepends = [ 197695 198796 base binary bytestring cereal containers ghc-prim mtl network unix 197696 198797 utf8-string ··· 197786 198887 sha256 = "07b8hvam9n801ldwrm6jjds691gxjw4yp33zsg4bbbv2mk6z7fpa"; 197787 198888 isLibrary = true; 197788 198889 isExecutable = true; 198890 + enableSeparateDataOutput = true; 197789 198891 libraryHaskellDepends = [ 197790 198892 array base binary bytestring containers directory fgl filepath 197791 198893 hashable mtl network old-locale primitive process syb transformers ··· 198460 199562 sha256 = "1974birppkd49jwq31x8bcbmgnximh233salnyq47ikgxfp6x4c6"; 198461 199563 isLibrary = true; 198462 199564 isExecutable = true; 199565 + enableSeparateDataOutput = true; 198463 199566 libraryHaskellDepends = [ 198464 199567 attoparsec base directory filepath text 198465 199568 ]; ··· 198525 199628 pname = "uniform-pair"; 198526 199629 version = "0.1.13"; 198527 199630 sha256 = "17dz0car02w2x5m23hlqlgjnpl86darc8vvr4axpsc9xim4sf7nk"; 199631 + enableSeparateDataOutput = true; 198528 199632 libraryHaskellDepends = [ base deepseq prelude-extras ]; 198529 199633 homepage = "https://github.com/conal/uniform-pair/"; 198530 199634 description = "Uniform pairs with class instances"; ··· 198834 199938 pname = "universal-binary"; 198835 199939 version = "0.11"; 198836 199940 sha256 = "1gnrq6s7pipjqfyispkxib3xfzii1ss6a9iwv07mvb5a93hc45cw"; 199941 + enableSeparateDataOutput = true; 198837 199942 libraryHaskellDepends = [ base binary bytestring ]; 198838 199943 description = "Parser for OS X Universal Binary format"; 198839 199944 license = stdenv.lib.licenses.bsd3; ··· 199060 200165 pname = "unix-memory"; 199061 200166 version = "0.1.2"; 199062 200167 sha256 = "1r8s7z39d31h1n7rcincy156lbsvamr6jicx52kv8simb9gvarpp"; 200168 + enableSeparateDataOutput = true; 199063 200169 libraryHaskellDepends = [ base ]; 199064 200170 testHaskellDepends = [ 199065 200171 base mtl QuickCheck tasty tasty-hunit tasty-quickcheck unix ··· 199324 200430 pname = "unsafe"; 199325 200431 version = "0.0"; 199326 200432 sha256 = "0hc6xr1i3hkz25gdgfx1jqgpsc9mwa05bkfynp0mcfdlyz6782nz"; 200433 + enableSeparateDataOutput = true; 199327 200434 libraryHaskellDepends = [ base ]; 199328 200435 homepage = "http://code.haskell.org/~thielema/unsafe/"; 199329 200436 description = "Unified interface to unsafe functions"; ··· 199364 200471 pname = "unsafeperformst"; 199365 200472 version = "0.9.2"; 199366 200473 sha256 = "0l268mzlmswm0p9cybjvi6krsgic706av9kf90fx3ylyvhgzygvc"; 200474 + enableSeparateDataOutput = true; 199367 200475 libraryHaskellDepends = [ base ]; 199368 200476 homepage = "https://github.com/atzeus/unsafeperformst"; 199369 200477 description = "Like unsafeperformIO, but for the ST monad"; ··· 199380 200488 sha256 = "1zlf9dw3yid6s9p0q837h3qs2wnd9wr9kh282j4j4m0gpv9dcrrf"; 199381 200489 isLibrary = false; 199382 200490 isExecutable = true; 200491 + enableSeparateDataOutput = true; 199383 200492 executableHaskellDepends = [ 199384 200493 array base optparse-applicative stream-fusion unordered-containers 199385 200494 ]; ··· 199434 200543 sha256 = "1bs87ii03dydrcyx70drmbd1nrb5z1xj5bzrrqgbq2fzhh7rmb1n"; 199435 200544 isLibrary = true; 199436 200545 isExecutable = true; 200546 + enableSeparateDataOutput = true; 199437 200547 libraryHaskellDepends = [ 199438 200548 ansi-terminal base bytestring cassava containers directory 199439 200549 file-embed filepath inflections megaparsec mtl parallel-io process ··· 199612 200722 sha256 = "0fnr3xskzwxxxk7iv5bmqa18zbr612pn27jjiac0l4wzv33lisik"; 199613 200723 isLibrary = false; 199614 200724 isExecutable = true; 200725 + enableSeparateDataOutput = true; 199615 200726 executableHaskellDepends = [ 199616 200727 base bytestring cake3 directory filepath language-javascript 199617 200728 mime-types mtl optparse-applicative process syb text ··· 200039 201150 sha256 = "1ji6zrglmlkhv743w4d4lrqvhva4yl5kqxb420z44l1wymvgg1s1"; 200040 201151 isLibrary = true; 200041 201152 isExecutable = true; 201153 + enableSeparateDataOutput = true; 200042 201154 libraryHaskellDepends = [ 200043 201155 base base-unicode-symbols bytestring containers 200044 201156 containers-unicode-symbols parsimony ··· 200239 201351 sha256 = "156kjn3da02z060srlsm8kqwbxzcscjzxdkp4lmv8zq5zscha5v6"; 200240 201352 isLibrary = true; 200241 201353 isExecutable = true; 201354 + enableSeparateDataOutput = true; 200242 201355 libraryHaskellDepends = [ base utf8-string ]; 200243 201356 description = "Variants of Prelude and System.IO with UTF8 text I/O operations"; 200244 201357 license = stdenv.lib.licenses.bsd3; ··· 200453 201566 sha256 = "1gcznzb8hr2x5mr5pgfqhnvjjrll96g855g4niacw5bd52wdvsla"; 200454 201567 isLibrary = true; 200455 201568 isExecutable = true; 201569 + enableSeparateDataOutput = true; 200456 201570 libraryHaskellDepends = [ base blaze-html ]; 200457 201571 executableHaskellDepends = [ base process ]; 200458 201572 homepage = "https://github.com/matthijssteen/uuagd"; ··· 200984 202098 sha256 = "16f1mdsyyfdgjcp3rzf3p1qj3d6la01i9y1yyp97m5nmd2jxsn1q"; 200985 202099 isLibrary = true; 200986 202100 isExecutable = true; 202101 + enableSeparateDataOutput = true; 200987 202102 libraryHaskellDepends = [ 200988 202103 base deepseq dlist fgl graphviz haskell-src-exts mtl uniplate 200989 202104 ]; ··· 201284 202399 sha256 = "1qf5insiqgl3p9bg6m1igl24lghzbb3y50acwxgcpbcbdcaw13z5"; 201285 202400 isLibrary = true; 201286 202401 isExecutable = true; 202402 + enableSeparateDataOutput = true; 201287 202403 libraryHaskellDepends = [ 201288 202404 base directory filepath gi-gtk gi-gtk-hs haskell-gi-base mtl 201289 202405 process text vcswrapper ··· 201308 202424 sha256 = "0yzin613nzvnklkb3j29vzy4rfladb3cy3sy6ic0mi6lxhilan2n"; 201309 202425 isLibrary = true; 201310 202426 isExecutable = true; 202427 + enableSeparateDataOutput = true; 201311 202428 libraryHaskellDepends = [ 201312 202429 base containers directory filepath hxt mtl parsec process split 201313 202430 text ··· 201553 202670 pname = "vector-clock"; 201554 202671 version = "0.2.2"; 201555 202672 sha256 = "0ndp25w61rcj4sadvhxlirrk1dhk7rmdzv9kha7kyqa41whr9629"; 202673 + enableSeparateDataOutput = true; 201556 202674 libraryHaskellDepends = [ base binary ghc-prim hashable ]; 201557 202675 testHaskellDepends = [ 201558 202676 array base binary ghc-prim HUnit QuickCheck test-framework ··· 202018 203136 sha256 = "0z7a17j0rd06kvn3v4qr0fhxg0xw6n3579477y2lvx4mcc3qyrvw"; 202019 203137 isLibrary = true; 202020 203138 isExecutable = true; 203139 + enableSeparateDataOutput = true; 202021 203140 libraryHaskellDepends = [ 202022 203141 base byteable bytestring cereal cipher-aes cryptohash directory 202023 203142 filepath mmap random storable-endian text time ··· 202172 203291 sha256 = "0j4j4rsngp76pvssg6kisqqwr9d95fcmxp21yq4483vvc1cv78g2"; 202173 203292 isLibrary = true; 202174 203293 isExecutable = true; 203294 + enableSeparateDataOutput = true; 202175 203295 libraryHaskellDepends = [ 202176 203296 base bytestring containers data-default deepseq directory filepath 202177 203297 libmpd mtl old-locale process template-haskell time ··· 202343 203463 sha256 = "08z6dvhv4k6a71dvqhvcfl8s5aq7qcg8aj5xbym3931yykl0gxc2"; 202344 203464 isLibrary = false; 202345 203465 isExecutable = true; 203466 + enableSeparateDataOutput = true; 202346 203467 executableHaskellDepends = [ 202347 203468 base bytestring Cabal directory file-embed filepath mtl process 202348 203469 safe split ··· 202376 203497 sha256 = "1235zclhg4nkd387df4gg3q88hvsqwsdj1j20lnfnclxfah0qxa2"; 202377 203498 isLibrary = false; 202378 203499 isExecutable = true; 203500 + enableSeparateDataOutput = true; 202379 203501 executableHaskellDepends = [ 202380 203502 array base containers directory filepath glib gtk json 202381 203503 MonadCatchIO-transformers mtl parsec PSQueue stm url utf8-string ··· 202398 203520 sha256 = "0myppx9bd8bfhii91lqdp00ckp20bq82754mr01s87l1d01gb4wp"; 202399 203521 isLibrary = true; 202400 203522 isExecutable = true; 203523 + enableSeparateDataOutput = true; 202401 203524 libraryHaskellDepends = [ 202402 203525 base cairo containers directory fgl glade graphviz gtk haskell-src 202403 203526 ipprint isevaluated lazysmallcheck parallel pretty process ··· 202578 203701 pname = "vte"; 202579 203702 version = "0.13.1.1"; 202580 203703 sha256 = "0cajvmnbkbqvkm3kngp7zscrjnzyf287rk6x2lnbwixg4sk9k1n3"; 203704 + enableSeparateDataOutput = true; 202581 203705 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 202582 203706 libraryHaskellDepends = [ base glib gtk pango ]; 202583 203707 libraryPkgconfigDepends = [ vte ]; ··· 202595 203719 pname = "vtegtk3"; 202596 203720 version = "0.13.1.1"; 202597 203721 sha256 = "0rrhca2850dc84sg5gn8dghsn8yk02da1rj7xzjazpmd9lkgwqas"; 203722 + enableSeparateDataOutput = true; 202598 203723 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 202599 203724 libraryHaskellDepends = [ base glib gtk3 pango ]; 202600 203725 libraryPkgconfigDepends = [ vte ]; ··· 202724 203849 sha256 = "1mvs2224slnkswcag6knnj9ydkfgvw6nhaiy71bijjd2wwln4fq2"; 202725 203850 isLibrary = true; 202726 203851 isExecutable = true; 203852 + enableSeparateDataOutput = true; 202727 203853 libraryHaskellDepends = [ 202728 203854 array base containers data-default directory filepath mtl 202729 203855 regex-base stm text unix vector vty ··· 202823 203949 sha256 = "0x7yh4g4jprc34pr6i50c8xyx9w6rjl6i2y6zwnkzydv7msf0d76"; 202824 203950 revision = "1"; 202825 203951 editedCabalFile = "1kdszyxp0i4f8yi7831x7vc4q55677ab2rj4fign77m0xk6cnphl"; 203952 + enableSeparateDataOutput = true; 202826 203953 libraryHaskellDepends = [ 202827 203954 aeson base data-default-class kansas-comet natural-transformation 202828 203955 remote-monad scotty semigroups stm text wai-middleware-static ··· 202983 204110 pname = "wai-cors"; 202984 204111 version = "0.2.5"; 202985 204112 sha256 = "0vkn5nws9vcjn809qv2jfhf9ckfcgvfhs1v3xx1b03iy0j59n215"; 204113 + enableSeparateDataOutput = true; 202986 204114 libraryHaskellDepends = [ 202987 204115 attoparsec base base-unicode-symbols bytestring case-insensitive 202988 204116 http-types mtl transformers wai ··· 204467 205595 sha256 = "0r0lqy3vqs3ypxf0v6xwyarj5rxjf9f19x6b48rhj32z8x9d0isq"; 204468 205596 isLibrary = true; 204469 205597 isExecutable = true; 205598 + enableSeparateDataOutput = true; 204470 205599 libraryHaskellDepends = [ 204471 205600 aeson aeson-pretty attoparsec base blaze-builder browscap 204472 205601 bytestring case-insensitive conduit conduit-extra deepseq directory ··· 204733 205862 pname = "wave"; 204734 205863 version = "0.1.5"; 204735 205864 sha256 = "03zycmwrchhqvi37fdvlzz2d1vl4hy0i8xyys1zznw38qfq0h2i5"; 205865 + enableSeparateDataOutput = true; 204736 205866 libraryHaskellDepends = [ 204737 205867 base bytestring cereal containers data-default-class transformers 204738 205868 ]; ··· 205515 206645 pname = "webkit"; 205516 206646 version = "0.14.2.1"; 205517 206647 sha256 = "0l7ml6pfx63fz3gaay9krbksz7y15zv6aq2zr1g29x6yv6kz43mq"; 206648 + enableSeparateDataOutput = true; 205518 206649 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 205519 206650 libraryHaskellDepends = [ 205520 206651 base bytestring cairo glib gtk mtl pango text transformers ··· 205563 206694 pname = "webkitgtk3"; 205564 206695 version = "0.14.2.1"; 205565 206696 sha256 = "1xml39120yng7pgdpaz114zc2vcq7kxi5v1gdlfarzdvxxsw8wba"; 206697 + enableSeparateDataOutput = true; 205566 206698 setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; 205567 206699 libraryHaskellDepends = [ 205568 206700 base bytestring cairo glib gtk3 mtl pango text transformers ··· 206115 207247 sha256 = "0fgasnviqmz8ifkb8ikvj721f9j1xzvix5va0jxi81gh6f400ij6"; 206116 207248 isLibrary = true; 206117 207249 isExecutable = true; 207250 + enableSeparateDataOutput = true; 206118 207251 libraryHaskellDepends = [ 206119 207252 base containers GLUT mtl OpenGL process random X11 206120 207253 ]; ··· 206144 207277 sha256 = "1y89bayaccz8qqzsfmpr917dczgbn5srskja6f2dab3ipxhk24z9"; 206145 207278 isLibrary = false; 206146 207279 isExecutable = true; 207280 + enableSeparateDataOutput = true; 206147 207281 executableHaskellDepends = [ haskell98 random ]; 206148 207282 homepage = "https://github.com/haroldl/whitespace-nd"; 206149 207283 description = "Whitespace, an esoteric programming language"; ··· 206299 207433 pname = "wild-bind-indicator"; 206300 207434 version = "0.1.0.1"; 206301 207435 sha256 = "0lvhczw0ah8kb1hd9k7rnjcs1pmn0qg1i2v0szvhh2ji8iznjznm"; 207436 + enableSeparateDataOutput = true; 206302 207437 libraryHaskellDepends = [ 206303 207438 base containers gtk text transformers wild-bind 206304 207439 ]; ··· 206723 207858 pname = "wl-pprint-terminfo"; 206724 207859 version = "3.7.1.4"; 206725 207860 sha256 = "084d70plp3d9629aznrk5nxkg0hg7yr76iyi74gcby633xbvmniw"; 207861 + enableSeparateDataOutput = true; 206726 207862 libraryHaskellDepends = [ 206727 207863 base bytestring containers nats semigroups terminfo text 206728 207864 transformers wl-pprint-extras ··· 207015 208151 pname = "words"; 207016 208152 version = "0.1.2"; 207017 208153 sha256 = "0najaqi9fkqdkfks1c6w3fz4qf7dnr4h4brzgglg1h9ik8x5a910"; 208154 + enableSeparateDataOutput = true; 207018 208155 libraryHaskellDepends = [ base directory text ]; 207019 208156 description = "Cross-platform access to a list of words"; 207020 208157 license = stdenv.lib.licenses.bsd3; ··· 207379 208516 pname = "wright"; 207380 208517 version = "0.1.0.2"; 207381 208518 sha256 = "180012vyslprj06npavh44fmii1813w22sws9zwxzlb4r4jdm4zi"; 208519 + enableSeparateDataOutput = true; 207382 208520 libraryHaskellDepends = [ base bed-and-breakfast containers ]; 207383 208521 testHaskellDepends = [ 207384 208522 assertions base bed-and-breakfast containers filepath lens ··· 207731 208869 pname = "wx"; 207732 208870 version = "0.92.3.0"; 207733 208871 sha256 = "04ccw9g8a08ipp4r1282jzgmx0lvxsbwgiasxq7ivij133mspjxx"; 208872 + enableSeparateDataOutput = true; 207734 208873 libraryHaskellDepends = [ base stm time wxcore ]; 207735 208874 homepage = "https://wiki.haskell.org/WxHaskell"; 207736 208875 description = "wxHaskell"; ··· 207746 208885 sha256 = "16rixql7ixcdmxcayzrqswc4fcj6wdq513cl8qr66hwqyq2k0525"; 207747 208886 isLibrary = false; 207748 208887 isExecutable = true; 208888 + enableSeparateDataOutput = true; 207749 208889 executableHaskellDepends = [ base directory random wx wxcore ]; 207750 208890 homepage = "https://wiki.haskell.org/WxAsteroids"; 207751 208891 description = "Try to avoid the asteroids with your space ship"; ··· 207853 208993 sha256 = "10897yb7mkc9hy2037r9yb4192n65lz997fd5apksra1rifrazyp"; 207854 208994 isLibrary = false; 207855 208995 isExecutable = true; 208996 + enableSeparateDataOutput = true; 207856 208997 executableHaskellDepends = [ base wx wxcore ]; 207857 208998 homepage = "http://github.com/elbrujohalcon/wxhnotepad"; 207858 208999 description = "An example of how to implement a basic notepad with wxHaskell"; ··· 208248 209389 sha256 = "0rjpj6i4fn504m7s3hwqbydn0m0ryih0hw4xnc409338sval6xj6"; 208249 209390 isLibrary = true; 208250 209391 isExecutable = true; 209392 + enableSeparateDataOutput = true; 208251 209393 libraryHaskellDepends = [ base directory filepath process unix ]; 208252 209394 executableHaskellDepends = [ 208253 209395 base directory filepath process unix ··· 209221 210363 pname = "xml-push"; 209222 210364 version = "0.0.0.18"; 209223 210365 sha256 = "1i8qmz7mr8rfspkn4wwyq7f7fi1grpggmqmfsmx6l7bjsjv15n3y"; 210366 + enableSeparateDataOutput = true; 209224 210367 libraryHaskellDepends = [ 209225 210368 base bytestring crypto-random handle-like monad-control monads-tf 209226 210369 peyotls random sasl simple-pipe stm tighttp transformers-base uuid ··· 209425 210568 sha256 = "0cp21xzzqczb49mpnsxlgc4fyhmmgyy4mfczqnz85h383js5sbia"; 209426 210569 isLibrary = false; 209427 210570 isExecutable = true; 210571 + enableSeparateDataOutput = true; 209428 210572 executableHaskellDepends = [ 209429 210573 array base bio bytestring containers directory xhtml 209430 210574 ]; ··· 209487 210631 sha256 = "15i0a28svafjsziz1h3px0qys81xw0bs5bpq66hcwzxdv3s15lv9"; 209488 210632 isLibrary = true; 209489 210633 isExecutable = true; 210634 + enableSeparateDataOutput = true; 209490 210635 libraryHaskellDepends = [ base old-locale time xml ]; 209491 210636 executableHaskellDepends = [ 209492 210637 base bytestring configurator filepath http-client network-uri ··· 209570 210715 sha256 = "1jh3lcs20qpna36fa5a0r174xqrsxhj10x1rm5vwf64zariipy7r"; 209571 210716 isLibrary = true; 209572 210717 isExecutable = true; 210718 + enableSeparateDataOutput = true; 209573 210719 libraryHaskellDepends = [ 209574 210720 base containers data-default directory extensible-exceptions 209575 210721 filepath mtl process setlocale unix utf8-string X11 ··· 209580 210726 ]; 209581 210727 postInstall = '' 209582 210728 shopt -s globstar 209583 - mkdir -p $out/share/man/man1 209584 - mv "$out/"**"/man/"*.1 $out/share/man/man1/ 210729 + mkdir -p $doc/share/man/man1 210730 + mv "$data/"**"/man/"*[0-9] $doc/share/man/man1/ 210731 + rm "$data/"**"/man/"* 209585 210732 ''; 209586 210733 homepage = "http://xmonad.org"; 209587 210734 description = "A tiling window manager"; ··· 209598 210745 sha256 = "1ymn56rc9kkzvdla9bpj3aq2z6rnz669xbj7n87z1b42aj74s8gn"; 209599 210746 isLibrary = true; 209600 210747 isExecutable = true; 210748 + enableSeparateDataOutput = true; 209601 210749 libraryHaskellDepends = [ 209602 210750 base containers directory extensible-exceptions filepath mtl 209603 210751 process unix X11 ··· 209843 210991 pname = "xournal-builder"; 209844 210992 version = "0.1.1.1"; 209845 210993 sha256 = "0v7lfhyr28gmsbzizhbw4lddhhhv74y3vb8kb9z06b32lg5wm591"; 210994 + enableSeparateDataOutput = true; 209846 210995 libraryHaskellDepends = [ 209847 210996 base blaze-builder bytestring double-conversion strict 209848 210997 xournal-types ··· 209863 211012 sha256 = "1vyykx5kbq8jja6cxy38j905b23ndj73xsg0hirz0sq4pw36shmi"; 209864 211013 isLibrary = true; 209865 211014 isExecutable = true; 211015 + enableSeparateDataOutput = true; 209866 211016 libraryHaskellDepends = [ 209867 211017 base bytestring cairo cmdargs directory filepath HStringTemplate 209868 211018 mtl xournal-parser xournal-render xournal-types ··· 209902 211052 pname = "xournal-render"; 209903 211053 version = "0.6.0"; 209904 211054 sha256 = "0fsijjzxizhb7dx1pc83rsini8xzqj21mmkqj1x0ysyzh78siaf3"; 211055 + enableSeparateDataOutput = true; 209905 211056 libraryHaskellDepends = [ 209906 211057 base bytestring cairo containers fclabels mtl poppler strict 209907 211058 TypeCompose xournal-types ··· 210033 211184 pname = "xtc"; 210034 211185 version = "1.0.1"; 210035 211186 sha256 = "0jfs3qbcx5h26irkq73dyc2m84qyrlj5dvy6d1s6p6520vhnqfal"; 211187 + enableSeparateDataOutput = true; 210036 211188 libraryHaskellDepends = [ base wx wxcore ]; 210037 211189 homepage = "http://github.com/alanz/xtc"; 210038 211190 description = "eXtended & Typed Controls for wxHaskell"; ··· 210264 211416 pname = "yamemo"; 210265 211417 version = "0.6.0"; 210266 211418 sha256 = "12qh9fi5dj4i5lprm24gc2b66qzc3mf59m22sxf93sx3dsf7rygn"; 211419 + enableSeparateDataOutput = true; 210267 211420 libraryHaskellDepends = [ base containers mtl ]; 210268 211421 description = "Simple memoisation function"; 210269 211422 license = stdenv.lib.licenses.bsd3; ··· 210434 211587 sha256 = "1lmlrf3x4icx0ikl02k00hv1wibvy0n3lmxdgjrh0vbq89sbx55a"; 210435 211588 isLibrary = true; 210436 211589 isExecutable = true; 211590 + enableSeparateDataOutput = true; 210437 211591 libraryHaskellDepends = [ 210438 211592 aeson base bytestring directory filepath text unix 210439 211593 unordered-containers vector yaml ··· 210692 211846 sha256 = "0h2gd0k8vbz8rl34j42ayvcqp0ksz6642k9pznrd28h145wk8gz5"; 210693 211847 isLibrary = true; 210694 211848 isExecutable = true; 211849 + enableSeparateDataOutput = true; 210695 211850 libraryHaskellDepends = [ 210696 211851 base event-driven filepath monads-tf regexpr 210697 211852 ]; ··· 210707 211862 pname = "ycextra"; 210708 211863 version = "0.1"; 210709 211864 sha256 = "0aa0g2r7ck052wqkqqxzvkdqv9d7x3v7rqqd8iajwys9cvqny4m5"; 211865 + enableSeparateDataOutput = true; 210710 211866 libraryHaskellDepends = [ 210711 211867 base containers csv mtl uniplate yhccore 210712 211868 ]; ··· 211082 212238 pname = "yesod-auth-hmac-keccak"; 211083 212239 version = "0.0.0.3"; 211084 212240 sha256 = "1x5qnhdhy0n6kf9gljkig2q4dsfay1rv8gg3xc5ly5dvbbmy4zp8"; 212241 + enableSeparateDataOutput = true; 211085 212242 libraryHaskellDepends = [ 211086 212243 aeson base bytestring cryptonite mtl persistent random shakespeare 211087 212244 text yesod-auth yesod-core yesod-form yesod-persistent yesod-static ··· 211688 212845 sha256 = "1z56y5l6mgwi7ghcn1ycxhgpzximg0fbs652jlaxdy03rzxizv29"; 211689 212846 isLibrary = false; 211690 212847 isExecutable = true; 212848 + enableSeparateDataOutput = true; 211691 212849 executableHaskellDepends = [ 211692 212850 ansi-terminal base bytestring directory filepath fsnotify Glob 211693 212851 optparse-applicative process pureMD5 stm system-filepath temporary ··· 213098 214256 pname = "yi-frontend-pango"; 213099 214257 version = "0.14.0"; 213100 214258 sha256 = "0zwpy1lbkw8lkxk4p162xs181n9xsp9x8h6yknklqd79lnxs4zd5"; 214259 + enableSeparateDataOutput = true; 213101 214260 libraryHaskellDepends = [ 213102 214261 base containers filepath glib gtk microlens-platform mtl 213103 214262 oo-prototypes pango pointedlist text transformers-base yi-core ··· 213314 214473 pname = "yi-keymap-vim"; 213315 214474 version = "0.13.7"; 213316 214475 sha256 = "0d91lpcrsbwwacqycmkdmxkwnx7rn116cj76ddb7wrnikaj6vv1j"; 214476 + enableSeparateDataOutput = true; 213317 214477 libraryHaskellDepends = [ 213318 214478 attoparsec base binary containers data-default directory filepath 213319 214479 Hclip microlens-platform mtl oo-prototypes pointedlist safe ··· 213343 214503 pname = "yi-keymap-vim"; 213344 214504 version = "0.14.0"; 213345 214505 sha256 = "1hy36q69a0yhkg5v0n2f2gkmbf85a9y6k5b38gdg18kdnil974q4"; 214506 + enableSeparateDataOutput = true; 213346 214507 libraryHaskellDepends = [ 213347 214508 attoparsec base binary containers data-default directory filepath 213348 214509 Hclip microlens-platform mtl oo-prototypes pointedlist safe ··· 213689 214850 pname = "yices"; 213690 214851 version = "0.0.0.12"; 213691 214852 sha256 = "1k3q789dapk0c311x72w4r008rnbfz3cvajahxq208gy8iyjx9iz"; 214853 + enableSeparateDataOutput = true; 213692 214854 libraryHaskellDepends = [ base parsec process ]; 213693 214855 description = "Haskell programming interface to Yices SMT solver"; 213694 214856 license = stdenv.lib.licenses.bsd3; ··· 213738 214900 sha256 = "11iwz7mrx3f72i3d4l9zvqb8g0722aj00s7h7wa06y4l69rfnj6m"; 213739 214901 isLibrary = true; 213740 214902 isExecutable = true; 214903 + enableSeparateDataOutput = true; 213741 214904 libraryHaskellDepends = [ 213742 214905 base directory ftphs haskeline mtl process unix 213743 214906 ]; ··· 213872 215035 sha256 = "1lb50xpz032nrxbcfihj08cwbw2cn22sf8f4xlpfqnp36jvn1rvx"; 213873 215036 isLibrary = false; 213874 215037 isExecutable = true; 215038 + enableSeparateDataOutput = true; 213875 215039 executableHaskellDepends = [ base bytestring process utility-ht ]; 213876 215040 description = "Upload video to YouTube via YouTube API"; 213877 215041 license = stdenv.lib.licenses.bsd3; ··· 213917 215081 sha256 = "1b33q6k76bwg5614b670mvls0iwyp2yqfdqc9r86m95x7ar7brq8"; 213918 215082 isLibrary = false; 213919 215083 isExecutable = true; 215084 + enableSeparateDataOutput = true; 213920 215085 executableHaskellDepends = [ 213921 215086 aeson base containers csv directory filepath HDBC HDBC-sqlite3 213922 215087 HStringTemplate lucid old-locale old-time pandoc parsec scientific ··· 213950 215115 sha256 = "01pf0mg6lgm34src1mfz3qj41vyhmvi50yjyv72zwamd0g7sx374"; 213951 215116 isLibrary = true; 213952 215117 isExecutable = true; 215118 + enableSeparateDataOutput = true; 213953 215119 libraryHaskellDepends = [ 213954 215120 base bytestring containers curl deepseq directory filepath 213955 215121 haskell98 mtl network parsec ··· 214149 215315 sha256 = "03jwhgi9n9iv7zpn8nwkdyvsybsksnhsji8k2ma9rzayk36aba6v"; 214150 215316 isLibrary = false; 214151 215317 isExecutable = true; 215318 + enableSeparateDataOutput = true; 214152 215319 executableHaskellDepends = [ 214153 215320 array base containers directory ghc ghc-paths mtl parallel process 214154 215321 random text transformers ··· 214595 215762 pname = "zipedit"; 214596 215763 version = "0.2.3"; 214597 215764 sha256 = "17msh3gwylmsiabyz5x05ir2xh8h904kbp5isnvbf0z4kzfv33cr"; 215765 + enableSeparateDataOutput = true; 214598 215766 libraryHaskellDepends = [ base directory mtl process ]; 214599 215767 homepage = "http://code.haskell.org/~byorgey/code/zipedit"; 214600 215768 description = "Create simple list editor interfaces"; ··· 214991 216159 editedCabalFile = "04gsbs6fvwpjjg1f6g1j17dxlfzsci9vmirk7mwqwmm9ha0a4hxm"; 214992 216160 isLibrary = false; 214993 216161 isExecutable = true; 216162 + enableSeparateDataOutput = true; 214994 216163 executableHaskellDepends = [ base monads-tf ]; 214995 216164 description = "Zot language"; 214996 216165 license = stdenv.lib.licenses.bsd3;
+2
pkgs/development/haskell-modules/lib.nix
··· 111 111 overrideSrc = drv: { src, version ? drv.version }: 112 112 overrideCabal drv (_: { inherit src version; editedCabalFile = null; }); 113 113 114 + hasNoDataOutput = drv: overrideCabal drv (drv: { hasDataDir = false; }); 115 + hasNoDocOutput = drv: overrideCabal drv (drv: { hasDocDir = false; }); 114 116 }
+2 -2
pkgs/development/libraries/beignet/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 name = "beignet-${version}"; 22 - version = "1.2.1"; 22 + version = "1.3.1"; 23 23 24 24 src = fetchurl { 25 25 url = "https://01.org/sites/default/files/${name}-source.tar.gz"; 26 - sha256 = "07y8ga545654jdbijmplga7a7j3jn04q5gfdjsl8cax16hsv0kmp"; 26 + sha256 = "07snrgjlhwl5fxz82dyqp632cnf5hp0gfqrjd2930jv79p37p6rr"; 27 27 }; 28 28 29 29 patches = [ ./clang_llvm.patch ];
+6 -7
pkgs/development/libraries/cppzmq/default.nix
··· 1 - { stdenv, fetchFromGitHub }: 1 + { stdenv, fetchFromGitHub, cmake, zeromq }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "cppzmq-${version}"; 5 - version = "2016-11-16"; 5 + version = "4.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "zeromq"; 9 9 repo = "cppzmq"; 10 - rev = "8b52a6ffacce27bac9b81c852b81539a77b0a6e5"; 11 - sha256 = "12accjyjzfw1wqzbj1qn6q99bj5ba05flsvbanyzflr3b4971s4p"; 10 + rev = "v${version}"; 11 + sha256 = "0hy8yxb22siimq0pf6jq6kdp9lvi5f6al1xd12c9i1jyajhp1lhk"; 12 12 }; 13 13 14 - installPhase = '' 15 - install -Dm644 zmq.hpp $out/include/zmq.hpp 16 - ''; 14 + nativeBuildInputs = [ cmake ]; 15 + buildInputs = [ zeromq ]; 17 16 18 17 meta = with stdenv.lib; { 19 18 homepage = "https://github.com/zeromq/cppzmq";
+10 -2
pkgs/development/libraries/folly/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "folly-${version}"; 6 - version = "2016.12.19.00"; 6 + version = "2017.07.24.00"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "facebook"; 10 10 repo = "folly"; 11 11 rev = "v${version}"; 12 - sha256 = "1q5nh84sxkdi4x0gwr0x7bgk33pq6071vxz5vnjkznwywhgw2hnn"; 12 + sha256 = "1cmqrm9yjxrw4xr1kcgzl0s7vcvp125wcgb0cz7whssgj11mf169"; 13 13 }; 14 + 15 + patches = [ 16 + # Fix compilation 17 + (fetchpatch { 18 + url = "https://github.com/facebook/folly/commit/9fc87c83d93f092859823ec32289ed1b6abeb683.patch"; 19 + sha256 = "0ix0grqlzm16hwa4rjbajjck8kr9lksh6c3gn7p3ihbbchsmlhvl"; 20 + }) 21 + ]; 14 22 15 23 nativeBuildInputs = [ autoreconfHook python pkgconfig ]; 16 24 buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ];
+2 -2
pkgs/development/libraries/gbenchmark/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "gbenchmark-${version}"; 5 - version = "1.1.0"; 5 + version = "1.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "google"; 9 9 repo = "benchmark"; 10 10 rev = "v${version}"; 11 - sha256 = "1y7k73kyxx1jlph23csnhdac76px6ghhwwxbcf0133m4rg0wmpn5"; 11 + sha256 = "1gld3zdxgc0c0466qvnsi70h2ksx8qprjrx008rypdhzp6660m48"; 12 12 }; 13 13 14 14 buildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/libaacs/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 name = "libaacs-${version}"; 12 - version = "0.8.1"; 12 + version = "0.9.0"; 13 13 14 14 src = fetchurl { 15 15 url = "http://get.videolan.org/libaacs/${version}/${name}.tar.bz2"; 16 - sha256 = "1s5v075hnbs57995r6lljm79wgrip3gnyf55a0y7bja75jh49hwm"; 16 + sha256 = "1kms92i0c7i1yl659kqjf19lm8172pnpik5lsxp19xphr74vvq27"; 17 17 }; 18 18 19 19 buildInputs = [ libgcrypt libgpgerror ];
+1 -1
pkgs/development/libraries/libbluray/default.nix
··· 56 56 ; 57 57 58 58 meta = with stdenv.lib; { 59 - homepage = http://www.videolan.org/developers/libbluray.html; 59 + homepage = "http://www.videolan.org/developers/libbluray.html"; 60 60 description = "Library to access Blu-Ray disks for video playback"; 61 61 license = licenses.lgpl21; 62 62 maintainers = with maintainers; [ abbradar ];
+3 -3
pkgs/development/libraries/libfprint/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, libusb, pixman, glib, nss, nspr, gdk_pixbuf }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "libfprint-0.6.0"; 4 + name = "libfprint-0.7.0"; 5 5 6 6 src = fetchurl { 7 - url = "http://people.freedesktop.org/~hadess/${name}.tar.xz"; 8 - sha256 = "1giwh2z63mn45galsjb59rhyrvgwcy01hvvp4g01iaa2snvzr0r5"; 7 + url = "https://people.freedesktop.org/~anarsoul/${name}.tar.xz"; 8 + sha256 = "1wzi12zvdp8sw3w5pfbd9cwz6c71627bkr88rxv6gifbyj6fwgl6"; 9 9 }; 10 10 11 11 buildInputs = [ libusb pixman glib nss nspr gdk_pixbuf ];
+2 -2
pkgs/development/libraries/science/math/ipopt/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "ipopt-${version}"; 5 - version = "3.12.6"; 5 + version = "3.12.8"; 6 6 7 7 src = fetchurl { 8 8 url = "http://www.coin-or.org/download/source/Ipopt/Ipopt-${version}.zip"; 9 - sha256 = "0lx09h1757s5jppwnxwblcjk0biqjxy7yaf3z4vfqbl4rl93avs0"; 9 + sha256 = "1lyhgashyk2wswv0z2qnkxng32pim80kzf9jfgxi07wl09x753w1"; 10 10 }; 11 11 12 12 CXXDEFS = [ "-DHAVE_RAND" "-DHAVE_CSTRING" "-DHAVE_CSTDIO" ];
+2 -2
pkgs/development/libraries/ti-rpc/default.nix
··· 1 1 { fetchurl, stdenv, autoreconfHook, libkrb5 }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "libtirpc-1.0.1"; 4 + name = "libtirpc-1.0.2"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://sourceforge/libtirpc/${name}.tar.bz2"; 8 - sha256 = "17mqrdgsgp9m92pmq7bvr119svdg753prqqxmg4cnz5y657rfmji"; 8 + sha256 = "1xchbxy0xql7yl7z4n1icj8r7dmly46i22fvm00vdjq64zlmqg3j"; 9 9 }; 10 10 11 11 nativeBuildInputs = [ autoreconfHook ];
+2 -2
pkgs/development/libraries/vc/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "Vc-${version}"; 5 - version = "1.3.0"; 5 + version = "1.3.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "VcDevel"; 9 9 repo = "Vc"; 10 10 rev = version; 11 - sha256 = "18vi92xxg0ly0fw4v06fwls11rahmg5z8xf65jxxrbgf37vc1wxi"; 11 + sha256 = "119sm0kldr5j163ff04fra35420cvpj040hs7n0mnfbcgyx4nxq9"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+13 -6
pkgs/development/libraries/zeromq/4.x.nix
··· 1 - { stdenv, fetchurl, libuuid, pkgconfig, libsodium }: 1 + { stdenv, fetchFromGitHub, cmake, asciidoc }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "zeromq-${version}"; 5 5 version = "4.2.2"; 6 6 7 - src = fetchurl { 8 - url = "https://github.com/zeromq/libzmq/releases/download/v${version}/${name}.tar.gz"; 9 - sha256 = "0syzwsiqblimfjb32fr6hswhdvp3cmbk0pgm7ayxaigmkv5g88sv"; 7 + src = fetchFromGitHub { 8 + owner = "zeromq"; 9 + repo = "libzmq"; 10 + rev = "v${version}"; 11 + sha256 = "09317g4zkalp3k11x6vbidcm4qf02ciml1wxgp3742lrlgcblgxy"; 10 12 }; 11 13 12 - nativeBuildInputs = [ pkgconfig ]; 13 - buildInputs = [ libuuid libsodium ]; 14 + nativeBuildInputs = [ cmake asciidoc ]; 15 + 16 + enableParallelBuilding = true; 17 + 18 + postPatch = '' 19 + sed -i 's,''${PACKAGE_PREFIX_DIR}/,,g' ZeroMQConfig.cmake.in 20 + ''; 14 21 15 22 meta = with stdenv.lib; { 16 23 branch = "4";
+20
pkgs/development/python-modules/amqplib/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "amqplib"; 5 + version = "0.6.1"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "0f2618b74d95cd360a6d46a309a3fb1c37d881a237e269ac195a69a34e0e2f62"; 11 + }; 12 + 13 + # error: invalid command 'test' 14 + doCheck = false; 15 + 16 + meta = with stdenv.lib; { 17 + homepage = http://code.google.com/p/py-amqplib/; 18 + description = "Python client for the Advanced Message Queuing Procotol (AMQP)"; 19 + }; 20 + }
+25
pkgs/development/python-modules/apipkg/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi 2 + , pytest }: 3 + 4 + buildPythonPackage rec { 5 + pname = "apipkg"; 6 + version = "1.4"; 7 + name = "${pname}-${version}"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "2e38399dbe842891fe85392601aab8f40a8f4cc5a9053c326de35a1cc0297ac6"; 12 + }; 13 + 14 + buildInputs = [ pytest ]; 15 + 16 + checkPhase = '' 17 + py.test 18 + ''; 19 + 20 + meta = with stdenv.lib; { 21 + description = "Namespace control and lazy-import mechanism"; 22 + homepage = "http://bitbucket.org/hpk42/apipkg"; 23 + license = licenses.mit; 24 + }; 25 + }
+25
pkgs/development/python-modules/apsw/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchurl 2 + , sqlite, isPyPy }: 3 + 4 + buildPythonPackage rec { 5 + pname = "apsw"; 6 + version = "3.7.6.2-r1"; 7 + name = "${pname}-${version}"; 8 + 9 + disabled = isPyPy; 10 + 11 + src = fetchurl { 12 + url = "http://apsw.googlecode.com/files/${name}.zip"; 13 + sha256 = "cb121b2bce052609570a2f6def914c0aa526ede07b7096dddb78624d77f013eb"; 14 + }; 15 + 16 + buildInputs = [ sqlite ]; 17 + 18 + # python: double free or corruption (fasttop): 0x0000000002fd4660 *** 19 + doCheck = false; 20 + 21 + meta = with stdenv.lib; { 22 + description = "A Python wrapper for the SQLite embedded relational database engine"; 23 + homepage = http://code.google.com/p/apsw/; 24 + }; 25 + }
+18
pkgs/development/python-modules/area53/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi 2 + , boto }: 3 + 4 + buildPythonPackage rec { 5 + pname = "Area53"; 6 + version = "0.94"; 7 + name = "${pname}-${version}"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "0v9b7f8b6v21y410anx5sr52k2ac8jrzdf19q6m6p0zsdsf9vr42"; 12 + }; 13 + 14 + # error: invalid command 'test' 15 + doCheck = false; 16 + 17 + propagatedBuildInputs = [ boto ]; 18 + }
+17
pkgs/development/python-modules/args/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "args"; 5 + version = "0.1.0"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814"; 11 + }; 12 + 13 + meta = with stdenv.lib; { 14 + description = "Command Arguments for Humans"; 15 + homepage = "https://github.com/kennethreitz/args"; 16 + }; 17 + }
+24
pkgs/development/python-modules/asn1ate/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchFromGitHub 2 + , pyparsing }: 3 + 4 + buildPythonPackage rec { 5 + pname = "asn1ate"; 6 + date = "20160810"; 7 + name = "${pname}-unstable-${date}"; 8 + 9 + src = fetchFromGitHub { 10 + sha256 = "04pddr1mh2v9qq8fg60czwvjny5qwh4nyxszr3qc4bipiiv2xk9w"; 11 + rev = "c56104e8912400135509b584d84423ee05a5af6b"; 12 + owner = "kimgr"; 13 + repo = pname; 14 + }; 15 + 16 + propagatedBuildInputs = [ pyparsing ]; 17 + 18 + meta = with stdenv.lib; { 19 + description = "Python library for translating ASN.1 into other forms"; 20 + license = licenses.bsd3; 21 + platforms = platforms.linux; 22 + maintainers = with maintainers; [ leenaars ]; 23 + }; 24 + }
+19
pkgs/development/python-modules/astor/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "astor"; 5 + version = "0.5"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "1fdafq5hkis1fxqlmhw0sn44zp2ar46nxhbc22cvwg7hsd8z5gsa"; 11 + }; 12 + 13 + meta = with stdenv.lib; { 14 + description = "Library for reading, writing and rewriting python AST"; 15 + homepage = https://github.com/berkerpeksag/astor; 16 + license = licenses.bsd3; 17 + maintainers = with maintainers; [ nixy ]; 18 + }; 19 + }
+16
pkgs/development/python-modules/chai/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "chai"; 5 + version = "1.1.1"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "016kf3irrclpkpvcm7q0gmkfibq7jgy30a9v73pp42bq9h9a32bl"; 11 + }; 12 + 13 + meta = with stdenv.lib; { 14 + description = "Mocking, stubbing and spying framework for python"; 15 + }; 16 + }
+22
pkgs/development/python-modules/chainmap/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "chainmap"; 5 + version = "1.0.2"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "09h5gq43w516fqswlca0nhmd2q3v8hxq15z4wqrznfwix6ya6pa0"; 11 + }; 12 + 13 + # Requires tox 14 + doCheck = false; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Backport/clone of ChainMap"; 18 + homepage = "https://bitbucket.org/jeunice/chainmap"; 19 + license = licenses.psfl; 20 + maintainers = with maintainers; [ abbradar ]; 21 + }; 22 + }
-36
pkgs/development/python-modules/django/1_10.nix
··· 1 - { stdenv, buildPythonPackage, fetchurl, substituteAll, 2 - pythonOlder, 3 - geos, gdal 4 - }: 5 - buildPythonPackage rec { 6 - pname = "Django"; 7 - name = "${pname}-${version}"; 8 - version = "1.10.7"; 9 - disabled = pythonOlder "2.7"; 10 - 11 - src = fetchurl { 12 - url = "http://www.djangoproject.com/m/releases/1.10/${name}.tar.gz"; 13 - sha256 = "1f5hnn2dzfr5szk4yc47bs4kk2nmrayjcvgpqi2s4l13pjfpfgar"; 14 - }; 15 - 16 - patches = [ 17 - (substituteAll { 18 - src = ./1.10-gis-libs.template.patch; 19 - geos = geos; 20 - gdal = gdal; 21 - }) 22 - ]; 23 - 24 - # patch only $out/bin to avoid problems with starter templates (see #3134) 25 - postFixup = '' 26 - wrapPythonProgramsIn $out/bin "$out $pythonPath" 27 - ''; 28 - 29 - # too complicated to setup 30 - doCheck = false; 31 - 32 - meta = { 33 - description = "A high-level Python Web framework"; 34 - homepage = https://www.djangoproject.com/; 35 - }; 36 - }
+22
pkgs/development/python-modules/funcsigs/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi 2 + , unittest2 }: 3 + 4 + buildPythonPackage rec { 5 + pname = "funcsigs"; 6 + version = "1.0.2"; 7 + name = "${pname}-${version}"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "0l4g5818ffyfmfs1a924811azhjj8ax9xd1cffr1mzd3ycn0zfx7"; 12 + }; 13 + 14 + buildInputs = [ unittest2 ]; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+"; 18 + homepage = "https://github.com/aliles/funcsigs"; 19 + maintainers = with maintainers; [ garbas ]; 20 + license = licenses.asl20; 21 + }; 22 + }
+23
pkgs/development/python-modules/hmmlearn/default.nix
··· 1 + { lib, fetchurl, buildPythonPackage, numpy }: 2 + 3 + buildPythonPackage rec { 4 + name = "hmmlearn-${version}"; 5 + version = "0.2.0"; 6 + 7 + src = fetchurl { 8 + url = "mirror://pypi/h/hmmlearn/${name}.tar.gz"; 9 + sha256 = "0qc3fkdyrgfg31y1a8jzs83dxkjw78pqkdm44lll1iib63w4cik9"; 10 + }; 11 + 12 + propagatedBuildInputs = [ numpy ]; 13 + 14 + doCheck = false; 15 + 16 + meta = with lib; { 17 + description = "Hidden Markov Models in Python with scikit-learn like API"; 18 + homepage = "https://github.com/hmmlearn/hmmlearn"; 19 + license = licenses.bsd3; 20 + maintainers = with maintainers; [ abbradar ]; 21 + platforms = platforms.unix; 22 + }; 23 + }
+2 -2
pkgs/development/python-modules/libarcus/default.nix
··· 7 7 stdenv.mkDerivation rec { 8 8 pname = "libarcus"; 9 9 name = "${pname}-${version}"; 10 - version = "2.4.0"; 10 + version = "2.6.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "Ultimaker"; 14 14 repo = "libArcus"; 15 15 rev = version; 16 - sha256 = "07lf5d42pnx0h9lgldplfdj142rbcsxx23njdblnq04di7a4937h"; 16 + sha256 = "1arh0gkwcjv0j3arh1w04gbwkn5glrs7gbli0b1ak7dalnicmn7c"; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ sip protobuf ];
+21
pkgs/development/python-modules/pychromecast/default.nix
··· 1 + { lib, fetchurl, buildPythonPackage, requests, six, zeroconf, protobuf }: 2 + 3 + buildPythonPackage rec { 4 + name = "PyChromecast-${version}"; 5 + version = "0.8.1"; 6 + 7 + src = fetchurl { 8 + url = "mirror://pypi/p/pychromecast/${name}.tar.gz"; 9 + sha256 = "05rlr2hjng0xg2a9k9vwmrlvd7vy9sjhxxfl96kx25xynlkq6yq6"; 10 + }; 11 + 12 + propagatedBuildInputs = [ requests six zeroconf protobuf ]; 13 + 14 + meta = with lib; { 15 + description = "Library for Python 2 and 3 to communicate with the Google Chromecast"; 16 + homepage = "https://github.com/balloob/pychromecast"; 17 + license = licenses.mit; 18 + maintainers = with maintainers; [ abbradar ]; 19 + platforms = platforms.linux; 20 + }; 21 + }
+23
pkgs/development/python-modules/sphfile/default.nix
··· 1 + { lib, fetchurl, buildPythonPackage, numpy }: 2 + 3 + buildPythonPackage rec { 4 + name = "sphfile-${version}"; 5 + version = "1.0.0"; 6 + 7 + src = fetchurl { 8 + url = "mirror://pypi/s/sphfile/${name}.tar.gz"; 9 + sha256 = "1ly9746xrzbiax9cxr5sxlg0wvf6fdxcrgwsqqxckk3wnqfypfrd"; 10 + }; 11 + 12 + propagatedBuildInputs = [ numpy ]; 13 + 14 + doCheck = false; 15 + 16 + meta = with lib; { 17 + description = "Numpy-based NIST SPH audio-file reader"; 18 + homepage = "https://github.com/mcfletch/sphfile"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ abbradar ]; 21 + platforms = platforms.unix; 22 + }; 23 + }
+5 -5
pkgs/development/python-modules/uranium/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, python, cmake, pyqt5, numpy, scipy, libarcus }: 1 + { stdenv, lib, fetchFromGitHub, python, cmake, pyqt5, numpy, scipy, libarcus, doxygen, gettext }: 2 2 3 3 if lib.versionOlder python.version "3.5.0" 4 4 then throw "Uranium not supported for interpreter ${python.executable}" 5 5 else 6 6 7 7 stdenv.mkDerivation rec { 8 - version = "2.4.0"; 8 + version = "2.6.1"; 9 9 pname = "uranium"; 10 10 name = "${pname}-${version}"; 11 11 ··· 13 13 owner = "Ultimaker"; 14 14 repo = "Uranium"; 15 15 rev = version; 16 - sha256 = "1jpl0ryk8xdppillk5wzr2415n50cpa09shn1xqj6y96fg22l2il"; 16 + sha256 = "1682xwxf6xs1d1cfv1s7xnabqv58jjdb6szz8624b3k9rsj5l2yq"; 17 17 }; 18 18 19 - buildInputs = [ python ]; 19 + buildInputs = [ python gettext ]; 20 20 propagatedBuildInputs = [ pyqt5 numpy scipy libarcus ]; 21 - nativeBuildInputs = [ cmake ]; 21 + nativeBuildInputs = [ cmake doxygen ]; 22 22 23 23 postPatch = '' 24 24 sed -i 's,/python''${PYTHON_VERSION_MAJOR}/dist-packages,/python''${PYTHON_VERSION_MAJOR}.''${PYTHON_VERSION_MINOR}/site-packages,g' CMakeLists.txt
+2 -2
pkgs/development/python-modules/zeroconf/default.nix
··· 3 3 4 4 buildPythonPackage rec { 5 5 pname = "zeroconf"; 6 - version = "0.18.0"; 6 + version = "0.19.1"; 7 7 name = "${pname}-${version}"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "0s1840v2h4h19ad8lfadbm3dhzs8bw9c5c3slkxql1zsaiycvjy2"; 11 + sha256 = "0ykzg730n915qbrq9bn5pn06bv6rb5zawal4sqjyfnjjm66snkj3"; 12 12 }; 13 13 14 14 propagatedBuildInputs = [ netifaces six enum-compat ];
+2 -2
pkgs/development/tools/build-managers/gradle/default.nix
··· 52 52 }; 53 53 54 54 gradle_latest = gradleGen rec { 55 - name = "gradle-4.0.1"; 55 + name = "gradle-4.0.2"; 56 56 nativeVersion = "0.14"; 57 57 58 58 src = fetchurl { 59 59 url = "http://services.gradle.org/distributions/${name}-bin.zip"; 60 - sha256 = "1m2gnh1vs3f5acdqcxmc8d0pi65bzm3v1nliz29rhdfi01if85yp"; 60 + sha256 = "08ns3p1w258cbfk6yg3yy2mmy7wwma5riq04yjjgc4dx889l5b3r"; 61 61 }; 62 62 }; 63 63
+2 -2
pkgs/development/tools/continuous-integration/jenkins/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "jenkins-${version}"; 5 - version = "2.66"; 5 + version = "2.71"; 6 6 7 7 src = fetchurl { 8 8 url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; 9 - sha256 = "05n03rm5vjzcz1f36829hwviw7i8l8d728nvr4cnf6mcl3rxciyl"; 9 + sha256 = "0b3mxbcv7afj8ksr2y33rvprj7003679j545igf5dsal82i7swhl"; 10 10 }; 11 11 12 12 buildCommand = ''
+6 -6
pkgs/development/tools/rust/racer/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 name = "racer-${version}"; 5 - version = "2.0.6"; 5 + version = "2.0.9"; 6 6 7 7 src = fetchFromGitHub { 8 - owner = "phildawes"; 8 + owner = "racer-rust"; 9 9 repo = "racer"; 10 10 rev = version; 11 - sha256 = "09wgfrb0z2d2icfk11f1jal5p93sqjv3jzmzcgw0pgw3zvffhni3"; 11 + sha256 = "06k50f2vj2w08afh3nrlhs0amcvw2i45bhfwr70sgs395xicjswp"; 12 12 }; 13 13 14 - depsSha256 = "0mnq7dk9wz2k9jhzciknybwc471sy8f71cd15m752b5ng6v1f5kn"; 14 + depsSha256 = "1gywnjbjl9jalbq6wkfmbczav4qbhgw2h8lyxkyppnhw9y4j0nc1"; 15 15 16 16 buildInputs = [ makeWrapper ]; 17 17 18 18 preCheck = '' 19 - export RUST_SRC_PATH="${rustPlatform.rust.rustc.src}/src" 19 + export RUST_SRC_PATH="${rustPlatform.rustcSrc}" 20 20 ''; 21 21 22 22 doCheck = true; ··· 29 29 30 30 meta = with stdenv.lib; { 31 31 description = "A utility intended to provide Rust code completion for editors and IDEs"; 32 - homepage = https://github.com/phildawes/racer; 32 + homepage = https://github.com/racer-rust/racer; 33 33 license = licenses.mit; 34 34 maintainers = with maintainers; [ jagajaga globin ]; 35 35 platforms = platforms.all;
+14 -8
pkgs/games/crawl/crawl_purify.patch
··· 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 - @@ -285,7 +285,7 @@ 1 + diff -ru3 crawl-ref-0.20.1-src-old/crawl-ref/source/Makefile crawl-ref-0.20.1-src-new/crawl-ref/source/Makefile 2 + --- crawl-ref-0.20.1-src-old/crawl-ref/source/Makefile 1970-01-01 03:00:01.000000000 +0300 3 + +++ crawl-ref-0.20.1-src-new/crawl-ref/source/Makefile 2017-07-27 14:45:34.611221571 +0300 4 + @@ -286,13 +286,7 @@ 5 5 LIBZ := contrib/install/$(ARCH)/lib/libz.a 6 6 7 7 ifndef CROSSHOST 8 - - SQLITE_INCLUDE_DIR := /usr/include 8 + - # FreeBSD keeps all of its userland includes in /usr/local so 9 + - # look there 10 + - ifeq ($(uname_S),FreeBSD) 11 + - SQLITE_INCLUDE_DIR := /usr/local/include 12 + - else 13 + - SQLITE_INCLUDE_DIR := /usr/include 14 + - endif 9 15 + SQLITE_INCLUDE_DIR := ${sqlite}/include 10 16 else 11 17 # This is totally wrong, works only with some old-style setups, and 12 18 # on some architectures of Debian/new FHS multiarch -- excluding, for 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 19 + diff -ru3 crawl-ref-0.20.1-src-old/crawl-ref/source/util/find_font crawl-ref-0.20.1-src-new/crawl-ref/source/util/find_font 20 + --- crawl-ref-0.20.1-src-old/crawl-ref/source/util/find_font 1970-01-01 03:00:01.000000000 +0300 21 + +++ crawl-ref-0.20.1-src-new/crawl-ref/source/util/find_font 2017-07-27 14:44:29.784235540 +0300 16 22 @@ -1,6 +1,6 @@ 17 23 #! /bin/sh 18 24
+2 -2
pkgs/games/crawl/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "crawl-${version}${lib.optionalString tileMode "-tiles"}"; 8 - version = "0.19.3"; 8 + version = "0.20.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "crawl-ref"; 12 12 repo = "crawl-ref"; 13 13 rev = version; 14 - sha256 = "1qn6r5pg568pk8zgp2ijn04h4brvw675q4nxkkvzyf76ljbpzif7"; 14 + sha256 = "1ic3prvydmw753lasrvzgndcw0k4329pnafpphfpxwvdfsmhbi26"; 15 15 }; 16 16 17 17 patches = [ ./crawl_purify.patch ];
+9 -5
pkgs/games/dwarf-fortress/dfhack/default.nix
··· 5 5 6 6 let 7 7 dfVersion = "0.43.05"; 8 - # version = "${dfVersion}-r1"; 9 - # rev = "refs/tags/${version}"; 10 - version = "${dfVersion}-r1"; 8 + version = "${dfVersion}-r2"; 11 9 rev = "refs/tags/${version}"; 12 - sha256 = "1hw0miimzx52p36jm9bimsm5j68rb7dd9kw0yivcwbwixbajsi1w"; 10 + sha256 = "18zbxri5rch750m431pdmlk4xi7nc14iif3i7glxrgy2h5nfaw5c"; 13 11 14 12 # revision of library/xml submodule 15 - xmlRev = "a8e80088b9cc934da993dc244ece2d0ae14143da"; 13 + xmlRev = "3322beb2e7f4b28ff8e573e9bec738c77026b8e9"; 16 14 17 15 arch = 18 16 if stdenv.system == "x86_64-linux" then "64" ··· 50 48 nativeBuildInputs = [ cmake perl XMLLibXML XMLLibXSLT fakegit ]; 51 49 # We don't use system libraries because dfhack needs old C++ ABI. 52 50 buildInputs = [ zlib ]; 51 + 52 + preConfigure = '' 53 + # Trick build system into believing we have .git 54 + mkdir -p .git/modules/library/xml 55 + touch .git/index .git/modules/library/xml/index 56 + ''; 53 57 54 58 preBuild = '' 55 59 export LD_LIBRARY_PATH="$PWD/depends/protobuf:$LD_LIBRARY_PATH"
+4 -4
pkgs/games/factorio/default.nix
··· 10 10 11 11 with stdenv.lib; 12 12 let 13 - version = if releaseType != "demo" then "0.15.30" else "0.15.25"; 13 + version = if releaseType != "demo" then "0.15.31" else "0.15.31"; 14 14 15 15 arch = if stdenv.system == "x86_64-linux" then { 16 16 inUrl = "linux64"; ··· 26 26 url = "https://www.factorio.com/get-download/${version}/${releaseType}/${arch.inUrl}"; 27 27 name = "factorio_${releaseType}_${arch.inTar}-${version}.tar.xz"; 28 28 x64 = { 29 - headless = fetchurl { inherit name url; sha256 = "0nmr73i9acnqgphfmsps7f8jlw0f2gyal9l8pldlp4rk0cjgvszy"; }; 30 - alpha = authenticatedFetch { inherit name url; sha256 = "1ydh44na2lbvdv4anrblym7d6wxwapfbwap40n3722llrsad0zsz"; }; 31 - demo = fetchurl { inherit name url; sha256 = "1qz6g8mf221ic663zk92l6rs77ggfydaw2d8g2s7wy0j9097qbsl"; }; 29 + headless = fetchurl { inherit name url; sha256 = "1kbf6pj0rdiydx7g3xaqhnvvjr01g1afys2flw8x5myanffhql9x"; }; 30 + alpha = authenticatedFetch { inherit name url; sha256 = "0mz7x0hc3kvs6l1isnryld08sfy8gkgq81vvmmssa3ayp5y67rh4"; }; 31 + demo = fetchurl { inherit name url; sha256 = "0zsjlgys96qlqs79m634wh36vx5d7faq4749i9lsxm88b6fylfaf"; }; 32 32 }; 33 33 i386 = { 34 34 headless = abort "Factorio 32-bit headless binaries are not available for download.";
+2 -2
pkgs/games/gnuchess/default.nix
··· 3 3 s = # Generated upstream information 4 4 rec { 5 5 baseName="gnuchess"; 6 - version="6.2.4"; 6 + version="6.2.5"; 7 7 name="${baseName}-${version}"; 8 8 url="mirror://gnu/chess/${name}.tar.gz"; 9 - sha256="1vw2w3jwnmn44d5vsw47f8y70xvxcsz9m5msq9fgqlzjch15qhiw"; 9 + sha256="00j8s0npgfdi41a0mr5w9qbdxagdk2v41lcr42rwl1jp6miyk6cs"; 10 10 }; 11 11 buildInputs = [ 12 12 flex
+3 -3
pkgs/games/quake3/ioquake/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "ioquake3-git-${version}"; 7 - version = "2017-01-27"; 7 + version = "2017-07-25"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "ioquake"; 11 11 repo = "ioq3"; 12 - rev = "468da0fabca2f21b811a501c184b986e270c5113"; 13 - sha256 = "14mhkqn6h2mbmz90j4ns1wp72ca5w9481sbyw2ving8xpw376i58"; 12 + rev = "356ae10ef65d4401958d50f03288dcb22d957c96"; 13 + sha256 = "0dz4zqlb9n3skaicj0vfvq4nr3ig80s8nwj9m87b39wc9wq34c5j"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ which pkgconfig ];
+2 -2
pkgs/games/the-powder-toy/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "the-powder-toy-${version}"; 5 - version = "91.5.330"; 5 + version = "92.0.331"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "simtr"; 9 9 repo = "The-Powder-Toy"; 10 10 rev = "v${version}"; 11 - sha256 = "19m7jyg3pnppymvr6lz454mjiw18hvldpdhi33596m9ji3nrq8x7"; 11 + sha256 = "185zlg20qk6ic9llyf4xka923snqrpdazg568raz0jiafzzsirax"; 12 12 }; 13 13 14 14 patches = [ ./fix-env.patch ];
+2 -2
pkgs/misc/cups/filters.nix
··· 9 9 10 10 in stdenv.mkDerivation rec { 11 11 name = "cups-filters-${version}"; 12 - version = "1.15.0"; 12 + version = "1.16.0"; 13 13 14 14 src = fetchurl { 15 15 url = "http://openprinting.org/download/cups-filters/${name}.tar.xz"; 16 - sha256 = "0g6jmbzgvsq4dq6jaczr6fslpv3692v8yvvmqgw08sb3aly7kgd3"; 16 + sha256 = "1kcndzpbbcaxafnz1wa6acy3p3r5likfqmf057i5q0q6i176lz5k"; 17 17 }; 18 18 19 19 nativeBuildInputs = [ pkgconfig makeWrapper ];
+33
pkgs/misc/emulators/citra/default.nix
··· 1 + { stdenv, fetchgit, cmake, SDL2, qtbase, boost, curl, gtest }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "citra-2017-07-26"; 5 + 6 + # Submodules 7 + src = fetchgit { 8 + url = "https://github.com/citra-emu/citra"; 9 + rev = "a724fb365787718f9e44adedc14e59d0854905a6"; 10 + sha256 = "0lkrwhxvq85c0smix27xvj8m463bxa67qhy8m8r43g39n0h8d5sf"; 11 + }; 12 + 13 + nativeBuildInputs = [ cmake ]; 14 + buildInputs = [ SDL2 qtbase boost curl gtest ]; 15 + cmakeFlags = [ "-DUSE_SYSTEM_CURL=ON" "-DUSE_SYSTEM_GTEST=ON" ]; 16 + 17 + preConfigure = '' 18 + # Trick configure system. 19 + sed -n 's,^ *path = \(.*\),\1,p' .gitmodules | while read path; do 20 + mkdir "$path/.git" 21 + done 22 + ''; 23 + 24 + enableParallelBuilding = true; 25 + 26 + meta = with stdenv.lib; { 27 + homepage = "https://citra-emu.org/"; 28 + description = "An open-source emulator for the Nintendo 3DS capable of playing many of your favorite games."; 29 + platforms = platforms.linux; 30 + license = licenses.gpl2; 31 + maintainers = with maintainers; [ abbradar ]; 32 + }; 33 + }
+39
pkgs/misc/emulators/dosbox/unstable.nix
··· 1 + { stdenv, fetchurl, fetchsvn, SDL, SDL_net, SDL_sound, libpng, makeDesktopItem, mesa, autoreconfHook }: 2 + 3 + let revision = "4025"; 4 + revisionDate = "2017-07-02"; 5 + revisionSha = "0hbghdlvm6qibp0df35qxq35km4nza3sm301x380ghamxq2vgy6a"; 6 + in stdenv.mkDerivation rec { 7 + name = "dosbox-unstable-${revisionDate}"; 8 + 9 + src = fetchsvn { 10 + url = "https://dosbox.svn.sourceforge.net/svnroot/dosbox/dosbox/trunk"; 11 + rev = revision; 12 + sha256 = revisionSha; 13 + }; 14 + 15 + hardeningDisable = [ "format" ]; 16 + 17 + buildInputs = [ SDL SDL_net SDL_sound libpng mesa autoreconfHook ]; 18 + 19 + desktopItem = makeDesktopItem { 20 + name = "dosbox"; 21 + exec = "dosbox"; 22 + comment = "x86 emulator with internal DOS"; 23 + desktopName = "DOSBox (SVN)"; 24 + genericName = "DOS emulator"; 25 + categories = "Application;Emulator;"; 26 + }; 27 + 28 + postInstall = '' 29 + mkdir -p $out/share/applications 30 + cp ${desktopItem}/share/applications/* $out/share/applications 31 + ''; 32 + 33 + meta = { 34 + homepage = http://www.dosbox.com/; 35 + description = "A DOS emulator"; 36 + platforms = stdenv.lib.platforms.unix; 37 + maintainers = with stdenv.lib.maintainers; [ binarin ]; 38 + }; 39 + }
+3 -3
pkgs/misc/emulators/wine/sources.nix
··· 32 32 33 33 unstable = fetchurl rec { 34 34 # NOTE: Don't forget to change the SHA256 for staging as well. 35 - version = "2.12"; 35 + version = "2.13"; 36 36 url = "https://dl.winehq.org/wine/source/2.x/wine-${version}.tar.xz"; 37 - sha256 = "19qk880fk7xxzx9jcl6sjzilhzssn0csqlqr9vnfd1qlhjpi2v29"; 37 + sha256 = "1y3yb01lg90pi8a9qjmymg7kikwkmvpkjxi6bbk1q1lvs7fs7g3g"; 38 38 inherit (stable) mono gecko32 gecko64; 39 39 }; 40 40 41 41 staging = fetchFromGitHub rec { 42 42 inherit (unstable) version; 43 - sha256 = "00qqpw5fmpwg4589q2dwlv3jrcyj0yzv4mk63w5ydhvmy5gq48wy"; 43 + sha256 = "1ivjx5pf0xqqmdc1k5skg9saxgqzh3x01vjgypls7czmnpp3aylb"; 44 44 owner = "wine-compholio"; 45 45 repo = "wine-staging"; 46 46 rev = "v${version}";
+14
pkgs/misc/vim-plugins/default.nix
··· 1173 1173 1174 1174 }; 1175 1175 1176 + vim-yapf = buildVimPluginFrom2Nix { # created by nix#NixDerivation 1177 + name = "vim-yapf-2017-03-21"; 1178 + src = fetchgit { 1179 + url = "https://github.com/mindriot101/vim-yapf"; 1180 + rev = "324380d77c9cf8e46e22b2e4391702273a53f563"; 1181 + sha256 = "0vsd53k5k8absc60qka8nlj2ij6k4zgff2a65ixc7vqcmawxr3nw"; 1182 + }; 1183 + dependencies = []; 1184 + buildPhase = '' 1185 + substituteInPlace ftplugin/python_yapf.vim \ 1186 + --replace '"yapf"' '"${pythonPackages.yapf}/bin/yapf"' 1187 + ''; 1188 + }; 1189 + 1176 1190 lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation 1177 1191 name = "lushtags-2017-04-19"; 1178 1192 src = fetchgit {
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 92 92 "github:mhinz/vim-startify" 93 93 "github:michaeljsmith/vim-indent-object" 94 94 "github:mileszs/ack.vim" 95 + "github:mindriot101/vim-yapf" 95 96 "github:mkasa/lushtags" 96 97 "github:mpickering/hlint-refactor-vim" 97 98 "github:nathanaelkane/vim-indent-guides"
+4
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/vim-yapf
··· 1 + buildPhase = '' 2 + substituteInPlace ftplugin/python_yapf.vim \ 3 + --replace '"yapf"' '"${pkgs.yapf}/bin/yapf"' 4 + '';
+1 -1
pkgs/os-specific/linux/bbswitch/default.nix
··· 49 49 meta = with stdenv.lib; { 50 50 description = "A module for powering off hybrid GPUs"; 51 51 platforms = platforms.linux; 52 - homepage = https://github.com/Bumblebee-Project/bbswitch; 52 + homepage = "https://github.com/Bumblebee-Project/bbswitch"; 53 53 maintainers = with maintainers; [ abbradar ]; 54 54 }; 55 55 }
+3 -6
pkgs/os-specific/linux/exfat/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, kernel }: 2 2 3 - # Upstream build for kernel > 4.10 is currently broken 4 - # Reference: https://github.com/dorimanx/exfat-nofuse/issues/103 5 - assert lib.versionOlder kernel.version "4.10"; 6 3 7 4 # Upstream build for kernel 4.1 is broken, 3.12 and below seems to be working 8 5 assert lib.versionAtLeast kernel.version "4.2" || lib.versionOlder kernel.version "4.0"; 9 6 10 7 stdenv.mkDerivation rec { 11 8 name = "exfat-nofuse-${version}-${kernel.version}"; 12 - version = "2017-01-03"; 9 + version = "2017-06-19"; 13 10 14 11 src = fetchFromGitHub { 15 12 owner = "dorimanx"; 16 13 repo = "exfat-nofuse"; 17 - rev = "8d291f5"; 18 - sha256 = "0lg1mykglayswli2aliw8chsbr4g629v9chki5975avh43jn47w9"; 14 + rev = "de4c760bc9a05ead83bc3ec6eec6cf1fb106f523"; 15 + sha256 = "0v979d8sbcb70lakm4jal2ck3gspkdgq9108k127f7ph08vf8djm"; 19 16 }; 20 17 21 18 hardeningDisable = [ "pic" ];
+11 -4
pkgs/os-specific/linux/firejail/default.nix
··· 3 3 s = # Generated upstream information 4 4 rec { 5 5 baseName="firejail"; 6 - version="0.9.44.10"; 6 + version="0.9.48"; 7 7 name="${baseName}-${version}"; 8 - hash="19wln3h54wcscqgcmkm8sprdh7vrn5k91rr0hagv055y1i52c7mj"; 9 - url="https://netix.dl.sourceforge.net/project/firejail/firejail/firejail-0.9.44.10.tar.xz"; 10 - sha256="19wln3h54wcscqgcmkm8sprdh7vrn5k91rr0hagv055y1i52c7mj"; 8 + hash="02a74nx8p2gbpd6ffnr52p02pxxllw3yy5fy4083a77r3wia8zb3"; 9 + url="https://vorboss.dl.sourceforge.net/project/firejail/firejail/firejail-0.9.48.tar.xz"; 10 + sha256="02a74nx8p2gbpd6ffnr52p02pxxllw3yy5fy4083a77r3wia8zb3"; 11 11 }; 12 12 buildInputs = [ 13 13 which ··· 20 20 inherit (s) url sha256; 21 21 name = "${s.name}.tar.bz2"; 22 22 }; 23 + 24 + prePatch = '' 25 + # Allow whitelisting ~/.nix-profile 26 + substituteInPlace etc/firejail.config --replace \ 27 + '# follow-symlink-as-user yes' \ 28 + 'follow-symlink-as-user no' 29 + ''; 23 30 24 31 preConfigure = '' 25 32 sed -e 's@/bin/bash@${stdenv.shell}@g' -i $( grep -lr /bin/bash .)
+2 -2
pkgs/os-specific/linux/keyutils/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "keyutils-${version}"; 5 - version = "1.5.9"; 5 + version = "1.5.10"; 6 6 7 7 src = fetchurl { 8 8 url = "http://people.redhat.com/dhowells/keyutils/${name}.tar.bz2"; 9 - sha256 = "1bl3w03ygxhc0hz69klfdlwqn33jvzxl1zfl2jmnb2v85iawb8jd"; 9 + sha256 = "1dmgjcf7mnwc6h72xkvpaqpzxw8vmlnsmzz0s27pg0giwzm3sp0i"; 10 10 }; 11 11 12 12 outputs = [ "out" "lib" "dev" ];
+11 -5
pkgs/os-specific/linux/mcelog/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "mcelog-${version}"; 5 - version = "148"; 5 + version = "153"; 6 6 7 7 src = fetchFromGitHub { 8 - sha256 = "04mzscvr38r2q9da9wmv3cxb99vrkxks1mzgvwsxk753xan3p42c"; 9 - rev = "v${version}"; 10 - repo = "mcelog"; 11 - owner = "andikleen"; 8 + owner = "andikleen"; 9 + repo = "mcelog"; 10 + rev = "v${version}"; 11 + sha256 = "1wz55dzqdiam511d6p1958al6vzlhrhs73s7gly0mzm6kpji0gxa"; 12 12 }; 13 13 14 14 postPatch = '' ··· 27 27 enableParallelBuilding = true; 28 28 29 29 installFlags = [ "DESTDIR=$(out)" "prefix=" "DOCDIR=/share/doc" ]; 30 + 31 + postInstall = '' 32 + mkdir -p $out/lib/systemd/system 33 + substitute mcelog.service $out/lib/systemd/system/mcelog.service \ 34 + --replace /usr/sbin $out/bin 35 + ''; 30 36 31 37 meta = with stdenv.lib; { 32 38 description = "Log x86 machine checks: memory, IO, and CPU hardware errors";
+40 -50
pkgs/os-specific/linux/spl/default.nix
··· 6 6 }: 7 7 8 8 with stdenv.lib; 9 + 9 10 let 10 11 buildKernel = any (n: n == configFile) [ "kernel" "all" ]; 11 12 buildUser = any (n: n == configFile) [ "user" "all" ]; 13 + in 14 + assert any (n: n == configFile) [ "kernel" "user" "all" ]; 15 + assert buildKernel -> kernel != null; 16 + stdenv.mkDerivation rec { 17 + name = "spl-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}"; 18 + version = "0.7.0"; 12 19 13 - common = { version, sha256 } @ args : stdenv.mkDerivation rec { 14 - name = "spl-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}"; 20 + src = fetchFromGitHub { 21 + owner = "zfsonlinux"; 22 + repo = "spl"; 23 + rev = "spl-${version}"; 24 + sha256 = "05qqwhxc9nj94y28c97iwfz8gkjwicrhnkj425yb47gqa8rafazk"; 25 + }; 15 26 16 - src = fetchFromGitHub { 17 - owner = "zfsonlinux"; 18 - repo = "spl"; 19 - rev = "spl-${version}"; 20 - inherit sha256; 21 - }; 27 + patches = [ ./const.patch ./install_prefix.patch ]; 22 28 23 - patches = [ ./const.patch ./install_prefix.patch ]; 24 - 25 - nativeBuildInputs = [ autoreconfHook ]; 29 + nativeBuildInputs = [ autoreconfHook ]; 26 30 27 - hardeningDisable = [ "pic" ]; 31 + hardeningDisable = [ "pic" ]; 28 32 29 - preConfigure = '' 30 - substituteInPlace ./module/spl/spl-generic.c --replace /usr/bin/hostid hostid 31 - substituteInPlace ./module/spl/spl-generic.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:${gawk}:/bin" 32 - substituteInPlace ./module/splat/splat-vnode.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin" 33 - substituteInPlace ./module/splat/splat-linux.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin" 34 - ''; 33 + preConfigure = '' 34 + substituteInPlace ./module/spl/spl-generic.c --replace /usr/bin/hostid hostid 35 + substituteInPlace ./module/spl/spl-generic.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:${gawk}:/bin" 36 + substituteInPlace ./module/splat/splat-vnode.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin" 37 + substituteInPlace ./module/splat/splat-linux.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin" 38 + ''; 35 39 36 - configureFlags = [ 37 - "--with-config=${configFile}" 38 - ] ++ optionals buildKernel [ 39 - "--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source" 40 - "--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" 41 - ]; 40 + configureFlags = [ 41 + "--with-config=${configFile}" 42 + ] ++ optionals buildKernel [ 43 + "--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source" 44 + "--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" 45 + ]; 42 46 43 - enableParallelBuilding = true; 47 + enableParallelBuilding = true; 44 48 45 - meta = { 46 - description = "Kernel module driver for solaris porting layer (needed by in-kernel zfs)"; 49 + meta = { 50 + description = "Kernel module driver for solaris porting layer (needed by in-kernel zfs)"; 47 51 48 - longDescription = '' 49 - This kernel module is a porting layer for ZFS to work inside the linux 50 - kernel. 51 - ''; 52 + longDescription = '' 53 + This kernel module is a porting layer for ZFS to work inside the linux 54 + kernel. 55 + ''; 52 56 53 - homepage = http://zfsonlinux.org/; 54 - platforms = platforms.linux; 55 - license = licenses.gpl2Plus; 56 - maintainers = with maintainers; [ jcumming wizeman wkennington fpletz ]; 57 - }; 57 + homepage = http://zfsonlinux.org/; 58 + platforms = platforms.linux; 59 + license = licenses.gpl2Plus; 60 + maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ]; 58 61 }; 59 - 60 - in 61 - assert any (n: n == configFile) [ "kernel" "user" "all" ]; 62 - assert buildKernel -> kernel != null; 63 - { 64 - splStable = common { 65 - version = "0.6.5.11"; 66 - sha256 = "192val8035pj2rryi3fwb134avzirhv5ifaj5021vh8bbjx75pd5"; 67 - }; 68 - splUnstable = common { 69 - version = "0.7.0-rc5"; 70 - sha256 = "17y25g02c9swi3n90lhjvazcnsr69nh50dz3b8g1c08zlz9n2akp"; 71 - }; 72 - } 62 + }
+2 -10
pkgs/os-specific/linux/sysdig/default.nix
··· 3 3 with stdenv.lib; 4 4 stdenv.mkDerivation rec { 5 5 name = "sysdig-${version}"; 6 - version = "0.16.0"; 6 + version = "0.17.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "draios"; 10 10 repo = "sysdig"; 11 11 rev = version; 12 - sha256 = "1h3f9nkc5fkvks6va0maq377m9qxnsf4q3f2dc14rdzfvnzidy06"; 12 + sha256 = "0xw4in2yb3ynpc8jwl95j92kbyr7fzda3mab8nyxcyld7gshrlvd"; 13 13 }; 14 - 15 - patches = [ 16 - (fetchpatch { 17 - # Sysdig fails to run on linux kernels with unified cgroups enabled 18 - url = https://github.com/draios/sysdig/files/909689/0001-Fix-for-linux-kernels-with-cgroup-v2-API-enabled.patch.txt; 19 - sha256 = "10nmisifa500hzpa3899rs837bcal72pnqidxmrnr1js187z8j84"; 20 - }) 21 - ]; 22 14 23 15 buildInputs = [ 24 16 cmake zlib luajit ncurses perl jsoncpp libb64 openssl curl jq gcc
+87 -131
pkgs/os-specific/linux/zfs/default.nix
··· 13 13 buildKernel = any (n: n == configFile) [ "kernel" "all" ]; 14 14 buildUser = any (n: n == configFile) [ "user" "all" ]; 15 15 16 - common = { version, sha256, extraPatches, spl, incompatibleKernelVersion ? null } @ args: 17 - if buildKernel && 18 - (incompatibleKernelVersion != null) && 19 - versionAtLeast kernel.version incompatibleKernelVersion then 20 - throw "Linux v${kernel.version} is not yet supported by zfsonlinux v${version}. Try zfsUnstable or set the NixOS option boot.zfs.enableUnstable." 21 - else stdenv.mkDerivation rec { 22 - name = "zfs-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}"; 16 + in stdenv.mkDerivation rec { 17 + name = "zfs-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}"; 18 + version = "0.7.0"; 23 19 24 - src = fetchFromGitHub { 25 - owner = "zfsonlinux"; 26 - repo = "zfs"; 27 - rev = "zfs-${version}"; 28 - inherit sha256; 29 - }; 20 + src = fetchFromGitHub { 21 + owner = "zfsonlinux"; 22 + repo = "zfs"; 23 + rev = "zfs-${version}"; 24 + sha256 = "16z0fl282rsmvgk608ii7n410swivkrisp112n2fhhjc1fs0zall"; 25 + }; 30 26 31 - patches = extraPatches; 27 + patches = [ 28 + (fetchpatch { 29 + url = "https://github.com/Mic92/zfs/compare/zfs-0.7.0-rc3...nixos-zfs-0.7.0-rc3.patch"; 30 + sha256 = "1vlw98v8xvi8qapzl1jwm69qmfslwnbg3ry1lmacndaxnyckkvhh"; 31 + }) 32 + ]; 32 33 33 - buildInputs = [ autoreconfHook nukeReferences ] 34 - ++ optionals buildKernel [ spl ] 35 - ++ optionals buildUser [ zlib libuuid python attr ]; 34 + buildInputs = [ autoreconfHook nukeReferences ] 35 + ++ optionals buildKernel [ spl ] 36 + ++ optionals buildUser [ zlib libuuid python attr ]; 36 37 37 - # for zdb to get the rpath to libgcc_s, needed for pthread_cancel to work 38 - NIX_CFLAGS_LINK = "-lgcc_s"; 38 + # for zdb to get the rpath to libgcc_s, needed for pthread_cancel to work 39 + NIX_CFLAGS_LINK = "-lgcc_s"; 39 40 40 - hardeningDisable = [ "pic" ]; 41 + hardeningDisable = [ "pic" ]; 41 42 42 - preConfigure = '' 43 - substituteInPlace ./module/zfs/zfs_ctldir.c --replace "umount -t zfs" "${utillinux}/bin/umount -t zfs" 44 - substituteInPlace ./module/zfs/zfs_ctldir.c --replace "mount -t zfs" "${utillinux}/bin/mount -t zfs" 45 - substituteInPlace ./lib/libzfs/libzfs_mount.c --replace "/bin/umount" "${utillinux}/bin/umount" 46 - substituteInPlace ./lib/libzfs/libzfs_mount.c --replace "/bin/mount" "${utillinux}/bin/mount" 47 - substituteInPlace ./cmd/ztest/ztest.c --replace "/usr/sbin/ztest" "$out/sbin/ztest" 48 - substituteInPlace ./cmd/ztest/ztest.c --replace "/usr/sbin/zdb" "$out/sbin/zdb" 49 - substituteInPlace ./config/user-systemd.m4 --replace "/usr/lib/modules-load.d" "$out/etc/modules-load.d" 50 - substituteInPlace ./config/zfs-build.m4 --replace "\$sysconfdir/init.d" "$out/etc/init.d" 51 - substituteInPlace ./etc/zfs/Makefile.am --replace "\$(sysconfdir)" "$out/etc" 52 - substituteInPlace ./cmd/zed/Makefile.am --replace "\$(sysconfdir)" "$out/etc" 53 - substituteInPlace ./module/Makefile.in --replace "/bin/cp" "cp" 54 - substituteInPlace ./etc/systemd/system/zfs-share.service.in \ 55 - --replace "@bindir@/rm " "${coreutils}/bin/rm " 56 - 57 - for f in ./udev/rules.d/* 58 - do 59 - substituteInPlace "$f" --replace "/lib/udev/vdev_id" "$out/lib/udev/vdev_id" 60 - done 61 - 62 - ./autogen.sh 63 - ''; 64 - 65 - configureFlags = [ 66 - "--with-config=${configFile}" 67 - ] ++ optionals buildUser [ 68 - "--with-dracutdir=$(out)/lib/dracut" 69 - "--with-udevdir=$(out)/lib/udev" 70 - "--with-systemdunitdir=$(out)/etc/systemd/system" 71 - "--with-systemdpresetdir=$(out)/etc/systemd/system-preset" 72 - "--with-mounthelperdir=$(out)/bin" 73 - "--sysconfdir=/etc" 74 - "--localstatedir=/var" 75 - "--enable-systemd" 76 - ] ++ optionals buildKernel [ 77 - "--with-spl=${spl}/libexec/spl" 78 - "--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source" 79 - "--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" 80 - ]; 81 - 82 - enableParallelBuilding = true; 83 - 84 - installFlags = [ 85 - "sysconfdir=\${out}/etc" 86 - "DEFAULT_INITCONF_DIR=\${out}/default" 87 - ]; 88 - 89 - postInstall = '' 90 - # Prevent kernel modules from depending on the Linux -dev output. 91 - nuke-refs $(find $out -name "*.ko") 92 - '' + optionalString buildUser '' 93 - # Remove provided services as they are buggy 94 - rm $out/etc/systemd/system/zfs-import-*.service 43 + preConfigure = '' 44 + substituteInPlace ./module/zfs/zfs_ctldir.c --replace "umount -t zfs" "${utillinux}/bin/umount -t zfs" 45 + substituteInPlace ./module/zfs/zfs_ctldir.c --replace "mount -t zfs" "${utillinux}/bin/mount -t zfs" 46 + substituteInPlace ./lib/libzfs/libzfs_mount.c --replace "/bin/umount" "${utillinux}/bin/umount" 47 + substituteInPlace ./lib/libzfs/libzfs_mount.c --replace "/bin/mount" "${utillinux}/bin/mount" 48 + substituteInPlace ./udev/rules.d/* --replace "/lib/udev/vdev_id" "$out/lib/udev/vdev_id" 49 + substituteInPlace ./cmd/ztest/ztest.c --replace "/usr/sbin/ztest" "$out/sbin/ztest" 50 + substituteInPlace ./cmd/ztest/ztest.c --replace "/usr/sbin/zdb" "$out/sbin/zdb" 51 + substituteInPlace ./config/user-systemd.m4 --replace "/usr/lib/modules-load.d" "$out/etc/modules-load.d" 52 + substituteInPlace ./config/zfs-build.m4 --replace "\$sysconfdir/init.d" "$out/etc/init.d" 53 + substituteInPlace ./etc/zfs/Makefile.am --replace "\$(sysconfdir)" "$out/etc" 54 + substituteInPlace ./cmd/zed/Makefile.am --replace "\$(sysconfdir)" "$out/etc" 55 + substituteInPlace ./module/Makefile.in --replace "/bin/cp" "cp" 56 + substituteInPlace ./etc/systemd/system/zfs-share.service.in \ 57 + --replace "@bindir@/rm " "${coreutils}/bin/rm " 58 + ./autogen.sh 59 + ''; 95 60 96 - sed -i '/zfs-import-scan.service/d' $out/etc/systemd/system/* 61 + configureFlags = [ 62 + "--with-config=${configFile}" 63 + ] ++ optionals buildUser [ 64 + "--with-dracutdir=$(out)/lib/dracut" 65 + "--with-udevdir=$(out)/lib/udev" 66 + "--with-systemdunitdir=$(out)/etc/systemd/system" 67 + "--with-systemdpresetdir=$(out)/etc/systemd/system-preset" 68 + "--with-mounthelperdir=$(out)/bin" 69 + "--sysconfdir=/etc" 70 + "--localstatedir=/var" 71 + "--enable-systemd" 72 + ] ++ optionals buildKernel [ 73 + "--with-spl=${spl}/libexec/spl" 74 + "--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source" 75 + "--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" 76 + ]; 97 77 98 - for i in $out/etc/systemd/system/*; do 99 - substituteInPlace $i --replace "zfs-import-cache.service" "zfs-import.target" 100 - done 78 + enableParallelBuilding = true; 101 79 102 - # Fix pkgconfig. 103 - ln -s ../share/pkgconfig $out/lib/pkgconfig 80 + installFlags = [ 81 + "sysconfdir=\${out}/etc" 82 + "DEFAULT_INITCONF_DIR=\${out}/default" 83 + ]; 104 84 105 - # Remove tests because they add a runtime dependency on gcc 106 - rm -rf $out/share/zfs/zfs-tests 107 - ''; 85 + postInstall = '' 86 + # Prevent kernel modules from depending on the Linux -dev output. 87 + nuke-refs $(find $out -name "*.ko") 88 + '' + optionalString buildUser '' 89 + # Remove provided services as they are buggy 90 + rm $out/etc/systemd/system/zfs-import-*.service 108 91 109 - meta = { 110 - description = "ZFS Filesystem Linux Kernel module"; 111 - longDescription = '' 112 - ZFS is a filesystem that combines a logical volume manager with a 113 - Copy-On-Write filesystem with data integrity detection and repair, 114 - snapshotting, cloning, block devices, deduplication, and more. 115 - ''; 116 - homepage = http://zfsonlinux.org/; 117 - license = licenses.cddl; 118 - platforms = platforms.linux; 119 - maintainers = with maintainers; [ jcumming wizeman wkennington fpletz ]; 120 - }; 121 - }; 122 - in 123 - assert any (n: n == configFile) [ "kernel" "user" "all" ]; 124 - assert buildKernel -> kernel != null && spl != null; 125 - { 126 - # also check if kernel version constraints in 127 - # ./nixos/modules/tasks/filesystems/zfs.nix needs 128 - # to be adapted 129 - zfsStable = common { 130 - # comment/uncomment if breaking kernel versions are known 131 - incompatibleKernelVersion = "4.12"; 92 + sed -i '/zfs-import-scan.service/d' $out/etc/systemd/system/* 132 93 133 - version = "0.6.5.11"; 94 + for i in $out/etc/systemd/system/*; do 95 + substituteInPlace $i --replace "zfs-import-cache.service" "zfs-import.target" 96 + done 134 97 135 - # this package should point to the latest release. 136 - sha256 = "1wqz43cjr21m3f52ahcikl2798pbzj5sfy16zqxwiqpv7iy09kr3"; 137 - extraPatches = [ 138 - (fetchpatch { 139 - url = "https://github.com/Mic92/zfs/compare/zfs-0.6.5.8...nixos-zfs-0.6.5.8.patch"; 140 - sha256 = "14kqqphzg02m9a7qncdhff8958cfzdrvsid3vsrm9k75lqv1w08z"; 141 - }) 142 - ]; 143 - inherit spl; 144 - }; 145 - zfsUnstable = common { 146 - # comment/uncomment if breaking kernel versions are known 147 - incompatibleKernelVersion = null; 98 + # Fix pkgconfig. 99 + ln -s ../share/pkgconfig $out/lib/pkgconfig 148 100 149 - version = "0.7.0-rc5"; 101 + # Remove tests because they add a runtime dependency on gcc 102 + rm -rf $out/share/zfs/zfs-tests 103 + ''; 150 104 151 - # this package should point to a version / git revision compatible with the latest kernel release 152 - sha256 = "1k0fl6lbi5winri58v26k7gngd560hbj0247rnwcbc6j01ixsr5n"; 153 - extraPatches = [ 154 - (fetchpatch { 155 - url = "https://github.com/Mic92/zfs/compare/zfs-0.7.0-rc3...nixos-zfs-0.7.0-rc3.patch"; 156 - sha256 = "1vlw98v8xvi8qapzl1jwm69qmfslwnbg3ry1lmacndaxnyckkvhh"; 157 - }) 158 - ]; 159 - spl = splUnstable; 160 - }; 161 - } 105 + meta = { 106 + description = "ZFS Filesystem Linux Kernel module"; 107 + longDescription = '' 108 + ZFS is a filesystem that combines a logical volume manager with a 109 + Copy-On-Write filesystem with data integrity detection and repair, 110 + snapshotting, cloning, block devices, deduplication, and more. 111 + ''; 112 + homepage = http://zfsonlinux.org/; 113 + license = licenses.cddl; 114 + platforms = platforms.linux; 115 + maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ]; 116 + }; 117 + }
+2 -2
pkgs/servers/dns/knot-dns/default.nix
··· 7 7 # Note: ATM only the libraries have been tested in nixpkgs. 8 8 stdenv.mkDerivation rec { 9 9 name = "knot-dns-${version}"; 10 - version = "2.5.2"; 10 + version = "2.5.3"; 11 11 12 12 src = fetchurl { 13 13 url = "http://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; 14 - sha256 = "286671a4ee35a5207b2e45fd0812962b481b1b543bf3d5df3a8c319c26e2f5e9"; 14 + sha256 = "d78ae231a68ace264f5738c8e57481923bcad7413f3f440c06fa6cc0aded9d8e"; 15 15 }; 16 16 17 17 outputs = [ "bin" "out" "dev" ];
+3 -3
pkgs/servers/dns/knot-resolver/default.nix
··· 1 - { stdenv, fetchurl, fetchpatch, pkgconfig, utillinux, hexdump, which 1 + { stdenv, fetchurl, pkgconfig, hexdump, which 2 2 , knot-dns, luajit, libuv, lmdb 3 3 , cmocka, systemd, hiredis, libmemcached 4 4 , gnutls, nettle ··· 10 10 in 11 11 stdenv.mkDerivation rec { 12 12 name = "knot-resolver-${version}"; 13 - version = "1.3.1"; 13 + version = "1.3.2"; 14 14 15 15 src = fetchurl { 16 16 url = "http://secure.nic.cz/files/knot-resolver/${name}.tar.xz"; 17 - sha256 = "cc9631fe1a92628e81e74b324a7f70c0b29840d426de05d7d045fdf85ab01117"; 17 + sha256 = "846b7496cb6273b831fd52eca09078c0454b06a8a6b792e2125c7b6818246edb"; 18 18 }; 19 19 20 20 outputs = [ "out" "dev" ];
+3 -3
pkgs/servers/xmpp/ejabberd/default.nix
··· 23 23 ctlpath = lib.makeBinPath [ bash gnused gnugrep coreutils utillinux procps ]; 24 24 25 25 in stdenv.mkDerivation rec { 26 - version = "17.01"; 26 + version = "17.07"; 27 27 name = "ejabberd-${version}"; 28 28 29 29 src = fetchurl { 30 30 url = "http://www.process-one.net/downloads/ejabberd/${version}/${name}.tgz"; 31 - sha256 = "02y9f1zxqvqrhapfay3avkys0llpyjsag6rpz5vfig01zqjqzyky"; 31 + sha256 = "1p8ppp2czjgnq8xnhyksd82npvvx99fwr0g3rrq1wvnwh2vgb8km"; 32 32 }; 33 33 34 34 nativeBuildInputs = [ fakegit ]; ··· 74 74 75 75 outputHashMode = "recursive"; 76 76 outputHashAlgo = "sha256"; 77 - outputHash = "0flybfhq6qv1ihsjfg9p7191bffip7gpizg29wdbf1x6qgxhpz5r"; 77 + outputHash = "1q9yzccn4zf5i4hibq1r0i34q4986a93ph4792l1ph07aiisc8p7"; 78 78 }; 79 79 80 80 configureFlags =
+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.1"; 5 + version = "2.5.2"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/virtualgl/VirtualGL-${version}.tar.gz"; 9 - sha256 = "0n9ngwji9k0hqy81ridndf7z4lwq5dzmqw66r6vxfz15aw0jwd6s"; 9 + sha256 = "0f1jp7r4vajiksbiq08hkxd5bjj0jxlw7dy5750s52djg1v3hhsg"; 10 10 }; 11 11 12 12 cmakeFlags = [ "-DVGL_SYSTEMFLTK=1" "-DTJPEG_LIBRARY=${libjpeg_turbo.out}/lib/libturbojpeg.so" ];
+15
pkgs/tools/X11/xkbvalidate/default.nix
··· 1 + { lib, runCommandCC, libxkbcommon }: 2 + 3 + runCommandCC "xkbvalidate" { 4 + buildInputs = [ libxkbcommon ]; 5 + meta = { 6 + description = "NixOS tool to validate X keyboard configuration"; 7 + license = lib.licenses.mit; 8 + platforms = lib.platforms.linux; 9 + maintainers = [ lib.maintainers.aszlig ]; 10 + }; 11 + } '' 12 + mkdir -p "$out/bin" 13 + gcc -std=gnu11 -Wall -pedantic -lxkbcommon ${./xkbvalidate.c} \ 14 + -o "$out/bin/validate" 15 + ''
+135
pkgs/tools/X11/xkbvalidate/xkbvalidate.c
··· 1 + #define _GNU_SOURCE 2 + #include <stdarg.h> 3 + #include <stdbool.h> 4 + #include <stdio.h> 5 + #include <stdlib.h> 6 + #include <string.h> 7 + 8 + #include <xkbcommon/xkbcommon.h> 9 + 10 + static char **log_buffer = NULL; 11 + static int log_buffer_size = 0; 12 + static bool log_alloc_success = true; 13 + 14 + static void add_log(struct xkb_context *ctx, enum xkb_log_level level, 15 + const char *fmt, va_list args) 16 + { 17 + log_buffer_size++; 18 + 19 + if (log_buffer == NULL) 20 + log_buffer = malloc(sizeof(char *)); 21 + else 22 + log_buffer = realloc(log_buffer, sizeof(char *) * log_buffer_size); 23 + 24 + if (log_buffer == NULL) { 25 + perror("buffer alloc"); 26 + log_alloc_success = false; 27 + log_buffer_size--; 28 + return; 29 + } 30 + 31 + if (vasprintf(&log_buffer[log_buffer_size - 1], fmt, args) == -1) { 32 + perror("log line alloc"); 33 + log_alloc_success = false; 34 + return; 35 + } 36 + } 37 + 38 + static void print_logs(void) 39 + { 40 + for (int i = 0; i < log_buffer_size; ++i) 41 + fprintf(stderr, " %s", log_buffer[i]); 42 + } 43 + 44 + static void free_logs(void) 45 + { 46 + if (log_buffer == NULL) 47 + return; 48 + for (int i = 0; i < log_buffer_size; ++i) 49 + free(log_buffer[i]); 50 + free(log_buffer); 51 + log_buffer = NULL; 52 + log_buffer_size = 0; 53 + } 54 + 55 + static bool try_keymap(struct xkb_context *ctx, struct xkb_rule_names *rdef) 56 + { 57 + struct xkb_keymap *keymap; 58 + bool result = true; 59 + 60 + if ((keymap = xkb_keymap_new_from_names(ctx, rdef, 0)) == NULL) 61 + result = false; 62 + else 63 + xkb_keymap_unref(keymap); 64 + 65 + return result; 66 + } 67 + 68 + static void print_error(const char *name, const char *value, 69 + const char *nixos_option) 70 + { 71 + fprintf(stderr, "\nThe value `%s' for keyboard %s is invalid.\n\n" 72 + "Please check the definition in `services.xserver.%s'.\n", 73 + value, name, nixos_option); 74 + fputs("\nDetailed XKB compiler errors:\n\n", stderr); 75 + print_logs(); 76 + putc('\n', stderr); 77 + } 78 + 79 + #define TRY_KEYMAP(name, value, nixos_option) \ 80 + *rdef = (struct xkb_rule_names) {0}; \ 81 + free_logs(); \ 82 + rdef->name = value; \ 83 + result = try_keymap(ctx, rdef); \ 84 + if (!log_alloc_success) \ 85 + goto out; \ 86 + if (!result) { \ 87 + print_error(#name, value, nixos_option); \ 88 + exit_code = EXIT_FAILURE; \ 89 + goto out; \ 90 + } 91 + 92 + int main(int argc, char **argv) 93 + { 94 + int exit_code = EXIT_SUCCESS; 95 + bool result; 96 + struct xkb_context *ctx; 97 + struct xkb_rule_names *rdef; 98 + 99 + if (argc != 5) { 100 + fprintf(stderr, "Usage: %s model layout variant options\n", argv[0]); 101 + return EXIT_FAILURE; 102 + } 103 + 104 + ctx = xkb_context_new(XKB_CONTEXT_NO_ENVIRONMENT_NAMES); 105 + xkb_context_set_log_fn(ctx, add_log); 106 + 107 + rdef = malloc(sizeof(struct xkb_rule_names)); 108 + 109 + TRY_KEYMAP(model, argv[1], "xkbModel"); 110 + TRY_KEYMAP(layout, argv[2], "layout"); 111 + TRY_KEYMAP(variant, argv[3], "xkbVariant"); 112 + TRY_KEYMAP(options, argv[4], "xkbOptions"); 113 + 114 + free_logs(); 115 + rdef->model = argv[1]; 116 + rdef->layout = argv[2]; 117 + rdef->variant = argv[3]; 118 + rdef->options = argv[4]; 119 + 120 + result = try_keymap(ctx, rdef); 121 + if (!log_alloc_success) 122 + goto out; 123 + 124 + if (!result) { 125 + fputs("The XKB keyboard definition failed to compile:\n", stderr); 126 + print_logs(); 127 + exit_code = EXIT_FAILURE; 128 + } 129 + 130 + out: 131 + free_logs(); 132 + free(rdef); 133 + xkb_context_unref(ctx); 134 + return exit_code; 135 + }
+31
pkgs/tools/admin/aws-auth/default.nix
··· 1 + { stdenv, fetchFromGitHub, makeWrapper, jq, awscli }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "unstable-2017-07-24"; 5 + name = "aws-auth-${version}"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "alphagov"; 9 + repo = "aws-auth"; 10 + rev = "5a4c9673f9f00ebaa4bb538827e1c2f277c475e1"; 11 + sha256 = "095j9zqxra8hi2iyz0y4azs9yigy5f6alqkfmv180pm75nbc031g"; 12 + }; 13 + 14 + nativeBuildInputs = [ makeWrapper ]; 15 + 16 + dontBuild = true; 17 + 18 + # copy script and set $PATH 19 + installPhase = '' 20 + install -D $src/aws-auth.sh $out/bin/aws-auth 21 + wrapProgram $out/bin/aws-auth \ 22 + --prefix PATH : ${stdenv.lib.makeBinPath [ awscli jq ]} 23 + ''; 24 + 25 + meta = { 26 + homepage = https://github.com/alphagov/aws-auth; 27 + description = "AWS authentication wrapper to handle MFA and IAM roles"; 28 + license = stdenv.lib.licenses.mit; 29 + maintainers = with stdenv.lib.maintainers; [ ris ]; 30 + }; 31 + }
+20
pkgs/tools/admin/bubblewrap/default.nix
··· 1 + { stdenv, fetchurl, libxslt, docbook_xsl, libcap }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "bubblewrap-${version}"; 5 + version = "0.1.8"; 6 + 7 + src = fetchurl { 8 + url = "https://github.com/projectatomic/bubblewrap/releases/download/v${version}/${name}.tar.xz"; 9 + sha256 = "1gyy7paqwdrfgxamxya991588ryj9q9c3rhdh31qldqyh9qpy72c"; 10 + }; 11 + 12 + nativeBuildInputs = [ libcap libxslt docbook_xsl ]; 13 + 14 + meta = with stdenv.lib; { 15 + description = "Unprivileged sandboxing tool"; 16 + homepage = "https://github.com/projectatomic/bubblewrap"; 17 + license = licenses.lgpl2Plus; 18 + maintainers = with maintainers; [ konimex ]; 19 + }; 20 + }
+13 -9
pkgs/tools/compression/upx/default.nix
··· 1 - {stdenv, fetchurl, fetchFromGitHub, ucl, zlib, perl}: 1 + { stdenv, fetchurl, fetchFromGitHub, ucl, zlib, perl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "upx-${version}"; ··· 8 8 sha256 = "08anybdliqsbsl6x835iwzljahnm9i7v26icdjkcv33xmk6p5vw1"; 9 9 }; 10 10 11 + CXXFLAGS = "-Wno-unused-command-line-argument"; 12 + 11 13 buildInputs = [ ucl zlib perl ]; 12 14 13 - preConfigure = " 15 + preConfigure = '' 14 16 export UPX_UCLDIR=${ucl} 15 - cd src 16 - "; 17 + ''; 17 18 18 - makeFlags = [ "CHECK_WHITESPACE=true" ]; 19 + makeFlags = [ "-C" "src" "CHECK_WHITESPACE=true" ]; 19 20 20 - installPhase = "mkdir -p $out/bin ; cp upx.out $out/bin/upx"; 21 + installPhase = '' 22 + mkdir -p $out/bin 23 + cp src/upx.out $out/bin/upx 24 + ''; 21 25 22 - meta = { 26 + meta = with stdenv.lib; { 23 27 homepage = https://upx.github.io/; 24 28 description = "The Ultimate Packer for eXecutables"; 25 - license = stdenv.lib.licenses.gpl2Plus; 26 - platforms = stdenv.lib.platforms.unix; 29 + license = licenses.gpl2Plus; 30 + platforms = platforms.unix; 27 31 }; 28 32 }
-1
pkgs/tools/graphics/gmic/default.nix
··· 37 37 description = "G'MIC is an open and full-featured framework for image processing"; 38 38 homepage = http://gmic.eu/; 39 39 license = licenses.cecill20; 40 - maintainers = [ maintainers.rycee ]; 41 40 platforms = platforms.unix; 42 41 }; 43 42 }
+2 -2
pkgs/tools/misc/mimeo/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 name = "mimeo-${version}"; 5 - version = "2017.2.9"; 5 + version = "2017.6.6"; 6 6 7 7 src = fetchurl { 8 8 url = "http://xyne.archlinux.ca/projects/mimeo/src/${name}.tar.xz"; 9 - sha256 = "1xbhz08aanix4bibz5jla58cmi6rnf946pf64wb0ka3s8jx0l5a0"; 9 + sha256 = "126g3frks6zn6yc1r005qpmxg1pvvvf06ivpyvd9xribn2mwki2z"; 10 10 }; 11 11 12 12 buildInputs = [ file desktop_file_utils ];
+2 -2
pkgs/tools/misc/xfstests/default.nix
··· 1 - { stdenv, acl, attr, autoconf, automake, bash, bc, coreutils, e2fsprogs, fetchgit, fio, gawk 1 + { stdenv, acl, attr, autoconf, automake, bash, bc, coreutils, e2fsprogs, fetchgit, fio, gawk, keyutils 2 2 , lib, libaio, libcap, libtool, libuuid, libxfs, lvm2, openssl, perl, procps, psmisc, quota, su 3 3 , time, utillinux, which, writeScript, xfsprogs }: 4 4 ··· 86 86 ln -s @out@/lib/xfstests/$f $f 87 87 done 88 88 89 - export PATH=${lib.makeBinPath [acl attr bc e2fsprogs fio gawk libcap lvm2 perl procps psmisc quota utillinux which xfsprogs]}:$PATH 89 + export PATH=${lib.makeBinPath [acl attr bc e2fsprogs fio gawk keyutils libcap lvm2 perl procps psmisc quota utillinux which xfsprogs]}:$PATH 90 90 exec ./check "$@" 91 91 ''; 92 92
+2 -2
pkgs/tools/networking/dropbear/default.nix
··· 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 - name = "dropbear-2016.74"; 7 + name = "dropbear-2017.75"; 8 8 9 9 src = fetchurl { 10 10 url = "http://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2"; 11 - sha256 = "14c8f4gzixf0j9fkx68jgl85q7b05852kk0vf09gi6h0xmafl817"; 11 + sha256 = "1309cm2aw62n9m3h38prvgsqr8bj85hfasgnvwkd42cp3k5ivg3c"; 12 12 }; 13 13 14 14 dontDisableStatic = enableStatic;
+3 -3
pkgs/tools/networking/openvpn/update-resolv-conf.nix
··· 4 4 binPath = lib.makeBinPath [ coreutils openresolv systemd ]; 5 5 6 6 in stdenv.mkDerivation rec { 7 - name = "update-resolv-conf-2016-09-30"; 7 + name = "update-resolv-conf-2017-06-21"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "masterkorp"; 11 11 repo = "openvpn-update-resolv-conf"; 12 - rev = "09cb5ab5a50dfd6e77e852749d80bef52d7a6b34"; 13 - sha256 = "0s5cilph0p0wiixj7nlc7f3hqmr1mhvbfyapd0060n3y6xgps9y9"; 12 + rev = "43093c2f970bf84cd374e18ec05ac6d9cae444b8"; 13 + sha256 = "1lf66bsgv2w6nzg1iqf25zpjf4ckcr45adkpgdq9gvhkfnvlp8av"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ makeWrapper ];
+9 -1
pkgs/tools/networking/tinc/pre.nix
··· 1 - { stdenv, fetchgit, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }: 1 + { stdenv, fetchgit, fetchpatch, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "tinc-${version}"; ··· 18 18 prePatch = '' 19 19 substituteInPlace configure.ac --replace UNKNOWN ${version} 20 20 ''; 21 + 22 + patches = [ 23 + # Avoid infinite loop with "Error while reading from Linux tun/tap device (tun mode) /dev/net/tun: File descriptor in bad state" on network restart 24 + (fetchpatch { 25 + url = https://github.com/gsliepen/tinc/compare/acefa66...e4544db.patch; 26 + sha256 = "1jz7anqqzk7j96l5ifggc2knp14fmbsjdzfrbncxx0qhb6ihdcvn"; 27 + }) 28 + ]; 21 29 22 30 postInstall = '' 23 31 rm $out/bin/tinc-gui
+3 -3
pkgs/tools/package-management/disnix/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, glib, libxml2, libxslt, getopt, nixUnstable, dysnomia, libintlOrEmpty, libiconv }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "disnix-0.7.1"; 4 + name = "disnix-0.7.2"; 5 5 6 6 src = fetchurl { 7 - url = https://github.com/svanderburg/disnix/releases/download/disnix-0.7.1/disnix-0.7.1.tar.gz; 8 - sha256 = "0wxik73bk3hh4xjjj8jcgrwv1722m7cqgpiiwjsgxs346jvhrv2s"; 7 + url = https://github.com/svanderburg/disnix/releases/download/disnix-0.7.2/disnix-0.7.2.tar.gz; 8 + sha256 = "1cgf7hgqrwsqgyc77sis0hr7cwgk3vx8cd4msgq11qbwywi3b6id"; 9 9 }; 10 10 11 11 buildInputs = [ pkgconfig glib libxml2 libxslt getopt nixUnstable libintlOrEmpty libiconv dysnomia ];
+3 -3
pkgs/tools/security/qesteidutil/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 6 - version = "3.12.2.1206"; 6 + version = "3.12.5.1233"; 7 7 name = "qesteidutil-${version}"; 8 8 9 9 src = fetchurl { 10 - url = "https://installer.id.ee/media/ubuntu/pool/main/q/qesteidutil/qesteidutil_3.12.2.1206.orig.tar.xz"; 11 - sha256 = "1v1i0jlycjjdg6wi4cpm1il5v1zn8dfj82mrfvsjy6j9rfzinkda"; 10 + url = "https://installer.id.ee/media/ubuntu/pool/main/q/qesteidutil/qesteidutil_${version}.orig.tar.xz"; 11 + sha256 = "b5f0361af1891cfab6f9113d6b2fab677cc4772fc18b62df7d6e997f13b97857"; 12 12 }; 13 13 14 14 unpackPhase = ''
+41
pkgs/tools/text/nawk/default.nix
··· 1 + { stdenv, fetchurl, yacc }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "nawk-20121220"; 5 + 6 + src = fetchurl { 7 + url = "https://www.cs.princeton.edu/~bwk/btl.mirror/awk.tar.gz"; 8 + sha256 = "10wvdn7xwc5bbp5h7l0b9fxby3bds21n8a34z54i8kjsbhb95h4d"; 9 + }; 10 + 11 + nativeBuildInputs = [ yacc ]; 12 + 13 + unpackPhase = '' 14 + mkdir build 15 + cd build 16 + tar xvf ${src} 17 + ''; 18 + 19 + patchPhase = '' 20 + substituteInPlace ./makefile \ 21 + --replace "YACC = yacc -d -S" "" 22 + ''; 23 + 24 + installPhase = '' 25 + install -Dm755 a.out "$out/bin/nawk" 26 + install -Dm644 awk.1 "$out/share/man/man1/nawk.1" 27 + ''; 28 + 29 + meta = { 30 + description = "The one, true implementation of AWK"; 31 + longDescription = '' 32 + This is the version of awk described in "The AWK Programming 33 + Language", by Al Aho, Brian Kernighan, and Peter Weinberger 34 + (Addison-Wesley, 1988, ISBN 0-201-07981-X). 35 + ''; 36 + homepage = https://www.cs.princeton.edu/~bwk/btl.mirror/; 37 + license = stdenv.lib.licenses.mit; 38 + maintainers = [ stdenv.lib.maintainers.konimex ]; 39 + platforms = stdenv.lib.platforms.all; 40 + }; 41 + }
+1
pkgs/top-level/aliases.nix
··· 129 129 saneFrontends = sane-frontends; # added 2016-01-02 130 130 scim = sc-im; # added 2016-01-22 131 131 skrooge2 = skrooge; # added 2017-02-18 132 + skype = skypeforlinux; # added 2017-07-27 132 133 spaceOrbit = space-orbit; # addewd 2016-05-23 133 134 speedtest_cli = speedtest-cli; # added 2015-02-17 134 135 sqliteInteractive = sqlite-interactive; # added 2014-12-06
+26 -19
pkgs/top-level/all-packages.nix
··· 511 511 512 512 awless = callPackage ../tools/virtualization/awless { }; 513 513 514 + aws-auth = callPackage ../tools/admin/aws-auth { }; 515 + 514 516 ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { }; 515 517 516 518 ec2_ami_tools = callPackage ../tools/virtualization/ec2-ami-tools { }; ··· 719 721 bmon = callPackage ../tools/misc/bmon { }; 720 722 721 723 bochs = callPackage ../applications/virtualization/bochs { }; 724 + 725 + bubblewrap = callPackage ../tools/admin/bubblewrap { }; 722 726 723 727 borgbackup = callPackage ../tools/backup/borg { 724 728 python3Packages = python34Packages; ··· 986 990 esptool = callPackage ../tools/misc/esptool { }; 987 991 988 992 esptool-ck = callPackage ../tools/misc/esptool-ck { }; 993 + 994 + ephemeralpg = callPackage ../applications/misc/ephemeralpg {}; 989 995 990 996 f3 = callPackage ../tools/filesystems/f3 { }; 991 997 ··· 1250 1256 1251 1257 ori = callPackage ../tools/backup/ori { }; 1252 1258 1259 + anydesk = callPackage ../applications/networking/remote/anydesk { }; 1260 + 1253 1261 atool = callPackage ../tools/archivers/atool { }; 1254 1262 1255 1263 bsc = callPackage ../tools/compression/bsc { }; ··· 1328 1336 ciopfs = callPackage ../tools/filesystems/ciopfs { }; 1329 1337 1330 1338 citrix_receiver = callPackage ../applications/networking/remote/citrix-receiver { }; 1339 + 1340 + citra = libsForQt5.callPackage ../misc/emulators/citra { 1341 + boost = boost163; 1342 + }; 1331 1343 1332 1344 cmst = libsForQt5.callPackage ../tools/networking/cmst { }; 1333 1345 ··· 3286 3298 3287 3299 nasty = callPackage ../tools/security/nasty { }; 3288 3300 3301 + nawk = callPackage ../tools/text/nawk { }; 3302 + 3289 3303 nbd = callPackage ../tools/networking/nbd { }; 3290 3304 3291 3305 ndjbdns = callPackage ../tools/networking/ndjbdns { }; ··· 4794 4808 xbanish = callPackage ../tools/X11/xbanish { }; 4795 4809 4796 4810 xbrightness = callPackage ../tools/X11/xbrightness { }; 4811 + 4812 + xkbvalidate = callPackage ../tools/X11/xkbvalidate { }; 4797 4813 4798 4814 xfstests = callPackage ../tools/misc/xfstests { }; 4799 4815 ··· 7451 7467 beecrypt = callPackage ../development/libraries/beecrypt { }; 7452 7468 7453 7469 beignet = callPackage ../development/libraries/beignet { 7454 - inherit (llvmPackages) llvm clang-unwrapped; 7470 + inherit (llvmPackages_39) llvm clang-unwrapped; 7455 7471 }; 7456 7472 7457 7473 belle-sip = callPackage ../development/libraries/belle-sip { }; ··· 12239 12255 12240 12256 sch_cake = callPackage ../os-specific/linux/sch_cake { }; 12241 12257 12242 - inherit (callPackage ../os-specific/linux/spl { 12258 + spl = callPackage ../os-specific/linux/spl { 12243 12259 configFile = "kernel"; 12244 12260 inherit kernel; 12245 - }) splStable splUnstable; 12246 - 12247 - spl = splStable; 12261 + }; 12248 12262 12249 12263 sysdig = callPackage ../os-specific/linux/sysdig {}; 12250 12264 ··· 12268 12282 12269 12283 x86_energy_perf_policy = callPackage ../os-specific/linux/x86_energy_perf_policy { }; 12270 12284 12271 - inherit (callPackage ../os-specific/linux/zfs { 12285 + zfs = callPackage ../os-specific/linux/zfs { 12272 12286 configFile = "kernel"; 12273 12287 inherit kernel spl; 12274 - }) zfsStable zfsUnstable; 12275 - 12276 - zfs = zfsStable; 12288 + }; 12277 12289 }); 12278 12290 12279 12291 # The current default kernel / kernel modules. ··· 12582 12594 12583 12595 statifier = callPackage ../os-specific/linux/statifier { }; 12584 12596 12585 - inherit (callPackage ../os-specific/linux/spl { 12597 + spl = callPackage ../os-specific/linux/spl { 12586 12598 configFile = "user"; 12587 - }) splStable splUnstable; 12588 - 12589 - spl = splStable; 12599 + }; 12590 12600 12591 12601 sysdig = callPackage ../os-specific/linux/sysdig { 12592 12602 kernel = null; ··· 12791 12801 12792 12802 zd1211fw = callPackage ../os-specific/linux/firmware/zd1211 { }; 12793 12803 12794 - inherit (callPackage ../os-specific/linux/zfs { 12804 + zfs = callPackage ../os-specific/linux/zfs { 12795 12805 configFile = "user"; 12796 - }) zfsStable zfsUnstable; 12797 - 12798 - zfs = zfsStable; 12806 + }; 12799 12807 12800 12808 ### DATA 12801 12809 ··· 15979 15987 15980 15988 siproxd = callPackage ../applications/networking/siproxd { }; 15981 15989 15982 - skype = callPackage_i686 ../applications/networking/instant-messengers/skype { }; 15983 - 15984 15990 skypeforlinux = callPackage ../applications/networking/instant-messengers/skypeforlinux { }; 15985 15991 15986 15992 skype4pidgin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/skype4pidgin { }; ··· 18536 18542 dell-530cdn = callPackage ../misc/drivers/dell-530cdn {}; 18537 18543 18538 18544 dosbox = callPackage ../misc/emulators/dosbox { }; 18545 + dosbox-unstable = callPackage ../misc/emulators/dosbox/unstable.nix { }; 18539 18546 18540 18547 dpkg = callPackage ../tools/package-management/dpkg { }; 18541 18548
+67 -260
pkgs/top-level/python-packages.nix
··· 194 194 195 195 pycryptodome = callPackage ../development/python-modules/pycryptodome { }; 196 196 197 - PyChromecast = buildPythonPackage rec { 198 - name = "PyChromecast-${version}"; 199 - version = "0.8.1"; 200 - 201 - src = pkgs.fetchurl { 202 - url = "mirror://pypi/p/pychromecast/${name}.tar.gz"; 203 - sha256 = "05rlr2hjng0xg2a9k9vwmrlvd7vy9sjhxxfl96kx25xynlkq6yq6"; 204 - }; 205 - 206 - propagatedBuildInputs = with self; [ requests six zeroconf protobuf3_2 ]; 207 - 208 - meta = { 209 - description = "Library for Python 2 and 3 to communicate with the Google Chromecast"; 210 - homepage = "https://github.com/balloob/pychromecast"; 211 - license = licenses.mit; 212 - maintainers = with maintainers; [ abbradar ]; 213 - platforms = platforms.linux; 214 - }; 197 + PyChromecast = callPackage ../development/python-modules/pychromecast { 198 + protobuf = self.protobuf3_2; 215 199 }; 216 200 217 201 pyexiv2 = if (!isPy3k) then callPackage ../development/python-modules/pyexiv2 {} else throw "pyexiv2 not supported for interpreter ${python.executable}"; ··· 559 543 }; 560 544 561 545 562 - amqplib = buildPythonPackage rec { 563 - name = "amqplib-0.6.1"; 564 - 565 - src = pkgs.fetchurl { 566 - url = "http://py-amqplib.googlecode.com/files/${name}.tgz"; 567 - sha256 = "0f2618b74d95cd360a6d46a309a3fb1c37d881a237e269ac195a69a34e0e2f62"; 568 - }; 569 - 570 - # error: invalid command 'test' 571 - doCheck = false; 572 - 573 - meta = { 574 - homepage = http://code.google.com/p/py-amqplib/; 575 - description = "Python client for the Advanced Message Queuing Procotol (AMQP)"; 576 - }; 577 - }; 546 + amqplib = callPackage ../development/python-modules/amqplib {}; 578 547 579 548 ansible = self.ansible2; 580 549 ansible2 = self.ansible_2_3; ··· 583 552 ansible_2_2 = callPackage ../development/python-modules/ansible/2.2.nix {}; 584 553 ansible_2_3 = callPackage ../development/python-modules/ansible/2.3.nix {}; 585 554 586 - apipkg = buildPythonPackage rec { 587 - name = "apipkg-1.4"; 588 - 589 - src = pkgs.fetchurl { 590 - url = "mirror://pypi/a/apipkg/${name}.tar.gz"; 591 - sha256 = "2e38399dbe842891fe85392601aab8f40a8f4cc5a9053c326de35a1cc0297ac6"; 592 - }; 593 - 594 - buildInputs = with self; [ pytest ]; 595 - 596 - checkPhase = '' 597 - py.test 598 - ''; 599 - 600 - meta = { 601 - description = "Namespace control and lazy-import mechanism"; 602 - homepage = "http://bitbucket.org/hpk42/apipkg"; 603 - license = licenses.mit; 604 - }; 605 - }; 555 + apipkg = callPackage ../development/python-modules/apipkg {}; 606 556 607 557 appdirs = callPackage ../development/python-modules/appdirs { }; 608 558 ··· 638 588 }; 639 589 }; 640 590 641 - apsw = buildPythonPackage rec { 642 - name = "apsw-3.7.6.2-r1"; 643 - disabled = isPyPy; 644 - 645 - src = pkgs.fetchurl { 646 - url = "http://apsw.googlecode.com/files/${name}.zip"; 647 - sha256 = "cb121b2bce052609570a2f6def914c0aa526ede07b7096dddb78624d77f013eb"; 648 - }; 649 - 650 - buildInputs = with self; [ pkgs.sqlite ]; 651 - 652 - # python: double free or corruption (fasttop): 0x0000000002fd4660 *** 653 - doCheck = false; 654 - 655 - meta = { 656 - description = "A Python wrapper for the SQLite embedded relational database engine"; 657 - homepage = http://code.google.com/p/apsw/; 658 - }; 659 - }; 591 + apsw = callPackage ../development/python-modules/apsw {}; 660 592 661 - astor = buildPythonPackage rec { 662 - name = "astor-${version}"; 663 - version = "0.5"; 664 - 665 - src = pkgs.fetchurl { 666 - url = "mirror://pypi/a/astor/${name}.tar.gz"; 667 - sha256 = "1fdafq5hkis1fxqlmhw0sn44zp2ar46nxhbc22cvwg7hsd8z5gsa"; 668 - }; 669 - 670 - meta = with pkgs.stdenv.lib; { 671 - description = "Library for reading, writing and rewriting python AST"; 672 - homepage = https://github.com/berkerpeksag/astor; 673 - license = licenses.bsd3; 674 - maintainers = with maintainers; [ nixy ]; 675 - }; 676 - }; 593 + astor = callPackage ../development/python-modules/astor {}; 677 594 678 595 asyncio = if (pythonAtLeast "3.3") then buildPythonPackage rec { 679 596 name = "asyncio-${version}"; ··· 692 609 }; 693 610 } else null; 694 611 695 - funcsigs = buildPythonPackage rec { 696 - name = "funcsigs-1.0.2"; 697 - 698 - src = pkgs.fetchurl { 699 - url = "mirror://pypi/f/funcsigs/${name}.tar.gz"; 700 - sha256 = "0l4g5818ffyfmfs1a924811azhjj8ax9xd1cffr1mzd3ycn0zfx7"; 701 - }; 702 - 703 - buildInputs = with self; [ 704 - unittest2 705 - ]; 706 - 707 - meta = with pkgs.stdenv.lib; { 708 - description = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+"; 709 - homepage = "https://github.com/aliles/funcsigs"; 710 - maintainers = with maintainers; [ garbas ]; 711 - license = licenses.asl20; 712 - }; 713 - }; 612 + funcsigs = callPackage ../development/python-modules/funcsigs { }; 714 613 715 614 APScheduler = callPackage ../development/python-modules/APScheduler { }; 716 615 717 - args = buildPythonPackage rec { 718 - name = "args-0.1.0"; 719 - 720 - src = pkgs.fetchurl { 721 - url = "mirror://pypi/a/args/${name}.tar.gz"; 722 - sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814"; 723 - }; 724 - 725 - meta = { 726 - description = "Command Arguments for Humans"; 727 - homepage = "https://github.com/kennethreitz/args"; 728 - }; 729 - }; 616 + args = callPackage ../development/python-modules/args { }; 730 617 731 618 argcomplete = callPackage ../development/python-modules/argcomplete { }; 732 619 733 - area53 = buildPythonPackage (rec { 734 - name = "Area53-0.94"; 735 - 736 - src = pkgs.fetchurl { 737 - url = "mirror://pypi/A/Area53/${name}.tar.gz"; 738 - sha256 = "0v9b7f8b6v21y410anx5sr52k2ac8jrzdf19q6m6p0zsdsf9vr42"; 739 - }; 740 - 741 - # error: invalid command 'test' 742 - doCheck = false; 743 - 744 - propagatedBuildInputs = with self; [ self.boto ]; 745 - 746 - }); 747 - 748 - chai = buildPythonPackage rec { 749 - name = "chai-${version}"; 750 - version = "1.1.1"; 620 + area53 = callPackage ../development/python-modules/area53 { }; 751 621 752 - src = pkgs.fetchurl { 753 - url = "mirror://pypi/c/chai/${name}.tar.gz"; 754 - sha256 = "016kf3irrclpkpvcm7q0gmkfibq7jgy30a9v73pp42bq9h9a32bl"; 755 - }; 756 - 757 - meta = { 758 - description = "Mocking, stubbing and spying framework for python"; 759 - }; 760 - }; 622 + chai = callPackage ../development/python-modules/chai { }; 761 623 762 - chainmap = buildPythonPackage rec { 763 - name = "chainmap-1.0.2"; 764 - 765 - src = pkgs.fetchurl { 766 - url = "mirror://pypi/c/chainmap/${name}.tar.gz"; 767 - sha256 = "09h5gq43w516fqswlca0nhmd2q3v8hxq15z4wqrznfwix6ya6pa0"; 768 - }; 769 - 770 - # Requires tox 771 - doCheck = false; 772 - 773 - meta = { 774 - description = "Backport/clone of ChainMap"; 775 - homepage = "https://bitbucket.org/jeunice/chainmap"; 776 - license = licenses.psfl; 777 - maintainers = with maintainers; [ abbradar ]; 778 - }; 779 - }; 624 + chainmap = callPackage ../development/python-modules/chainmap { }; 780 625 781 626 arelle = callPackage ../development/python-modules/arelle { 782 627 gui = true; ··· 805 650 806 651 async-timeout = callPackage ../development/python-modules/async_timeout { }; 807 652 808 - asn1ate = buildPythonPackage rec { 809 - pname = "asn1ate"; 810 - date = "20160810"; 811 - name = "${pname}-unstable-${date}"; 812 - 813 - src = pkgs.fetchFromGitHub { 814 - sha256 = "04pddr1mh2v9qq8fg60czwvjny5qwh4nyxszr3qc4bipiiv2xk9w"; 815 - rev = "c56104e8912400135509b584d84423ee05a5af6b"; 816 - owner = "kimgr"; 817 - repo = pname; 818 - }; 819 - 820 - propagatedBuildInputs = with self; [ pyparsing ]; 821 - 822 - meta = with stdenv.lib; { 823 - description = "Python library for translating ASN.1 into other forms"; 824 - license = licenses.bsd3; 825 - platforms = platforms.linux; 826 - maintainers = with maintainers; [ leenaars ]; 827 - }; 828 - }; 653 + asn1ate = callPackage ../development/python-modules/asn1ate { }; 829 654 830 655 atomiclong = buildPythonPackage rec { 831 656 version = "0.1.1"; ··· 8223 8048 8224 8049 python-axolotl = buildPythonPackage rec { 8225 8050 name = "python-axolotl-${version}"; 8226 - version = "0.1.35"; 8051 + version = "0.1.39"; 8227 8052 8228 8053 src = pkgs.fetchurl { 8229 8054 url = "mirror://pypi/p/python-axolotl/${name}.tar.gz"; 8230 - sha256 = "0ch2d5wqfgxy22dkbxwzilq91wkqy9ficrjy39qhal8g8rdc4jr0"; 8055 + sha256 = "09bf5gfip9x2wr0ij43p39ac6z2iqzn7kgpi2jjbwpnhs0vwkycs"; 8231 8056 }; 8232 8057 8233 8058 propagatedBuildInputs = with self; [ python-axolotl-curve25519 protobuf3_0 pycrypto ]; ··· 8253 8078 }; 8254 8079 8255 8080 meta = { 8256 - homepage = "https://github.com/tgalal/python-axolotl"; 8081 + homepage = "https://github.com/tgalal/python-axolotl-curve25519"; 8257 8082 description = "Curve25519 with ed25519 signatures"; 8258 8083 maintainers = with maintainers; [ abbradar ]; 8259 8084 license = licenses.gpl3; ··· 8263 8088 8264 8089 pypolicyd-spf = buildPythonPackage rec { 8265 8090 name = "pypolicyd-spf-${version}"; 8266 - majorVersion = "1.3"; 8267 - version = "${majorVersion}.2"; 8091 + majorVersion = "2.0"; 8092 + version = "${majorVersion}.1"; 8093 + disabled = !isPy3k; 8268 8094 8269 8095 src = pkgs.fetchurl { 8270 8096 url = "https://launchpad.net/pypolicyd-spf/${majorVersion}/${version}/+download/${name}.tar.gz"; 8271 - sha256 = "0ri9bdwn1k8xlyfhrgzns7wjvp5h08dq5fnxcq6mphy94rmc8x3i"; 8097 + sha256 = "09yi8y7pij5vzzrkc9sdw01x8w5n758d0qg7wv5hxd1l6if8c94i"; 8272 8098 }; 8273 8099 8274 - propagatedBuildInputs = with self; [ pyspf pydns ipaddr ]; 8100 + propagatedBuildInputs = with self; [ pyspf ]; 8275 8101 8276 8102 preBuild = '' 8277 8103 substituteInPlace setup.py --replace "'/etc'" "'$out/etc'" ··· 8480 8306 url = "mirror://sourceforge/pymilter/pyspf/${name}/${name}.tar.gz"; 8481 8307 sha256 = "18j1rmbmhih7q6y12grcj169q7sx1986qn4gmpla9y5gwfh1p8la"; 8482 8308 }; 8309 + 8310 + propagatedBuildInputs = with self; [ pydns ]; 8483 8311 8484 8312 meta = { 8485 8313 homepage = "http://bmsi.com/python/milter.html"; ··· 9362 9190 django = self.django_1_11; 9363 9191 9364 9192 django_1_11 = callPackage ../development/python-modules/django/1_11.nix { 9365 - gdal = self.gdal; 9366 - }; 9367 - 9368 - # TODO: Django 1.10 will be maintained until the end of the year. Therefore, 9369 - # it will be dropped before 17.09. 9370 - # https://github.com/NixOS/nixpkgs/issues/25375#issuecomment-298522597 9371 - django_1_10 = callPackage ../development/python-modules/django/1_10.nix { 9372 9193 gdal = self.gdal; 9373 9194 }; 9374 9195 ··· 11369 11190 propagatedBuildInputs = with self; [ requests webob ]; 11370 11191 }; 11371 11192 11372 - hmmlearn = buildPythonPackage rec { 11373 - name = "hmmlearn-${version}"; 11374 - version = "0.2.0"; 11375 - 11376 - src = pkgs.fetchurl { 11377 - url = "mirror://pypi/h/hmmlearn/${name}.tar.gz"; 11378 - sha256 = "0qc3fkdyrgfg31y1a8jzs83dxkjw78pqkdm44lll1iib63w4cik9"; 11379 - }; 11380 - 11381 - propagatedBuildInputs = with self; [ numpy ]; 11382 - 11383 - doCheck = false; 11384 - 11385 - meta = { 11386 - description = "Hidden Markov Models in Python with scikit-learn like API"; 11387 - homepage = "https://github.com/hmmlearn/hmmlearn"; 11388 - license = licenses.bsd3; 11389 - maintainers = with maintainers; [ abbradar ]; 11390 - platforms = platforms.unix; 11391 - }; 11392 - }; 11393 - 11394 - sphfile = buildPythonPackage rec { 11395 - name = "sphfile-${version}"; 11396 - version = "1.0.0"; 11397 - 11398 - src = pkgs.fetchurl { 11399 - url = "mirror://pypi/s/sphfile/${name}.tar.gz"; 11400 - sha256 = "1ly9746xrzbiax9cxr5sxlg0wvf6fdxcrgwsqqxckk3wnqfypfrd"; 11401 - }; 11402 - 11403 - propagatedBuildInputs = with self; [ numpy ]; 11404 - 11405 - doCheck = false; 11406 - 11407 - meta = { 11408 - description = "Numpy-based NIST SPH audio-file reader"; 11409 - homepage = "https://github.com/mcfletch/sphfile"; 11410 - license = licenses.mit; 11411 - maintainers = with maintainers; [ abbradar ]; 11412 - platforms = platforms.unix; 11413 - }; 11414 - }; 11193 + hmmlearn = callPackage ../development/python-modules/hmmlearn { }; 11415 11194 11416 11195 hcs_utils = buildPythonPackage rec { 11417 11196 name = "hcs_utils-1.5"; ··· 11917 11696 ipywidgets = callPackage ../development/python-modules/ipywidgets { }; 11918 11697 11919 11698 ipaddr = buildPythonPackage rec { 11920 - name = "ipaddr-2.1.10"; 11699 + name = "ipaddr-${version}"; 11700 + version = "2.1.11"; 11921 11701 disabled = isPy3k; 11922 11702 11923 11703 src = pkgs.fetchurl { 11924 11704 url = "mirror://pypi/i/ipaddr/${name}.tar.gz"; 11925 - sha256 = "18ycwkfk3ypb1yd09wg20r7j7zq2a73d7j6j10qpgra7a7abzhyj"; 11705 + sha256 = "1dwq3ngsapjc93fw61rp17fvzggmab5x1drjzvd4y4q0i255nm8v"; 11926 11706 }; 11927 11707 11928 11708 meta = { ··· 14298 14078 }; 14299 14079 14300 14080 netifaces = buildPythonPackage rec { 14301 - version = "0.10.5"; 14081 + version = "0.10.6"; 14302 14082 name = "netifaces-${version}"; 14303 14083 14304 14084 src = pkgs.fetchurl { 14305 14085 url = "mirror://pypi/n/netifaces/${name}.tar.gz"; 14306 - sha256 = "12v2bm77dgaqjm9vmb8in0zpip2hn98mf5sycfvgq5iivm9avn2r"; 14086 + sha256 = "1q7bi5k2r955rlcpspx4salvkkpk28jky67fjbpz2dkdycisak8c"; 14307 14087 }; 14308 14088 14309 14089 meta = { ··· 18835 18615 }; 18836 18616 18837 18617 PyICU = buildPythonPackage rec { 18838 - name = "PyICU-1.9.6"; 18618 + name = "PyICU-1.9.7"; 18839 18619 18840 18620 src = pkgs.fetchurl { 18841 18621 url = "mirror://pypi/P/PyICU/${name}.tar.gz"; 18842 - sha256 = "0l151zhhyiazzdz8skpxgrw1x4nqa9pq2cwni6d97anmg97i7hn5"; 18622 + sha256 = "0qavhngmn7c90fz25a8a2k50wd5gzp3vwwjq8v2pkf2hq4fcs9yv"; 18843 18623 }; 18844 18624 18845 - buildInputs = [ pkgs.icu ]; 18625 + buildInputs = [ pkgs.icu self.pytest ]; 18626 + 18627 + propagatedBuildInputs = [ self.six ]; 18846 18628 18847 18629 meta = { 18848 18630 homepage = https://pypi.python.org/pypi/PyICU/; ··· 21915 21697 }; 21916 21698 }; 21917 21699 21700 + sphfile = callPackage ../development/python-modules/sphfile { }; 21701 + 21918 21702 sqlite3dbm = buildPythonPackage rec { 21919 21703 name = "sqlite3dbm-0.1.4"; 21920 21704 disabled = isPy3k; ··· 22231 22015 doCheck = false; 22232 22016 }; 22233 22017 22234 - pydns = buildPythonPackage rec { 22235 - name = "pydns-2.3.6"; 22236 - disabled = isPy3k; 22018 + pydns = 22019 + let 22020 + py3 = buildPythonPackage rec { 22021 + name = "${pname}-${version}"; 22022 + pname = "py3dns"; 22023 + version = "3.1.1a"; 22237 22024 22238 - src = pkgs.fetchurl { 22239 - url = "mirror://pypi/p/pydns/${name}.tar.gz"; 22240 - sha256 = "0qnv7i9824nb5h9psj0rwzjyprwgfiwh5s5raa9avbqazy5hv5pi"; 22241 - }; 22025 + src = fetchPypi { 22026 + inherit pname version; 22027 + sha256 = "0z0qmx9j1ivpgg54gqqmh42ljnzxaychc5inz2gbgv0vls765smz"; 22028 + }; 22242 22029 22243 - doCheck = false; 22030 + preConfigure = '' 22031 + sed -i \ 22032 + -e '/import DNS/d' \ 22033 + -e 's/DNS.__version__/"${version}"/g' \ 22034 + setup.py 22035 + ''; 22244 22036 22245 - }; 22037 + doCheck = false; 22038 + }; 22039 + 22040 + py2 = buildPythonPackage rec { 22041 + name = "${pname}-${version}"; 22042 + pname = "pydns"; 22043 + version = "2.3.6"; 22044 + 22045 + src = fetchPypi { 22046 + inherit pname version; 22047 + sha256 = "0qnv7i9824nb5h9psj0rwzjyprwgfiwh5s5raa9avbqazy5hv5pi"; 22048 + }; 22049 + 22050 + doCheck = false; 22051 + }; 22052 + in if isPy3k then py3 else py2; 22246 22053 22247 22054 pythondaemon = buildPythonPackage rec { 22248 22055 name = "python-daemon-${version}";