Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge branch 'master.upstream' into staging.upstream

+1941 -1077
+4 -4
doc/haskell-users-guide.xml
··· 92 92 </para> 93 93 <programlisting> 94 94 $ nix-env -qaP coreutils 95 - nixos.pkgs.coreutils coreutils-8.23 95 + nixos.coreutils coreutils-8.23 96 96 </programlisting> 97 97 <para> 98 98 If your system responds like that (most NixOS installatios will), 99 99 then the attribute path to <literal>haskellPackages</literal> is 100 - <literal>nixos.pkgs.haskellPackages</literal>. Thus, if you want to 100 + <literal>nixos.haskellPackages</literal>. Thus, if you want to 101 101 use <literal>nix-env</literal> without giving an explicit 102 102 <literal>-f</literal> flag, then that's the way to do it: 103 103 </para> 104 104 <programlisting> 105 - $ nix-env -qaP -A nixos.pkgs.haskellPackages 106 - $ nix-env -iA nixos.pkgs.haskellPackages.cabal-install 105 + $ nix-env -qaP -A nixos.haskellPackages 106 + $ nix-env -iA nixos.haskellPackages.cabal-install 107 107 </programlisting> 108 108 <para> 109 109 Our current default compiler is GHC 7.10.x and the
+1 -1
lib/modules.nix
··· 285 285 286 286 in opt // 287 287 { value = addErrorContext "while evaluating the option `${showOption loc}':" value; 288 - definitions = map (def: def.value) defsFinal; 288 + definitions = map (def: def.value) res.defsFinal; 289 289 files = map (def: def.file) res.defsFinal; 290 290 inherit (res) isDefined; 291 291 };
+1 -1
nixos/doc/manual/configuration/ad-hoc-packages.xml
··· 11 11 Mozilla Thunderbird: 12 12 13 13 <screen> 14 - $ nix-env -iA nixos.pkgs.thunderbird</screen> 14 + $ nix-env -iA nixos.thunderbird</screen> 15 15 16 16 If you invoke this as root, the package is installed in the Nix 17 17 profile <filename>/nix/var/nix/profiles/default</filename> and visible
+2 -2
nixos/doc/manual/configuration/declarative-packages.xml
··· 23 23 <para>You can get a list of the available packages as follows: 24 24 <screen> 25 25 $ nix-env -qaP '*' --description 26 - nixos.pkgs.firefox firefox-23.0 Mozilla Firefox - the browser, reloaded 26 + nixos.firefox firefox-23.0 Mozilla Firefox - the browser, reloaded 27 27 <replaceable>...</replaceable> 28 28 </screen> 29 29 30 30 The first column in the output is the <emphasis>attribute 31 31 name</emphasis>, such as 32 - <literal>nixos.pkgs.thunderbird</literal>. (The 32 + <literal>nixos.thunderbird</literal>. (The 33 33 <literal>nixos</literal> prefix allows distinguishing between 34 34 different channels that you might have.)</para> 35 35
+9
nixos/doc/manual/release-notes/rl-unstable.xml
··· 188 188 </para> 189 189 </listitem> 190 190 191 + <listitem> 192 + <para> 193 + The Nix expression search path (<envar>NIX_PATH</envar>) no longer 194 + contains <filename>/etc/nixos/nixpkgs</filename> by default. You 195 + can override <envar>NIX_PATH</envar> by setting 196 + <option>nix.nixPath</option>. 197 + </para> 198 + </listitem> 199 + 191 200 </itemizedlist> 192 201 </para> 193 202
+1 -1
nixos/lib/build-vms.nix
··· 1 1 { system, minimal ? false }: 2 2 3 - let pkgs = import ./nixpkgs.nix { config = {}; inherit system; }; in 3 + let pkgs = import ../.. { config = {}; inherit system; }; in 4 4 5 5 with pkgs.lib; 6 6 with import ../lib/qemu-flags.nix;
-6
nixos/lib/channel-expr.nix
··· 1 - { system ? builtins.currentSystem }: 2 - 3 - { pkgs = 4 - (import nixpkgs/default.nix { inherit system; }) 5 - // { recurseForDerivations = true; }; 6 - }
+2 -6
nixos/lib/make-channel.nix
··· 10 10 11 11 buildInputs = [ pkgs.nix ]; 12 12 13 - expr = builtins.readFile ./channel-expr.nix; 14 - 15 13 distPhase = '' 16 14 rm -rf .git 17 15 echo -n $VERSION_SUFFIX > .version-suffix 18 16 echo -n ${nixpkgs.rev or nixpkgs.shortRev} > .git-revision 19 17 releaseName=nixos-$VERSION$VERSION_SUFFIX 20 18 mkdir -p $out/tarballs 21 - mkdir ../$releaseName 22 - cp -prd . ../$releaseName/nixpkgs 19 + cp -prd . ../$releaseName 23 20 chmod -R u+w ../$releaseName 24 - ln -s nixpkgs/nixos ../$releaseName/nixos 25 - echo "$expr" > ../$releaseName/default.nix 21 + ln -s . ../$releaseName/nixpkgs # hack to make ‘<nixpkgs>’ work 26 22 NIX_STATE_DIR=$TMPDIR nix-env -f ../$releaseName/default.nix -qaP --meta --xml \* > /dev/null 27 23 cd .. 28 24 chmod -R u+w $releaseName
-8
nixos/lib/nixpkgs.nix
··· 1 - /* Terrible backward compatibility hack to get the path to Nixpkgs 2 - from here. Usually, that's the relative path ‘../..’. However, 3 - when using the NixOS channel, <nixos> resolves to a symlink to 4 - nixpkgs/nixos, so ‘../..’ doesn't resolve to the top-level Nixpkgs 5 - directory but one above it. So check for that situation. */ 6 - if builtins.pathExists ../../.version then import ../.. 7 - else if builtins.pathExists ../../nixpkgs then import ../../nixpkgs 8 - else abort "Can't find Nixpkgs, please set ‘NIX_PATH=nixpkgs=/path/to/nixpkgs’."
+8 -9
nixos/modules/installer/cd-dvd/channel.nix
··· 9 9 10 10 # We need a copy of the Nix expressions for Nixpkgs and NixOS on the 11 11 # CD. These are installed into the "nixos" channel of the root 12 - # user, as expected by nixos-rebuild/nixos-install. 12 + # user, as expected by nixos-rebuild/nixos-install. FIXME: merge 13 + # with make-channel.nix. 13 14 channelSources = pkgs.runCommand "nixos-${config.system.nixosVersion}" 14 - { expr = readFile ../../../lib/channel-expr.nix; } 15 + { } 15 16 '' 16 - mkdir -p $out/nixos 17 - cp -prd ${pkgs.path} $out/nixos/nixpkgs 18 - ln -s nixpkgs/nixos $out/nixos/nixos 17 + mkdir -p $out 18 + cp -prd ${pkgs.path} $out/nixos 19 19 chmod -R u+w $out/nixos 20 - rm -rf $out/nixos/nixpkgs/.git 21 - echo -n ${config.system.nixosVersion} > $out/nixos/nixpkgs/.version 22 - echo -n "" > $out/nixos/nixpkgs/.version-suffix 23 - echo "$expr" > $out/nixos/default.nix 20 + ln -s . $out/nixos/nixpkgs 21 + rm -rf $out/nixos/.git 22 + echo -n ${config.system.nixosVersionSuffix} > $out/nixos/.version-suffix 24 23 ''; 25 24 26 25 in
+1 -1
nixos/modules/installer/tools/nixos-build-vms/nixos-build-vms.sh
··· 53 53 54 54 # Build a network of VMs 55 55 56 - nix-build '<nixos/modules/installer/tools/nixos-build-vms/build-vms.nix>' \ 56 + nix-build '<nixpkgs/nixos/modules/installer/tools/nixos-build-vms/build-vms.nix>' \ 57 57 --argstr networkExpr $networkExpr $noOutLinkArg $showTraceArg
+1 -1
nixos/modules/installer/tools/nixos-checkout.nix
··· 27 27 28 28 if [ -z "$(type -P git)" ]; then 29 29 echo "installing Git..." 30 - nix-env -iA nixos.pkgs.git || nix-env -i git 30 + nix-env -iA nixos.git 31 31 fi 32 32 33 33 # Move any old nixpkgs directories out of the way.
+1 -7
nixos/modules/installer/tools/nixos-install.sh
··· 256 256 chroot $mountPoint /nix/var/nix/profiles/system/activate 257 257 258 258 259 - # Some systems may not be prepared to use NixOS' paths. 260 - export PATH=/run/current-system/sw/bin:/run/current-system/sw/sbin:$PATH 261 - export NIX_PATH=/nix/var/nix/profiles/per-user/root/channels/nixos:nixpkgs=/etc/nixos/nixpkgs 262 - export NIX_PATH=$NIX_PATH:nixos-config=/etc/nixos/configuration.nix:/nix/var/nix/profiles/per-user/root/channels 263 - 264 - 265 259 # Ask the user to set a root password. 266 - if [ "$(chroot $mountPoint nix-instantiate --eval '<nixpkgs/nixos>' -A config.users.mutableUsers)" = true ] && [ -t 0 ] ; then 260 + if [ "$(chroot $mountPoint /run/current-system/sw/bin/sh -l -c "nix-instantiate --eval '<nixpkgs/nixos>' -A config.users.mutableUsers")" = true ] && [ -t 0 ] ; then 267 261 echo "setting root password..." 268 262 chroot $mountPoint /var/setuid-wrappers/passwd 269 263 fi
+2 -2
nixos/modules/installer/tools/nixos-rebuild.sh
··· 157 157 if ! nix-build '<nixpkgs>' -A nix -o $tmpDir/nix "${extraBuildFlags[@]}" > /dev/null; then 158 158 machine="$(uname -m)" 159 159 if [ "$machine" = x86_64 ]; then 160 - nixStorePath=/nix/store/ffig6yaggbh12dh9y5pnf1grf5lqyipz-nix-1.8 160 + nixStorePath=/nix/store/664kxr14kfgx4dl095crvmr7pbh9xlh5-nix-1.9 161 161 elif [[ "$machine" =~ i.86 ]]; then 162 - nixStorePath=/nix/store/lglhfp4mimfa5wzjjf1kqz6f5wlsj2mn-nix-1.8 162 + nixStorePath=/nix/store/p7xdvz72xx3rhm121jclsbdmmcds7xh6-nix-1.9 163 163 else 164 164 echo "$0: unsupported platform" 165 165 exit 1
+1 -1
nixos/modules/misc/assertions.nix
··· 30 30 }; 31 31 32 32 }; 33 - # impl of assertions is in <nixos/modules/system/activation/top-level.nix> 33 + # impl of assertions is in <nixpkgs/nixos/modules/system/activation/top-level.nix> 34 34 }
+1 -1
nixos/modules/misc/extra-arguments.nix
··· 2 2 3 3 { 4 4 _module.args = { 5 - pkgs_i686 = import ../../lib/nixpkgs.nix { 5 + pkgs_i686 = import ../../.. { 6 6 system = "i686-linux"; 7 7 config.allowUnfree = true; 8 8 };
+1 -1
nixos/modules/misc/nixpkgs.nix
··· 72 72 }; 73 73 74 74 config = { 75 - _module.args.pkgs = import ../../lib/nixpkgs.nix { 75 + _module.args.pkgs = import ../../.. { 76 76 system = config.nixpkgs.system; 77 77 78 78 inherit (config.nixpkgs) config;
+1 -1
nixos/modules/profiles/clone-config.nix
··· 30 30 relocatedModuleFiles = 31 31 let 32 32 relocateNixOS = path: 33 - "<nixos" + removePrefix nixosPath (toString path) + ">"; 33 + "<nixpkgs/nixos" + removePrefix nixosPath (toString path) + ">"; 34 34 relocateOthers = null; 35 35 in 36 36 { nixos = map relocateNixOS partitionedModuleFiles.nixos;
-9
nixos/modules/programs/environment.nix
··· 23 23 EDITOR = mkDefault "nano"; 24 24 }; 25 25 26 - environment.sessionVariables = 27 - { NIX_PATH = 28 - [ "/nix/var/nix/profiles/per-user/root/channels/nixos" 29 - "nixpkgs=/etc/nixos/nixpkgs" 30 - "nixos-config=/etc/nixos/configuration.nix" 31 - "/nix/var/nix/profiles/per-user/root/channels" 32 - ]; 33 - }; 34 - 35 26 environment.profiles = 36 27 [ "$HOME/.nix-profile" 37 28 "/nix/var/nix/profiles/default"
+17 -1
nixos/modules/services/misc/nix-daemon.nix
··· 309 309 ''; 310 310 }; 311 311 312 + nixPath = mkOption { 313 + type = types.listOf types.str; 314 + default = 315 + [ "/nix/var/nix/profiles/per-user/root/channels/nixos" 316 + "nixos-config=/etc/nixos/configuration.nix" 317 + "/nix/var/nix/profiles/per-user/root/channels" 318 + ]; 319 + description = '' 320 + The default Nix expression search path, used by the Nix 321 + evaluator to look up paths enclosed in angle brackets 322 + (e.g. <literal>&lt;nixpkgs&gt;</literal>). 323 + ''; 324 + }; 325 + 312 326 }; 313 327 314 328 }; ··· 378 392 }; 379 393 380 394 # Set up the environment variables for running Nix. 381 - environment.sessionVariables = cfg.envVars; 395 + environment.sessionVariables = cfg.envVars // 396 + { NIX_PATH = concatStringsSep ":" cfg.nixPath; 397 + }; 382 398 383 399 environment.extraInit = 384 400 ''
+1
nixos/modules/services/networking/dnsmasq.nix
··· 98 98 ExecStart = "${dnsmasq}/bin/dnsmasq -k --enable-dbus --user=dnsmasq -C ${dnsmasqConf}"; 99 99 ExecReload = "${dnsmasq}/bin/kill -HUP $MAINPID"; 100 100 }; 101 + restartTriggers = [ config.environment.etc.hosts.source ]; 101 102 }; 102 103 103 104 };
-85
nixos/tests/check-filesystems.nix
··· 1 - { nixos ? ./.. 2 - , nixpkgs ? /etc/nixos/nixpkgs 3 - , system ? builtins.currentSystem 4 - }: 5 - 6 - with import ../lib/build-vms.nix { inherit nixos nixpkgs system; }; 7 - 8 - rec { 9 - name = "check-filesystems"; 10 - meta = with pkgs.stdenv.lib.maintainers; { 11 - maintainers = [ eelco chaoflow ]; 12 - }; 13 - 14 - nodes = { 15 - share = {pkgs, config, ...}: { 16 - services.nfs.server.enable = true; 17 - services.nfs.server.exports = '' 18 - /repos1 192.168.1.0/255.255.255.0(rw,no_root_squash) 19 - /repos2 192.168.1.0/255.255.255.0(rw,no_root_squash) 20 - ''; 21 - services.nfs.server.createMountPoints = true; 22 - 23 - jobs.checkable = { 24 - startOn = [ 25 - config.jobs.nfs_kernel_exports.name 26 - config.jobs.nfs_kernel_nfsd.name 27 - ]; 28 - respawn = true; 29 - }; 30 - }; 31 - 32 - fsCheck = {pkgs, config, ...}: { 33 - fileSystems = 34 - let 35 - repos1 = { 36 - mountPoint = "/repos1"; 37 - autocreate = true; 38 - device = "share:/repos1"; 39 - fsType = "nfs"; 40 - }; 41 - 42 - repos2 = { 43 - mountPoint = "/repos2"; 44 - autocreate = true; 45 - device = "share:/repos2"; 46 - fsType = "nfs"; 47 - }; 48 - in pkgs.lib.mkVMOverride [ 49 - repos1 50 - repos1 # check remount 51 - repos2 # check after remount 52 - ]; 53 - 54 - jobs.checkable = { 55 - startOn = "stopped ${config.jobs.filesystems.name}"; 56 - respawn = true; 57 - }; 58 - }; 59 - }; 60 - 61 - vms = buildVirtualNetwork { inherit nodes; }; 62 - 63 - test = runTests vms 64 - '' 65 - startAll; 66 - 67 - $share->waitForUnit("checkable"); 68 - $fsCheck->waitForUnit("checkable"); 69 - 70 - # check repos1 71 - $fsCheck->succeed("test -d /repos1"); 72 - $share->succeed("touch /repos1/test1"); 73 - $fsCheck->succeed("test -e /repos1/test1"); 74 - 75 - # check repos2 (check after remount) 76 - $fsCheck->succeed("test -d /repos2"); 77 - $share->succeed("touch /repos2/test2"); 78 - $fsCheck->succeed("test -e /repos2/test2"); 79 - 80 - # check without network 81 - $share->block(); 82 - $fsCheck->fail("test -e /repos1/test1"); 83 - $fsCheck->fail("test -e /repos2/test2"); 84 - ''; 85 - }
+1 -1
nixos/tests/containers.nix
··· 46 46 $machine->fail("curl --fail --connect-timeout 2 http://$ip/ > /dev/null"); 47 47 48 48 # Make sure we have a NixOS tree (required by ‘nixos-container create’). 49 - $machine->succeed("PAGER=cat nix-env -qa -A nixos.pkgs.hello >&2"); 49 + $machine->succeed("PAGER=cat nix-env -qa -A nixos.hello >&2"); 50 50 51 51 # Create some containers imperatively. 52 52 my $id1 = $machine->succeed("nixos-container create foo --ensure-unique-name");
+2 -2
pkgs/applications/audio/drumkv1/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "drumkv1-${version}"; 5 - version = "0.6.3"; 5 + version = "0.7.0"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/drumkv1/${name}.tar.gz"; 9 - sha256 = "1f0vpwq7vydldrq9fdfipbkzqqndyxlx0n81ch1i9kw81xj3sxjq"; 9 + sha256 = "1fbi835559qsg9fxgdbdyf5z1zlzf9n8zrq0p67damb55mmigaj8"; 10 10 }; 11 11 12 12 buildInputs = [ libjack2 libsndfile lv2 qt4 ];
+2 -2
pkgs/applications/audio/guitarix/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 name = "guitarix-${version}"; 14 - version = "0.32.3"; 14 + version = "0.33.0"; 15 15 16 16 src = fetchurl { 17 17 url = "mirror://sourceforge/guitarix/guitarix2-${version}.tar.bz2"; 18 - sha256 = "1ybc5jk7fj6n8qh9ajzl1f6fzdmzab4nwjrh4fsylm94dn1jv0if"; 18 + sha256 = "1w6dg2n0alfjsx1iy6s53783invygwxk11p1i65cc3nq3zlidcgx"; 19 19 }; 20 20 21 21 nativeBuildInputs = [ gettext intltool pkgconfig python ];
+2 -2
pkgs/applications/audio/samplv1/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "samplv1-${version}"; 5 - version = "0.6.3"; 5 + version = "0.7.0"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/samplv1/${name}.tar.gz"; 9 - sha256 = "1c62fpfl9xv93m04hfh72vzbljr0c5p409vzf3xxmvj9x610yx1w"; 9 + sha256 = "0w1cl1vjhzzdyxfn8fcfgx5j5d4gi182w5b89f7qzg1akhmsqmfr"; 10 10 }; 11 11 12 12 buildInputs = [ libjack2 libsndfile lv2 qt4 ];
+2 -2
pkgs/applications/editors/emacs-modes/org/default.nix
··· 2 2 , texLiveAggregationFun }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "org-8.2.10"; 5 + name = "org-8.3"; 6 6 7 7 src = fetchurl { 8 8 url = "http://orgmode.org/${name}.tar.gz"; 9 - sha256 = "1xm8n8zwr3676rl4pd32k61rd7rimlihhrw5a7r4z7r154c4a2fz"; 9 + sha256 = "0yqbl232hfppljz545jbjawwaw7qjdjsq97c0wf0cbkghgpln3wy"; 10 10 }; 11 11 12 12 buildInputs = [ emacs ];
+3 -3
pkgs/applications/editors/vim/macvim.nix
··· 5 5 stdenv.mkDerivation rec { 6 6 name = "macvim-${version}"; 7 7 8 - version = "7.4.479"; 8 + version = "7.4.648"; 9 9 10 10 src = fetchurl { 11 - url = "https://github.com/genoma/macvim/archive/g-snapshot-21.tar.gz"; 12 - sha256 = "1s86dpb8bcxh309gikiz8gm9ygv3d2jy6i4qlnxarbvcdk65fzv4"; 11 + url = "https://github.com/genoma/macvim/archive/g-snapshot-32.tar.gz"; 12 + sha256 = "1wqg5sy7krgqg3sj00gb34avg90ga2kbvv09bsxv2267j7agi0iq"; 13 13 }; 14 14 15 15 enableParallelBuilding = true;
+4 -4
pkgs/applications/version-management/fossil/default.nix
··· 1 1 {stdenv, fetchurl, zlib, openssl, tcl, readline, sqlite, withJson ? true}: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "fossil-1.32"; 4 + name = "fossil-1.33"; 5 5 6 6 src = fetchurl { 7 7 urls = 8 8 [ 9 - "https://www.fossil-scm.org/fossil/tarball/Fossil-6c40678e.tar.gz?uuid=6c40678e9114c41a50f73cc43f6f942ace0408ec" 10 - ]; 9 + https://www.fossil-scm.org/download/fossil-src-1.33.tar.gz 10 + ]; 11 11 name = "${name}.tar.gz"; 12 - sha256 = "0f1rvqiy630z2q1q8r3kgdd0c6sxjx8c8pm46yabn238xvf3bfnr"; 12 + sha256 = "0gkzd9nj3xyznh9x8whv0phdnj11l5c8164rc3l0jvs5i61c95b2"; 13 13 }; 14 14 15 15 buildInputs = [ zlib openssl readline sqlite ];
+2
pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix
··· 21 21 ''; 22 22 23 23 buildInputs = [ subversion apr qt4 ]; 24 + 25 + meta.broken = true; 24 26 }
+1 -1
pkgs/applications/version-management/git-and-tools/svn2git/default.nix
··· 32 32 33 33 meta = { 34 34 homepage = https://github.com/nirvdrum/svn2git; 35 - description = "Ruby tool for importing existing svn projects into git"; 35 + description = "Tool for importing Subversion repositories into git"; 36 36 license = stdenv.lib.licenses.mit; 37 37 38 38 maintainers = [ stdenv.lib.maintainers.the-kenny ];
+5 -5
pkgs/data/misc/geolite-legacy/default.nix
··· 8 8 9 9 # Annoyingly, these files are updated without a change in URL. This means that 10 10 # builds will start failing every month or so, until the hashes are updated. 11 - version = "2015-08-03"; 11 + version = "2015-08-05"; 12 12 in 13 13 stdenv.mkDerivation { 14 14 name = "geolite-legacy-${version}"; 15 15 16 16 srcGeoIP = fetchDB 17 17 "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" 18 - "1yacbh8qcakmnpipscdh99vmsm0874g2gkq8gp8hjgkgi0zvcsnz"; 18 + "04r1jir9xpd1h5z0a58mwdsbfdbf2kap0ac498w05i11j4vrlh5n"; 19 19 srcGeoIPv6 = fetchDB 20 20 "GeoIPv6.dat.gz" "GeoIPv6.dat.gz" 21 - "038ll8142svhyffxxrg0isrr16rjbz0cnkhd14mck77f1v8z01y5"; 21 + "0vr2a4mlqlaxq3jz8282zygb2y5hx7y660yrjcq02rpmgpmaxkrd"; 22 22 srcGeoLiteCity = fetchDB 23 23 "GeoLiteCity.dat.xz" "GeoIPCity.dat.xz" 24 - "0x5ihg7qikzc195nix9r0izvbdnj4hy4rznvaxk56rf8yqcigdyv"; 24 + "11jpl54s1r98adlsr2f88zj4x9pg7gwxphd7hhq8jp3hwrgrwhs8"; 25 25 srcGeoLiteCityv6 = fetchDB 26 26 "GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz" 27 - "0j5dq06pjrh6d94wczsg6qdys4v164nvp2a7qqrg8w4knh94qp6n"; 27 + "1fhi5vm4drfzyl29b491pr1xr2kbsr3izp9a7k5zm3zkqags2187"; 28 28 srcGeoIPASNum = fetchDB 29 29 "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" 30 30 "04qlh6zr8m5qxl2gcysb721bqlnqrxhngh128zj1w8rhqckjndgj";
+30
pkgs/desktops/gnome-3/3.16/apps/cheese/default.nix
··· 1 + { stdenv, intltool, fetchurl, wrapGAppsHook, gnome-video-effects, libcanberra_gtk3 2 + , pkgconfig, gtk3, glib, clutter_gtk, clutter-gst_2, udev, gst_all_1, itstool 3 + , adwaita-icon-theme, librsvg, gdk_pixbuf, gnome3, gnome_desktop, libxml2, libtool }: 4 + 5 + stdenv.mkDerivation rec { 6 + name = "cheese-${gnome3.version}.1"; 7 + 8 + src = fetchurl { 9 + url = "mirror://gnome/sources/cheese/${gnome3.version}/${name}.tar.xz"; 10 + sha256 = "184hzwrjjn94ndivb54rrif4jnbr66p1j0nlqqi3nw6qsrm2yqj4"; 11 + }; 12 + 13 + buildInputs = [ pkgconfig gtk3 glib intltool wrapGAppsHook gnome-video-effects itstool 14 + gdk_pixbuf adwaita-icon-theme librsvg udev gst_all_1.gstreamer libxml2 15 + gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good gnome_desktop 16 + gst_all_1.gst-plugins-bad clutter_gtk clutter-gst_2 17 + libtool libcanberra_gtk3 ]; 18 + 19 + enableParallelBuilding = true; 20 + 21 + NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0"; 22 + 23 + meta = with stdenv.lib; { 24 + homepage = https://wiki.gnome.org/Apps/Cheese; 25 + description = "Take photos and videos with your webcam, with fun graphical effects"; 26 + maintainers = gnome3.maintainers; 27 + license = licenses.gpl3; 28 + platforms = platforms.linux; 29 + }; 30 + }
+3 -1
pkgs/desktops/gnome-3/3.16/core/gnome-desktop/default.nix
··· 21 21 buildInputs = [ pkgconfig python libxml2Python libxslt which libX11 22 22 xkeyboard_config isocodes itstool wayland 23 23 gtk3 glib intltool gnome_doc_utils libxkbfile 24 - gnome3.gsettings_desktop_schemas gobjectIntrospection ]; 24 + gobjectIntrospection ]; 25 + 26 + propagatedBuildInputs = [ gnome3.gsettings_desktop_schemas ]; 25 27 26 28 meta = with stdenv.lib; { 27 29 platforms = platforms.linux;
+5
pkgs/desktops/gnome-3/3.16/default.nix
··· 44 44 gnome3 = self // { recurseForDerivations = false; }; 45 45 clutter = pkgs.clutter_1_22; 46 46 clutter_gtk = pkgs.clutter_gtk_1_6.override { inherit clutter gtk3; }; 47 + clutter-gst_2 = pkgs.clutter-gst; 47 48 clutter-gst = pkgs.clutter-gst_3_0.override { inherit clutter; }; 48 49 cogl = pkgs.cogl_1_20; 49 50 gtk = gtk3; ··· 246 247 webkitgtk = webkitgtk24x; 247 248 }; 248 249 250 + cheese = callPackage ./apps/cheese { }; 251 + 249 252 evolution = callPackage ./apps/evolution { 250 253 webkitgtk = webkitgtk24x; 251 254 }; ··· 329 332 gtkhtml = callPackage ./misc/gtkhtml { }; 330 333 331 334 pomodoro = callPackage ./misc/pomodoro { }; 335 + 336 + gnome-video-effects = callPackage ./misc/gnome-video-effects { }; 332 337 333 338 }; 334 339 in self; # pkgsFun
+20
pkgs/desktops/gnome-3/3.16/misc/gnome-video-effects/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, intltool, gnome3 }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "gnome-video-effects-${version}"; 5 + version = "0.4.1"; 6 + 7 + src = fetchurl { 8 + url = "mirror://gnome/sources/gnome-video-effects/0.4/${name}.tar.xz"; 9 + sha256 = "0jl4iny2dqpcgi3sgxzpgnbw0752i8ay3rscp2cgdjlp79ql5gil"; 10 + }; 11 + 12 + buildInputs = [ pkgconfig intltool ]; 13 + 14 + meta = with stdenv.lib; { 15 + homepage = https://wiki.gnome.org/Projects/GnomeVideoEffects; 16 + platforms = platforms.linux; 17 + maintainers = gnome3.maintainers; 18 + license = licenses.gpl2; 19 + }; 20 + }
+3 -3
pkgs/development/compilers/ghc/7.10.2.nix
··· 16 16 in 17 17 18 18 stdenv.mkDerivation rec { 19 - version = "7.10.1.20150630"; 19 + version = "7.10.2"; 20 20 name = "ghc-${version}"; 21 21 22 22 src = fetchurl { 23 - url = "https://downloads.haskell.org/~ghc/7.10.2-rc2/${name}-src.tar.xz"; 24 - sha256 = "1wxf7jkkgpvvrg3q311c4rca4vsxrqrmnrqg4j4klgj445yj82gb"; 23 + url = "https://downloads.haskell.org/~ghc/7.10.2/${name}-src.tar.xz"; 24 + sha256 = "1x8m4rp2v7ydnrz6z9g8x7z3x3d3pxhv2pixy7i7hkbqbdsp7kal"; 25 25 }; 26 26 27 27 buildInputs = [ ghc perl ];
+6 -6
pkgs/development/compilers/ghcjs/default.nix
··· 41 41 version = "0.1.0"; 42 42 ghcjsBoot = fetchgit { 43 43 url = git://github.com/ghcjs/ghcjs-boot.git; 44 - rev = "d3581514d0a5073f8220a2f5baafe6866faa35a0"; # 7.10 branch 45 - sha256 = "1p13ifidpi7y1mjq5qv9229isfnsiklizci7i55sf83mp6wqdyvr"; 44 + rev = "d435c60b62d24b7a4117493f7aaecbfa09968fe6"; # 7.10 branch 45 + sha256 = "07vhmjz21ccnqccms003550xacmwb08pjdkhnjcwcbl2603v4na1"; 46 46 fetchSubmodules = true; 47 47 }; 48 48 shims = fetchgit { 49 49 url = git://github.com/ghcjs/shims.git; 50 - rev = "9b196ff5ff13a24997011009b37c980c5534e24f"; # master branch 51 - sha256 = "1zsfxka692fr3zb710il7g1sj64xwaxmasimciylb4wx84h7c30w"; 50 + rev = "0b670ca27fff3f0bad515c37e56ccb8b4d6758fb"; # master branch 51 + sha256 = "19zq79f2y59lw7c8m100awh3rcra5yhbsvpb5xmp3mq6grac7h08"; 52 52 }; 53 53 in mkDerivation (rec { 54 54 pname = "ghcjs"; 55 55 inherit version; 56 56 src = fetchgit { 57 57 url = git://github.com/ghcjs/ghcjs.git; 58 - rev = "c1b6239b0289371dc6b8d17dfd845c14bd4dc490"; # master branch 59 - sha256 = "0ncbk7m1l7cpdgmabm14d7f97fw3vy0hmpj4vs4kkwhhfjf6kp8s"; 58 + rev = "fb1faa9cb0a11a8b27b0033dfdb07aafb6add35e"; # master branch 59 + sha256 = "1vqf19059j86h3rnbvzcp55bdqd5dkw3krb5vkw5mgsmva2g8sch"; 60 60 }; 61 61 isLibrary = true; 62 62 isExecutable = true;
+7
pkgs/development/haskell-modules/configuration-common.nix
··· 11 11 cabal-install = (dontCheck super.cabal-install).overrideScope (self: super: { Cabal = self.Cabal_1_22_4_0; zlib = self.zlib_0_5_4_2; }); 12 12 cabal-install_1_18_1_0 = (dontCheck super.cabal-install_1_18_1_0).overrideScope (self: super: { Cabal = self.Cabal_1_18_1_6; zlib = self.zlib_0_5_4_2; }); 13 13 14 + # Link statically to avoid runtime dependency on GHC. 15 + jailbreak-cabal = disableSharedExecutables super.jailbreak-cabal; 16 + 14 17 # Break infinite recursions. 15 18 Dust-crypto = dontCheck super.Dust-crypto; 16 19 hasql-postgres = dontCheck super.hasql-postgres; ··· 808 811 Frames = dontDistribute super.Frames; 809 812 hgeometry = dontDistribute super.hgeometry; 810 813 hipe = dontDistribute super.hipe; 814 + hsqml-datamodel-vinyl = dontDistribute super.hsqml-datamodel-vinyl; 811 815 singleton-nats = dontDistribute super.singleton-nats; 812 816 singletons = markBroken super.singletons; 813 817 units-attoparsec = dontDistribute super.units-attoparsec; ··· 895 899 896 900 # https://ghc.haskell.org/trac/ghc/ticket/9825 897 901 vimus = overrideCabal super.vimus (drv: { broken = pkgs.stdenv.isLinux && pkgs.stdenv.isi686; }); 902 + 903 + # https://github.com/hspec/mockery/issues/6 904 + mockery = overrideCabal super.mockery (drv: { preCheck = "export TRAVIS=true"; }); 898 905 899 906 }
+1 -1
pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
··· 41 41 unix = null; 42 42 43 43 # binary is not a core library for this compiler. 44 - binary = self.binary_0_7_5_0; 44 + binary = self.binary_0_7_6_1; 45 45 46 46 # deepseq is not a core library for this compiler. 47 47 deepseq_1_3_0_1 = dontJailbreak super.deepseq_1_3_0_1;
+4 -1
pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
··· 35 35 unix = null; 36 36 37 37 # binary is not a core library for this compiler. 38 - binary = self.binary_0_7_5_0; 38 + binary = self.binary_0_7_6_1; 39 39 40 40 # deepseq is not a core library for this compiler. 41 41 deepseq = self.deepseq_1_4_1_1; ··· 69 69 70 70 # Needs hashable on pre 7.10.x compilers. 71 71 nats = addBuildDepend super.nats self.hashable; 72 + 73 + # Newer versions require bytestring >=0.10. 74 + tar = super.tar_0_4_1_0; 72 75 73 76 }
+4 -1
pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
··· 41 41 transformers = self.transformers_0_4_3_0; 42 42 43 43 # https://github.com/haskell/cabal/issues/2322 44 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_7_5_0; process = self.process_1_2_3_0; }; 44 + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_7_6_1; process = self.process_1_2_3_0; }; 45 45 46 46 # Newer versions don't compile. 47 47 Cabal_1_18_1_6 = dontJailbreak super.Cabal_1_18_1_6; ··· 69 69 70 70 # Needs hashable on pre 7.10.x compilers. 71 71 nats = addBuildDepend super.nats self.hashable; 72 + 73 + # Newer versions require bytestring >=0.10. 74 + tar = super.tar_0_4_1_0; 72 75 73 76 }
+5 -2
pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
··· 38 38 transformers = self.transformers_0_4_3_0; 39 39 40 40 # https://github.com/haskell/cabal/issues/2322 41 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_5_0; }; 41 + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; }; 42 42 43 43 # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. 44 - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_7_5_0; }); 44 + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_7_6_1; }); 45 45 46 46 # https://github.com/tibbe/hashable/issues/85 47 47 hashable = dontCheck super.hashable; ··· 78 78 79 79 # Avoid depending on tasty-golden. 80 80 monad-par = dontCheck super.monad-par; 81 + 82 + # Newer versions require bytestring >=0.10. 83 + tar = super.tar_0_4_1_0; 81 84 82 85 }
+2 -2
pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
··· 40 40 xhtml = self.xhtml_3000_2_1; 41 41 42 42 # https://github.com/haskell/cabal/issues/2322 43 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_5_0; }; 43 + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; }; 44 44 45 45 # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. 46 - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_7_5_0; }); 46 + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_7_6_1; }); 47 47 48 48 # https://github.com/tibbe/hashable/issues/85 49 49 hashable = dontCheck super.hashable;
+2 -2
pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
··· 85 85 seqid-streams = super.seqid-streams_0_1_0; 86 86 87 87 # Need binary >= 0.7.2, but our compiler has only 0.7.1.0. 88 - hosc = super.hosc.overrideScope (self: super: { binary = self.binary_0_7_5_0; }); 89 - tidal-midi = super.tidal-midi.overrideScope (self: super: { binary = self.binary_0_7_5_0; }); 88 + hosc = super.hosc.overrideScope (self: super: { binary = self.binary_0_7_6_1; }); 89 + tidal-midi = super.tidal-midi.overrideScope (self: super: { binary = self.binary_0_7_6_1; }); 90 90 91 91 # These packages need mtl 2.2.x directly or indirectly via dependencies. 92 92 amazonka = markBroken super.amazonka;
+7 -2
pkgs/development/haskell-modules/generic-builder.nix
··· 45 45 , useCpphs ? false 46 46 } @ args: 47 47 48 - assert pkgconfigDepends != [] -> pkgconfig != null; 49 48 assert editedCabalFile != null -> revision != null; 50 49 51 50 let ··· 105 104 isHaskellPkg = x: (x ? pname) && (x ? version) && (x ? env); 106 105 isSystemPkg = x: !isHaskellPkg x; 107 106 107 + allPkgconfigDepends = pkgconfigDepends ++ libraryPkgconfigDepends ++ executablePkgconfigDepends ++ 108 + optionals doCheck testPkgconfigDepends; 109 + 108 110 propagatedBuildInputs = buildDepends ++ libraryHaskellDepends ++ executableHaskellDepends; 109 111 otherBuildInputs = extraLibraries ++ librarySystemDepends ++ executableSystemDepends ++ 110 112 buildTools ++ libraryToolDepends ++ executableToolDepends ++ 111 - optionals (pkgconfigDepends != []) ([pkgconfig] ++ pkgconfigDepends ++ libraryPkgconfigDepends ++ executablePkgconfigDepends) ++ 113 + optionals (allPkgconfigDepends != []) ([pkgconfig] ++ allPkgconfigDepends) ++ 112 114 optionals doCheck (testDepends ++ testHaskellDepends ++ testSystemDepends); 113 115 allBuildInputs = propagatedBuildInputs ++ otherBuildInputs; 114 116 ··· 122 124 ghcCommandCaps = toUpper ghcCommand; 123 125 124 126 in 127 + 128 + assert allPkgconfigDepends != [] -> pkgconfig != null; 129 + 125 130 stdenv.mkDerivation ({ 126 131 name = "${optionalString (hasActiveLibrary && pname != "ghcjs") "haskell-"}${pname}-${version}"; 127 132
+1615 -802
pkgs/development/haskell-modules/hackage-packages.nix
··· 50 50 hydraPlatforms = stdenv.lib.platforms.none; 51 51 }) {}; 52 52 53 + "AAI" = callPackage 54 + ({ mkDerivation, base }: 55 + mkDerivation { 56 + pname = "AAI"; 57 + version = "0.2.0.1"; 58 + sha256 = "0vdq0hscpbl5a9bpf8fiykmyg2c3yvivb0mzcdy99ha0j1p4rwfh"; 59 + buildDepends = [ base ]; 60 + description = "Abstract Application Interface"; 61 + license = stdenv.lib.licenses.mit; 62 + }) {}; 63 + 53 64 "ABList" = callPackage 54 65 ({ mkDerivation, base, HUnit, linear, newtype, QuickCheck 55 66 , test-framework, test-framework-hunit, test-framework-quickcheck2 ··· 665 676 mkDerivation { 666 677 pname = "Agda"; 667 678 version = "2.4.2.3"; 679 + revision = "1"; 668 680 sha256 = "09vvipvab6bys8g7cdka1iirs0wc0jzcyynncccgb614wd2yyvdw"; 681 + editedCabalFile = "25fe17a2302a30f23a57bedf6bc66a8966f4d5f6b10353e2502e18ba98f80eeb"; 669 682 isLibrary = true; 670 683 isExecutable = true; 671 684 buildDepends = [ ··· 676 689 transformers-compat unordered-containers xhtml zlib 677 690 ]; 678 691 buildTools = [ alex cpphs emacs happy ]; 679 - jailbreak = true; 680 692 postInstall = '' 681 693 $out/bin/agda -c --no-main $(find $out/share -name Primitive.agda) 682 694 $out/bin/agda-mode compile ··· 754 766 }: 755 767 mkDerivation { 756 768 pname = "Allure"; 757 - version = "0.4.101.1"; 758 - sha256 = "1wla31n3jiynjb2fk22shq46g365x6il270jqpy234vjz308sdvw"; 769 + version = "0.5.0.0"; 770 + sha256 = "0lmkfa6wk0hqin43lf6ll3227c4h7qvya7s6k6sfz8syy51ggqx7"; 759 771 isLibrary = false; 760 772 isExecutable = true; 761 773 buildDepends = [ ··· 2331 2343 }: 2332 2344 mkDerivation { 2333 2345 pname = "Chart"; 2334 - version = "1.5"; 2335 - sha256 = "1h40322g9nj8hlya6iw9dgvvgzbq816v36vm2vz0lii586j0nqyx"; 2346 + version = "1.5.1"; 2347 + sha256 = "0jm1wr2nb1r8rxqc564nmnclns160y7girc7j2ihvyhm0v34p59g"; 2336 2348 buildDepends = [ 2337 2349 array base colour data-default-class lens mtl old-locale 2338 2350 operational time vector 2339 2351 ]; 2340 - jailbreak = true; 2341 2352 homepage = "https://github.com/timbod7/haskell-chart/wiki"; 2342 2353 description = "A library for generating 2D Charts and Plots"; 2343 2354 license = stdenv.lib.licenses.bsd3; ··· 2349 2360 }: 2350 2361 mkDerivation { 2351 2362 pname = "Chart-cairo"; 2352 - version = "1.5"; 2353 - sha256 = "19p4fg12r91jhhifwlda6rqm2bm0x6bz2fv3dqr2ni1y3cz7v56c"; 2363 + version = "1.5.1"; 2364 + sha256 = "1fwjgms76z2spgfw3kfmzivkgp6gdkx24mp5nb562kza4y6yjz7f"; 2354 2365 buildDepends = [ 2355 2366 array base cairo Chart colour data-default-class lens mtl 2356 2367 old-locale operational time 2357 2368 ]; 2358 - jailbreak = true; 2359 2369 homepage = "https://github.com/timbod7/haskell-chart/wiki"; 2360 2370 description = "Cairo backend for Charts"; 2361 2371 license = stdenv.lib.licenses.bsd3; ··· 2369 2379 }: 2370 2380 mkDerivation { 2371 2381 pname = "Chart-diagrams"; 2372 - version = "1.5"; 2373 - sha256 = "1i6l6gvy4vlw98b2r5wr5c7dzp01jwca6c5y0pgq663fnp1pwjph"; 2382 + version = "1.5.1"; 2383 + sha256 = "1slsq9p9mq9jxlyhpd90bh32s6fqvy149p4cb7ckygzd77r1aqxz"; 2374 2384 buildDepends = [ 2375 2385 base blaze-markup bytestring Chart colour containers 2376 2386 data-default-class diagrams-core diagrams-lib diagrams-postscript 2377 2387 diagrams-svg lens lucid-svg mtl old-locale operational SVGFonts 2378 2388 text time 2379 2389 ]; 2380 - jailbreak = true; 2381 2390 homepage = "https://github.com/timbod7/haskell-chart/wiki"; 2382 2391 description = "Diagrams backend for Charts"; 2383 2392 license = stdenv.lib.licenses.bsd3; ··· 2390 2399 }: 2391 2400 mkDerivation { 2392 2401 pname = "Chart-gtk"; 2393 - version = "1.5"; 2394 - sha256 = "1iwr31ri4f24yxnmg101y30sg3a03nrmp5nr2id2r471c0f4x2gy"; 2402 + version = "1.5.1"; 2403 + sha256 = "025snbbsnd2gsldw2j8r3vxh94jrv57h8z4qvkq3dwyh2mvq21lw"; 2395 2404 buildDepends = [ 2396 2405 array base cairo Chart Chart-cairo colour data-default-class gtk 2397 2406 mtl old-locale time ··· 3543 3552 mkDerivation { 3544 3553 pname = "Diff"; 3545 3554 version = "0.3.2"; 3555 + revision = "1"; 3546 3556 sha256 = "13iqqmpadcm7fvqwbfrz94w030rvjh66w2bdls1253128ac2n0vz"; 3557 + editedCabalFile = "86ab9f6bcb253cabff2673437995faa4c130be7c3898df778b27a801c5361328"; 3547 3558 buildDepends = [ array base pretty ]; 3548 3559 description = "O(ND) diff algorithm in haskell"; 3549 3560 license = stdenv.lib.licenses.bsd3; ··· 3699 3710 ({ mkDerivation, base, containers, MonadRandom }: 3700 3711 mkDerivation { 3701 3712 pname = "Dist"; 3702 - version = "0.2.0.0"; 3703 - sha256 = "0w9n123rngl85qsgwm0dgqnc0v8zn9lsi2v0n4hfxdvxlhcjr3ir"; 3713 + version = "0.3.0.0"; 3714 + sha256 = "00h0cxlxk72k829w8cf2gi2y4v4qj9bdzdmvnphnvc9wz5pyiz26"; 3704 3715 buildDepends = [ base containers MonadRandom ]; 3705 3716 testDepends = [ base containers MonadRandom ]; 3706 - jailbreak = true; 3707 3717 homepage = "https://github.com/wyager/Dist"; 3708 3718 description = "A Haskell library for probability distributions"; 3709 3719 license = stdenv.lib.licenses.mit; ··· 4047 4057 }: 4048 4058 mkDerivation { 4049 4059 pname = "Ebnf2ps"; 4050 - version = "1.0.13"; 4051 - sha256 = "1ymfj2n23n1j37p5nw8xwhfccx4xc6wyf3372dr9gxv232jk8znz"; 4060 + version = "1.0.14"; 4061 + sha256 = "0dv7lbw3nb3wyrrq8q4wd26i445ylwiixhhzdl574sw58mw60rk3"; 4052 4062 isLibrary = false; 4053 4063 isExecutable = true; 4054 4064 buildDepends = [ array base containers directory old-time unix ]; ··· 4976 4986 }: 4977 4987 mkDerivation { 4978 4988 pname = "Frames"; 4979 - version = "0.1.2"; 4980 - sha256 = "11444jhck56y2iclgn1daj087qpi99pznk3w82vhbya3pdvrkjac"; 4989 + version = "0.1.2.1"; 4990 + sha256 = "0vw1fh0nqk3s5p08j4cnwb95jgzxk140wvszjlmr3ms9m0xcx61y"; 4981 4991 isLibrary = true; 4982 4992 isExecutable = true; 4983 4993 buildDepends = [ ··· 5473 5483 license = "GPL"; 5474 5484 }) {}; 5475 5485 5486 + "GeneralTicTacToe" = callPackage 5487 + ({ mkDerivation, base }: 5488 + mkDerivation { 5489 + pname = "GeneralTicTacToe"; 5490 + version = "0.1.0.1"; 5491 + sha256 = "0dng5shk5zs4j6lyjz971axrqziv6davpcyv509mz8fvdjn8q4kg"; 5492 + isLibrary = false; 5493 + isExecutable = true; 5494 + buildDepends = [ base ]; 5495 + jailbreak = true; 5496 + homepage = "http://afonso.xyz"; 5497 + description = "A general TicTacToe game implementation"; 5498 + license = stdenv.lib.licenses.mit; 5499 + }) {}; 5500 + 5476 5501 "GenericPretty" = callPackage 5477 5502 ({ mkDerivation, base, ghc-prim, pretty }: 5478 5503 mkDerivation { ··· 6824 6849 }: 6825 6850 mkDerivation { 6826 6851 pname = "HList"; 6827 - version = "0.4.0.0"; 6828 - sha256 = "0f6d97vfxlml4dp6zfk95kk4la8xr5m91hiw4zj98kvwvvhb99mz"; 6852 + version = "0.4.1.0"; 6853 + sha256 = "0vbfq2jfdm3dn059flyzxrlhcw7hkni75fpi2gqcl5s6ha95ak10"; 6829 6854 buildDepends = [ 6830 6855 array base ghc-prim mtl profunctors tagged template-haskell 6831 6856 ]; ··· 8357 8382 ({ mkDerivation, base, doctest, hspec, parsec }: 8358 8383 mkDerivation { 8359 8384 pname = "HostAndPort"; 8360 - version = "0.1.0"; 8361 - revision = "1"; 8362 - sha256 = "0rykpzp3vvc81ra917vicwsh8x1mr1ykw9a597ks959nmjy06mz8"; 8363 - editedCabalFile = "5ad1783e80502877a1de17cb92308dd9e0cc003a1302c5d4c09103b1c98bd627"; 8385 + version = "0.2.0"; 8386 + sha256 = "1rjv6c7j6fdy6gnn1zr5jnfmiqiamsmjfw9h3bx119giw3sjb9hm"; 8364 8387 buildDepends = [ base parsec ]; 8365 8388 testDepends = [ base doctest hspec ]; 8366 8389 homepage = "https://github.com/bacher09/hostandport"; 8367 - description = "Parser host and port pairs like localhost:22"; 8390 + description = "Parser for host and port pairs like localhost:22"; 8368 8391 license = stdenv.lib.licenses.mit; 8369 8392 }) {}; 8370 8393 ··· 9074 9097 }: 9075 9098 mkDerivation { 9076 9099 pname = "JuicyPixels"; 9077 - version = "3.2.5.2"; 9078 - sha256 = "07fyn0ns3g66aqpa1jg1v694yvf5idf7cknrkh30hs312lwm1sjl"; 9100 + version = "3.2.5.3"; 9101 + sha256 = "1knq5jbwggf59h8a6aa758387q71fpzcvssg8dsr84bqwqqg2dpw"; 9079 9102 buildDepends = [ 9080 9103 base binary bytestring containers deepseq mtl primitive 9081 9104 transformers vector zlib ··· 9438 9461 }: 9439 9462 mkDerivation { 9440 9463 pname = "LambdaHack"; 9441 - version = "0.4.101.1"; 9442 - sha256 = "065j2zyqi4adh3f01jywxqvsl45i69ky2y0bavkkpzz2klspg6zw"; 9464 + version = "0.5.0.0"; 9465 + sha256 = "0vzra6020jmir6pqs26fnw2pgap7l10160v5admk7wnrrnfr91r5"; 9443 9466 isLibrary = true; 9444 9467 isExecutable = true; 9445 9468 buildDepends = [ ··· 10293 10316 }: 10294 10317 mkDerivation { 10295 10318 pname = "MoeDict"; 10296 - version = "0.0.2"; 10297 - sha256 = "06dhk0n1v1axj0qbx29n2g9p0nw24ix5ij2vq5nfs7jbrb9m7r0n"; 10319 + version = "0.0.3"; 10320 + sha256 = "0sf7qhw3z984mnprgq2jxqsx9z5v2q36hdb84fdn34rgjzrv3z9a"; 10298 10321 buildDepends = [ 10299 10322 aeson base bytestring containers text unordered-containers 10300 10323 ]; ··· 10366 10389 }) {}; 10367 10390 10368 10391 "MonadCompose" = callPackage 10369 - ({ mkDerivation, base, data-default, ghc-prim, MaybeT, mmorph 10370 - , monad-products, mtl, random, transformers 10392 + ({ mkDerivation, base, data-default, ghc-prim, mmorph, monad-loops 10393 + , monad-products, mtl, parallel, random, transformers 10394 + , transformers-compat 10371 10395 }: 10372 10396 mkDerivation { 10373 10397 pname = "MonadCompose"; 10374 - version = "0.8.2.0"; 10375 - sha256 = "1nzb4x8az1m4d5i75cshgjfr4xnkfi3s27rq6jkib9i67my0hsrq"; 10398 + version = "0.8.3.1"; 10399 + sha256 = "0njvbz2cwc3339h87wxhl5kzb2v1ny5skqvhrsdzp95f1k8chnxa"; 10376 10400 buildDepends = [ 10377 - base data-default ghc-prim MaybeT mmorph monad-products mtl random 10378 - transformers 10401 + base data-default ghc-prim mmorph monad-loops monad-products mtl 10402 + parallel random transformers transformers-compat 10379 10403 ]; 10380 - jailbreak = true; 10381 10404 homepage = "http://alkalisoftware.net"; 10382 10405 description = "Methods for composing monads"; 10383 10406 license = stdenv.lib.licenses.bsd3; ··· 10663 10686 license = "LGPL"; 10664 10687 }) {}; 10665 10688 10689 + "MyPrimes" = callPackage 10690 + ({ mkDerivation, base, containers }: 10691 + mkDerivation { 10692 + pname = "MyPrimes"; 10693 + version = "0.1.0.0"; 10694 + sha256 = "1bwq0fwhkw4i2kjx9xbdfn0y86j9s78kyrw9vlxq7zmv4pddazly"; 10695 + isLibrary = true; 10696 + isExecutable = true; 10697 + buildDepends = [ base containers ]; 10698 + jailbreak = true; 10699 + homepage = "http://afonso.xyz"; 10700 + description = "Generate all primes"; 10701 + license = stdenv.lib.licenses.mit; 10702 + }) {}; 10703 + 10666 10704 "NGrams" = callPackage 10667 10705 ({ mkDerivation, base, HCL, HTTP, network, regex-compat }: 10668 10706 mkDerivation { ··· 10794 10832 }: 10795 10833 mkDerivation { 10796 10834 pname = "Neks"; 10797 - version = "0.4.0.0"; 10798 - sha256 = "0xi5d9wvk2xzsn500d61b6mmvwd36fs2n92l5qy4hzhww5lmkrrb"; 10835 + version = "0.5.0.0"; 10836 + sha256 = "083hkcgmrk42pyjm1xz1amdjpmccw0c72axmkk163ar6ir7aznc8"; 10799 10837 isLibrary = true; 10800 10838 isExecutable = true; 10801 10839 buildDepends = [ 10802 10840 base bytestring cereal containers directory hashable messagepack 10803 10841 network stm vector 10804 10842 ]; 10805 - jailbreak = true; 10806 10843 description = "Simple networked key/value store"; 10807 10844 license = stdenv.lib.licenses.mit; 10808 10845 }) {}; ··· 11583 11620 license = stdenv.lib.licenses.bsd3; 11584 11621 }) {}; 11585 11622 11623 + "OrchestrateDB" = callPackage 11624 + ({ mkDerivation, aeson, base, bytestring, HTTP, http-conduit 11625 + , http-types, lifted-base, random 11626 + }: 11627 + mkDerivation { 11628 + pname = "OrchestrateDB"; 11629 + version = "1.0.0.3"; 11630 + sha256 = "0d12jbdgpfkzax5c8djab6n611hcwi1bkphwmn5qmny43fb3wsaz"; 11631 + buildDepends = [ 11632 + aeson base bytestring HTTP http-conduit http-types lifted-base 11633 + ]; 11634 + testDepends = [ 11635 + aeson base bytestring HTTP http-conduit http-types lifted-base 11636 + random 11637 + ]; 11638 + homepage = "https://github.com/dwd31415/Haskell-OrchestrateDB"; 11639 + description = "Unofficial Haskell Client Library for the Orchestrate.io API"; 11640 + license = stdenv.lib.licenses.bsd3; 11641 + }) {}; 11642 + 11586 11643 "OrderedBits" = callPackage 11587 11644 ({ mkDerivation, base, bits, primitive, QuickCheck, test-framework 11588 11645 , test-framework-quickcheck2, test-framework-th, vector ··· 11948 12005 hydraPlatforms = stdenv.lib.platforms.none; 11949 12006 }) {}; 11950 12007 12008 + "Phsu" = callPackage 12009 + ({ mkDerivation, acid-state, aeson, base, blaze-html, blaze-markup 12010 + , containers, curl, filepath, friendly-time, happstack-server 12011 + , happstack-server-tls, lifted-base, MissingH, monad-control, mtl 12012 + , network, network-uri, old-locale, process, regex-base, regex-pcre 12013 + , safecopy, string-conversions, temporary, text, time 12014 + }: 12015 + mkDerivation { 12016 + pname = "Phsu"; 12017 + version = "0.1.0.3"; 12018 + sha256 = "12f6hqgxyf3svr53g0irn15q69wp9py1bxfw3a5inpkqzmrs04x9"; 12019 + isLibrary = false; 12020 + isExecutable = true; 12021 + buildDepends = [ 12022 + acid-state aeson base blaze-html blaze-markup containers curl 12023 + filepath friendly-time happstack-server happstack-server-tls 12024 + lifted-base MissingH monad-control mtl network network-uri 12025 + old-locale process regex-base regex-pcre safecopy 12026 + string-conversions temporary text time 12027 + ]; 12028 + jailbreak = true; 12029 + homepage = "localhost:9119"; 12030 + description = "Personal Happstack Server Utils"; 12031 + license = stdenv.lib.licenses.gpl3; 12032 + }) {}; 12033 + 11951 12034 "Pipe" = callPackage 11952 12035 ({ mkDerivation, base, filepath, process, unix }: 11953 12036 mkDerivation { ··· 14041 14124 "Spock" = callPackage 14042 14125 ({ mkDerivation, aeson, base, base64-bytestring, bytestring 14043 14126 , case-insensitive, containers, directory, hashable, hspec 14044 - , hspec-wai, http-types, list-t, monad-control, mtl, old-locale 14045 - , path-pieces, random, reroute, resource-pool, resourcet, stm 14046 - , stm-containers, text, time, transformers, transformers-base 14047 - , unordered-containers, vault, wai, wai-extra, warp 14127 + , hspec-wai, http-types, hvect, list-t, monad-control, mtl 14128 + , old-locale, path-pieces, random, reroute, resource-pool 14129 + , resourcet, stm, stm-containers, text, time, transformers 14130 + , transformers-base, unordered-containers, vault, wai, wai-extra 14131 + , warp 14048 14132 }: 14049 14133 mkDerivation { 14050 14134 pname = "Spock"; 14051 - version = "0.7.10.0"; 14052 - sha256 = "0agis3cy6ijynbzgwyc2wd08db16yz0qhcjj41l6d7a6804ns8nj"; 14135 + version = "0.7.12.0"; 14136 + sha256 = "05vglqzf75dphxx2wnkxqn7aqcb19nh8g560zfpw56jrfbbmygwg"; 14053 14137 buildDepends = [ 14054 14138 aeson base base64-bytestring bytestring case-insensitive containers 14055 - directory hashable http-types list-t monad-control mtl old-locale 14056 - path-pieces random reroute resource-pool resourcet stm 14139 + directory hashable http-types hvect list-t monad-control mtl 14140 + old-locale path-pieces random reroute resource-pool resourcet stm 14057 14141 stm-containers text time transformers transformers-base 14058 14142 unordered-containers vault wai wai-extra warp 14059 14143 ]; ··· 15117 15201 ({ mkDerivation, base, stm }: 15118 15202 mkDerivation { 15119 15203 pname = "Updater"; 15120 - version = "0.1"; 15121 - sha256 = "0wd6ydj6s44mxncg817f9ar4cwxjxakb9m5a4p6yxhzgkwcl7hp2"; 15204 + version = "0.2"; 15205 + sha256 = "03n2r02bgv9hzlvxypdy1mrvdmzrxlm717bf7qp9f9ky1sj3ixp4"; 15122 15206 buildDepends = [ base stm ]; 15123 15207 homepage = "https://github.com/yokto/Updater"; 15124 15208 description = "Monadic FRP library based on stm"; ··· 15562 15646 }: 15563 15647 mkDerivation { 15564 15648 pname = "Win32"; 15565 - version = "2.3.0.2"; 15566 - sha256 = "0s2hp50yb91cmj78shpp7s7v096y6lnipk4j7h3lxph3zgj06zsi"; 15649 + version = "2.3.1.0"; 15650 + sha256 = "1y9z682gmgjkrc8lijkidrlwh5pr30zgpvx2sc3gnvn8krg6jnk8"; 15567 15651 buildDepends = [ base bytestring ]; 15568 15652 extraLibraries = [ advapi32 gdi32 shell32 shfolder user32 winmm ]; 15569 15653 homepage = "https://github.com/haskell/win32"; ··· 16196 16280 hydraPlatforms = stdenv.lib.platforms.none; 16197 16281 }) { inherit (pkgs) readline;}; 16198 16282 16283 + "ZEBEDDE" = callPackage 16284 + ({ mkDerivation, base, vect }: 16285 + mkDerivation { 16286 + pname = "ZEBEDDE"; 16287 + version = "0.1.0.0"; 16288 + sha256 = "1i85pah79342ivmcg73q305awbf9fi6gw4ckg9i019d6vmdg5d17"; 16289 + buildDepends = [ base vect ]; 16290 + jailbreak = true; 16291 + description = "Polymer growth simulation method"; 16292 + license = stdenv.lib.licenses.bsd3; 16293 + }) {}; 16294 + 16199 16295 "ZFS" = callPackage 16200 16296 ({ mkDerivation, base, CC-delcont, containers, mtl, network, unix 16201 16297 }: ··· 16333 16429 }: 16334 16430 mkDerivation { 16335 16431 pname = "abcBridge"; 16336 - version = "0.12"; 16337 - sha256 = "1432hjaj0fccsd16if0wyiayp9wj66gam6c48fc1lgnqc5lvw5jj"; 16432 + version = "0.14"; 16433 + sha256 = "1ki5h3058n3kpvaspl8g1vadprw6kb3xxyadb3a4k1irkfz8lfkf"; 16338 16434 isLibrary = true; 16339 16435 isExecutable = true; 16340 16436 buildDepends = [ aig base containers directory vector ]; ··· 18014 18110 ({ mkDerivation, base, mtl, QuickCheck, vector }: 18015 18111 mkDerivation { 18016 18112 pname = "aig"; 18017 - version = "0.2.1"; 18018 - sha256 = "0wcqw5scaw2ximhbv9pnpngdlr36adci7hpqwj9haa9ql5pwqqxk"; 18113 + version = "0.2.3"; 18114 + sha256 = "0363wr5fnryz49ksj6mvwngpqi2bj7ldgyzh6hgvmvvdz5nmmxzr"; 18019 18115 buildDepends = [ base mtl QuickCheck vector ]; 18020 18116 description = "And-inverter graphs in Haskell"; 18021 18117 license = stdenv.lib.licenses.bsd3; ··· 18497 18593 sha256 = "1fhk5ydnf0l0n579gqg5lfg2cc9z8xbgqsqzgkpcw0046kp53rjw"; 18498 18594 buildDepends = [ alloy base mtl ]; 18499 18595 description = "Some add-on instances for the Alloy library"; 18596 + license = stdenv.lib.licenses.bsd3; 18597 + }) {}; 18598 + 18599 + "almost-fix" = callPackage 18600 + ({ mkDerivation, base }: 18601 + mkDerivation { 18602 + pname = "almost-fix"; 18603 + version = "0.0.2"; 18604 + sha256 = "03x715jcrsxfs2d08hsg3y5f6a4bnlzfxsmhzimvpdp9bw0psn90"; 18605 + buildDepends = [ base ]; 18606 + description = "Recurse while a predicate is satisfied"; 18500 18607 license = stdenv.lib.licenses.bsd3; 18501 18608 }) {}; 18502 18609 ··· 19083 19190 ({ mkDerivation, amazonka-core, base }: 19084 19191 mkDerivation { 19085 19192 pname = "amazonka-ec2"; 19086 - version = "0.3.6"; 19087 - sha256 = "050gspxplhch66awd7gmxyyy3s466ca3jbzp2yq4qh32dn7n1hvi"; 19193 + version = "0.3.6.1"; 19194 + sha256 = "19gyqga1qp50jsi6pykykkivfz18357p6pd6fg84bir0j9d4vawy"; 19088 19195 buildDepends = [ amazonka-core base ]; 19089 19196 homepage = "https://github.com/brendanhay/amazonka"; 19090 19197 description = "Amazon Elastic Compute Cloud SDK"; ··· 19287 19394 ({ mkDerivation, amazonka-core, base }: 19288 19395 mkDerivation { 19289 19396 pname = "amazonka-route53"; 19290 - version = "0.3.6"; 19291 - sha256 = "1xk44z5zp8pr2hyhdshzgwm572y33f9lvjz6yrglc4vpangslcx3"; 19397 + version = "0.3.6.1"; 19398 + sha256 = "155d4yfc96x99mw8h89n2waj7ywx4hcw8izcx1sk1x96lcd6h9mw"; 19292 19399 buildDepends = [ amazonka-core base ]; 19293 19400 homepage = "https://github.com/brendanhay/amazonka"; 19294 19401 description = "Amazon Route 53 SDK"; ··· 20455 20562 }: 20456 20563 mkDerivation { 20457 20564 pname = "applicative-fail"; 20458 - version = "1.1.0"; 20459 - sha256 = "0slxvf7iah7k8mpap6sc1kfibgah8pjls5z82zf62kf7ywzqmfkf"; 20565 + version = "1.1.1"; 20566 + sha256 = "11bk0svzdys8rgx6nzb80fkxz8mp6r0238ylmb5wzsnl8nc9y041"; 20460 20567 buildDepends = [ 20461 20568 base bifunctors dlist mtl transformers transformers-base 20462 20569 ]; 20463 20570 testDepends = [ 20464 20571 base checkers mtl QuickCheck tasty tasty-quickcheck 20465 20572 ]; 20466 - jailbreak = true; 20467 20573 homepage = "https://bitbucket.org/s9gf4ult/applicative-fail"; 20468 20574 description = "Applicative functor and monad which collects all your fails"; 20469 20575 license = stdenv.lib.licenses.bsd3; ··· 22356 22462 "avers" = callPackage 22357 22463 ({ mkDerivation, aeson, attoparsec, base, base16-bytestring 22358 22464 , bytestring, clock, containers, cryptohash, filepath, hspec 22359 - , inflections, MonadRandom, mtl, network, resource-pool 22360 - , rethinkdb-client-driver, scrypt, stm, template-haskell, text 22361 - , time, unordered-containers, vector 22465 + , inflections, MonadRandom, mtl, network, network-uri 22466 + , resource-pool, rethinkdb-client-driver, safe, scrypt, stm 22467 + , template-haskell, text, time, unordered-containers, vector 22362 22468 }: 22363 22469 mkDerivation { 22364 22470 pname = "avers"; 22365 - version = "0.0.8"; 22366 - sha256 = "1wnhzkjwp6243mqfwxmw8lhs59vn5v0544hsivcfps427cqamrbq"; 22471 + version = "0.0.9"; 22472 + sha256 = "0zcgq4b20vvg2mqm9yqm4gvakafn9r8mghki8bn87xhk0w7h99km"; 22367 22473 buildDepends = [ 22368 22474 aeson attoparsec base base16-bytestring bytestring clock containers 22369 - cryptohash filepath inflections MonadRandom mtl network 22370 - resource-pool rethinkdb-client-driver scrypt stm template-haskell 22371 - text time unordered-containers vector 22475 + cryptohash filepath inflections MonadRandom mtl network network-uri 22476 + resource-pool rethinkdb-client-driver safe scrypt stm 22477 + template-haskell text time unordered-containers vector 22372 22478 ]; 22373 22479 testDepends = [ 22374 22480 aeson attoparsec base base16-bytestring bytestring containers ··· 22376 22482 rethinkdb-client-driver scrypt stm text time unordered-containers 22377 22483 vector 22378 22484 ]; 22379 - jailbreak = true; 22380 22485 description = "empty"; 22381 22486 license = stdenv.lib.licenses.gpl3; 22382 22487 hydraPlatforms = stdenv.lib.platforms.none; ··· 23519 23624 }) {}; 23520 23625 23521 23626 "base-orphans" = callPackage 23522 - ({ mkDerivation, base, ghc-prim, hspec }: 23627 + ({ mkDerivation, base, ghc-prim, hspec, QuickCheck }: 23523 23628 mkDerivation { 23524 23629 pname = "base-orphans"; 23525 - version = "0.4.0"; 23526 - sha256 = "06knj296mkhbmfr0b12pfvhzr0bk8p1avabh1llwmx67nnn41r5i"; 23630 + version = "0.4.2"; 23631 + sha256 = "1mfmhvb7zvyi3m5660755ph7xk4fdvhki6ssfd3i2ghzas8g1v7a"; 23527 23632 buildDepends = [ base ghc-prim ]; 23528 - testDepends = [ base hspec ]; 23633 + testDepends = [ base hspec QuickCheck ]; 23529 23634 homepage = "https://github.com/haskell-compat/base-orphans#readme"; 23530 23635 description = "Backwards-compatible orphan instances for base"; 23531 23636 license = stdenv.lib.licenses.mit; ··· 23710 23815 license = stdenv.lib.licenses.mit; 23711 23816 }) {}; 23712 23817 23818 + "basex-client" = callPackage 23819 + ({ mkDerivation, base, network, pureMD5, utf8-string }: 23820 + mkDerivation { 23821 + pname = "basex-client"; 23822 + version = "0.1.0.0"; 23823 + sha256 = "189bmv479fmljy9w7nhc5mb7546iz8vahrmxffvgny51ywklk58n"; 23824 + buildDepends = [ base network pureMD5 utf8-string ]; 23825 + description = "A BaseX client for Haskell"; 23826 + license = stdenv.lib.licenses.mit; 23827 + }) {}; 23828 + 23713 23829 "bash" = callPackage 23714 23830 ({ mkDerivation, base, binary, bytestring, containers 23715 23831 , hxt-regex-xmlschema, mtl, SHA, shell-escape ··· 24137 24253 }) {}; 24138 24254 24139 24255 "bet" = callPackage 24140 - ({ mkDerivation, aeson, base, bifunctors, bytestring, containers 24141 - , exceptions, HsOpenSSL, http-client-openssl, lens, mtl, pipes 24142 - , pipes-http, QuickCheck, semigroupoids, semigroups, test-framework 24143 - , test-framework-quickcheck2, test-framework-th, text, time 24256 + ({ mkDerivation, aeson, base, bifunctors, binary, bytestring 24257 + , containers, exceptions, HsOpenSSL, http-client 24258 + , http-client-openssl, lens, mtl, QuickCheck, semigroupoids 24259 + , semigroups, test-framework, test-framework-quickcheck2 24260 + , test-framework-th, text, time 24144 24261 }: 24145 24262 mkDerivation { 24146 24263 pname = "bet"; 24147 - version = "0.1.2.2"; 24148 - sha256 = "1sk8sgfcywxr54g25ah978k0d1x263mzi69zbx5wk67bs4sqvmds"; 24264 + version = "0.1.2.3"; 24265 + sha256 = "0gy12m81bc6vgzq4m0v134jbq5lw1210dxsq4s28c0www0kxj658"; 24149 24266 isLibrary = true; 24150 24267 isExecutable = true; 24151 24268 buildDepends = [ 24152 - aeson base bifunctors bytestring containers exceptions HsOpenSSL 24153 - http-client-openssl lens mtl pipes pipes-http semigroupoids 24269 + aeson base bifunctors binary bytestring containers exceptions 24270 + HsOpenSSL http-client http-client-openssl lens mtl semigroupoids 24154 24271 semigroups text time 24155 24272 ]; 24156 24273 testDepends = [ 24157 24274 base lens QuickCheck semigroups test-framework 24158 24275 test-framework-quickcheck2 test-framework-th 24159 24276 ]; 24160 - jailbreak = true; 24161 24277 homepage = "https://github.com/Noeda/bet/"; 24162 24278 description = "Betfair API bindings. Bet on sports on betting exchanges."; 24163 24279 license = stdenv.lib.licenses.mit; ··· 24503 24619 license = stdenv.lib.licenses.bsd3; 24504 24620 }) {}; 24505 24621 24506 - "binary_0_7_5_0" = callPackage 24622 + "binary_0_7_6_1" = callPackage 24507 24623 ({ mkDerivation, array, base, bytestring, Cabal, containers 24508 24624 , directory, filepath, HUnit, QuickCheck, random, test-framework 24509 24625 , test-framework-quickcheck2 24510 24626 }: 24511 24627 mkDerivation { 24512 24628 pname = "binary"; 24513 - version = "0.7.5.0"; 24514 - sha256 = "06gg61srfva7rvzf4s63c068s838i5jf33d6cnjb9769gjmca2a7"; 24629 + version = "0.7.6.1"; 24630 + sha256 = "0rqhz349w72h1bi79lga5x1d95g59h15srlahxbhfrmy2pycm1cg"; 24515 24631 buildDepends = [ array base bytestring containers ]; 24516 24632 testDepends = [ 24517 24633 array base bytestring Cabal containers directory filepath HUnit ··· 26552 26668 }: 26553 26669 mkDerivation { 26554 26670 pname = "blaze-html"; 26555 - version = "0.8.0.2"; 26556 - sha256 = "1h3z857kqj9h87zyi84pck2rnykfk7i4amlh0vkv5wws5zn9xs74"; 26671 + version = "0.8.1.0"; 26672 + sha256 = "0cgddwdwjszhcd3grfxazvy6jwaxa90s8yw6ir9ji2apbdsw0vgv"; 26557 26673 buildDepends = [ base blaze-builder blaze-markup bytestring text ]; 26558 26674 testDepends = [ 26559 26675 base blaze-builder blaze-markup bytestring containers HUnit ··· 27366 27482 ({ mkDerivation, aeson, base, binary, blaze-html, bytestring 27367 27483 , configurator, cryptohash, directory, hashtables, http-types, mtl 27368 27484 , random, Spock, text, transformers, wai, wai-extra 27369 - , wai-middleware-static, warp, xdg-basedir 27485 + , wai-middleware-static, warp, warp-tls, xdg-basedir 27370 27486 }: 27371 27487 mkDerivation { 27372 27488 pname = "breve"; 27373 - version = "0.3.0.0"; 27374 - sha256 = "14vhwicdi1cln594bfhhj65kwaxmimpzg4jh35mrycw0fpbfk6rp"; 27489 + version = "0.4.0.0"; 27490 + sha256 = "1ndzqwxj7dzff75mgjssh7sgrhxlicdwkcx8j71x52rxyav4aa0j"; 27375 27491 isLibrary = false; 27376 27492 isExecutable = true; 27377 27493 buildDepends = [ 27378 27494 aeson base binary blaze-html bytestring configurator cryptohash 27379 27495 directory hashtables http-types mtl random Spock text transformers 27380 - wai wai-extra wai-middleware-static warp xdg-basedir 27496 + wai wai-extra wai-middleware-static warp warp-tls xdg-basedir 27381 27497 ]; 27382 27498 homepage = "https://github.com/rnhmjoj/breve"; 27383 27499 description = "a url shortener"; ··· 28711 28827 }: 28712 28828 mkDerivation { 28713 28829 pname = "cabal-helper"; 28714 - version = "0.3.6.0"; 28715 - sha256 = "1c6pdrq8ypy9halw6cqdasr0zdr0hdb76h66vs9g0qkqqbpgiyyq"; 28830 + version = "0.3.7.0"; 28831 + sha256 = "1lq8i45wvk8rqilay7j9i9iv5irhqvdg3bp96mj2xxaxrpfi7l20"; 28716 28832 isLibrary = true; 28717 28833 isExecutable = true; 28718 28834 buildDepends = [ ··· 30158 30274 }: 30159 30275 mkDerivation { 30160 30276 pname = "cassandra-cql"; 30161 - version = "0.5.0.1"; 30162 - sha256 = "0n1w1hriscrjky3d4qwzzm3p41yg9gvnxyq9sfm3kb7lijc4xj2d"; 30277 + version = "0.5.0.2"; 30278 + sha256 = "1nk0psvmzhvxls4h0p4blrm8qjn6lyh08bdxpiagpw6nrpvbda54"; 30163 30279 buildDepends = [ 30164 30280 base bytestring cereal containers cryptohash Decimal hslogger 30165 30281 MonadCatchIO-transformers mtl network resource-pool stm text time ··· 30881 30997 }) {}; 30882 30998 30883 30999 "cgrep" = callPackage 30884 - ({ mkDerivation, ansi-terminal, array, base, bytestring, cmdargs 30885 - , containers, directory, dlist, either, filepath, ghc-prim, mtl 30886 - , regex-posix, safe, split, stm, stringsearch, unix-compat 31000 + ({ mkDerivation, ansi-terminal, array, async, base, bytestring 31001 + , cmdargs, containers, directory, dlist, either, filepath, ghc-prim 31002 + , mtl, regex-posix, safe, split, stm, stringsearch, unix-compat 30887 31003 , unordered-containers 30888 31004 }: 30889 31005 mkDerivation { 30890 31006 pname = "cgrep"; 30891 - version = "6.4.20"; 30892 - sha256 = "1p0nm6gb7hvxvfkgrync1a66zl58s041pgnkly2vx91cpm6yavcm"; 31007 + version = "6.5.2"; 31008 + sha256 = "021cwllz5cljb9j0klh3xn4jpg2vxfqwqyjm631gkpzndc9711wr"; 30893 31009 isLibrary = false; 30894 31010 isExecutable = true; 30895 31011 buildDepends = [ 30896 - ansi-terminal array base bytestring cmdargs containers directory 30897 - dlist either filepath ghc-prim mtl regex-posix safe split stm 30898 - stringsearch unix-compat unordered-containers 31012 + ansi-terminal array async base bytestring cmdargs containers 31013 + directory dlist either filepath ghc-prim mtl regex-posix safe split 31014 + stm stringsearch unix-compat unordered-containers 30899 31015 ]; 30900 31016 homepage = "http://awgn.github.io/cgrep/"; 30901 31017 description = "Command line tool"; ··· 31832 31948 31833 31949 "clafer" = callPackage 31834 31950 ({ mkDerivation, aeson, array, base, bytestring, cmdargs 31835 - , containers, data-stringmap, directory, executable-path, filepath 31836 - , ghc, HaXml, HTTP, HUnit, json-builder, lens, lens-aeson, mtl 31951 + , containers, data-stringmap, directory, doctest, executable-path 31952 + , filepath, ghc, HTTP, HUnit, json-builder, lens, lens-aeson, mtl 31837 31953 , network, network-uri, parsec, process, QuickCheck, split 31838 31954 , string-conversions, tasty, tasty-hunit, tasty-th, text 31839 31955 , transformers 31840 31956 }: 31841 31957 mkDerivation { 31842 31958 pname = "clafer"; 31843 - version = "0.3.10"; 31844 - sha256 = "0f780l5nh3r93w4ikxliqjg70ih4k4j00s7f4nj1li0dv6bprc3x"; 31959 + version = "0.4.0"; 31960 + sha256 = "1xnjvqwdp7679hr6jkl6xnsrdidw494p1xr8mlng6gybflm8v9gn"; 31845 31961 isLibrary = true; 31846 31962 isExecutable = true; 31847 31963 buildDepends = [ 31848 31964 aeson array base bytestring cmdargs containers data-stringmap 31849 - directory executable-path filepath HaXml HTTP json-builder lens 31965 + directory executable-path filepath HTTP json-builder lens 31850 31966 lens-aeson mtl network network-uri parsec process split 31851 31967 string-conversions text transformers 31852 31968 ]; 31853 31969 testDepends = [ 31854 - base containers data-stringmap directory filepath ghc HaXml HUnit 31970 + base containers data-stringmap directory doctest filepath ghc HUnit 31855 31971 lens lens-aeson mtl QuickCheck tasty tasty-hunit tasty-th 31856 31972 ]; 31857 31973 homepage = "http://clafer.org"; 31858 - description = "clafer compiles Clafer models to other formats, such as Alloy, XML, HTML, Dot"; 31974 + description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; 31859 31975 license = stdenv.lib.licenses.mit; 31860 31976 hydraPlatforms = stdenv.lib.platforms.none; 31861 31977 }) {}; ··· 31868 31984 }: 31869 31985 mkDerivation { 31870 31986 pname = "claferIG"; 31871 - version = "0.3.10"; 31872 - sha256 = "17g4jdfla0x90y2jn54yk56h6ih3d1jk4fzdpfvh85xs6dh79n0x"; 31987 + version = "0.4.0"; 31988 + sha256 = "01ilmmhz1wd142qpclk1b5nksm6cacr07pdj5cl5prfv7y04k9nw"; 31873 31989 isLibrary = true; 31874 31990 isExecutable = true; 31875 31991 buildDepends = [ ··· 31894 32010 }: 31895 32011 mkDerivation { 31896 32012 pname = "claferwiki"; 31897 - version = "0.3.10"; 31898 - sha256 = "0v0nad7n3m8gs3l7prv2kwqzdp93g309j4l3l3dv1ibfnf5jr2l9"; 32013 + version = "0.4.0"; 32014 + sha256 = "1in0lzph5h7v9z9b974ibzh0rq7j343q474i9zfkylmdd1aivdyh"; 31899 32015 buildDepends = [ 31900 32016 base clafer containers directory gitit MissingH mtl network 31901 32017 network-uri process SHA split time transformers utf8-string ··· 31951 32067 }: 31952 32068 mkDerivation { 31953 32069 pname = "clash-ghc"; 31954 - version = "0.5.10"; 31955 - sha256 = "02zv08mkx228fxx1hdraaqmiv1mfq6rgsr3gflh0awyf6x5g6jzn"; 32070 + version = "0.5.11"; 32071 + sha256 = "1lwc47b2iw2l7djga11gp4xdikb8gycqv4fxz1cxrf23xzkg5ggg"; 31956 32072 isLibrary = false; 31957 32073 isExecutable = true; 31958 32074 buildDepends = [ ··· 31978 32094 }: 31979 32095 mkDerivation { 31980 32096 pname = "clash-lib"; 31981 - version = "0.5.9"; 31982 - sha256 = "1kh40vy5sqxpb2akzwyc7k7z251lg3h3a12qj2vq4vkgwx5xcqkh"; 32097 + version = "0.5.10"; 32098 + sha256 = "039j561r7kgrd5b7z55axgjniwm5yi5y1y0azps4ipmvjsvalbdl"; 31983 32099 buildDepends = [ 31984 32100 aeson attoparsec base bytestring clash-prelude concurrent-supply 31985 32101 containers deepseq directory errors fgl filepath hashable lens mtl ··· 31998 32114 }: 31999 32115 mkDerivation { 32000 32116 pname = "clash-prelude"; 32001 - version = "0.9.1"; 32002 - sha256 = "00d4ap4jfw1298g59sfywkjza33s5p5p4n2nc69anwc31lxqnss8"; 32117 + version = "0.9.2"; 32118 + sha256 = "1gl75mbqpv5g5dwg2c2vvqn36ydwhkcv7g6i8gjm41500dsrky0i"; 32003 32119 buildDepends = [ 32004 32120 array base data-default ghc-prim ghc-typelits-natnormalise 32005 32121 integer-gmp lens QuickCheck singletons template-haskell th-lift ··· 33771 33887 }: 33772 33888 mkDerivation { 33773 33889 pname = "comonad"; 33774 - version = "4.2.7"; 33775 - revision = "1"; 33776 - sha256 = "03h36hr7vgxxyxfp9yc87vahbm3d6chvrkcrjh5abxg6i42aflma"; 33777 - editedCabalFile = "70542238a847c5b973832fa7e5623a76a485df25b36d511bfd5f5116e4014619"; 33890 + version = "4.2.7.2"; 33891 + sha256 = "0arvbaxgkawzdp38hh53akkahjg2aa3kj2b4ns0ni8a5ylg2cqmp"; 33778 33892 buildDepends = [ 33779 33893 base containers contravariant distributive semigroups tagged 33780 33894 transformers transformers-compat 33781 33895 ]; 33782 33896 testDepends = [ base directory doctest filepath ]; 33783 - jailbreak = true; 33784 33897 homepage = "http://github.com/ekmett/comonad/"; 33785 33898 description = "Comonads"; 33786 33899 license = stdenv.lib.licenses.bsd3; ··· 34705 34818 }: 34706 34819 mkDerivation { 34707 34820 pname = "conduit-combinators"; 34708 - version = "1.0.1.1"; 34709 - sha256 = "02x0n4yar1s3x73pbaxs6ghd5kihl3wz3svrvvm24xnmwv5j9aaz"; 34821 + version = "1.0.2"; 34822 + sha256 = "1yfck6syqqi5zlp41n3qs8w5ljg63jhg25m8irrcks35n9i541j5"; 34710 34823 buildDepends = [ 34711 34824 base base16-bytestring base64-bytestring bytestring chunked-data 34712 34825 conduit conduit-extra filepath monad-control mono-traversable ··· 35237 35350 }: 35238 35351 mkDerivation { 35239 35352 pname = "consumers"; 35240 - version = "0.1"; 35241 - sha256 = "0y977lhxcaxjw6c760fifmisxn62lji0qs8aqgyag6jmzmkfymdb"; 35353 + version = "1.0"; 35354 + sha256 = "1f7jn9lja9fsznjz7d3wfhbd0dc8whcx9jl74jl39mv20k2sdhib"; 35242 35355 buildDepends = [ 35243 35356 base containers exceptions hpqtypes lifted-base lifted-threads log 35244 35357 monad-control mtl stm time transformers-base ··· 35444 35557 }: 35445 35558 mkDerivation { 35446 35559 pname = "contravariant"; 35447 - version = "1.3.1.1"; 35448 - sha256 = "0kjfild3zp34w745p79658i84k45cg9qjhv154sa0plqgk2vmdfs"; 35560 + version = "1.3.2"; 35561 + sha256 = "0fb6az12604vwvfhnmvxfin68n0fb2jcvrliv3vvrmfnfq3axfjj"; 35449 35562 buildDepends = [ 35450 35563 base semigroups StateVar transformers transformers-compat void 35451 35564 ]; ··· 35852 35965 }: 35853 35966 mkDerivation { 35854 35967 pname = "coordinate"; 35855 - version = "0.0.18"; 35856 - sha256 = "0avag247d74qwy6gikcmva5k41iriba42rkxik781dsnp2caxq1f"; 35968 + version = "0.0.19"; 35969 + sha256 = "01f6dmyx2kqyzf1n06awcyx0ygqgy829snxw6bbxbvih9yhkjq2r"; 35857 35970 buildDepends = [ base lens radian tagged transformers ]; 35858 35971 testDepends = [ 35859 35972 base directory doctest filepath QuickCheck template-haskell ··· 36274 36387 hydraPlatforms = stdenv.lib.platforms.none; 36275 36388 }) {}; 36276 36389 36390 + "cpio-conduit" = callPackage 36391 + ({ mkDerivation, base, base16-bytestring, binary, bytestring 36392 + , conduit, conduit-extra, resourcet 36393 + }: 36394 + mkDerivation { 36395 + pname = "cpio-conduit"; 36396 + version = "0.7.0"; 36397 + sha256 = "04zma03ivg9x5f1xkdpc828fk2lh6qrn7cig7gprci13id9yf2wg"; 36398 + buildDepends = [ 36399 + base base16-bytestring binary bytestring conduit conduit-extra 36400 + ]; 36401 + testDepends = [ 36402 + base base16-bytestring binary bytestring conduit conduit-extra 36403 + resourcet 36404 + ]; 36405 + homepage = "http://github.com/da-x/cpio-conduit"; 36406 + description = "Conduit-based CPIO"; 36407 + license = stdenv.lib.licenses.asl20; 36408 + }) {}; 36409 + 36277 36410 "cplusplus-th" = callPackage 36278 36411 ({ mkDerivation, base, bytestring, containers, process, QuickCheck 36279 36412 , template-haskell ··· 36298 36431 }: 36299 36432 mkDerivation { 36300 36433 pname = "cpphs"; 36301 - version = "1.19"; 36302 - sha256 = "0fiyqyy7zzzbp0jsgl3syvm5db8n42h88ps7qzayxbsycjz9fp70"; 36434 + version = "1.19.2"; 36435 + sha256 = "194hcvhjgm6rmbqp857y3j39lvl2p91mqrrgpi15jq00icnv4idv"; 36303 36436 isLibrary = true; 36304 36437 isExecutable = true; 36305 36438 buildDepends = [ base directory old-locale old-time polyparse ]; ··· 36348 36481 ({ mkDerivation, array, base, containers, parallel }: 36349 36482 mkDerivation { 36350 36483 pname = "cpsa"; 36351 - version = "2.5.1"; 36352 - sha256 = "1lgscv3jkfzr35fwx7aymsgjg3i3sszxdc0hxmrbna8ba509cizk"; 36484 + version = "2.5.2"; 36485 + sha256 = "0zm2waj17ak43rhri9rhvwy970dv22r0k42fzbm3n6gcl5h2mcq5"; 36353 36486 isLibrary = false; 36354 36487 isExecutable = true; 36355 36488 buildDepends = [ array base containers parallel ]; ··· 36420 36553 "cql" = callPackage 36421 36554 ({ mkDerivation, base, bytestring, cereal, Decimal, iproute 36422 36555 , network, QuickCheck, tasty, tasty-quickcheck, template-haskell 36423 - , text, time, transformers, uuid 36556 + , text, time, transformers, uuid, vector 36424 36557 }: 36425 36558 mkDerivation { 36426 36559 pname = "cql"; 36427 - version = "3.0.4"; 36428 - sha256 = "0b4yfmfxb4j039s5il321bc65dmbcbxqvaiqk97ly4fcc8pmdld9"; 36560 + version = "3.0.5"; 36561 + sha256 = "12v5hhlji9w73chxdhazpmhbaxmjs98lw1y6cm8p29bgxdi75q61"; 36429 36562 buildDepends = [ 36430 36563 base bytestring cereal Decimal iproute network template-haskell 36431 - text time transformers uuid 36564 + text time transformers uuid vector 36432 36565 ]; 36433 36566 testDepends = [ 36434 36567 base bytestring cereal Decimal iproute network QuickCheck tasty ··· 36448 36581 }: 36449 36582 mkDerivation { 36450 36583 pname = "cql-io"; 36451 - version = "0.14.4"; 36452 - sha256 = "09nkp0c8brh87x93ib5ss010kh2izzs05ad7gmf7q54zw6qxask2"; 36584 + version = "0.14.5"; 36585 + sha256 = "0ks2sn3dfrr8ilvmw48hfz3140x9dsi79w6ci4vfksn1g5ndnpiy"; 36453 36586 buildDepends = [ 36454 36587 async auto-update base bytestring containers cql cryptohash 36455 36588 data-default-class exceptions hashable iproute lens monad-control ··· 36707 36840 36708 36841 "creatur" = callPackage 36709 36842 ({ mkDerivation, array, base, binary, bytestring, cereal, cond 36710 - , directory, filepath, gray-extended, hdaemonize, hsyslog, HUnit 36711 - , MonadRandom, mtl, old-locale, process, QuickCheck, random, split 36712 - , temporary, test-framework, test-framework-hunit 36843 + , directory, exceptions, filepath, gray-extended, hdaemonize 36844 + , hsyslog, HUnit, MonadRandom, mtl, old-locale, process, QuickCheck 36845 + , random, split, temporary, test-framework, test-framework-hunit 36713 36846 , test-framework-quickcheck2, time, transformers, unix, zlib 36714 36847 }: 36715 36848 mkDerivation { 36716 36849 pname = "creatur"; 36717 - version = "5.9.7"; 36718 - sha256 = "1617whwg9f0l6ji3jmd7fcs3n650mz0jpvrw4hf97r7mqzlyfkjp"; 36850 + version = "5.9.8.2"; 36851 + sha256 = "15cjk5hb4j7ydsis8fz7gag3sa17i6yr26pfbf8aqkw7iakmjqs9"; 36719 36852 buildDepends = [ 36720 - array base bytestring cereal cond directory filepath gray-extended 36721 - hdaemonize hsyslog MonadRandom mtl old-locale process random split 36722 - time transformers unix zlib 36853 + array base bytestring cereal cond directory exceptions filepath 36854 + gray-extended hdaemonize hsyslog MonadRandom mtl old-locale process 36855 + random split time transformers unix zlib 36723 36856 ]; 36724 36857 testDepends = [ 36725 36858 array base binary cereal directory filepath hsyslog HUnit ··· 37385 37518 }: 37386 37519 mkDerivation { 37387 37520 pname = "cryptonite"; 37388 - version = "0.5"; 37389 - sha256 = "17b2axxb9i9cmwjhji1lm5nwhqm2wikxzy1cwmk2v8h64dy0rjc5"; 37521 + version = "0.6"; 37522 + sha256 = "0lzqmhslq1pwj6pp82l3vdnnxbqvh0bqjyl02x2yp6sp72mcq5m0"; 37390 37523 buildDepends = [ 37391 37524 base bytestring deepseq ghc-prim integer-gmp memory 37392 37525 ]; ··· 37465 37598 }: 37466 37599 mkDerivation { 37467 37600 pname = "csound-expression"; 37468 - version = "4.8.1"; 37469 - sha256 = "0mag076inyg9hs37anq7g7545wfjaphk831h8jj1fykp8iag95l4"; 37601 + version = "4.8.2"; 37602 + sha256 = "1zhx4smvs8xnqfcv2hxhq57n16cl3sycz659viw8l6v8f36ibj5i"; 37470 37603 buildDepends = [ 37471 37604 base Boolean colour csound-expression-dynamic 37472 37605 csound-expression-opcodes csound-expression-typed data-default ··· 37501 37634 }: 37502 37635 mkDerivation { 37503 37636 pname = "csound-expression-opcodes"; 37504 - version = "0.0.2"; 37505 - sha256 = "0friwwx0ia2wk75ylmvlladswqfwhza8grsbnqfn5q8ffsjv632r"; 37637 + version = "0.0.3"; 37638 + sha256 = "0f7nwrnrpsi31q9vaxy2yihripzqjzp6683qy94ljkmxmfnm9sb5"; 37506 37639 buildDepends = [ 37507 37640 base csound-expression-dynamic csound-expression-typed transformers 37508 37641 ]; ··· 37518 37651 }: 37519 37652 mkDerivation { 37520 37653 pname = "csound-expression-typed"; 37521 - version = "0.0.7.6"; 37522 - sha256 = "01zi1hychx6vinxpqh7zdcj6jrlcpp86v7cmdzzq42z44apg8d3y"; 37654 + version = "0.0.7.7"; 37655 + sha256 = "1z9hvkgl6lqwrdhngq79425s2frhkg4llkcpsar21d5ld4fhzfdl"; 37523 37656 buildDepends = [ 37524 37657 base Boolean colour containers csound-expression-dynamic 37525 37658 data-default deepseq ghc-prim stable-maps temporal-media ··· 40967 41100 }) {}; 40968 41101 40969 41102 "delta" = callPackage 40970 - ({ mkDerivation, base, containers, directory, filepath 41103 + ({ mkDerivation, base, containers, directory, filepath, hspec 40971 41104 , optparse-applicative, process, sodium, time 40972 41105 }: 40973 41106 mkDerivation { 40974 41107 pname = "delta"; 40975 - version = "0.2.1.1"; 40976 - sha256 = "06msfi733jmqqgxyx5p4mifjgxrgh0x8ls4j0fkcan5377sydjcv"; 41108 + version = "0.2.1.2"; 41109 + revision = "2"; 41110 + sha256 = "0r2a2vffs3rn2xp56nhanyywzbm2wph5664spgj4lbsna6zgjnfj"; 41111 + editedCabalFile = "630e85a07132fe54b49c71f855b3d633982026d78120279e00888bc95a9d14dd"; 40977 41112 isLibrary = true; 40978 41113 isExecutable = true; 40979 41114 buildDepends = [ 40980 41115 base containers directory filepath optparse-applicative process 40981 41116 sodium time 40982 41117 ]; 41118 + testDepends = [ base directory filepath hspec ]; 40983 41119 homepage = "https://github.com/kryoxide/delta"; 40984 41120 description = "A library for detecting file changes"; 40985 41121 license = stdenv.lib.licenses.gpl3; ··· 41064 41200 }: 41065 41201 mkDerivation { 41066 41202 pname = "dependent-sum-template"; 41067 - version = "0.0.0.3"; 41068 - sha256 = "0if3mr0cmaz3yc0hbn0fpx14kwnjsaj3hd8mw9z4va4qp85wya69"; 41203 + version = "0.0.0.4"; 41204 + sha256 = "103jxzzw3drg7pkgmh39s7258zcwr8ixg8mijm6p33b87a8wdpwr"; 41069 41205 buildDepends = [ base dependent-sum template-haskell th-extras ]; 41070 41206 homepage = "/dev/null"; 41071 41207 description = "Template Haskell code to generate instances of classes in dependent-sum package"; ··· 41250 41386 hydraPlatforms = stdenv.lib.platforms.none; 41251 41387 }) {}; 41252 41388 41389 + "deriving-compat" = callPackage 41390 + ({ mkDerivation, base, base-compat, containers, ghc-prim, hspec 41391 + , QuickCheck, template-haskell 41392 + }: 41393 + mkDerivation { 41394 + pname = "deriving-compat"; 41395 + version = "0.1"; 41396 + sha256 = "1v503lj9dds1hwnqhmw8rfbj9337gcyqqzys1d93r7s0bs3glgf3"; 41397 + buildDepends = [ base containers ghc-prim template-haskell ]; 41398 + testDepends = [ base base-compat hspec QuickCheck ]; 41399 + homepage = "https://github.com/haskell-compat/deriving-compat"; 41400 + description = "Backports of GHC deriving extensions"; 41401 + license = stdenv.lib.licenses.bsd3; 41402 + }) {}; 41403 + 41253 41404 "derp" = callPackage 41254 41405 ({ mkDerivation, base, containers }: 41255 41406 mkDerivation { ··· 41338 41489 ({ mkDerivation, base, hspec, mtl }: 41339 41490 mkDerivation { 41340 41491 pname = "deterministic-game-engine"; 41341 - version = "0.2.1"; 41342 - sha256 = "0igs10h0mj8xxw9z57icx4y7mb7ag6m4cg7qiqk3b41xipxqn1ig"; 41492 + version = "0.4.0"; 41493 + sha256 = "1hdwr1vxfng3yc9mdnnsraapikq9kq1c07ik16csgp2ggnhgpprs"; 41343 41494 buildDepends = [ base mtl ]; 41344 41495 testDepends = [ base hspec ]; 41345 41496 homepage = "https://github.com/TGOlson/deterministic-game-engine"; ··· 41725 41876 process semigroups system-filepath tagged text transformers 41726 41877 unordered-containers 41727 41878 ]; 41879 + jailbreak = true; 41728 41880 homepage = "http://projects.haskell.org/diagrams"; 41729 41881 description = "Embedded domain-specific language for declarative graphics"; 41882 + license = stdenv.lib.licenses.bsd3; 41883 + }) {}; 41884 + 41885 + "diagrams-pandoc" = callPackage 41886 + ({ mkDerivation, base, diagrams-builder, diagrams-cairo 41887 + , diagrams-lib, directory, filepath, linear, optparse-applicative 41888 + , pandoc-types 41889 + }: 41890 + mkDerivation { 41891 + pname = "diagrams-pandoc"; 41892 + version = "0.1"; 41893 + sha256 = "02dz0w2im68667v5k1ykdnl3cijvqfd5pgb7qqdyyizkgza88pb4"; 41894 + isLibrary = false; 41895 + isExecutable = true; 41896 + buildDepends = [ 41897 + base diagrams-builder diagrams-cairo diagrams-lib directory 41898 + filepath linear optparse-applicative pandoc-types 41899 + ]; 41900 + description = "A pandoc filter to express diagrams inline using the haskell EDSL _diagrams_"; 41730 41901 license = stdenv.lib.licenses.bsd3; 41731 41902 }) {}; 41732 41903 ··· 44471 44642 44472 44643 "dump" = callPackage 44473 44644 ({ mkDerivation, base, haskell-src-meta, hspec 44474 - , interpolatedstring-perl6, template-haskell, text 44645 + , interpolatedstring-perl6, QuickCheck, template-haskell, text 44475 44646 }: 44476 44647 mkDerivation { 44477 44648 pname = "dump"; 44478 - version = "0.2.6"; 44479 - sha256 = "0rhjx4g83pbm0zfqgz8ykfccaq8wa7wspjc6k1n4d1bgcwkc617y"; 44649 + version = "0.2.8"; 44650 + sha256 = "0p0wwcxm2lgfbx82s226dprd8qa526pnrnpakxmdz5svd6ib0gh4"; 44480 44651 buildDepends = [ 44481 44652 base haskell-src-meta interpolatedstring-perl6 template-haskell 44482 44653 text 44483 44654 ]; 44484 44655 testDepends = [ 44485 - base haskell-src-meta hspec interpolatedstring-perl6 44656 + base haskell-src-meta hspec interpolatedstring-perl6 QuickCheck 44486 44657 template-haskell text 44487 44658 ]; 44488 44659 homepage = "https://github.com/Wizek/dump"; ··· 45594 45765 }) {}; 45595 45766 45596 45767 "ekg" = callPackage 45597 - ({ mkDerivation, aeson, base, bytestring, ekg-core, filepath 45598 - , network, snap-core, snap-server, text, time, transformers 45599 - , unordered-containers 45768 + ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json 45769 + , filepath, network, snap-core, snap-server, text, time 45770 + , transformers, unordered-containers 45600 45771 }: 45601 45772 mkDerivation { 45602 45773 pname = "ekg"; 45603 - version = "0.4.0.7"; 45604 - sha256 = "0isq39a1c8laiigxi5yqv7d6798xc828xh4p0zan0a6m6glrmygr"; 45774 + version = "0.4.0.8"; 45775 + sha256 = "0cp88b5bf4bpjd6qzib00n7j76svwsykzizk52fk1dmknfx8h12v"; 45605 45776 buildDepends = [ 45606 - aeson base bytestring ekg-core filepath network snap-core 45777 + aeson base bytestring ekg-core ekg-json filepath network snap-core 45607 45778 snap-server text time transformers unordered-containers 45608 45779 ]; 45609 45780 homepage = "https://github.com/tibbe/ekg"; ··· 45653 45824 }: 45654 45825 mkDerivation { 45655 45826 pname = "ekg-core"; 45656 - version = "0.1.0.4"; 45657 - sha256 = "04ym37hc2l3k185dbkmfa4n7ya412cgc5zf0kynwgfvdwggjnxwh"; 45827 + version = "0.1.1.0"; 45828 + sha256 = "07h6lwig1cwb526ack1g3f6w8irmaj4kibn11ihhdffk7avix8bv"; 45658 45829 buildDepends = [ 45659 45830 base containers ghc-prim text unordered-containers 45660 45831 ]; 45661 45832 homepage = "https://github.com/tibbe/ekg-core"; 45662 45833 description = "Tracking of system metrics"; 45834 + license = stdenv.lib.licenses.bsd3; 45835 + }) {}; 45836 + 45837 + "ekg-json" = callPackage 45838 + ({ mkDerivation, aeson, base, ekg-core, text, unordered-containers 45839 + }: 45840 + mkDerivation { 45841 + pname = "ekg-json"; 45842 + version = "0.1.0.0"; 45843 + sha256 = "1nhqlajidg94zk6rs86ri5ar4cmkbdz04hwjp8qgam0vgpp5bi2j"; 45844 + buildDepends = [ aeson base ekg-core text unordered-containers ]; 45845 + homepage = "https://github.com/tibbe/ekg-json"; 45846 + description = "JSON encoding of ekg metrics"; 45663 45847 license = stdenv.lib.licenses.bsd3; 45664 45848 }) {}; 45665 45849 ··· 46386 46570 }) {}; 46387 46571 46388 46572 "engine-io-wai" = callPackage 46389 - ({ mkDerivation, attoparsec, base, bytestring, engine-io 46390 - , http-types, mtl, text, transformers, unordered-containers, wai 46391 - , wai-websockets, websockets 46573 + ({ mkDerivation, attoparsec, base, bytestring, either, engine-io 46574 + , http-types, mtl, text, transformers, transformers-compat 46575 + , unordered-containers, wai, wai-websockets, websockets 46392 46576 }: 46393 46577 mkDerivation { 46394 46578 pname = "engine-io-wai"; 46395 - version = "1.0.1"; 46396 - sha256 = "0cr53x8bxfmrx97v7jsb7gw3hqb94zp9xvvnl16080zmqm0gi2rh"; 46579 + version = "1.0.3"; 46580 + sha256 = "0p296y3xnpx0wj6yd152y7i765x0pwg8rg2bpcz92hkcmz57gdz7"; 46397 46581 buildDepends = [ 46398 - attoparsec base bytestring engine-io http-types mtl text 46399 - transformers unordered-containers wai wai-websockets websockets 46582 + attoparsec base bytestring either engine-io http-types mtl text 46583 + transformers transformers-compat unordered-containers wai 46584 + wai-websockets websockets 46400 46585 ]; 46401 46586 homepage = "http://github.com/ocharles/engine.io"; 46402 46587 license = stdenv.lib.licenses.bsd3; ··· 46796 46981 }: 46797 46982 mkDerivation { 46798 46983 pname = "equal-files"; 46799 - version = "0.0.5.1"; 46800 - sha256 = "1rm0hk42xnzix1ba7bxfrc910v4nnhvqk3cbdrxy7avzhad31nbf"; 46984 + version = "0.0.5.2"; 46985 + sha256 = "07n9xdsi00nz9xwd0bqrdn2d03q7dzlrr13wlym5lgc15r7iwf8w"; 46801 46986 isLibrary = false; 46802 46987 isExecutable = true; 46803 46988 buildDepends = [ ··· 47158 47343 }: 47159 47344 mkDerivation { 47160 47345 pname = "esqueleto"; 47161 - version = "2.2.10"; 47162 - sha256 = "0chxxcy52xrhdq7pgwzq3vk9filrrc3mdnx6j26r2ih56j1ac02l"; 47346 + version = "2.2.11"; 47347 + sha256 = "0ldgiim5d23avzqgzmpyb1nfp9xpxc51fc98f3ii8ic4mxn4bjvp"; 47163 47348 buildDepends = [ 47164 47349 base conduit monad-logger persistent resourcet tagged text 47165 47350 transformers unordered-containers ··· 47395 47580 license = stdenv.lib.licenses.mit; 47396 47581 }) {}; 47397 47582 47583 + "euphoria" = callPackage 47584 + ({ mkDerivation, base, containers, data-default, deepseq, elerea 47585 + , enummapset-th, hashable, HUnit, test-framework 47586 + , test-framework-hunit, test-framework-th, transformers 47587 + , unordered-containers 47588 + }: 47589 + mkDerivation { 47590 + pname = "euphoria"; 47591 + version = "0.6.0.1"; 47592 + sha256 = "1bml75lj30y83bln5a7b36gcb9d6gci4vhmr8ins9nz6bc1l29m9"; 47593 + buildDepends = [ 47594 + base containers data-default deepseq elerea enummapset-th hashable 47595 + HUnit transformers unordered-containers 47596 + ]; 47597 + testDepends = [ 47598 + base HUnit test-framework test-framework-hunit test-framework-th 47599 + ]; 47600 + homepage = "http://github.com/tsurucapital/euphoria"; 47601 + description = "Dynamic network FRP with events and continuous values"; 47602 + license = stdenv.lib.licenses.publicDomain; 47603 + }) {}; 47604 + 47398 47605 "eurofxref" = callPackage 47399 47606 ({ mkDerivation, base, bytestring, conduit, containers, failure 47400 47607 , hexpat, http-conduit, http-types, monad-control, mtl, time ··· 47534 47741 }) {}; 47535 47742 47536 47743 "ewe" = callPackage 47537 - ({ mkDerivation, alex, array, base, containers, happy, mtl 47744 + ({ mkDerivation, alex, array, base, containers, happy, mtl, pretty 47538 47745 , transformers 47539 47746 }: 47540 47747 mkDerivation { 47541 47748 pname = "ewe"; 47542 - version = "0.1.0.40"; 47543 - sha256 = "0r9kcpb6j2x4cmg26rvzd2gp4bjjmlsd0rbk1y2dc7vyivd0m14l"; 47749 + version = "0.1.0.44"; 47750 + sha256 = "0v313l0akvw9b3zn7xffy4ixz2c70i40k6kh4vdlrw8dvyv7zxk3"; 47544 47751 isLibrary = false; 47545 47752 isExecutable = true; 47546 - buildDepends = [ array base containers mtl transformers ]; 47753 + buildDepends = [ array base containers mtl pretty transformers ]; 47547 47754 buildTools = [ alex happy ]; 47548 47755 homepage = "http://github.com/jfcmacro/ewe"; 47549 47756 description = "An language using in Programming Languages teaching"; ··· 47584 47791 ({ mkDerivation, base }: 47585 47792 mkDerivation { 47586 47793 pname = "exact-pi"; 47587 - version = "0.2.0.0"; 47588 - sha256 = "0az47bzrkhb5xmws1rpp080kvsq2pcxjgrm0wzjqqbcqiy5pi3f9"; 47794 + version = "0.2.1.1"; 47795 + sha256 = "1f8lxdaal7m4vw8akzwlhn0j3vw5bh983f02j842g1vzs3n47x3g"; 47589 47796 buildDepends = [ base ]; 47590 47797 homepage = "https://github.com/dmcclean/exact-pi"; 47591 47798 description = "Exact rational multiples of pi (and integer powers of pi)"; ··· 48170 48377 }: 48171 48378 mkDerivation { 48172 48379 pname = "extra"; 48173 - version = "1.4"; 48174 - sha256 = "1cp9vsqgjc46v1i8w8lhakdk1qj6q2bd0y365qj0madpjj7q1qi8"; 48380 + version = "1.4.1"; 48381 + sha256 = "00fhy9l2cgfwj8873jf1iyz2fmhj1b3m0qlf38i4pd1yad8sfb70"; 48175 48382 buildDepends = [ base directory filepath process time unix ]; 48176 48383 testDepends = [ base directory filepath QuickCheck time unix ]; 48177 48384 homepage = "https://github.com/ndmitchell/extra#readme"; ··· 48411 48618 }: 48412 48619 mkDerivation { 48413 48620 pname = "fast-builder"; 48414 - version = "0.0.0.0"; 48415 - sha256 = "1ga28vxsv4hk8491jv51jd8xqvafss56kkm97x2ma4naqx4v6snw"; 48621 + version = "0.0.0.2"; 48622 + sha256 = "07fnn282ldfmgkfnsdnjr11hx89jhw7waz573a7nx2a329r1p4pf"; 48416 48623 buildDepends = [ base bytestring ghc-prim ]; 48417 48624 testDepends = [ base bytestring process QuickCheck stm ]; 48418 48625 homepage = "http://github.com/takano-akio/fast-builder"; ··· 48420 48627 license = stdenv.lib.licenses.publicDomain; 48421 48628 }) {}; 48422 48629 48630 + "fast-digits" = callPackage 48631 + ({ mkDerivation, base, digits, integer-gmp, QuickCheck, smallcheck 48632 + , tasty, tasty-quickcheck, tasty-smallcheck 48633 + }: 48634 + mkDerivation { 48635 + pname = "fast-digits"; 48636 + version = "0.1.0.0"; 48637 + sha256 = "1dhvlsjbp4qrgcr9xlzbaps59160j2zl98xl5nrz6rffypz0gi72"; 48638 + buildDepends = [ base integer-gmp ]; 48639 + testDepends = [ 48640 + base digits QuickCheck smallcheck tasty tasty-quickcheck 48641 + tasty-smallcheck 48642 + ]; 48643 + homepage = "https://github.com/Bodigrim/fast-digits"; 48644 + description = "The fast library for integer-to-digits conversion"; 48645 + license = stdenv.lib.licenses.gpl3; 48646 + }) {}; 48647 + 48423 48648 "fast-logger" = callPackage 48424 48649 ({ mkDerivation, array, auto-update, base, bytestring 48425 48650 , bytestring-builder, directory, filepath, hspec, text ··· 48443 48668 ({ mkDerivation, base }: 48444 48669 mkDerivation { 48445 48670 pname = "fast-math"; 48446 - version = "1.0.1"; 48447 - sha256 = "1a36mvrdr8gai4sn1s52fyc8alcl6ks6dlmr77df5dgvc2z74hhb"; 48671 + version = "1.0.2"; 48672 + sha256 = "15dyw88z9abiv6n40fz4g3jpj9v6qbxvqaf0ds32wh46igf1s425"; 48448 48673 buildDepends = [ base ]; 48449 48674 description = "Non IEEE-754 compliant compile-time floating-point optimisations"; 48450 48675 license = stdenv.lib.licenses.bsd3; ··· 48503 48728 }: 48504 48729 mkDerivation { 48505 48730 pname = "fasta"; 48506 - version = "0.7.2.0"; 48507 - sha256 = "1zsghi7883y4ygl0iammfh1dmnsnh3x4ly77jhxg8xz8saw7dbir"; 48731 + version = "0.7.2.1"; 48732 + sha256 = "1jwx8h3z3zlrnandqgmgrkam4y0awm3k1mfzljf7pn9acq6nxhs4"; 48508 48733 buildDepends = [ 48509 48734 base bytestring containers foldl lens parsec pipes pipes-bytestring 48510 48735 pipes-group pipes-text split text ··· 49277 49502 }: 49278 49503 mkDerivation { 49279 49504 pname = "fgl"; 49280 - version = "5.5.2.0"; 49281 - sha256 = "1r9vkv5v32nyqghr4fq3ijrdl2sr9bncfpj3zix53h5m2zyn7kg3"; 49505 + version = "5.5.2.1"; 49506 + sha256 = "1nfm3gkr6cccqhi1g46k2d0l99yw2vq7xjd1hxxzcci5gidp8bhc"; 49282 49507 buildDepends = [ array base containers deepseq transformers ]; 49283 49508 testDepends = [ base containers hspec QuickCheck ]; 49284 49509 description = "Martin Erwig's Functional Graph Library"; ··· 49600 49825 }: 49601 49826 mkDerivation { 49602 49827 pname = "filestore"; 49603 - version = "0.6.0.6"; 49604 - sha256 = "1lknngdg1c4a58qxbzzvpy72nx1pncm2p4akid2b3s7ydl7j96xr"; 49828 + version = "0.6.1"; 49829 + sha256 = "0mfllnnb1mqix1v65fyhd9jsvnrjbawd6l4h4012jk8401zwj280"; 49605 49830 buildDepends = [ 49606 49831 base bytestring containers Diff directory filepath old-locale 49607 49832 parsec process split time utf8-string xml ··· 51820 52045 }) {}; 51821 52046 51822 52047 "fsnotify" = callPackage 51823 - ({ mkDerivation, async, base, containers, directory, hinotify 51824 - , system-fileio, system-filepath, tasty, tasty-hunit, temporary-rc 51825 - , text, time 52048 + ({ mkDerivation, async, base, containers, directory, filepath 52049 + , hinotify, tasty, tasty-hunit, temporary-rc, text, time 52050 + , unix-compat 51826 52051 }: 51827 52052 mkDerivation { 51828 52053 pname = "fsnotify"; 51829 - version = "0.1.0.3"; 51830 - sha256 = "0m6jyg45azk377jklgwyqrx95q174cxd5znpyh9azznkh09wq58z"; 52054 + version = "0.2.1"; 52055 + sha256 = "0asl313a52qx2w6dw25g845683xsl840bwjh118nkwi5v1xipkzb"; 51831 52056 buildDepends = [ 51832 - async base containers hinotify system-fileio system-filepath text 51833 - time 52057 + async base containers directory filepath hinotify text time 52058 + unix-compat 51834 52059 ]; 51835 52060 testDepends = [ 51836 - async base directory system-fileio system-filepath tasty 51837 - tasty-hunit temporary-rc 52061 + async base directory filepath tasty tasty-hunit temporary-rc 52062 + unix-compat 51838 52063 ]; 52064 + homepage = "https://github.com/haskell-fswatch/hfsnotify"; 51839 52065 description = "Cross platform library for file change notification"; 51840 52066 license = stdenv.lib.licenses.bsd3; 51841 52067 }) {}; ··· 52274 52500 license = stdenv.lib.licenses.bsd3; 52275 52501 }) {}; 52276 52502 52503 + "fuzzy" = callPackage 52504 + ({ mkDerivation, base, HUnit, monoid-subclasses }: 52505 + mkDerivation { 52506 + pname = "fuzzy"; 52507 + version = "0.1.0.0"; 52508 + sha256 = "1jz9arrg33x64ygipk0115b7jfchxh20cy14177iwg0na8mpl2l2"; 52509 + buildDepends = [ base monoid-subclasses ]; 52510 + testDepends = [ base HUnit ]; 52511 + homepage = "http://github.com/joom/fuzzy"; 52512 + description = "Filters a list based on a fuzzy string search"; 52513 + license = stdenv.lib.licenses.mit; 52514 + }) {}; 52515 + 52277 52516 "fuzzy-timings" = callPackage 52278 52517 ({ mkDerivation, base, containers, glpk-hs, HUnit, mtl, QuickCheck 52279 52518 , random, test-framework, test-framework-hunit ··· 52315 52554 }: 52316 52555 mkDerivation { 52317 52556 pname = "fwgl"; 52318 - version = "0.1.2.0"; 52319 - revision = "1"; 52320 - sha256 = "1b18xzxbbrnmmvjgmzhy5r4ww7rvbli76m7vh3li30fb95k1sznr"; 52321 - editedCabalFile = "d97edefc7ee59578d181dfc36d85b1a82a6e0c9ed1bb602918655a3439a5eb51"; 52557 + version = "0.1.2.2"; 52558 + sha256 = "1s4j1wgnncn6cmsarsc989zxz1qsqhsa722h7bv2k43093ww0nnh"; 52322 52559 buildDepends = [ 52323 52560 base hashable transformers unordered-containers vector Yampa 52324 52561 ]; ··· 52334 52571 }: 52335 52572 mkDerivation { 52336 52573 pname = "fwgl-glfw"; 52337 - version = "0.1.0.4"; 52338 - revision = "1"; 52339 - sha256 = "1pph1arlmi905rkcjcn3yf5ypdmk82363vgdmwg26dbrb2sb4cs8"; 52340 - editedCabalFile = "26e4026f5ac7fe57292c5df79d35894b736728c31cad845f11641d833f789fb8"; 52574 + version = "0.1.0.5"; 52575 + sha256 = "1y30mqayih5cd74dm90y7mbb9a0fw9sirzjlrmayvcm7aniyvmql"; 52341 52576 buildDepends = [ 52342 52577 base fwgl gl GLFW-b hashable JuicyPixels transformers 52343 52578 unordered-containers vector Yampa ··· 52354 52589 }: 52355 52590 mkDerivation { 52356 52591 pname = "fwgl-javascript"; 52357 - version = "0.1.0.4"; 52358 - sha256 = "1bwg6dzp2kgny5s6zygdi120pcrdclql22rgp43vhwim5aqkp9d7"; 52592 + version = "0.1.0.6"; 52593 + sha256 = "0fxnnjp7403c29pjks739j0j92a1sldrrxg3sp4nrjb1ax01nia9"; 52359 52594 buildDepends = [ 52360 52595 base fwgl ghcjs-base hashable unordered-containers Yampa 52361 52596 ]; ··· 53332 53567 }) {}; 53333 53568 53334 53569 "getopt-generics" = callPackage 53335 - ({ mkDerivation, base, base-compat, base-orphans, generics-sop 53336 - , hspec, hspec-expectations, markdown-unlit, QuickCheck, silently 53337 - , tagged 53570 + ({ mkDerivation, base, base-compat, base-orphans, directory 53571 + , filepath, generics-sop, hspec, process, QuickCheck, silently 53572 + , tagged, temporary 53338 53573 }: 53339 53574 mkDerivation { 53340 53575 pname = "getopt-generics"; 53341 - version = "0.8"; 53342 - sha256 = "0qxdr9y3dvr4w7hhbgkianaijsqfh36gfwh1blhbr1nf7cv9khmd"; 53576 + version = "0.10.0.1"; 53577 + sha256 = "0x8vh0sng1m05blxr24ijrz16bsyvryxkk70jqkdvq173x5fj8lf"; 53343 53578 buildDepends = [ 53344 53579 base base-compat base-orphans generics-sop tagged 53345 53580 ]; 53346 53581 testDepends = [ 53347 - base base-compat base-orphans generics-sop hspec hspec-expectations 53348 - markdown-unlit QuickCheck silently tagged 53582 + base base-compat base-orphans directory filepath generics-sop hspec 53583 + process QuickCheck silently tagged temporary 53349 53584 ]; 53350 53585 homepage = "https://github.com/zalora/getopt-generics#readme"; 53351 - description = "Simple command line argument parsing"; 53586 + description = "Create command line interfaces with ease"; 53352 53587 license = stdenv.lib.licenses.bsd3; 53353 53588 }) {}; 53354 53589 ··· 53532 53767 53533 53768 "ghc-exactprint" = callPackage 53534 53769 ({ mkDerivation, base, containers, directory, filemanip, filepath 53535 - , free, ghc, ghc-paths, HUnit, mtl, random, silently, syb 53770 + , free, ghc, ghc-paths, HUnit, mtl, silently, syb 53536 53771 }: 53537 53772 mkDerivation { 53538 53773 pname = "ghc-exactprint"; 53539 - version = "0.3"; 53540 - sha256 = "0wgqlll95fbxnni1dzlyiyb4d7lqp3hrfw9xh5hqsnqm45smi7j1"; 53774 + version = "0.3.1"; 53775 + sha256 = "07kyifdh8s7jjp1jsm9f823hr0axgpxv54fr0vg8k3ibhdrw5dj1"; 53541 53776 isLibrary = true; 53542 53777 isExecutable = true; 53543 53778 buildDepends = [ ··· 53545 53780 ]; 53546 53781 testDepends = [ 53547 53782 base containers directory filemanip filepath ghc ghc-paths HUnit 53548 - mtl random silently syb 53783 + mtl silently syb 53549 53784 ]; 53785 + jailbreak = true; 53550 53786 description = "ExactPrint for GHC"; 53551 53787 license = stdenv.lib.licenses.bsd3; 53552 53788 hydraPlatforms = stdenv.lib.platforms.none; ··· 54060 54296 }) {}; 54061 54297 54062 54298 "ghcjs-dom" = callPackage 54063 - ({ mkDerivation, base, glib, gtk3, mtl, text, transformers 54064 - , webkitgtk3 54299 + ({ mkDerivation, base, glib, gtk, mtl, text, transformers, webkit 54065 54300 }: 54066 54301 mkDerivation { 54067 54302 pname = "ghcjs-dom"; 54068 54303 version = "0.1.1.3"; 54069 54304 sha256 = "0pdxb2s7fflrh8sbqakv0qi13jkn3d0yc32xhg2944yfjg5fvlly"; 54070 - buildDepends = [ base glib gtk3 mtl text transformers webkitgtk3 ]; 54305 + buildDepends = [ base glib gtk mtl text transformers webkit ]; 54071 54306 description = "DOM library that supports both GHCJS and WebKitGTK"; 54072 54307 license = stdenv.lib.licenses.mit; 54073 54308 }) {}; ··· 54218 54453 }: 54219 54454 mkDerivation { 54220 54455 pname = "gipeda"; 54221 - version = "0.1.2"; 54222 - sha256 = "0a32q4gi0vfmgvy4ir0ng52nk2gkfxcivyybh5bfh04b3saf5ya4"; 54456 + version = "0.1.2.1"; 54457 + sha256 = "0wra67d2jdnx463vw8hf2yzzwmnkbs9791x5mgarlgc6zj68g926"; 54223 54458 isLibrary = false; 54224 54459 isExecutable = true; 54225 54460 buildDepends = [ ··· 54227 54462 gitlib gitlib-libgit2 scientific shake split tagged text 54228 54463 unordered-containers vector yaml 54229 54464 ]; 54230 - jailbreak = true; 54231 54465 homepage = "https://github.com/nomeata/gipeda"; 54232 54466 description = "Git Performance Dashboard"; 54233 54467 license = stdenv.lib.licenses.mit; ··· 54280 54514 , git, gnupg, gnutls, hinotify, hslogger, http-client, http-conduit 54281 54515 , http-types, IfElse, json, lsof, MissingH, monad-control 54282 54516 , monad-logger, mtl, network, network-info, network-multicast 54283 - , network-protocol-xmpp, network-uri, openssh, optparse-applicative 54284 - , path-pieces, perl, persistent, persistent-sqlite 54285 - , persistent-template, process, QuickCheck, random, regex-tdfa 54286 - , resourcet, rsync, SafeSemaphore, sandi, securemem, shakespeare 54287 - , stm, tasty, tasty-hunit, tasty-quickcheck, tasty-rerun 54288 - , template-haskell, text, time, torrent, transformers, unix 54289 - , unix-compat, utf8-string, uuid, wai, wai-extra, warp, warp-tls 54290 - , wget, which, xml-types, yesod, yesod-core, yesod-default 54291 - , yesod-form, yesod-static 54517 + , network-protocol-xmpp, network-uri, old-locale, openssh 54518 + , optparse-applicative, path-pieces, perl, persistent 54519 + , persistent-sqlite, persistent-template, process, QuickCheck 54520 + , random, regex-tdfa, resourcet, rsync, SafeSemaphore, sandi 54521 + , securemem, shakespeare, stm, tasty, tasty-hunit, tasty-quickcheck 54522 + , tasty-rerun, template-haskell, text, time, torrent, transformers 54523 + , unix, unix-compat, utf8-string, uuid, wai, wai-extra, warp 54524 + , warp-tls, wget, which, xml-types, yesod, yesod-core 54525 + , yesod-default, yesod-form, yesod-static 54292 54526 }: 54293 54527 mkDerivation { 54294 54528 pname = "git-annex"; 54295 - version = "5.20150710"; 54296 - sha256 = "0q7q8ikgv3dhvs3vad04z1bfa6l92v97jrh0n4zqc0c44wx9a3wp"; 54529 + version = "5.20150731"; 54530 + sha256 = "18akv0xj4mf2ypzzd12briv0rw9ba7xw8k1qxvl10m9z4x6gvvm2"; 54297 54531 isLibrary = false; 54298 54532 isExecutable = true; 54299 54533 buildDepends = [ ··· 54303 54537 edit-distance esqueleto exceptions fdo-notify feed filepath gnutls 54304 54538 hinotify hslogger http-client http-conduit http-types IfElse json 54305 54539 MissingH monad-control monad-logger mtl network network-info 54306 - network-multicast network-protocol-xmpp network-uri 54540 + network-multicast network-protocol-xmpp network-uri old-locale 54307 54541 optparse-applicative path-pieces persistent persistent-sqlite 54308 54542 persistent-template process QuickCheck random regex-tdfa resourcet 54309 54543 SafeSemaphore sandi securemem shakespeare stm tasty tasty-hunit ··· 54739 54973 }: 54740 54974 mkDerivation { 54741 54975 pname = "gitit"; 54742 - version = "0.11"; 54743 - sha256 = "1833rxx3c28rvjz1h1nnm0h838zl941zr51r3dp89zn59rs72hn9"; 54976 + version = "0.11.1"; 54977 + sha256 = "06wxy4hpbkbmlwrgnsxbr47k2a791094gzqsmlqzhsq6wa1bgfr9"; 54744 54978 isLibrary = true; 54745 54979 isExecutable = true; 54746 54980 buildDepends = [ ··· 55083 55317 }: 55084 55318 mkDerivation { 55085 55319 pname = "glib"; 55086 - version = "0.13.1.1"; 55087 - sha256 = "1wa3kfwwb7hf5g0hw1vcmrgcxd4pykvzbvc6ylx7903vxqbb9574"; 55320 + version = "0.13.2.1"; 55321 + sha256 = "1pxc2a0hnjaryf3f8d410rnhxmc7byx6lwcypgqg4zma6r3qhqwp"; 55088 55322 buildDepends = [ base bytestring containers text utf8-string ]; 55089 55323 buildTools = [ gtk2hs-buildtools ]; 55090 55324 pkgconfigDepends = [ glib ]; ··· 55277 55511 mkDerivation { 55278 55512 pname = "gloss-banana"; 55279 55513 version = "0.1.0.4"; 55514 + revision = "1"; 55280 55515 sha256 = "0zzpdryfcqvxpzv53ymsvkm2nza9ryvzqgf3n89pnvrni91avgj3"; 55516 + editedCabalFile = "232cec279cb20afd92056320c24d3d3041199b014981492ddbbe57eeff312a5a"; 55281 55517 buildDepends = [ base gloss reactive-banana ]; 55282 - jailbreak = true; 55283 55518 homepage = "https://github.com/Twey/gloss-banana"; 55284 55519 description = "An Interface for gloss in terms of a reactive-banana Behavior"; 55285 55520 license = stdenv.lib.licenses.gpl3; ··· 55405 55640 ({ mkDerivation, array, base, containers, deepseq, glpk, mtl }: 55406 55641 mkDerivation { 55407 55642 pname = "glpk-hs"; 55408 - version = "0.3.4"; 55409 - sha256 = "0wyasd0dqi5nnh52lx980vnyhm0rwib0sd7qnpj4s9hq8rn994cm"; 55643 + version = "0.3.5"; 55644 + sha256 = "1nx0mcy009cj1h2fsz00qfpr9zawagwsp3w370251hdc5q6bw52p"; 55410 55645 buildDepends = [ array base containers deepseq mtl ]; 55411 55646 extraLibraries = [ glpk ]; 55412 55647 description = "Comprehensive GLPK linear programming bindings"; ··· 56343 56578 }) {}; 56344 56579 56345 56580 "graphics-drawingcombinators" = callPackage 56346 - ({ mkDerivation, base, bitmap, FTGL, OpenGL, stb-image }: 56581 + ({ mkDerivation, base, bitmap, bitmap-opengl, FTGL, OpenGL 56582 + , stb-image 56583 + }: 56347 56584 mkDerivation { 56348 56585 pname = "graphics-drawingcombinators"; 56349 - version = "1.5"; 56350 - sha256 = "064g5zcdm0xpczyf8xwx0q0yr6jrd54461qpfxbvsh90lq0pa051"; 56586 + version = "1.5.1"; 56587 + sha256 = "0j0ilr54pdz61c78khy8bm37g89cvk1n56h5d6c55jabsv5gx3sf"; 56351 56588 isLibrary = true; 56352 56589 isExecutable = true; 56353 - buildDepends = [ base bitmap FTGL OpenGL stb-image ]; 56590 + buildDepends = [ base bitmap bitmap-opengl FTGL OpenGL stb-image ]; 56354 56591 jailbreak = true; 56355 56592 homepage = "http://github.com/luqui/graphics-drawingcombinators"; 56356 56593 description = "A functional interface to 2D drawing in OpenGL"; ··· 56586 56823 license = stdenv.lib.licenses.bsd3; 56587 56824 }) {}; 56588 56825 56826 + "gridland" = callPackage 56827 + ({ mkDerivation, array, astar, base, containers, grid, htiled, mtl 56828 + , random, safe, SDL, SDL-gfx, SDL-image, SDL-mixer, tuple, vector 56829 + }: 56830 + mkDerivation { 56831 + pname = "gridland"; 56832 + version = "0.1.0.3"; 56833 + sha256 = "0q5p73n6h5ngg992f1msdqzxds2baafjypdx53zf2rdhbqp4fdi9"; 56834 + isLibrary = true; 56835 + isExecutable = true; 56836 + buildDepends = [ 56837 + array astar base containers grid htiled mtl random safe SDL SDL-gfx 56838 + SDL-image SDL-mixer tuple vector 56839 + ]; 56840 + description = "Grid-based multimedia engine"; 56841 + license = stdenv.lib.licenses.mit; 56842 + }) {}; 56843 + 56589 56844 "grm" = callPackage 56590 56845 ({ mkDerivation, base, Cabal, cmdargs, directory, filepath, happy 56591 56846 , parsec, process, syb, wl-pprint ··· 57265 57520 }: 57266 57521 mkDerivation { 57267 57522 pname = "gtk3"; 57268 - version = "0.13.9"; 57269 - sha256 = "1zmcvp295sknc2h529nprclw11lnwp79dniyyg573wc99bdzijvr"; 57523 + version = "0.14.0"; 57524 + sha256 = "1j6nwjvjmzb144vbizraax0yf5bbkicg5hx2mm4z9ayacf58sm7c"; 57270 57525 isLibrary = true; 57271 57526 isExecutable = true; 57272 57527 buildDepends = [ ··· 57276 57531 buildTools = [ gtk2hs-buildtools ]; 57277 57532 pkgconfigDepends = [ gtk3 ]; 57278 57533 homepage = "http://projects.haskell.org/gtk2hs/"; 57279 - description = "Binding to the Gtk+ graphical user interface library"; 57534 + description = "Binding to the Gtk+ 3 graphical user interface library"; 57280 57535 license = stdenv.lib.licenses.lgpl21; 57281 57536 }) { gtk3 = null;}; 57282 57537 ··· 57286 57541 }: 57287 57542 mkDerivation { 57288 57543 pname = "gtk3-mac-integration"; 57289 - version = "0.3.1.1"; 57290 - sha256 = "0j6fpzk1gq1y15cjpkq3k1azkn7xvlqiidn3m0g9czz5iy303adv"; 57544 + version = "0.3.2.0"; 57545 + sha256 = "0m7659ca92w9yhd1fnraa255sx74qjagwsavd3navl41h687bzqj"; 57291 57546 buildDepends = [ array base containers glib gtk3 mtl ]; 57292 57547 buildTools = [ gtk2hs-buildtools ]; 57293 57548 pkgconfigDepends = [ gtk-mac-integration-gtk3 ]; ··· 57375 57630 }: 57376 57631 mkDerivation { 57377 57632 pname = "gtksourceview3"; 57378 - version = "0.13.1.5"; 57379 - sha256 = "15bm58pr92izhwa0sqf8vkzfcg1455947cgl29ak2kwaj3fkzbq1"; 57633 + version = "0.13.2.0"; 57634 + sha256 = "0chn0rl5kkfi7y02h1x0gfkpbm4hfcl6pxrbdpfv20jk4m88a0qj"; 57380 57635 buildDepends = [ array base containers glib gtk3 mtl text ]; 57381 57636 buildTools = [ gtk2hs-buildtools ]; 57382 57637 pkgconfigDepends = [ gtksourceview ]; ··· 58808 59063 }: 58809 59064 mkDerivation { 58810 59065 pname = "hadoop-tools"; 58811 - version = "0.6"; 58812 - revision = "2"; 58813 - sha256 = "1nkkv9i0qk4k9vijabf1lylq8wsfsycllxvkza7abljii5jpj5fp"; 58814 - editedCabalFile = "31166d3ed285e22977d237a1ae42d29b33503ad7be39c11f97b5890571da19ec"; 59066 + version = "0.7.2"; 59067 + sha256 = "0grwi26xardg8fxvz7g10v9111bgph77s3pdrr58r9hqgm8lhx5v"; 58815 59068 isLibrary = false; 58816 59069 isExecutable = true; 58817 59070 buildDepends = [ ··· 59089 59342 , process, QuickCheck, random, regex-base, regex-tdfa, snap-core 59090 59343 , snap-server, system-filepath, tagsoup, test-framework 59091 59344 , test-framework-hunit, test-framework-quickcheck2, text, time 59345 + , time-locale-compat 59092 59346 }: 59093 59347 mkDerivation { 59094 59348 pname = "hakyll"; 59095 - version = "4.7.2.0"; 59096 - sha256 = "0krj7kaikdbxiqkcd5c3pyhp3zchgy74dzx336f8x1ywlja4802r"; 59349 + version = "4.7.2.2"; 59350 + sha256 = "1gy7j15qqh8m0wf8xkpb1hglahylwyy7vq6c4bm9arap3viak29c"; 59097 59351 isLibrary = true; 59098 59352 isExecutable = true; 59099 59353 buildDepends = [ ··· 59102 59356 http-conduit http-types lrucache mtl network network-uri pandoc 59103 59357 pandoc-citeproc parsec process random regex-base regex-tdfa 59104 59358 snap-core snap-server system-filepath tagsoup text time 59359 + time-locale-compat 59105 59360 ]; 59106 59361 testDepends = [ 59107 59362 base binary blaze-html blaze-markup bytestring cmdargs containers ··· 59143 59398 Agda base containers directory filepath hakyll mtl pandoc 59144 59399 transformers xhtml 59145 59400 ]; 59401 + jailbreak = true; 59146 59402 homepage = "https://github.com/bitonic/hakyll-agda"; 59147 59403 description = "Wrapper to integrate literate Agda files with Hakyll"; 59148 59404 license = stdenv.lib.licenses.bsd3; ··· 59659 59915 isExecutable = true; 59660 59916 buildDepends = [ base glib gtk3 text ]; 59661 59917 pkgconfigDepends = [ appindicator ]; 59918 + jailbreak = true; 59662 59919 homepage = "https://github.com/mlacorte/happindicator3"; 59663 59920 description = "Binding to the appindicator library"; 59664 59921 license = stdenv.lib.licenses.lgpl21; ··· 60654 60911 60655 60912 "hashable-extras" = callPackage 60656 60913 ({ mkDerivation, base, bifunctors, bytestring, directory, doctest 60657 - , filepath, generic-deriving, hashable, transformers 60914 + , filepath, hashable, transformers 60658 60915 }: 60659 60916 mkDerivation { 60660 60917 pname = "hashable-extras"; 60661 - version = "0.2.1"; 60662 - sha256 = "02hzffyns0id9vhaqzax7ijprh1pfb8llrfi67hmji2wrh3nvmml"; 60918 + version = "0.2.2"; 60919 + sha256 = "118l23n78xs1faa0q42h996q210l2p9mzl85a73krljzsz8wkc1b"; 60663 60920 buildDepends = [ 60664 - base bifunctors bytestring generic-deriving hashable transformers 60921 + base bifunctors bytestring hashable transformers 60665 60922 ]; 60666 60923 testDepends = [ base directory doctest filepath ]; 60667 - jailbreak = true; 60668 60924 homepage = "http://github.com/analytics/hashable-extras/"; 60669 60925 description = "Higher-rank Hashable"; 60670 60926 license = stdenv.lib.licenses.bsd3; ··· 62209 62465 }: 62210 62466 mkDerivation { 62211 62467 pname = "haskellscrabble"; 62212 - version = "1.0"; 62213 - sha256 = "099qhvi7v7bimjqdlnz6scmyr7xqxjk65y861630n9jr133bclnz"; 62468 + version = "1.1"; 62469 + sha256 = "1wb9ncpzsacvwk8gmh8gzxm54viwlzsikj05lk14gpyp8xwhl54h"; 62214 62470 buildDepends = [ 62215 62471 array arrows base containers errors mtl parsec QuickCheck random 62216 62472 safe semigroups split transformers unordered-containers ··· 62890 63146 }) {}; 62891 63147 62892 63148 "haste-compiler" = callPackage 62893 - ({ mkDerivation, array, base, binary, blaze-builder, bytestring 62894 - , bzlib, containers, data-binary-ieee754, data-default, directory 62895 - , either, filepath, ghc, ghc-paths, ghc-prim, HTTP, monads-tf, mtl 62896 - , network, network-uri, process, random, shellmate, system-fileio 62897 - , tar, transformers, utf8-string, websockets 63149 + ({ mkDerivation, array, base, bin-package-db, binary, blaze-builder 63150 + , bytestring, bzlib, Cabal, containers, data-binary-ieee754 63151 + , data-default, directory, either, filepath, ghc, ghc-paths 63152 + , ghc-prim, ghc-simple, HTTP, monads-tf, mtl, network, network-uri 63153 + , process, random, shellmate, system-fileio, tar, terminfo 63154 + , transformers, unix, utf8-string, websockets 62898 63155 }: 62899 63156 mkDerivation { 62900 63157 pname = "haste-compiler"; 62901 - version = "0.4.4.4"; 62902 - revision = "1"; 62903 - sha256 = "19raiciwll7pgc73h2h704yi9wcifcn7s2gxyjrndp6d7kf1ygyy"; 62904 - editedCabalFile = "de636e39473869692b1fa1dd6047fc2987b6f63c1403a511aab6bd1dcaa98f6f"; 63158 + version = "0.5.0"; 63159 + sha256 = "18n9sl9m2fpzshpj3gqvd7wlmvz5mrgsz8awcd3imcb7136qa9s9"; 62905 63160 isLibrary = true; 62906 63161 isExecutable = true; 62907 63162 buildDepends = [ 62908 - array base binary blaze-builder bytestring bzlib containers 62909 - data-binary-ieee754 data-default directory either filepath ghc 62910 - ghc-paths ghc-prim HTTP monads-tf mtl network network-uri process 62911 - random shellmate system-fileio tar transformers utf8-string 62912 - websockets 63163 + array base bin-package-db binary blaze-builder bytestring bzlib 63164 + Cabal containers data-binary-ieee754 data-default directory either 63165 + filepath ghc ghc-paths ghc-prim ghc-simple HTTP monads-tf mtl 63166 + network network-uri process random shellmate system-fileio tar 63167 + terminfo transformers unix utf8-string websockets 62913 63168 ]; 62914 63169 configureFlags = [ "-fportable" ]; 62915 63170 homepage = "http://haste-lang.org/"; ··· 63897 64152 }) {}; 63898 64153 63899 64154 "hdocs" = callPackage 63900 - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers 63901 - , filepath, ghc, ghc-paths, haddock-api, haddock-library 63902 - , MonadCatchIO-transformers, mtl, network, process, text 63903 - , transformers 64155 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal 64156 + , containers, filepath, ghc, ghc-paths, haddock-api 64157 + , haddock-library, MonadCatchIO-transformers, mtl, network, process 64158 + , text, transformers 63904 64159 }: 63905 64160 mkDerivation { 63906 64161 pname = "hdocs"; 63907 - version = "0.4.3.0"; 63908 - sha256 = "10z4aq9f3gy6cqkhz0dxp0q3rr9625hka3c4w4cbczad2qgciiil"; 64162 + version = "0.4.4.0"; 64163 + sha256 = "153rwd1f390j6sjfxx135h3bh80pb8zb5myws9q8d0jkrx2sl198"; 63909 64164 isLibrary = true; 63910 64165 isExecutable = true; 63911 64166 buildDepends = [ 63912 - aeson aeson-pretty base bytestring containers filepath ghc 64167 + aeson aeson-pretty base bytestring Cabal containers filepath ghc 63913 64168 ghc-paths haddock-api haddock-library MonadCatchIO-transformers mtl 63914 64169 network process text transformers 63915 64170 ]; ··· 63959 64214 description = "Explicit closures in Haskell distributed parallel Haskell"; 63960 64215 license = stdenv.lib.licenses.bsd3; 63961 64216 hydraPlatforms = stdenv.lib.platforms.none; 64217 + }) {}; 64218 + 64219 + "headergen" = callPackage 64220 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory 64221 + , filepath, haskeline, time 64222 + }: 64223 + mkDerivation { 64224 + pname = "headergen"; 64225 + version = "0.2.0.0"; 64226 + sha256 = "1hc1pmbj9452k4a71iiazxg6id7caf783m08lqnf3flf77cdjxpa"; 64227 + isLibrary = false; 64228 + isExecutable = true; 64229 + buildDepends = [ 64230 + aeson aeson-pretty base bytestring directory filepath haskeline 64231 + time 64232 + ]; 64233 + homepage = "https://github.com/aka-bash0r/headergen"; 64234 + description = "Creates a header for a haskell source file"; 64235 + license = stdenv.lib.licenses.mit; 63962 64236 }) {}; 63963 64237 63964 64238 "heap" = callPackage ··· 64057 64331 ({ mkDerivation, aeson, base, hedis, scientific, text, time }: 64058 64332 mkDerivation { 64059 64333 pname = "hedis-config"; 64060 - version = "0.0.1"; 64061 - sha256 = "1c524klmsl8n6alphxdmwm4hw05hhq3rcyb5540ksnnys77b8y2b"; 64334 + version = "0.0.2"; 64335 + sha256 = "1ism20ddgcdsypbic6ikalvajq3918wm53ppiic68zaqfzwk9gk2"; 64062 64336 buildDepends = [ aeson base hedis scientific text time ]; 64063 - jailbreak = true; 64064 64337 homepage = "https://bitbucket.org/s9gf4ult/hedis-config"; 64065 64338 description = "Easy trivial configuration for Redis"; 64066 64339 license = stdenv.lib.licenses.bsd3; ··· 64072 64345 }: 64073 64346 mkDerivation { 64074 64347 pname = "hedis-monadic"; 64075 - version = "0.0.3"; 64076 - sha256 = "1z80kdm1cs1pk6fpbby20q49ji840zp9xwbynbry2v43g5q18lq6"; 64348 + version = "0.0.4"; 64349 + sha256 = "1540c4ra65y2kc97n7wxx7rdzf3dkaqqx7r4lwz4qpg3kzfi6q8w"; 64077 64350 buildDepends = [ 64078 64351 base hedis monad-control mtl transformers transformers-base 64079 64352 transformers-compat 64080 64353 ]; 64081 - jailbreak = true; 64082 64354 homepage = "https://bitbucket.org/s9gf4ult/redis-monadic"; 64083 64355 description = "A la MonadReader for Redis connection"; 64084 64356 license = stdenv.lib.licenses.bsd3; ··· 65011 65283 65012 65284 "heyefi" = callPackage 65013 65285 ({ mkDerivation, base, bytestring, case-insensitive, configurator 65014 - , containers, directory, errors, exceptions, filemanip, filepath 65015 - , HandsomeSoup, hspec, HTTP, http-types, hxt, iso8601-time 65016 - , MissingH, mtl, multipart, old-locale, optparse-applicative 65017 - , random, silently, stm, tar, temporary, text, time, transformers 65018 - , unix, unordered-containers, utf8-string, wai, warp 65286 + , containers, directory, exceptions, filepath, HandsomeSoup, hspec 65287 + , http-types, hxt, iso8601-time, MissingH, mtl, multipart 65288 + , optparse-applicative, random, silently, stm, tar, temporary, text 65289 + , time, transformers, unix, unordered-containers, utf8-string, wai 65290 + , warp 65019 65291 }: 65020 65292 mkDerivation { 65021 65293 pname = "heyefi"; 65022 - version = "0.1.1.0"; 65023 - sha256 = "13m66ix0kmvqwgvqh56mjdwgwpjjqi67hyr6giwhs63fr3wxw3f3"; 65294 + version = "0.1.1.1"; 65295 + sha256 = "0dm9dyn12jgpc317pk5z3rhhgw2hbmbxyfba97jzq34b5z6crz0f"; 65024 65296 isLibrary = false; 65025 65297 isExecutable = true; 65026 65298 buildDepends = [ 65027 - base bytestring case-insensitive configurator directory errors 65028 - exceptions filemanip filepath HandsomeSoup HTTP http-types hxt 65029 - iso8601-time MissingH mtl multipart old-locale optparse-applicative 65030 - random stm tar temporary text time transformers unix 65031 - unordered-containers utf8-string wai warp 65299 + base bytestring case-insensitive configurator directory exceptions 65300 + filepath HandsomeSoup http-types hxt iso8601-time MissingH mtl 65301 + multipart optparse-applicative random stm tar temporary text time 65302 + transformers unix unordered-containers utf8-string wai warp 65032 65303 ]; 65033 65304 testDepends = [ 65034 65305 base bytestring case-insensitive configurator containers directory 65035 - errors exceptions filemanip filepath HandsomeSoup hspec HTTP 65036 - http-types hxt iso8601-time MissingH mtl multipart old-locale 65037 - optparse-applicative random silently stm tar temporary text time 65038 - transformers unix unordered-containers utf8-string wai warp 65306 + exceptions filepath HandsomeSoup hspec http-types hxt iso8601-time 65307 + MissingH mtl multipart optparse-applicative random silently stm tar 65308 + temporary text time transformers unix unordered-containers 65309 + utf8-string wai warp 65039 65310 ]; 65040 65311 homepage = "https://github.com/ryantm/heyefi"; 65041 65312 description = "A server for Eye-Fi SD cards"; ··· 65246 65517 license = stdenv.lib.licenses.bsd3; 65247 65518 }) {}; 65248 65519 65520 + "hgearman" = callPackage 65521 + ({ mkDerivation, base, binary, bytestring, monad-control, mtl 65522 + , network, resource-pool, transformers, transformers-base 65523 + , unordered-containers 65524 + }: 65525 + mkDerivation { 65526 + pname = "hgearman"; 65527 + version = "0.1.0.2"; 65528 + sha256 = "0bfipd7s6czp3aha0jx1yjzfzn8vywiswd07k68q2207j3br8yxk"; 65529 + buildDepends = [ 65530 + base binary bytestring monad-control mtl network resource-pool 65531 + transformers transformers-base unordered-containers 65532 + ]; 65533 + description = "A Gearman client for Haskell"; 65534 + license = stdenv.lib.licenses.mit; 65535 + }) {}; 65536 + 65249 65537 "hgen" = callPackage 65250 65538 ({ mkDerivation, base, directory, filepath, hylolib, mtl, random }: 65251 65539 mkDerivation { ··· 65612 65900 }) {}; 65613 65901 65614 65902 "highjson" = callPackage 65615 - ({ mkDerivation, attoparsec, base, bytestring, containers, hashable 65616 - , hspec, hvect, scientific, text, unordered-containers, vector 65903 + ({ mkDerivation, attoparsec, base, buffer-builder, bytestring 65904 + , containers, hashable, hspec, hvect, QuickCheck, scientific, text 65905 + , unordered-containers, vector 65617 65906 }: 65618 65907 mkDerivation { 65619 65908 pname = "highjson"; 65620 - version = "0.1.0.0"; 65621 - sha256 = "1j0gcbgawimzr8vvglikmdr8q58zvvak68k8221ljydppanc30k0"; 65909 + version = "0.2.0.2"; 65910 + sha256 = "07qz7zb53vbpb9ixrw0qwn5qhvgwzvrvfkp343a1cvbb42slpmkz"; 65622 65911 buildDepends = [ 65623 - attoparsec base bytestring containers hashable hvect scientific 65624 - text unordered-containers vector 65912 + attoparsec base buffer-builder bytestring containers hashable hvect 65913 + scientific text unordered-containers vector 65625 65914 ]; 65626 - testDepends = [ base hspec text ]; 65915 + testDepends = [ base hspec QuickCheck text ]; 65627 65916 homepage = "https://github.com/agrafix/highjson"; 65628 - description = "Very fast JSON parsing"; 65917 + description = "Very fast JSON serialisation and parsing library"; 65629 65918 license = stdenv.lib.licenses.mit; 65630 65919 }) {}; 65631 65920 ··· 66363 66652 }: 66364 66653 mkDerivation { 66365 66654 pname = "hjsmin"; 66366 - version = "0.1.4.7"; 66367 - sha256 = "1gw9is6piqrqxnrwp8v3vij90icmym58rxqnnklrcjfi3ai7y58f"; 66655 + version = "0.1.5.0"; 66656 + sha256 = "1mzi7czzw1b8avkfzmsl79hqg57dcrcfp6klzx15drnbl7c1zn7l"; 66368 66657 isLibrary = true; 66369 66658 isExecutable = true; 66370 66659 buildDepends = [ ··· 66376 66665 language-javascript QuickCheck test-framework test-framework-hunit 66377 66666 text 66378 66667 ]; 66379 - homepage = "http://github.com/alanz/hjsmin"; 66668 + homepage = "http://github.com/erikd/hjsmin"; 66380 66669 description = "Haskell implementation of a javascript minifier"; 66381 66670 license = stdenv.lib.licenses.bsd3; 66382 66671 }) {}; ··· 66564 66853 ({ mkDerivation, base, hledger-lib, time }: 66565 66854 mkDerivation { 66566 66855 pname = "hledger-diff"; 66567 - version = "0.2.0.3"; 66568 - sha256 = "0m2wbjbihv0zlz2y3khy81xhh2c261fb4wr55csqy22rds73fwy8"; 66856 + version = "0.2.0.4"; 66857 + sha256 = "1p0b2xc2axsigmbc5lhl12acsjjvn0j8gjlwp3v4ggyanwyj686r"; 66569 66858 isLibrary = false; 66570 66859 isExecutable = true; 66571 66860 buildDepends = [ base hledger-lib time ]; 66572 - jailbreak = true; 66573 66861 homepage = "https://github.com/gebner/hledger-diff"; 66574 66862 description = "Compares the transactions in two ledger files"; 66575 66863 license = stdenv.lib.licenses.gpl3; ··· 67142 67430 base binary containers monad-stm stm transformers 67143 67431 ]; 67144 67432 description = "In-memory relational database"; 67433 + license = stdenv.lib.licenses.bsd3; 67434 + }) {}; 67435 + 67436 + "hmenu" = callPackage 67437 + ({ mkDerivation, base, MissingH, process }: 67438 + mkDerivation { 67439 + pname = "hmenu"; 67440 + version = "0.1.0.1"; 67441 + sha256 = "0ym3nzyx1jwcc7m6qj8zchs2q73rj82d7f1r2rvykhns7ca20hrp"; 67442 + isLibrary = false; 67443 + isExecutable = true; 67444 + buildDepends = [ base MissingH process ]; 67445 + jailbreak = true; 67446 + description = "CLI fuzzy finder and launcher"; 67145 67447 license = stdenv.lib.licenses.bsd3; 67146 67448 }) {}; 67147 67449 ··· 68423 68725 }) {}; 68424 68726 68425 68727 "hothasktags" = callPackage 68426 - ({ mkDerivation, base, cmdargs, containers, cpphs, filepath 68427 - , haskell-src-exts 68728 + ({ mkDerivation, array, base, containers, cpphs, filepath 68729 + , haskell-src-exts, optparse-applicative, split 68428 68730 }: 68429 68731 mkDerivation { 68430 68732 pname = "hothasktags"; 68431 - version = "0.3.3"; 68432 - sha256 = "1nyr77lm813v521fhhsd3zf7hlpad70g1aj729plrwaxj8c0cizl"; 68733 + version = "0.3.4"; 68734 + sha256 = "0pnp0xkqk2l29p5kr3kjmxl7hb8g1qd198n36vmfx1x8kc8bahdy"; 68433 68735 isLibrary = false; 68434 68736 isExecutable = true; 68435 68737 buildDepends = [ 68436 - base cmdargs containers cpphs filepath haskell-src-exts 68738 + array base containers cpphs filepath haskell-src-exts 68739 + optparse-applicative split 68437 68740 ]; 68438 68741 homepage = "http://github.com/luqui/hothasktags"; 68439 68742 description = "Generates ctags for Haskell, incorporating import lists and qualified imports"; ··· 68471 68774 license = stdenv.lib.licenses.bsd3; 68472 68775 }) {}; 68473 68776 68777 + "hourglass-fuzzy-parsing" = callPackage 68778 + ({ mkDerivation, base, hourglass, parsec }: 68779 + mkDerivation { 68780 + pname = "hourglass-fuzzy-parsing"; 68781 + version = "0.1.0.1"; 68782 + sha256 = "188mw1z8n650y3qik98x2m70sr8q66x4l4pg34mirk6kg4mgzy37"; 68783 + buildDepends = [ base hourglass parsec ]; 68784 + homepage = "https://gitlab.com/doshitan/hourglass-fuzzy-parsing"; 68785 + description = "A small library for parsing more human friendly date/time formats"; 68786 + license = stdenv.lib.licenses.bsd3; 68787 + }) {}; 68788 + 68474 68789 "hp2any-core" = callPackage 68475 68790 ({ mkDerivation, attoparsec, base, bytestring, containers 68476 68791 , directory, filepath, network, old-locale, process, time ··· 68862 69177 }: 68863 69178 mkDerivation { 68864 69179 pname = "hprotoc"; 68865 - version = "2.1.3"; 68866 - sha256 = "1fy2bnk8jlakfgvap9ma5qxyvqgl25dbqk7a7n9m4q0z8ba0s1di"; 69180 + version = "2.1.4"; 69181 + sha256 = "01848yssmpi0fgkgnlgwmcrmkmpdqc6yc19z91kj46sl187k2k8j"; 68867 69182 isLibrary = true; 68868 69183 isExecutable = true; 68869 69184 buildDepends = [ ··· 69063 69378 }: 69064 69379 mkDerivation { 69065 69380 pname = "hreader"; 69066 - version = "0.1.0"; 69067 - sha256 = "102i17879ha49yh87i9k5lxrlrjd1fxcb8k8adidqwghbn55dyjc"; 69381 + version = "0.2.0"; 69382 + sha256 = "1a0zllljfjpz6fwq2h0l5wwl1wg1v68n6r84fs70vnny0c3wl6hg"; 69068 69383 buildDepends = [ 69069 69384 base exceptions hset mmorph monad-control mtl transformers-base 69070 69385 ]; ··· 69094 69409 }: 69095 69410 mkDerivation { 69096 69411 pname = "hruby"; 69097 - version = "0.3.1.4"; 69098 - sha256 = "0pymwdpdl1xwjcgpblsrfyyib4sz2avxwidgxzr2bac91lhf3fpm"; 69412 + version = "0.3.1.5"; 69413 + sha256 = "1x9j3rc3kk64l8idkar35ap4y5kxh4abfssd2iphp8dqnjld3jxa"; 69099 69414 buildDepends = [ 69100 69415 aeson attoparsec base bytestring scientific stm text 69101 69416 unordered-containers vector 69102 69417 ]; 69103 69418 testDepends = [ aeson attoparsec base QuickCheck text vector ]; 69104 69419 extraLibraries = [ ruby ]; 69105 - jailbreak = true; 69106 69420 description = "Embed a Ruby intepreter in your Haskell program !"; 69107 69421 license = stdenv.lib.licenses.bsd3; 69108 69422 }) { inherit (pkgs) ruby;}; ··· 70330 70644 , bin-package-db, bytestring, Cabal, containers, deepseq, directory 70331 70645 , exceptions, filepath, fsnotify, ghc, ghc-mod, ghc-paths 70332 70646 , haddock-api, haskell-src-exts, hdocs, hlint, HTTP, lens 70333 - , monad-loops, MonadCatchIO-transformers, mtl, network, process 70647 + , lifted-base, monad-control, monad-loops 70648 + , MonadCatchIO-transformers, mtl, network, process 70334 70649 , regex-pcre-builtin, scientific, simple-log, system-filepath 70335 - , template-haskell, text, time, transformers, uniplate, unix 70336 - , unordered-containers, vector 70650 + , template-haskell, text, time, transformers, transformers-base 70651 + , uniplate, unix, unordered-containers, vector 70337 70652 }: 70338 70653 mkDerivation { 70339 70654 pname = "hsdev"; 70340 - version = "0.1.4.0"; 70341 - sha256 = "1m7pfrzi23wq7b3bwp4fc885di96gkg453q8xmlwdip37mh2swgz"; 70655 + version = "0.1.4.1"; 70656 + sha256 = "180xrxamas2fg2366k3cpy7al8mq82d1hgjrs7i1r2s3gr877xz8"; 70342 70657 isLibrary = true; 70343 70658 isExecutable = true; 70344 70659 buildDepends = [ 70345 70660 aeson aeson-pretty array attoparsec base bin-package-db bytestring 70346 70661 Cabal containers deepseq directory exceptions filepath fsnotify ghc 70347 70662 ghc-mod ghc-paths haddock-api haskell-src-exts hdocs hlint HTTP 70348 - lens monad-loops MonadCatchIO-transformers mtl network process 70349 - regex-pcre-builtin scientific simple-log system-filepath 70350 - template-haskell text time transformers uniplate unix 70351 - unordered-containers vector 70663 + lens lifted-base monad-control monad-loops 70664 + MonadCatchIO-transformers mtl network process regex-pcre-builtin 70665 + scientific simple-log system-filepath template-haskell text time 70666 + transformers transformers-base uniplate unix unordered-containers 70667 + vector 70352 70668 ]; 70353 70669 testDepends = [ base ]; 70354 70670 jailbreak = true; ··· 70508 70824 ({ mkDerivation, base, HUnit, mtl }: 70509 70825 mkDerivation { 70510 70826 pname = "hset"; 70511 - version = "1.0.1"; 70512 - sha256 = "1iix3syq0cvpiwf6qr6hvcxii6qlzwqcnm416pvndcm7ymkhw04v"; 70827 + version = "1.1.0"; 70828 + sha256 = "15ls3wkk29mf2nyrm80dcmg66q0dd0srgwyv46ix3zkaxs239mbl"; 70513 70829 buildDepends = [ base mtl ]; 70514 70830 testDepends = [ base HUnit mtl ]; 70515 70831 homepage = "https://bitbucket.org/s9gf4ult/hset"; ··· 70523 70839 }: 70524 70840 mkDerivation { 70525 70841 pname = "hsexif"; 70526 - version = "0.6.0.3"; 70527 - sha256 = "02jpp2p8xmhmx6srpcm330k73x306h34ik2rdavfwpgw5mjk88hl"; 70842 + version = "0.6.0.4"; 70843 + sha256 = "0k9a6d6c2n0x5g6vls4848gydnvw790lf1nyy5piz1rdzsd6bx3k"; 70528 70844 buildDepends = [ 70529 70845 base binary bytestring containers iconv text time 70530 70846 ]; ··· 71151 71467 }: 71152 71468 mkDerivation { 71153 71469 pname = "hspec"; 71154 - version = "2.1.8"; 71155 - sha256 = "0nfg9pmlvp8gnllfx01sfslhznjs5xa432ag9s2q2r7c17bxfnwf"; 71470 + version = "2.1.10"; 71471 + sha256 = "0m51afa2n187jjx0fwarg11chakhv3z7fbmqq5rr7j60d9ix9ypq"; 71156 71472 buildDepends = [ 71157 71473 base hspec-core hspec-discover hspec-expectations HUnit QuickCheck 71158 71474 transformers ··· 71197 71513 }) {}; 71198 71514 71199 71515 "hspec-contrib" = callPackage 71200 - ({ mkDerivation, base, hspec, hspec-core, HUnit, logging-facade 71201 - , QuickCheck 71202 - }: 71516 + ({ mkDerivation, base, hspec, hspec-core, HUnit, QuickCheck }: 71203 71517 mkDerivation { 71204 71518 pname = "hspec-contrib"; 71205 - version = "0.2.2"; 71206 - sha256 = "1jdiv41kf73x8rygj7439wrgm345qlfbkshhdy8ikrqs1k43grw6"; 71207 - buildDepends = [ base hspec-core HUnit logging-facade ]; 71208 - testDepends = [ 71209 - base hspec hspec-core HUnit logging-facade QuickCheck 71210 - ]; 71519 + version = "0.3.0"; 71520 + sha256 = "006syw8xagfhsx06ws9ywig1qx5lk4cgl7sq6pbid1s64c72mxn4"; 71521 + buildDepends = [ base hspec-core HUnit ]; 71522 + testDepends = [ base hspec hspec-core HUnit QuickCheck ]; 71211 71523 homepage = "http://hspec.github.io/"; 71212 71524 description = "Contributed functionality for Hspec"; 71213 71525 license = stdenv.lib.licenses.mit; ··· 71221 71533 }: 71222 71534 mkDerivation { 71223 71535 pname = "hspec-core"; 71224 - version = "2.1.8"; 71225 - sha256 = "07jhiw0492xcgiidpyizqwaqjja23m35179s12vb54gw4xbh7b6q"; 71536 + version = "2.1.10"; 71537 + sha256 = "1q0fnag7lw54zf6aj55cckcfzs5ykpc841bczap6q9gnwrvpwbk8"; 71226 71538 buildDepends = [ 71227 71539 ansi-terminal async base deepseq hspec-expectations HUnit 71228 71540 QuickCheck quickcheck-io random setenv tf-random time transformers ··· 71241 71553 ({ mkDerivation, base, directory, filepath, hspec-meta }: 71242 71554 mkDerivation { 71243 71555 pname = "hspec-discover"; 71244 - version = "2.1.8"; 71245 - sha256 = "1pyk901rngv1yv4p502qcbbhhw6sgdsdmdwxk1f5r1s7gkvbd9n4"; 71556 + version = "2.1.10"; 71557 + sha256 = "02qs0y7nn8wczjjs606d8ivixxib0024kny2al6mgvxyp524xcgg"; 71246 71558 isLibrary = true; 71247 71559 isExecutable = true; 71248 71560 buildDepends = [ base directory filepath ]; ··· 71256 71568 ({ mkDerivation, base, HUnit }: 71257 71569 mkDerivation { 71258 71570 pname = "hspec-expectations"; 71259 - version = "0.7.0"; 71260 - sha256 = "1gzjnmhi6ia2p5i5jlnj4586rkml5af8f7ijgipzs6fczpx7ds4l"; 71571 + version = "0.7.1"; 71572 + sha256 = "0n52k7qwqc5awig08fvajvymb9bb235q6pp8w0cbcb9a96rwdjmg"; 71261 71573 buildDepends = [ base HUnit ]; 71262 71574 homepage = "https://github.com/sol/hspec-expectations#readme"; 71263 71575 description = "Catchy combinators for HUnit"; ··· 71718 72030 license = stdenv.lib.licenses.bsd3; 71719 72031 }) { qt5 = null;}; 71720 72032 72033 + "hsqml-datamodel" = callPackage 72034 + ({ mkDerivation, base, hsqml, qt5, template-haskell, text }: 72035 + mkDerivation { 72036 + pname = "hsqml-datamodel"; 72037 + version = "0.0.0.1"; 72038 + sha256 = "16q92q00q96kyg41xh8smp5vvkvlfrps6nj7ds1y09msdqvihw9v"; 72039 + buildDepends = [ base hsqml template-haskell text ]; 72040 + pkgconfigDepends = [ qt5 ]; 72041 + homepage = "https://github.com/marcinmrotek/hsqml-datamodel"; 72042 + description = "HsQML (Qt5) data model"; 72043 + license = stdenv.lib.licenses.bsd3; 72044 + }) { qt5 = null;}; 72045 + 72046 + "hsqml-datamodel-vinyl" = callPackage 72047 + ({ mkDerivation, base, exceptions, hsqml-datamodel, type-list 72048 + , vinyl 72049 + }: 72050 + mkDerivation { 72051 + pname = "hsqml-datamodel-vinyl"; 72052 + version = "0.1.0.0"; 72053 + sha256 = "0jg3jl1h4jf92vazyf7wb88dhrl89zm9hh21hymzy3pnc5kssd91"; 72054 + buildDepends = [ base exceptions hsqml-datamodel type-list vinyl ]; 72055 + homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; 72056 + description = "HsQML DataModel instances for Vinyl Rec"; 72057 + license = stdenv.lib.licenses.bsd3; 72058 + }) {}; 72059 + 71721 72060 "hsqml-demo-morris" = callPackage 71722 72061 ({ mkDerivation, base, containers, deepseq, directory, hsqml 71723 72062 , OddWord, text ··· 72204 72543 }) {}; 72205 72544 72206 72545 "htar" = callPackage 72207 - ({ mkDerivation, base, bytestring, bzlib, directory, filepath 72208 - , old-locale, tar, time, zlib 72546 + ({ mkDerivation, base, bytestring, bzlib, directory, filepath, tar 72547 + , time, zlib 72209 72548 }: 72210 72549 mkDerivation { 72211 72550 pname = "htar"; ··· 72214 72553 isLibrary = false; 72215 72554 isExecutable = true; 72216 72555 buildDepends = [ 72217 - base bytestring bzlib directory filepath old-locale tar time zlib 72556 + base bytestring bzlib directory filepath tar time zlib 72218 72557 ]; 72219 - jailbreak = true; 72220 72558 description = "Command-line tar archive utility"; 72221 72559 license = stdenv.lib.licenses.bsd3; 72222 72560 hydraPlatforms = stdenv.lib.platforms.none; ··· 72584 72922 }: 72585 72923 mkDerivation { 72586 72924 pname = "http-client"; 72587 - version = "0.4.18"; 72588 - sha256 = "0skla9kvlak482fsk21gz57jcwc568x3q62nkanxjn1pgxc1jili"; 72925 + version = "0.4.18.1"; 72926 + sha256 = "0v0mmsbh8hgzkxyg7gkn3dlq5l21ljzbxr9c3wmmz6viwhhabfv9"; 72589 72927 buildDepends = [ 72590 72928 array base base64-bytestring blaze-builder bytestring 72591 72929 case-insensitive containers cookie data-default-class deepseq ··· 72759 73097 }: 72760 73098 mkDerivation { 72761 73099 pname = "http-conduit"; 72762 - version = "2.1.7.1"; 72763 - sha256 = "15caswd172i8hzwmxsd3rynnfz96v5iqg9avv1ybydikvvgbqx56"; 73100 + version = "2.1.7.2"; 73101 + sha256 = "0inw95a2vdmsffh3ns1kh8hr7xrx2pbgdrq0yv68bwf1v4sd1mfc"; 72764 73102 buildDepends = [ 72765 73103 base bytestring conduit http-client http-client-tls http-types 72766 73104 lifted-base monad-control mtl resourcet transformers ··· 72904 73242 }) {}; 72905 73243 72906 73244 "http-link-header" = callPackage 72907 - ({ mkDerivation, attoparsec, base, errors, hspec, hspec-attoparsec 72908 - , network-uri, QuickCheck, text 73245 + ({ mkDerivation, attoparsec, base, bytestring-conversion, errors 73246 + , hspec, hspec-attoparsec, network-uri, QuickCheck, text 72909 73247 }: 72910 73248 mkDerivation { 72911 73249 pname = "http-link-header"; 72912 - version = "0.1.0"; 72913 - sha256 = "1lcl0ylj8lq0i2b806k1yqvzbv9dg1m4ka9bmvmhz4z78kiahck1"; 72914 - buildDepends = [ attoparsec base errors network-uri text ]; 73250 + version = "0.2.0"; 73251 + sha256 = "0vdmb0w7ppss8lffdghn9d2vjawn6nvhx7cx1dcvl4fllxfiaihc"; 73252 + buildDepends = [ 73253 + attoparsec base bytestring-conversion errors network-uri text 73254 + ]; 72915 73255 testDepends = [ base hspec hspec-attoparsec QuickCheck text ]; 72916 - jailbreak = true; 72917 73256 homepage = "https://github.com/myfreeweb/http-link-header"; 72918 73257 description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; 72919 - license = stdenv.lib.licenses.asl20; 73258 + license = stdenv.lib.licenses.publicDomain; 72920 73259 }) {}; 72921 73260 72922 73261 "http-media" = callPackage ··· 73150 73489 }: 73151 73490 mkDerivation { 73152 73491 pname = "http2"; 73153 - version = "1.0.2"; 73154 - sha256 = "0wkzphzxzzvqm947l759vxnl6g60nrx7jygyxdlxfgxi51fd7gap"; 73492 + version = "1.0.3"; 73493 + sha256 = "075j4xhfmgiij431zn5mzmq6m40fj74l5f5wckqa22aq2ay19p8c"; 73155 73494 isLibrary = true; 73156 73495 isExecutable = true; 73157 73496 buildDepends = [ ··· 74511 74850 }: 74512 74851 mkDerivation { 74513 74852 pname = "hyperloglog"; 74514 - version = "0.3.3.1"; 74515 - sha256 = "1ns0vz80byssmi39mgdkprpwy26szbmfqqzs1lb6amqf7nx4i14l"; 74853 + version = "0.3.4"; 74854 + sha256 = "122qdkg1xwyhbxll5zimp8w6j79i30102g3iqf41lrbrx0xllpag"; 74516 74855 buildDepends = [ 74517 74856 approximate base binary bits bytes cereal cereal-vector comonad 74518 - deepseq distributive generic-deriving hashable hashable-extras lens 74519 - reflection safecopy semigroupoids semigroups siphash tagged vector 74857 + deepseq distributive hashable hashable-extras lens reflection 74858 + safecopy semigroupoids semigroups siphash tagged vector 74520 74859 ]; 74521 74860 testDepends = [ 74522 74861 base directory doctest filepath generic-deriving semigroups 74523 74862 simple-reflect 74524 74863 ]; 74525 - jailbreak = true; 74526 74864 homepage = "http://github.com/analytics/hyperloglog"; 74527 74865 description = "An approximate streaming (constant space) unique object counter"; 74528 74866 license = stdenv.lib.licenses.bsd3; ··· 74560 74898 }) {}; 74561 74899 74562 74900 "hyphenation" = callPackage 74563 - ({ mkDerivation, base, containers, directory, doctest, filepath 74564 - , unordered-containers 74901 + ({ mkDerivation, base, bytestring, containers, directory, doctest 74902 + , filepath, unordered-containers, zlib 74565 74903 }: 74566 74904 mkDerivation { 74567 74905 pname = "hyphenation"; 74568 - version = "0.5"; 74569 - sha256 = "10xw74d1q2kz8mv8gspa9amgax5a864iz9jxihyjcs9x1pgh762a"; 74570 - buildDepends = [ base containers unordered-containers ]; 74906 + version = "0.6"; 74907 + sha256 = "1xqj4na1gm40ssirc4k70r27bzxhg2dkiipp48a5hqwgq5k3crrg"; 74908 + buildDepends = [ 74909 + base bytestring containers unordered-containers zlib 74910 + ]; 74571 74911 testDepends = [ 74572 74912 base containers directory doctest filepath unordered-containers 74573 74913 ]; ··· 74722 75062 }) {}; 74723 75063 74724 75064 "ib-api" = callPackage 74725 - ({ mkDerivation, attoparsec, base, bytestring, network }: 75065 + ({ mkDerivation, attoparsec, base, bytestring, network, unix }: 74726 75066 mkDerivation { 74727 75067 pname = "ib-api"; 74728 - version = "0.1.0.0"; 74729 - revision = "1"; 74730 - sha256 = "1030bj90myx5x3y297qmlmnzppfnh5d3cmwglqj1s7i6nyrh86k5"; 74731 - editedCabalFile = "7cb1fe96767e6253ef55d4997404eb3f4048f1b9bfccfb9e6cca627a734c3bcd"; 74732 - buildDepends = [ attoparsec base bytestring network ]; 75068 + version = "0.1.0.1"; 75069 + sha256 = "0zswsb7mvbm8zycb14sks2kvg4jy2wn3vc7z6lb00s0alm1v0srk"; 75070 + isLibrary = true; 75071 + isExecutable = true; 75072 + buildDepends = [ attoparsec base bytestring network unix ]; 74733 75073 jailbreak = true; 74734 75074 homepage = "https://github.com/rbermani/ib-api"; 74735 75075 description = "An API for the Interactive Brokers Trading Workstation written in pure Haskell"; ··· 75104 75444 }: 75105 75445 mkDerivation { 75106 75446 pname = "ig"; 75107 - version = "0.3"; 75108 - sha256 = "1sg1dbwjvhixy7qgchg6a2nh76jyp3qlwancj3fcn7c87fmhxdqg"; 75447 + version = "0.3.1"; 75448 + sha256 = "0ggr6h5inwwxvqs9qywiagi1c5bx1vky5h0zvhz0df88nbfd3d21"; 75109 75449 buildDepends = [ 75110 75450 aeson base base16-bytestring bytestring conduit conduit-extra 75111 75451 crypto-api cryptohash cryptohash-cryptoapi data-default ··· 76107 76447 }) {}; 76108 76448 76109 76449 "informative" = callPackage 76110 - ({ mkDerivation, base, csv, highlighting-kate, http-conduit 76111 - , monad-logger, pandoc, persistent, persistent-postgresql 76112 - , shakespeare, text, time, time-locale-compat, yesod, yesod-auth 76113 - , yesod-core, yesod-form 76450 + ({ mkDerivation, base, containers, csv, highlighting-kate 76451 + , http-conduit, monad-logger, pandoc, persistent 76452 + , persistent-postgresql, shakespeare, text, time 76453 + , time-locale-compat, yesod, yesod-auth, yesod-core, yesod-form 76114 76454 }: 76115 76455 mkDerivation { 76116 76456 pname = "informative"; 76117 - version = "0.1.0.7"; 76118 - sha256 = "0xzckvbscs3946y7sscx15mixyh3xhahjmwli72311gmyxkf767y"; 76457 + version = "0.1.0.20"; 76458 + sha256 = "1xglpqwr4bc7rqaspq7w6pc9g5ilzvxfb6lfkji3inagg5xksl7n"; 76119 76459 isLibrary = true; 76120 76460 isExecutable = true; 76121 76461 buildDepends = [ 76122 - base csv highlighting-kate http-conduit monad-logger pandoc 76123 - persistent persistent-postgresql shakespeare text time 76462 + base containers csv highlighting-kate http-conduit monad-logger 76463 + pandoc persistent persistent-postgresql shakespeare text time 76124 76464 time-locale-compat yesod yesod-auth yesod-core yesod-form 76125 76465 ]; 76126 76466 jailbreak = true; ··· 76147 76487 }: 76148 76488 mkDerivation { 76149 76489 pname = "inilist"; 76150 - version = "0.1.0.0"; 76151 - sha256 = "18f93kvc5x0y1wqcicrh510r3skldf52jn0n6cxyn7fk2271cc1b"; 76490 + version = "0.2.0.0"; 76491 + sha256 = "1rr71yajc6j0idsqgna8mbnawiv6iw1x8kswkv7x2l0ih89r6y3a"; 76152 76492 buildDepends = [ base bifunctors containers safe trifecta ]; 76153 76493 testDepends = [ 76154 76494 base bifunctors containers deepseq HUnit safe tasty tasty-hunit ··· 76337 76677 mkDerivation { 76338 76678 pname = "instant-generics"; 76339 76679 version = "0.5"; 76680 + revision = "1"; 76340 76681 sha256 = "174avn0jjxv4h04m6k85gvv6x3kvrlwhcbhqg9ih0ps5mp7crmvr"; 76682 + editedCabalFile = "c69a74fef28272e5e46a0e37711bb980ac07d2f3feeed3513da1cc572a1ab6bc"; 76341 76683 buildDepends = [ base containers syb template-haskell ]; 76342 76684 homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/InstantGenerics"; 76343 76685 description = "Generic programming library with a sum of products view"; ··· 76361 76703 mkDerivation { 76362 76704 pname = "instant-zipper"; 76363 76705 version = "0.0.0"; 76706 + revision = "1"; 76364 76707 sha256 = "0gd5hzlm5rlmzba2dl37al711vp1nn2b30d36rvb2j8y90y8c44c"; 76708 + editedCabalFile = "a0e15510d3e3eefaa18d20fbfce7a1840519e160e2a8a8b36c498a3664b9c037"; 76365 76709 buildDepends = [ base instant-generics mtl ]; 76710 + jailbreak = true; 76366 76711 description = "Heterogenous Zipper in Instant Generics"; 76367 76712 license = "GPL"; 76368 76713 hydraPlatforms = stdenv.lib.platforms.none; ··· 76715 77060 }) {}; 76716 77061 76717 77062 "invariant" = callPackage 76718 - ({ mkDerivation, base, contravariant, hspec, QuickCheck }: 77063 + ({ mkDerivation, array, base, bifunctors, containers, contravariant 77064 + , ghc-prim, hspec, profunctors, QuickCheck, semigroups, stm, tagged 77065 + , template-haskell, transformers, transformers-compat 77066 + , unordered-containers 77067 + }: 76719 77068 mkDerivation { 76720 77069 pname = "invariant"; 76721 - version = "0.1.2"; 76722 - sha256 = "02p114wnpxbqxik4sz87bd9rcqfs9klgsxi9pc4v1qwyb64mb92b"; 76723 - buildDepends = [ base contravariant ]; 77070 + version = "0.2"; 77071 + sha256 = "0zxzpbha3z4z23xmsbgajjxk477ad1v28ml3rry0102lpcpvl6j1"; 77072 + buildDepends = [ 77073 + array base bifunctors containers contravariant ghc-prim profunctors 77074 + semigroups stm tagged template-haskell transformers 77075 + transformers-compat unordered-containers 77076 + ]; 76724 77077 testDepends = [ base hspec QuickCheck ]; 77078 + homepage = "https://github.com/nfrisby/invariant-functors"; 76725 77079 description = "Haskell 98 invariant functors"; 76726 77080 license = stdenv.lib.licenses.bsd3; 76727 77081 }) {}; ··· 76841 77195 }: 76842 77196 mkDerivation { 76843 77197 pname = "io-streams"; 76844 - version = "1.3.1.0"; 76845 - sha256 = "1fic83lgvyji75gyx8c9ik9lj6jf65wbqmzp30siqmkhdp9y1rxf"; 77198 + version = "1.3.2.0"; 77199 + sha256 = "0gqj2adc3zlwz81wy38y8x4rihvhk4zm9xb0rd04a77nn15xlc0y"; 76846 77200 buildDepends = [ 76847 77201 attoparsec base bytestring bytestring-builder network primitive 76848 77202 process text time transformers vector zlib-bindings ··· 76854 77208 time transformers vector zlib zlib-bindings 76855 77209 ]; 76856 77210 configureFlags = [ "-fnointeractivetests" ]; 76857 - jailbreak = true; 76858 77211 description = "Simple, composable, and easy-to-use stream I/O"; 76859 77212 license = stdenv.lib.licenses.bsd3; 76860 77213 }) {}; ··· 77162 77515 }: 77163 77516 mkDerivation { 77164 77517 pname = "irc-client"; 77165 - version = "0.2.3.1"; 77166 - sha256 = "1i5wsqkz8b0h3vc4xjb1n7dqjhqqlka1pchhwax9w9lvnhw5wl9v"; 77518 + version = "0.2.4.0"; 77519 + sha256 = "137ix1x2qy92v5naaq3lz3iyvbxvf32gnsq09flddadx88d51vv6"; 77167 77520 buildDepends = [ 77168 77521 base bytestring conduit data-default-class irc-conduit irc-ctcp 77169 77522 old-locale stm stm-conduit text time transformers 77170 77523 ]; 77171 77524 homepage = "https://github.com/barrucadu/irc-client"; 77172 77525 description = "An IRC client library"; 77173 - license = "unknown"; 77526 + license = stdenv.lib.licenses.mit; 77174 77527 hydraPlatforms = stdenv.lib.platforms.none; 77175 77528 }) {}; 77176 77529 ··· 77192 77545 }: 77193 77546 mkDerivation { 77194 77547 pname = "irc-conduit"; 77195 - version = "0.1.1.2"; 77196 - sha256 = "1ib75a7dp9f6v7zl51a5z1pvv0vpll6czf5i8zad7ajn3q9d4z3p"; 77548 + version = "0.1.2.0"; 77549 + sha256 = "1mw418frhbnk7gncilvb2c3cj4fvzm5fvafq0p28vggxisda9bkp"; 77197 77550 buildDepends = [ 77198 77551 async base bytestring conduit conduit-extra connection irc irc-ctcp 77199 77552 network-conduit-tls text time tls transformers x509-validation 77200 77553 ]; 77201 77554 homepage = "https://github.com/barrucadu/irc-conduit"; 77202 77555 description = "Streaming IRC message library using conduits"; 77203 - license = "unknown"; 77556 + license = stdenv.lib.licenses.mit; 77204 77557 }) {}; 77205 77558 77206 77559 "irc-core" = callPackage ··· 77234 77587 ({ mkDerivation, base, bytestring, text }: 77235 77588 mkDerivation { 77236 77589 pname = "irc-ctcp"; 77237 - version = "0.1.2.1"; 77238 - revision = "1"; 77239 - sha256 = "1bpn9i9mqmhiif6mhw6q9nzy5cwx1x1yh81216gkqc5gi43gsc5s"; 77240 - editedCabalFile = "23e92ff7cad332b34f89273fe543e9b8b87a19b30fb1a18fad61c9c3952d0dce"; 77590 + version = "0.1.3.0"; 77591 + sha256 = "16mp9dpp57id760zc932dszd5r1ncskwwxrp0djka5r1alddjz6n"; 77241 77592 buildDepends = [ base bytestring text ]; 77242 77593 homepage = "https://github.com/barrucadu/irc-ctcp"; 77243 77594 description = "A CTCP encoding and decoding library for IRC clients"; 77244 - license = "unknown"; 77595 + license = stdenv.lib.licenses.mit; 77245 77596 }) {}; 77246 77597 77247 77598 "irc-fun-color" = callPackage ··· 79287 79638 }) {}; 79288 79639 79289 79640 "kademlia" = callPackage 79290 - ({ mkDerivation, base, bytestring, containers, mtl, network, stm 79641 + ({ mkDerivation, base, bytestring, containers, HUnit, mtl, network 79642 + , QuickCheck, stm, tasty, tasty-hunit, tasty-quickcheck 79291 79643 , transformers, transformers-compat 79292 79644 }: 79293 79645 mkDerivation { 79294 79646 pname = "kademlia"; 79295 - version = "1.0.0.0"; 79296 - revision = "1"; 79297 - sha256 = "0f1kwflpizabzyal3x3p9sra3kxlgm2m14xfxnl4k3bndmj02sdb"; 79298 - editedCabalFile = "2553e98d53372b8d4947c115dd696e33f526f0304e9ed39566e6beec276ca641"; 79647 + version = "1.1.0.0"; 79648 + sha256 = "0wjyslrhbms6cnm495g40yl6365h3vgjcka12lka8xdy89v3c0yy"; 79299 79649 buildDepends = [ 79300 79650 base bytestring containers mtl network stm transformers 79301 79651 transformers-compat 79652 + ]; 79653 + testDepends = [ 79654 + base bytestring containers HUnit mtl network QuickCheck stm tasty 79655 + tasty-hunit tasty-quickcheck transformers transformers-compat 79302 79656 ]; 79303 79657 homepage = "https://github.com/froozen/kademlia"; 79304 79658 description = "An implementation of the Kademlia DHT Protocol"; ··· 79887 80241 , conduit-extra, containers, data-default, directory, filepath 79888 80242 , fsnotify, hspec, http-client, http-conduit, http-reverse-proxy 79889 80243 , http-types, HUnit, lifted-base, mtl, network, process, random 79890 - , regex-tdfa, stm, system-filepath, tar, template-haskell, text 79891 - , time, transformers, unix, unix-compat, unordered-containers 79892 - , vector, wai, wai-app-static, wai-extra, warp, warp-tls, yaml 79893 - , zlib 80244 + , regex-tdfa, stm, tar, template-haskell, text, time, transformers 80245 + , unix, unix-compat, unordered-containers, vector, wai 80246 + , wai-app-static, wai-extra, warp, warp-tls, yaml, zlib 79894 80247 }: 79895 80248 mkDerivation { 79896 80249 pname = "keter"; 79897 - version = "1.4.2.1"; 79898 - sha256 = "1xwnprbmssvvymwyvcgczlsldplr2va53mzdphqs6969xhhpahh3"; 80250 + version = "1.4.3.1"; 80251 + sha256 = "0bsq6z7krisshcrkb528kixiw6liabb7chgk87088vn3gpwx048i"; 79899 80252 isLibrary = true; 79900 80253 isExecutable = true; 79901 80254 buildDepends = [ ··· 79903 80256 case-insensitive conduit conduit-extra containers data-default 79904 80257 directory filepath fsnotify http-client http-conduit 79905 80258 http-reverse-proxy http-types lifted-base mtl network process 79906 - random regex-tdfa stm system-filepath tar template-haskell text 79907 - time transformers unix unix-compat unordered-containers vector wai 79908 - wai-app-static wai-extra warp warp-tls yaml zlib 80259 + random regex-tdfa stm tar template-haskell text time transformers 80260 + unix unix-compat unordered-containers vector wai wai-app-static 80261 + wai-extra warp warp-tls yaml zlib 79909 80262 ]; 79910 80263 testDepends = [ 79911 80264 base bytestring conduit hspec HUnit transformers unix ··· 80194 80547 }) {}; 80195 80548 80196 80549 "kmeans-vector" = callPackage 80197 - ({ mkDerivation, base, mtl, QuickCheck, vector }: 80550 + ({ mkDerivation, base, mtl, probable, vector }: 80198 80551 mkDerivation { 80199 80552 pname = "kmeans-vector"; 80200 - version = "0.3"; 80201 - sha256 = "0n957b7pcq3v8kf4507crbrd172mv9g14p5hmpalfjzlpb3b5ll1"; 80553 + version = "0.3.2"; 80554 + sha256 = "1ckw3dmwwqzgbl0wcd6h435afjddqmim3y19p2wqcghxd2rk8bdv"; 80202 80555 isLibrary = true; 80203 80556 isExecutable = true; 80204 - buildDepends = [ base mtl QuickCheck vector ]; 80557 + buildDepends = [ base mtl probable vector ]; 80205 80558 homepage = "http://github.com/alpmestan/kmeans-vector"; 80206 80559 description = "An implementation of the kmeans clustering algorithm based on the vector package"; 80207 80560 license = stdenv.lib.licenses.bsd3; ··· 80323 80676 hydraPlatforms = stdenv.lib.platforms.none; 80324 80677 }) {}; 80325 80678 80679 + "kraken" = callPackage 80680 + ({ mkDerivation, aeson, base, bytestring, http-client 80681 + , http-client-tls, mtl 80682 + }: 80683 + mkDerivation { 80684 + pname = "kraken"; 80685 + version = "0.0.1"; 80686 + sha256 = "1df6g65wrhzfz3kj9n4bcja09adr4qhl3kzv5vaxl37lbr9nwzr2"; 80687 + buildDepends = [ 80688 + aeson base bytestring http-client http-client-tls mtl 80689 + ]; 80690 + description = "Kraken.io API client"; 80691 + license = stdenv.lib.licenses.mit; 80692 + }) {}; 80693 + 80326 80694 "krpc" = callPackage 80327 80695 ({ mkDerivation, base, bencoding, bytestring, containers 80328 80696 , data-default-class, hspec, lifted-base, monad-control ··· 80634 81002 ({ mkDerivation, base, containers, mtl, read-bounded }: 80635 81003 mkDerivation { 80636 81004 pname = "lambda-options"; 80637 - version = "0.7.0.0"; 80638 - sha256 = "0y8q9k3lk71703qzm0bvqh30y7r5ms392gfzh2lcrqkr0mhlf89j"; 81005 + version = "0.8.0.0"; 81006 + sha256 = "1z9gmps06w458v8i3zpkalby83p367r3z9i0c312jxl0zp51q891"; 80639 81007 buildDepends = [ base containers mtl read-bounded ]; 80640 81008 jailbreak = true; 80641 81009 homepage = "https://github.com/thomaseding/lambda-options"; ··· 80738 81106 }: 80739 81107 mkDerivation { 80740 81108 pname = "lambdabot"; 80741 - version = "5.0.2.2"; 80742 - sha256 = "148s2qlwcs7g89a77xv07yjyjrcnd6x7alvghbldvv4p067f0n86"; 81109 + version = "5.0.3"; 81110 + sha256 = "1kbrmxz5604jzcx9l6j4lmbb0xqz2cmj0f30nmpzdkmzsqv1hfj2"; 80743 81111 isLibrary = false; 80744 81112 isExecutable = true; 80745 81113 buildDepends = [ ··· 80763 81131 }: 80764 81132 mkDerivation { 80765 81133 pname = "lambdabot-core"; 80766 - version = "5.0.1"; 80767 - sha256 = "06asm62k2nb32yr0z4sw70z0r4ikakgkph6zqhjw7wj14ic2nxbk"; 81134 + version = "5.0.3"; 81135 + sha256 = "12gawsimdqch61rh4zwvzrx6pqx8yd645wqpki8dr56wnmbhbr03"; 80768 81136 buildDepends = [ 80769 81137 base binary bytestring containers dependent-map dependent-sum 80770 81138 dependent-sum-template directory edit-distance filepath haskeline ··· 80789 81157 }: 80790 81158 mkDerivation { 80791 81159 pname = "lambdabot-haskell-plugins"; 80792 - version = "5.0.2.1"; 80793 - sha256 = "06jcx3qp87fk58cvnwljr4zyvlqcsfrq0nxg2m67kd2imyg10iyd"; 81160 + version = "5.0.3"; 81161 + sha256 = "0iya4zipjjaqrld0a1v334praw1vnw186scfsi6inqdg314jc7x1"; 80794 81162 buildDepends = [ 80795 81163 array arrows base bytestring containers data-memocombinators 80796 81164 directory filepath haskell-src-exts hoogle HTTP IOSpec ··· 80799 81167 parsec pretty process QuickCheck regex-tdfa show split syb 80800 81168 transformers utf8-string vector-space 80801 81169 ]; 80802 - jailbreak = true; 80803 81170 homepage = "http://haskell.org/haskellwiki/Lambdabot"; 80804 81171 description = "Lambdabot Haskell plugins"; 80805 81172 license = "GPL"; ··· 80813 81180 }: 80814 81181 mkDerivation { 80815 81182 pname = "lambdabot-irc-plugins"; 80816 - version = "5.0.1"; 80817 - sha256 = "13ybjyx5x84g0w7l2yyni5yary59j4kpaqc4pl1942bp6y7lbfrp"; 81183 + version = "5.0.3"; 81184 + sha256 = "1v4zh2yjdgy9ix6dmxdh8j5iqyrixaln78c5jgpiyjcwgi17blrw"; 80818 81185 buildDepends = [ 80819 81186 base bytestring containers directory filepath lambdabot-core 80820 81187 lifted-base mtl network SafeSemaphore split time ··· 80854 81221 }: 80855 81222 mkDerivation { 80856 81223 pname = "lambdabot-novelty-plugins"; 80857 - version = "5.0.2.1"; 80858 - sha256 = "07zx59jfsdq7lbfmfq9l3xbbdm0fhzidi5vcripfp5wry8xshn5y"; 81224 + version = "5.0.3"; 81225 + sha256 = "086y8p92a8g2zjjkxj1ny4s1dlza2dz1v64g3jg7p0dz1n1s1jpy"; 80859 81226 buildDepends = [ 80860 81227 base binary brainfuck bytestring containers dice directory 80861 81228 lambdabot-core misfortune process random-fu regex-tdfa unlambda ··· 80873 81240 }: 80874 81241 mkDerivation { 80875 81242 pname = "lambdabot-reference-plugins"; 80876 - version = "5.0.2.1"; 80877 - sha256 = "0xg70m58n03lym8z3lsf0mh634xwb48sj39cfydsacdn5gx0i8kc"; 81243 + version = "5.0.3"; 81244 + sha256 = "1yw1l0jl4iym2q2lfgzcmxm8865av37kf7zji0f7in2phqs3r1zz"; 80878 81245 buildDepends = [ 80879 81246 base bytestring containers HTTP lambdabot-core mtl network 80880 81247 network-uri oeis process regex-tdfa split tagsoup utf8-string 80881 81248 ]; 80882 - jailbreak = true; 80883 81249 homepage = "http://haskell.org/haskellwiki/Lambdabot"; 80884 81250 description = "Lambdabot reference plugins"; 80885 81251 license = "GPL"; ··· 80988 81354 }: 80989 81355 mkDerivation { 80990 81356 pname = "lambdacms-media"; 80991 - version = "0.3.0.1"; 80992 - sha256 = "074bghfbi3m4ffla34z0yq2qgbw3ps81fq2cm8ibqry3bps511xp"; 81357 + version = "0.4.0.0"; 81358 + sha256 = "0vq32qppnasc24jrjh6c19hr2pxby65c5m5k90fk7afyms307b5c"; 80993 81359 buildDepends = [ 80994 81360 base directory filepath lambdacms-core persistent shakespeare text 80995 81361 time yesod yesod-form ··· 81554 81920 }: 81555 81921 mkDerivation { 81556 81922 pname = "language-javascript"; 81557 - version = "0.5.13.3"; 81558 - sha256 = "069spax169v0qq5axwccgxdmiyjlnjg1bhzqh09dp5yx9w5fk47x"; 81923 + version = "0.5.14.2"; 81924 + sha256 = "0inm6yncl5dv9ij3fyk38c6mad8fm1vqs70rpqi1a7w2n5cbv1ia"; 81559 81925 buildDepends = [ 81560 81926 array base blaze-builder bytestring containers mtl utf8-string 81561 81927 ]; ··· 81565 81931 utf8-string 81566 81932 ]; 81567 81933 buildTools = [ alex happy ]; 81568 - homepage = "http://github.com/alanz/language-javascript"; 81934 + homepage = "http://github.com/erikd/language-javascript"; 81569 81935 description = "Parser for JavaScript"; 81570 81936 license = stdenv.lib.licenses.bsd3; 81571 81937 }) {}; ··· 81836 82202 }) {}; 81837 82203 81838 82204 "language-thrift" = callPackage 81839 - ({ mkDerivation, base, mtl, parsers, text, trifecta }: 82205 + ({ mkDerivation, base, hspec, hspec-discover, mtl, parsers 82206 + , QuickCheck, text, trifecta, wl-pprint 82207 + }: 81840 82208 mkDerivation { 81841 82209 pname = "language-thrift"; 81842 - version = "0.2.0.0"; 81843 - sha256 = "01wvpm4aa222ic8z6wg0wdjyfnkd8gh2kqsda7qfckcyxs9679qw"; 81844 - buildDepends = [ base mtl parsers text trifecta ]; 82210 + version = "0.4.0.0"; 82211 + sha256 = "0al6a9j9hwla8kyfw30m9ylw4wzxv0nr3nvri8w9wnh6ckaf5j2w"; 82212 + buildDepends = [ base mtl parsers text trifecta wl-pprint ]; 82213 + testDepends = [ 82214 + base hspec hspec-discover QuickCheck text trifecta wl-pprint 82215 + ]; 81845 82216 homepage = "https://github.com/abhinav/language-thrift"; 81846 - description = "Parser for the Thrift IDL format"; 82217 + description = "Parser and pretty printer for the Thrift IDL format"; 81847 82218 license = stdenv.lib.licenses.bsd3; 81848 82219 hydraPlatforms = stdenv.lib.platforms.none; 81849 82220 }) {}; ··· 82382 82753 leksah-server ltk monad-loops QuickCheck stm text transformers 82383 82754 webkitgtk3 82384 82755 ]; 82756 + jailbreak = true; 82385 82757 homepage = "http://www.leksah.org"; 82386 82758 description = "Haskell IDE written in Haskell"; 82387 82759 license = "GPL"; ··· 82449 82821 }: 82450 82822 mkDerivation { 82451 82823 pname = "lens"; 82452 - version = "4.12.1"; 82453 - revision = "1"; 82454 - sha256 = "0rzi0z5vz78v99f1hk8izixhxf3linz3xjkancg8x65g03brwl33"; 82455 - editedCabalFile = "fedce7a783a5a622bb19e00145e775ff8ea7d797f71fd22c9eb2257672b7f741"; 82824 + version = "4.12.3"; 82825 + sha256 = "0898z1ws9sy77yfhvx5did0pibpp81yxz0jg418gdx3znd39vyj8"; 82456 82826 buildDepends = [ 82457 82827 array base base-orphans bifunctors bytestring comonad containers 82458 82828 contravariant distributive exceptions filepath free ghc-prim ··· 82682 83052 }: 82683 83053 mkDerivation { 82684 83054 pname = "lentil"; 82685 - version = "0.1.2.7"; 82686 - sha256 = "1g3if2y41li6wyg7ffvpybqvbywiq8bf5b5fb6pz499hinzahb9d"; 83055 + version = "0.1.3.1"; 83056 + sha256 = "19zjwkj9is5fdayvwf6w8r42z0lyrbj2lqqw822zr87xaq96r2g2"; 82687 83057 isLibrary = false; 82688 83058 isExecutable = true; 82689 83059 buildDepends = [ ··· 83280 83650 }) {}; 83281 83651 83282 83652 "libpafe" = callPackage 83283 - ({ mkDerivation, base, bytestring, iconv, pafe }: 83653 + ({ mkDerivation, base, bytestring, iconv, pafe, transformers }: 83284 83654 mkDerivation { 83285 83655 pname = "libpafe"; 83286 - version = "0.1.0.0"; 83287 - sha256 = "1qb67zb7fh582ws1j1hi704dkzp7am0jjxjnab29kpm6i3xmzprk"; 83288 - buildDepends = [ base ]; 83289 - testDepends = [ base bytestring iconv ]; 83656 + version = "0.1.1.0"; 83657 + sha256 = "1l2s98y805mgxnwy2jvrab65gz1aq5zf48rqk88nclb97w04lnws"; 83658 + buildDepends = [ base transformers ]; 83659 + testDepends = [ base bytestring iconv transformers ]; 83290 83660 extraLibraries = [ pafe ]; 83291 83661 jailbreak = true; 83292 83662 description = "Wrapper for libpafe"; ··· 83483 83853 ({ mkDerivation, base, bytestring, cpu }: 83484 83854 mkDerivation { 83485 83855 pname = "libvorbis"; 83486 - version = "0.1.0.0"; 83487 - sha256 = "1rl8hqbidxj34j3m8nwy32a9fnbzand726zvyljkgpjfkg1mfb2c"; 83856 + version = "0.1.0.1"; 83857 + sha256 = "0ykv2jv559yalypadwnvpzv87rksn24b4h8qi9x1x6r2x4kbwvrl"; 83488 83858 buildDepends = [ base bytestring cpu ]; 83489 - jailbreak = true; 83490 83859 homepage = "https://github.com/the-real-blackh/libvorbis"; 83491 83860 description = "Haskell binding for libvorbis, for decoding Ogg Vorbis audio files"; 83492 83861 license = stdenv.lib.licenses.bsd3; ··· 85132 85501 hydraPlatforms = stdenv.lib.platforms.none; 85133 85502 }) {}; 85134 85503 85504 + "located-base" = callPackage 85505 + ({ mkDerivation, base }: 85506 + mkDerivation { 85507 + pname = "located-base"; 85508 + version = "0.1.0.0"; 85509 + sha256 = "0jb4ziagvbvgaihgw9ajsni0nylqbh5hw3q4dw561qmx2msjjfpj"; 85510 + buildDepends = [ base ]; 85511 + jailbreak = true; 85512 + homepage = "http://github.com/gridaphobe/located-base"; 85513 + description = "Location-aware variants of partial functions"; 85514 + license = stdenv.lib.licenses.bsd3; 85515 + }) {}; 85516 + 85135 85517 "locators" = callPackage 85136 85518 ({ mkDerivation, base, bytestring, cereal, containers, cryptohash 85137 85519 , hspec, hspec-expectations, HUnit, QuickCheck ··· 85247 85629 }: 85248 85630 mkDerivation { 85249 85631 pname = "log-domain"; 85250 - version = "0.10.1.1"; 85251 - sha256 = "084mzaha7g00yxxy4hgl2dia73hzch91961gjvrb20wv6zxf8f7g"; 85632 + version = "0.10.2"; 85633 + sha256 = "0v91xilbgw0cym43fn5abz5ljrxz8anfj1w5x6nzp1qcqcwgwcg4"; 85252 85634 buildDepends = [ 85253 - base binary bytes cereal comonad deepseq distributive 85254 - generic-deriving hashable hashable-extras safecopy semigroupoids 85255 - semigroups vector 85635 + base binary bytes cereal comonad deepseq distributive hashable 85636 + hashable-extras safecopy semigroupoids semigroups vector 85256 85637 ]; 85257 85638 testDepends = [ 85258 85639 base directory doctest filepath generic-deriving semigroups 85259 85640 simple-reflect 85260 85641 ]; 85261 - jailbreak = true; 85262 85642 homepage = "http://github.com/analytics/log-domain/"; 85263 85643 description = "Log-domain arithmetic"; 85264 85644 license = stdenv.lib.licenses.bsd3; ··· 85849 86229 base Cabal containers filepath ghc glib gtk3 mtl parsec pretty text 85850 86230 transformers 85851 86231 ]; 86232 + jailbreak = true; 85852 86233 homepage = "http://www.leksah.org"; 85853 86234 description = "Leksah tool kit"; 85854 86235 license = "GPL"; ··· 86224 86605 license = stdenv.lib.licenses.bsd3; 86225 86606 }) { inherit (pkgs) lzma;}; 86226 86607 86608 + "lzma-streams" = callPackage 86609 + ({ mkDerivation, base, bytestring, HUnit, io-streams, lzma 86610 + , QuickCheck, test-framework, test-framework-hunit 86611 + , test-framework-quickcheck2 86612 + }: 86613 + mkDerivation { 86614 + pname = "lzma-streams"; 86615 + version = "0.0.0.0"; 86616 + sha256 = "0klgi097b8mky989hfzn3kk3r25yq1p0sjna4r68k7z9y143yzm2"; 86617 + buildDepends = [ base bytestring io-streams ]; 86618 + testDepends = [ 86619 + base bytestring HUnit io-streams QuickCheck test-framework 86620 + test-framework-hunit test-framework-quickcheck2 86621 + ]; 86622 + extraLibraries = [ lzma ]; 86623 + homepage = "https://github.com/hvr/lzma-streams"; 86624 + description = "IO-Streams interface for lzma/xz compression"; 86625 + license = stdenv.lib.licenses.bsd3; 86626 + }) { inherit (pkgs) lzma;}; 86627 + 86227 86628 "maam" = callPackage 86228 86629 ({ mkDerivation, base, Cabal, containers, directory, ghc 86229 86630 , template-haskell, text ··· 86575 86976 ({ mkDerivation, base, containers, srcloc, text }: 86576 86977 mkDerivation { 86577 86978 pname = "mainland-pretty"; 86578 - version = "0.4.0.0"; 86579 - sha256 = "1nym3qiyjgag6jpra1cfm8b722h8ghi0f2dv74y6migzqh768myl"; 86979 + version = "0.4.1.0"; 86980 + sha256 = "0r8xhlbpws6wq305dv3z074d7492jif9dsscz4sjbwvh5dk4x1zl"; 86580 86981 buildDepends = [ base containers srcloc text ]; 86581 86982 homepage = "http://www.cs.drexel.edu/~mainland/"; 86582 86983 description = "Pretty printing designed for printing source code"; ··· 88507 88908 license = stdenv.lib.licenses.bsd3; 88508 88909 }) {}; 88509 88910 88911 + "microformats2-parser" = callPackage 88912 + ({ mkDerivation, base, blaze-html, blaze-markup, containers 88913 + , data-default, either, hspec, html-conduit, microformats2-types 88914 + , network, options, pcre-heavy, raw-strings-qq, safe, scotty 88915 + , streaming-commons, stringable, template-haskell, text, time 88916 + , wai-extra, warp, xml-lens, xss-sanitize 88917 + }: 88918 + mkDerivation { 88919 + pname = "microformats2-parser"; 88920 + version = "0.1.1"; 88921 + sha256 = "0n4clyzaw2a9vi0qcf6f2pdp7wckl3z84sfjqdj8k4dbp1qnwl55"; 88922 + isLibrary = true; 88923 + isExecutable = true; 88924 + buildDepends = [ 88925 + base blaze-html blaze-markup containers data-default either 88926 + html-conduit microformats2-types network options pcre-heavy safe 88927 + scotty streaming-commons stringable text time wai-extra warp 88928 + xml-lens xss-sanitize 88929 + ]; 88930 + testDepends = [ 88931 + base data-default hspec html-conduit microformats2-types 88932 + raw-strings-qq template-haskell time xml-lens 88933 + ]; 88934 + homepage = "https://github.com/myfreeweb/microformats2-parser"; 88935 + description = "A Microformats 2 parser"; 88936 + license = stdenv.lib.licenses.publicDomain; 88937 + }) {}; 88938 + 88510 88939 "microformats2-types" = callPackage 88511 88940 ({ mkDerivation, aeson, base, data-default-class, pandoc-types 88512 88941 , setters, text, time 88513 88942 }: 88514 88943 mkDerivation { 88515 88944 pname = "microformats2-types"; 88516 - version = "0.4.0"; 88517 - sha256 = "020193sbvg5arha9pvbc88wqrqyvshy19kz02knkh5kv0dzqngf6"; 88945 + version = "0.4.1"; 88946 + sha256 = "1p2s2g78bnqbcf0www0x11pz5nyxjfac7q7sbd2qfn1v777ylv7b"; 88518 88947 buildDepends = [ 88519 88948 aeson base data-default-class pandoc-types setters text time 88520 88949 ]; 88521 88950 homepage = "https://github.com/myfreeweb/microformats2-types"; 88522 88951 description = "Microformats 2 types (with Aeson instances)"; 88523 - license = "unknown"; 88952 + license = stdenv.lib.licenses.publicDomain; 88524 88953 }) {}; 88525 88954 88526 88955 "microlens" = callPackage 88527 88956 ({ mkDerivation, base }: 88528 88957 mkDerivation { 88529 88958 pname = "microlens"; 88530 - version = "0.1.0.0"; 88531 - sha256 = "173ak9flxdpck7q5b3r38bpgbiv9mzmiz89y3f1wn0wz3q957p44"; 88959 + version = "0.1.3.0"; 88960 + sha256 = "1ryjxc3qa583ryp9sig3rjjr3dpv9sx2ybag4qrlkwja1dz8r2dm"; 88532 88961 buildDepends = [ base ]; 88533 88962 homepage = "http://github.com/aelve/microlens"; 88534 - description = "A tiny part of the ‘lens’ library which you can depend upon"; 88963 + description = "A tiny part of the lens library which you can depend upon"; 88535 88964 license = stdenv.lib.licenses.bsd3; 88536 88965 }) {}; 88537 88966 ··· 88548 88977 }) {}; 88549 88978 88550 88979 "microlens-mtl" = callPackage 88551 - ({ mkDerivation, base, microlens, mtl }: 88980 + ({ mkDerivation, base, microlens, mtl, transformers 88981 + , transformers-compat 88982 + }: 88552 88983 mkDerivation { 88553 88984 pname = "microlens-mtl"; 88554 - version = "0.1.0.0"; 88555 - sha256 = "0wz61g71c0w12apwziww2b6snbmyhfhm2f1304rw4gasify9q5s8"; 88556 - buildDepends = [ base microlens mtl ]; 88985 + version = "0.1.2.0"; 88986 + sha256 = "1jvw9pspnr24rh7bvl6q7hv7x0g6vwy2a5xl19pxf36rl8wlfm9v"; 88987 + buildDepends = [ 88988 + base microlens mtl transformers transformers-compat 88989 + ]; 88557 88990 homepage = "http://github.com/aelve/microlens"; 88558 88991 description = "microlens support for Reader/Writer/State from mtl"; 88559 88992 license = stdenv.lib.licenses.bsd3; ··· 88563 88996 ({ mkDerivation, base, containers, microlens, template-haskell }: 88564 88997 mkDerivation { 88565 88998 pname = "microlens-th"; 88566 - version = "0.1.0.0"; 88567 - sha256 = "0balhqdlj8ighzda5g9qz8s634jlf4pjxs3hvgaqp2rw56jc4i12"; 88999 + version = "0.2.0.0"; 89000 + sha256 = "048q6ridxvg7zi272q01k6ds0f411kg27p5whgj63qgg3k9w72sp"; 88568 89001 buildDepends = [ base containers microlens template-haskell ]; 88569 89002 homepage = "http://github.com/aelve/microlens"; 88570 - description = "Automatic generation of record lenses for 'microlens'"; 89003 + description = "Automatic generation of record lenses for microlens"; 88571 89004 license = stdenv.lib.licenses.bsd3; 88572 89005 }) {}; 88573 89006 ··· 89576 90009 license = stdenv.lib.licenses.bsd3; 89577 90010 }) {}; 89578 90011 90012 + "moesocks" = callPackage 90013 + ({ mkDerivation, aeson, attoparsec, base, binary, bytestring 90014 + , containers, cryptohash, hslogger, HsOpenSSL, lens, mtl, network 90015 + , optparse-applicative, random, safe, text, transformers, unix 90016 + , unordered-containers 90017 + }: 90018 + mkDerivation { 90019 + pname = "moesocks"; 90020 + version = "0.1.0.8"; 90021 + sha256 = "1f09sf41kbza3mci2yps0b38xi2j5gakjqx9hmi7lfzga4dkqgg0"; 90022 + isLibrary = false; 90023 + isExecutable = true; 90024 + buildDepends = [ 90025 + aeson attoparsec base binary bytestring containers cryptohash 90026 + hslogger HsOpenSSL lens mtl network optparse-applicative random 90027 + safe text transformers unix unordered-containers 90028 + ]; 90029 + homepage = "https://github.com/nfjinjing/moesocks"; 90030 + description = "moe for all"; 90031 + license = stdenv.lib.licenses.asl20; 90032 + }) {}; 90033 + 89579 90034 "mohws" = callPackage 89580 90035 ({ mkDerivation, base, bytestring, containers, data-accessor 89581 90036 , directory, explicit-exception, filepath, html, HTTP, network ··· 89745 90200 }: 89746 90201 mkDerivation { 89747 90202 pname = "monad-extras"; 89748 - version = "0.5.9"; 89749 - sha256 = "1y24yz635brllfygia1mbln4d8xiwb0pq0izh5pil7511gijhs0s"; 90203 + version = "0.5.11"; 90204 + sha256 = "0rq44dk1fvfqkhng2yczyyz7jh6d6m0kjy58k02ady28f7j2r5vn"; 89750 90205 buildDepends = [ 89751 90206 base mmorph monad-control stm transformers transformers-base 89752 90207 ]; ··· 90758 91213 }: 90759 91214 mkDerivation { 90760 91215 pname = "monoidal-containers"; 90761 - version = "0.1.2.1"; 90762 - sha256 = "1n76vjh785yzirfkh63nlrpi9y1bb9z1r3v514150wfxjn3n723j"; 91216 + version = "0.1.2.2"; 91217 + sha256 = "06yam4ljp4lm2rjaccykg8zx4hnmn0ly3fs24xjm4q45ldz7gwyb"; 90763 91218 buildDepends = [ 90764 91219 base containers deepseq hashable lens newtype unordered-containers 90765 91220 ]; 90766 - jailbreak = true; 90767 91221 homepage = "http://github.com/bgamari/monoidal-containers"; 90768 91222 description = "Containers with monoidal accumulation"; 90769 91223 license = stdenv.lib.licenses.bsd3; ··· 90968 91422 }: 90969 91423 mkDerivation { 90970 91424 pname = "morte"; 90971 - version = "1.2.0"; 90972 - sha256 = "0mr2aaf4r15ysmymqixd592z5w56973qv8ww1d7vkyvj851gfm01"; 91425 + version = "1.2.1"; 91426 + sha256 = "15zvk50qpp3ywkwqgpm4phdcspfszzwipxcf07lnxpk98i7ybc4g"; 90973 91427 isLibrary = true; 90974 91428 isExecutable = true; 90975 91429 buildDepends = [ ··· 91456 91910 description = "Monad transformer library using type families"; 91457 91911 license = stdenv.lib.licenses.bsd3; 91458 91912 hydraPlatforms = stdenv.lib.platforms.none; 91913 + }) {}; 91914 + 91915 + "mtl-unleashed" = callPackage 91916 + ({ mkDerivation, base, mtl }: 91917 + mkDerivation { 91918 + pname = "mtl-unleashed"; 91919 + version = "0.2.2"; 91920 + sha256 = "0ih03zznq8mf8c76ic43j3vana6127bh6hxfz549g5kv9h54y83h"; 91921 + buildDepends = [ base mtl ]; 91922 + homepage = "https://github.com/seereason/mtl-unleashed"; 91923 + description = "MTL classes without the functional dependency"; 91924 + license = stdenv.lib.licenses.bsd3; 91459 91925 }) {}; 91460 91926 91461 91927 "mtlparse" = callPackage ··· 92434 92900 license = stdenv.lib.licenses.publicDomain; 92435 92901 }) {}; 92436 92902 92903 + "myo" = callPackage 92904 + ({ mkDerivation, aeson, base, containers, inline-c, lens-family 92905 + , lens-family-th, scientific, tasty, tasty-hunit, template-haskell 92906 + , text, vector, websockets 92907 + }: 92908 + mkDerivation { 92909 + pname = "myo"; 92910 + version = "0.1.0.0"; 92911 + sha256 = "0sn3ic3h94ff57igs61l2cq82y6xxz87qflm8dykwwy721swq1qn"; 92912 + isLibrary = true; 92913 + isExecutable = true; 92914 + buildDepends = [ 92915 + aeson base containers inline-c lens-family lens-family-th 92916 + scientific template-haskell text vector websockets 92917 + ]; 92918 + testDepends = [ base tasty tasty-hunit ]; 92919 + homepage = "http://github.com/adinapoli/myo"; 92920 + description = "Haskell binding to the Myo armband"; 92921 + license = stdenv.lib.licenses.mit; 92922 + }) {}; 92923 + 92437 92924 "mysnapsession" = callPackage 92438 92925 ({ mkDerivation, base, bytestring, cereal, clientsession 92439 92926 , containers, mtl, random, regex-posix, snap, snap-core, time ··· 92885 93372 }: 92886 93373 mkDerivation { 92887 93374 pname = "nationstates"; 92888 - version = "0.1.0.2"; 92889 - sha256 = "0h01dxf8f2h18cx6ag67370l492jvyqh15ijipxzr1gwmkmnymrl"; 93375 + version = "0.2.0.0"; 93376 + sha256 = "07rs7c5pvq6x8icg5pzk613vazcnnl3rfrcsf3zw6i8gaxh0dq48"; 92890 93377 buildDepends = [ 92891 93378 base bytestring clock containers http-client http-client-tls 92892 93379 http-types multiset transformers xml ··· 93311 93798 }: 93312 93799 mkDerivation { 93313 93800 pname = "nested-routes"; 93314 - version = "3.1.0"; 93315 - sha256 = "128i669x31c4jagnamzlsv3z584rpijpmc832hr96004qkwr692n"; 93801 + version = "3.2.0"; 93802 + sha256 = "02mj54a797h9ywa0985xw8pspl953xgn813r6mz2apx0mk6gp1xg"; 93316 93803 buildDepends = [ 93317 93804 aeson attoparsec base blaze-html bytestring clay composition 93318 93805 constraints containers http-media http-types lucid mtl poly-arity ··· 93855 94342 ({ mkDerivation, base, bytestring, network, text, time, vector }: 93856 94343 mkDerivation { 93857 94344 pname = "network-carbon"; 93858 - version = "1.0.3"; 93859 - revision = "1"; 93860 - sha256 = "0wk3rds1d2c6nr9gdz9qgpqhmkqkdkk0rqxzj3rznv0n9m9sylcr"; 93861 - editedCabalFile = "6500f60c0b037a1e680ef3356ce43e27f145efe2cf85f63cb2e670cb344a926d"; 94345 + version = "1.0.5"; 94346 + sha256 = "0kb3gz8545dgi93ys9pk240vap7zjnl2npn1xryng2ijl7ssn9li"; 93862 94347 buildDepends = [ base bytestring network text time vector ]; 93863 94348 homepage = "http://github.com/ocharles/network-carbon"; 93864 94349 description = "A Haskell implementation of the Carbon protocol (part of the Graphite monitoring tools)"; ··· 95603 96088 }: 95604 96089 mkDerivation { 95605 96090 pname = "nvim-hs"; 95606 - version = "0.0.1"; 95607 - sha256 = "1zma19lb4kzzfiabkx55ffgvdqrycijpm2yz3jszm1m6m58khif5"; 96091 + version = "0.0.2"; 96092 + sha256 = "0f551qr7dgn6p4slr0yyfw7v2c6j6w1haqzgc7n7phrgmnhvrhzp"; 95608 96093 isLibrary = true; 95609 96094 isExecutable = true; 95610 96095 buildDepends = [ ··· 96221 96706 license = stdenv.lib.licenses.bsd3; 96222 96707 }) {}; 96223 96708 96709 + "opaleye-sqlite" = callPackage 96710 + ({ mkDerivation, base, base16-bytestring, bytestring 96711 + , case-insensitive, containers, contravariant, direct-sqlite 96712 + , pretty, product-profunctors, profunctors, QuickCheck, semigroups 96713 + , sqlite-simple, text, time, time-locale-compat, transformers, uuid 96714 + , void 96715 + }: 96716 + mkDerivation { 96717 + pname = "opaleye-sqlite"; 96718 + version = "0.0.1.0"; 96719 + sha256 = "0r3ij02wkxq50hl70wn53fdr1qi5gigg4x3y0vabm53gabgxdbxq"; 96720 + buildDepends = [ 96721 + base base16-bytestring bytestring case-insensitive contravariant 96722 + direct-sqlite pretty product-profunctors profunctors semigroups 96723 + sqlite-simple text time time-locale-compat transformers uuid void 96724 + ]; 96725 + testDepends = [ 96726 + base containers contravariant product-profunctors profunctors 96727 + QuickCheck semigroups sqlite-simple time 96728 + ]; 96729 + homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; 96730 + description = "An SQL-generating DSL targeting SQLite"; 96731 + license = stdenv.lib.licenses.bsd3; 96732 + }) {}; 96733 + 96734 + "open-browser" = callPackage 96735 + ({ mkDerivation, base, process }: 96736 + mkDerivation { 96737 + pname = "open-browser"; 96738 + version = "0.2.0.0"; 96739 + sha256 = "093i475l9gyb5jyk2m6fdz1dw2jm545rlrbmwqz3vfdfy2ikcks3"; 96740 + isLibrary = true; 96741 + isExecutable = true; 96742 + buildDepends = [ base process ]; 96743 + description = "Open a web browser from Haskell"; 96744 + license = stdenv.lib.licenses.bsd3; 96745 + }) {}; 96746 + 96224 96747 "open-pandoc" = callPackage 96225 96748 ({ mkDerivation, base, bytestring, containers, directory 96226 96749 , extensible-exceptions, filepath, HTTP, mtl, network, old-time ··· 96330 96853 hydraPlatforms = stdenv.lib.platforms.none; 96331 96854 }) {}; 96332 96855 96856 + "openflow" = callPackage 96857 + ({ mkDerivation, aeson, base, bimap, binary, bytestring, containers 96858 + , deepseq-generics, hashable, network 96859 + }: 96860 + mkDerivation { 96861 + pname = "openflow"; 96862 + version = "0.3.0"; 96863 + sha256 = "0dhg34s4imr1v6wlc567qg5929wa82my7jbhxm9hqq0882vb0sb2"; 96864 + buildDepends = [ 96865 + aeson base bimap binary bytestring containers deepseq-generics 96866 + hashable network 96867 + ]; 96868 + jailbreak = true; 96869 + homepage = "https://github.com/AndreasVoellmy/openflow"; 96870 + description = "OpenFlow"; 96871 + license = "unknown"; 96872 + }) {}; 96873 + 96333 96874 "opengles" = callPackage 96334 96875 ({ mkDerivation, base, bytestring, distributive, EGL 96335 96876 , future-resource, ghc-prim, GLESv2, lens, linear, packer, vector ··· 96531 97072 ({ mkDerivation, base, opentheory-primitive, QuickCheck }: 96532 97073 mkDerivation { 96533 97074 pname = "opentheory"; 96534 - version = "1.199"; 96535 - sha256 = "1il1lyjmv7ij7clnbc57ajpfwlg5a5ld3m619hxylpafyrbr4v5y"; 97075 + version = "1.200"; 97076 + sha256 = "0fdxrpsw3c4p1y80xfab0cl5zhkjcp9dlylgxywzq5kcpqv07ifh"; 96536 97077 buildDepends = [ base opentheory-primitive QuickCheck ]; 96537 97078 testDepends = [ base opentheory-primitive QuickCheck ]; 96538 97079 homepage = "http://opentheory.gilith.com/?pkg=base"; ··· 96552 97093 base opentheory opentheory-primitive opentheory-probability 96553 97094 QuickCheck 96554 97095 ]; 97096 + jailbreak = true; 96555 97097 homepage = "http://opentheory.gilith.com/?pkg=natural-bits"; 96556 97098 description = "Natural number to bit-list conversions"; 96557 97099 license = stdenv.lib.licenses.mit; ··· 96569 97111 base opentheory opentheory-bits opentheory-primitive 96570 97112 opentheory-probability QuickCheck 96571 97113 ]; 97114 + jailbreak = true; 96572 97115 homepage = "http://opentheory.gilith.com/?pkg=byte"; 96573 97116 description = "Bytes"; 96574 97117 license = stdenv.lib.licenses.mit; ··· 96599 97142 }: 96600 97143 mkDerivation { 96601 97144 pname = "opentheory-divides"; 96602 - version = "1.62"; 96603 - sha256 = "182c14c1j9m82pnx6crxgrry02yvixziap9ikhavx7krr52vdwbv"; 97145 + version = "1.63"; 97146 + sha256 = "1jax8103yhgmbwfzbpnis4nj6f90n3wizb2znvafd4pw2afs5mkv"; 96604 97147 buildDepends = [ base opentheory opentheory-primitive QuickCheck ]; 96605 97148 testDepends = [ base opentheory opentheory-primitive QuickCheck ]; 96606 97149 homepage = "http://opentheory.gilith.com/?pkg=natural-divides"; ··· 96608 97151 license = stdenv.lib.licenses.mit; 96609 97152 }) {}; 96610 97153 97154 + "opentheory-fibonacci" = callPackage 97155 + ({ mkDerivation, base, opentheory, opentheory-primitive 97156 + , opentheory-stream, QuickCheck 97157 + }: 97158 + mkDerivation { 97159 + pname = "opentheory-fibonacci"; 97160 + version = "1.69"; 97161 + sha256 = "09rqz7fixh1k4ya1aci7v0wy0sz2m7j5cj66plcbvpv6p03yq1vv"; 97162 + buildDepends = [ 97163 + base opentheory opentheory-primitive opentheory-stream QuickCheck 97164 + ]; 97165 + testDepends = [ 97166 + base opentheory opentheory-primitive opentheory-stream QuickCheck 97167 + ]; 97168 + description = "Fibonacci numbers"; 97169 + license = stdenv.lib.licenses.mit; 97170 + }) {}; 97171 + 96611 97172 "opentheory-parser" = callPackage 96612 97173 ({ mkDerivation, base, opentheory, opentheory-primitive, QuickCheck 96613 97174 }: ··· 96617 97178 sha256 = "0325g7m5z64dg8sihmcgi9rmkms6r76hf1d7927v08dl5xh4dlhi"; 96618 97179 buildDepends = [ base opentheory opentheory-primitive QuickCheck ]; 96619 97180 testDepends = [ base opentheory opentheory-primitive QuickCheck ]; 97181 + jailbreak = true; 96620 97182 homepage = "http://opentheory.gilith.com/?pkg=parser"; 96621 97183 description = "Stream parsers"; 96622 97184 license = stdenv.lib.licenses.mit; ··· 96638 97200 base opentheory opentheory-divides opentheory-primitive 96639 97201 opentheory-stream QuickCheck 96640 97202 ]; 97203 + jailbreak = true; 96641 97204 homepage = "http://opentheory.gilith.com/?pkg=natural-prime"; 96642 97205 description = "Prime natural numbers"; 96643 97206 license = stdenv.lib.licenses.mit; ··· 96664 97227 version = "1.49"; 96665 97228 sha256 = "0dszjszjdabgafpvxiailpgzm7y96f4a8zhjfhin3m36f3lb0dmy"; 96666 97229 buildDepends = [ base opentheory opentheory-primitive QuickCheck ]; 97230 + jailbreak = true; 96667 97231 homepage = "http://opentheory.gilith.com/?pkg=probability"; 96668 97232 description = "Probability"; 96669 97233 license = stdenv.lib.licenses.mit; ··· 96674 97238 }: 96675 97239 mkDerivation { 96676 97240 pname = "opentheory-stream"; 96677 - version = "1.45"; 96678 - sha256 = "0gl7svhyrvi6bznfmc3jfar6hzlrywni6f7pvaykjzkf80xzljbr"; 97241 + version = "1.46"; 97242 + sha256 = "0p27hvxxxl6x6g97llls8kry5vlmpi5b02x9x96v24m4clxj55wa"; 96679 97243 buildDepends = [ base opentheory opentheory-primitive QuickCheck ]; 96680 97244 homepage = "http://opentheory.gilith.com/?pkg=stream"; 96681 97245 description = "Infinite stream types"; ··· 96699 97263 base opentheory opentheory-bits opentheory-byte opentheory-parser 96700 97264 opentheory-primitive opentheory-probability QuickCheck 96701 97265 ]; 97266 + jailbreak = true; 96702 97267 homepage = "http://opentheory.gilith.com/?pkg=char"; 96703 97268 description = "Unicode characters"; 96704 97269 license = stdenv.lib.licenses.mit; ··· 97773 98338 }) {}; 97774 98339 97775 98340 "pandoc-placetable" = callPackage 97776 - ({ mkDerivation, base, explicit-exception, pandoc-types 97777 - , spreadsheet 98341 + ({ mkDerivation, base, bytestring, explicit-exception, http-conduit 98342 + , pandoc-types, spreadsheet 97778 98343 }: 97779 98344 mkDerivation { 97780 98345 pname = "pandoc-placetable"; 97781 - version = "0.1.1"; 97782 - sha256 = "196x22f76mvd072yzj6vcynrp459zmlg84l42rwx4syhnvn1ca8d"; 98346 + version = "0.1.2"; 98347 + sha256 = "0vq94j5jsq60p0wbml50hwqa2zpidbzx92cbb7d2ialqj7816zwb"; 97783 98348 isLibrary = false; 97784 98349 isExecutable = true; 97785 98350 buildDepends = [ 97786 - base explicit-exception pandoc-types spreadsheet 98351 + base bytestring explicit-exception http-conduit pandoc-types 98352 + spreadsheet 97787 98353 ]; 97788 98354 homepage = "https://github.com/mb21/pandoc-placetable"; 97789 98355 description = "Pandoc filter to include CSV files"; ··· 99968 100534 }: 99969 100535 mkDerivation { 99970 100536 pname = "pgdl"; 99971 - version = "8.2"; 99972 - sha256 = "04yydjvwnjilyxwqwrbwg5c2mph58728bacz2q8pbd0084lp77nd"; 100537 + version = "8.3"; 100538 + revision = "2"; 100539 + sha256 = "0kbx9dgmy9pvcgcpsjplrpnqlk8x3icfpr0flincmzqkzxxzcaq5"; 100540 + editedCabalFile = "9d6e976e130869b6761d870380b867c2501c43a1318a5f385687608c13a0ef72"; 99973 100541 isLibrary = false; 99974 100542 isExecutable = true; 99975 100543 buildDepends = [ 99976 100544 array base bytestring Cabal configurator directory filepath HTTP 99977 100545 network-uri process tagsoup text vty vty-ui 99978 100546 ]; 99979 - description = "simply download a video from webpage and play it"; 100547 + description = "simply download a video (or a file) from a webpage and xdg-open it"; 99980 100548 license = stdenv.lib.licenses.publicDomain; 99981 100549 }) {}; 99982 100550 ··· 100419 100987 }: 100420 100988 mkDerivation { 100421 100989 pname = "pipes"; 100422 - version = "4.1.5"; 100423 - revision = "1"; 100424 - sha256 = "1c19am4dr6na9xpx4h7yngvbml0ghc1dbym8988hjhw84gq4lhfx"; 100425 - editedCabalFile = "c23c260bff1178965d87e6fc9f7263877b5f2adc4c0e4c1bd59c55971fff9eb4"; 100990 + version = "4.1.6"; 100991 + sha256 = "0dbl9sa0ryclyxwm0zfmqvpx7ljmpnfccmnihxia35q471h50sid"; 100426 100992 buildDepends = [ base mmorph mtl transformers ]; 100427 100993 testDepends = [ 100428 100994 base mtl QuickCheck test-framework test-framework-quickcheck2 ··· 100447 101013 jailbreak = true; 100448 101014 homepage = "https://github.com/k0001/pipes-aeson"; 100449 101015 description = "Encode and decode JSON streams using Aeson and Pipes"; 101016 + license = stdenv.lib.licenses.bsd3; 101017 + }) {}; 101018 + 101019 + "pipes-async" = callPackage 101020 + ({ mkDerivation, base, hspec, lifted-async, lifted-base 101021 + , monad-control, pipes, pipes-safe, stm, transformers-base 101022 + }: 101023 + mkDerivation { 101024 + pname = "pipes-async"; 101025 + version = "0.1.1"; 101026 + sha256 = "1b0l3fnblfgwgcbd5brs5iwix4wix1ijx10ppwb8yb1wbqbmh8z2"; 101027 + buildDepends = [ 101028 + base lifted-async lifted-base monad-control pipes pipes-safe stm 101029 + transformers-base 101030 + ]; 101031 + testDepends = [ 101032 + base hspec lifted-async lifted-base monad-control pipes pipes-safe 101033 + stm transformers-base 101034 + ]; 101035 + homepage = "https://github.com/jwiegley/pipes-async"; 101036 + description = "A higher-level interface to using concurrency with pipes"; 100450 101037 license = stdenv.lib.licenses.bsd3; 100451 101038 }) {}; 100452 101039 ··· 100947 101534 }) {}; 100948 101535 100949 101536 "pipes-safe" = callPackage 100950 - ({ mkDerivation, base, containers, exceptions, pipes, transformers 101537 + ({ mkDerivation, base, containers, exceptions, monad-control, mtl 101538 + , pipes, transformers, transformers-base 100951 101539 }: 100952 101540 mkDerivation { 100953 101541 pname = "pipes-safe"; 100954 - version = "2.2.2"; 100955 - sha256 = "1sp0fw5w4kcf5llxx2qqzx8n5ps8qw1jx5asqg7al89mqr38am05"; 100956 - buildDepends = [ base containers exceptions pipes transformers ]; 101542 + version = "2.2.3"; 101543 + sha256 = "19wr3q6skwdyd68k1r33w2mipfsgsg2982027faq7rnfw9lq2yyi"; 101544 + buildDepends = [ 101545 + base containers exceptions monad-control mtl pipes transformers 101546 + transformers-base 101547 + ]; 100957 101548 description = "Safety for the pipes ecosystem"; 100958 101549 license = stdenv.lib.licenses.bsd3; 100959 101550 }) {}; ··· 101316 101907 ({ mkDerivation, base, glib, gtk3, hmatrix, mtl, plot, process }: 101317 101908 mkDerivation { 101318 101909 pname = "plot-gtk3"; 101319 - version = "0.1"; 101320 - sha256 = "0dw6ypnwr3xnjl1cvr55x3j182vchjhinc9fxsnd5z7ciraqvnv0"; 101910 + version = "0.1.0.1"; 101911 + sha256 = "0x7s9wb8r2sds25q9k6h8mvpfzgi90v497ccxskvb3qd0a1jv24f"; 101321 101912 buildDepends = [ base glib gtk3 hmatrix mtl plot process ]; 101322 101913 homepage = "http://code.haskell.org/plot"; 101323 101914 description = "GTK3 plots and interaction with GHCi"; ··· 101904 102495 }: 101905 102496 mkDerivation { 101906 102497 pname = "pontarius-xmpp"; 101907 - version = "0.4.2.1"; 101908 - sha256 = "14jhxmccj9ywhxz2rkd4vdwhzz6ciq070ml8vl282hz8k3dr1va9"; 102498 + version = "0.4.2.2"; 102499 + sha256 = "1krbr0vdza3s6w4sa119x591i5ryq9bmqfnacy665xr5si4bkzcv"; 101909 102500 buildDepends = [ 101910 102501 attoparsec base base64-bytestring binary bytestring conduit 101911 102502 containers crypto-api crypto-random cryptohash cryptohash-cryptoapi ··· 102212 102803 }: 102213 102804 mkDerivation { 102214 102805 pname = "posix-paths"; 102215 - version = "0.2.0.5"; 102216 - sha256 = "046y5i4hw4a326r3145yrfd1p6sn3b9xsn6rdk73nv74ks4wrn5v"; 102806 + version = "0.2.1.0"; 102807 + sha256 = "187sq0rcdg06h64kkjdgqg32s8s51hd4cgf6hvajj1pgd9pyd1i0"; 102217 102808 buildDepends = [ base bytestring unix ]; 102218 102809 testDepends = [ base bytestring doctest HUnit QuickCheck unix ]; 102219 102810 description = "POSIX filepath/directory functionality"; ··· 102332 102923 }: 102333 102924 mkDerivation { 102334 102925 pname = "postgresql-config"; 102335 - version = "0.0.2"; 102336 - sha256 = "1b7rppzarnmndmgwkcahcrcnxzigfldm50iqd81vj0zkii6w0i43"; 102926 + version = "0.1.0"; 102927 + sha256 = "1p5kzj2wsd3kigi9qavsqkxv9kfk4qbl809wqbdk4pd7y34ajab4"; 102337 102928 buildDepends = [ 102338 102929 aeson base bytestring monad-control mtl postgresql-simple 102339 102930 resource-pool time ··· 102370 102961 ({ mkDerivation, base, bytestring, postgresql }: 102371 102962 mkDerivation { 102372 102963 pname = "postgresql-libpq"; 102373 - version = "0.9.0.2"; 102374 - sha256 = "1x1nmzl1j6vc3vy746ch6ps4wy6hwqm78yl9cq9fvkpllh0a2dnw"; 102964 + version = "0.9.1.1"; 102965 + sha256 = "0waqg245ly017j1qml4sc24896ax645bv8a2fghwwa46zvbsx0z4"; 102375 102966 buildDepends = [ base bytestring ]; 102376 102967 extraLibraries = [ postgresql ]; 102377 102968 homepage = "http://github.com/lpsmith/postgresql-libpq"; ··· 103462 104053 }: 103463 104054 mkDerivation { 103464 104055 pname = "probable"; 103465 - version = "0.1.0.0"; 103466 - sha256 = "1269cajfjnfrqacs874v6zczrb497474hqhid5wmm8f9fmhiy0wz"; 104056 + version = "0.1.1"; 104057 + sha256 = "1n6p7pharcq2cmfabh2ngfsy9mfqqs6qh57m0kygq13lbzwyy8wr"; 103467 104058 buildDepends = [ 103468 104059 base mtl mwc-random primitive statistics transformers vector 103469 104060 ]; 103470 - jailbreak = true; 103471 104061 homepage = "http://github.com/alpmestan/probable"; 103472 104062 description = "Easy and reasonably efficient probabilistic programming and random generation"; 103473 104063 license = stdenv.lib.licenses.bsd3; ··· 104099 104689 }: 104100 104690 mkDerivation { 104101 104691 pname = "propellor"; 104102 - version = "2.6.0"; 104103 - sha256 = "1q9l5bp7sg9lciz8c5qzxmwnfb7b195f8zgdcvzfcx50i3hpxxad"; 104692 + version = "2.7.0"; 104693 + sha256 = "12pfrv6n61bsg4cyylfr0kw82x36mwvnyvzdkr2lrka79i5l9a5w"; 104104 104694 isLibrary = true; 104105 104695 isExecutable = true; 104106 104696 buildDepends = [ ··· 104257 104847 }: 104258 104848 mkDerivation { 104259 104849 pname = "protocol-buffers"; 104260 - version = "2.1.3"; 104261 - sha256 = "1ys0291js4mdfxqjk09lrmf33g7dh4rzq562f471ac98zwc5q588"; 104850 + version = "2.1.4"; 104851 + sha256 = "0sn92mf0dl7w6cg25rhm492sl58pssshjyipadis4w4ww0kyp4md"; 104262 104852 buildDepends = [ 104263 104853 array base binary bytestring containers directory filepath mtl 104264 104854 parsec syb utf8-string ··· 104273 104863 ({ mkDerivation, base, bytestring, containers, protocol-buffers }: 104274 104864 mkDerivation { 104275 104865 pname = "protocol-buffers-descriptor"; 104276 - version = "2.1.3"; 104277 - sha256 = "04iw8bfq9i89xvx2dn16cwv4w9zv3ljgngm6aac6imp7za4mvjzf"; 104866 + version = "2.1.4"; 104867 + sha256 = "1m07l890465ks53acmk9g3fzbm2h5l2pdfhp16hcmvvzxlaz2zvy"; 104278 104868 buildDepends = [ base bytestring containers protocol-buffers ]; 104279 104869 homepage = "https://github.com/k-bx/protocol-buffers"; 104280 104870 description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; ··· 104469 105059 }) {}; 104470 105060 104471 105061 "publicsuffix" = callPackage 104472 - ({ mkDerivation, base, bytestring, filepath, hspec 104473 - , template-haskell, text 104474 - }: 105062 + ({ mkDerivation, base, filepath, hspec, template-haskell }: 104475 105063 mkDerivation { 104476 105064 pname = "publicsuffix"; 104477 - version = "0.20150507"; 104478 - sha256 = "1n1wns0n48rqva5zz4kyj84rw0lf7ih612cp0dhsdk9jgc1kapsj"; 104479 - buildDepends = [ base bytestring filepath template-haskell text ]; 104480 - testDepends = [ base hspec text ]; 105065 + version = "0.20150804"; 105066 + sha256 = "06b311vdwihqhdwf2zr0akndgyaxycli7lymzzyfbn0rhhx1g2kn"; 105067 + buildDepends = [ base filepath template-haskell ]; 105068 + testDepends = [ base hspec ]; 104481 105069 homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; 104482 105070 description = "The publicsuffix list exposed as proper Haskell types"; 104483 105071 license = stdenv.lib.licenses.mit; ··· 104866 105454 }: 104867 105455 mkDerivation { 104868 105456 pname = "purescript"; 104869 - version = "0.7.1.0"; 104870 - sha256 = "1hnrqs1dkcrwa1xrnrikcymm65inxfh9jznfb2xqczd9vyn8j518"; 105457 + version = "0.7.2.0"; 105458 + sha256 = "0drx0n1ac0sjnma7c15hsld1n6rwwl7r8fzcdibk73k5pfyz9a6k"; 104871 105459 isLibrary = true; 104872 105460 isExecutable = true; 104873 105461 buildDepends = [ ··· 104889 105477 license = stdenv.lib.licenses.mit; 104890 105478 hydraPlatforms = stdenv.lib.platforms.none; 104891 105479 }) { inherit (pkgs) nodejs;}; 105480 + 105481 + "purescript-bundle-fast" = callPackage 105482 + ({ mkDerivation, base, containers, directory, filepath 105483 + , optparse-applicative, text, vector 105484 + }: 105485 + mkDerivation { 105486 + pname = "purescript-bundle-fast"; 105487 + version = "0.1.0.1"; 105488 + sha256 = "0s9db4nb5ppr3yznay7jlgydq68hcdn525cwnxkj41h8fv9sflfw"; 105489 + isLibrary = false; 105490 + isExecutable = true; 105491 + buildDepends = [ 105492 + base containers directory filepath optparse-applicative text vector 105493 + ]; 105494 + homepage = "https://github.com/bitc/purescript-bundle-fast"; 105495 + description = "A fast alternative to Purescript's `psc-bundle` to be used during development"; 105496 + license = stdenv.lib.licenses.mit; 105497 + }) {}; 104892 105498 104893 105499 "push-notify" = callPackage 104894 105500 ({ mkDerivation, aeson, async, attoparsec-conduit, base ··· 105758 106364 ({ mkDerivation, base }: 105759 106365 mkDerivation { 105760 106366 pname = "quiver"; 105761 - version = "0.0.0.6"; 105762 - sha256 = "0g9qfspzamxxn8zvl698g9f8y3alm4js7i7k9wa737pgv47lzqbz"; 106367 + version = "0.0.0.11"; 106368 + sha256 = "1pxnxdm84fqmxvv0l312q8nynpaiyf43jksa2qg1wkl53n0mm2fa"; 105763 106369 buildDepends = [ base ]; 105764 106370 homepage = "https://github.com/zadarnowski/quiver"; 105765 106371 description = "Quiver finite stream processing library"; ··· 105770 106376 ({ mkDerivation, base, bytestring, quiver }: 105771 106377 mkDerivation { 105772 106378 pname = "quiver-bytestring"; 105773 - version = "0.0.0.1"; 105774 - sha256 = "03lw2yi4a3d5nd7xqlcs4pmf0rcbfw3n4s36wgaxy4wn3bhh3300"; 106379 + version = "0.0.0.2"; 106380 + sha256 = "17wjj1fg60g3km9d4kxfz7lk9bf4sfz0brsg8pb0h2xlw0zvm3wl"; 105775 106381 buildDepends = [ base bytestring quiver ]; 105776 106382 homepage = "https://github.com/zadarnowski/quiver-bytestring"; 105777 106383 description = "Quiver combinators for bytestring streaming"; ··· 105782 106388 ({ mkDerivation, base, data-cell, quiver }: 105783 106389 mkDerivation { 105784 106390 pname = "quiver-cell"; 105785 - version = "0.0.0.1"; 105786 - sha256 = "1bz74xigj99v9hh4i6m6z4h9f0l09rnbs108npnl953v0bqi44qi"; 106391 + version = "0.0.0.2"; 106392 + sha256 = "10p11ljmwp7szw46saxa972xpjiyr5r19kia6ivaq98jqwcvi5af"; 105787 106393 buildDepends = [ base data-cell quiver ]; 105788 106394 homepage = "https://github.com/zadarnowski/quiver-cell"; 105789 106395 description = "Quiver combinators for cellular data processing"; ··· 105796 106402 }: 105797 106403 mkDerivation { 105798 106404 pname = "quiver-csv"; 105799 - version = "0.0.0.1"; 105800 - sha256 = "0s5m6qhpir5i1n3ifrcr4if4ysk52cwi9pxm354mdw1859h5lmx9"; 106405 + version = "0.0.0.3"; 106406 + sha256 = "19wb16lbv0wr7w2qba6g2cdmzdhpyyjx1bjvrnz0cqbb4di9yscj"; 105801 106407 buildDepends = [ 105802 106408 base bytestring data-cell quiver quiver-bytestring 105803 106409 ]; ··· 105805 106411 description = "Quiver combinators for cellular CSV data processing"; 105806 106412 license = stdenv.lib.licenses.bsd3; 105807 106413 hydraPlatforms = stdenv.lib.platforms.none; 106414 + }) {}; 106415 + 106416 + "quiver-enumerator" = callPackage 106417 + ({ mkDerivation, base, enumerator, quiver }: 106418 + mkDerivation { 106419 + pname = "quiver-enumerator"; 106420 + version = "0.0.0.1"; 106421 + sha256 = "0k0822yzlxkb6b46834hm3bad3x1gma1gqcjl9ryxpqsl73nc4mp"; 106422 + buildDepends = [ base enumerator quiver ]; 106423 + homepage = "https://github.com/zadarnowski/quiver-enumerator"; 106424 + description = "Bridge between Quiver and Iteratee paradigms"; 106425 + license = stdenv.lib.licenses.bsd3; 105808 106426 }) {}; 105809 106427 105810 106428 "quoridor-hs" = callPackage ··· 106675 107293 }: 106676 107294 mkDerivation { 106677 107295 pname = "react-haskell"; 106678 - version = "2.0.0"; 106679 - sha256 = "016bpbci89b6grkwnq1yqjm5y50di1hmjlf2mkxjc0wyi82c7say"; 107296 + version = "2.0.1"; 107297 + sha256 = "0kjbicrvriliy50gy82b7rsrfk5p3iv20wwnhiaq9i16mbh2zj8j"; 106680 107298 buildDepends = [ 106681 107299 aeson base deepseq lens-family monads-tf text transformers 106682 107300 unordered-containers void ··· 107222 107840 }: 107223 107841 mkDerivation { 107224 107842 pname = "reddit"; 107225 - version = "0.1.0.0"; 107226 - revision = "1"; 107227 - sha256 = "1g18lfl9hvz13f3i5h819pfh724i5lhgqfvyy2r06ni7hjfylzj4"; 107228 - editedCabalFile = "84c6e65809dcd5c4fed83d64c71c6465a6ee1fe6e913c637dc2db608c6cc5870"; 107843 + version = "0.1.1.0"; 107844 + sha256 = "1flsawdld5a4bs5crs352zc1r9ag3yn1indbzw7vgs2mmyiavg7k"; 107229 107845 buildDepends = [ 107230 107846 aeson api-builder base bytestring data-default http-conduit 107231 107847 http-types network stm text time transformers unordered-containers ··· 107235 107851 api-builder base bytestring Cabal hspec http-conduit text time 107236 107852 transformers 107237 107853 ]; 107854 + jailbreak = true; 107238 107855 homepage = "https://github.com/intolerable/reddit"; 107239 107856 description = "Library for interfacing with Reddit's API"; 107240 107857 license = stdenv.lib.licenses.bsd2; ··· 107439 108056 ({ mkDerivation, base }: 107440 108057 mkDerivation { 107441 108058 pname = "refact"; 107442 - version = "0.2.0.0"; 107443 - sha256 = "1ixbji328bxdz4rblb0s7hp6vbckj4yj03a8a8sa756igj988v8f"; 108059 + version = "0.3.0.1"; 108060 + sha256 = "0nmlhx35g3kb5if6qnkmabgi5dj4b446vkd1n5df1vsiyaf65w11"; 107444 108061 buildDepends = [ base ]; 107445 108062 description = "Specify refactorings to perform with apply-refact"; 107446 108063 license = stdenv.lib.licenses.bsd3; ··· 107571 108188 107572 108189 "reflex" = callPackage 107573 108190 ({ mkDerivation, base, containers, dependent-map, dependent-sum 107574 - , mtl, primitive, ref-tf, semigroups, template-haskell, these 108191 + , exception-transformers, MemoTrie, mtl, primitive, ref-tf 108192 + , semigroups, template-haskell, these, transformers 108193 + , transformers-compat 107575 108194 }: 107576 108195 mkDerivation { 107577 108196 pname = "reflex"; 107578 - version = "0.2"; 107579 - revision = "1"; 107580 - sha256 = "0mq5249dhx26z02jzjr5bxxsgyhg7npd3q7v3l4ipxxxgixg1vdv"; 107581 - editedCabalFile = "4454a0c57f83e4490729fe4b1ce95197be989aa2a0f8b384afddcb1ad71817de"; 108197 + version = "0.3"; 108198 + sha256 = "1aw4pz0y0rpf7klsb232q0zi4zqcpkwrw0s3zrkq5iyhzaswfnyd"; 107582 108199 buildDepends = [ 107583 - base containers dependent-map dependent-sum mtl primitive ref-tf 107584 - semigroups template-haskell these 108200 + base containers dependent-map dependent-sum exception-transformers 108201 + mtl primitive ref-tf semigroups template-haskell these transformers 108202 + transformers-compat 108203 + ]; 108204 + testDepends = [ 108205 + base containers dependent-map MemoTrie mtl ref-tf 107585 108206 ]; 107586 108207 homepage = "https://github.com/ryantrinkle/reflex"; 107587 108208 description = "Higher-order Functional Reactive Programming"; ··· 107589 108210 }) {}; 107590 108211 107591 108212 "reflex-dom" = callPackage 107592 - ({ mkDerivation, aeson, base, bytestring, containers, data-default 107593 - , dependent-map, dependent-sum, ghcjs-dom, glib, gtk3, lens, mtl 107594 - , ref-tf, reflex, safe, semigroups, text, these, time, transformers 107595 - , webkitgtk3, webkitgtk3-javascriptcore 108213 + ({ mkDerivation, aeson, base, bifunctors, bytestring, containers 108214 + , data-default, dependent-map, dependent-sum 108215 + , dependent-sum-template, directory, exception-transformers 108216 + , ghcjs-dom, glib, gtk3, lens, mtl, ref-tf, reflex, safe 108217 + , semigroups, text, these, time, transformers, webkitgtk3 108218 + , webkitgtk3-javascriptcore 107596 108219 }: 107597 108220 mkDerivation { 107598 108221 pname = "reflex-dom"; 107599 - version = "0.1.1"; 107600 - sha256 = "1fzk7x0iwgdsb4fmhx399xvq200pz4sh2g1n0n8a76q9sy6j82hs"; 108222 + version = "0.2"; 108223 + sha256 = "1pc6mz9c6nr4s5b2mhlyxjzzffh85cv1bgvyycmq04s6dmg0ndgx"; 107601 108224 buildDepends = [ 107602 - aeson base bytestring containers data-default dependent-map 107603 - dependent-sum ghcjs-dom glib gtk3 lens mtl ref-tf reflex safe 107604 - semigroups text these time transformers webkitgtk3 108225 + aeson base bifunctors bytestring containers data-default 108226 + dependent-map dependent-sum dependent-sum-template directory 108227 + exception-transformers ghcjs-dom glib gtk3 lens mtl ref-tf reflex 108228 + safe semigroups text these time transformers webkitgtk3 107605 108229 webkitgtk3-javascriptcore 107606 108230 ]; 107607 108231 jailbreak = true; 107608 - description = "Glitch-free Functional Reactive Web Apps"; 108232 + description = "Functional Reactive Web Apps with Reflex"; 107609 108233 license = stdenv.lib.licenses.bsd3; 107610 108234 }) {}; 107611 108235 ··· 108301 108925 }: 108302 108926 mkDerivation { 108303 108927 pname = "rei"; 108304 - version = "0.1.0.1"; 108305 - sha256 = "15xq2aj77y7l4frxkariw1z0c3y324iz697im8ynlzm88z2iixs6"; 108928 + version = "0.2.0.0"; 108929 + sha256 = "17ldmx351b54fxmiw3z89v7cs6p33x09k2aav7jphqgv2520phyv"; 108306 108930 isLibrary = false; 108307 108931 isExecutable = true; 108308 108932 buildDepends = [ ··· 109095 109719 }) {}; 109096 109720 109097 109721 "reroute" = callPackage 109098 - ({ mkDerivation, base, deepseq, graph-core, hashable, hspec, mtl 109099 - , path-pieces, regex-compat, text, transformers 109722 + ({ mkDerivation, base, deepseq, graph-core, hashable, hspec, hvect 109723 + , mtl, path-pieces, regex-compat, text, transformers 109100 109724 , unordered-containers, vector 109101 109725 }: 109102 109726 mkDerivation { 109103 109727 pname = "reroute"; 109104 - version = "0.2.3.0"; 109105 - sha256 = "1wyr54kllh3cfwl9i291ymmpmmk8vv8y4i3k1kwa8b0zv5kky1px"; 109728 + version = "0.3.0.2"; 109729 + sha256 = "14xkkcgqbg7bddln849h2k0xrrj9hfvw2ikai81snz7dsf3mcnb8"; 109106 109730 buildDepends = [ 109107 - base deepseq graph-core hashable mtl path-pieces regex-compat text 109108 - transformers unordered-containers vector 109731 + base deepseq graph-core hashable hvect mtl path-pieces regex-compat 109732 + text transformers unordered-containers vector 109109 109733 ]; 109110 - testDepends = [ base hspec mtl text unordered-containers vector ]; 109734 + testDepends = [ 109735 + base hspec hvect mtl text unordered-containers vector 109736 + ]; 109111 109737 homepage = "http://github.com/agrafix/reroute"; 109112 109738 description = "abstract implementation of typed and untyped web routing"; 109113 109739 license = stdenv.lib.licenses.mit; ··· 109248 109874 }: 109249 109875 mkDerivation { 109250 109876 pname = "resourcet"; 109251 - version = "1.1.5"; 109252 - sha256 = "063v7xfhwqgf1yvdiidg4anx38nfvgcwb0sqim5rcbqhz0fmkypy"; 109877 + version = "1.1.6"; 109878 + sha256 = "0zhsaaa4n8ry76vjih519a8npm2hrzk10d5asrgllcwpzmifl41y"; 109253 109879 buildDepends = [ 109254 109880 base containers exceptions lifted-base mmorph monad-control mtl 109255 109881 transformers transformers-base transformers-compat ··· 110536 111162 hydraPlatforms = stdenv.lib.platforms.none; 110537 111163 }) {}; 110538 111164 111165 + "roundtrip-aeson" = callPackage 111166 + ({ mkDerivation, aeson, base, bytestring, containers, lens 111167 + , lens-aeson, roundtrip, scientific, text, unordered-containers 111168 + , vector 111169 + }: 111170 + mkDerivation { 111171 + pname = "roundtrip-aeson"; 111172 + version = "0.2.0.0"; 111173 + sha256 = "0m96447l2m0y4aapil077xpnzlkjla0yp2bzajfijik9gkjbiih4"; 111174 + buildDepends = [ 111175 + aeson base bytestring containers lens lens-aeson roundtrip 111176 + scientific text unordered-containers vector 111177 + ]; 111178 + testDepends = [ 111179 + aeson base bytestring lens-aeson roundtrip text vector 111180 + ]; 111181 + jailbreak = true; 111182 + homepage = "https://github.com/anchor/roundtrip-aeson"; 111183 + description = "Un-/parse JSON with roundtrip invertible syntax definitions"; 111184 + license = stdenv.lib.licenses.bsd3; 111185 + }) {}; 111186 + 110539 111187 "roundtrip-string" = callPackage 110540 111188 ({ mkDerivation, base, mtl, parsec, roundtrip }: 110541 111189 mkDerivation { ··· 110877 111525 license = stdenv.lib.licenses.gpl3; 110878 111526 hydraPlatforms = stdenv.lib.platforms.none; 110879 111527 }) { inherit (pkgs) rubberband;}; 111528 + 111529 + "ruby-marshal" = callPackage 111530 + ({ mkDerivation, base, bytestring, cereal, containers, hspec, mtl 111531 + , string-conv, vector 111532 + }: 111533 + mkDerivation { 111534 + pname = "ruby-marshal"; 111535 + version = "0.1.0"; 111536 + sha256 = "1dmlgks7wfs82k9dxkgi35q4sa0a7ljpcw86j25k85vbclzpyp7j"; 111537 + buildDepends = [ 111538 + base bytestring cereal containers mtl string-conv vector 111539 + ]; 111540 + testDepends = [ 111541 + base bytestring cereal containers hspec mtl string-conv vector 111542 + ]; 111543 + homepage = "https://github.com/filib/ruby-marshal"; 111544 + description = "Parse a subset of Ruby objects serialised with Marshal.dump."; 111545 + license = stdenv.lib.licenses.mit; 111546 + }) {}; 110880 111547 110881 111548 "ruby-qq" = callPackage 110882 111549 ({ mkDerivation, base, bytestring, haskell-src-exts ··· 111303 111970 }: 111304 111971 mkDerivation { 111305 111972 pname = "saltine"; 111306 - version = "0.0.0.3"; 111307 - sha256 = "1xjpjblxlpziyyz74ldaqh04shvy2qi34sc6b3232wpc0kyl5s8y"; 111973 + version = "0.0.0.4"; 111974 + sha256 = "1n74qk8yb0ylj6gns68rak5g030yjsaycn96x0hvk1cx7qwym887"; 111308 111975 buildDepends = [ base bytestring profunctors ]; 111309 111976 testDepends = [ 111310 111977 base bytestring QuickCheck test-framework 111311 111978 test-framework-quickcheck2 vector 111312 111979 ]; 111313 111980 extraLibraries = [ libsodium ]; 111314 - jailbreak = true; 111315 111981 description = "Cryptography that's easy to digest (NaCl/libsodium bindings)"; 111316 111982 license = stdenv.lib.licenses.mit; 111317 111983 }) { inherit (pkgs) libsodium;}; ··· 113575 114241 }: 113576 114242 mkDerivation { 113577 114243 pname = "servant"; 113578 - version = "0.4.3.1"; 113579 - sha256 = "1lbnd4mmn7q0bb091il18g1y8ixsi81s64q8lpfpm5sq4dsn1x6l"; 114244 + version = "0.4.4"; 114245 + sha256 = "1v0n194gj2cy16scfgs94q2vcb2baryp0rl1s21zwww1kfgmpffj"; 113580 114246 buildDepends = [ 113581 114247 aeson attoparsec base bytestring bytestring-conversion 113582 114248 case-insensitive http-media http-types network-uri ··· 113592 114258 license = stdenv.lib.licenses.bsd3; 113593 114259 }) {}; 113594 114260 114261 + "servant-JuicyPixels" = callPackage 114262 + ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant 114263 + , servant-server, wai, warp 114264 + }: 114265 + mkDerivation { 114266 + pname = "servant-JuicyPixels"; 114267 + version = "0.1.0.0"; 114268 + sha256 = "1fnlyk6848nzby0nxdrvm4d0vvisdx6pmlzjnh6y1q5q8wq4m48j"; 114269 + isLibrary = true; 114270 + isExecutable = true; 114271 + buildDepends = [ 114272 + base bytestring http-media JuicyPixels servant servant-server wai 114273 + warp 114274 + ]; 114275 + homepage = "https://github.com/tvh/servant-JuicyPixels"; 114276 + description = "servant-JuicyPixels"; 114277 + license = stdenv.lib.licenses.gpl3; 114278 + }) {}; 114279 + 113595 114280 "servant-blaze" = callPackage 113596 114281 ({ mkDerivation, base, blaze-html, http-media, servant }: 113597 114282 mkDerivation { 113598 114283 pname = "servant-blaze"; 113599 - version = "0.4.3.1"; 113600 - sha256 = "017y41z82smy848y6a73232rlidiimdxawb048lnrs9z53ai46cn"; 114284 + version = "0.4.4"; 114285 + sha256 = "140sgy7hcp6pxjrh7zk5i59sq79swqgg76gakgdnvkg7zz0a150s"; 113601 114286 buildDepends = [ base blaze-html http-media servant ]; 113602 114287 homepage = "http://haskell-servant.github.io/"; 113603 114288 description = "Blaze-html support for servant"; ··· 113613 114298 }: 113614 114299 mkDerivation { 113615 114300 pname = "servant-client"; 113616 - version = "0.4.3.1"; 113617 - sha256 = "15b6aww76bw87zps3n3sv5zl4q1h9l9ds72r9g8kn0r53r3vw6ig"; 114301 + version = "0.4.4"; 114302 + sha256 = "0m5aw8pb6iga2rf8m3mnx58xh6jnh33rvvkdzbmb3s6vplsqh6vz"; 113618 114303 buildDepends = [ 113619 114304 aeson attoparsec base bytestring either exceptions http-client 113620 114305 http-client-tls http-media http-types network-uri safe servant ··· 113637 114322 }: 113638 114323 mkDerivation { 113639 114324 pname = "servant-docs"; 113640 - version = "0.4.3.1"; 113641 - sha256 = "0kzk4089xnr22gw929babknc9rnjq3wp1rk9fq881l49z8pvvl4r"; 114325 + version = "0.4.4"; 114326 + sha256 = "0kp5346jxakjz8x92wvayz7c3f2xcvnpsgg9dxgb41imvww2pyfc"; 113642 114327 isLibrary = true; 113643 114328 isExecutable = true; 113644 114329 buildDepends = [ ··· 113682 114367 }: 113683 114368 mkDerivation { 113684 114369 pname = "servant-examples"; 113685 - version = "0.4.3.1"; 113686 - sha256 = "1ypsdpmp8rx6qcwvbw5scc0y41c1jnpn96wxy6wcik1rkc2zjxfq"; 114370 + version = "0.4.4"; 114371 + sha256 = "1qzrlkqwfv4w7d3sjbvz3s4kgx0x6zn0hh07hm955vvlfksgwjym"; 113687 114372 isLibrary = false; 113688 114373 isExecutable = true; 113689 114374 buildDepends = [ ··· 113704 114389 }: 113705 114390 mkDerivation { 113706 114391 pname = "servant-jquery"; 113707 - version = "0.4.3.1"; 113708 - sha256 = "13ngnbpip7nps3c8i2r9220i9i9kgf5s5w8s0wjkhb25xfbmnwwx"; 114392 + version = "0.4.4"; 114393 + sha256 = "04j2cnxrx2hljxnha94nbmql61zw3apz7n32mf23vf749svjcmvd"; 113709 114394 isLibrary = true; 113710 114395 isExecutable = true; 113711 114396 buildDepends = [ ··· 113724 114409 ({ mkDerivation, base, http-media, lucid, servant }: 113725 114410 mkDerivation { 113726 114411 pname = "servant-lucid"; 113727 - version = "0.4.3.1"; 113728 - sha256 = "1pgvd3khap4gnnpsi2rrp64rz0182xyy9bqglsvg7f7nfmyprgpq"; 114412 + version = "0.4.4"; 114413 + sha256 = "1vy9vdd1jkvx7nzcw6a83az4p351ds98x7wasn496h3bwk23bbhr"; 113729 114414 buildDepends = [ base http-media lucid servant ]; 113730 114415 homepage = "http://haskell-servant.github.io/"; 113731 114416 description = "Servant support for lucid"; ··· 113734 114419 113735 114420 "servant-pandoc" = callPackage 113736 114421 ({ mkDerivation, base, bytestring, http-media, lens, pandoc-types 113737 - , semigroupoids, servant-docs, text, unordered-containers 114422 + , servant-docs, text, unordered-containers 113738 114423 }: 113739 114424 mkDerivation { 113740 114425 pname = "servant-pandoc"; 113741 - version = "0.4.1"; 113742 - sha256 = "1kfs45z6pja2v4dambivc5cxx8dfr7vrjx38w0cfpmhyi5xz5jdp"; 114426 + version = "0.4.1.1"; 114427 + revision = "1"; 114428 + sha256 = "00clyv651fyz0dx9b4g5c0z5z3bgybgg93x4s1b1lciwsin8i6nk"; 114429 + editedCabalFile = "ee2eff37865c8a5c246021f6d05aae5f075ba5910cac6d650312aafb2f4bf091"; 113743 114430 buildDepends = [ 113744 - base bytestring http-media lens pandoc-types semigroupoids 113745 - servant-docs text unordered-containers 114431 + base bytestring http-media lens pandoc-types servant-docs text 114432 + unordered-containers 113746 114433 ]; 113747 - jailbreak = true; 113748 114434 description = "Use Pandoc to render servant API documentation"; 113749 114435 license = stdenv.lib.licenses.mit; 113750 114436 hydraPlatforms = stdenv.lib.platforms.none; ··· 113821 114507 }: 113822 114508 mkDerivation { 113823 114509 pname = "servant-server"; 113824 - version = "0.4.3.1"; 113825 - sha256 = "1qdsv7zr9byjrm7yir8alm1zv0ckb81r6akwdvqfa88a581yz7jx"; 114510 + version = "0.4.4"; 114511 + sha256 = "0byxply71jv558bs33i1j9whrfgfa1iygdjsxap7wiq9f27iyaa9"; 113826 114512 isLibrary = true; 113827 114513 isExecutable = true; 113828 114514 buildDepends = [ ··· 113836 114522 network parsec QuickCheck servant string-conversions temporary text 113837 114523 transformers wai wai-extra warp 113838 114524 ]; 113839 - jailbreak = true; 113840 114525 homepage = "http://haskell-servant.github.io/"; 113841 114526 description = "A family of combinators for defining webservices APIs and serving them"; 113842 114527 license = stdenv.lib.licenses.bsd3; ··· 114104 114789 license = stdenv.lib.licenses.bsd3; 114105 114790 }) {}; 114106 114791 114792 + "set-with" = callPackage 114793 + ({ mkDerivation, base, containers, invariant, QuickCheck 114794 + , quickcheck-instances, tasty, tasty-hunit, tasty-quickcheck 114795 + }: 114796 + mkDerivation { 114797 + pname = "set-with"; 114798 + version = "0.0.1"; 114799 + sha256 = "0mkc44gkhjibq3zhxgiw3c7nfy03jmjmrafdr8x9f5ak4l9ns0h4"; 114800 + buildDepends = [ base containers invariant ]; 114801 + testDepends = [ 114802 + base QuickCheck quickcheck-instances tasty tasty-hunit 114803 + tasty-quickcheck 114804 + ]; 114805 + description = "Set of elements sorted by a different data type"; 114806 + license = stdenv.lib.licenses.bsd3; 114807 + }) {}; 114808 + 114107 114809 "setdown" = callPackage 114108 114810 ({ mkDerivation, alex, array, base, bytestring, cmdargs, containers 114109 114811 , directory, filepath, happy, mtl, split, text, uuid ··· 114427 115129 }: 114428 115130 mkDerivation { 114429 115131 pname = "shake"; 114430 - version = "0.15.4"; 114431 - sha256 = "189qyxvy6rxlkgmssy2v66f7anp4q9xjmwqcpwxq86h0pj7vr3i9"; 115132 + version = "0.15.5"; 115133 + sha256 = "18vkyc8h7dpz5d3snfdssfqd1cfp22wnpv63ckrik9p8r4j6i01c"; 114432 115134 isLibrary = true; 114433 115135 isExecutable = true; 114434 115136 buildDepends = [ ··· 114501 115203 ({ mkDerivation, base, bytestring, css-text, hjsmin, shake, text }: 114502 115204 mkDerivation { 114503 115205 pname = "shake-minify"; 114504 - version = "0.1.3"; 114505 - sha256 = "1634dm4rzpp5bkxczj5bbnzcn1mcaxkqbvg08x9gib1nyi2m6zzb"; 115206 + version = "0.1.4"; 115207 + sha256 = "17q0xzjj6xl9h3s6dlxgkxxz2dd4ycbh918ali1lrq2dq9gig3ir"; 114506 115208 buildDepends = [ base bytestring css-text hjsmin shake text ]; 114507 115209 homepage = "https://github.com/LukeHoersten/shake-minify"; 114508 115210 description = "Shake Minify Rules"; ··· 114865 115567 }: 114866 115568 mkDerivation { 114867 115569 pname = "shelly"; 114868 - version = "1.6.3.1"; 114869 - sha256 = "1yd54i4ac1h23b4l4mz9ixpkhj0zxnb8gamk5jdhzgsd809cqy9q"; 115570 + version = "1.6.3.3"; 115571 + sha256 = "173aypf9dcrkhnaz5gfcpicw9ha6cgs7javds3s7m2qr2vdj8rhs"; 114870 115572 isLibrary = true; 114871 115573 isExecutable = true; 114872 115574 buildDepends = [ ··· 114949 115651 ({ mkDerivation, base, text }: 114950 115652 mkDerivation { 114951 115653 pname = "shortcut-links"; 114952 - version = "0.3.0.0"; 114953 - sha256 = "14g1s2gb1jc52zifn00n1w35qckv7p620rqhpn7rfhymlz6b07rz"; 115654 + version = "0.4.0.0"; 115655 + sha256 = "1i9a5hgzw9w9fqg7vjixc90ck49ag0ikm9bjl2xc30gvjslpy3r8"; 114954 115656 buildDepends = [ base text ]; 114955 115657 homepage = "http://github.com/aelve/shortcut-links"; 114956 115658 description = "Link shortcuts for use in text markup"; ··· 115442 116144 isExecutable = true; 115443 116145 buildDepends = [ base deepseq parallel random ]; 115444 116146 jailbreak = true; 116147 + homepage = "http://eax.me/haskell-genetic-algorithm/"; 116148 + description = "Simple parallel genetic algorithm implementation"; 116149 + license = stdenv.lib.licenses.bsd3; 116150 + }) {}; 116151 + 116152 + "simple-genetic-algorithm-mr" = callPackage 116153 + ({ mkDerivation, base, deepseq, MonadRandom, parallel, random 116154 + , transformers 116155 + }: 116156 + mkDerivation { 116157 + pname = "simple-genetic-algorithm-mr"; 116158 + version = "0.4.0.0"; 116159 + sha256 = "193n24n5dpmdha85h4vn0kx846hppyzbc9f75wgndc7y7vm1qagy"; 116160 + isLibrary = true; 116161 + isExecutable = true; 116162 + buildDepends = [ 116163 + base deepseq MonadRandom parallel random transformers 116164 + ]; 115445 116165 homepage = "http://eax.me/haskell-genetic-algorithm/"; 115446 116166 description = "Simple parallel genetic algorithm implementation"; 115447 116167 license = stdenv.lib.licenses.bsd3; ··· 115807 116527 }) {}; 115808 116528 115809 116529 "simpleirc" = callPackage 115810 - ({ mkDerivation, base, bytestring, containers, hspec, HUnit, knob 115811 - , network, old-locale, time 116530 + ({ mkDerivation, base, bytestring, connection, containers, hspec 116531 + , HUnit, knob, network, old-locale, time 115812 116532 }: 115813 116533 mkDerivation { 115814 116534 pname = "simpleirc"; 115815 - version = "0.3.0"; 115816 - sha256 = "045rbiz06zpqvkfh4hxsxz7fr338zmr3mgk2xpaqhh8pp2v14h59"; 116535 + version = "0.3.1"; 116536 + sha256 = "1mwhqa5gby38hlbq0shjbff4whhblw00x8wksqbh47jd6i6ihww5"; 115817 116537 buildDepends = [ 115818 - base bytestring containers network old-locale time 116538 + base bytestring connection containers network old-locale time 115819 116539 ]; 115820 116540 testDepends = [ base bytestring hspec HUnit knob ]; 115821 116541 homepage = "http://github.com/dom96/SimpleIRC"; ··· 116643 117363 ({ mkDerivation, aeson, base, linear, text, vector }: 116644 117364 mkDerivation { 116645 117365 pname = "smoothie"; 116646 - version = "0.4.0.1"; 116647 - sha256 = "1h501mcgfwak586gakqsjhmrdkq2mmfi8gwalb7wbsp57bchfg67"; 117366 + version = "0.4.0.2"; 117367 + sha256 = "1g2lk58p8rbhi45j6q3r0w4103bxi6pn9i3c5i3525s8brl4y8ni"; 116648 117368 buildDepends = [ aeson base linear text vector ]; 116649 117369 homepage = "https://github.com/phaazon/smoothie"; 116650 117370 description = "Smooth curves via several interpolation modes"; ··· 116981 117701 ({ mkDerivation, aeson, base, blaze-builder, blaze-html, bytestring 116982 117702 , case-insensitive, configurator, containers, data-default 116983 117703 , digestive-functors, digestive-functors-heist 116984 - , digestive-functors-snap, directory-tree, errors, filepath, heist 116985 - , jmacro, lens, mtl, pcre-light, QuickCheck, readable, safe, snap 117704 + , digestive-functors-snap, directory-tree, filepath, heist, jmacro 117705 + , lens, mtl, pcre-light, QuickCheck, readable, safe, snap 116986 117706 , snap-core, tasty, tasty-hunit, tasty-quickcheck, text, time 116987 117707 , transformers, wl-pprint-text, xmlhtml 116988 117708 }: 116989 117709 mkDerivation { 116990 117710 pname = "snap-extras"; 116991 - version = "0.11"; 116992 - revision = "1"; 116993 - sha256 = "1s6qdl149x22six61kgm7xnqfyys8z7zh0waajmzip1q4ivxqnij"; 116994 - editedCabalFile = "b0332fedd9b65e483e28c08dc1e76473dc4ab7cee457c69195069aca91d24c46"; 117711 + version = "0.11.0.1"; 117712 + sha256 = "1747qvwbn1rlrjk085rj1780nrsqw4ps78c13si3kkk697k4wcbm"; 116995 117713 isLibrary = true; 116996 117714 isExecutable = true; 116997 117715 buildDepends = [ 116998 117716 aeson base blaze-builder blaze-html bytestring case-insensitive 116999 117717 configurator containers data-default digestive-functors 117000 117718 digestive-functors-heist digestive-functors-snap directory-tree 117001 - errors filepath heist jmacro lens mtl pcre-light readable safe snap 117719 + filepath heist jmacro lens mtl pcre-light readable safe snap 117002 117720 snap-core text time transformers wl-pprint-text xmlhtml 117003 117721 ]; 117004 117722 testDepends = [ ··· 117975 118693 hydraPlatforms = stdenv.lib.platforms.none; 117976 118694 }) {}; 117977 118695 118696 + "sneathlane-haste" = callPackage 118697 + ({ mkDerivation, base, haste-compiler }: 118698 + mkDerivation { 118699 + pname = "sneathlane-haste"; 118700 + version = "1"; 118701 + sha256 = "0m6281a1hvwbhv02vpdd01vm0jvccvq1kvy26dfncv0a8158y6wj"; 118702 + buildDepends = [ base haste-compiler ]; 118703 + jailbreak = true; 118704 + homepage = "http://sneathlane.com"; 118705 + description = "A compositional web UI library, which draws to a Canvas element"; 118706 + license = stdenv.lib.licenses.bsd2; 118707 + }) {}; 118708 + 117978 118709 "snippet-extractor" = callPackage 117979 118710 ({ mkDerivation, base, parsec }: 117980 118711 mkDerivation { ··· 119569 120300 ({ mkDerivation, base }: 119570 120301 mkDerivation { 119571 120302 pname = "srcloc"; 119572 - version = "0.5.0.2"; 119573 - sha256 = "0r7fgplyys8335bjrdmcx4m0z0xark0f174lrh2hsmzyii37x6jc"; 120303 + version = "0.5.1.0"; 120304 + sha256 = "1zssd6jxdhzl5wcygbmzq1s82i7m7rav6nm1m6kl5b68g77gc7g6"; 119574 120305 buildDepends = [ base ]; 119575 120306 homepage = "http://www.cs.drexel.edu/~mainland/"; 119576 120307 description = "Data types for managing source code locations"; ··· 120837 121568 pname = "Phsu"; 120838 121569 mkDerivation { 120839 121570 pname = "Phsu"; 120840 - version = "1.0.1"; 120841 - pname = "Phsu"; 121571 + version = "1.1.0"; 121572 + sha256 = "0dg2za2p7h9wb9lbs2yb07pdhq9sn4mdxxfmq179d9kinq94009m"; 120842 121573 pname = "Phsu"; 120843 121574 pname = "Phsu"; 120844 121575 license = stdenv.lib.licenses.bsd3; ··· 120970 121701 }: 120971 121702 mkDerivation { 120972 121703 pname = "Phsu"; 120973 - version = "0.0.3"; 120974 - pname = "Phsu"; 121704 + version = "0.1.0"; 121705 + sha256 = "1qzr5fkffs96clxkvm7lf7kfafijv8fsri6k0j85wrarx3qdgapa"; 120975 121706 buildDepends = [ 120976 121707 pname = "Phsu"; 120977 121708 ]; ··· 120986 121717 }: 120987 121718 mkDerivation { 120988 121719 pname = "Phsu"; 120989 - version = "0.0.1"; 120990 - pname = "Phsu"; 121720 + version = "0.1.0"; 121721 + sha256 = "0rdk9h7blj7j5kiwy7zq2kb4wxxs19xk3lg73c0srrvbclb0qgbw"; 120991 121722 buildDepends = [ 120992 121723 pname = "Phsu"; 120993 121724 ]; ··· 121020 121751 }: 121021 121752 mkDerivation { 121022 121753 pname = "Phsu"; 121023 - version = "0.2.0"; 121024 - pname = "Phsu"; 121754 + version = "0.3.0"; 121755 + sha256 = "1ip50w8f26362h1s3kb0qzv15dq264j0vbmqw5v0s40gbwmpv2aj"; 121025 121756 buildDepends = [ 121026 121757 pname = "Phsu"; 121027 121758 ]; ··· 121344 122075 mkDerivation { 121345 122076 pname = "Phsu"; 121346 122077 version = "0.2.4.1"; 122078 + revision = "1"; 121347 122079 pname = "Phsu"; 122080 + editedCabalFile = "e9b8d4599f2eae037bb3b6008284513dbb50af7d3ab42e617b76577bdea656a1"; 121348 122081 buildDepends = [ base deepseq ]; 122082 + jailbreak = true; 121349 122083 pname = "Phsu"; 121350 122084 pname = "Phsu"; 121351 122085 license = stdenv.lib.licenses.bsd3; ··· 122579 123313 122580 123314 pname = "Phsu"; 122581 123315 pname = "Phsu"; 122582 - pname = "Phsu"; 122583 - pname = "Phsu"; 123316 + , bytestring, Cabal, cereal, containers, cryptohash, directory 123317 + , exceptions, filepath, io-streams, mtl, process, random 123318 + , regex-compat, temporary, text, time, transformers, unix, zlib 122584 123319 }: 122585 123320 mkDerivation { 122586 123321 pname = "Phsu"; 122587 - version = "0.2.1.0"; 122588 - pname = "Phsu"; 123322 + version = "0.3.5.0"; 123323 + sha256 = "1mkrap2qhfhnisz28vb4hjl5fmfi8r48n1igvv4c0qf9nclhfbhd"; 122589 123324 isLibrary = false; 122590 123325 isExecutable = true; 122591 123326 buildDepends = [ 122592 - pname = "Phsu"; 122593 - pname = "Phsu"; 122594 - transformers unix 123327 + array base base16-bytestring byteable bytestring Cabal cereal 123328 + containers cryptohash directory exceptions filepath io-streams mtl 123329 + process random regex-compat temporary text time transformers unix 123330 + zlib 123331 + ]; 123332 + testDepends = [ 123333 + array base base16-bytestring byteable bytestring Cabal cereal 123334 + containers cryptohash directory exceptions filepath io-streams mtl 123335 + process random regex-compat temporary text time transformers unix 123336 + zlib 122595 123337 ]; 122596 123338 jailbreak = true; 122597 - pname = "Phsu"; 123339 + homepage = "https://github.com/ekarayel/sync-mht"; 123340 + description = "Fast incremental file transfer using Merkle-Hash-Trees"; 122598 123341 license = stdenv.lib.licenses.mit; 122599 123342 }) {}; 122600 123343 ··· 123925 124668 hydraPlatforms = stdenv.lib.platforms.none; 123926 124669 }) {}; 123927 124670 123928 - pname = "Phsu"; 124671 + "tar_0_4_1_0" = callPackage 123929 124672 pname = "Phsu"; 123930 124673 mkDerivation { 123931 124674 pname = "Phsu"; ··· 123936 124680 }) {}; 123937 124681 123938 124682 pname = "Phsu"; 123939 124683 ({ mkDerivation, array, base, bytestring, directory, filepath 123940 124684 pname = "Phsu"; 123941 124685 }: 123942 124686 mkDerivation { 123943 124687 pname = "Phsu"; 123944 - version = "0.4.2.0"; 123945 - pname = "Phsu"; 124688 + version = "0.4.2.1"; 124689 + sha256 = "102hjlrqfb9d0mvz2bdrj0wg7hvhvzbv4f8gsvxz0wfnq7k0mb9g"; 123946 124690 pname = "Phsu"; 123947 124691 testDepends = [ 123948 124692 pname = "Phsu"; ··· 125447 126190 }: 125448 126191 mkDerivation { 125449 126192 pname = "text"; 125450 - version = "1.2.1.1"; 125451 - sha256 = "0l4lrpa216dblm1qk0qpykmx56a28h0hjgccq18sn1mr7n3wyhl8"; 126193 + version = "1.2.1.3"; 126194 + sha256 = "0gzqx5cpkdhshbz9xss51mpyq23pnf8dwjz4h3irbv2ryaa4qdlq"; 125452 126195 buildDepends = [ 125453 126196 array base binary bytestring deepseq ghc-prim integer-gmp 125454 126197 ]; ··· 126048 126791 126049 126792 "th-context" = callPackage 126050 126793 ({ mkDerivation, array, base, bytestring, containers, data-default 126051 - , deepseq, ghc-prim, haskell-src-exts, hspec, hspec-core, mtl, syb 126052 - , template-haskell, text, th-desugar, th-orphans, th-reify-many 126794 + , deepseq, ghc-prim, haskell-src-exts, hspec, hspec-core, lens, mtl 126795 + , mtl-unleashed, syb, template-haskell, text, th-desugar 126796 + , th-orphans, th-reify-many, th-typegraph 126053 126797 }: 126054 126798 mkDerivation { 126055 126799 pname = "th-context"; 126056 - version = "0.13"; 126057 - sha256 = "0i5392x1x06fk8ld7k6y8kj4hdi3s9gdf2lqj8f6vkwlcnj8cjwh"; 126800 + version = "0.22"; 126801 + sha256 = "0zzrb5dzxcn2dxhqniv3nx4kasgpx7mck730y9hgjink58wqsdx4"; 126058 126802 buildDepends = [ 126059 - base containers data-default haskell-src-exts mtl syb 126060 - template-haskell th-desugar th-orphans 126803 + base containers data-default haskell-src-exts lens mtl 126804 + mtl-unleashed syb template-haskell th-desugar th-orphans 126805 + th-typegraph 126061 126806 ]; 126062 126807 testDepends = [ 126063 126808 array base bytestring containers deepseq ghc-prim hspec hspec-core 126064 - mtl syb template-haskell text th-desugar th-orphans th-reify-many 126809 + lens mtl mtl-unleashed syb template-haskell text th-desugar 126810 + th-orphans th-reify-many th-typegraph 126065 126811 ]; 126066 126812 homepage = "https://github.com/seereason/th-context"; 126067 126813 description = "Test instance context"; ··· 126252 126998 }: 126253 126999 mkDerivation { 126254 127000 pname = "th-printf"; 126255 - version = "0.3.0.0"; 126256 - sha256 = "10kq1x8klgny6k5aq8h23fnrja3wfmva58j5kpjwzkz0xzr83biq"; 127001 + version = "0.3.1"; 127002 + sha256 = "089grlpavvqv90graa9rdwg9x1ph484g5bj7sfjklqy8mgwwqg7a"; 126257 127003 buildDepends = [ 126258 127004 attoparsec base bytestring template-haskell text transformers 126259 127005 ]; 126260 127006 testDepends = [ 126261 127007 base bytestring hspec HUnit QuickCheck template-haskell text 126262 127008 ]; 126263 - jailbreak = true; 126264 127009 homepage = "https://github.com/joelteon/th-printf"; 126265 127010 description = "Compile-time printf"; 126266 127011 license = stdenv.lib.licenses.mit; ··· 126298 127043 "th-typegraph" = callPackage 126299 127044 ({ mkDerivation, array, base, base-compat, bytestring, containers 126300 127045 , data-default, deepseq, ghc-prim, haskell-src-exts, hspec 126301 - , hspec-core, lens, mtl, set-extra, syb, template-haskell, text 126302 - , th-desugar, th-orphans, th-reify-many 127046 + , hspec-core, lens, mtl, mtl-unleashed, set-extra, syb 127047 + , template-haskell, text, th-desugar, th-orphans, th-reify-many 126303 127048 }: 126304 127049 mkDerivation { 126305 127050 pname = "th-typegraph"; 126306 - version = "0.21"; 126307 - sha256 = "1w4k466snhkcdg30kzzc2vwiz2p46ybks1bbyf3nazc322zxryq0"; 127051 + version = "0.27"; 127052 + sha256 = "1v7vic9kfig9flcnqcpzazd1s4wgqiz3mj9gcyc1ijkrd4y83cdr"; 126308 127053 buildDepends = [ 126309 127054 base base-compat containers data-default haskell-src-exts lens mtl 126310 - set-extra syb template-haskell th-desugar th-orphans 127055 + mtl-unleashed set-extra syb template-haskell th-desugar th-orphans 126311 127056 ]; 126312 127057 testDepends = [ 126313 127058 array base bytestring containers data-default deepseq ghc-prim 126314 - hspec hspec-core lens mtl syb template-haskell text th-desugar 126315 - th-orphans th-reify-many 127059 + hspec hspec-core lens mtl mtl-unleashed syb template-haskell text 127060 + th-desugar th-orphans th-reify-many 126316 127061 ]; 126317 127062 homepage = "https://github.com/seereason/th-typegraph"; 126318 127063 description = "Graph of the subtype relation"; ··· 126621 127366 }: 126622 127367 mkDerivation { 126623 127368 pname = "threepenny-gui"; 126624 - version = "0.6.0.2"; 126625 - sha256 = "0ghcf6p7i39ss63snmk6hn20cw4hyi3agr05rdh7n60fyf9afs4c"; 127369 + version = "0.6.0.3"; 127370 + sha256 = "04qrwvzz705s8aqb8f5vgakh78rv1w64ldv2mvm6fg3llfl5nlfd"; 126626 127371 isLibrary = true; 126627 127372 isExecutable = true; 126628 127373 buildDepends = [ ··· 126820 127565 }: 126821 127566 mkDerivation { 126822 127567 pname = "tidal"; 126823 - version = "0.5.2"; 126824 - sha256 = "0ll65q5fi8qfi50q9lqxdq9nsr7gizbh2xrsxgvj09nacdnwfwv0"; 127568 + version = "0.5.3"; 127569 + sha256 = "09bq5ng0wvl1rcaaaw0p2b84f9sddpmabaf9c72ifw3z9k35cfyw"; 126825 127570 buildDepends = [ 126826 127571 base binary bytestring colour containers hashable hmt hosc 126827 127572 mersenne-random-pure64 mtl parsec process text time transformers ··· 126833 127578 }) {}; 126834 127579 126835 127580 "tidal-midi" = callPackage 126836 - ({ mkDerivation, alsa-core, alsa-seq, base, containers, hashable 126837 - , hosc, process, tidal 127581 + ({ mkDerivation, base, bytestring, containers, hashable, hosc 127582 + , PortMidi, process, tidal, time 126838 127583 }: 126839 127584 mkDerivation { 126840 127585 pname = "tidal-midi"; 126841 - version = "0.0.1"; 126842 - sha256 = "0j2smcjbnsa6ksrgfmcjbm6sjq9ps0l8fqzaib60pgi34b6dnzv8"; 127586 + version = "0.0.2"; 127587 + sha256 = "0q3g4qgzpd8p4z3l1npcs0gy14967l3yn4xqingdbcq22xasim6q"; 126843 127588 buildDepends = [ 126844 - alsa-core alsa-seq base containers hashable hosc process tidal 127589 + base bytestring containers hashable hosc PortMidi process tidal 127590 + time 126845 127591 ]; 126846 127592 homepage = "http://tidal.lurk.org/"; 126847 127593 description = "MIDI support for tidal"; ··· 127384 128130 ({ mkDerivation, base, old-locale, time }: 127385 128131 mkDerivation { 127386 128132 pname = "timestamper"; 127387 - version = "1.0"; 127388 - sha256 = "14b9zg2lyd8lja9agy73vpscjbkv5nwk6h780wl0xk6m4md9vyj3"; 128133 + version = "1.0.3"; 128134 + sha256 = "1qpzk3047ky0lx5riivv9fa418qhwsa5iyy1fb9l7az6ri094qys"; 127389 128135 isLibrary = false; 127390 128136 isExecutable = true; 127391 128137 buildDepends = [ base old-locale time ]; 127392 - jailbreak = true; 127393 128138 homepage = "https://github.com/kisom/timestamper"; 127394 128139 description = "Read standard input and prepend each line with a timestamp"; 127395 128140 license = stdenv.lib.licenses.mit; ··· 129453 130198 }: 129454 130199 mkDerivation { 129455 130200 pname = "twitter-feed"; 129456 - version = "0.2.0.1"; 129457 - sha256 = "19j10mbvmmdni136b0sdyr0isdhslxcvgabvdqrd3if6cizpmndn"; 130201 + version = "0.2.0.2"; 130202 + sha256 = "19kwhk0bvwnyhychvfzc09w00ix7z9fmvrb4vv56vxdg20rni3fk"; 129458 130203 buildDepends = [ 129459 130204 aeson authenticate-oauth base bytestring http-conduit 129460 130205 ]; 129461 130206 testDepends = [ 129462 130207 base containers HUnit test-framework test-framework-hunit 129463 130208 ]; 129464 - jailbreak = true; 129465 130209 homepage = "https://github.com/stackbuilders/twitter-feed"; 129466 130210 description = "Client for fetching Twitter timeline via Oauth"; 129467 130211 license = stdenv.lib.licenses.mit; ··· 130525 131269 ({ mkDerivation, base, io-streams, unagi-chan }: 130526 131270 mkDerivation { 130527 131271 pname = "unagi-streams"; 130528 - version = "0.1.2"; 130529 - sha256 = "0fhs55bap2dkp9lismq4df4sy8878f52xawr4an4cl0v1yj12cq0"; 131272 + version = "0.1.3"; 131273 + sha256 = "0m8x1sw925xwj2yd2ji0nk54gw1gqqz1zy0bk9z3c3sgbcy364m6"; 130530 131274 buildDepends = [ base io-streams unagi-chan ]; 130531 - jailbreak = true; 130532 131275 description = "Unagi Chan IO-Streams"; 130533 131276 license = stdenv.lib.licenses.bsd3; 130534 131277 }) {}; ··· 130576 131319 }) {}; 130577 131320 130578 131321 "unbound-generics" = callPackage 130579 - ({ mkDerivation, base, containers, contravariant, mtl, profunctors 130580 - , QuickCheck, tasty, tasty-hunit, tasty-quickcheck 131322 + ({ mkDerivation, base, containers, contravariant, deepseq, mtl 131323 + , profunctors, QuickCheck, tasty, tasty-hunit, tasty-quickcheck 130581 131324 , template-haskell, transformers, transformers-compat 130582 131325 }: 130583 131326 mkDerivation { 130584 131327 pname = "unbound-generics"; 130585 - version = "0.1.2.1"; 130586 - sha256 = "0vwqbq3xmacc9fa95wvy2l6r4h831a8g6w1pbxbip2bgqmybsfvk"; 131328 + version = "0.2"; 131329 + sha256 = "0wmr7ylczkaqyf1yrcp9d9gmw8hv7v2yip9v96zlqx02m9j57s99"; 130587 131330 buildDepends = [ 130588 - base containers contravariant mtl profunctors template-haskell 130589 - transformers transformers-compat 131331 + base containers contravariant deepseq mtl profunctors 131332 + template-haskell transformers transformers-compat 130590 131333 ]; 130591 131334 testDepends = [ 130592 131335 base mtl QuickCheck tasty tasty-hunit tasty-quickcheck ··· 130884 131627 }) {}; 130885 131628 130886 131629 "uniform-io" = callPackage 130887 - ({ mkDerivation, attoparsec, base, bytestring, data-default-class 130888 - , iproute, network, openssl, transformers, word8 131630 + ({ mkDerivation, attoparsec, base, bytestring, Cabal 131631 + , data-default-class, iproute, network, openssl, transformers 131632 + , word8 130889 131633 }: 130890 131634 mkDerivation { 130891 131635 pname = "uniform-io"; 130892 - version = "0.1.0.0"; 130893 - sha256 = "1xb934jvj3gk6lw2xdm22p8yayybqk823pk0ssly7kz2dyzrqzz7"; 131636 + version = "0.1.1.0"; 131637 + revision = "1"; 131638 + sha256 = "0i9sdf2nnaf099r79mdrqa1hbbqyb874fk8dsqqzb1582m6czikk"; 131639 + editedCabalFile = "4f0651eff7cbdde40b49b5fcf90e8adf5c403a7c150ac318f0f5280b454b19f9"; 130894 131640 buildDepends = [ 130895 131641 attoparsec base bytestring data-default-class iproute network 130896 131642 transformers word8 130897 131643 ]; 131644 + testDepends = [ base Cabal ]; 130898 131645 extraLibraries = [ openssl ]; 130899 131646 homepage = "https://sealgram.com/git/haskell/uniform-io"; 130900 131647 description = "Uniform IO over files, network, watever"; ··· 132375 133122 "uuid" = callPackage 132376 133123 ({ mkDerivation, base, binary, bytestring, cryptohash, HUnit 132377 133124 , network-info, QuickCheck, random, tasty, tasty-hunit 132378 - , tasty-quickcheck, time, uuid-types 133125 + , tasty-quickcheck, text, time, uuid-types 132379 133126 }: 132380 133127 mkDerivation { 132381 133128 pname = "uuid"; 132382 - version = "1.3.10"; 132383 - sha256 = "0csq2y8rzdy8cnag4piqvxa742jasxqcq07qgrp4kmdkbnbqvyvy"; 133129 + version = "1.3.11"; 133130 + sha256 = "1m8lk12ls4c5xx1y3wm2n2spm2c5slwb27k6zrdibja8z397c637"; 132384 133131 buildDepends = [ 132385 - base binary bytestring cryptohash network-info random time 133132 + base binary bytestring cryptohash network-info random text time 132386 133133 uuid-types 132387 133134 ]; 132388 133135 testDepends = [ ··· 132430 133177 132431 133178 "uuid-types" = callPackage 132432 133179 ({ mkDerivation, base, binary, bytestring, deepseq, hashable, HUnit 132433 - , QuickCheck, random, tasty, tasty-hunit, tasty-quickcheck 133180 + , QuickCheck, random, tasty, tasty-hunit, tasty-quickcheck, text 132434 133181 }: 132435 133182 mkDerivation { 132436 133183 pname = "uuid-types"; 132437 - version = "1.0.1"; 132438 - sha256 = "1brws1nq3pmd3sq786kig2raaxdcx2s8anwsn9f1jj92i5r7y7jb"; 132439 - buildDepends = [ base binary bytestring deepseq hashable random ]; 133184 + version = "1.0.2"; 133185 + sha256 = "019f9w1jvqacbxmq828wsn6zpwp5yw7bkhyj34a4cc2zq3bfkijn"; 133186 + buildDepends = [ 133187 + base binary bytestring deepseq hashable random text 133188 + ]; 132440 133189 testDepends = [ 132441 133190 base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck 132442 133191 ]; ··· 132824 133573 license = stdenv.lib.licenses.mit; 132825 133574 }) {}; 132826 133575 133576 + "varying" = callPackage 133577 + ({ mkDerivation, base, time }: 133578 + mkDerivation { 133579 + pname = "varying"; 133580 + version = "0.1.0.3"; 133581 + sha256 = "1y7mf2q1lawx3f8hdd9b70fa3hrmabm9lmi2rhxvr1dq5r5yh5q7"; 133582 + isLibrary = true; 133583 + isExecutable = true; 133584 + buildDepends = [ base time ]; 133585 + homepage = "https://github.com/schell/varying"; 133586 + description = "Automaton based varying values, event streams and tweening"; 133587 + license = stdenv.lib.licenses.mit; 133588 + }) {}; 133589 + 132827 133590 "vault" = callPackage 132828 133591 ({ mkDerivation, base, containers, hashable, unordered-containers 132829 133592 }: ··· 132929 133692 }) {}; 132930 133693 132931 133694 "vcsgui" = callPackage 132932 - ({ mkDerivation, base, directory, filepath, gtk3, mtl, process 132933 - , text, vcswrapper 133695 + ({ mkDerivation, base, directory, filepath, gtk, mtl, process, text 133696 + , vcswrapper 132934 133697 }: 132935 133698 mkDerivation { 132936 133699 pname = "vcsgui"; ··· 132939 133702 isLibrary = true; 132940 133703 isExecutable = true; 132941 133704 buildDepends = [ 132942 - base directory filepath gtk3 mtl process text vcswrapper 133705 + base directory filepath gtk mtl process text vcswrapper 132943 133706 ]; 132944 133707 homepage = "https://github.com/forste/haskellVCSGUI"; 132945 133708 description = "GUI library for source code management systems"; ··· 133397 134160 license = stdenv.lib.licenses.mit; 133398 134161 }) {}; 133399 134162 134163 + "verbosity" = callPackage 134164 + ({ mkDerivation, base, binary, data-default-class, deepseq }: 134165 + mkDerivation { 134166 + pname = "verbosity"; 134167 + version = "0.2.0.0"; 134168 + sha256 = "0vwv4f5ni6dzvj3jbgxcy8b2hmal6c8xbdin16pifqrn55d52pa9"; 134169 + buildDepends = [ base binary data-default-class deepseq ]; 134170 + homepage = "https://github.com/trskop/verbosity"; 134171 + description = "Simple enum that encodes application verbosity"; 134172 + license = stdenv.lib.licenses.bsd3; 134173 + }) {}; 134174 + 133400 134175 "verilog" = callPackage 133401 134176 ({ mkDerivation, alex, array, base, happy }: 133402 134177 mkDerivation { ··· 133511 134286 }: 133512 134287 mkDerivation { 133513 134288 pname = "vimeta"; 133514 - version = "0.2.0.0"; 133515 - sha256 = "14xzqhykw963ja6wsnrbq8dh9wbk63aramzj4n210srwxy6yqc05"; 134289 + version = "0.2.1.0"; 134290 + sha256 = "0sc5mlv4d9srgv6rj43ddn27rindpyrz2mwz2i5rmm8y4ixn7jrq"; 133516 134291 isLibrary = true; 133517 134292 isExecutable = true; 133518 134293 buildDepends = [ ··· 133865 134640 buildDepends = [ base glib gtk3 pango ]; 133866 134641 buildTools = [ gtk2hs-buildtools ]; 133867 134642 pkgconfigDepends = [ vte ]; 134643 + jailbreak = true; 133868 134644 homepage = "http://projects.haskell.org/gtk2hs/"; 133869 134645 description = "Binding to the VTE library"; 133870 134646 license = stdenv.lib.licenses.lgpl21; ··· 133881 134657 }: 133882 134658 mkDerivation { 133883 134659 pname = "vty"; 133884 - version = "5.2.9"; 133885 - sha256 = "013bha8b30q7ax2qyv315hmdxhzfqgc2bw2wyz1q53qw0mxyhbjr"; 134660 + version = "5.2.10"; 134661 + sha256 = "0wl4qfag8hkhsbm66cgxs55nq3fgmxdxzcvjvcbcm42pcyikvx9y"; 133886 134662 isLibrary = true; 133887 134663 isExecutable = true; 133888 134664 buildDepends = [ ··· 134164 134940 }: 134165 134941 mkDerivation { 134166 134942 pname = "wai-extra"; 134167 - version = "3.0.9"; 134168 - sha256 = "19rnkqg4x6n2w2313naxbkcp2hyj4bj6d6kx3rwakk8wmdy70r04"; 134943 + version = "3.0.10"; 134944 + sha256 = "0dqvfwqzkr3g030s24lzy9l9vaws27m0cs0aq771p7f22w9g6fjh"; 134169 134945 buildDepends = [ 134170 134946 ansi-terminal base base64-bytestring blaze-builder bytestring 134171 134947 case-insensitive containers cookie data-default-class deepseq ··· 134852 135628 134853 135629 "wai-routes" = callPackage 134854 135630 ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers 134855 - , http-types, mtl, path-pieces, random, template-haskell, text, wai 135631 + , http-types, monad-loops, mtl, path-pieces, random 135632 + , template-haskell, text, wai 134856 135633 }: 134857 135634 mkDerivation { 134858 135635 pname = "wai-routes"; 134859 - version = "0.7.1"; 134860 - sha256 = "053bgiw2abwjlc6ap9ka4kdg410gxxmyqdfzsxiva94sp3w816xx"; 135636 + version = "0.7.2"; 135637 + sha256 = "05f8524q9rb5y4d8fryhv4jjkcgqygbckg4pkklvs86s5zlg9nsa"; 134861 135638 buildDepends = [ 134862 - aeson base blaze-builder bytestring containers http-types mtl 134863 - path-pieces random template-haskell text wai 135639 + aeson base blaze-builder bytestring containers http-types 135640 + monad-loops mtl path-pieces random template-haskell text wai 134864 135641 ]; 134865 - homepage = "https://github.com/ajnsit/wai-routes"; 135642 + homepage = "https://ajnsit.github.io/wai-routes/"; 134866 135643 description = "Typesafe URLs for Wai applications"; 134867 135644 license = stdenv.lib.licenses.mit; 134868 135645 hydraPlatforms = stdenv.lib.platforms.none; ··· 135106 135883 }: 135107 135884 mkDerivation { 135108 135885 pname = "warp"; 135109 - version = "3.1.0"; 135110 - sha256 = "1lx1fbcf8bkr5g6j0flk6mplnvs289lkyds5hv31naa450wbca62"; 135886 + version = "3.1.2"; 135887 + sha256 = "1ya8mfvb18p9d5bj0ijnlbd7m04mj7f1z9ld82a8vry37sdifidq"; 135111 135888 buildDepends = [ 135112 135889 array auto-update base blaze-builder bytestring case-insensitive 135113 135890 containers ghc-prim hashable http-date http-types http2 iproute ··· 135657 136434 mkDerivation { 135658 136435 pname = "webcrank-dispatch"; 135659 136436 version = "0.1"; 136437 + revision = "1"; 135660 136438 sha256 = "1w4kfcm2d6iw4d45ywg2g6iysxl2iywk3nbk5ac6p6500y6hh97k"; 136439 + editedCabalFile = "50b6b56e1fccc20a2986ea93b04410b8131ea5f2f4df94df538c6b2369400fa8"; 135661 136440 buildDepends = [ 135662 136441 base bytestring mtl path-pieces reroute text unordered-containers 135663 136442 ]; 136443 + jailbreak = true; 135664 136444 homepage = "https://github.com/webcrank/webcrank-dispatch.hs"; 135665 136445 description = "A simple request dispatcher"; 135666 136446 license = stdenv.lib.licenses.bsd3; ··· 135845 136625 buildDepends = [ base bytestring cairo glib gtk3 mtl pango text ]; 135846 136626 buildTools = [ gtk2hs-buildtools ]; 135847 136627 pkgconfigDepends = [ webkit ]; 136628 + jailbreak = true; 135848 136629 homepage = "http://projects.haskell.org/gtk2hs/"; 135849 136630 description = "Binding to the Webkit library"; 135850 136631 license = stdenv.lib.licenses.lgpl21; ··· 135861 136642 buildDepends = [ base glib gtk3 webkitgtk3 ]; 135862 136643 buildTools = [ gtk2hs-buildtools ]; 135863 136644 pkgconfigDepends = [ webkit ]; 136645 + jailbreak = true; 135864 136646 description = "JavaScriptCore FFI from webkitgtk"; 135865 136647 license = stdenv.lib.licenses.bsd3; 135866 136648 }) { inherit (pkgs) webkit;}; ··· 137499 138281 }: 137500 138282 mkDerivation { 137501 138283 pname = "xhb"; 137502 - version = "0.5.2014.4.10"; 137503 - sha256 = "1r5z92p98jn8pdcqmdiv0hriq7y8743q4sxfjfds602rr4qf97gz"; 138284 + version = "0.6.2015.8.1"; 138285 + sha256 = "1rq6g96v1fs66kdmnkvlkcxrv614ha77czclm3sfw274f7q2r2kb"; 137504 138286 buildDepends = [ 137505 138287 base binary byteorder bytestring containers network parsec stm 137506 138288 Xauth ··· 137712 138494 }: 137713 138495 mkDerivation { 137714 138496 pname = "xlsx"; 137715 - version = "0.1.0.4"; 137716 - sha256 = "1zri5wan5h3nyizfrfmnw9mz2cwapi4wrc3srxqns5w12v866p3a"; 138497 + version = "0.1.0.5"; 138498 + sha256 = "0zd3p0dkb4v9gcd3mvp6g64z1gr1m5x0pf2zyj3w7ab0dgz4gzsz"; 137717 138499 isLibrary = true; 137718 138500 isExecutable = true; 137719 138501 buildDepends = [ ··· 137725 138507 base containers HUnit old-time smallcheck tasty tasty-hunit 137726 138508 tasty-smallcheck time 137727 138509 ]; 137728 - jailbreak = true; 137729 138510 homepage = "https://github.com/qrilka/xlsx"; 137730 138511 description = "Simple and incomplete Excel file parser/writer"; 137731 138512 license = stdenv.lib.licenses.mit; ··· 138709 139490 }: 138710 139491 mkDerivation { 138711 139492 pname = "xss-sanitize"; 138712 - version = "0.3.5.5"; 138713 - sha256 = "05qmhd50bdy5z0nvqvrm25ax4i642gv6gkdn678flg6sckshr4s2"; 139493 + version = "0.3.5.6"; 139494 + sha256 = "1j2qrn2dbfx01m7zyk9ilgnp9zjwq9mk62b0rdal4zkg4vh212h0"; 138714 139495 buildDepends = [ 138715 139496 attoparsec base containers css-text network-uri tagsoup text 138716 139497 utf8-string ··· 139717 140498 }: 139718 140499 mkDerivation { 139719 140500 pname = "yesod-bin"; 139720 - version = "1.4.13"; 139721 - sha256 = "0rqwmvl2pl05fp7xyfcpmpjkki8ww47rhifcclasaxvj109hvj1k"; 140501 + version = "1.4.13.1"; 140502 + sha256 = "1vnqiibdjvkja80b8i352afrhphx8v6nihylgxaywch20b2fbkrc"; 139722 140503 isLibrary = false; 139723 140504 isExecutable = true; 139724 140505 buildDepends = [ ··· 139736 140517 license = stdenv.lib.licenses.mit; 139737 140518 }) {}; 139738 140519 140520 + "yesod-bootstrap" = callPackage 140521 + ({ mkDerivation, base, blaze-html, blaze-markup, conduit 140522 + , conduit-extra, containers, either, email-validate 140523 + , lens-family-core, lens-family-th, MonadRandom, mtl, persistent 140524 + , shakespeare, text, time, transformers, yesod-core, yesod-form 140525 + , yesod-markdown 140526 + }: 140527 + mkDerivation { 140528 + pname = "yesod-bootstrap"; 140529 + version = "0.1.0.0"; 140530 + sha256 = "19hzc1k0ssmsi9k4r5bxmngr1h8a42qhaxcl5y99fbf6khpndxzg"; 140531 + buildDepends = [ 140532 + base blaze-html blaze-markup conduit conduit-extra containers 140533 + either email-validate lens-family-core lens-family-th MonadRandom 140534 + mtl persistent shakespeare text time transformers yesod-core 140535 + yesod-form yesod-markdown 140536 + ]; 140537 + description = "Bootstrap widgets for yesod"; 140538 + license = stdenv.lib.licenses.mit; 140539 + }) {}; 140540 + 139739 140541 "yesod-comments" = callPackage 139740 140542 ({ mkDerivation, base, bytestring, directory, friendly-time 139741 140543 , gravatar, old-locale, persistent, template-haskell, text, time ··· 140109 140911 hydraPlatforms = stdenv.lib.platforms.none; 140110 140912 }) {}; 140111 140913 140914 + "yesod-lucid" = callPackage 140915 + ({ mkDerivation, base, lucid, monads-tf, text, yesod-core }: 140916 + mkDerivation { 140917 + pname = "yesod-lucid"; 140918 + version = "0.1"; 140919 + sha256 = "1ymmpi9g3pjl23ymdjwiv748lnq1hyjq24la2ffgwrm4b6f41xip"; 140920 + buildDepends = [ base lucid monads-tf text yesod-core ]; 140921 + description = "Lucid support for Yesod"; 140922 + license = stdenv.lib.licenses.bsd3; 140923 + }) {}; 140924 + 140112 140925 "yesod-mangopay" = callPackage 140113 140926 ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra 140114 140927 , containers, country-codes, data-default, directory, fast-logger ··· 140142 140955 140143 140956 "yesod-markdown" = callPackage 140144 140957 ({ mkDerivation, base, blaze-html, blaze-markup, bytestring 140145 - , directory, pandoc, persistent, shakespeare, texmath, text 140958 + , directory, hspec, pandoc, persistent, shakespeare, texmath, text 140146 140959 , xss-sanitize, yesod-core, yesod-form 140147 140960 }: 140148 140961 mkDerivation { 140149 140962 pname = "yesod-markdown"; 140150 - version = "0.9.4"; 140151 - sha256 = "1mam4ibbnzvi1ljlj8kzz24s8jxk3f3xvvicmcygklz0n9pmaw66"; 140963 + version = "0.10.0"; 140964 + sha256 = "0n9rcpf8s89swj0pz86xddl5zjbkkw1fa1h292wvs15y77lrl0zi"; 140152 140965 buildDepends = [ 140153 140966 base blaze-html blaze-markup bytestring directory pandoc persistent 140154 140967 shakespeare texmath text xss-sanitize yesod-core yesod-form 140155 140968 ]; 140156 - jailbreak = true; 140969 + testDepends = [ base blaze-html hspec text ]; 140157 140970 homepage = "http://github.com/pbrisbin/yesod-markdown"; 140158 140971 description = "Tools for using markdown in a yesod application"; 140159 140972 license = stdenv.lib.licenses.gpl2; ··· 140649 141462 }: 140650 141463 mkDerivation { 140651 141464 pname = "yesod-table"; 140652 - version = "1.0.2"; 140653 - sha256 = "0rrc9cfjl1g8if0ncs2xzpb1hnaa4hi3w62q16gwir0l79vfj7b9"; 141465 + version = "1.0.3"; 141466 + sha256 = "02w7ddyi0zzcvhlj1b01p3zjii2g7bn2f7wcgrdidk8dlg9hrgj5"; 140654 141467 buildDepends = [ base containers contravariant text yesod-core ]; 140655 141468 homepage = "https://github.com/andrewthad/yesod-table"; 140656 141469 description = "HTML tables for Yesod";
+8 -15
pkgs/development/libraries/libcouchbase/default.nix
··· 1 - { stdenv, fetchgit, autoconf, automake, libtool, 2 - pkgconfig, perl, git, libevent, openssl}: 1 + { stdenv, fetchurl, cmake, pkgconfig, libevent, openssl}: 3 2 4 3 stdenv.mkDerivation { 5 - name = "libcouchbase-2.4.4"; 6 - src = fetchgit { 7 - url = "https://github.com/couchbase/libcouchbase.git"; 8 - rev = "4410eebcd813844b6cd6f9c7eeb4ab3dfa2ab8ac"; 9 - sha256 = "02lzv5l6fvnqr2l9bqfha0pzkzlzjfddn3w5zcbjz36kw4p2p4h9"; 10 - leaveDotGit = true; 4 + name = "libcouchbase-2.5.2"; 5 + src = fetchurl { 6 + url = "https://github.com/couchbase/libcouchbase/archive/2.5.2.tar.gz"; 7 + sha256 = "0ka1hix38a2kdhxz6n8frssyznf78ra0irga9d8lr5683y73xw24"; 11 8 }; 12 9 13 - preConfigure = '' 14 - patchShebangs ./config/ 15 - ./config/autorun.sh 16 - ''; 10 + cmakeFlags = "-DLCB_NO_MOCK=ON"; 17 11 18 - configureFlags = "--disable-couchbasemock"; 19 - 20 - buildInputs = [ autoconf automake libtool pkgconfig perl git libevent openssl]; 12 + nativeBuildInputs = [ cmake pkgconfig ]; 13 + buildInputs = [ libevent openssl]; 21 14 22 15 meta = { 23 16 description = "C client library for Couchbase";
+1 -1
pkgs/development/python-modules/blivet/default.nix
··· 36 36 six 37 37 ]; 38 38 39 - # Tests are in <nixos/tests/blivet.nix>. 39 + # Tests are in <nixpkgs/nixos/tests/blivet.nix>. 40 40 doCheck = false; 41 41 42 42 meta = with stdenv.lib; {
+2 -2
pkgs/development/tools/analysis/checkstyle/default.nix
··· 1 1 { stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "6.8.1"; 4 + version = "6.8.2"; 5 5 name = "checkstyle-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz"; 9 - sha256 = "12da8msz5459ra0g5smr8daqh88mfa653nn475acjp1ycsm395hv"; 9 + sha256 = "1r0wb8iqvmhvgxk1ya39x8b4ayd549bfxmnw26i84870hnqr179c"; 10 10 }; 11 11 12 12 installPhase = ''
+2 -2
pkgs/development/tools/build-managers/boot/default.nix
··· 1 1 { stdenv, fetchurl, makeWrapper, jdk }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.0.0"; 4 + version = "2.2.0"; 5 5 name = "boot-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/boot-clj/boot/releases/download/${version}/boot.sh"; 9 - sha256 = "0hvznr0z5ck32wpaqhjv2fr9365b8h0h8brnsmwijpv699l0rf1c"; 9 + sha256 = "0czavpdhmpgp20vywf326ix1f94dky51mqiwyblrmrd33d89qz9f"; 10 10 }; 11 11 12 12 inherit jdk;
+2 -2
pkgs/development/tools/misc/fswatch/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 name = "fswatch-${version}"; 13 - version = "1.4.7"; 13 + version = "1.5.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "emcrisostomo"; 17 17 repo = "fswatch"; 18 18 rev = version; 19 - sha256 = "0f6aa14v31gy3j7qx563ml37r8mylpbqfjrz2v5g44zrrg6086w7"; 19 + sha256 = "09np75m9df2nk7lc5y9wgq467ca6jsd2p5666d5rkzjvy6s0a51n"; 20 20 }; 21 21 22 22 buildInputs = [ autoreconfHook gettext libtool makeWrapper texinfo ];
+49
pkgs/development/tools/phantomjs2/default.nix
··· 1 + { stdenv, fetchurl, 2 + bison2, flex, fontconfig, freetype, gperf, icu, openssl, libjpeg, libpng, perl, python, ruby, sqlite 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + name = "phantomjs-${version}"; 7 + version = "2.0.0-20150528"; 8 + 9 + src = fetchurl { 10 + url = "https://github.com/bprodoehl/phantomjs/archive/v2.0.0-20150528.tar.gz"; 11 + sha256 = "18h37bxxg25lacry9k3vb5yim057bqcxmsifw97jrjp7gzfx56v5"; 12 + }; 13 + 14 + buildInputs = [ bison2 flex fontconfig freetype gperf icu openssl libjpeg libpng perl python ruby sqlite ]; 15 + 16 + patchPhase = '' 17 + patchShebangs . 18 + sed -i -e 's|/bin/pwd|pwd|' src/qt/qtbase/configure 19 + ''; 20 + 21 + buildPhase = "./build.sh --confirm"; 22 + 23 + installPhase = '' 24 + mkdir -p $out/share/doc/phantomjs 25 + cp -a bin $out 26 + cp -a ChangeLog examples LICENSE.BSD README.md third-party.txt $out/share/doc/phantomjs 27 + ''; 28 + 29 + meta = { 30 + description = "Headless WebKit with JavaScript API"; 31 + longDescription = '' 32 + PhantomJS2 is a headless WebKit with JavaScript API. 33 + It has fast and native support for various web standards: 34 + DOM handling, CSS selector, JSON, Canvas, and SVG. 35 + 36 + PhantomJS is an optimal solution for: 37 + - Headless Website Testing 38 + - Screen Capture 39 + - Page Automation 40 + - Network Monitoring 41 + ''; 42 + 43 + homepage = http://phantomjs.org/; 44 + license = stdenv.lib.licenses.bsd3; 45 + 46 + maintainers = [ stdenv.lib.maintainers.aflatter ]; 47 + platforms = with stdenv.lib.platforms; darwin ++ linux; 48 + }; 49 + }
+2 -2
pkgs/development/web/iojs/default.nix
··· 1 1 { stdenv, fetchurl, python, utillinux, openssl_1_0_2, http-parser, zlib, libuv }: 2 2 3 3 let 4 - version = "2.5.0"; 4 + version = "3.0.0"; 5 5 inherit (stdenv.lib) optional maintainers licenses platforms; 6 6 in stdenv.mkDerivation { 7 7 name = "iojs-${version}"; 8 8 9 9 src = fetchurl { 10 10 url = "https://iojs.org/dist/v${version}/iojs-v${version}.tar.gz"; 11 - sha256 = "0jj0xqwpq7s45bycs406ml12xyknxgad4vyw9k84al3551m5y2wd"; 11 + sha256 = "0maxxmr6y7z3y3r88nhcnfzmpvbhs5p8knyz886bh2shgzd6nzqf"; 12 12 }; 13 13 14 14 prePatch = ''
+2 -2
pkgs/servers/http/yaws/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "yaws-${version}"; 5 - version = "1.99"; 5 + version = "2.0"; 6 6 7 7 src = fetchurl { 8 8 url = "http://yaws.hyber.org/download/${name}.tar.gz"; 9 - sha256 = "057ymg84ji4pfi3xai6kis3mk8zks2ynbiam0x68cb4cb1yfzwcl"; 9 + sha256 = "1gwk44a07n7yvg900yrlfc6qpvjl64k2h2hddd1jaaay8lgpcch6"; 10 10 }; 11 11 12 12 # The tarball includes a symlink yaws -> yaws-1.95, which seems to be
+3 -2
pkgs/shells/ipython/default.nix
··· 13 13 assert pylabQtSupport == true -> pyqt4 != null; 14 14 15 15 buildPythonPackage rec { 16 - name = "ipython-3.1.0"; 16 + name = "ipython-${version}"; 17 + version = "3.2.1"; 17 18 namePrefix = ""; 18 19 19 20 src = fetchurl { 20 21 url = "https://pypi.python.org/packages/source/i/ipython/${name}.tar.gz"; 21 - sha256 = "092nilrkr76l1mklnslgbw1cz7z1xabp1hz5s7cb30kgy39r482k"; 22 + sha256 = "c913adee7ae5b338055274c51a7d2b3cea468b5b316046fa520cd8a434b09177"; 22 23 }; 23 24 24 25 propagatedBuildInputs = [
+13
pkgs/tools/filesystems/ceph/0.94-pre.nix
··· 1 + { callPackage, fetchgit, ... } @ args: 2 + 3 + callPackage ./generic.nix (args // rec { 4 + version = "0.94.3"; 5 + 6 + src = fetchgit { 7 + url = "https://github.com/ceph/ceph.git"; 8 + rev = "c19b0fc1aa2834ae3027b07a02aebe9639fc2ca7"; 9 + sha256 = "1h1y5jh2bszia622rmwdblb3cpkpd0mijahkaiasr30jwpkmzh0i"; 10 + }; 11 + 12 + patches = [ ./fix-pgrefdebugging.patch ]; 13 + })
+4 -4
pkgs/tools/misc/gparted/default.nix
··· 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - name = "gparted-0.22.0"; 6 + name = "gparted-0.23.0"; 7 7 8 8 src = fetchurl { 9 - sha256 = "09vg5lxvh81x54ps5ayfjd4jl84wprn42i1wifnfmj44dqd5wxda"; 9 + sha256 = "0m57bni3nkbbqq920ydzvasy2qc5j6w6bdssyn12jk4157gxvlbz"; 10 10 url = "mirror://sourceforge/gparted/${name}.tar.bz2"; 11 11 }; 12 12 ··· 22 22 partitions. GParted enables you to change the partition organization 23 23 while preserving the partition contents. 24 24 ''; 25 - homepage = http://gparted.sourceforge.net; 25 + homepage = http://gparted.org; 26 26 license = licenses.gpl2Plus; 27 - platforms = with platforms; linux; 27 + platforms = platforms.linux; 28 28 maintainers = with maintainers; [ nckx ]; 29 29 }; 30 30 }
+2 -1
pkgs/tools/misc/screenfetch/default.nix
··· 1 1 { stdenv, fetchgit, makeWrapper 2 - , coreutils, gawk, procps, gnused, findutils, xdpyinfo, xprop 2 + , coreutils, gawk, procps, gnused, findutils, xdpyinfo, xprop, gnugrep 3 3 }: 4 4 5 5 stdenv.mkDerivation { ··· 28 28 --prefix PATH : "${findutils}/bin" \ 29 29 --prefix PATH : "${xdpyinfo}/bin" \ 30 30 --prefix PATH : "${xprop}/bin" \ 31 + --prefix PATH : "${gnugrep}/bin" 31 32 ''; 32 33 33 34 meta = {
+3 -3
pkgs/tools/networking/netsniff-ng/default.nix
··· 2 2 , libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl 3 3 , pkgconfig, zlib }: 4 4 5 - let version = "0.5.9-34-g95c4582"; in 5 + let version = "0.5.9-71-g77445f8"; in 6 6 stdenv.mkDerivation { 7 7 name = "netsniff-ng-${version}"; 8 8 ··· 10 10 src = fetchFromGitHub rec { 11 11 repo = "netsniff-ng"; 12 12 owner = repo; 13 - rev = "95c4582b742fd4fa58e5f14971164b941b0f730d"; 14 - sha256 = "0anai392n8zx8vcjbjg776lbiwrv95x2dbd8rypbqfzmj8nhzric"; 13 + rev = "77445f81d451eef6b78b79a2bcc24d21d4be4178"; 14 + sha256 = "0ny9bph070mny6i9r0i3wsx2bsl53135n439ab6r9qk710xjz91j"; 15 15 }; 16 16 17 17 buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl
+18 -5
pkgs/tools/networking/strongswan/default.nix
··· 1 1 { stdenv, fetchurl, gmp, pkgconfig, python, autoreconfHook 2 - , curl, trousers, sqlite 2 + , curl, trousers, sqlite, iptables, libxml2, openresolv 3 3 , enableTNC ? false }: 4 4 5 5 stdenv.mkDerivation rec { ··· 13 13 dontPatchELF = true; 14 14 15 15 buildInputs = 16 - [ gmp pkgconfig python autoreconfHook ] 17 - ++ stdenv.lib.optionals enableTNC [ curl trousers sqlite ]; 16 + [ gmp pkgconfig python autoreconfHook iptables ] 17 + ++ stdenv.lib.optionals enableTNC [ curl trousers sqlite libxml2 ]; 18 18 19 19 patches = [ 20 20 ./ext_auth-path.patch ··· 22 22 ./updown-path.patch 23 23 ]; 24 24 25 + postPatch = '' 26 + substituteInPlace src/libcharon/plugins/resolve/resolve_handler.c --replace "/sbin/resolvconf" "${openresolv}/sbin/resolvconf" 27 + ''; 28 + 25 29 configureFlags = 26 - [ "--enable-swanctl" "--enable-cmd" ] 30 + [ "--enable-swanctl" "--enable-cmd" 31 + "--enable-farp" "--enable-dhcp" 32 + "--enable-eap-sim" "--enable-eap-sim-file" "--enable-eap-simaka-pseudonym" 33 + "--enable-eap-simaka-reauth" "--enable-eap-identity" "--enable-eap-md5" 34 + "--enable-eap-gtc" "--enable-eap-aka" "--enable-eap-aka-3gpp2" 35 + "--enable-eap-mschapv2" "--enable-xauth-eap" "--enable-ext-auth" 36 + "--enable-forecast" "--enable-connmark" "--enable-acert" 37 + "--enable-aesni" "--enable-af-alg" "--enable-rdrand" ] 38 + ++ stdenv.lib.optional (stdenv.system == "i686-linux") "--enable-padlock" 27 39 ++ stdenv.lib.optionals enableTNC [ 28 40 "--disable-gmp" "--disable-aes" "--disable-md5" "--disable-sha1" "--disable-sha2" "--disable-fips-prf" 29 - "--enable-curl" "--enable-openssl" "--enable-eap-identity" "--enable-eap-md5" "--enable-eap-mschapv2" 41 + "--enable-curl" "--enable-openssl" 30 42 "--enable-eap-tnc" "--enable-eap-ttls" "--enable-eap-dynamic" "--enable-tnccs-20" 31 43 "--enable-tnc-imc" "--enable-imc-os" "--enable-imc-attestation" 32 44 "--enable-tnc-imv" "--enable-imv-attestation" 45 + "--enable-tnc-ifmap" "--enable-tnc-imc" "--enable-tnc-imv" 33 46 "--with-tss=trousers" 34 47 "--enable-aikgen" 35 48 "--enable-sqlite" ];
+18 -9
pkgs/tools/networking/vpnc/default.nix
··· 1 - { stdenv, fetchurl, nettools, libgcrypt, perl, gawk, makeWrapper }: 1 + { stdenv, fetchsvn, nettools, libgcrypt, openssl, openresolv, perl, gawk, makeWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "vpnc-0.5.3"; 5 - src = fetchurl { 6 - url = "http://www.unix-ag.uni-kl.de/~massar/vpnc/${name}.tar.gz"; 7 - sha256 = "1128860lis89g1s21hqxvap2nq426c9j4bvgghncc1zj0ays7kj6"; 4 + name = "vpnc-rev550"; 5 + src = fetchsvn { 6 + url = "http://svn.unix-ag.uni-kl.de/vpnc"; 7 + rev = "550"; 8 + sha256 = "0x4ckfv9lpykwmh28v1kyzz91y1j2v48fi8q5nsawrba4q0wlrls"; 8 9 }; 9 10 10 - patches = [ ./makefile.patch ./vpnc-script.patch ]; 11 + postUnpack = '' 12 + mv $sourceRoot/trunk/* $sourceRoot/. 13 + rm -r $sourceRoot/{trunk,branches,tags} 14 + ''; 15 + 16 + patches = [ ./makefile.patch ]; 11 17 12 18 # The `etc/vpnc/vpnc-script' script relies on `which' and on 13 19 # `ifconfig' as found in net-tools (not GNU Inetutils). 14 20 propagatedBuildInputs = [ nettools ]; 15 21 16 - buildInputs = [libgcrypt perl makeWrapper]; 22 + buildInputs = [libgcrypt perl makeWrapper openssl ]; 17 23 18 24 preConfigure = '' 19 - substituteInPlace "vpnc-script.in" \ 25 + sed -i 's|^#OPENSSL|OPENSSL|g' Makefile 26 + 27 + substituteInPlace "vpnc-script" \ 20 28 --replace "which" "type -P" \ 21 - --replace "awk" "${gawk}/bin/awk" 29 + --replace "awk" "${gawk}/bin/awk" \ 30 + --replace "/sbin/resolvconf" "${openresolv}/bin/resolvconf" 22 31 23 32 substituteInPlace "config.c" \ 24 33 --replace "/etc/vpnc/vpnc-script" "$out/etc/vpnc/vpnc-script"
-12
pkgs/tools/networking/vpnc/vpnc-script.patch
··· 1 - diff -ubr vpnc-0.5.3-orig/vpnc-script.in vpnc-0.5.3/vpnc-script.in 2 - --- vpnc-0.5.3-orig/vpnc-script.in 2012-02-29 23:03:35.289636602 +0100 3 - +++ vpnc-0.5.3/vpnc-script.in 2012-02-29 23:03:59.597307445 +0100 4 - @@ -116,7 +116,7 @@ 5 - 6 - if [ -n "$IPROUTE" ]; then 7 - fix_ip_get_output () { 8 - - sed 's/cache//;s/metric \?[0-9]\+ [0-9]\+//g;s/hoplimit [0-9]\+//g' 9 - + sed 's/cache//;s/metric \?[0-9]\+ [0-9]\+//g;s/hoplimit [0-9]\+//g;s/ipid 0x....//g' 10 - } 11 - 12 - set_vpngateway_route() {
+3 -3
pkgs/tools/package-management/nixops/unstable.nix
··· 17 17 in 18 18 19 19 pythonPackages.buildPythonPackage rec { 20 - name = "nixops-1.3pre1486_7489764"; 20 + name = "nixops-1.3pre-cefcd9ba"; 21 21 namePrefix = ""; 22 22 23 23 src = fetchgit { 24 24 url = https://github.com/NixOS/nixops; 25 - rev = "5c7663dfe1e2af9c0396c5c86d995452ef2efc8a"; 26 - sha256 = "01n2ykszrnqr3kqqdg1n2l8wm38yhri7r3d7b0abklsslz9dlvmy"; 25 + rev = "cefcd9bae9a4d3bac83f188460619d18972321a8"; 26 + sha256 = "1jwkbnfwics2j0m6mr75rz914vg0z46d2xv0z1717c1ac5rki0l2"; 27 27 }; 28 28 29 29 buildInputs = [ /* libxslt */ pythonPackages.nose pythonPackages.coverage ];
+1 -1
pkgs/tools/package-management/nixui/default.nix
··· 2 2 , profilePaths ? (config.nixui.profilePaths or ["/nix/var/nix/profiles"]) 3 3 , dataDir ? (config.nixui.dataDir or "/tmp") 4 4 , configurations ? (config.nixui.configurations or ["/etc/nixos/configuration.nix"]) 5 - , NIX_PATH ? (config.nixui.NIX_PATH or "/nix/var/nix/profiles/per-user/root/channels/nixos:nixpkgs=/etc/nixos/nixpkgs:nixos-config=/etc/nixos/configuration.nix") }: 5 + , NIX_PATH ? (config.nixui.NIX_PATH or "/nix/var/nix/profiles/per-user/root/channels/nixos:nixos-config=/etc/nixos/configuration.nix") }: 6 6 let 7 7 version = "0.1.2"; 8 8 src = fetchgit {
+7 -5
pkgs/top-level/all-packages.nix
··· 1066 1066 libceph = ceph.lib; 1067 1067 ceph-0_80 = callPackage ../tools/filesystems/ceph/0.80.nix { }; 1068 1068 ceph-0_94 = callPackage ../tools/filesystems/ceph/0.94.nix { }; 1069 + ceph-0_94-pre = callPackage ../tools/filesystems/ceph/0.94-pre.nix { }; 1069 1070 ceph = callPackage ../tools/filesystems/ceph { }; 1070 1071 ceph-dev = lowPrio (callPackage ../tools/filesystems/ceph/dev.nix { }); 1071 1072 ceph-git = lowPrio (callPackage ../tools/filesystems/ceph/git.nix { }); ··· 4007 4008 4008 4009 haskell = callPackage ./haskell-packages.nix { }; 4009 4010 4010 - haskellPackages = haskell.packages.ghc7101.override { 4011 + haskellPackages = haskell.packages.ghc7102.override { 4011 4012 overrides = config.haskellPackageOverrides or (self: super: {}); 4012 4013 }; 4013 4014 ··· 5684 5685 peg = callPackage ../development/tools/parsing/peg { }; 5685 5686 5686 5687 phantomjs = callPackage ../development/tools/phantomjs { }; 5688 + 5689 + phantomjs2 = callPackage ../development/tools/phantomjs2 { }; 5687 5690 5688 5691 pmccabe = callPackage ../development/tools/misc/pmccabe { }; 5689 5692 ··· 11492 11495 gitAndTools = recurseIntoAttrs (import ../applications/version-management/git-and-tools { 11493 11496 inherit pkgs; 11494 11497 }); 11495 - git = gitAndTools.git; 11496 - gitFull = gitAndTools.gitFull; 11498 + 11499 + inherit (gitAndTools) git gitFull gitSVN git-cola svn2git; 11500 + 11497 11501 gitMinimal = git.override { 11498 11502 withManual = false; 11499 11503 pythonSupport = false; 11500 11504 }; 11501 - gitSVN = gitAndTools.gitSVN; 11502 - git-cola = gitAndTools.git-cola; 11503 11505 11504 11506 gitRepo = callPackage ../applications/version-management/git-repo { 11505 11507 python = python27;
-1
pkgs/top-level/make-tarball.nix
··· 74 74 mkdir -p $out/tarballs 75 75 mkdir ../$releaseName 76 76 cp -prd . ../$releaseName 77 - echo nixpkgs > ../$releaseName/channel-name 78 77 (cd .. && tar cfa $out/tarballs/$releaseName.tar.xz $releaseName) || false 79 78 ''; 80 79
+8 -12
pkgs/top-level/python-packages.nix
··· 9255 9255 9256 9256 pgcli = buildPythonPackage rec { 9257 9257 name = "pgcli-${version}"; 9258 - version = "0.18.0"; 9258 + version = "0.19.1"; 9259 9259 9260 9260 src = pkgs.fetchFromGitHub { 9261 - sha256 = "1ydi1725ryz9by770kyx06cwrvyvixbg3502brkf5hvbjd8ddzrl"; 9261 + sha256 = "1r34bbqbd4h72cl0cxi9w6q2nwx806wpxq220mzyiy8g45xv0ghj"; 9262 9262 rev = "v${version}"; 9263 9263 repo = "pgcli"; 9264 9264 owner = "amjith"; ··· 9267 9267 propagatedBuildInputs = with self; [ 9268 9268 click configobj prompt_toolkit psycopg2 pygments sqlparse 9269 9269 ]; 9270 - 9271 - postPatch = '' 9272 - substituteInPlace setup.py --replace "==" ">=" 9273 - ''; 9274 9270 9275 9271 meta = { 9276 9272 inherit version; ··· 9571 9567 9572 9568 prompt_toolkit = buildPythonPackage rec { 9573 9569 name = "prompt_toolkit-${version}"; 9574 - version = "0.43"; 9570 + version = "0.45"; 9575 9571 9576 9572 src = pkgs.fetchurl { 9577 - sha256 = "1z5fap8c7q27p0s82jn11i6fwg0g9zm2zy5na8is53kgbhl10fdr"; 9573 + sha256 = "19lp15rc0rq4jqaacg2a38cdgfy2avhf5v97yanasx4n2swx4gsm"; 9578 9574 url = "https://pypi.python.org/packages/source/p/prompt_toolkit/${name}.tar.gz"; 9579 9575 }; 9580 9576 ··· 11607 11603 }; 11608 11604 11609 11605 repocheck = buildPythonPackage rec { 11610 - name = "repocheck-2015-06-27"; 11606 + name = "repocheck-2015-08-05"; 11611 11607 disabled = isPy26 || isPy27; 11612 11608 11613 11609 src = pkgs.fetchFromGitHub { 11614 - sha256 = "0psihwph10sx07xc2gfch739laz7x1kwl5c991cci8cfn5jzy8bp"; 11615 - rev = "231e05b4fa55955ef8492581a15f508ffa0037d4"; 11610 + sha256 = "1jc4v5zy7z7xlfmbfzvyzkyz893f5x2k6kvb3ni3rn2df7jqhc81"; 11611 + rev = "ee48d0e88d3f5814d24a8d1f22d5d83732824688"; 11616 11612 repo = "repocheck"; 11617 11613 owner = "kynikos"; 11618 11614 }; 11619 11615 11620 11616 meta = { 11617 + inherit (src.meta) homepage; 11621 11618 description = "Check the status of code repositories under a root directory"; 11622 - homepage = https://github.com/kynikos/repocheck; 11623 11619 license = licenses.gpl3Plus; 11624 11620 maintainers = with maintainers; [ nckx ]; 11625 11621 };